:root {
    /* Main Brand Colors */
    --blackhole-emerald: #071004;
    --midnight-emerald: #0a1606;
    --abyss-emerald: #081405;
    --shadow-emerald: #091805;
    --forest-emerald: #0b1a07;
    --deep-emerald: #0c1c07;
    --boosted-emerald: #0e1e0a;
    --champagne-gold: #e8d6b9;
    --champagne-gold-three: rgba(232, 214, 185, 0.3);
    --onyx-black: #0b0b0b;
    --bone-white: #f4f1ec;
    --mauve-rose: #b38b94;
    --platinum-silver: #d9d9d9;
    --highlight-tan: #f8dcae;
    --tangerine-gold: #f2b66b;
    --tangerine-soft: #f4d1a1;
    --pure-white: #ffffff;
    --light-emerald: #143415;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn .75s ease-out forwards;
}

.fade-in-slower {
    animation: fadeIn 1.5s ease-out forwards;
}

.fade-delay-13 {
    animation-delay: 7.0s;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background:
        radial-gradient(circle at bottom left, var(--blackhole-emerald) 0%, transparent 40%),
        radial-gradient(circle at top right, var(--light-emerald) 0%, transparent 60%),
        radial-gradient(circle at 50% 80%, var(--deep-emerald) 0%, transparent 100%),
        var(--deep-emerald);
    background-color: var(--deep-emerald);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--bone-white);
    font-family: 'Lora', serif;
    font-weight: 400;
    overflow-x: hidden;
}

body::after {
    overflow-x: hidden;
}

p,
li {
    line-height: 1.8;
    color: var(--bone-white);
}

h1,
h2 {
    font-family: 'Tangerine', serif;
    font-weight: 600;
}

h3 {
    font-family: 'Lora', serif;
    font-weight: 500;
}


h1 {
    background: linear-gradient(to bottom, var(--champagne-gold), var(--tangerine-gold));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

h2,
h3 {
    background: linear-gradient(to bottom, var(--champagne-gold), var(--tangerine-gold));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

@keyframes slideFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-h1 {
    animation: slideFadeUp 3s ease-out forwards 2s;
}

@keyframes fadeUpWord {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.word {
    opacity: 0;
    background: linear-gradient(to top, #b2b2b2, var(--platinum-silver));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: fadeUpWord 0.8s ease forwards 2s;
}

.word-1 {
    animation-delay: 4s;
}

.word-2 {
    animation-delay: 5s;
}

.word-3 {
    animation-delay: 6s;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

header {
    display: flex;
    width: 100%;
    flex-direction: column;
    position: fixed;
    top: 0;
    z-index: 10;
    background: linear-gradient(to bottom, var(--crust-cream), var(--rose-crust));
    border-bottom: 1px solid var(--soft-stem-green);
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.cta-btn {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85em 2em;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: var(--onyx-black);
    background: linear-gradient(135deg,
            var(--champagne-gold) 0%,
            var(--tangerine-gold) 50%,
            var(--champagne-gold) 100%);
    background-size: 200% 200%;
    background-position: left center;
    box-shadow: 0 4px 12px rgba(242, 182, 107, 0.25);
    border: 1px solid var(--champagne-gold);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-20deg);
    transition: all 0.8s ease;
    pointer-events: none;
}

.cta-btn:hover {
    transform: scale(1.04);
    background-position: right center;
    box-shadow: 0 8px 24px rgba(242, 182, 107, 0.4);
}

.cta-btn:hover::after {
    left: 200%;
}

.secondary-btn {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85em 2em;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
    display: inline-block;
    position: relative;
    overflow: hidden;
    color: var(--champagne-gold);
    background: transparent;
    border: 2px solid var(--champagne-gold);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1), text-shadow 1.2s ease;
    z-index: 1;
}

.secondary-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.2) 100%);
    transform: skewX(-20deg);
    text-shadow: 0 0 0 rgba(242, 182, 107, 0.35);
    transition: all 0.8s ease;
    pointer-events: none;
}

.secondary-btn:hover {
    color: var(--champagne-gold);
    border-color: var(--tangerine-gold);
    background: transparent;
    transform: scale(1.04);
    box-shadow: 0 0 20px rgba(242, 182, 107, 0.3);
    text-shadow: 0 0 10px rgba(242, 182, 107, 0.35);
}

.secondary-btn:hover::after {
    left: 200%;
}

.demo-banner {
    z-index: 10;
    background: var(--cherry-red);
    color: var(--crust-cream);
    text-align: center;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    font-style: italic;
}

/* @keyframes breatheGlow {

    0%,
    100% {
        opacity: 0.02;
        transform: scale(1);
    }

    50% {
        opacity: 0.08;
        transform: scale(1.07);
    }
} */

@keyframes fadeUpCard {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-fade.visible {
    animation: fadeUpCard 2s ease;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 1s;
}

.delay-4 {
    animation-delay: 1.4s;
}

@keyframes luxuryFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.artist-card.visible {
    animation: luxuryFadeUp 1.6s ease-out forwards;
}



#hero .hero-name {
    user-select: none;
}

#hero ul li b {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, var(--champagne-gold), var(--tangerine-gold));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    justify-content: center;
}

