/* =============================================
   TROPIHUG™ — STYLES
   Editorial DTC storefront. Warm, earthy, cinematic.
   Vanilla CSS, mobile-first, single committed light look.
============================================= */

/* ---------------------------------------------
   TOKENS
--------------------------------------------- */
:root {
    /* Warm neutrals — no pure white, no cold gray */
    --paper:        #f6f1e8;   /* page background */
    --paper-2:      #efe7d8;   /* sand, alt sections */
    --paper-3:      #e7ddca;   /* deeper sand */
    --card:         #fbf8f2;   /* raised surfaces */
    --ink:          #211b14;   /* warm near-black text */
    --ink-soft:     #4a4238;   /* secondary text */
    --muted:        #645b4b;   /* tertiary / captions — AA on all cream surfaces */
    --hairline:     #ddd2bd;   /* borders */
    --hairline-2:   #ccbfa5;

    /* Brand accents */
    --forest:       #29332b;   /* dark sections */
    --forest-2:     #1e2620;   /* deepest */
    --sage:         #8fa89b;   /* product / soft accent */
    --clay:         #b0533a;   /* primary accent, CTAs (≈5% of surface) */
    --clay-deep:    #8f4230;   /* clay text / hover */
    --gold:         #9a6a1c;   /* stars — AA (3:1) as a graphic on light surfaces */

    /* On-dark */
    --on-dark:      #f3ece0;
    --on-dark-soft: #b8ae9c;
    --on-dark-mute: #a39a86;   /* AA on forest + ink */

    /* Type */
    --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
    --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono:  'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

    /* Rhythm */
    --gutter: clamp(1.25rem, 5vw, 3.5rem);
    --maxw: 1240px;
    --s-1: 0.5rem;
    --s-2: 1rem;
    --s-3: 1.5rem;
    --s-4: 2rem;
    --s-5: 3rem;
    --s-6: 4.5rem;
    --s-7: 7rem;
    --s-8: 10rem;

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --t-fast: 180ms var(--ease);
    --t-base: 320ms var(--ease);
    --t-slow: 700ms var(--ease);

    --radius: 4px;
    --radius-lg: 14px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 96px;
    --announce-h: 35px;
}

body {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Subtle paper grain — signals hand-made, counters AI-polish */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 8;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }

:where(a, button, summary, input, .swatch):focus-visible {
    outline: 2px solid var(--clay);
    outline-offset: 2px;
    border-radius: 3px;
}

::selection { background: var(--clay); color: var(--paper); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--hairline-2); border-radius: 20px; }

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

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.tnum { font-variant-numeric: tabular-nums; }

/* Shared editorial atoms */
.eyebrow {
    font-family: var(--mono);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
}
.eyebrow::before {
    content: "";
    width: 1.5rem; height: 1px;
    background: var(--hairline-2);
    display: inline-block;
}
.eyebrow--plain::before { display: none; }
.eyebrow--clay { color: var(--clay-deep); }

.h-display {
    font-family: var(--serif);
    font-weight: 400;
    font-optical-sizing: auto;
    line-height: 1.02;
    letter-spacing: -0.015em;
    color: var(--ink);
}
.i { font-style: italic; font-family: var(--serif); }

