:root {
  --bg-0: #060a0f;
  --bg-1: #0c121b;
  --bg-2: #121a25;
  --card: #141c28;
  --ink: #f4f6fb;
  --muted: #9aa3b4;
  --faint: #6b7486;
  --accent: #c9a36a;
  --accent-soft: rgba(201, 163, 106, 0.16);
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --maxw: 1240px;
  --r-card: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg-0);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; font-weight: 600; letter-spacing: -0.01em; }

::selection { background: var(--accent); color: #1a130a; }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ================= NAV ================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 clamp(20px, 4vw, 48px);
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 11, 16, 0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  font-family: "Playfair Display", serif; font-weight: 600;
  font-size: 22px; letter-spacing: 0.28em; color: var(--ink);
  text-decoration: none; padding-left: 0.28em;
}
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 400;
  letter-spacing: 0.02em; transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); text-decoration: none; font-size: 13px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 11px 22px; border: 1px solid var(--accent); border-radius: 100px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--accent); color: #1a130a; }
.nav-cta:active { transform: translateY(1px); }

/* ================= HERO ================= */
#scene { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 1; display: block; }
#tex-video { display: none; }
#scroll-track { height: 760vh; position: relative; z-index: 0; }

.hero {
  position: fixed; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: flex-start;
  padding-left: clamp(28px, 7vw, 140px);
  pointer-events: none; will-change: transform, opacity;
  transform: translateY(var(--parallax, 0px));
  opacity: var(--hero-opacity, 1);
}
.hero-inner { max-width: min(640px, 92vw); }
.hero .eyebrow { margin-bottom: 22px; }
.headline {
  font-size: clamp(44px, 7vw, 100px); line-height: 0.98; letter-spacing: -0.02em;
  text-shadow: 0 8px 60px rgba(0,0,0,0.6);
}
.headline span { color: var(--accent); font-style: italic; }
.sub { color: var(--muted); font-size: clamp(14px, 1.25vw, 16.5px); line-height: 1.65; font-weight: 300; }