#hero ul li b img {
    margin-bottom: .5rem;
}

#hero ul li {
    background: linear-gradient(to bottom, rgba(20, 52, 21, 0.6), rgba(8, 20, 5, 0.6));
}

#hero hr {
    opacity: 0;
    transition: all 0.2s ease;
    border: none;
    height: 1px;
    background: linear-gradient(to bottom, rgba(232, 214, 185, 0.5), rgba(242, 182, 107, 0.5));
    max-width: 200px;
    margin: 0 auto 1rem;
    width: 100%;
    border-radius: 3rem;
}

.hero-large-p.fade-in,
h1 {
    opacity: 0;
}

.section-intro {
    color: var(--champagne-gold);
    font-size: 1.25rem;
    font-style: italic;
}

.product img {
    max-height: 200px;
    transition: filter 0.3s ease;
    filter: brightness(0.55)
}


.hero-second-wrapper {
    background: rgba(7, 16, 4, 0.6);
}

.mobile-hero {
    height: 100%;
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    position: relative;
}

.tagline,
.hero-p {
    text-align: center;
    font-style: italic;
}

.hero-p {
    color: var(--champagne-gold);
    font-size: 1.25rem;
}

.tagline {
    line-height: 1;
    margin-bottom: .5rem;
}

.card-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s cubic-bezier(0.25, 1, 0.5, 1), transform .6s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

.price-tag {
    color: var(--champagne-gold);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

#experience {
    padding: 8rem 1rem 10rem;
    background: var(--onyx-black);
    text-align: center;
}

#experience h2 {
    margin-bottom: 1rem;
}

.section-lead {
    font-size: 1.25rem;
    color: var(--champagne-gold);
    max-width: 800px;
    font-style: italic;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

.experience-card {
    background: rgba(232, 214, 185, 0.05);
    border: 1px solid rgba(232, 214, 185, 0.15);
    padding: 2rem;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(7, 16, 4, 0.2);
    transition: all 0.6s ease;
}

.experience-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: sepia(0.7);
    transition: filter 0.6s ease;
}

.experience-card h3 {
    font-family: 'Lora', serif;
    font-size: clamp(1.25rem, 1.25rem + 1vw, 1.75rem);
    margin-bottom: 1rem;
    background: linear-gradient(to bottom, var(--champagne-gold), var(--tangerine-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-card p {
    color: var(--bone-white);
    font-size: 1rem;
    line-height: 1.5;
}

.bento-grid {
    padding-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-auto-rows: 200px;
    gap: 1.5rem;
}

.bento-item.visible {
    animation: bentoFadeUp 1.2s ease-out forwards;
}

.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: rgba(10, 22, 6, 0.85);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.bento-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    background: rgba(7, 16, 4, 0.8);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.bento-caption span {
    background: linear-gradient(to bottom, var(--champagne-gold), var(--tangerine-soft));
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-family: 'Lora', serif;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.tall {
    grid-row: span 2;
}

.bento-item.wide {
    grid-column: span 2;
}

@keyframes bentoFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.bento-grid .bento-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

#artists {
    padding: 6rem 1rem;
    background-color: rgba(7, 16, 4, 0.6);
    text-align: center;
}

#artists .wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

#artists h2 {
    font-family: 'Tangerine', serif;
    color: var(--champagne-gold);
    margin-bottom: 3rem;
}

.section-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.125rem;
    color: var(--bone-white);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.artist-card {
    background: rgba(7, 16, 4, 0.8);
    border: 1px solid rgba(232, 214, 185, 0.2);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    transition: box-shadow 0.4s ease, transform 0.4s ease, background 0.4s ease;
    backdrop-filter: blur(6px);
    position: relative;
    opacity: 0;
}

.artist-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    filter: brightness(0.55);
    transition: filter 0.4s ease;
}

.artist-card h3 {
    font-family: 'Tangerine', serif;
    font-size: clamp(2.25rem, 2.25rem + 1vw, 3.75rem);
    color: var(--champagne-gold);
    padding-right: 1rem;
    margin-bottom: 0.5rem;
}

.specialty {
    font-family: 'Lora', serif;
    font-size: 1.125rem;
    color: var(--tangerine-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.5;
}

.bio {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--bone-white);
    line-height: 1.7;
}

#testimonials {
    padding: 8rem 1rem 6rem;
    background: radial-gradient(circle at center, rgba(232, 214, 185, 0.05) 0%, transparent 70%);
    text-align: center;
}