.stars { display: inline-flex; gap: 2px; color: #a06e1c; line-height: 1; }
.stars svg { width: 15px; height: 15px; fill: currentColor; }

/* Reveal targets (JS-driven). Fallback: visible if no JS. */
[data-reveal] { opacity: 1; }
.js [data-reveal] { opacity: 0; transform: translateY(28px); will-change: transform, opacity; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
    font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.02em;
    padding: 0.95rem 1.6rem; border-radius: 100px;
    transition: transform var(--t-fast), background var(--t-base), color var(--t-base), border-color var(--t-base);
    white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn--clay { background: var(--clay); color: var(--paper); }
.btn--clay:hover { background: var(--clay-deep); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: #000; }
.btn--ghost { background: transparent; border: 1px solid var(--hairline-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn svg { width: 16px; height: 16px; }

/* ---------------------------------------------
   ANNOUNCE BAR
--------------------------------------------- */
.announce {
    background: var(--forest);
    color: var(--on-dark-soft);
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    overflow: hidden;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 60;
}
.announce__track {
    display: flex; width: max-content;
    animation: marquee 45s linear infinite;
}
.announce:hover .announce__track { animation-play-state: paused; }
.announce__item { display: flex; align-items: center; padding: 0.6rem 0; white-space: nowrap; }
/* Uniform right-margin on every child (incl. the trailing dot) makes the
   seam between the two copies read exactly like the internal spacing. */
.announce__item > * { margin-right: 2rem; }
.announce__item b { color: var(--on-dark); font-weight: 500; }
.announce__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--clay); flex: 0 0 auto; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------------------------------------------
   NAV
--------------------------------------------- */
.nav {
    position: fixed; top: var(--announce-h, 35px); left: 0; right: 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem var(--gutter);
    color: var(--on-dark);
    transition: background var(--t-base), color var(--t-base), padding var(--t-base), box-shadow var(--t-base);
}
.nav--solid {
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 1px 0 var(--hairline);
    padding-top: 0.85rem; padding-bottom: 0.85rem;
}
.nav__brand { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; letter-spacing: 0.18em; }
.nav__links { display: none; gap: 2.2rem; }
.nav__link {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.16em;
    position: relative; padding: 0.2rem 0; opacity: 0.9;
}
.nav__link::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
    background: currentColor; transition: width var(--t-base);
}
.nav__link:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 0.9rem; }
.nav__cart {
    display: inline-flex; align-items: center; gap: 0.4em;
    font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em;
}
.nav__cart svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.nav__cta {
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500;
    padding: 0.72rem 1.3rem; border: 1px solid currentColor; border-radius: 100px;
    transition: background var(--t-base), color var(--t-base);
}
.nav--solid .nav__cta { background: var(--clay); border-color: var(--clay); color: var(--paper); }
.nav--solid .nav__cta:hover { background: var(--clay-deep); border-color: var(--clay-deep); }
.nav__cta:hover { background: var(--on-dark); color: var(--forest); }
.nav__toggle { display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; margin-right: -10px; }
.nav__toggle span { width: 22px; height: 1.5px; background: currentColor; transition: transform var(--t-base), opacity var(--t-base); }

@media (min-width: 940px) {
    .nav__links { display: flex; }
    .nav__toggle { display: none; }
}

/* Mobile drawer */
.drawer {
    position: fixed; inset: 0; z-index: 70;
    background: var(--forest);
    color: var(--on-dark);
    display: flex; flex-direction: column;
    padding: 5rem var(--gutter) 2rem;
    transform: translateY(-100%);
    transition: transform var(--t-slow);
    visibility: hidden;
}
.drawer.open { transform: translateY(0); visibility: visible; }
.drawer__close { position: absolute; top: 1.4rem; right: var(--gutter); font-size: 1.6rem; line-height: 1; }
.drawer__link {
    font-family: var(--serif); font-size: 2rem; padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.drawer__foot { margin-top: auto; padding-top: 2rem; }
.drawer .eyebrow { color: var(--on-dark-mute); }
.drawer .eyebrow::before { background: rgba(255,255,255,0.28); }

/* ---------------------------------------------
   HERO
--------------------------------------------- */
.hero {
    position: relative; min-height: 100svh;
    display: flex; align-items: flex-end;
    overflow: hidden;
    background: var(--forest-2);
}
.hero__bg {
    position: absolute; inset: -8% 0 0 0; z-index: 0;
    background-size: cover; background-position: center 30%;
    will-change: transform;
}
.hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(to top, rgba(20,16,10,0.78) 0%, rgba(20,16,10,0.25) 42%, rgba(20,16,10,0.32) 100%),
        linear-gradient(to right, rgba(20,16,10,0.45), transparent 60%);
}
.hero__inner {
    position: relative; z-index: 2;
    max-width: var(--maxw); width: 100%; margin: 0 auto;
    padding: 0 var(--gutter) clamp(3rem, 8vh, 6rem);
    color: var(--on-dark);
}
.hero__chip {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--on-dark-soft); margin-bottom: 1.6rem;
}
.hero__chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 4px rgba(176,83,58,0.25); }
.hero__chip .sep { width: 1px; height: 12px; background: rgba(255,255,255,0.35); }
.hero__chip .lim { color: var(--sage); }
.hero__headline {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(3rem, 10.5vw, 8rem);
    line-height: 0.92; letter-spacing: -0.02em;
    max-width: 14ch; margin-bottom: 1.6rem;
}
.hero__headline .i { color: var(--on-dark); }
.hero__sub {
    font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 300;
    color: var(--on-dark-soft); max-width: 46ch; line-height: 1.6;
    margin-bottom: 2.2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 2.6rem; }
