:root {
  /* palette: "Midnight & Gold-kissed" */
  --bg: #f8f6f1;
  --bg-2: #ffffff;
  --panel: #f0ece2;
  --ink: #14161c;
  --ink-dim: #625a4c;
  --blue: #16385f;
  --blue-bright: #2a5686;
  --blue-dim: #a9c2db;
  --gold: #b8965a;
  --gold-bright: #d8b878;
  --gold-dim: #8a734c;
  --steel: #c7cad0;
  --dark: #0a1a30;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  height: 100%;
}

body {
  font-family: var(--sans);
  overflow-x: hidden;
  cursor: default;
}

::selection { background: var(--gold); color: #fff; }

/* ---------- preloader ---------- */
#preloader {
  position: fixed; inset: 0;
  background: var(--bg-2);
  z-index: 1000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity 1.1s var(--ease), visibility 1.1s var(--ease);
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-mark {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: 0.35em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.preloader-bar {
  width: 220px; height: 1px;
  background: rgba(23,26,32,0.12);
  position: relative;
}
.preloader-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--gold);
  transition: width 0.2s linear;
}

/* ---------- nav ---------- */
/* The logo is a real colored raster mark, so it can't sit under
   mix-blend-mode:difference like the plain-text nav items do — blending a
   multi-tone image against varying page backgrounds produces a jarring,
   unpredictable "photo negative" effect. Instead the blend mode is applied
   only to the text items (which read fine either way), and the logo gets
   its own small always-legible pill backdrop instead. */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 5vw;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img {
  display: block; height: 22px; width: auto;
  /* No backdrop box — a soft light halo instead, so the logo's real colors
     stay visible over the dark video sections without a visible chip. */
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.55)) drop-shadow(0 0 1px rgba(255,255,255,0.55));
}
.nav-model { opacity: 0.85; color: #fff; mix-blend-mode: difference; }
.nav-cta {
  position: relative;
  color: #fff;
  mix-blend-mode: difference;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 3px;
  transition: border-color 0.4s var(--ease), opacity 0.4s var(--ease);
}
/* Expand the tap target to ~44px without changing the visible underline. */
.nav-cta::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 44px;
  min-width: 44px;
}
.nav-cta:hover { border-color: #fff; opacity: 0.75; }

/* ================= HERO ================= */
.hero-wrap { position: relative; height: 400vh; height: 400svh; }
.hero-sticky {
  position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden;
  background: var(--dark);
  will-change: transform;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  will-change: contents;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,26,48,0) 45%, rgba(10,26,48,0.6) 100%);
  pointer-events: none;
}
.hero-copy {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  pointer-events: none;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(33px, 7.4vw, 107px);
  letter-spacing: 0.03em;
  color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 0.05em;
  line-height: 1.05;
  /* Keeps the title readable regardless of what's under it on the rotating
     watch — bright dial reflections, pale caseback frames, etc. */
  text-shadow: 0 4px 28px rgba(0,0,0,0.55), 0 1px 8px rgba(0,0,0,0.6);
}
.reveal-letters { display: inline-block; white-space: pre; }
.reveal-letters span {
  display: inline-block;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(0.25em);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.hero-sub {
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-dim);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.2s var(--ease) 0.3s, transform 1.2s var(--ease) 0.3s;
}
.hero-copy.in .hero-sub { opacity: 1; transform: translateY(0); }

.scroll-cue {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.7);
  opacity: 0; transition: opacity 1s var(--ease) 1.4s;
}
.hero-sticky.copy-in .scroll-cue { opacity: 1; }
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.2); overflow: hidden; }
.scroll-line-fill { width: 100%; height: 30%; background: var(--gold-bright); animation: scrollpulse 1.8s ease-in-out infinite; }
@keyframes scrollpulse {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(233%); }
}

/* ================= STORY ================= */
.story-wrap { position: relative; height: 300vh; height: 300svh; background: var(--bg-2); }
.story-sticky {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0 8vw;
  text-align: center;
  will-change: transform;
}
.story-kicker {
  position: absolute; top: 12vh; left: 50%; transform: translateX(-50%);
  margin: 0; font-weight: 400;
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
}
.story-lines { position: relative; max-width: 900px; }
.story-line {
  font-family: var(--serif);
  font-size: clamp(26px, 4.6vw, 54px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink-dim);
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}
.story-line em { font-style: italic; color: var(--gold); }
.story-line.active { position: relative; }

