@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/cormorant-garamond.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/cormorant-garamond.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter.woff2') format('woff2');
}

:root {
  --bg: #000000;
  --ink: #f2efe9;
  --ink-dim: #8c8a84;
  --line: rgba(242, 239, 233, 0.14);
  --accent: #8a2e2e;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

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

html { background: var(--bg); }

html.is-loading { overflow: hidden; }

.page-fade {
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: var(--bg);
  pointer-events: none;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

/* ---------- preloader ---------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.preloader-mark {
  font-family: var(--serif);
  font-size: 3.2rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.preloader-bar {
  width: 180px;
  height: 1px;
  background: rgba(242, 239, 233, 0.16);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--ink);
}

.preloader-pct {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
}

/* ---------- film grain overlay ---------- */

.grain {
  position: fixed;
  inset: -60px;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
  animation: grain-shift 1s steps(4) infinite;
}

@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-20px, 10px); }
  50% { transform: translate(15px, -15px); }
  75% { transform: translate(-10px, -20px); }
  100% { transform: translate(0, 0); }
}

@media (pointer: coarse) {
  /* mix-blend-mode forces the browser to re-blend the whole viewport under
     this layer on every repaint; the shifting animation makes that happen
     every frame. Not worth the cost on a touch device — a flat, static,
     low-opacity layer reads close enough to the same texture. */
  .grain {
    animation: none;
    mix-blend-mode: normal;
    opacity: 0.03;
  }
}

@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
}

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8vh 6vw;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lightbox.is-open {
  visibility: visible;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.lightbox-close:hover {
  border-color: var(--ink);
}

.lightbox-caption {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

@media (max-width: 680px) {
  .lightbox-close { top: 16px; right: 16px; width: 36px; height: 36px; font-size: 1.3rem; }
  .lightbox-caption { bottom: 20px; font-size: 0.6rem; }
}

/* ---------- site nav ---------- */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  /* visible by default: every page works even if JS is slow to load on a
     weak connection. Only the homepage hero needs it hidden at first. */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.4s ease;
}

.site-nav.hero-gated {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

.site-nav.hero-gated.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-nav.is-scrolled {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (pointer: coarse) {
  /* backdrop-filter re-blurs everything behind a fixed bar on every scroll
     frame; a denser flat background reads close enough without the cost. */
  .site-nav.is-scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.nav-mark {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
}

.nav-links a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

@media (max-width: 680px) {
  .nav-links { gap: 16px; }
  .nav-links a.nav-optional { display: none; }
}

/* ---------- pinned hero ---------- */

.hero-pin {
  position: relative;
  height: 420vh; /* scroll distance driving the decomposition */
}

.hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--bg);
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr minmax(220px, 320px);
  align-items: center;
}

.hero-col {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 4vw, 56px);
  pointer-events: none;
}

.hero-col--left { grid-column: 1; }
.hero-col--right { grid-column: 3; }

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--ink-dim);
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.hero-desc {
  max-width: 30ch;
  margin: 0 0 26px;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--ink-dim);
  letter-spacing: 0.01em;
}

.divider {
  width: 36px;
  height: 1px;
  background: var(--line);
  margin-bottom: 22px;
}

.specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.specs li {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
}

/* ---------- watch stage ---------- */

.hero-watch {
  grid-column: 2;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.watch-img {
  width: auto;
  height: auto;
  max-width: 60vw;
  max-height: 88vh;
  object-fit: contain;
  will-change: contents;
}

/* ---------- right feature list ---------- */

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 22px);
}

.feature {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  max-width: 30ch;
}

.feature.is-visible {
  opacity: 0.45;
  transform: translateY(0);
}

.feature.is-active {
  opacity: 1;
}

.feature-num {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}

.feature-title {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 6px;
}

.feature-desc {
  display: block;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--ink-dim);
}

/* ---------- side progress index ---------- */

.side-index {
  position: absolute;
  right: clamp(16px, 2.4vw, 40px);
  bottom: 28px;
  z-index: 2;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  pointer-events: none;
}

#sideIndexCurrent {
  color: var(--ink);
}

/* ---------- scroll hint ---------- */

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: var(--ink-dim);
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.scroll-hint-line {
  width: 1px;
  height: 26px;
  background: linear-gradient(to bottom, var(--ink-dim), transparent);
  animation: hint-move 1.8s ease-in-out infinite;
}

@keyframes hint-move {
  0% { transform: translateY(-6px); opacity: 0.2; }
  50% { transform: translateY(6px); opacity: 1; }
  100% { transform: translateY(-6px); opacity: 0.2; }
}