.hero__secondary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--on-dark); padding-bottom: 0.3rem; border-bottom: 1px solid rgba(255,255,255,0.4);
    transition: gap var(--t-base), border-color var(--t-base);
}
.hero__secondary:hover { gap: 1rem; border-color: var(--on-dark); }
.hero__secondary svg { width: 15px; height: 15px; }
.hero__proof { display: flex; align-items: center; gap: 1rem; }
.hero__avatars { display: flex; }
.hero__avatars img {
    width: 34px; height: 34px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--forest-2); margin-left: -10px;
}
.hero__avatars img:first-child { margin-left: 0; }
.hero__proof-text { font-size: 0.8rem; color: var(--on-dark-soft); }
.hero__proof-text b { color: var(--on-dark); font-weight: 500; font-variant-numeric: tabular-nums; }
.hero__scroll {
    position: absolute; right: var(--gutter); bottom: clamp(3rem,8vh,6rem); z-index: 2;
    display: none; writing-mode: vertical-rl;
    font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--on-dark-soft);
}
@media (min-width: 940px) { .hero__scroll { display: block; } }
@media (max-width: 619px) {
    .hero__actions { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
    .hero__actions .btn { width: 100%; }
}

/* ---------------------------------------------
   TRUST STRIP
--------------------------------------------- */
.trust {
    background: var(--ink); color: var(--on-dark-soft);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust__row {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 2.4rem;
    padding: 1.1rem var(--gutter); text-align: center;
}
.trust__item {
    font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 0.55em;
}
.trust__item svg { width: 14px; height: 14px; stroke: var(--sage); fill: none; stroke-width: 1.6; }

/* ---------------------------------------------
   STORY / NARRATIVE
--------------------------------------------- */
.story { background: var(--paper-2); padding: var(--s-8) 0; }
.story__inner { max-width: 760px; margin: 0 auto; padding-inline: var(--gutter); text-align: center; }
.story__chapter { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.story__label { margin-bottom: 3.5rem; }
.story__rule { width: 1px; height: 4.5rem; background: var(--hairline-2); transform-origin: top; }
.story__text {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(1.7rem, 4.4vw, 2.9rem); line-height: 1.22; color: var(--ink-soft);
}
.story__text--big { font-size: clamp(2.2rem, 6vw, 4rem); color: var(--ink); }
.story__lines { display: flex; flex-direction: column; gap: clamp(3rem, 7vw, 5.5rem); margin: 3.5rem 0; }
.story__drop {
    width: 3rem; height: 3rem; border-radius: 50%; border: 1px solid var(--hairline-2);
    display: grid; place-items: center; margin: 1.2rem auto 0; color: var(--muted);
}
.story__drop svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.4; }

/* Origin / heritage */
.origin { background: var(--paper); padding: var(--s-7) 0; border-top: 1px solid var(--hairline); }
.origin__grid { display: grid; gap: 3rem; align-items: center; }
.origin__body .h-display { font-size: clamp(1.9rem, 4vw, 3rem); margin: 1.2rem 0 1.4rem; }
.origin__body p { color: var(--ink-soft); max-width: 46ch; margin-bottom: 1.1rem; font-weight: 300; font-size: 1.05rem; }
.origin__note {
    font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--muted);
    border-left: 2px solid var(--clay); padding-left: 1rem; margin-top: 1.8rem; line-height: 1.7;
}
.origin__media { position: relative; }
.origin__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 42%; border-radius: var(--radius); }
.origin__tag {
    position: absolute; bottom: 1rem; left: 1rem;
    background: var(--card); color: var(--ink); padding: 0.7rem 1rem; border-radius: var(--radius);
    font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
    box-shadow: 0 12px 30px -12px rgba(30,20,10,0.4);
}
@media (min-width: 860px) {
    .origin__grid { grid-template-columns: 1fr 0.85fr; gap: 5rem; }
}

/* ---------------------------------------------
   PRODUCT / PDP
--------------------------------------------- */
.product { background: var(--card); padding: var(--s-7) 0; border-top: 1px solid var(--hairline); }
.product__grid { display: grid; gap: 3rem; align-items: center; }
.product__media { position: relative; }
.product__photo {
    width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 62%; border-radius: var(--radius);
    background: var(--paper-3);
    box-shadow: 0 24px 60px -30px rgba(30,20,10,0.35);
}
.product__badge {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--clay); color: var(--paper);
    font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 0.45rem 0.8rem; border-radius: 100px;
}
.product__callout {
    position: absolute; background: rgba(251,248,242,0.94); backdrop-filter: blur(4px);
    padding: 0.5rem 0.8rem; border-radius: var(--radius);
    font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink-soft); box-shadow: 0 8px 24px -10px rgba(30,20,10,0.4);
    display: flex; align-items: center; gap: 0.4em;
}
.product__callout .pin { width: 5px; height: 5px; border-radius: 50%; background: var(--clay); }
.product__callout--a { top: 8%; right: 0.8rem; }
.product__callout--b { bottom: 10%; left: 0.8rem; }