/* ================= MACRO ================= */
.macro-wrap { position: relative; height: 350vh; height: 350svh; background: var(--dark); }
.macro-sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; will-change: transform; }
#macro-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.macro-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,26,48,0.55) 0%, rgba(10,26,48,0) 30%, rgba(10,26,48,0) 70%, rgba(10,26,48,0.6) 100%);
  pointer-events: none;
}
.macro-labels { position: absolute; inset: 0; pointer-events: none; }
.macro-label {
  position: absolute; left: 6vw; bottom: 12vh;
  max-width: 480px;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  color: #f3ede1;
  opacity: 0;
  transform: translateY(16px);
}

/* ================= EXPLODED ================= */
.exploded-wrap { position: relative; height: 400vh; height: 400svh; background: var(--dark); }
.exploded-sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; will-change: transform; }
#exploded-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.exploded-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,26,48,0) 40%, rgba(10,26,48,0.65) 100%);
  pointer-events: none;
}
.exploded-heading {
  position: absolute; top: 10vh; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0.02em;
  color: #f3ede1;
}
.spec-callout {
  position: absolute;
  display: flex; flex-direction: column; gap: 4px;
  opacity: 0;
  transform: translateY(14px);
}
.spec-tl { top: 22vh; left: 8vw; align-items: flex-start; text-align: left; }
.spec-tr { top: 22vh; right: 8vw; align-items: flex-end; text-align: right; }
.spec-br { bottom: 16vh; right: 8vw; align-items: flex-end; text-align: right; }
.spec-num {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 56px); color: var(--gold-bright); line-height: 1;
}
.spec-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #f3ede1;
}

/* ================= EDITION ================= */
.edition {
  min-height: 90vh; min-height: 90svh;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  padding: 12vh 6vw;
}
.edition-grid {
  width: 100%; max-width: 1160px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  text-align: left;
}
.edition-copy { max-width: 480px; }
.edition-eyebrow {
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.edition-title {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.05;
  color: var(--blue);
}
.edition-rule {
  width: 56px; height: 2px;
  background: var(--gold);
  margin: 26px 0 22px;
}
.edition-price {
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(19px, 2vw, 24px);
  letter-spacing: 0.06em;
  color: var(--gold);
}
.edition-specs {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 26px;
}
.edition-specs li {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-dim);
  padding: 9px 16px;
  border: 1px solid rgba(20,22,28,0.16);
  border-radius: 999px;
}
.edition-cta {
  display: inline-block;
  margin-top: 34px;
  padding: 17px 42px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--blue);
  text-decoration: none;
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.edition-cta:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

.edition-visual {
  border: 1px solid rgba(20,22,28,0.08);
  background: #fff;
  box-shadow: 0 40px 70px -30px rgba(20,26,38,0.22);
  overflow: hidden;
}
.edition-visual img {
  display: block; width: 100%; height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (max-width: 860px) {
  .edition-grid { grid-template-columns: 1fr; text-align: center; }
  .edition-copy { max-width: 100%; margin: 0 auto; }
  .edition-rule { margin-left: auto; margin-right: auto; }
  .edition-specs { justify-content: center; }
  .edition-visual { max-width: 420px; margin: 0 auto; order: -1; }
}

/* ================= EDITORIAL — brand story gallery ================= */
.editorial-wrap { position: relative; height: 300vh; height: 300svh; background: var(--dark); }
.editorial-sticky {
  position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden;
  will-change: transform;
}
.editorial-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.editorial-slide.is-active { opacity: 1; }
.editorial-slide picture { display: block; width: 100%; height: 100%; }
.editorial-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.08);
  transition: transform 1.6s var(--ease);
}
.editorial-slide.is-active img { transform: scale(1); }
.editorial-vignette {
  position: absolute; inset: 0;
  /* Real campaign photography varies from pale/bright to warm/dark — keep the
     upper frame clear so the photo reads properly, and only darken enough
     behind the bottom info panel to guarantee text legibility on any image. */
  background: linear-gradient(0deg, rgba(6,14,26,0.88) 0%, rgba(6,14,26,0.5) 24%, rgba(6,14,26,0) 50%);
  pointer-events: none;
}
.editorial-kicker {
  position: absolute; top: 8vh; left: 50%; transform: translateX(-50%);
  margin: 0; font-weight: 400;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  color: #fff;
  background: rgba(6,14,26,0.55);
  padding: 9px 20px;
  backdrop-filter: blur(3px);
}
.editorial-info {
  position: absolute; left: 6vw; right: 6vw; bottom: 10vh;
  max-width: 620px;
}
.editorial-info-item {
  position: absolute; left: 0; bottom: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}