#testimonials h2 {
    font-family: 'Tangerine', serif;
    color: var(--champagne-gold);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-style: italic;
    margin-bottom: 4rem;
    font-size: 1.25rem;
    color: var(--champagne-gold);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--champagne-gold-three);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease, background 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.testimonial-card.visible {
    animation: fadeUpCard 1.5s ease-out forwards;
}

.testimonial-card p {
    color: var(--bone-white);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-card>* {
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    font-size: 1rem;
    color: var(--champagne-gold);
    display: block;
    text-align: right;
    font-style: normal;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 6rem;
    color: var(--champagne-gold-three);
    z-index: 1;
    pointer-events: none;
    user-select: none;
    opacity: 0.3;
}

#cta {
    padding: 6rem 1rem;
    background: radial-gradient(circle at center, rgba(232, 214, 185, 0.05) 0%, transparent 80%);
    text-align: center;
}

#cta .wrapper {
    max-width: 800px;
    margin: 0 auto;
}

#cta h2 {
    margin-bottom: 1rem;
}

#cta .section-intro {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    color: var(--champagne-gold);
    max-width: 700px;
    margin: 2rem auto 3rem;
    line-height: 1.6;
}

footer {
    background: rgba(7, 16, 4, 0.6);
}

footer p {
    color: var(--champagne-gold)
}

#footer-verdeux {
    border-top: 1px solid rgba(232, 214, 185, 0.3);
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--deep-emerald);
    color: var(--champagne-gold);
    font-family: 'Lora', serif;
    font-size: 1rem;
}

.footer-eyebrow-verdeux {
    font-family: 'Tangerine', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.footer-eyebrow {
    color: #bfbfbf;
}

#main-header {
    transition: all 0.3s ease;
}

#main-header.scrolled img,
#main-header.scrolled .cta-btn {
    transform: scale(0.90);
}

#main-header.scrolled {
    background: rgba(7, 16, 4, 0.8)
}

.bento-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }
  
  .bento-modal-content {
    background: var(--onyx-black);
    border: 1px solid var(--champagne-gold);
    padding: 2rem 4rem;
    max-width: 800px;
    width: 100%;
    position: relative;
    color: var(--bone-white);
    animation: fadeIn 0.3s ease;
  }
  
  .bento-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--champagne-gold);
    font-size: 2rem;
    cursor: pointer;
  }
  
  .bento-modal-body {
    max-height: 70vh;
    overflow-y: auto;
  }
  

