/* ===========================================
   DUDU LUXE NATURALS — Premium Stylesheet
   Brand: Gold (#C49A3C) + Black (#18180E)
   =========================================== */

/* ===========================================
   1. CSS VARIABLES
   =========================================== */
:root {
    /* Brand Colours */
    --gold:          #C49A3C;
    --gold-light:    #D4AE5A;
    --gold-dark:     #9A7520;
    --gold-pale:     #F5EDD6;
    --black:         #18180E;
    --black-soft:    #2A2A1E;
    --cream:         #F5F0E8;
    --cream-dark:    #EAE3D5;
    --white:         #FFFFFF;
    --text-body:     #2A2A1E;
    --text-muted:    #7A7562;
    --border:        #DDD5BE;

    /* Typography */
    --font-serif:    'Cormorant Garamond', Georgia, serif;
    --font-sans:     'Jost', sans-serif;

    /* Spacing */
    --nav-height:    80px;
    --max-width:     1360px;
    --section-v:     120px;
    --section-v-sm:  80px;
    --container-px:  40px;

    /* Transitions */
    --ease-smooth:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:      cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ===========================================
   2. RESET & BASE
   =========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Grain texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===========================================
   3. UTILITY CLASSES
   =========================================== */
.section-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold-dark);
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
}

/* ===========================================
   4. BUTTONS
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 0;
    transition: all 0.3s var(--ease-smooth);
    white-space: nowrap;
    cursor: pointer;
}

.btn--gold {
    background-color: var(--gold);
    color: var(--white);
    border: 1.5px solid var(--gold);
}

.btn--gold:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 154, 60, 0.3);
}

.btn--outline {
    background-color: transparent;
    color: var(--black);
    border: 1.5px solid var(--black);
}

.btn--outline:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--outline-gold {
    background-color: transparent;
    color: var(--gold-dark);
    border: 1.5px solid var(--gold);
}

.btn--outline-gold:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--black {
    background-color: var(--black);
    color: var(--white);
    border: 1.5px solid var(--black);
}

.btn--black:hover {
    background-color: var(--black-soft);
    border-color: var(--black-soft);
    transform: translateY(-2px);
}

.btn--white {
    background-color: var(--white);
    color: var(--black);
    border: 1.5px solid var(--white);
}

.btn--white:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.btn--white-outline {
    background-color: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn--white-outline:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--sm {
    font-size: 10px;
    padding: 12px 24px;
}

/* ===========================================
   5. SCROLL ANIMATIONS
   =========================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger sibling animations */
[data-animate]:nth-child(2) { transition-delay: 0.12s; }
[data-animate]:nth-child(3) { transition-delay: 0.24s; }
[data-animate]:nth-child(4) { transition-delay: 0.36s; }

/* ===========================================
   6. NAVIGATION
   =========================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background-color: rgba(245, 240, 232, 0.0);
    border-bottom: 1px solid transparent;
    transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.nav.is-scrolled {
    background-color: rgba(245, 240, 232, 0.97);
    border-bottom-color: var(--border);
    box-shadow: 0 2px 40px rgba(24, 24, 14, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-px);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav__logo {
    flex-shrink: 0;
}

.nav__logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.nav__menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__link {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    position: relative;
    padding-bottom: 4px;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s var(--ease-smooth);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav__cta {
    display: none;
}

/* Hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    width: 40px;
}

.nav__hamburger-bar {
    display: block;
    width: 22px;
    height: 1.5px;
    background-color: var(--black);
    transition: all 0.3s var(--ease-smooth);
    transform-origin: center;
}

.nav__hamburger.is-open .nav__hamburger-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger.is-open .nav__hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__hamburger.is-open .nav__hamburger-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background-color: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 32px var(--container-px);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s var(--ease-smooth);
    z-index: 999;
}

.nav__mobile.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.nav__mobile-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.nav__mobile-link {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
}

.nav__mobile-cta {
    margin-top: 8px;
}

/* ===========================================
   7. HERO SECTION
   =========================================== */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-height);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--cream);
}