/* glass action card behind the pitch + CTA (web glassmorphism approximation) */
.hero-card {
  pointer-events: auto;
  margin-top: 30px;
  max-width: 480px;
  padding: 24px 28px 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(24,32,46,0.5), rgba(8,12,18,0.34));
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 26px 70px rgba(0,0,0,0.5);
}
.hero-cta { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.hero-cta .btn-gold, .hero-cta .btn-ghost { padding: 13px 24px; font-size: 13px; }
@media (prefers-reduced-transparency: reduce) {
  .hero-card { background: rgba(10,14,20,0.92); backdrop-filter: none; -webkit-backdrop-filter: none; }
}

.caption {
  position: fixed; right: clamp(24px, 7vw, 130px); bottom: clamp(70px, 16vh, 150px);
  z-index: 3; max-width: 320px; text-align: right; opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease; pointer-events: none;
}
.caption.show { opacity: 1; transform: translateY(0); }
.caption h2 { font-weight: 500; font-size: clamp(22px, 2.4vw, 34px); margin-bottom: 10px; }
.caption p { color: var(--muted); font-size: 14px; line-height: 1.55; font-weight: 300; }

.scroll-hint {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  transition: opacity 0.4s ease;
}
.scroll-hint span {
  display: block; width: 1px; height: 52px;
  background: linear-gradient(var(--accent), transparent);
  animation: drift 2.2s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.35; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* ================= CONTENT WRAPPER ================= */
/* content is fully opaque so the fixed hero canvas never bleeds through */
.content { position: relative; z-index: 5; background: var(--bg-0); }
.content > section { padding: clamp(80px, 11vh, 150px) clamp(20px, 5vw, 64px); background: var(--bg-0); }

/* reveal base (GSAP toggles .is-in) */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- MANIFESTO (full-bleed transition out of the teardown) ---------- */
.manifesto {
  position: relative; padding: 0 !important; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.manifesto-bg { position: absolute; inset: 0; z-index: 0; }
.manifesto-bg img { transform: scale(1.06); }
.manifesto-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 80% at 50% 45%, rgba(6,10,15,0.55), rgba(6,10,15,0.92) 85%); }
.manifesto-inner { position: relative; z-index: 1; max-width: 820px; padding: 40px; }
.manifesto-inner p {
  font-family: "Playfair Display", serif; font-style: italic; font-weight: 500;
  font-size: clamp(26px, 3.8vw, 50px); line-height: 1.2; color: var(--ink);
}
.manifesto-sub { font-family: "Inter", sans-serif !important; font-style: normal !important; font-size: clamp(14px, 1.3vw, 17px) !important; font-weight: 300 !important; color: var(--muted) !important; margin: 22px auto 30px; max-width: 52ch; line-height: 1.6 !important; }

/* ---------- PRESS ---------- */
.press { text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-0); padding-top: 54px !important; padding-bottom: 54px !important; }
.press-label { display: block; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--faint); margin-bottom: 26px; }
.press-row { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(26px, 5vw, 64px); }
.press-row li { font-family: "Playfair Display", serif; font-size: clamp(16px, 1.9vw, 23px); letter-spacing: 0.06em; color: #aab2c0; opacity: 0.78; transition: opacity 0.3s ease; }
.press-row li:hover { opacity: 1; }

/* ---------- STATS ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r-card);
  overflow: hidden; max-width: var(--maxw); margin: 0 auto;
}
.stat { background: var(--bg-1); padding: clamp(34px, 5vw, 54px) 22px; text-align: center; position: relative; transition: background 0.4s ease; }
.stat:hover { background: var(--bg-2); }
.stat-num { display: block; font-family: "Playfair Display", serif; font-weight: 600; font-size: clamp(30px, 3.6vw, 46px); color: var(--accent); font-variant-numeric: tabular-nums; line-height: 1; white-space: nowrap; }
.stat-label { display: block; margin-top: 12px; font-size: 13.5px; color: var(--muted); line-height: 1.45; }

/* ---------- MOVEMENT (split) ---------- */
.movement { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; max-width: var(--maxw); margin: 0 auto; }
.movement-media { border-radius: var(--r-card); overflow: hidden; aspect-ratio: 3/2; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.movement-media img { transition: transform 1.2s cubic-bezier(0.22,1,0.36,1); }
.movement-media:hover img { transform: scale(1.04); }
.movement-copy h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.04; margin-bottom: 22px; }
.movement-copy > p { color: var(--muted); font-size: clamp(15px, 1.25vw, 17.5px); line-height: 1.7; font-weight: 300; max-width: 48ch; }
.movement-spec { list-style: none; margin-top: 30px; display: grid; gap: 14px; }
.movement-spec li { display: flex; align-items: center; gap: 13px; font-size: 15px; color: var(--ink); padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.movement-spec i { color: var(--accent); font-size: 20px; }

/* ---------- CRAFT (spotlight cards) ---------- */
.craft { max-width: var(--maxw); margin: 0 auto; }
.craft-head { font-size: clamp(30px, 4.2vw, 54px); margin-bottom: 48px; max-width: 16ch; }
.craft-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.spot {
  position: relative; overflow: hidden; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--r-card);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), border-color 0.3s ease;
  display: flex; flex-direction: column;
}
.spot.wide { grid-column: span 2; flex-direction: row; }
.spot::after {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s ease; z-index: 2; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), var(--glow), transparent 60%);
}
.spot:hover { transform: translateY(-6px); border-color: var(--line-2); }
.spot:hover::after { opacity: 1; }
.spot-media { position: relative; z-index: 1; overflow: hidden; aspect-ratio: 16/10; flex-shrink: 0; }
.spot-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 55%, var(--card)); }
.spot-media img { transition: transform 1.1s cubic-bezier(0.22,1,0.36,1); }
.spot:hover .spot-media img { transform: scale(1.05); }
.spot.wide .spot-media { aspect-ratio: auto; width: 46%; }
.spot.wide .spot-media::after { background: linear-gradient(to right, transparent 50%, var(--card)); }
.spot-body { position: relative; z-index: 1; padding: clamp(24px, 2.4vw, 34px); }
.spot.wide .spot-body { display: flex; flex-direction: column; justify-content: center; }
.craft-ico { color: var(--accent); font-size: 30px; margin-bottom: 14px; display: block; }
.spot h3 { font-size: 23px; margin-bottom: 12px; }
.spot p { color: var(--muted); font-size: 15px; line-height: 1.65; font-weight: 300; }

