
:root {
    --gold: #8B6914;
    --gold-light: #C9A84C;
    --gold-pale: #F5E6C8;
    --brown-dark: #3D1F00;
    --brown-mid: #6B3A1F;
    --brown-warm: #8B4513;
    --cream: #FAF6EF;
    --cream-dark: #F0E8D8;
    --white: #FFFFFF;
    --text-dark: #2C1810;
    --text-mid: #5C3D2E;
    --text-light: #8B7355;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,246,239,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139,105,20,0.15);
    transition: all 0.3s ease;
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-circle {
    width: 44px;
    height: 44px;
    background: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 1px;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brown-dark);
    line-height: 1.1;
}

    .logo-text span {
        display: block;
        font-size: 0.6rem;
        font-family: 'Jost', sans-serif;
        font-weight: 500;
        letter-spacing: 3px;
        color: var(--gold);
        text-transform: uppercase;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

    .nav-links > li {
        position: relative;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text-mid);
        font-size: 0.82rem;
        font-weight: 500;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        transition: color 0.25s;
        position: relative;
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.nav-cta {
    background: var(--brown-dark) !important;
    color: var(--gold-light) !important;
    padding: 10px 22px;
    border-radius: 2px;
    letter-spacing: 2px !important;
}

    .nav-cta::after {
        display: none !important;
    }

    .nav-cta:hover {
        background: var(--gold) !important;
        color: var(--white) !important;
    }

/* ===== DROPDOWN ===== */
.has-dropdown {
    cursor: pointer;
}

    .has-dropdown > a {
        display: flex !important;
        align-items: center;
        gap: 5px;
    }

.dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4.5px solid currentColor;
    margin-left: 2px;
    transition: transform 0.25s;
    flex-shrink: 0;
    margin-top: 1px;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.has-dropdown > a::after {
    display: none !important;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid rgba(139,105,20,0.15);
    border-radius: 6px;
    box-shadow: 0 20px 50px rgba(61,31,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    min-width: 240px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: all 0.22s cubic-bezier(0.25,0.8,0.25,1);
    z-index: 200;
}

    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%);
        width: 10px;
        height: 10px;
        background: var(--white);
        border-left: 1px solid rgba(139,105,20,0.15);
        border-top: 1px solid rgba(139,105,20,0.15);
        transform: translateX(-50%) rotate(45deg);
    }

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-mid) !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    transition: all 0.2s;
    width: 100%;
}

    .dropdown-item::after {
        display: none !important;
    }

    .dropdown-item:hover {
        background: var(--cream-dark);
        color: var(--brown-dark) !important;
    }

.dropdown-item-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(139,105,20,0.08));
    border: 1px solid rgba(139,105,20,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.dropdown-item-info {
    display: flex;
    flex-direction: column;
}

.dropdown-item-title {
    font-weight: 600 !important;
    font-size: 0.82rem;
    color: var(--brown-dark);
    line-height: 1.2;
}

.dropdown-item-sub {
    font-size: 0.68rem !important;
    color: var(--text-light);
    margin-top: 2px;
}

.dropdown-item:hover .dropdown-item-icon {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.dropdown-divider {
    height: 1px;
    background: rgba(139,105,20,0.1);
    margin: 6px 8px;
}
/* ===== END DROPDOWN ===== */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

    .hamburger span {
        width: 24px;
        height: 2px;
        background: var(--brown-dark);
        transition: all 0.3s;
        display: block;
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px,5px);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px,-5px);
    }

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(139,105,20,0.2);
    padding: 1.5rem 2rem 2rem;
    z-index: 999;
    flex-direction: column;
    gap: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu > a {
        text-decoration: none;
        color: var(--text-mid);
        font-size: 0.88rem;
        font-weight: 500;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(139,105,20,0.08);
    }
/* Mobile dropdown */
.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(139,105,20,0.08);
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-mid);
}

    .mobile-dropdown-toggle .m-arrow {
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 4.5px solid var(--text-light);
        transition: transform 0.25s;
    }

    .mobile-dropdown-toggle.open .m-arrow {
        transform: rotate(180deg);
    }

