/* =========================================================
   ELVORO GOLF — Design System
   Quiet, elevated menswear. Restraint over flash.
   ========================================================= */

/* ---- Design Tokens ---- */
:root {
  /* Palette — Elvoro brand: forest green + gold crest
     (variable names kept as --navy/--olive so the system cascades;
      values are now the forest-green + gold brand palette) */
  --navy:        #0B232D;  /* primary — forest green (brand #0B232D) */
  --navy-deep:   #061319;  /* deepest green — near-black */
  --navy-soft:   #14404A;  /* lifted green for gradients */
  --off-white:   #F6F2E8;  /* warm cream */
  --white:       #FFFFFF;
  --stone:       #CFC7B6;
  --stone-light: #ECE7D9;
  --stone-deep:  #B4A990;
  --olive:       #C9A227;  /* GOLD accent (brand #D4AF37 family) */
  --olive-soft:  #D4AF37;  /* brighter gold for dark backgrounds */
  --gold:        #D4AF37;
  --gold-deep:   #B8941F;

  --ink:         #14242A;  /* deep green-ink for body text */
  --muted:       #5E6A62;  /* muted green-grey */
  --line:        #DED7C6;
  --line-dark:   rgba(212,175,55,0.18);  /* faint gold hairlines on dark */

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --section: clamp(72px, 11vw, 152px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.06; letter-spacing: -0.01em; }
.display {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 500;
  line-height: 0.98;
}
h2.section-title { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);  /* gold brand accent */
}
.eyebrow.on-dark { color: var(--gold); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 54ch; }
.serif-quote { font-family: var(--serif); font-size: clamp(1.6rem, 3.2vw, 2.6rem); line-height: 1.28; font-weight: 500; }

/* ---- Layout ---- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.center { text-align: center; }
.measure { max-width: 60ch; }
.stack-sm > * + * { margin-top: 0.85rem; }
.stack-md > * + * { margin-top: 1.5rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  border: 1px solid var(--navy);
  background: var(--navy); color: var(--off-white);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn:hover { background: transparent; color: var(--navy); }
.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--off-white); }
.btn--light { border-color: var(--off-white); background: var(--off-white); color: var(--navy); }
.btn--light:hover { background: transparent; color: var(--off-white); }
.btn--outline-light { background: transparent; border-color: rgba(246,243,236,0.4); color: var(--off-white); }
.btn--outline-light:hover { background: var(--off-white); color: var(--navy); border-color: var(--off-white); }
/* Gold CTA — the signature brand button */
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.btn--gold:hover { background: transparent; color: var(--gold); border-color: var(--gold); }

.link-underline {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  padding-bottom: 3px; border-bottom: 1px solid currentColor;
  transition: gap .3s var(--ease), opacity .3s var(--ease);
}
.link-underline:hover { gap: 0.9em; }
.link-underline .arrow { transition: transform .3s var(--ease); }
.link-underline:hover .arrow { transform: translateX(3px); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem var(--gutter);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-solid {
  background: rgba(246,243,236,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 1rem;
}
/* When hero is dark, header text is light until scrolled */
.site-header.on-dark .nav-link,
.site-header.on-dark .brand,
.site-header.on-dark .nav-toggle span { color: var(--off-white); }
.site-header.on-dark.is-solid .nav-link,
.site-header.on-dark.is-solid .brand,
.site-header.on-dark.is-solid .nav-toggle span { color: var(--navy); }

.brand {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.brand .tm { font-size: 0.55em; letter-spacing: 0; transform: translateY(-0.6em); opacity: 0.7; color: var(--gold); }
.brand .mark { width: 26px; height: auto; color: var(--gold); flex: none; }

.nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 2.8rem); }
.nav-link {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); position: relative; padding-block: 4px;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: currentColor; transition: width .3s var(--ease);
}
.nav-link:hover::after, .nav-link[aria-current="page"]::after { width: 100%; }