/* ---------- PROCESS (horizontal pan) ---------- */
.process { padding: 0 !important; height: 100vh; overflow: hidden; background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-track { display: flex; height: 100%; align-items: center; gap: 28px; width: max-content; padding: 0 clamp(20px, 5vw, 64px); }
.process-intro { width: 46vw; max-width: 520px; flex-shrink: 0; }
.process-intro h2 { font-size: clamp(34px, 5vw, 64px); line-height: 1.02; margin-bottom: 18px; }
.process-intro p { color: var(--muted); font-size: 16px; font-weight: 300; }
.step {
  position: relative; flex-shrink: 0; width: 360px; height: 64vh; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r-card); padding: 36px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(6,9,14,0.95) 8%, rgba(6,9,14,0.55) 48%, rgba(6,9,14,0.15) 100%), var(--img) center/cover no-repeat, var(--card);
}
.step-n { position: relative; font-family: "Playfair Display", serif; font-size: 16px; color: var(--accent); letter-spacing: 0.1em; }
.step h3 { position: relative; font-size: 30px; margin: 14px 0 16px; }
.step p { position: relative; color: #c4ccd8; font-size: 15px; line-height: 1.6; font-weight: 300; }

/* ---------- COLORWAYS (switcher) ---------- */
.colorways { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 4vw, 56px); align-items: center; max-width: var(--maxw); margin: 0 auto; }
.cw-stage { position: relative; aspect-ratio: 16/10; border-radius: var(--r-card); overflow: hidden; background: radial-gradient(120% 100% at 60% 30%, #182231 0%, var(--bg-0) 80%); border: 1px solid var(--line); }
#cw-image { transition: opacity 0.45s ease; }
#cw-image.swapping { opacity: 0; }
.cw-panel h2 { font-size: clamp(30px, 4vw, 52px); margin-bottom: 16px; }
.cw-panel > p { color: var(--muted); font-size: 16px; line-height: 1.65; font-weight: 300; max-width: 40ch; margin-bottom: 28px; }
.cw-options { display: grid; gap: 12px; }
.cw-opt { display: flex; align-items: center; gap: 16px; width: 100%; text-align: left; cursor: pointer; background: transparent; border: 1px solid var(--line); border-radius: 100px; padding: 12px 18px; color: var(--ink); transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease; }
.cw-opt:hover { border-color: var(--line-2); }
.cw-opt.is-active { border-color: var(--accent); background: var(--accent-soft); }
.cw-opt:active { transform: translateY(1px); }
.cw-dot { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25); }
.cw-opt-text { display: flex; flex-direction: column; line-height: 1.3; }
.cw-opt-text strong { font-weight: 500; font-size: 15.5px; }
.cw-opt-text em { font-style: normal; font-size: 13px; color: var(--muted); }

/* ---------- LIFESTYLE (full-bleed parallax) ---------- */
.lifestyle { position: relative; padding: 0 !important; height: 92vh; min-height: 560px; overflow: hidden; display: flex; align-items: flex-end; }
.lifestyle-bg { position: absolute; inset: -12% 0; z-index: 0; }
.lifestyle-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,10,15,0.92) 0%, rgba(6,10,15,0.5) 40%, transparent 70%), linear-gradient(0deg, rgba(6,10,15,0.85), transparent 50%); }
.lifestyle-bg img { will-change: transform; }
.lifestyle-copy { position: relative; z-index: 1; padding: clamp(40px, 7vw, 96px); max-width: 640px; }
.lifestyle-copy h2 { font-size: clamp(32px, 4.6vw, 62px); line-height: 1.04; margin-bottom: 18px; }
.lifestyle-copy p { color: #c4ccd8; font-size: clamp(15px, 1.3vw, 18px); line-height: 1.65; font-weight: 300; max-width: 46ch; }

/* ---------- QUOTES ---------- */
.quotes { max-width: var(--maxw); margin: 0 auto; }
.quotes-head { font-size: clamp(30px, 4.2vw, 54px); margin-bottom: 46px; }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 34px; display: flex; flex-direction: column; justify-content: space-between; gap: 26px; }
.quote blockquote { font-family: "Playfair Display", serif; font-style: italic; font-size: 19px; line-height: 1.5; color: var(--ink); }
.quote figcaption { display: flex; flex-direction: column; gap: 3px; }
.quote figcaption strong { font-family: "Inter", sans-serif; font-weight: 500; font-size: 15px; }
.quote figcaption span { font-size: 13px; color: var(--faint); }