.editorial-info-item.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.editorial-num {
  display: block;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.editorial-eyebrow {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: #f3ede1; opacity: 0.88;
  margin-bottom: 10px;
}
.editorial-heading {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.2;
  color: #fff;
}
.editorial-meta {
  margin-top: 14px;
  font-family: var(--sans); font-size: 14px; letter-spacing: 0.03em;
  color: var(--gold-bright);
}
.editorial-sub {
  margin-top: 10px;
  font-family: var(--sans); font-size: 13px; line-height: 1.6;
  color: #f3ede1; opacity: 0.8;
  max-width: 540px;
}
.editorial-tag {
  margin-top: 14px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #f3ede1; opacity: 0.72;
}
.editorial-dots {
  position: absolute; right: 6vw; bottom: 10vh;
  display: flex; flex-direction: column; gap: 14px;
}
.editorial-dot {
  position: relative;
  width: 8px; height: 8px; padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
/* Visual dot stays tiny and precise; the actual tap target is 44x44. */
.editorial-dot::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
}
.editorial-dot:hover { border-color: var(--gold-bright); transform: scale(1.2); }
.editorial-dot.is-active { background: var(--gold); border-color: var(--gold); }

@media (max-width: 640px) {
  .editorial-info { right: 6vw; bottom: 14vh; max-width: none; }
  .editorial-dots { flex-direction: row; right: 6vw; bottom: 6vh; left: 6vw; justify-content: center; }
}

/* ================= WAITLIST ================= */
.waitlist {
  background: var(--panel);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 13vh 6vw;
}
.waitlist-title {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(30px, 4.6vw, 56px);
  color: var(--ink);
  max-width: 700px;
}
.waitlist-sub {
  margin-top: 16px;
  color: var(--ink-dim);
  font-size: 15px;
  font-weight: 300;
}
.waitlist-form {
  margin-top: 44px;
  display: flex; align-items: center; gap: 4px;
  background: var(--bg-2);
  border: 1px solid rgba(23,26,32,0.18);
  padding: 4px 4px 4px 20px;
  width: min(460px, 92vw);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.waitlist-form:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,150,90,0.14); }
.waitlist-icon { color: var(--ink-dim); flex-shrink: 0; }
.waitlist-form input {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  color: var(--ink);
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  padding: 14px 8px;
}
.waitlist-form input::placeholder { color: var(--ink-dim); }
.waitlist-form button {
  background: var(--blue); border: none;
  color: #fff;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  min-height: 44px;
  padding: 15px 22px;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.waitlist-form button:hover { background: var(--gold); color: var(--blue); }
.waitlist-note {
  margin-top: 20px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-dim);
}

/* ================= SITE FOOTER ================= */
.site-footer {
  background: var(--dark);
  padding: 8vh 6vw 32px;
}
.site-footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-mark {
  display: block;
  height: 56px; width: auto;
  margin-bottom: 18px;
}
.footer-name {
  font-family: var(--sans); font-size: 15px; font-weight: 500; letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 10px;
}
.footer-desc {
  font-size: 13px; line-height: 1.6;
  color: #f3ede1; opacity: 0.78;
  max-width: 320px;
}
.footer-social {
  list-style: none;
  display: flex; gap: 14px;
  margin-top: 22px;
}
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: #f3ede1;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.footer-social a:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.footer-col-title {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-col a, .footer-static {
  display: inline-block;
  padding: 9px 0;
  font-size: 13.5px;
  color: #f3ede1; opacity: 0.85;
  text-decoration: none;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.footer-col a:hover { opacity: 1; color: var(--gold-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #f3ede1; opacity: 0.65;
}

@media (max-width: 640px) {
  #nav { padding: 20px 5vw; }
  .nav-model { display: none; }
  .macro-label { left: 6vw; right: 6vw; bottom: 10vh; max-width: none; }
  .spec-tl, .spec-tr { top: 16vh; }
  .waitlist-form { flex-wrap: wrap; padding: 16px; background: var(--bg-2); }
  .waitlist-icon { display: none; }
  .waitlist-form input { width: 100%; padding: 10px 4px; }
  .waitlist-form button { width: 100%; padding: 14px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .footer-mark { margin: 0 auto 16px; }
  .footer-desc { margin: 0 auto; }
  .footer-social { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ================= REDUCED MOTION ================= */
/* The scroll-scrub content itself stays (it's driven directly by the user's
   own scroll input, not autoplay), but every decorative/looping animation
   — the pulsing scroll indicator, the letter-by-letter reveal, the slow
   image zoom on the editorial slides — gets turned off. This also trims a
   meaningful amount of ongoing animation work for constrained devices. */
@media (prefers-reduced-motion: reduce) {
  .scroll-line-fill { animation: none; opacity: 0.6; }
  .reveal-letters span { transition: none; }
  .editorial-slide img { transition: none; transform: none; }
  .editorial-slide, .editorial-info-item, .story-line {
    transition-duration: 0.12s;
  }
}