/* Decorative background geometry */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55%;
    height: 120%;
    background-color: var(--cream-dark);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px var(--container-px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__content {
    max-width: 540px;
}

.hero__eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 400;
    line-height: 1.0;
    color: var(--black);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero__headline em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold-dark);
}

.hero__subheadline {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s var(--ease-out) 0.35s both;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
}

.hero__meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out) 0.65s both;
}

.hero__meta-item {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Hero visual */
.hero__visual {
    position: relative;
    animation: fadeIn 1.1s var(--ease-out) 0.3s both;
}

.hero__image-wrap {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 40px 100px rgba(24, 24, 14, 0.18);
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero__image:hover {
    transform: scale(1.03);
}

/* Circular badge */
.hero__badge {
    position: absolute;
    bottom: 32px;
    left: -32px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: rotateSlow 20s linear infinite;
}

.hero__badge-text {
    font-family: var(--font-serif);
    font-size: 13px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    color: var(--white);
    padding: 12px;
}

/* Floating secondary image */
.hero__float-img {
    position: absolute;
    bottom: -40px;
    right: -32px;
    width: 38%;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(24, 24, 14, 0.2);
    aspect-ratio: 1;
    border: 4px solid var(--cream);
}

.hero__float-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scroll hint */
.hero__scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeIn 1s ease 1.2s both;
}

.hero__scroll-line {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-text {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ===========================================
   8. TRUST STRIP
   =========================================== */
.trust-strip {
    background-color: var(--black);
    padding: 32px 0;
    border-top: 1px solid rgba(196, 154, 60, 0.2);
    border-bottom: 1px solid rgba(196, 154, 60, 0.2);
}

.trust-strip__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.trust-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    text-align: center;
}

.trust-strip__icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    flex-shrink: 0;
}

.trust-strip__label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    white-space: nowrap;
}

.trust-strip__divider {
    width: 1px;
    height: 40px;
    background: rgba(196, 154, 60, 0.3);
    flex-shrink: 0;
}

/* ===========================================
   9. PRODUCT SHOWCASE
   =========================================== */
.product {
    padding: var(--section-v) 0;
    background-color: var(--cream);
    overflow: hidden;
}

.product__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* ---- Gallery ---- */
.product__gallery {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
    min-width: 0; /* prevents grid blowout */
}

.product__main-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;  /* square — safe on all screen sizes */
    margin-bottom: 16px;
    border: 1px solid var(--border);
    max-height: 560px;
}

.product__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease;
}

.product__main-img.is-changing {
    opacity: 0;
}

.product__main-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--gold);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 14px;
}

/* 6-thumbnail grid */
.product__thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.product__thumb {
    aspect-ratio: 1;
    overflow: hidden;
    border: 1.5px solid var(--border);
    cursor: pointer;
    padding: 0;
    background: none;
    transition: border-color 0.2s ease;
}

.product__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product__thumb:hover img {
    transform: scale(1.08);
}

.product__thumb--active {
    border-color: var(--gold);
}

/* Horizontal scrolling strip */
.product__strip-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.product__strip-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--cream-dark);
}

.product__strip-wrap::-webkit-scrollbar {
    height: 3px;
}

.product__strip-wrap::-webkit-scrollbar-track {
    background: var(--cream-dark);
}

.product__strip-wrap::-webkit-scrollbar-thumb {
    background: var(--gold);
}

.product__strip {
    display: flex;
    gap: 8px;
    padding-bottom: 6px;
    width: max-content;
}

.product__strip-item {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1.5px solid var(--border);
    cursor: pointer;
    padding: 0;
    background: none;
    transition: border-color 0.2s ease;
}

.product__strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product__strip-item:hover {
    border-color: var(--gold);
}