/* ---------- magnetic targets ---------- */

.magnetic {
  display: inline-block;
  will-change: transform;
}

/* ---------- manifesto ---------- */

.manifesto {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 28px;
  padding: 12vh 6vw;
}

.manifesto-line {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4.6vw, 3.6rem);
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--ink);
  max-width: 18ch;
}

.manifesto-line--accent {
  color: var(--accent);
}

.manifesto-sub {
  margin: 10px 0 0;
  max-width: 42ch;
  font-size: 0.85rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
  opacity: 0;
  transform: translateY(20px);
}

/* word-mask reveal, used by .manifesto-line and .craft-title / .materials-title via data-line */
.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.08em;
}

.word-inner {
  display: inline-block;
  will-change: transform, opacity;
}

/* ---------- collection (vertical reveal-mask stack) ---------- */

.collection {
  padding: 14vh 6vw 4vh;
  display: flex;
  flex-direction: column;
  gap: 16vh;
  max-width: 1100px;
  margin: 0 auto;
}

.collection-eyebrow {
  margin: 0 0 -6vh;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--ink-dim);
  opacity: 0;
  transform: translateY(16px);
}

.reveal-item {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.reveal-text {
  text-align: center;
}

.reveal-index {
  display: block;
  margin-bottom: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.reveal-name {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1;
}

.reveal-tagline {
  margin: 0 0 22px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
}

.reveal-specs {
  list-style: none;
  margin: 0 auto;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  max-width: 54ch;
}

.reveal-specs li {
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
}

.reveal-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.reveal-link:hover {
  border-color: var(--accent);
}

.reveal-media {
  --mr: 16%;
  --mi: 30%;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #050505;
  clip-path: circle(var(--mr) at 50% 50%);
}

.reveal-item.mask--rounded .reveal-media {
  clip-path: inset(var(--mi) round var(--mr));
}

.reveal-media a {
  display: block;
  width: 100%;
  height: 100%;
}

.reveal-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.reveal-media a:hover img {
  transform: scale(1.04);
}

/* ---------- key stats band ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12vh 6vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
}

.stat-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  max-width: 18ch;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  line-height: 1.5;
}

/* ---------- craft / savoir-faire ---------- */

.craft {
  padding: 0;
}

.craft-intro {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14vh 6vw;
}

.craft-eyebrow,
.craft-title {
  padding: 0 6vw;
}

.craft-intro .craft-eyebrow,
.craft-intro .craft-title {
  padding: 0;
}

.craft-intro-text {
  margin: 26px 0 0;
  max-width: 46ch;
  font-size: 0.9rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
}

.unfurl-wrap {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unfurl-banner {
  position: relative;
  width: 90vw;
  height: 80vh;
  border-radius: 48px;
  border: 4px solid #2c2738;
  background: #000;
  overflow: hidden;
  max-width: 1920px;
  margin: 0 auto;
  will-change: transform;
}

.unfurl-perspective {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  pointer-events: none;
}

.unfurl-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.unfurl-vignette--v {
  box-shadow: inset 0 100px 150px -50px #000, inset 0 -100px 150px -50px #000;
}

.unfurl-vignette--h {
  box-shadow: inset 150px 0 150px -50px #000, inset -150px 0 150px -50px #000;
}

.unfurl-grid {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 120vw;
  height: 150vh;
  transform-style: preserve-3d;
  will-change: transform;
}

.unfurl-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 22vw;
  min-width: 190px;
  pointer-events: auto;
}

.unfurl-item {
  position: relative;
  width: 100%;
  height: clamp(140px, 22vw, 260px);
  flex-shrink: 0;
  margin: 0;
  background: #111;
  overflow: hidden;
}

.unfurl-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.unfurl-item:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.craft-eyebrow,
.materials-eyebrow,
.detail-eyebrow {
  margin: 0 0 14px;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
}

.craft-title,
.materials-title,
.detail-h2 {
  margin: 0 auto 8vh;
  max-width: 20ch;
  text-align: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.3;
  color: var(--ink);
}

/* ---------- materials ---------- */

.materials {
  padding: 10vh 6vw 18vh;
}

.materials-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
  max-width: 1200px;
  margin: 0 auto;
}

.swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: scale(0.8);
}

.swatch-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: inset 0 2px 6px rgba(255,255,255,0.15), inset 0 -6px 14px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.swatch-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 48%, transparent 66%);
  background-size: 220% 220%;
  background-position: -100% -100%;
  transition: background-position 0.8s ease;
}

.swatch:hover .swatch-dot::after {
  background-position: 100% 100%;
}