.product__info { max-width: 480px; }
.product__rating { display: flex; align-items: center; gap: 0.6rem; margin: 1rem 0 0.9rem; font-size: 0.8rem; color: var(--muted); }
.product__rating a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.product__name { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.02; letter-spacing: -0.02em; }
.product__tag { color: var(--muted); font-size: 0.95rem; margin-top: 0.35rem; }
.product__benefits { list-style: none; margin: 1.8rem 0; display: grid; gap: 0.9rem; }
.product__benefits li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.98rem; color: var(--ink-soft); }
.product__benefits svg { width: 18px; height: 18px; stroke: var(--clay); fill: none; stroke-width: 1.6; flex: 0 0 auto; margin-top: 3px; }
.product__benefits b { color: var(--ink); font-weight: 500; }

.product__buy { border-top: 1px solid var(--hairline); padding-top: 1.6rem; }
.product__price-row { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 1.2rem; }
.product__price { font-family: var(--serif); font-size: 2rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.product__price-was { color: var(--muted); text-decoration: line-through; font-size: 1rem; }
.product__price-note { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay-deep); }

.swatches { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.4rem; }
.swatch { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--hairline-2); position: relative; transition: transform var(--t-fast); }
.swatch::after { content: ""; position: absolute; inset: -8px; border-radius: 50%; }
.swatch:hover { transform: scale(1.1); }
.swatch[aria-pressed="true"] { box-shadow: 0 0 0 2px var(--paper), 0 0 0 3.5px var(--ink); }
.swatches__name { font-size: 0.8rem; color: var(--muted); margin-left: 0.3rem; }
.swatches__name b { color: var(--ink); font-weight: 500; }

.product__actions { display: flex; flex-direction: column; gap: 0.8rem; }
.product__actions .btn { width: 100%; padding-block: 1.1rem; font-size: 0.85rem; }
.product__reassure {
    display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; margin-top: 1.3rem;
    font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
}
.product__reassure span { display: inline-flex; align-items: center; gap: 0.45em; }
.product__reassure svg { width: 13px; height: 13px; stroke: var(--sage); fill: none; stroke-width: 1.7; }
.product__stock { margin-top: 1.4rem; }
.product__stock-bar { height: 4px; border-radius: 4px; background: var(--paper-3); overflow: hidden; }
.product__stock-fill { height: 100%; width: 69%; background: var(--clay); border-radius: 4px; }
.product__stock-txt { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 0.5rem; }
.product__stock-txt b { color: var(--clay-deep); }

@media (min-width: 900px) {
    .product__grid { grid-template-columns: 1.05fr 1fr; gap: 5rem; }
}

/* ---------------------------------------------
   SPEC / NUTRITION LABEL
--------------------------------------------- */
.spec { background: var(--forest); color: var(--on-dark); padding: var(--s-7) 0; }
.spec__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1.5rem; margin-bottom: 3.5rem; }
.spec .eyebrow { color: var(--on-dark-mute); }
.spec .eyebrow::before { background: rgba(255,255,255,0.25); }
.spec__title { font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 3rem); color: var(--on-dark); margin-top: 0.8rem; max-width: 16ch; }
.spec__intro { max-width: 34ch; color: var(--on-dark-soft); font-weight: 300; font-size: 0.98rem; }
.spec__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; }
.spec__cell { background: var(--forest); padding: 1.6rem 1.4rem; }
.spec__cell .n { font-family: var(--serif); font-size: 2rem; display: block; margin-bottom: 0.2rem; font-variant-numeric: tabular-nums; }
.spec__cell .l { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-mute); }
.spec__cell .s { display: block; font-size: 0.8rem; color: var(--on-dark-soft); margin-top: 0.5rem; font-weight: 300; line-height: 1.5; }
.spec__certs { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2.2rem; }
.spec__cert {
    font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.18); color: var(--on-dark-soft);
    padding: 0.5rem 0.9rem; border-radius: 100px;
}
.spec__disclaimer { font-size: 0.72rem; color: var(--on-dark-mute); margin-top: 1.6rem; max-width: 60ch; line-height: 1.6; }
@media (min-width: 760px) {
    .spec__grid { grid-template-columns: repeat(4, 1fr); }
    .spec__layout { display: grid; grid-template-columns: 1fr; }
}