.nav-toggle { display: none; width: 30px; height: 18px; position: relative; }
.nav-toggle span {
  position: absolute; left: 0; height: 1.5px; width: 100%; background: var(--navy);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
body.nav-open .nav-toggle span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: var(--off-white); overflow: hidden;
  background: var(--navy-deep);
}
/* Photography placeholder — replace .hero-media background with <img>/<video> */
.hero-media {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 78% 16%, rgba(212,175,55,0.22) 0%, rgba(212,175,55,0) 52%),
    radial-gradient(140% 100% at 12% 95%, rgba(20,64,74,0.85) 0%, rgba(6,19,25,0) 60%),
    linear-gradient(160deg, #16404A 0%, #0B232D 45%, #061319 100%);
}
.hero-media img,
.hero-media video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
}
.hero-media img {
  animation: hero-drift 28s var(--ease) both;
  will-change: transform;
}
/* Video sits above the poster image; fades in once it can play */
.hero-media video {
  z-index: 1; opacity: 0; transition: opacity 1.2s var(--ease);
}
.hero-media video.is-ready { opacity: 1; }
@keyframes hero-drift {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
  .hero-media video { display: none; }  /* fall back to the still image */
}
.hero-media::after { /* scrim: left-side darkening for copy + vignette for depth */
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, rgba(6,19,25,0.72) 0%, rgba(6,19,25,0.35) 38%, rgba(6,19,25,0) 65%),
    linear-gradient(0deg, rgba(6,19,25,0.65) 0%, rgba(6,19,25,0) 38%),
    radial-gradient(130% 120% at 50% 30%, transparent 40%, rgba(8,14,24,0.45) 100%);
}
.hero-inner { position: relative; z-index: 3; padding-bottom: clamp(4rem, 9vh, 8rem); width: 100%; }
.hero .display { max-width: 16ch; }
.hero .lede { color: rgba(246,243,236,0.82); margin-top: 1.6rem; }
.hero-cta { margin-top: 2.6rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-capture { margin-top: 2rem; max-width: 480px; }
.hero-capture-label { display: block; font-size: 0.85rem; letter-spacing: 0.03em; color: rgba(246,243,236,0.85); margin-bottom: 0.55rem; }
.hero-capture .field-row { margin-top: 0; }
.hero-scroll {
  position: absolute; right: var(--gutter); bottom: clamp(4rem, 9vh, 8rem); z-index: 3;
  writing-mode: vertical-rl; font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(246,243,236,0.6); display: flex; align-items: center; gap: 1rem;
}
.hero-scroll::after { content: ""; width: 1px; height: 56px; background: rgba(246,243,236,0.4); }
@media (max-width: 720px) { .hero-scroll { display: none; } }

/* =========================================================
   MARQUEE / VALUE STRIP
   ========================================================= */
.strip { background: var(--navy); color: var(--off-white); padding-block: clamp(2.4rem, 5vw, 3.4rem); }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); }
.strip-cell { background: var(--navy); padding: 1.6rem clamp(1rem, 3vw, 2.4rem); }
.strip-cell .eyebrow { color: var(--olive-soft); }
.strip-cell p { margin-top: 0.5rem; color: rgba(246,243,236,0.78); font-size: 0.95rem; }
@media (max-width: 680px) { .strip-grid { grid-template-columns: 1fr; } }

/* =========================================================
   SECTION HEADER
   ========================================================= */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.section-head .stack-sm { max-width: 46ch; }

/* =========================================================
   PRODUCT GRID
   ========================================================= */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); max-width: 760px; margin-inline: auto; }
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

.product-card { display: block; }
/* Photography placeholder — drop a 4:5 product image into .product-shot */
.product-shot {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background: var(--stone-light);
  display: flex; align-items: center; justify-content: center;
}
.product-shot .ph-label {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  color: rgba(22,36,58,0.16); letter-spacing: 0.02em;
}
/* Floating cut-out products (Adobe-removed bg) on ONE shared warm-stone
   backdrop. The drop shadow separates every polo from the bg regardless
   of garment color, so a single background works for all three. */