.product__strip-item:hover img {
    transform: scale(1.1);
}

.product__strip-item--active {
    border-color: var(--gold);
}

/* ---- Product Details ---- */
.product__details {
    min-width: 0; /* prevents grid blowout */
}

.product__name {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 12px;
}

.product__name em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold-dark);
}

.product__tagline {
    font-family: var(--font-serif);
    font-size: 15px;
    font-style: italic;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.product__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.product__price {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 500;
    color: var(--black);
}

.product__unit {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
}

.product__desc {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 28px;
}

/* Ingredients list */
.product__ingredients {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.product__ingredient {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-body);
}

.product__ingredient-dot {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--gold);
    flex-shrink: 0;
}

/* Quantity */
.product__qty-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.product__qty-label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.product__qty-control {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
}

.product__qty-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    color: var(--black);
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.product__qty-btn:hover {
    background-color: var(--gold);
    color: var(--white);
}

.product__qty-input {
    width: 52px;
    height: 40px;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    border: none;
    border-left: 1.5px solid var(--border);
    border-right: 1.5px solid var(--border);
    background: var(--white);
    outline: none;
}

/* CTA buttons */
.product__actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.product__btn-cart,
.product__btn-buy {
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

/* Assurance items */
.product__assurance {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.product__assurance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
}

.product__assurance-item svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ===========================================
   10. BRAND STORY
   =========================================== */
.story {
    padding: var(--section-v) 0;
    background-color: var(--cream-dark);
}

.story__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.story__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.story__logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 380px;
}

.story__deco-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.story__logo {
    width: 100%;
    object-fit: contain;
    filter: none;
}

.story__content .section-title {
    margin-bottom: 32px;
}

.story__text {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 20px;
}

.story__text--quote {
    font-family: var(--font-serif);
    font-size: 19px;
    font-style: italic;
    font-weight: 300;
    color: var(--gold-dark);
    border-left: 2px solid var(--gold);
    padding-left: 24px;
    margin: 32px 0 36px;
    line-height: 1.6;
}

/* ===========================================
   11. BENEFITS
   =========================================== */
.benefits {
    padding: var(--section-v) 0;
    background-color: var(--black);
}

.benefits__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.benefits__header {
    text-align: center;
    margin-bottom: 64px;
}

.benefits__header .section-title {
    color: var(--cream);
}

.benefits__header .section-title em {
    color: var(--gold-light);
}

.benefits__header .section-eyebrow {
    color: var(--gold);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.benefits__card {
    background-color: var(--black-soft);
    padding: 56px 40px;
    text-align: center;
    transition: background-color 0.3s ease;
    border: 1px solid rgba(196, 154, 60, 0.1);
}

.benefits__card:hover {
    background-color: rgba(196, 154, 60, 0.06);
}

.benefits__card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 28px;
    color: var(--gold);
}

.benefits__card-icon svg {
    width: 100%;
    height: 100%;
}

.benefits__card-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 16px;
    line-height: 1.2;
}

.benefits__card-text {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(234, 227, 213, 0.6);
}

.benefits__cta {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

/* ===========================================
   12. FEATURED PRODUCT SPOTLIGHT
   =========================================== */
.spotlight {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.spotlight__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.spotlight__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 12s ease;
}

.spotlight:hover .spotlight__bg-img {
    transform: scale(1.04);
}

.spotlight__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(24, 24, 14, 0.82) 0%,
        rgba(24, 24, 14, 0.6) 60%,
        rgba(24, 24, 14, 0.75) 100%
    );
}

.spotlight__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
    padding: 80px var(--container-px);
}

.spotlight__eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.spotlight__title {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
}

.spotlight__text {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 44px;
}

.spotlight__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===========================================
   13. TESTIMONIALS
   =========================================== */
.testimonials {
    padding: var(--section-v) 0;
    background-color: var(--cream);
}

.testimonials__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.testimonials__header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonials__card {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 44px 36px;
    transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s ease;
}