/* ---------------------------------------------
   COMPARE — STACK VS HUG
--------------------------------------------- */
.compare { background: var(--paper-3); padding: var(--s-7) 0; }
.compare__head { text-align: center; margin-bottom: 3.5rem; }
.compare__head .h-display { font-size: clamp(1.9rem, 4vw, 3rem); margin-top: 0.9rem; }
.compare__grid { display: grid; gap: 2rem; position: relative; max-width: 900px; margin: 0 auto; }
.compare__col { text-align: center; padding: 2.5rem 1.5rem; border-radius: var(--radius-lg); }
.compare__col--a { opacity: 0.65; }
.compare__col--b { background: var(--card); box-shadow: 0 30px 60px -30px rgba(30,20,10,0.25); }
.compare__viz { height: 180px; display: grid; place-items: center; margin-bottom: 1.6rem; }
.compare__stack { position: relative; width: 150px; height: 90px; }
.compare__stack span { position: absolute; border: 1px solid var(--hairline-2); border-radius: 4px; background: var(--paper-3); }
.compare__stack span:nth-child(1) { width: 130px; height: 40px; bottom: 0; left: 10px; }
.compare__stack span:nth-child(2) { width: 130px; height: 40px; bottom: 22px; left: 20px; background: var(--paper); }
.compare__bolster { width: 46px; height: 160px; border-radius: 100px; background: var(--forest); transform: rotate(14deg); position: relative; overflow: hidden; box-shadow: 0 20px 40px -16px rgba(30,20,10,0.5); }
.compare__bolster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(255,255,255,0.22), transparent 55%); }
.compare__col h3 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 0.6rem; }
.compare__col p { font-size: 0.92rem; color: var(--ink-soft); max-width: 34ch; margin: 0 auto; }
.compare__tag { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay-deep); display: block; margin-top: 1rem; }
@media (min-width: 760px) {
    .compare__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .compare__grid::before { content: ""; position: absolute; left: 50%; top: 10%; bottom: 10%; width: 1px; background: var(--hairline-2); }
}

/* ---------------------------------------------
   COLLECTION
--------------------------------------------- */
.collection { background: var(--paper); padding: var(--s-7) 0; overflow: hidden; border-top: 1px solid var(--hairline); }
.collection__head {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.4rem;
    padding-inline: var(--gutter); max-width: var(--maxw); margin: 0 auto 2.6rem;
}
.collection__head .h-display { font-size: clamp(1.9rem, 4vw, 3rem); margin-top: 0.8rem; }
.collection__nav { display: none; gap: 0.6rem; }
.collection__nav button {
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--hairline-2);
    display: grid; place-items: center; transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
}
.collection__nav button:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.collection__nav svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.collection__scroll {
    display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 0 var(--gutter) 1.5rem;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.collection__scroll::-webkit-scrollbar { display: none; }
.card { flex: 0 0 82%; max-width: 400px; scroll-snap-align: start; cursor: pointer; }
.card__media { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius); background: var(--paper-2); margin-bottom: 1rem; }
.card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(0.92) contrast(0.98); transition: transform var(--t-slow); }
.card:hover .card__media img { transform: scale(1.05); }
.card__quick {
    position: absolute; inset-inline: 0.8rem; bottom: 0.8rem;
    background: var(--card); color: var(--ink); text-align: center;
    font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.7rem; border-radius: var(--radius);
    opacity: 0; transform: translateY(8px); transition: opacity var(--t-base), transform var(--t-base);
}
.card:hover .card__quick { opacity: 1; transform: translateY(0); }
.card__row { display: flex; justify-content: space-between; align-items: baseline; }
.card__name { font-family: var(--serif); font-size: 1.4rem; transition: font-style var(--t-base); }
.card:hover .card__name { font-style: italic; }
.card__price { font-variant-numeric: tabular-nums; color: var(--ink-soft); font-size: 0.95rem; }
.card__material { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }
@media (min-width: 760px) {
    .collection__nav { display: flex; }
    .card { flex: 0 0 340px; }
}
@media (min-width: 900px) {
    /* Enough room for the whole palette — centered grid, no left-hug, no scroll */
    .collection__scroll {
        display: grid; grid-template-columns: repeat(4, 1fr);
        overflow: visible; max-width: var(--maxw); margin-inline: auto; padding-bottom: 0;
    }
    .card { flex: initial; width: auto; max-width: none; }
    .collection__nav { display: none; }
}