.product-shot { background: radial-gradient(125% 115% at 50% 12%, #DCD3C0 0%, #BFB39A 100%); }
.product-shot img {
  position: absolute; inset: 7% 11%; width: 78%; height: 86%;
  object-fit: contain; object-position: center;
  filter: drop-shadow(0 5px 9px rgba(6,19,25,0.20)) drop-shadow(0 20px 28px rgba(6,19,25,0.30));
  transition: transform .8s var(--ease);
}
.product-card:hover .product-shot img { transform: translateY(-6px) scale(1.02); }
/* Hover-reveal: the cut-out cross-fades to the on-body shot on pointer devices */
.product-shot .shot-alt {
  inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%;
  filter: none; opacity: 0; transition: opacity .6s var(--ease);
}
@media (hover: hover) { .product-card:hover .product-shot .shot-alt { opacity: 1; } }
/* Preferred-size capture on notify forms (dark context) */
.size-pref {
  display: flex; align-items: center; gap: 0.7rem; margin-top: 0.85rem;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(246,243,236,0.6);
}
.size-pref select {
  font: inherit; font-size: 0.9rem; letter-spacing: 0; text-transform: none;
  background: transparent; border: 1px solid rgba(246,243,236,0.35); color: var(--off-white);
  padding: 0.55rem 0.8rem;
}
.size-pref select:focus { outline: none; border-color: var(--off-white); }
.size-pref option { color: var(--navy); }
.size-hint { margin-top: 0.55rem; font-size: 0.78rem; line-height: 1.5; color: rgba(246,243,236,0.55); }
.join-perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.45rem 0; margin: 1.1rem 0 0; padding: 0; list-style: none; }
.join-perks li { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(246,243,236,0.62); }
.join-perks li:not(:last-child)::after { content: "·"; margin: 0 0.9rem; opacity: 0.45; }
.product-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  background: var(--gold); color: var(--navy-deep); padding: 0.4rem 0.7rem;
}
.product-meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: 1.1rem; gap: 1rem; }
.product-meta .name { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.product-meta .price { font-size: 0.95rem; color: var(--muted); }
.product-card .sub { font-size: 0.86rem; color: var(--muted); margin-top: 0.25rem; }
.swatches { display: flex; gap: 6px; margin-top: 0.8rem; }
.swatch { width: 15px; height: 15px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.12); }

/* =========================================================
   SPLIT / EDITORIAL FEATURE
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative; min-height: 60vh;
  background:
    radial-gradient(120% 90% at 80% 12%, rgba(212,175,55,0.16), transparent 55%),
    linear-gradient(150deg, #14404A, #0B232D);
  display: flex; align-items: flex-end; padding: 2rem;
}
.split-media .ph-note {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(246,243,236,0.45);
}
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 7vw, 6rem); background: var(--white); }
.split-body.on-stone { background: var(--stone-light); }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media { min-height: 52vh; }
}

/* =========================================================
   ABOUT — FOUNDER
   ========================================================= */