@media screen and (min-width: 769px) {

    html {
        scroll-padding-top: 80px;
    }

    body {
        font-size: 1.125rem;
        position: relative;
        z-index: 1;
    }

    #background-overlay {
        background: url('/img/mocks/verdeux/verdeux.webp') no-repeat center;
        background-size: contain;
        mix-blend-mode: multiply;
        opacity: .5;
        position: fixed;
        top: env(safe-area-inset-top, 0);
        left: 0;
        width: 100%;
        height: 100vh;
        pointer-events: none;
        z-index: 0;
        transition: opacity 4s ease;
    }

    body.loaded #background-overlay {
        opacity: 0.04;
    }

    main {
        padding-top: 80px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    section {
        padding: 4rem 1rem
    }

    section:last-of-type {
        padding-bottom: 6rem;
    }

    .wrapper {
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
    }

    p {
        margin-bottom: 1rem;
    }

    header p {
        margin-bottom: 0
    }

    header {
        height: 5rem;
        background: rgba(7, 16, 4, 0.6);
        border-bottom: 1px solid rgba(232, 214, 185, 0.3);
        backdrop-filter: blur(6px);
    }

    .header-wrapper {
        display: grid;
        grid-template-columns: 1fr auto;
        justify-content: space-between;
        align-items: center;
        padding: .75rem 2rem;
        margin: auto;
        max-width: 1400px;
        width: 100%;
        color: var(--crust-cream);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    }

    header p {
        text-align: right;
    }

    header a {
        width: fit-content;
    }

    header .cta-btn {
        font-size: 1rem;
        letter-spacing: .25px;
        font-weight: 600;
        padding: 0.7225em 1.7em;
    }

    h1 {
        font-size: clamp(14rem, 16rem + 3vw, 25rem);
        letter-spacing: 2px;
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: auto;
        padding-right: 5rem;
        padding-top: 5rem;
        line-height: 0.6;
        text-align: center;
        opacity: 0;
        transition: all 1s ease forwards .5s
    }

    h2 {
        font-size: clamp(4rem, 5rem + 3vw, 8rem);
        letter-spacing: -.25px;
        margin-bottom: 1rem
    }

    h3 {
        font-size: clamp(1.25rem, 1.25rem + .5vw, 1.5rem);
        letter-spacing: -.25px;
        margin-bottom: .25rem
    }

    ul {
        margin: 2rem auto;
    }

    .logo {
        display: block;
        width: 100%;
        height: auto;
        max-width: 48px;
        max-height: 48px;
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    .logo:hover {
        filter: brightness(1.1);
        transform: scale(1.05);
    }

    #hero {
        padding: 0;
    }

    #hero .wrapper {
        max-width: 100%;
        padding: 0 2rem 4rem;
    }

    #hero hr {
        margin-top: .25rem;
        max-width: 350px;
    }

    #hero ul {
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin: 4rem auto 5rem;
        justify-content: center;
        align-items: stretch;
        z-index: 0;
    }

    #hero ul li {
        position: relative;
        padding: 2rem;
        border: 1px solid rgba(232, 214, 185, 0.25);
        backdrop-filter: blur(6px);
        border-radius: 12px;
        max-width: 350px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(7, 16, 4, 0.5);
        transition: all 0.5s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 0;
    }


    #hero ul li:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: rgba(232, 214, 185, 0.2);
        box-shadow: 0 4px 10px rgba(242, 182, 107, 0.25);
    }

    #hero ul li:hover::before {
        opacity: 1;
        transform: scale(1.05);
    }


    #hero ul li:hover b,
    .product:hover h3 {
        color: var(--tangerine-gold)
    }

    #hero ul li>*,
    .product>* {
        position: relative;
        z-index: 1;
    }

    .product p:not(.price-tag) {
        font-size: 1rem;
    }


    #hero ul li span {
        display: flex;
        font-size: 1rem;
        text-align: center;
    }

    #hero ul li b {
        font-size: 1.25rem;
        padding-bottom: 1rem;
        transition: color 0.2s ease;
    }

    #hero h2 {
        text-align: center;
        margin-bottom: 2rem;
    }

    #hero .hero-name {
        display: flex;
        flex-direction: column;
        height: calc(100vh - 80px);
    }

    #hero .hero-name-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 75vh;
        margin-bottom: 6rem;
    }

    .tagline {
        font-size: 1.5rem;
        font-weight: 500;
        letter-spacing: -.5px;
    }

    .word {
        padding: 0 .25rem;
    }

    .list-img {
        display: inline-block;
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        max-width: 2rem;
    }

    #hero .hero-second-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: calc(100% + 4rem);
        margin-left: -2rem;
        padding: 8rem 2rem;
    }

    .desktop-wrapper {
        position: relative;
        max-width: 1400px;
    }

    #portfolio,
    #artists {
        padding-top: 8rem;
        padding-bottom: 10rem;
    }

    #featured .wrapper,
    #portfolio .wrapper,
    #testimonials .wrapper {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    #hero .cta-btn-div {
        display: flex;
        flex-direction: row;
        gap: 3rem;
        margin-top: 1rem;
        justify-content: center;
    }

    .cta-btn-div {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        margin-top: 1rem;
    }

    .cta-btn:not(header .cta-btn):not(#featured .cta-btn),
    .secondary-btn,
    .footer-btn {
        padding: 0.925em 1.2em;
        font-size: 1.125rem;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        width: 100%;
        justify-items: center;
        margin: 2rem auto;
    }

    .product {
        position: relative;
        padding: 0 0 2rem;
        border: 1px solid rgba(232, 214, 185, 0.25);
        background: linear-gradient(to top left,
                rgba(7, 16, 4, 0.7),
                rgba(16, 32, 16, 0.7));
        backdrop-filter: blur(6px);
        max-width: 350px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(7, 16, 4, 0.5);
        transition: all 0.5s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 0;
        cursor: pointer
    }

    .product::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 1;
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .product:hover {
        transform: translateY(-2px);
        border-color: rgba(232, 214, 185, 0.2);
        background: linear-gradient(to top left,
                rgba(7, 16, 4, 0.95),
                rgba(16, 32, 16, 0.95));
        box-shadow: 0 2px 8px rgba(242, 182, 107, 0.25);
    }


    .product:hover img {
        filter: brightness(.9);
    }

    #experience {
        border-radius: 12px;
    }

    #experience h2 {
        margin-bottom: 3rem;
    }

    .experience-grid {
        max-width: 1400px;
        margin: 4rem auto 5rem
    }

    #portfolio h2 {
        margin-bottom: 3rem;
    }

    footer {
        display: flex;
        padding: 4rem 2rem;
        justify-content: center;
    }

    .footer-wrapper {
        display: flex;
        gap: 1rem;
        flex-direction: column;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .demo-banner {
        position: fixed;
        z-index: 10;
        width: 100%;
        bottom: 0;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        background: rgba(7, 16, 4, 1);
        border-top: 1px solid rgba(232, 214, 185, .3);
    }

    footer h2 {
        padding: 0 2rem;
        font-size: clamp(3.5rem, 3.5rem + 2vw, 4.5rem);
        margin-bottom: 0;
    }

    .footer-eyebrow {
        display: block;
        margin: 0 auto;
        padding: 1rem 0 2rem;
        font-size: 1rem;
        line-height: 1.8;
        text-align: center;
    }

    .product-description {
        display: flex;
        flex-direction: column;
        padding: 1rem 1rem 0;
        min-height: 150px;
        height: 100%;
        justify-content: space-between;
    }

    #cta .cta-btn-div {
        justify-content: center;
    }

    #cta {
        padding-bottom: 12rem;
    }

    .artist-card:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .artist-card:nth-child(2) {
        animation-delay: 0.6s;
    }
    
    .artist-card:nth-child(3) {
        animation-delay: 1.1s;
    }


    .artist-card:hover {
        box-shadow: 0 0 20px rgba(242, 182, 107, 0.25);
        transform: translateY(-8px);
        background: linear-gradient(to top, var(--light-emerald), var(--midnight-emerald), var(--onyx-black))
    }

    .experience-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(242, 182, 107, 0.2);
        border-color: var(--champagne-gold);
        background: linear-gradient(to bottom, var(--midnight-emerald), var(--onyx-black))
    }

    .experience-card:hover img {
        filter: revert
    }


    .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(232, 214, 185, 0.2);
        background: rgba(11, 11, 11, 0.9)
    }

    .artist-card:hover img {
        filter: brightness(1.05);
    }

    .bento-item {
        cursor: pointer;
    }

    .bento-item:hover img {
        transform: scale(1.05);
        filter: brightness(1.05)
    }

}