.swatch-label {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  text-align: center;
  max-width: 12ch;
}

/* ---------- inspiration & identité ---------- */

.inspiration {
  padding: 14vh 6vw;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14vh;
}

.inspiration-eyebrow {
  margin: 0 0 14px;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: var(--accent);
  opacity: 0;
  transform: translateY(16px);
}

.inspiration-title {
  margin: 0 auto 4vh;
  max-width: 20ch;
  text-align: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.3;
  color: var(--ink);
}

.insp-group {
  display: flex;
  align-items: center;
  gap: clamp(24px, 6vw, 80px);
}

.insp-group--reverse {
  flex-direction: row-reverse;
}

.insp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: min(38vw, 400px);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.insp-tile {
  position: relative;
  overflow: hidden;
  background: #050505;
  opacity: 0;
  transform: scale(0.92);
}

.insp-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.insp-model {
  margin: 0 0 16px;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.insp-quote {
  margin: 0;
  max-width: 16ch;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.35;
  color: var(--ink);
}

/* ---------- closing footer ---------- */

.closing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  padding: 10vh 6vw 6vh;
}

.closing-eyebrow {
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  color: var(--ink-dim);
  opacity: 0;
  transform: translateY(14px);
}

.closing-word {
  margin: 10px 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.2rem, 12vw, 9rem);
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1;
}

.closing-word .letter {
  display: inline-block;
  overflow: hidden;
}

.closing-tagline {
  margin: 0 0 40px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  opacity: 0;
  transform: translateY(14px);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.footer-links a {
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-legal {
  margin-top: 40px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(140, 138, 132, 0.5);
}

.footer-legal a {
  color: rgba(140, 138, 132, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--ink);
}

/* ---------- legal page ---------- */

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 6vh 6vw 16vh;
}

.legal-block {
  padding: 4vh 0;
  border-bottom: 1px solid var(--line);
}

.legal-block:last-child {
  border-bottom: none;
}

.legal-block h2 {
  margin: 0 0 2.4vh;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  letter-spacing: 0.01em;
  color: var(--ink);
}

.legal-block p {
  margin: 0 0 1.4em;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--ink-dim);
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block a {
  color: var(--ink);
}

/* ---------- watch detail page ---------- */

.detail-hero {
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20vh 6vw 4vh;
}

.detail-title {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.detail-desc {
  max-width: 56ch;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--ink-dim);
  opacity: 0;
  transform: translateY(24px);
}

.detail-hero-media {
  display: flex;
  justify-content: center;
  padding: 0 6vw 14vh;
}

.detail-hero-media img {
  max-width: min(58vw, 700px);
  max-height: 68vh;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: translateY(24px);
}

.detail-views {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4vh 6vw 14vh;
}

.view-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 28px 16px;
  border: 1px solid var(--line);
  background: #050505;
}

.view-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
  transition: transform 0.5s ease;
}

.view-card:hover img {
  transform: scale(1.05);
}

.view-label {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.detail-specs,
.detail-positioning {
  max-width: 720px;
  margin: 0 auto;
  padding: 10vh 6vw;
  text-align: center;
}

.spec-table {
  margin: 6vh 0 0;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.spec-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.spec-row dt {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.spec-row dd {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink);
  text-align: right;
}

.positioning-list {
  list-style: none;
  margin: 6vh 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.positioning-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.85rem;
  color: var(--ink);
}

.pos-num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 2.4ch;
}

.detail-sketch {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10vh 6vw;
  text-align: center;
}

.detail-closeups {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10vh 6vw 0;
  text-align: center;
}

.detail-closeups .detail-views {
  padding: 4vh 0 14vh;
}

.sketch-frame {
  margin-top: 6vh;
  border: 1px solid var(--line);
  background: #f2ede4;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}

.sketch-frame img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.06);
}

.detail-cta {
  max-width: 800px;
  margin: 0 auto;
  padding: 12vh 6vw 16vh;
  text-align: center;
}

.cta-links {
  margin-top: 5vh;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #050505;
  background: var(--ink);
  border: 1px solid var(--ink);
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background: transparent;
  color: var(--ink);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  color: #050505;
}

.mini-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 8vh 6vw;
  border-top: 1px solid var(--line);
}

/* ---------- contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4vh 6vw 16vh;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--line);
  background: #050505;
}

/* ---------- other models (detail page cross-links) ---------- */

.detail-siblings {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10vh 6vw 14vh;
  text-align: center;
}

.siblings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 6vh;
}

.sibling-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 16px;
  border: 1px solid var(--line);
  background: #050505;
  text-decoration: none;
  transition: border-color 0.3s ease;
}

