/* ═════════════════════════════════════════════════════
   BASSMENT ROSIN — Design System
   Palette: Black / White / Gold (#C5A059)
   Fonts: Syne (section headings) · Bastarda (product name) · Cormorant Garamond (serif accent) · Outfit (body)
   ═════════════════════════════════════════════════════ */

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

:root {
    /* Colors */
    --black: #0A0A0A;
    --black-soft: #111111;
    --black-lighter: #1A1A1A;
    --white: #F5F5F0;
    --white-muted: #BEBEB5;
    --gold: #C5A059;
    --gold-light: #D4B572;
    --gold-dark: #A8863D;

    /* Typography — fluid sizes */
    --fs-hero: clamp(3.5rem, 10vw, 8rem);
    --fs-tagline: clamp(1.8rem, 4vw, 3rem);
    --fs-statement: clamp(1.8rem, 4.5vw, 3.8rem);
    --fs-product-name: clamp(3rem, 8vw, 6.5rem);
    --fs-quote: clamp(1.2rem, 2.5vw, 1.8rem);
    --fs-body: clamp(1.05rem, 1.3vw, 1.2rem);
    --fs-small: clamp(0.95rem, 1.1vw, 1.05rem);
    --fs-nav: 0.95rem;

    /* Spacing */
    --space-xs: clamp(0.5rem, 1vw, 1rem);
    --space-sm: clamp(1rem, 2vw, 2rem);
    --space-md: clamp(2rem, 4vw, 4rem);
    --space-lg: clamp(4rem, 8vw, 8rem);
    --space-xl: clamp(6rem, 12vw, 12rem);

    /* Layout */
    --max-width: 1200px;
    --gutter: clamp(1.5rem, 4vw, 4rem);

    /* Animation */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration: 0.8s;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: var(--fs-body);
    line-height: 1.65;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Global focus styles for keyboard users */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
    border-radius: 2px;
}

a:hover {
    color: var(--gold-light);
}

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

strong {
    font-weight: 600;
}

em {
    font-style: italic;
    color: var(--gold);
}