/* ---------------------------------------------
   JOURNEY
--------------------------------------------- */
.journey { background: var(--forest-2); color: var(--on-dark); padding: var(--s-7) 0; }
.journey .eyebrow { color: var(--on-dark-mute); }
.journey .eyebrow::before { background: rgba(255,255,255,0.28); }
.journey__inner { max-width: 900px; margin: 0 auto; padding-inline: var(--gutter); text-align: center; }
.journey__title { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0.9rem 0 3.5rem; color: var(--on-dark); }
.journey__steps { display: grid; gap: 2.5rem; position: relative; }
.journey__step { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.journey__icon { width: 3.4rem; height: 3.4rem; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); display: grid; place-items: center; color: var(--sage); }
.journey__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.journey__num { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; color: var(--sage); }
.journey__step h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; margin-bottom: 0.3rem; color: var(--on-dark); }
.journey__step p { font-size: 0.88rem; color: var(--on-dark-soft); max-width: 24ch; }
@media (min-width: 760px) {
    .journey__steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .journey__steps::before { content: ""; position: absolute; top: 1.7rem; left: 16%; right: 16%; height: 1px; border-top: 1px dashed rgba(255,255,255,0.22); }
}

/* ---------------------------------------------
   GALLERY / UGC
--------------------------------------------- */
.gallery { background: var(--paper); padding: var(--s-7) 0; border-top: 1px solid var(--hairline); }
.gallery__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1.5rem; margin-bottom: 3rem; }
.gallery__head .h-display { font-size: clamp(1.9rem, 4.4vw, 3.2rem); }
.gallery__head p { max-width: 34ch; color: var(--muted); font-size: 0.9rem; }
.gallery__masonry { columns: 1; column-gap: 1.5rem; }
.gallery__item { break-inside: avoid; margin-bottom: 1.5rem; position: relative; border-radius: var(--radius); overflow: hidden; }
.gallery__item img { width: 100%; filter: grayscale(1); transition: filter var(--t-slow); }
.gallery__item:hover img { filter: grayscale(0); }
.gallery__handle { position: absolute; bottom: 0.6rem; left: 0.6rem; font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.06em; color: var(--paper); background: rgba(20,16,10,0.5); padding: 0.3rem 0.6rem; border-radius: 100px; opacity: 0; transition: opacity var(--t-base); }
.gallery__item:hover .gallery__handle { opacity: 1; }
.gallery__quote { background: var(--forest); color: var(--on-dark); padding: 2.2rem; display: flex; flex-direction: column; justify-content: space-between; min-height: 260px; }
.gallery__quote p { font-family: var(--serif); font-style: italic; font-size: 1.3rem; line-height: 1.4; }
.gallery__quote .who { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-top: 1.6rem; }
@media (min-width: 640px) { .gallery__masonry { columns: 2; } }
@media (min-width: 980px) { .gallery__masonry { columns: 3; } }

/* ---------------------------------------------
   REVIEWS
--------------------------------------------- */
.reviews { background: var(--card); padding: var(--s-7) 0; border-top: 1px solid var(--hairline); }
.reviews__grid { display: grid; gap: 3rem; }
.reviews__summary { }
.reviews__score { display: flex; align-items: baseline; gap: 0.8rem; }
.reviews__score .num { font-family: var(--serif); font-size: 3.4rem; line-height: 1; }
.reviews__score .of { color: var(--muted); }
.reviews__summary .stars { margin: 0.8rem 0 0.5rem; }
.reviews__count { font-size: 0.85rem; color: var(--muted); }
.reviews__bars { margin-top: 1.6rem; display: grid; gap: 0.5rem; max-width: 320px; }
.reviews__bar { display: flex; align-items: center; gap: 0.7rem; font-size: 0.72rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.reviews__bar .track { flex: 1; height: 5px; background: var(--paper-3); border-radius: 4px; overflow: hidden; }
.reviews__bar .fill { height: 100%; background: var(--gold); }
.reviews__list { display: grid; gap: 1.2rem; }
.review { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 1.6rem; }
.review__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.review__top .stars svg { width: 13px; height: 13px; }
.review__verified { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); display: inline-flex; align-items: center; gap: 0.35em; }
.review__verified svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }
.review__body { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.6; }
.review__body q { font-style: italic; }
.review__author { font-size: 0.8rem; color: var(--muted); }
.review__author b { color: var(--ink); font-weight: 500; }
@media (min-width: 860px) {
    .reviews__grid { grid-template-columns: 0.7fr 1.3fr; gap: 4rem; }
    .reviews__list { grid-template-columns: 1fr 1fr; }
}