/* ---------- FAQ ---------- */
.faq { max-width: 920px; margin: 0 auto; }
.faq-head { font-size: clamp(30px, 4.2vw, 54px); margin-bottom: 40px; text-align: center; }
.faq-list { display: grid; gap: 12px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; transition: border-color 0.3s ease; }
.faq details[open] { border-color: var(--line-2); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 26px; font-family: "Playfair Display", serif; font-size: 19px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { color: var(--accent); font-size: 20px; transition: transform 0.3s ease; flex-shrink: 0; }
.faq details[open] summary i { transform: rotate(45deg); }
.faq details p { padding: 0 26px 24px; color: var(--muted); font-size: 15.5px; line-height: 1.7; font-weight: 300; max-width: 70ch; }

/* ---------- RESERVE (CTA) ---------- */
.reserve { position: relative; padding: 0 !important; min-height: 86vh; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.reserve-bg { position: absolute; inset: 0; z-index: 0; }
.reserve-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 80% at 50% 48%, rgba(6,10,15,0.58), rgba(6,10,15,0.9) 78%); }
.reserve-inner { position: relative; z-index: 1; padding: 40px; max-width: 720px; }
.reserve-inner h2 { font-size: clamp(36px, 6vw, 78px); line-height: 1.02; margin-bottom: 20px; }
.reserve-inner > p { color: #c4ccd8; font-size: clamp(15px, 1.4vw, 19px); line-height: 1.6; font-weight: 300; margin-bottom: 36px; }
.reserve-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-gold, .btn-ghost { display: inline-flex; align-items: center; justify-content: center; padding: 16px 34px; border-radius: 100px; font-size: 14px; letter-spacing: 0.06em; text-decoration: none; transition: transform 0.2s ease, background 0.3s ease, color 0.3s ease; white-space: nowrap; }
.btn-gold { background: var(--accent); color: #1a130a; font-weight: 600; box-shadow: 0 14px 40px rgba(201,163,106,0.28); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-gold:active { transform: translateY(0); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.reserve-fine { display: block; margin-top: 26px; font-size: 12.5px; color: var(--faint); letter-spacing: 0.04em; }

/* ================= FOOTER ================= */
.footer { background: var(--bg-1); border-top: 1px solid var(--line); position: relative; z-index: 5; padding: clamp(56px, 8vh, 90px) clamp(20px, 5vw, 64px) 30px; }
.footer-top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-brand .nav-brand { padding: 0; display: inline-block; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; line-height: 1.6; font-weight: 300; max-width: 34ch; }
.footer-col h4, .footer-news h4 { font-family: "Inter", sans-serif; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); margin-bottom: 18px; font-weight: 500; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 14.5px; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--ink); }
.footer-news p { color: var(--muted); font-size: 14px; line-height: 1.55; font-weight: 300; margin-bottom: 16px; max-width: 30ch; }
.news-form { display: flex; gap: 8px; }
.news-form input { flex: 1; background: var(--bg-0); border: 1px solid var(--line); border-radius: 100px; padding: 12px 18px; color: var(--ink); font-size: 14px; outline: none; transition: border-color 0.3s ease; }
.news-form input::placeholder { color: var(--faint); }
.news-form input:focus { border-color: var(--accent); }
.news-form button { background: var(--accent); border: none; border-radius: 50%; width: 44px; height: 44px; color: #1a130a; font-size: 18px; cursor: pointer; display: grid; place-items: center; transition: transform 0.2s ease; flex-shrink: 0; }
.news-form button:hover { transform: translateY(-2px); }
.footer-bottom { max-width: var(--maxw); margin: 48px auto 0; padding-top: 24px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 13px; color: var(--faint); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--faint); text-decoration: none; transition: color 0.25s ease; }
.footer-legal a:hover { color: var(--ink); }

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .movement, .colorways { grid-template-columns: 1fr; }
  .craft-grid { grid-template-columns: 1fr; }
  .spot.wide { grid-column: span 1; flex-direction: column; }
  .spot.wide .spot-media { width: 100%; aspect-ratio: 16/10; }
  .spot.wide .spot-media::after { background: linear-gradient(to bottom, transparent 55%, var(--card)); }
  .quotes-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-intro { width: 80vw; }
}
@media (max-width: 600px) {
  .hero { justify-content: center; text-align: center; padding: 0 24px; }
  .caption { left: 24px; right: 24px; max-width: none; text-align: center; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .step { width: 80vw; }
}

/* ================= REDUCED MOTION ================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .scroll-hint span { animation: none; }
  * { transition-duration: 0.01ms !important; }
  /* process becomes a normal vertical list when motion is off */
  .process { height: auto; overflow: visible; padding: clamp(80px,11vh,150px) clamp(20px,5vw,64px) !important; }
  .process-track { flex-direction: column; width: auto; gap: 18px; padding: 0; }
  .process-intro, .step { width: 100%; max-width: none; height: auto; }
  .step { min-height: 200px; }
}