/* Image placeholder fallback */
.img-placeholder {
    background: var(--black-lighter);
    border: 1px solid var(--black-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
}

.img-placeholder::after {
    content: '[ image ]';
    color: var(--white-muted);
    font-family: 'Outfit', sans-serif;
    font-size: var(--fs-small);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration) var(--ease-out),
        transform var(--duration) var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {

    .reveal,
    .faq-answer,
    .faq-chevron,
    .hero-cta,
    .add-to-cart-btn {
        transition: none !important;
        animation: none !important;
    }

    .reveal {
        transform: none !important;
        opacity: 1 !important;
    }
}


/* ═════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═════════════════════════════════════════════════════ */
.announcement-bar {
    background: var(--gold);
    color: var(--black);
    text-align: center;
    padding: 0.35rem var(--gutter);
    font-family: 'Syne', sans-serif;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.announcement-bar p {
    margin: 0;
    margin-block-end: 0;
}



/* ═════════════════════════════════════════════════════
   HEADER
   ═════════════════════════════════════════════════════ */
/* Full-width header with centered content alignment */
.site-header {
    width: 100% !important;
    max-width: none !important;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    /* The Magic Math: Pushes items in to match the 1200px content wall */
    padding-left: calc((100% - var(--max-width)) / 2 + var(--gutter)) !important;
    padding-right: calc((100% - var(--max-width)) / 2 + var(--gutter)) !important;
    
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    margin-bottom: -60px;
    background: transparent;
    box-sizing: border-box;
    filter: drop-shadow(0px 1px 3px rgba(0,0,0,0.9)) drop-shadow(0px 0px 15px rgba(0,0,0,0.6));
}
/* On smaller screens where 100% is less than 1200px, just use the standard gutter */
@media (max-width: 1200px) {
    .site-header {
        padding-left: var(--gutter) !important;
        padding-right: var(--gutter) !important;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--white);
}

.logo-mark {
    height: 28px;
    width: auto;
}

.logo-wordmark {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.logo-text-fallback {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

/* High-specificity override for the header cart button */
.site-header .cart-btn,
.site-header .cart-btn:hover,
.site-header .cart-btn:focus,
.site-header .cart-btn:active,
.site-header .cart-btn:visited {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--white) !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.site-header .cart-btn:hover {
    color: var(--gold) !important;
}



/* ═════════════════════════════════════════════════════
   HERO
   ═════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-lg) var(--gutter) var(--space-md);
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(197, 160, 89, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-md);
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--fs-tagline);
    font-style: italic;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: var(--space-xs);
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--fs-hero);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.hero-sub {
    font-size: var(--fs-body);
    font-weight: 300;
    color: var(--white-muted);
    line-height: 1.7;
    max-width: 380px;
}

.hero-cta {
    display: inline-block;
    margin-top: var(--space-sm);
    padding: 0.9rem 2.4rem;
    background: var(--gold);
    color: var(--black);
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: var(--fs-small);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: all 0.4s var(--ease-out);
}

.hero-cta:hover {
    background: transparent;
    color: var(--gold);
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white-muted);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gold);
    animation: scroll-pulse 2s var(--ease-in-out) infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}


/* ═════════════════════════════════════════════════════
   TESTIMONIALS
   ═════════════════════════════════════════════════════ */
.testimonials {
    padding: var(--space-xl) var(--gutter);
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.testimonial-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    max-width: 700px;
}

/* Alternate alignment */
.testimonial-card:nth-child(even) {
    margin-left: auto;
    text-align: right;
}

.testimonial-card:nth-child(even) .testimonial-attribution {
    justify-content: flex-end;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--fs-quote);
    font-weight: 400;
    line-height: 1.55;
    color: var(--white);
    font-style: italic;
    position: relative;
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    color: var(--gold);
    line-height: 0;
    position: absolute;
    top: -0.2em;
    left: -0.05em;
    opacity: 0.4;
}

.testimonial-attribution {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.testimonial-photo {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.testimonial-name {
    font-family: 'Syne', sans-serif;
    font-size: var(--fs-small);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: block;
}

.testimonial-title {
    font-size: var(--fs-small);
    color: var(--white-muted);
    display: block;
    line-height: 1.4;
}

.testimonials-note {
    font-size: var(--fs-small);
    color: var(--white-muted);
    opacity: 0.5;
    text-align: center;
    font-style: italic;
    padding-top: var(--space-sm);
}


/* ═════════════════════════════════════════════════════
   PRODUCT USAGE CALLOUTS (replaces "How it plays")
   ═════════════════════════════════════════════════════ */
.product-usage-callouts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: var(--space-md);
    margin-top: 0.5rem;
}

.usage-callout {
    padding-left: 1rem;
    border-left: 2px solid var(--gold);
}

.usage-callout-label {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 0.15rem;
}

.usage-callout-detail {
    display: block;
    font-size: var(--fs-small);
    color: var(--white-muted);
    line-height: 1.6;
}


/* ═════════════════════════════════════════════════════
   PROBLEM SECTION
   ═════════════════════════════════════════════════════ */
.problem-section {
    padding: var(--space-xl) var(--gutter);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.section-statement {
    font-family: 'Syne', sans-serif;
    font-size: var(--fs-statement);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.problem-body {
    font-size: var(--fs-body);
    color: var(--white-muted);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.problem-solution {
    color: var(--gold);
    font-weight: 500;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

.problem-quote {
    margin: 0 0 var(--space-md) 0;
    padding: 0;
    border: none;
}

.problem-quote .section-statement {
    font-style: normal;
    margin-bottom: 0.8rem;
}

.problem-attribution {
    font-family: 'Outfit', sans-serif;
    font-size: var(--fs-small);
    font-style: normal;
    color: var(--gold);
    letter-spacing: 0.04em;
}


/* ═════════════════════════════════════════════════════
   PRODUCT / BUY SECTION
   ═════════════════════════════════════════════════════ */
.product-section {
    padding: var(--space-lg) 0;
    position: relative;
    background: var(--black-soft);
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.product-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    align-items: center;
    max-width: none;
}

.product-image {
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.product-image img,
.product-image video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    padding: var(--space-md) var(--gutter) var(--space-md) var(--space-md);
    max-width: 500px;
}

.product-name {
    font-family: 'bastarda', 'Cormorant Garamond', serif;
    font-size: var(--fs-product-name);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.feature {
    font-family: 'Syne', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gold);
}

.feature-sep {
    color: rgba(197, 160, 89, 0.4);
}


/* Support for dynamic price shortcode */
#product-price-block,
.product-price-block {
    margin-bottom: var(--space-sm) !important;
    padding-bottom: var(--space-sm) !important;
    border-bottom: 1px solid rgba(245, 245, 240, 0.08) !important;
    background: transparent !important;
    display: block !important;
}
.br-price,
.product-price {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
    font-weight: 600 !important;
    color: var(--gold) !important;
    display: block !important;
    margin-bottom: 0.4rem !important;
    letter-spacing: -0.02em !important;
    line-height: 1 !important;
}
.br-subline,
.product-perks {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.2rem !important;
    font-size: clamp(0.75rem, 1vw, 0.85rem) !important;
    color: var(--white-muted) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}
/* Ensure sub-links (like guarantee) match perks styling */
.br-subline a,
.product-perks a {
    color: var(--white-muted) !important;
    text-decoration: underline !important;
    text-underline-offset: 2px;
}

/* Checkout area */
.checkout-placeholder {
    margin-top: var(--space-sm);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.checkout-label {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    color: var(--white-muted);
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.checkout-controls {
    display: flex;
    gap: 0.5rem;
}

.select-wrapper {
    flex: 1;
    position: relative;
}

.checkout-select,
.checkout-qty {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    background: var(--black-lighter);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 2px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.checkout-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23C5A059' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.quantity-input-wrapper {
    width: 80px;
}

.checkout-qty {
    text-align: center;
    padding: 0;
}

/* Hide number spin buttons */
.checkout-qty::-webkit-outer-spin-button,
.checkout-qty::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

.checkout-qty[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.checkout-select:focus,
.checkout-qty:focus {
    outline: none;
    border-color: var(--gold);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.add-to-cart-btn {
    display: block;
    width: 100%;
    padding: 1.1rem 2rem;
    background: var(--gold);
    color: var(--black);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

/* TOTAL WAR: Eliminate the Fuchsia (#c36) override from the theme */
html body #homepage-add-to-cart-form button#homepage_cart_button[type="submit"],
html body #homepage-add-to-cart-form button#homepage_cart_button[type="submit"]:hover,
html body #homepage-add-to-cart-form button#homepage_cart_button[type="submit"]:focus,
html body #homepage-add-to-cart-form button#homepage_cart_button[type="submit"]:active {
    background-color: var(--gold) !important;
    background: var(--gold) !important; /* Kills theme gradients */
    color: var(--black) !important;
    border: 2px solid var(--gold) !important;
    box-shadow: none !important;      /* Kills theme glows/offsets */
    outline: none !important;         /* Kills theme focus rings */
    text-decoration: none !important;
}

/* Nuclear strike on any pseudo-elements (like ::after) that might be fuchsia */
html body #homepage-add-to-cart-form button#homepage_cart_button[type="submit"]::before,
html body #homepage-add-to-cart-form button#homepage_cart_button[type="submit"]::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

/* Design-specific Hover (Gold border, transparent center) */
html body #homepage-add-to-cart-form button#homepage_cart_button[type="submit"]:hover {
    background-color: transparent !important;
    background: transparent !important;
    color: var(--gold) !important;
}





.checkout-note {
    margin-top: 1rem;
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    color: var(--white-muted);
    opacity: 0.7;
}


/* ═════════════════════════════════════════════════════
   ABOUT / STORY SECTION
   ═════════════════════════════════════════════════════ */
.about-section {
    padding: var(--space-xl) var(--gutter);
    position: relative;
}

.about-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-content .section-statement {
    margin-bottom: var(--space-lg);
}

/* Story timeline */
.story-timeline {
    position: relative;
    padding-left: 5rem;
    margin-bottom: var(--space-lg);
}

/* Vertical connecting line */
.story-timeline::before {
    content: '';
    position: absolute;
    left: 2.2rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), rgba(197, 160, 89, 0.1));
}

.story-beat {
    position: relative;
    padding-bottom: var(--space-md);
}

.story-beat:last-child {
    padding-bottom: 0;
}

.story-marker {
    position: absolute;
    left: -5rem;
    top: 0;
    width: 4rem;
    text-align: right;
    font-family: 'Syne', sans-serif;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.story-text {
    color: var(--white-muted);
    line-height: 1.75;
    max-width: 550px;
}

.story-text strong {
    color: var(--gold);
}

/* YouTube video embed */
.about-video {
    max-width: 750px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 */
    background: var(--black-lighter);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ═════════════════════════════════════════════════════
   FAQ
   ═════════════════════════════════════════════════════ */
.faq-section {
    padding: var(--space-xl) var(--gutter);
    max-width: 750px;
    margin: 0 auto;
    background: var(--black);
}

.faq-section .section-statement {
    margin-bottom: var(--space-md);
    text-align: center;
}

/* Language selector */
.faq-lang-select {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-lg);
}

.faq-lang-select label {
    font-size: 1.1rem;
}

#faq-lang {
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 2px;
    background: var(--black-lighter);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: var(--fs-small);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23C5A059' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    padding-right: 2rem;
}

#faq-lang:focus {
    outline: none;
    border-color: var(--gold);
}

/* FAQ list */
.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid rgba(245, 245, 240, 0.1);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(245, 245, 240, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 0;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s ease;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover,
.faq-question:focus-visible {
    color: var(--gold);
    outline: none;
    /* Handled by text color change + custom outline if wanted, but global handles it */
}

/* Ensure global focus outline looks good on the tight FAQ padding */
.faq-question:focus-visible {
    outline-offset: -2px;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-out);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0;
    color: var(--white-muted);
    line-height: 1.8;
    max-width: 90%;
}

.faq-item.open .faq-question {
    color: var(--gold);
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding-bottom: 1.4rem;
}

.faq-answer a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}



/* ═════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════ */
.site-footer {
    padding: var(--space-md) var(--gutter);
    text-align: center;
}

.footer-statement {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-style: italic;
    color: var(--white-muted);
    max-width: 650px;
    margin: 0 auto var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(245, 245, 240, 0.06);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.75rem !important;
    color: var(--white-muted);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.75rem !important;
    color: var(--white-muted);
    opacity: 0.4;
}


/* ═════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        align-items: center;
    }

    .hero-image {
        display: flex;
        justify-content: center;
        margin-top: var(--space-md);
    }

    .hero-image img {
        max-height: 50vh;
        width: auto;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        margin-left: auto;
        margin-right: auto;
    }

    .testimonials {
        padding: var(--space-lg) var(--gutter);
        gap: var(--space-lg);
    }

    .testimonial-card {
        max-width: 100%;
        padding-bottom: var(--space-md);
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    }

    .testimonial-card:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

    .testimonial-quote {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .product-image {
        order: 0;
        min-height: auto;
        max-height: 55vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--black-soft);
    }

    .product-image video,
    .product-image img {
        max-height: 55vh;
    }

    .product-info {
        order: 1;
        padding: var(--space-sm) var(--gutter) var(--space-md);
        max-width: none;
    }

    .product-name {
        font-size: clamp(3.5rem, 10vw, 5.5rem);
        margin-top: var(--space-sm);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .about-video {
        position: relative;
        top: 0;
    }

    .testimonial-card,
    .testimonial-card:nth-child(even) {
        max-width: 100%;
        margin-left: 0;
        text-align: left;
    }

    .testimonial-card:nth-child(even) .testimonial-attribution {
        justify-content: flex-start;
    }
}


/* ═════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═════════════════════════════════════════════════════ */
@media (max-width: 600px) {
    :root {
        --gutter: 1.25rem;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-headline {
        font-size: clamp(2.8rem, 14vw, 4.5rem);
    }

    .hero-scroll-hint {
        display: none;
    }

    .testimonials {
        gap: var(--space-lg);
    }

    .testimonial-quote {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

    .how-card {
        padding: var(--space-sm);
    }

    .product-section {
        padding: var(--space-md) 0;
    }

    .product-image {
        max-height: 45vh;
    }

    .product-image video,
    .product-image img {
        max-height: 45vh;
    }

    .product-name {
        font-size: clamp(3.5rem, 14vw, 5.5rem);
        margin-top: var(--space-sm);
    }

    .product-price {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .product-usage-callouts {
        gap: 0.6rem;
    }

    .product-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .feature-sep {
        display: none;
    }

    .checkout-placeholder {
        margin-top: var(--space-xs);
    }

    .section-statement {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}