.founder-portrait {
  aspect-ratio: 3/4; background: linear-gradient(160deg, #e5dfd2, #cfc7b6);
  display: flex; align-items: flex-end; padding: 1.4rem;
}
.founder-portrait .ph-note { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(22,36,58,0.35); }

/* =========================================================
   EMAIL CAPTURE
   ========================================================= */
.capture { background: var(--navy); color: var(--off-white); }
.capture .lede { color: rgba(246,243,236,0.78); }
.field-row { display: flex; gap: 0; max-width: 480px; margin-top: 2rem; }
.field-row input {
  flex: 1; background: transparent; border: 1px solid rgba(246,243,236,0.35);
  color: var(--off-white); padding: 1rem 1.1rem; font: inherit; font-size: 0.95rem;
}
.field-row input::placeholder { color: rgba(246,243,236,0.5); }
.field-row input:focus { outline: none; border-color: var(--off-white); }
.field-row button { border: 1px solid var(--off-white); background: var(--off-white); color: var(--navy); padding-inline: 1.6rem; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; font-weight: 600; transition: background .3s var(--ease), color .3s var(--ease); }
.field-row button:hover { background: transparent; color: var(--off-white); }
.form-note { font-size: 0.78rem; color: rgba(246,243,236,0.55); margin-top: 1rem; }
.form-success { color: var(--olive-soft); font-size: 0.95rem; margin-top: 1rem; min-height: 1.4em; }

/* Light form (contact page) */
.form { display: grid; gap: 1.3rem; max-width: 560px; }
.form .group { display: grid; gap: 0.5rem; }
.form label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.form input, .form textarea, .form select {
  font: inherit; font-size: 0.98rem; padding: 0.9rem 1rem;
  border: 1px solid var(--line); background: var(--white); color: var(--ink);
}
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--navy); }
.form textarea { resize: vertical; min-height: 140px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy-deep); color: rgba(246,243,236,0.8); padding-block: clamp(3.5rem, 7vw, 6rem) 2.5rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
.footer-brand .brand { color: var(--off-white); }
.footer-brand p { margin-top: 1.2rem; max-width: 32ch; font-size: 0.92rem; color: rgba(246,243,236,0.6); }
.footer-col h3 { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 1.1rem; font-weight: 600; }
.footer-col a { display: block; padding-block: 0.4rem; font-size: 0.92rem; color: rgba(246,243,236,0.72); transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--off-white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding-top: 2rem; font-size: 0.8rem; color: rgba(246,243,236,0.5); }
.footer-bottom .legal-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--off-white); }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

/* =========================================================
   POLICY / LEGAL PAGES
   ========================================================= */
.page-head { padding-top: clamp(8rem, 16vh, 12rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); background: var(--stone-light); border-bottom: 1px solid var(--line); }
.policy-layout { display: grid; grid-template-columns: 240px 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.policy-nav { position: sticky; top: 100px; }
.policy-nav a { display: block; padding: 0.5rem 0; font-size: 0.9rem; color: var(--muted); border-left: 2px solid transparent; padding-left: 1rem; transition: color .25s, border-color .25s; }
.policy-nav a:hover, .policy-nav a.active { color: var(--navy); border-color: var(--navy); }
.policy-body h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.policy-body h2:not(:first-child) { margin-top: 3.5rem; padding-top: 3.5rem; border-top: 1px solid var(--line); }
.policy-body p, .policy-body li { color: var(--muted); max-width: 70ch; }
.policy-body p { margin-bottom: 1rem; }
.policy-body ul { padding-left: 1.2rem; list-style: disc; margin-bottom: 1rem; }
.policy-body li { margin-bottom: 0.4rem; }
@media (max-width: 760px) { .policy-layout { grid-template-columns: 1fr; } .policy-nav { position: static; display: none; } }

/* =========================================================
   COMING SOON
   ========================================================= */
.coming { min-height: 100svh; display: flex; flex-direction: column; color: var(--off-white); background: var(--navy-deep); position: relative; overflow: hidden; }
.coming-media { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 80% at 80% 10%, rgba(212,175,55,0.22), transparent 55%),
    linear-gradient(165deg, #16404A, #0B232D 50%, #061319);
}
/* Cinematic background video — fades in over the gradient fallback */
.coming-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
  opacity: 0; transition: opacity 1.4s var(--ease);
}
.coming-video.is-ready { opacity: 1; }
.coming-media::after { content:""; position:absolute; inset:0; z-index: 1; background: radial-gradient(130% 120% at 50% 40%, transparent 40%, rgba(8,14,24,0.66)); }
@media (prefers-reduced-motion: reduce) { .coming-video { display: none; } }
.coming-inner { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 6rem var(--gutter); }
/* Keep copy legible over the bright moving dawn video */
.coming-inner .display, .coming-inner .lede, .coming-inner .eyebrow,
.coming-top, .coming-foot, .password-link { text-shadow: 0 2px 16px rgba(6,16,22,0.55); }
.coming-inner .display { max-width: 18ch; }
.coming-top { position: relative; z-index: 2; display: flex; justify-content: center; padding: 2rem; }
.coming-foot { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 2rem var(--gutter); font-size: 0.78rem; color: rgba(246,243,236,0.55); }
.coming .field-row { margin-inline: auto; }
.password-link { margin-top: 2.5rem; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(246,243,236,0.6); }
.password-link a { border-bottom: 1px solid rgba(246,243,236,0.4); padding-bottom: 2px; }