.mobile-sub-menu {
    display: none;
    flex-direction: column;
    background: rgba(139,105,20,0.04);
    border-radius: 4px;
    margin: 4px 0 8px;
    padding: 6px;
}

    .mobile-sub-menu.open {
        display: flex;
    }

.mobile-sub-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 12px !important;
    border-bottom: none !important;
    border-radius: 4px;
    font-size: 0.82rem !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
}

    .mobile-sub-item:hover {
        background: rgba(139,105,20,0.08);
    }

.msub-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(139,105,20,0.1));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.msub-info {
    display: flex;
    flex-direction: column;
}

.msub-title {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--brown-dark);
}

.msub-sub {
    font-size: 0.65rem;
    color: var(--text-light);
    margin-top: 1px;
}

/* legacy style kept for old mobile-menu a tags */
.mobile-menu a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139,105,20,0.1);
}

/* ===== PAGE SECTIONS ===== */
.page {
    display: none;
}

    .page.active {
        display: block;
    }

/* ===== HERO ===== */
#home {
    padding-top: 72px;
}

.hero {
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
}

.hero-content {
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139,105,20,0.1);
    border: 1px solid rgba(139,105,20,0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

    .hero-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--gold-light);
        border-radius: 50%;
    }

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--brown-dark);
    margin-bottom: 0.3rem;
}

    .hero h1 .gold {
        color: var(--gold);
    }

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.tag {
    padding: 6px 14px;
    border: 1px solid rgba(139,105,20,0.35);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--brown-dark);
    color: var(--gold-light);
    padding: 14px 32px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

    .btn-primary:hover {
        background: var(--gold);
        color: var(--white);
        transform: translateY(-2px);
    }

.btn-secondary {
    background: transparent;
    color: var(--brown-dark);
    padding: 14px 32px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--brown-dark);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

    .btn-secondary:hover {
        background: var(--brown-dark);
        color: var(--gold-light);
    }

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.product-container {
    position: relative;
    width: 340px;
    height: 420px;
}

.product-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.product-bottle {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #0d0d0d 0%, #1a1a1a 40%, #2a2a2a 100%);
    border-radius: 50px 50px 30px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.1), inset -3px 0 20px rgba(0,0,0,0.3);
}

.bottle-cap {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 40px;
    background: linear-gradient(145deg, #C9A84C, #8B6914, #C9A84C);
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -5px 20px rgba(201,168,76,0.4);
}

.bottle-brand {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 6px;
    opacity: 0.9;
}

.bottle-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 0.95;
    text-align: center;
}

.bottle-sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    color: rgba(201,168,76,0.75);
    letter-spacing: 1px;
    text-align: center;
    margin-top: 8px;
}

.bottle-tags {
    display: flex;
    gap: 6px;
    margin-top: 12px;
}

.bottle-tag {
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bottle-weight {
    position: absolute;
    bottom: 20px;
    color: rgba(201,168,76,0.5);
    font-size: 0.6rem;
    letter-spacing: 1px;
}

.floating-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.float-badge {
    background: var(--white);
    border: 1px solid rgba(139,105,20,0.15);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-mid);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

    .float-badge .dot {
        width: 8px;
        height: 8px;
        background: var(--gold-light);
        border-radius: 50%;
    }

/* ===== SECTION COMMONS ===== */
section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--brown-dark);
    line-height: 1.15;
}

    .section-title .accent {
        color: var(--gold);
    }

.section-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 580px;
    margin-top: 1rem;
}

.divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1.5rem 0;
}

/* ===== BENEFITS STRIP ===== */
.benefits-strip {
    background: var(--brown-dark);
    padding: 2rem;
    overflow: hidden;
}

.strip-inner {
    display: flex;
    gap: 3rem;
    animation: scroll-strip 20s linear infinite;
    width: max-content;
}

@keyframes scroll-strip {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.strip-dot {
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0.5;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.about-visual {
    position: relative;
}

.about-card {
    background: var(--cream-dark);
    border-radius: 4px;
    padding: 3rem;
    border: 1px solid rgba(139,105,20,0.15);
    position: relative;
    overflow: hidden;
}

    .about-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, var(--gold-light), var(--brown-warm));
    }