.sibling-card:hover {
  border-color: var(--ink-dim);
}

.sibling-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.sibling-card:hover img {
  transform: scale(1.06);
}

.sibling-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.contact-label {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.contact-text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--ink-dim);
}

.contact-hours {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  width: 100%;
}

.contact-email {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}

.contact-email:hover {
  border-color: var(--ink);
}

/* ---------- responsive ---------- */

@media (max-width: 1180px) {
  .hero-stage {
    grid-template-columns: minmax(180px, 240px) 1fr minmax(180px, 240px);
  }
  .watch-img { max-width: 66vw; }
  .hero-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
}

@media (max-width: 860px) {
  .hero-pin { height: 480vh; }
  .hero-stage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4vh;
    padding: 8vh 6vw;
  }
  .hero-col {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .hero-col--left { order: 1; }
  .hero-watch { order: 2; flex: none; height: auto; }
  .hero-col--right { order: 3; }

  .hero-desc { margin-left: auto; margin-right: auto; }
  .divider { margin-left: auto; margin-right: auto; }
  .specs { align-items: center; }

  .watch-img { max-width: 78vw; max-height: 46vh; }

  .feature-list { align-items: center; }
  .feature { text-align: center; }

  /* only the active feature is shown to save vertical space */
  .feature { display: none; }
  .feature.is-active { display: block; opacity: 1; transform: none; }

  .side-index { display: none; }

  /* the absolutely-positioned scroll hint can overlap the feature
     description at this content height; not needed on touch devices. */
  .scroll-hint { display: none; }

  .site-nav { padding: 16px 5vw; }

  .manifesto { gap: 20px; padding: 10vh 7vw; }

  .collection { gap: 12vh; padding: 10vh 6vw 4vh; }
  .reveal-item { gap: 26px; }
  .reveal-name { font-size: clamp(2.2rem, 12vw, 3.4rem); }
  .reveal-tagline { font-size: 0.85rem; }
  .reveal-specs { gap: 8px 18px; }
  .reveal-media { aspect-ratio: 4 / 3; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; padding: 8vh 6vw; }

  .craft-intro { min-height: 56vh; padding: 10vh 7vw; }
  .craft-title { margin-bottom: 6vh; }
  .unfurl-banner { width: 94vw; height: 76vh; border-radius: 28px; }
  .unfurl-grid { gap: 10px; }
  .unfurl-col { width: 26vw; min-width: 120px; gap: 10px; }
  .unfurl-item { height: clamp(90px, 26vw, 180px); }

  .materials-row { gap: 22px 30px; }
  .swatch-dot { width: 52px; height: 52px; }

  .inspiration { gap: 10vh; padding: 10vh 6vw; }
  .insp-group,
  .insp-group--reverse { flex-direction: column; gap: 28px; }
  .insp-grid { width: 100%; max-width: 340px; }
  .insp-text { text-align: center; }
  .insp-quote { max-width: 22ch; margin: 0 auto; }

  .closing-word { font-size: clamp(2.6rem, 16vw, 5rem); }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  .detail-hero { min-height: 44vh; padding: 16vh 6vw 4vh; }
  .detail-hero-media { padding-bottom: 8vh; }
  .detail-hero-media img { max-width: 82vw; }
  .detail-views { grid-template-columns: repeat(3, 1fr); gap: 10px; padding-bottom: 8vh; }
  .view-card { padding: 12px 8px; gap: 10px; }
  .view-card img { aspect-ratio: 3 / 2; }
  .view-label { font-size: 0.56rem; letter-spacing: 0.12em; }
  .siblings-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .sibling-card { padding: 12px 8px; gap: 10px; }
  .sibling-name { font-size: 0.8rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 16px; padding-bottom: 8vh; }
  .spec-row dt, .positioning-item { font-size: 0.8rem; }
  .detail-cta { padding: 8vh 6vw 12vh; }
}

@media (max-width: 480px) {
  .eyebrow { font-size: 0.6rem; }
  .hero-title { font-size: clamp(1.5rem, 7vw, 2.1rem); margin-bottom: 14px; }
  .hero-desc { font-size: 0.76rem; max-width: 34ch; }
  .watch-img { max-width: 86vw; max-height: 40vh; }

  .stats { grid-template-columns: 1fr 1fr; }
  .unfurl-banner { width: 100vw; height: 72vh; border-radius: 0; border-width: 0; }
  .unfurl-col { width: 30vw; min-width: 96px; }
  .unfurl-item { height: clamp(70px, 30vw, 140px); }
}