.testimonials__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(24, 24, 14, 0.08);
}

.testimonials__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonials__stars svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
    flex-shrink: 0;
}

.testimonials__quote {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 32px;
    quotes: "\201C" "\201D";
}

.testimonials__quote::before {
    content: open-quote;
    color: var(--gold);
    font-size: 28px;
    line-height: 0;
    vertical-align: -10px;
    margin-right: 4px;
}

.testimonials__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.testimonials__name {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 0.05em;
}

.testimonials__location {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    color: var(--text-muted);
}

/* ===========================================
   14. FINAL CTA BANNER
   =========================================== */
.cta-banner {
    padding: var(--section-v) 0;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

/* Decorative gold arc */
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 200%;
    border-radius: 50%;
    border: 1px solid rgba(196, 154, 60, 0.08);
    pointer-events: none;
}

.cta-banner__container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--container-px);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-banner__eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.cta-banner__title {
    font-family: var(--font-serif);
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 24px;
}

.cta-banner__title em {
    font-style: italic;
    color: var(--gold-light);
}

.cta-banner__text {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(234, 227, 213, 0.65);
    margin-bottom: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner__btn {
    font-size: 12px;
}

/* ===========================================
   15. NEWSLETTER
   =========================================== */
.newsletter {
    padding: var(--section-v) 0;
    background-color: var(--gold-pale);
    border-top: 1px solid rgba(196, 154, 60, 0.2);
}

.newsletter__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.newsletter__title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 16px;
}

.newsletter__title em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold-dark);
}

.newsletter__text {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Contact info list */
.newsletter__contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.newsletter__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-body);
}

.newsletter__contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.newsletter__contact-link {
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.2s ease;
}

.newsletter__contact-link:hover {
    color: var(--gold-dark);
}

/* Form fields */
.newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter__label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
}

.newsletter__input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
    background-color: var(--white);
    border: 1.5px solid var(--border);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.newsletter__input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196, 154, 60, 0.1);
}

.newsletter__input::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.newsletter__textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.newsletter__submit {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 12px;
    margin-top: 4px;
}

.newsletter__privacy {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: -8px;
}

.newsletter__privacy a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Success state */
.newsletter__success {
    display: none;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background-color: var(--white);
    border: 1px solid rgba(196, 154, 60, 0.35);
    color: var(--gold-dark);
}

.newsletter__success svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.newsletter__success p {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
}

.newsletter__success.is-visible {
    display: flex;
}

/* ===========================================
   16. FOOTER
   =========================================== */
.footer {
    background-color: var(--black);
}

.footer__top {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px var(--container-px) 64px;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr 1fr;
    gap: 60px;
    align-items: start;
    border-bottom: 1px solid rgba(196, 154, 60, 0.15);
}

.footer__logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: invert(1) brightness(0.9);
}