.about-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.about-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-mid);
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-box {
    background: var(--white);
    border: 1px solid rgba(139,105,20,0.15);
    padding: 1.2rem;
    text-align: center;
    border-radius: 3px;
}

    .stat-box .num {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--gold);
    }

    .stat-box .label {
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--text-light);
        margin-top: 4px;
    }

.challenge-box {
    background: var(--white);
    border: 1px solid rgba(139,105,20,0.12);
    border-radius: 4px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.challenge-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.challenge-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.75rem;
}

.challenge-col p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-mid);
}

.challenge-col.solution h4 {
    color: var(--gold);
}

/* ===== KEY BENEFITS ===== */
.benefits-section {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--cream);
    border: 1px solid rgba(139,105,20,0.12);
    border-radius: 4px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--gold-light), var(--brown-warm));
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .benefit-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

        .benefit-card:hover::before {
            transform: scaleX(1);
        }

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
}

.benefit-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== WHO IT'S FOR ===== */
.audience-section {
    background: var(--cream-dark);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.audience-card {
    background: var(--white);
    border: 1px solid rgba(139,105,20,0.1);
    border-radius: 4px;
    padding: 2rem;
    transition: all 0.3s;
}

    .audience-card:hover {
        border-color: var(--gold);
        box-shadow: 0 8px 30px rgba(139,105,20,0.1);
    }

.audience-emoji {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.audience-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
}

.audience-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== INGREDIENTS PAGE ===== */
.ingredients-page {
    padding-top: 72px;
}

.ingredients-hero {
    background: var(--brown-dark);
    padding: 5rem 2rem;
    text-align: center;
}

    .ingredients-hero .section-label {
        color: var(--gold-light);
        opacity: 0.75;
    }

    .ingredients-hero .section-title {
        color: var(--gold-light);
    }

    .ingredients-hero .section-desc {
        color: rgba(250,246,239,0.65);
        margin: 1rem auto 0;
    }

.hero-ingredient {
    background: linear-gradient(135deg, #1A0A00 0%, #3D1F00 50%, #1A0A00 100%);
    padding: 5rem 2rem;
}

.hero-ingredient-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-ingredient-content {
}

    .hero-ingredient-content .section-label {
        color: var(--gold-light);
        opacity: 0.7;
    }

    .hero-ingredient-content .section-title {
        color: var(--cream);
    }

    .hero-ingredient-content .section-desc {
        color: rgba(250,246,239,0.7);
    }

.ingredient-benefits-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ingr-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(250,246,239,0.85);
}

    .ingr-benefit::before {
        content: 'âœ“';
        width: 22px;
        height: 22px;
        background: rgba(201,168,76,0.2);
        border: 1px solid var(--gold-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        color: var(--gold-light);
        flex-shrink: 0;
    }

.hero-ingredient-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.plant-visual {
    width: 260px;
    height: 260px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    position: relative;
}

    .plant-visual::before {
        content: '';
        position: absolute;
        inset: -15px;
        border: 1px solid rgba(201,168,76,0.1);
        border-radius: 50%;
    }

.sources-section {
    background: var(--cream);
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.source-card {
    background: var(--white);
    border: 1px solid rgba(139,105,20,0.12);
    border-radius: 4px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s;
}

    .source-card:hover {
        border-color: var(--gold);
        transform: translateY(-3px);
    }

.source-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.source-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.4rem;
}

.source-desc {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.5;
}

.other-ingredients {
    background: var(--cream-dark);
}

.ingr-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.ingr-card {
    background: var(--white);
    border: 1px solid rgba(139,105,20,0.12);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
}

    .ingr-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

.ingr-card-header {
    background: var(--cream-dark);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(139,105,20,0.1);
}

.ingr-card-emoji {
    font-size: 3rem;
}

.ingr-card-body {
    padding: 1.5rem;
}

.ingr-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 4px;
}

.ingr-card-purity {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.ingr-card-tagline {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-mid);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.ingr-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .ingr-list li {
        font-size: 0.82rem;
        color: var(--text-mid);
        padding-left: 1.2rem;
        position: relative;
        line-height: 1.5;
    }

        .ingr-list li::before {
            content: 'âœ“';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-size: 0.7rem;
            top: 1px;
        }

/* ===== HOW IT WORKS PAGE ===== */
.hiw-page {
    padding-top: 72px;
}

.hiw-hero {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
    padding: 5rem 2rem;
    text-align: center;
}

    .hiw-hero .section-title {
        color: var(--gold-light);
    }

    .hiw-hero .section-desc {
        color: rgba(250,246,239,0.65);
        margin: 1rem auto 0;
    }

.science-section {
    background: var(--white);
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.science-card {
    border: 1px solid rgba(139,105,20,0.12);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    background: var(--cream);
    transition: all 0.3s;
}

    .science-card:hover {
        border-color: var(--gold);
    }

.sci-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(139,105,20,0.12);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.sci-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.75rem;
}

.sci-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-light);
}