@media screen and (max-width: 768px) {

    html {
        scroll-padding-top: 72px;
    }

    body {
        background: var(--shadow-emerald) !important;
        position: relative;
        background-image: none !important;
        background-blend-mode: normal !important;
        background-attachment: scroll !important;
        z-index: 0;
        font-size: .9375rem;
    }

    #background-overlay {
        background: url('/img/mocks/verdeux/verdeux.webp') no-repeat center;
        background-size: 120%;
        mix-blend-mode: multiply;
        opacity: 1;
        position: fixed;
        top: env(safe-area-inset-top, 0);
        left: 0;
        width: 100%;
        height: 100vh;
        pointer-events: none;
        z-index: 0;
        transition: opacity 4s ease;
    }

    body.loaded #background-overlay {
        opacity: 0.04;
    }

    main {
        position: relative;
        z-index: 1;
    }

    section {
        padding: 3rem 1rem
    }

    section:last-of-type {
        padding-bottom: 6rem;
    }

    .wrapper {
        padding: 0;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
    }

    p {
        margin-bottom: 1rem;
    }

    header p {
        margin-bottom: 0
    }

    header {
        min-height: 64px;
        background-color: rgba(7, 16, 4, 0.8);
        -webkit-backdrop-filter: blur(6px);
        border-bottom: 1px solid rgba(232, 214, 185, 0.3)
    }

    .header-wrapper {
        display: grid;
        grid-template-columns: 1fr auto;
        justify-content: space-between;
        align-items: center;
        padding: .75rem 2rem;
        margin: auto;
        width: 100%;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    }

    header p {
        text-align: right;
    }

    header a {
        width: fit-content;
    }

    h1 {
        font-size: clamp(9rem, 9rem + .25vw, 11rem);
        letter-spacing: 1px;
        margin-bottom: 0;
        font-weight: 500;
        line-height: .8;
        padding-top: 2rem;
        text-align: center;
        margin-left: -2rem;
    }

    #hero .hero-name-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 70vh;
        margin-bottom: 20vh;
    }

    .hero-second-wrapper {
        padding: 6rem 1rem;
    }

    h2 {
        font-size: clamp(4rem, 4.5rem + .25vw, 5.5rem);
        font-weight: 500;
        line-height: 1.05;
        padding-bottom: 1rem;
        margin-bottom: .5rem;
        padding-right: 1rem;
        text-align: center;
    }

    ul {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .logo {
        display: block;
        width: 100%;
        height: auto;
        max-width: 40px;
        max-height: 40px;
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    .logo:hover {
        filter: brightness(1.1);
        transform: scale(1.05);
    }

    #hero {
        padding: 1.5rem 0 0;
    }

    #hero .hero-large-p {
        font-family: 'Tangerine', serif;
        font-size: clamp(3rem, 3.5rem + 0.5vw, 4rem);
        color: var(--champagne-gold);
        margin: .5rem auto;
        line-height: 1;
    }

    #hero .wrapper {
        max-width: 100%;
        padding: 0 0 4rem;
    }

    #hero ul li b {
        font-size: 1.25rem;
        padding-bottom: .75rem;
        transition: color 0.2s ease;
    }

    #hero .list-img {
        max-width: 2rem;
        padding-bottom: .25rem;
    }

    #hero ul {
        position: relative;
        display: grid;
        grid-template-rows: repeat(3, 1fr);
        gap: 3rem;
        margin: 3rem auto 4rem;
        justify-content: center;
        align-items: stretch;
        z-index: 0;
    }

    #hero ul li {
        position: relative;
        padding: 5rem 1rem;
        border: 1px solid rgba(232, 214, 185, 0.25);
        backdrop-filter: blur(6px);
        border-radius: 0;
        max-width: 100%;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(7, 16, 4, 0.5);
        transition: all 0.5s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 0;
        text-align: center;
    }

    #hero ul li.mobile-hover {
        transform: translateY(-10px) scale(1.02);
        border-color: rgba(232, 214, 185, 0.2);
        box-shadow: 0 2px 8px rgba(242, 182, 107, 0.25);
    }

    #hero ul li.mobile-hover::before {
        opacity: 1;
        transform: scale(1.05);
    }

    #hero ul li.mobile-hover b {
        color: var(--tangerine-gold)
    }

    .product h3 {
        font-size: 1.25rem;
    }

    #hero ul li>*,
    .product>* {
        position: relative;
        z-index: 1;
    }

    .cta-btn-div {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    header .cta-btn {
        font-size: .75rem;
        padding: .75em .75em;
        letter-spacing: .5px;
        font-weight: 500;
    }

    .cta-btn {
        font-size: .9375rem;
        padding: 1.2em 1.25em;
        text-align: center;
    }

    .bento-item.tall#blonde-treatment {
        grid-row: span 1;
    }

    .bento-item#gloss-shine {
        grid-column: span 2;
        grid-row: span 2;
    }

    .product .cta-btn,
    footer .cta-btn {
        padding: .9em 1.25em;
    }

    .tagline {
        text-align: center;
        font-size: 1rem;
    }

    .list-img {
        display: inline-block;
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        max-width: 16px;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        width: 100%;
        margin: 2rem auto;
    }

    .product {
        display: flex;
        border: 1px solid rgba(232, 214, 185, 0.25);
        flex-direction: column;
        padding: 0;
        background: linear-gradient(to top left, rgba(7, 16, 4, 0.7), rgba(16, 32, 16, 0.7));
        margin-left: auto;
        margin-right: auto;
        max-width: 350px;
        border-radius: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    }

    .product img {
        border-radius: 0;
    }

    .product.mobile-hover {
        border-color: rgba(232, 214, 185, 0.2);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
        background: rgba(7, 16, 4, .9);
    }

    .product.mobile-hover img {
        filter: brightness(1);
    }

    .artist-card h3 {
        font-size: clamp(3rem, 3rem + .5vw, 4rem);
    }

    .specialty {
        font-family: 'Lora', serif;
        font-size: 1.025rem;
        margin-bottom: .25rem;
    }

    .bio {
        font-size: .9375rem;
    }

    .artist-card:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .artist-card:nth-child(2) {
        animation-delay: 0.1s;
    }
    
    .artist-card:nth-child(3) {
        animation-delay: 0.1s;
    }

    footer {
        display: flex;
        padding: 2rem 2rem 6rem;
        justify-content: center;
    }


    .footer-wrapper {
        display: flex;
        gap: 1rem;
        flex-direction: column;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    @keyframes bannerSlideUp {
        to {
            opacity: 1;
            transform: translateY(65px);
        }
    }

    .demo-banner {
        font-size: 0.75rem;
        background: rgba(7, 16, 4, 0.6);
        width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 0.5rem 1rem;
        backdrop-filter: blur(6px);
        background: rgba(7, 16, 4, 0.85);
        opacity: 0;
        position: relative;
        z-index: 4;
        transform: translateY(0);
        animation: bannerSlideUp 2s ease 8s forwards;
    }

    #featured h2 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
    }

    .product-grid {
        gap: 2rem;
    }

    .footer-eyebrow {
        display: block;
        margin-bottom: 1rem;
        font-size: 1rem;
        text-align: center;
        line-height: 1.8;
        padding: 0 1rem;
    }

    .product-description {
        display: flex;
        flex-direction: column;
        padding: 1rem 0 0;
        min-height: 150px;
        justify-content: space-between;
    }

    .product-description h3,
    .product-description p {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .brand-title.desktop {
        display: none
    }

    footer h2 {
        margin-bottom: .25rem;
        padding: 0 1rem;
        line-height: 1;
        font-size: clamp(3rem, 3rem + 1vw, 4.5rem);
    }

    .desktop {
        display: none;
    }

    .experience-card {
        max-width: 375px;
    }

    .artist-card {
        background: linear-gradient(to top, var(--boosted-emerald), var(--midnight-emerald), var(--onyx-black));
    }

    .experience-card {
        border-radius: 0;
    }

    .experience-card.mobile-hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(242, 182, 107, 0.2);
        border-color: rgba(232, 214, 185, 0.2);
        background: linear-gradient(to bottom, var(--boosted-emerald), var(--onyx-black))
    }

    .experience-card.mobile-hover img {
        filter: revert
    }

    .section-intro {
        text-align: center;
    }

    .testimonial-card {
        border-radius: 0;
    }

    #testimonials {
        padding: 6rem 0 3rem;
    }

    #cta h2 {
        line-height: 1.1;
        margin-bottom: 1rem
    }

    #cta .section-intro {
        margin: 0 auto 2rem;
    }

    .testimonial-card.mobile-hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(232, 214, 185, 0.2);
        background: rgba(11, 11, 11, 0.9)
    }

    .artist-card {
        border-radius: 0;
    }

    .artist-card img {
        border-radius: 0;
        transition: filter 0.5s ease;
    }

    .artist-card.mobile-hover img {
        filter: brightness(1.05);
    }

    #main-header {
        transition: all 1s ease;
    }

    #main-header img,
    #main-header .cta-btn,
    #main-header .header-wrapper {
        transition: all 1s ease;
    }

    #main-header.scrolled img,
    #main-header.scrolled .cta-btn {
        transform: scale(0.8);
        transition: all 1s ease;
    }

    #main-header.scrolled {
        min-height: initial;
        transition: all 1s ease;
    }

    #main-header.scrolled .header-wrapper {
        padding: .25rem 1rem;
        transition: all 1s ease;
    }

    .bento-item.mobile-hover img {
        transform: scale(1.05);
        filter: brightness(1.05)
    }

}