/* =========================================================
   REVEAL ANIMATION (subtle motion only)
   ========================================================= */
.reveal { transition: opacity .9s var(--ease), transform .9s var(--ease); }
/* Only hide reveal elements when JS is active to animate them in.
   Without JS (no .js class) content stays fully visible. */
.js .reveal { opacity: 0; transform: translateY(22px); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .product-card:hover .product-shot img { transform: none; }
  .product-shot .shot-alt { transition: none; }
}

/* =========================================================
   MOBILE NAV
   ========================================================= */
@media (max-width: 780px) {
  .nav-toggle { display: block; z-index: 110; }
  /* backdrop-filter on the solid header would become the containing block
     for the fixed nav overlay, leaking closed-nav links into the page */
  .site-header.is-solid { backdrop-filter: none; }
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center;
    gap: 1.8rem; background: var(--off-white);
    transform: translateY(-100%); transition: transform .5s var(--ease), visibility .5s;
    z-index: 105; visibility: hidden;
  }
  body.nav-open .nav { transform: none; visibility: visible; }
  .nav-link { font-size: 1.1rem; color: var(--navy) !important; }
  .nav .nav-cta { margin-top: 1rem; }
}

/* contact page grid */
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
}

/* utility */
.text-olive { color: var(--olive); }
.hidden { display: none; }
.mt-0 { margin-top: 0; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--section); }

/* =========================================================
   LAUNCH UPGRADE — announcement bar, hero visual, trust,
   product detail pages, fabric macro, founder block
   ========================================================= */

:root {
  --charcoal:  #2A2E2C;
  --warm-gray: #8B857A;
  --announce-h: 38px;
  --shadow-soft: 0 18px 50px -18px rgba(6,19,25,0.45);
  --shadow-card: 0 10px 34px -16px rgba(6,19,25,0.35);
}

/* ---- Announcement bar ---- */
.announce {
  position: fixed; inset: 0 0 auto 0; height: var(--announce-h); z-index: 99;
  display: flex; align-items: center; justify-content: center; gap: 2.2rem;
  background: var(--navy-deep); color: rgba(246,242,232,0.85);
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  border-bottom: 1px solid var(--line-dark);
  padding-inline: 1rem; white-space: nowrap; overflow: hidden;
}
.announce .dot { color: var(--gold); }
.announce strong { color: var(--gold); font-weight: 600; }
@media (max-width: 720px) { .announce { gap: 1rem; font-size: 0.6rem; } .announce .hide-sm { display: none; } }

.site-header { top: var(--announce-h); }
body.nav-open .announce { display: none; }

/* ---- Hero with product visual ---- */
.hero-inner.has-visual {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: end;
}
.hero-visual { display: flex; justify-content: center; padding-bottom: clamp(0.5rem, 2vh, 2rem); }
.hero-product {
  margin: 0; position: relative; max-width: min(420px, 38vw);
  background: linear-gradient(170deg, rgba(246,242,232,0.10), rgba(246,242,232,0.04));
  border: 1px solid rgba(212,175,55,0.35);
  padding: clamp(1rem, 2.2vw, 1.8rem);
  box-shadow: var(--shadow-soft);
}
.hero-product img { width: 100%; height: auto; display: block; }
.hero-product figcaption {
  margin-top: 0.9rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(246,242,232,0.75);
}
.hero-product figcaption .price { color: var(--gold); font-weight: 600; letter-spacing: 0.08em; }
.hero .value-line { color: rgba(246,242,232,0.85); font-size: clamp(1rem, 1.5vw, 1.2rem); max-width: 46ch; margin-top: 1.4rem; }
@media (max-width: 880px) {
  .hero-inner.has-visual { grid-template-columns: 1fr; align-items: start; }
  .hero-visual { order: -1; padding-top: clamp(5.5rem, 12vh, 8rem); padding-bottom: 0; }
  .hero-product { max-width: min(300px, 64vw); }
}