.pathway-section {
    background: var(--cream-dark);
}

.pathway-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

    .pathway-steps::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, var(--gold-light), rgba(139,105,20,0.1));
    }

.pathway-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    padding-left: 1rem;
}

.step-num {
    width: 42px;
    height: 42px;
    background: var(--brown-dark);
    color: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-left: 9px;
}

.step-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.4rem;
}

.step-content p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-mid);
}

/* ===== USAGE PAGE ===== */
.usage-page {
    padding-top: 72px;
}

.usage-hero {
    background: var(--cream-dark);
    padding: 5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(139,105,20,0.12);
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.usage-card {
    background: var(--white);
    border: 1px solid rgba(139,105,20,0.12);
    border-radius: 4px;
    padding: 2.5rem;
    transition: all 0.3s;
}

    .usage-card:hover {
        border-color: var(--gold);
    }

.usage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.usage-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.usage-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-mid);
}

.safety-section {
    background: var(--brown-dark);
    padding: 4rem 2rem;
}

.safety-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

    .safety-inner .section-label {
        color: var(--gold-light);
        opacity: 0.7;
    }

    .safety-inner .section-title {
        color: var(--gold-light);
    }

    .safety-inner p {
        font-size: 0.9rem;
        line-height: 1.75;
        color: rgba(250,246,239,0.65);
        margin-top: 1.5rem;
    }

/* ===== CONTACT PAGE ===== */
.contact-page {
    padding-top: 72px;
}

.contact-hero {
    background: var(--cream-dark);
    padding: 5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(139,105,20,0.12);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-mid);
}

.contact-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(139,105,20,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-form {
    background: var(--white);
    border: 1px solid rgba(139,105,20,0.12);
    border-radius: 4px;
    padding: 2.5rem;
}

    .contact-form h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--brown-dark);
        margin-bottom: 1.5rem;
    }

.form-group {
    margin-bottom: 1.2rem;
}

    .form-group label {
        display: block;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--text-mid);
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid rgba(139,105,20,0.2);
        border-radius: 2px;
        background: var(--cream);
        font-family: 'Jost', sans-serif;
        font-size: 0.9rem;
        color: var(--text-dark);
        outline: none;
        transition: border-color 0.25s;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--gold);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

/* ===== FOOTER ===== */
footer {
    background: var(--brown-dark);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(250,246,239,0.55);
    margin-top: 1rem;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: rgba(250,246,239,0.55);
    font-size: 0.85rem;
    margin-bottom: 0.7rem;
    transition: color 0.25s;
    cursor: pointer;
}

    .footer-col a:hover {
        color: var(--gold-light);
    }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

    .footer-bottom p {
        font-size: 0.78rem;
        color: rgba(250,246,239,0.35);
    }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-circle {
    width: 32px;
    height: 32px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--gold-light);
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-desc {
        margin: 0 auto 2.5rem;
    }

    .hero-tags {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sources-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ingr-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-ingredient-inner {
        grid-template-columns: 1fr;
    }

    .science-grid {
        grid-template-columns: 1fr;
    }

    .usage-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .challenge-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .sources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ingr-cards {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .product-container {
        width: 250px;
        height: 320px;
    }

    .bottle-name {
        font-size: 2.8rem;
    }

    .stat-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.7s ease forwards;
}

.fade-up-2 {
    animation: fadeUp 0.7s ease 0.15s both;
}

.fade-up-3 {
    animation: fadeUp 0.7s ease 0.3s both;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.product-container {
    animation: float 4s ease-in-out infinite;
}