/* ---------------------------------------------
   FAQ
--------------------------------------------- */
.faq { background: var(--paper-3); padding: var(--s-7) 0; border-top: 1px solid var(--hairline); }
.faq__grid { display: grid; gap: 3rem; }
.faq__intro .h-display { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0.9rem 0 1.2rem; }
.faq__intro p { color: var(--ink-soft); font-size: 0.95rem; max-width: 32ch; }
.faq__intro a { color: var(--clay-deep); text-decoration: underline; text-underline-offset: 3px; }
.faq__list { display: grid; gap: 0; }
.faq__item { border-top: 1px solid var(--hairline-2); }
.faq__item:last-child { border-bottom: 1px solid var(--hairline-2); }
.faq__item summary {
    list-style: none; cursor: pointer; padding: 1.4rem 0;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    font-family: var(--serif); font-size: 1.2rem; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .plus { position: relative; width: 16px; height: 16px; flex: 0 0 auto; transition: transform var(--t-base); }
.faq__item summary .plus::before, .faq__item summary .plus::after { content: ""; position: absolute; background: var(--clay); }
.faq__item summary .plus::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__item summary .plus::after { left: 7px; top: 0; width: 2px; height: 16px; transition: transform var(--t-base); }
.faq__item[open] summary .plus::after { transform: rotate(90deg); }
.faq__answer { padding: 0 0 1.5rem; color: var(--ink-soft); font-size: 0.95rem; max-width: 60ch; line-height: 1.7; }
@media (min-width: 860px) { .faq__grid { grid-template-columns: 0.8fr 1.2fr; gap: 4rem; } }

/* ---------------------------------------------
   FINAL CTA / WAITLIST
--------------------------------------------- */
.cta { position: relative; padding: var(--s-8) 0; overflow: hidden; background: var(--forest-2); }
.cta__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.32; z-index: 0; }
.cta__overlay { position: absolute; inset: 0; background: radial-gradient(120% 100% at 50% 0%, rgba(30,38,32,0.55), rgba(20,16,10,0.9)); z-index: 1; }
.cta__inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; padding-inline: var(--gutter); text-align: center; color: var(--on-dark); }
.cta .eyebrow { color: var(--sage); justify-content: center; }
.cta .eyebrow::before { background: rgba(143,168,155,0.5); }
.cta__title { font-family: var(--serif); font-size: clamp(2.4rem, 7vw, 4.4rem); line-height: 1; margin: 1.2rem 0 1rem; color: var(--on-dark); }
.cta__sub { color: var(--on-dark-soft); font-weight: 300; max-width: 42ch; margin: 0 auto 2.4rem; }
.cta__form { display: flex; flex-direction: column; gap: 0.8rem; max-width: 460px; margin: 0 auto; }
.cta__input {
    width: 100%; padding: 1.05rem 1.2rem; text-align: center;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px;
    color: var(--on-dark); font-size: 1rem; transition: border-color var(--t-base), background var(--t-base);
}
.cta__input::placeholder { color: var(--on-dark-mute); }
.cta__input:focus { outline: none; border-color: var(--sage); background: rgba(255,255,255,0.1); }
.cta__submit { width: 100%; padding: 1.05rem; }
.cta__note { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-mute); margin-top: 1.6rem; }
.cta__counter { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 2rem; font-size: 0.85rem; color: var(--on-dark-soft); }
.cta__counter b { font-variant-numeric: tabular-nums; color: var(--on-dark); font-weight: 500; }
.cta__pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 0 rgba(143,168,155,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(143,168,155,0.5); } 70% { box-shadow: 0 0 0 10px rgba(143,168,155,0); } 100% { box-shadow: 0 0 0 0 rgba(143,168,155,0); } }
/* Inline success swap */
.cta__success { display: none; }
.cta.is-done .cta__form, .cta.is-done .cta__note, .cta.is-done .cta__counter { display: none; }
.cta.is-done .cta__success { display: block; }
.cta__success .tick { width: 3rem; height: 3rem; margin: 0 auto 1.2rem; border-radius: 50%; border: 1px solid var(--sage); display: grid; place-items: center; color: var(--sage); }
.cta__success .tick svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.cta__success p { color: var(--on-dark-soft); }
.cta__success b { color: var(--on-dark); font-variant-numeric: tabular-nums; }
@media (min-width: 620px) {
    .cta__form { flex-direction: row; }
    .cta__input { text-align: left; }
    .cta__submit { width: auto; flex: 0 0 auto; }
}