.footer__tagline {
    font-family: var(--font-serif);
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    color: rgba(234, 227, 213, 0.5);
    line-height: 1.5;
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer__nav-heading {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav-link {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: rgba(234, 227, 213, 0.55);
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: var(--cream);
}

.footer__social-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(196, 154, 60, 0.25);
    color: rgba(234, 227, 213, 0.6);
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background-color: rgba(196, 154, 60, 0.08);
}

.footer__social-link svg {
    width: 16px;
    height: 16px;
}

.footer__bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 28px var(--container-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__copy {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    color: rgba(234, 227, 213, 0.35);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal-link {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    color: rgba(234, 227, 213, 0.35);
    transition: color 0.3s ease;
}

.footer__legal-link:hover {
    color: var(--cream);
}

/* ===========================================
   17. KEYFRAME ANIMATIONS
   =========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50%       { opacity: 0.3; transform: scaleY(0.6); }
}

/* ===========================================
   18. RESPONSIVE — TABLET (≤ 1024px)
   =========================================== */
@media (max-width: 1024px) {
    :root {
        --section-v: 90px;
        --container-px: 32px;
    }

    /* Nav */
    .nav__menu {
        display: none;
    }

    .nav__cta {
        display: inline-flex;
    }

    .nav__hamburger {
        display: flex;
    }

    /* Hero */
    .hero__container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding-top: 60px;
        text-align: center;
    }

    .hero::before {
        display: none;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__meta {
        justify-content: center;
    }

    .hero__badge {
        left: -16px;
        width: 96px;
        height: 96px;
    }

    .hero__float-img {
        right: -16px;
        bottom: -20px;
    }

    /* Trust strip */
    .trust-strip__container {
        gap: 16px;
    }

    .trust-strip__label {
        font-size: 10px;
    }

    /* Product showcase */
    .product__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .product__gallery {
        position: static;
    }

    /* Story */
    .story__container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .story__text--quote {
        text-align: left;
    }

    /* Benefits */
    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    /* Contact form */
    .newsletter__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Footer */
    .footer__top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer__logo {
        height: 64px;
    }

    /* Testimonials */
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 580px;
        margin: 0 auto;
        gap: 24px;
    }
}

/* ===========================================
   19. RESPONSIVE — MOBILE (≤ 768px)
   =========================================== */
@media (max-width: 768px) {
    :root {
        --nav-height: 68px;
        --section-v: 72px;
        --section-v-sm: 56px;
        --container-px: 20px;
    }

    /* Trust strip — stack on mobile */
    .trust-strip__container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 36px;
    }

    .trust-strip__divider {
        display: none;
    }

    .trust-strip__item {
        flex: 0 0 calc(50% - 18px);
        flex-direction: row;
        text-align: left;
        gap: 10px;
    }

    .trust-strip__icon {
        width: 28px;
        height: 28px;
    }

    /* Hero */
    .hero__container {
        padding: 40px var(--container-px) 60px;
        gap: 40px;
    }

    .hero__image-wrap {
        max-width: 340px;
        margin: 0 auto;
    }

    .hero__float-img {
        width: 30%;
        right: 0;
    }

    .hero__badge {
        width: 80px;
        height: 80px;
        left: -8px;
        bottom: 20px;
    }

    .hero__badge-text {
        font-size: 11px;
    }

    .hero__scroll-hint {
        display: none;
    }

    /* Product showcase mobile */
    .product__main-wrap {
        max-height: 380px;
    }

    .product__thumbs {
        grid-template-columns: repeat(6, 1fr);
    }

    .product__strip-item {
        width: 60px;
        height: 60px;
    }

    .product__actions {
        flex-direction: column;
    }

    .product__btn-cart,
    .product__btn-buy {
        text-align: center;
    }

    /* Spotlight */
    .spotlight {
        min-height: 500px;
    }

    .spotlight__title {
        font-size: 36px;
    }

    .spotlight__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .spotlight__actions .btn {
        text-align: center;
    }

    /* Story */
    .story__logo-wrap {
        max-width: 280px;
    }

    .story__text--quote {
        font-size: 17px;
    }

    /* Testimonials */
    .testimonials__card {
        padding: 32px 24px;
    }

    /* Contact form — already stacked, just tighten spacing */
    .newsletter__container {
        gap: 48px;
    }

    .newsletter__form {
        gap: 16px;
    }

    /* Footer */
    .footer__nav {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .footer__legal {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* CTA banner */
    .cta-banner__text {
        font-size: 15px;
    }
}

/* ===========================================
   20. RESPONSIVE — SMALL MOBILE (≤ 480px)
   =========================================== */
@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero__actions .btn {
        text-align: center;
        justify-content: center;
    }

    .trust-strip__item {
        flex: 0 0 100%;
        justify-content: center;
    }

    .footer__nav {
        grid-template-columns: 1fr;
    }

    .footer__social-links {
        justify-content: flex-start;
    }
}