/* ---- Trust strip ---- */
.trust-strip { background: var(--off-white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-cell {
  padding: 1.5rem 1.2rem; text-align: center;
  border-left: 1px solid var(--line);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.trust-cell:first-child { border-left: 0; }
.trust-cell strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 0.25rem; }
@media (max-width: 720px) { .trust-grid { grid-template-columns: 1fr 1fr; } .trust-cell:nth-child(3) { border-left: 0; } .trust-cell { border-top: 1px solid var(--line); } .trust-cell:nth-child(-n+2) { border-top: 0; } }

/* ---- Fabric macro section ---- */
.macro-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.5vw, 2rem); }
.macro-frame {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: var(--navy-deep); box-shadow: var(--shadow-card);
}
.macro-frame img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.macro-frame.crest img { transform: scale(2.8); transform-origin: 58% 33%; }
.macro-frame.weave img { transform: scale(3.4); transform-origin: 34% 62%; }
.macro-frame figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 0.8rem 1.1rem; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(246,242,232,0.85); background: linear-gradient(transparent, rgba(6,19,25,0.72));
}
@media (max-width: 680px) { .macro-duo { grid-template-columns: 1fr; } }

/* ---- Founder block ---- */
.founder-quote { border-left: 2px solid var(--gold); padding-left: clamp(1.4rem, 3vw, 2.4rem); }
.founder-quote .attribution { margin-top: 1.4rem; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm-gray); }

/* ---- Product cards: status + CTA ---- */
.product-card .card-cta {
  display: inline-block; margin-top: 0.9rem; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy);
  border-bottom: 1px solid var(--gold); padding-bottom: 3px;
}
.status-pill {
  display: inline-block; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); border: 1px solid var(--gold); padding: 0.3rem 0.7rem; font-weight: 600;
}

/* =========================================================
   PRODUCT DETAIL PAGE
   ========================================================= */
.pdp { padding-top: calc(var(--announce-h) + clamp(5rem, 10vh, 7rem)); }
.pdp-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
@media (max-width: 880px) { .pdp-grid { grid-template-columns: 1fr; } }

.pdp-gallery { position: sticky; top: calc(var(--announce-h) + 90px); display: grid; gap: clamp(0.8rem, 1.6vw, 1.4rem); }
@media (max-width: 880px) { .pdp-gallery { position: static; } }
.pdp-shot { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--stone-light); box-shadow: var(--shadow-card); }
.pdp-shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
/* Floating cut-out main shot — matches the product grid treatment */
.pdp-shot.float { background: radial-gradient(125% 115% at 50% 12%, #DCD3C0 0%, #BFB39A 100%); }
.pdp-shot.float img { inset: 6% 9%; width: 82%; height: 88%; object-fit: contain; object-position: center;
  filter: drop-shadow(0 5px 9px rgba(6,19,25,0.20)) drop-shadow(0 20px 28px rgba(6,19,25,0.30)); }
.pdp-shot.detail img { transform: scale(2.6); transform-origin: 58% 33%; }
.pdp-shot.texture img { transform: scale(3.4); transform-origin: 34% 62%; }
.pdp-shot .ph-note {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(20,36,42,0.4); text-align: center; padding: 1rem;
}
.pdp-shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 0.7rem 1rem;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(246,242,232,0.9); background: linear-gradient(transparent, rgba(6,19,25,0.65));
}

.pdp-buy h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
.pdp-price-row { display: flex; align-items: baseline; gap: 1.2rem; margin-top: 1rem; flex-wrap: wrap; }
.pdp-price { font-family: var(--serif); font-size: 1.9rem; }
.pdp-lede { color: var(--muted); margin-top: 1.2rem; max-width: 54ch; }

.size-row { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.size-chip {
  min-width: 52px; text-align: center; padding: 0.65rem 0.8rem;
  border: 1px solid var(--line); color: var(--muted);
  font-size: 0.8rem; letter-spacing: 0.1em; cursor: default; background: var(--white);
}
.pdp-section { border-top: 1px solid var(--line); padding-top: 1.6rem; margin-top: 1.6rem; }
.pdp-section h2 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 0.7rem; }
.pdp-section p, .pdp-section li { font-size: 0.95rem; color: var(--muted); }
.pdp-section ul { display: grid; gap: 0.35rem; }

.size-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin-top: 0.5rem; }
.size-table th, .size-table td { border: 1px solid var(--line); padding: 0.55rem 0.7rem; text-align: center; color: var(--muted); }
.size-table th { background: var(--stone-light); color: var(--navy); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }

.notify-box { background: var(--off-white); border: 1px solid var(--line); padding: 1.4rem; margin-top: 1.8rem; }
.notify-box .field-row { margin-top: 1rem; max-width: none; }
.notify-box .field-row input { border-color: var(--line); color: var(--ink); }
.notify-box .field-row input::placeholder { color: var(--warm-gray); }
.notify-box .field-row input:focus { border-color: var(--navy); }
.notify-box .field-row button { background: var(--navy); border-color: var(--navy); color: var(--off-white); }
.notify-box .field-row button:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.notify-box .form-success { color: var(--gold-deep); }
.ship-note { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 1.1rem; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-gray); }

/* Sticky mobile CTA */
.pdp-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--navy-deep); color: var(--off-white);
  padding: 0.8rem var(--gutter); box-shadow: 0 -8px 30px rgba(6,19,25,0.35);
}
.pdp-sticky .name { font-family: var(--serif); font-size: 1.05rem; }
.pdp-sticky .price { color: var(--gold); font-weight: 600; margin-left: 0.6rem; }
.pdp-sticky a { background: var(--gold); color: var(--navy-deep); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.75rem 1.3rem; flex: none; }
@media (max-width: 720px) { .pdp-sticky { display: flex; } body.has-sticky { padding-bottom: 64px; } }

/* =========================================================
   ACCESSIBILITY — keyboard focus + skip link
   ========================================================= */
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}
/* On dark hero/footer, keep the gold ring but lift it */
.site-header.on-dark a:focus-visible,
.hero a:focus-visible,
.site-footer a:focus-visible,
.capture :focus-visible { outline-color: var(--gold); }
/* Form fields already restyle border on focus; add a ring for keyboard users */
.field-row input:focus-visible,
.form input:focus-visible,
.form textarea:focus-visible,
.form select:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  z-index: 200; background: var(--navy-deep); color: var(--off-white);
  padding: 0.7rem 1.2rem; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--gold); transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0.5rem); }

/* =========================================================
   CINEMATIC AMBIENT INTERLUDE (aerial video band)
   ========================================================= */
.ambient {
  position: relative; overflow: hidden;
  min-height: clamp(420px, 66vh, 720px);
  display: flex; align-items: center;
  color: var(--off-white);
  background: var(--navy-deep) center / cover no-repeat;   /* poster set inline as bg fallback */
}
.ambient-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
  opacity: 0; transition: opacity 1.2s var(--ease);
}
.ambient-video.is-ready { opacity: 1; }
.ambient::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 120% at 50% 45%, transparent 30%, rgba(6,19,25,0.55) 100%),
    linear-gradient(0deg, rgba(6,19,25,0.5), rgba(6,19,25,0.1) 55%);
}
.ambient-inner { position: relative; z-index: 2; text-align: center; width: 100%; }
.ambient-inner .eyebrow,
.ambient-inner .serif-quote { text-shadow: 0 2px 18px rgba(6,19,25,0.55); }
.ambient-inner .serif-quote { max-width: 24ch; margin: 1rem auto 0; }
@media (prefers-reduced-motion: reduce) {
  .ambient-video { display: none; }   /* fall back to the poster background image */
}