/* ---------------------------------------------
   FOOTER
--------------------------------------------- */
.footer { background: var(--ink); color: var(--on-dark-mute); padding: var(--s-6) 0 2rem; }
.footer__top { display: grid; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__brand-col .footer__logo { font-family: var(--serif); font-size: 1.4rem; color: var(--on-dark); letter-spacing: 0.16em; }
.footer__cultural { font-size: 0.85rem; max-width: 34ch; margin: 1.2rem 0 1.6rem; line-height: 1.7; }
.footer__cultural em { color: var(--on-dark-soft); font-style: italic; }
.footer__socials { display: flex; gap: 0.8rem; }
.footer__socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); display: grid; place-items: center; transition: background var(--t-base), color var(--t-base); }
.footer__socials a:hover { background: var(--on-dark); color: var(--ink); }
.footer__socials svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.footer__col h3 { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-soft); margin-bottom: 1rem; }
.footer__col a { display: block; font-size: 0.88rem; padding: 0.55rem 0; transition: color var(--t-fast); }
.footer__col a:hover { color: var(--on-dark); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 2rem; }
.footer__legal { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.06em; }
.footer__pay { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.footer__pay .pay { height: 26px; width: 40px; display: block; border-radius: 4px; box-shadow: 0 0 0 1px rgba(255,255,255,0.14); }
.footer__wordmark { font-family: var(--serif); font-size: clamp(3rem, 16vw, 12rem); line-height: 0.8; color: rgba(243,236,224,0.05); text-align: center; letter-spacing: 0.02em; margin-top: 2.5rem; user-select: none; }
@media (min-width: 760px) {
    .footer__top { grid-template-columns: 1.4fr 2fr; gap: 4rem; }
    .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

/* ---------------------------------------------
   THANK YOU PAGE
--------------------------------------------- */
.ty { min-height: 100svh; display: flex; flex-direction: column; }
.ty__nav { padding: 1.4rem var(--gutter); }
.ty__nav a { font-family: var(--serif); font-size: 1.15rem; letter-spacing: 0.18em; }
.ty__main { flex: 1; display: grid; place-items: center; padding: 2rem var(--gutter) 4rem; text-align: center; }
.ty__card { max-width: 540px; width: 100%; }
.ty__tick { width: 4rem; height: 4rem; margin: 0 auto 2rem; border-radius: 50%; border: 1px solid var(--clay); display: grid; place-items: center; color: var(--clay); }
.ty__tick svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.ty__eyebrow { justify-content: center; margin-bottom: 1.4rem; }
.ty__title { font-family: var(--serif); font-size: clamp(2.4rem, 7vw, 3.6rem); line-height: 1.02; margin-bottom: 1rem; }
.ty__msg { color: var(--ink-soft); max-width: 40ch; margin: 0 auto 2.2rem; }
.ty__position { background: var(--forest); color: var(--on-dark); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 2rem; }
.ty__position .lbl { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-mute); }
.ty__position .num { font-family: var(--serif); font-size: clamp(3rem, 12vw, 5rem); line-height: 1; margin: 0.4rem 0; font-variant-numeric: tabular-nums; }
.ty__position .sub { color: var(--on-dark-soft); font-size: 0.9rem; }
.ty__position .sub b { color: var(--sage); }
.ty__refer { margin-bottom: 2rem; }
.ty__refer p { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.8rem; }
.ty__copy { display: flex; gap: 0.5rem; max-width: 420px; margin: 0 auto; }
.ty__copy input { flex: 1; padding: 0.85rem 1rem; border: 1px solid var(--hairline-2); border-radius: 100px; background: var(--card); font-size: 0.82rem; color: var(--ink-soft); }
.ty__share { display: flex; justify-content: center; gap: 0.7rem; margin-top: 1.2rem; }
.ty__share a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--hairline-2); display: grid; place-items: center; transition: background var(--t-base), color var(--t-base); }
.ty__share a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.ty__share svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.ty__back { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--hairline-2); padding-bottom: 0.3rem; }
.ty__back:hover { color: var(--ink); border-color: var(--ink); }

/* ---------------------------------------------
   REDUCED MOTION
--------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    .js [data-reveal] { opacity: 1 !important; transform: none !important; }
    .announce__track { animation: none; }
}
