/* ==========================================================================
   Richfields — site stylesheet
   Structure follows Vita Travel (hairline grid, label-left / headline-right
   section intros, pill buttons, numbered step bands); the palette and type
   are re-toned for a watch house: near-black, ivory, champagne gold, and
   Playfair Display, a high-contrast serif sturdy enough to read over video.
   ========================================================================== */

:root {
  --ink: #0b0b0c;
  --ink-2: #131315;
  --ink-3: #1b1b1e;
  --line: rgba(201, 169, 110, 0.16);
  --line-strong: rgba(201, 169, 110, 0.32);
  --ivory: #f3eee4;
  --ivory-2: #e6ddcc;
  --mute: rgba(243, 238, 228, 0.58);
  --faint: rgba(243, 238, 228, 0.36);
  --champagne: #c9a96e;
  --champagne-hi: #dcc08a;
  --danger: #e0806b;

  --serif: "Playfair Display", "Didot", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --gutter: 40px;
  --hdr: 72px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 900px) { :root { --gutter: 24px; --hdr: 64px; } }
@media (max-width: 480px) { :root { --gutter: 18px; } }

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; background: var(--ink); font-variant-numeric: lining-nums; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--champagne); color: var(--ink); }
[hidden] { display: none !important; }
:focus-visible { outline: 1px solid var(--champagne); outline-offset: 3px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 200;
  background: var(--ivory); color: var(--ink); padding: 10px 16px; border-radius: var(--radius-pill);
}
.skip-link:focus { top: 12px; }

/* ---------- Type ---------- */
.display, .h1, .h2, .h3 {
  font-family: var(--serif); font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
  font-optical-sizing: auto;
}
.display { font-size: clamp(76px, 16vw, 250px); letter-spacing: -0.025em; line-height: 0.9; }
.h1 { font-size: clamp(46px, 6.4vw, 104px); line-height: 0.98; }
.h2 { font-size: clamp(38px, 4.9vw, 76px); line-height: 1.02; }
.h3 { font-size: clamp(26px, 2.4vw, 36px); line-height: 1.08; letter-spacing: -0.01em; }
.h2 em, .h1 em, .display em { font-style: italic; color: var(--champagne); }

.lede { font-size: clamp(18px, 1.55vw, 23px); line-height: 1.42; letter-spacing: -0.01em; color: var(--ivory); }
.body-mute { color: var(--mute); }
.micro {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute);
}
.price { font-family: var(--sans); font-weight: 500; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }

/* Vita's "✳ Retreats" section label, using the Richfields star */
.label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ivory);
}
.label::before {
  content: ""; width: 14px; height: 14px; flex: none;
  background: var(--champagne);
  -webkit-mask: url("../img/brand/mark.png") center / contain no-repeat;
          mask: url("../img/brand/mark.png") center / contain no-repeat;
}

/* ---------- Layout ---------- */
.wrap { padding-inline: var(--gutter); }
.section { position: relative; border-top: 1px solid var(--line); }
.section--flush { border-top: 0; }
.pad-y { padding-block: clamp(96px, 13vw, 200px); }
.pad-y-sm { padding-block: clamp(64px, 8vw, 120px); }

/* label-left / headline-right intro (Vita) */
.intro {
  display: grid;
  grid-template-columns: minmax(0, 23.5%) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.intro__side { padding-top: 0.6em; }
.intro__body > * + * { margin-top: 28px; }
@media (max-width: 900px) { .intro { grid-template-columns: 1fr; gap: 20px; } .intro__side { padding-top: 0; } }

.split-head {
  display: flex; justify-content: space-between; align-items: end; gap: 40px; flex-wrap: wrap;
}
.split-head p { max-width: 430px; margin: 0; color: var(--mute); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ivory); --fg: var(--ink);
  position: relative; display: inline-flex; align-items: center; justify-content: space-between; gap: 26px;
  min-height: 52px; padding: 0 22px 0 30px;
  background: var(--bg); color: var(--fg);
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 500; letter-spacing: -0.005em;
  overflow: hidden; isolation: isolate;
  transition: color 0.45s var(--ease);
  white-space: nowrap;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--champagne);
  transform: translateY(101%); border-radius: inherit;
  transition: transform 0.55s var(--ease);
}
.btn:hover::after, .btn:focus-visible::after { transform: translateY(0); }
.btn__icon {
  width: 10px; height: 10px; flex: none;
  background: currentColor;
  -webkit-mask: url("../img/brand/mark.png") center / contain no-repeat;
          mask: url("../img/brand/mark.png") center / contain no-repeat;
  transition: transform 0.6s var(--ease);
}
.btn:hover .btn__icon { transform: rotate(90deg); }
.btn--ghost { --bg: transparent; --fg: var(--ivory); box-shadow: inset 0 0 0 1px var(--line-strong); }
.btn--ghost:hover { --fg: var(--ink); }
.btn--dark { --bg: var(--ink-3); --fg: var(--ivory); }
.btn--dark:hover { --fg: var(--ink); }
.btn--gold { --bg: var(--champagne); --fg: var(--ink); }
.btn--gold::after { background: var(--ivory); }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.45; pointer-events: none; }

.link-u {
  position: relative; display: inline-block; color: var(--ivory);
  background-image: linear-gradient(var(--champagne), var(--champagne)), linear-gradient(var(--line-strong), var(--line-strong));
  background-size: 0 1px, 100% 1px;
  background-position: 0 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.7s var(--ease), color 0.4s var(--ease);
}
.link-u:hover { background-size: 100% 1px, 100% 1px; color: var(--champagne); }

/* ---------- Header ---------- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--hdr);
  display: grid; grid-template-columns: 220px 1fr auto auto;
  isolation: isolate;
  transition: transform 0.6s var(--ease);
}
/* Scrolled state: a blurred dark wash that fades out below the header, so
   there is never a hard edge or rule line. */
.hdr::before {
  content: ""; position: absolute; inset: 0 0 -48px 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 11, 12, 0.92) 0%, rgba(11, 11, 12, 0.7) 55%, rgba(11, 11, 12, 0) 100%);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  opacity: 0; transition: opacity 0.6s var(--ease);
}
.hdr.is-solid::before { opacity: 1; }
.hdr.is-hidden { transform: translateY(calc(-100% - 60px)); }
.hdr__logo {
  display: flex; align-items: center; padding-inline: var(--gutter);
}
.hdr__logo img { width: 142px; height: auto; }
.hdr__nav { display: flex; justify-content: flex-end; align-items: center; gap: 30px; padding-inline: 24px 24px; }
.hdr__nav a { font-size: 14px; font-weight: 500; position: relative; padding-block: 6px; }
.hdr__nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--champagne);
  transform: scaleX(0); transform-origin: right; transition: transform 0.5s var(--ease);
}
.hdr__nav a:hover::after, .hdr__nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.hdr__nav a[aria-current="page"] { color: var(--champagne); }
.hdr__cell {
  display: flex; align-items: center; gap: 10px; padding-inline: 20px;
  font-size: 14px; font-weight: 500;
  transition: color 0.3s;
}
.hdr__cell:hover { color: var(--champagne); }
.hdr__cell:last-of-type { padding-right: var(--gutter); }
.hdr__count {
  display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: var(--radius-pill); background: var(--champagne); color: var(--ink);
  font-size: 11px; font-weight: 600; font-variant-numeric: tabular-nums;
}
.hdr__count[data-zero="true"] { background: transparent; color: var(--mute); box-shadow: inset 0 0 0 1px var(--line-strong); }
.hdr__burger { display: none; }

@media (max-width: 1100px) {
  .hdr { grid-template-columns: 1fr auto auto; }
  .hdr__nav { display: none; }
  .hdr__burger {
    display: flex; align-items: center; justify-content: center; width: var(--hdr);
  }
  .hdr__cell:last-of-type { padding-right: 8px; }
  .hdr__logo img { width: 128px; }
}
@media (max-width: 480px) {
  .hdr__cell { padding-inline: 16px; }
  .hdr__cell-text { display: none; }
  .hdr__logo img { width: 118px; }
}
.burger { width: 22px; height: 12px; position: relative; }
.burger span { position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ivory); transition: transform 0.5s var(--ease), top 0.5s var(--ease); }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10.5px; }
.menu-open .burger span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.menu-open .burger span:nth-child(2) { top: 5px; transform: rotate(-45deg); }

/* Mobile menu */
.mmenu {
  position: fixed; inset: 0; z-index: 85;
  background: var(--ink);
  padding: calc(var(--hdr) + 24px) var(--gutter) 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s var(--ease);
  visibility: hidden;
}
.menu-open .mmenu { clip-path: inset(0 0 0 0); visibility: visible; }
.mmenu__links { display: flex; flex-direction: column; }
.mmenu__links a {
  font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 11vw, 64px); line-height: 1.12; letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line); padding-block: 6px;
}
.mmenu__foot { display: grid; gap: 6px; color: var(--mute); font-size: 14px; }
body.menu-open { overflow: hidden; }

/* ---------- Loader curtain ---------- */
.loader {
  position: fixed; inset: 0; z-index: 300; background: var(--ink);
  display: grid; place-items: center;
}
.loader img { width: 64px; height: auto; opacity: 0; }
.loader__bar { position: absolute; left: 50%; bottom: 20%; width: 120px; height: 1px; transform: translateX(-50%); background: var(--line); overflow: hidden; }
.loader__bar i { position: absolute; inset: 0; background: var(--champagne); transform: scaleX(0); transform-origin: left; }

/* ---------- Hero ---------- */
.hero {
  position: relative; height: 100vh; height: 100svh; min-height: 620px;
  overflow: hidden; isolation: isolate;
  display: grid; place-items: center; text-align: center;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 50% 45%, rgba(11,11,12,0.05) 0%, rgba(11,11,12,0.55) 70%, rgba(11,11,12,0.9) 100%),
    linear-gradient(180deg, rgba(11,11,12,0.55) 0%, rgba(11,11,12,0) 22%, rgba(11,11,12,0) 60%, var(--ink) 100%);
}
.hero__inner { padding-inline: var(--gutter); padding-top: var(--hdr); }
.hero__kicker { margin-bottom: 20px; }
.hero .display { text-shadow: 0 10px 60px rgba(0,0,0,0.35); }
.hero__sub {
  max-width: 560px; margin: 26px auto 0;
  font-size: clamp(19px, 1.9vw, 27px); line-height: 1.2; letter-spacing: -0.02em; font-weight: 500;
}
.hero__ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* Inner page hero (Vita inner pages: headline over hairline) */
.phero { padding-top: calc(var(--hdr) + clamp(64px, 9vw, 130px)); padding-bottom: clamp(48px, 6vw, 84px); position: relative; }
.phero .h1 { max-width: 16ch; }
.phero__meta { display: flex; justify-content: space-between; align-items: end; gap: 32px; flex-wrap: wrap; margin-top: 36px; }
.phero__meta p { max-width: 520px; margin: 0; color: var(--mute); }
.crumbs { display: flex; gap: 10px; font-size: 13px; color: var(--mute); margin-bottom: 28px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--ivory); }
.crumbs span[aria-hidden] { color: var(--faint); }

/* ---------- Ribbon marquee ---------- */
.ribbon { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: var(--ink); }
.marquee { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex: none; }
.ribbon--promo .marquee__group > * {
  display: inline-flex; align-items: center; gap: 28px; padding: 18px 28px 18px 0;
  font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 2vw, 28px); letter-spacing: -0.01em; white-space: nowrap;
}
.ribbon--promo .marquee__group > *::before {
  content: ""; width: 14px; height: 14px; background: var(--champagne);
  -webkit-mask: url("../img/brand/mark.png") center / contain no-repeat; mask: url("../img/brand/mark.png") center / contain no-repeat;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Hairline grids ---------- */
.hgrid { display: grid; border-top: 1px solid var(--line); }
.hgrid > * { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-width: 0; }
.hgrid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hgrid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hgrid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hgrid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.hgrid--2 > :nth-child(2n), .hgrid--3 > :nth-child(3n), .hgrid--4 > :nth-child(4n), .hgrid--5 > :nth-child(5n) { border-right: 0; }
@media (max-width: 1100px) {
  .hgrid--4, .hgrid--5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hgrid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hgrid--4 > *, .hgrid--5 > *, .hgrid--3 > * { border-right: 1px solid var(--line); }
  .hgrid--4 > :nth-child(2n), .hgrid--5 > :nth-child(2n), .hgrid--3 > :nth-child(2n) { border-right: 0; }
}
@media (max-width: 700px) {
  .hgrid--2, .hgrid--3, .hgrid--4 { grid-template-columns: 1fr; }
  .hgrid--2 > *, .hgrid--3 > *, .hgrid--4 > * { border-right: 0 !important; }
}

/* ---------- Media frames ---------- */
.frame { position: relative; overflow: hidden; background: var(--ink-2); }
.frame img, .frame video { width: 100%; height: 100%; object-fit: cover; transform-origin: center; }
.frame--34 { aspect-ratio: 3 / 4; }
.frame--45 { aspect-ratio: 4 / 5; }
.frame--11 { aspect-ratio: 1; }
.frame--wide { aspect-ratio: 21 / 8; }
.grade { filter: saturate(0.85) contrast(1.05) brightness(0.92); }
@media (max-width: 700px) { .frame--wide { aspect-ratio: 4 / 3; } }

/* The vitrine: catalogue shots on white are multiplied onto a lit ivory
   plate, so the white background disappears into the plate. */
.vitrine {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; place-items: center;
  background: radial-gradient(90% 75% at 50% 42%, #faf7f1 0%, var(--ivory) 45%, var(--ivory-2) 100%);
  aspect-ratio: 4 / 5;
}
.vitrine::after {
  content: ""; position: absolute; left: 12%; right: 12%; bottom: 9%; height: 7%; z-index: -1;
  background: radial-gradient(50% 50% at 50% 50%, rgba(60, 45, 20, 0.22), transparent 70%);
  filter: blur(6px);
}
.vitrine img {
  width: auto; height: auto; max-width: 64%; max-height: 78%;
  mix-blend-mode: multiply;
  transition: transform 1.1s var(--ease);
}
.vitrine--sq { aspect-ratio: 1; }
.vitrine__empty {
  display: grid; justify-items: center; gap: 14px; color: #6f6656; text-align: center; padding: 24px;
}
.vitrine__empty::before {
  content: ""; width: 42px; height: 42px; background: #b8a98c;
  -webkit-mask: url("../img/brand/mark.png") center / contain no-repeat; mask: url("../img/brand/mark.png") center / contain no-repeat;
}
.vitrine__empty span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.vitrine__tag {
  position: absolute; top: 16px; left: 16px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--ink); background: rgba(255,255,255,0.7); padding: 6px 10px; border-radius: var(--radius-pill);
}
.vitrine__tag--sold { background: var(--ink); color: var(--ivory); }

/* ---------- Collections grid (Vita category grid) ---------- */
.coll { display: flex; flex-direction: column; gap: 22px; padding: 32px var(--gutter) 40px; transition: background-color 0.4s; }
.coll:hover { background: rgba(243, 238, 228, 0.025); }
.coll__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.coll__name { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
.coll__count { font-size: 15px; color: var(--mute); white-space: nowrap; }
.coll .frame img { transition: transform 1.2s var(--ease); }
.coll:hover .frame img { transform: scale(1.05); }
.coll .frame { background: radial-gradient(90% 75% at 50% 42%, #faf7f1 0%, var(--ivory) 45%, var(--ivory-2) 100%); }
.coll .frame img.on-white { mix-blend-mode: multiply; object-fit: contain; padding: 14% 16%; }

/* ---------- Feature cards (Vita Featured Retreats) ---------- */
.fcard { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; padding: 40px var(--gutter); }
.fcard__text { display: flex; flex-direction: column; min-width: 0; }
.fcard__brand { margin-bottom: 14px; }
.fcard__title { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 2.5vw, 38px); line-height: 1.04; letter-spacing: -0.015em; margin: 0; }
.fcard__price { margin-top: 14px; font-size: 18px; }
.fcard__price small { color: var(--mute); font-size: 15px; font-weight: 400; margin-right: 4px; }
.fcard__specs { list-style: none; margin: auto 0 0; padding: 28px 0 22px; display: grid; gap: 9px; font-size: 13px; }
.fcard__specs li { display: flex; justify-content: space-between; gap: 16px; }
.fcard__specs li span:first-child { color: var(--mute); }
.fcard__specs li span:last-child { text-align: right; }
.fcard .btn { justify-content: space-between; }
.fcard .vitrine { aspect-ratio: auto; min-height: 100%; }
.fcard:hover .vitrine img { transform: scale(1.05); }
@media (max-width: 1100px) { .fcard { grid-template-columns: 1fr; gap: 24px; } .fcard .vitrine { aspect-ratio: 4 / 3; order: -1; } }

/* ---------- Product grid cards ---------- */
.pgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.pgrid > * { background: var(--ink); box-shadow: inset -1px -1px 0 var(--line); }
@media (max-width: 1100px) { .pgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .pgrid { grid-template-columns: 1fr; } }
.pcard { display: flex; flex-direction: column; padding: 20px 20px 28px; position: relative; }
.pcard .vitrine { margin-bottom: 22px; }
.pcard:hover .vitrine img { transform: scale(1.06); }
.pcard__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.pcard__title { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 1.9vw, 28px); line-height: 1.08; letter-spacing: -0.01em; margin: 8px 0 10px; }
.pcard__meta { font-size: 13px; color: var(--mute); }
.pcard__cta {
  position: absolute; right: 36px; top: 36px;
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 14px; border-radius: var(--radius-pill);
  background: var(--ink); color: var(--ivory); font-size: 12px; font-weight: 500;
  opacity: 0; transform: translateY(-6px); transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
}
.pcard:hover .pcard__cta, .pcard:focus-visible .pcard__cta { opacity: 1; transform: none; }
.pcard__cta::before { content: ""; width: 8px; height: 8px; background: var(--champagne); -webkit-mask: url("../img/brand/mark.png") center / contain no-repeat; mask: url("../img/brand/mark.png") center / contain no-repeat; }
.pcard.is-sold .vitrine img { filter: grayscale(0.6); opacity: 0.7; }

/* ---------- Filter bar ---------- */
.filters { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-block: 20px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 9px 16px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 500;
  box-shadow: inset 0 0 0 1px var(--line-strong); color: var(--mute);
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.chip:hover { color: var(--ivory); }
.chip[aria-pressed="true"] { background: var(--ivory); color: var(--ink); box-shadow: none; }
.chip sup { font-size: 10px; margin-left: 3px; opacity: 0.6; }
.select {
  appearance: none; -webkit-appearance: none;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%23f3eee4' stroke-opacity='.6'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E") right 16px center no-repeat;
  box-shadow: inset 0 0 0 1px var(--line-strong); border: 0; border-radius: var(--radius-pill);
  padding: 9px 40px 9px 16px; font-size: 13px; color: var(--ivory);
}
.select option { background: var(--ink-2); color: var(--ivory); }

/* ---------- Step band (Vita "+Extras") ---------- */
.band { position: relative; isolation: isolate; overflow: hidden; }
.band__bg { position: absolute; inset: -12% 0; z-index: -2; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; }
.band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,11,12,0.55) 0%, rgba(11,11,12,0.25) 35%, rgba(11,11,12,0.8) 70%, var(--ink) 100%);
}
.band__top { padding: clamp(90px, 12vw, 180px) var(--gutter) clamp(60px, 9vw, 150px); }
.band__title { font-family: var(--serif); font-weight: 500; font-size: clamp(56px, 9.5vw, 150px); line-height: 0.9; letter-spacing: -0.03em; margin: 0; }
.band__title span { color: var(--champagne); font-style: italic; }
.steps { display: grid; grid-template-columns: 1.95fr repeat(4, 1fr); border-top: 1px solid var(--line-strong); }
.steps > * { padding: 40px 40px 44px; border-left: 1px solid var(--line-strong); min-height: 290px; display: flex; flex-direction: column; }
.steps > :first-child { border-left: 0; padding-left: var(--gutter); }
.steps__lead { font-size: clamp(19px, 1.6vw, 23px); line-height: 1.26; letter-spacing: -0.015em; font-weight: 500; }
.step__n { font-family: var(--serif); font-weight: 500; font-size: 52px; line-height: 1; letter-spacing: -0.02em; }
.step__k { font-size: 12px; color: var(--mute); margin-top: 6px; }
.step__t { margin-top: auto; font-size: 17px; font-weight: 500; line-height: 1.25; letter-spacing: -0.01em; }
@media (max-width: 1100px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps > :first-child { grid-column: 1 / -1; padding-inline: var(--gutter); min-height: 0; }
  .steps > * { min-height: 220px; border-top: 1px solid var(--line-strong); }
  .steps > :nth-child(2n) { border-left: 0; padding-left: var(--gutter); }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .steps > * { border-left: 0 !important; padding-inline: var(--gutter) !important; min-height: 170px; }
}

/* ---------- About band ---------- */
.about { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr); gap: 24px; margin-top: clamp(48px, 6vw, 80px); }
.about .frame { aspect-ratio: 5 / 4; }
.about__copy { padding-left: clamp(0px, 1.7vw, 24px); display: flex; flex-direction: column; }
.lit > div { text-indent: 0; }
.lit { font-size: clamp(20px, 1.75vw, 26px); line-height: 1.3; letter-spacing: -0.015em; font-weight: 500; margin: 0; text-indent: 2.2em; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: auto; padding-top: 48px; }
.stat__n { font-family: var(--serif); font-weight: 500; font-size: clamp(44px, 4.4vw, 68px); line-height: 1; letter-spacing: -0.02em; }
.stat__k { font-size: 14px; color: var(--mute); margin-top: 10px; max-width: 16ch; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } .about__copy { padding-left: 0; } }

/* ---------- Brands grid ---------- */
.brand-cell { display: block; aspect-ratio: 16 / 9; position: relative; overflow: hidden; transition: background-color 0.4s; }
.brand-cell:hover { background: rgba(243, 238, 228, 0.03); }
/* Brand marks are dark artwork on white JPGs: grayscale + invert turns them
   into ivory marks on black, and screen blending drops the (now black) box. */
.brand-cell img, .press img {
  width: 100%; height: 100%; object-fit: contain;
  filter: grayscale(1) invert(1) contrast(1.6) brightness(1.9) sepia(0.1);
  mix-blend-mode: screen; opacity: 0.8;
  transition: opacity 0.4s, transform 0.8s var(--ease);
}
.brand-cell img { position: absolute; left: 16%; top: 14%; width: 68%; height: 72%; }
.brand-cell:hover img { opacity: 1; transform: scale(1.04); }
.brand-cell__name { position: absolute; bottom: 12px; left: 16px; font-size: 11px; color: var(--faint); letter-spacing: 0.12em; text-transform: uppercase; opacity: 0; transition: opacity 0.4s; }
.brand-cell:hover .brand-cell__name { opacity: 1; }

/* ---------- Services (Vita how-it-works) ---------- */
.svc { padding: 36px var(--gutter) 44px; display: flex; flex-direction: column; min-height: 340px; }
.svc__icon { display: flex; gap: 12px; align-items: flex-start; }
.svc__icon svg { width: 46px; height: 46px; stroke: var(--ivory); stroke-width: 1; fill: none; }
.svc__icon small { font-size: 11px; color: var(--mute); }
.svc__t { margin: auto 0 0; padding-top: 56px; font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
.svc__d { margin: 14px 0 22px; color: var(--mute); max-width: 32ch; }
.svc .link-u { align-self: flex-start; font-size: 14px; }

/* ---------- Split (watch finder) ---------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.split > * { min-width: 0; }
.split__media { position: relative; min-height: 560px; overflow: hidden; }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split__copy { padding: clamp(56px, 7vw, 110px) var(--gutter); display: flex; flex-direction: column; justify-content: center; gap: 28px; border-left: 1px solid var(--line); }
.split__copy p { margin: 0; color: var(--mute); max-width: 48ch; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split__media { min-height: 360px; } .split__copy { border-left: 0; } }

/* ---------- Testimonials (Vita coaches) ---------- */
.quotes { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.quote { margin: 0; padding: 36px var(--gutter) 40px; display: flex; flex-direction: column; gap: 28px; min-height: 380px; }
.quote__mark { font-family: var(--serif); font-weight: 500; font-size: 64px; line-height: 0.5; color: var(--champagne); height: 22px; }
.quote p { margin: 0; font-size: 16px; line-height: 1.5; color: var(--ivory); }
.quote footer { margin-top: auto; display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.quote footer span:last-child { color: var(--champagne); letter-spacing: 3px; font-size: 12px; }
@media (max-width: 1100px) { .quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .quotes { grid-template-columns: 1fr; } .quote { min-height: 0; } }

/* ---------- Boutiques ---------- */
.city { position: relative; display: block; overflow: hidden; }
.city .frame { aspect-ratio: 3 / 4; }
.city .frame img { transition: transform 1.4s var(--ease); }
.city:hover .frame img { transform: scale(1.06); }
.city::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(11,11,12,0.85)); pointer-events: none; }
.city__label { position: absolute; left: 28px; right: 28px; bottom: 26px; z-index: 1; display: flex; justify-content: space-between; align-items: end; gap: 12px; }
.city__name { font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 2.8vw, 44px); line-height: 1; letter-spacing: -0.02em; }
.city__sub { font-size: 12px; color: var(--mute); text-align: right; }
.cities { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 900px) { .cities { grid-template-columns: 1fr; } .city .frame { aspect-ratio: 4 / 3; } }

/* ---------- Press marquee ---------- */
.press .marquee { animation-duration: 36s; }
.press .marquee__group > * img { width: auto; height: auto; max-width: 100%; max-height: 44px; }
.press .marquee__group > * { background: var(--ink); display: grid; place-items: center; width: clamp(150px, 16vw, 230px); height: 90px; padding: 22px 34px; border-right: 1px solid var(--line); }

/* ---------- Qualities ---------- */
.qual { padding: 40px var(--gutter); display: grid; grid-template-columns: auto 1fr; gap: 20px; }
.qual svg { width: 34px; height: 34px; stroke: var(--champagne); fill: none; stroke-width: 1.1; }
.qual h3 { margin: 4px 0 8px; font-size: 16px; font-weight: 500; letter-spacing: -0.01em; }
.qual p { margin: 0; color: var(--mute); font-size: 14px; max-width: 40ch; }

/* ---------- Footer ---------- */
.ftr { position: relative; border-top: 1px solid var(--line); }
.ftr__strip { padding: clamp(60px, 8vw, 120px) var(--gutter) 0; }
.ftr__grid { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 40px; padding: clamp(48px, 6vw, 80px) var(--gutter); }
.ftr__logo img { width: 190px; height: auto; }
.ftr__logo p { color: var(--mute); max-width: 30ch; margin: 22px 0 0; font-size: 14px; }
.ftr__big { display: flex; flex-direction: column; }
.ftr__big a {
  font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 4.4vw, 68px); line-height: 1.02; letter-spacing: -0.025em;
  display: inline-flex; align-items: baseline; gap: 4px; width: fit-content; transition: color 0.3s, transform 0.6s var(--ease);
}
.ftr__big a::before { content: "+"; font-family: var(--sans); font-weight: 300; font-size: 0.6em; color: var(--faint); transition: color 0.3s, transform 0.6s var(--ease); }
.ftr__big a:hover { color: var(--champagne); }
.ftr__big a:hover::before { color: var(--champagne); transform: rotate(90deg); }
.ftr__contact { display: grid; gap: 10px; align-content: start; font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.ftr__contact address { font-style: normal; color: var(--mute); font-size: 14px; font-weight: 400; line-height: 1.6; margin-top: 12px; }
.ftr__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 40px var(--gutter); border-top: 1px solid var(--line); }
.ftr__cols h4 { margin: 0 0 16px; }
.ftr__cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 14px; color: var(--mute); }
.ftr__cols a:hover { color: var(--ivory); }
.ftr__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 22px var(--gutter); border-top: 1px solid var(--line); font-size: 13px; color: var(--faint); }
.ftr__wordmark { padding: 0 var(--gutter); overflow: hidden; border-top: 1px solid var(--line); }
.ftr__wordmark img { width: 100%; height: auto; opacity: 0.07; padding-block: clamp(24px, 3vw, 44px); }
@media (max-width: 1000px) { .ftr__grid { grid-template-columns: 1fr 1fr; } .ftr__logo { grid-column: 1 / -1; } .ftr__cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ftr__grid { grid-template-columns: 1fr; } }

/* ---------- Product detail ---------- */
.pd { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); border-bottom: 1px solid var(--line); }
.pd__media { position: relative; border-right: 1px solid var(--line); }
.pd__media-inner { position: sticky; top: 0; padding: calc(var(--hdr) + 24px) var(--gutter) 24px; }
.pd__media .vitrine { aspect-ratio: auto; height: calc(100vh - var(--hdr) - 48px); min-height: 520px; max-height: 900px; cursor: zoom-in; }
.pd__media .vitrine img { max-width: 58%; max-height: 74%; }
.pd__info { padding: calc(var(--hdr) + clamp(32px, 4vw, 60px)) var(--gutter) 64px; }
.pd__title { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 4.2vw, 68px); line-height: 1; letter-spacing: -0.025em; margin: 14px 0 16px; }
.pd__ref { color: var(--mute); font-size: 15px; }
.pd__price { font-size: clamp(28px, 2.4vw, 36px); margin: 32px 0 6px; }
.pd__note { font-size: 13px; color: var(--mute); }
.pd__actions { display: grid; gap: 10px; margin-top: 30px; }
.pd__actions-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .pd__actions-2 { grid-template-columns: 1fr; } }
.perks { list-style: none; margin: 34px 0 0; padding: 0; border-top: 1px solid var(--line); }
.perks li { display: flex; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.perks svg { width: 20px; height: 20px; stroke: var(--champagne); fill: none; stroke-width: 1.2; flex: none; }
.specs { margin: 44px 0 0; }
.specs dl { margin: 18px 0 0; display: grid; grid-template-columns: minmax(120px, 34%) 1fr; }
.specs dt, .specs dd { margin: 0; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.specs dt { color: var(--mute); }
.pd__summary { margin: 44px 0 0; font-size: 18px; line-height: 1.5; letter-spacing: -0.01em; }
@media (max-width: 1000px) {
  .pd { grid-template-columns: 1fr; }
  .pd__media { border-right: 0; border-bottom: 1px solid var(--line); }
  .pd__media-inner { position: static; padding-top: calc(var(--hdr) + 16px); }
  .pd__info { padding-top: 36px; }
  .pd__media .vitrine { height: auto; min-height: 0; aspect-ratio: 1; }
}

.lightbox {
  position: fixed; inset: 0; z-index: 150; display: grid; place-items: center;
  background: radial-gradient(80% 80% at 50% 45%, #faf7f1, var(--ivory-2));
  cursor: zoom-out; opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-height: 90vh; max-width: 90vw; mix-blend-mode: multiply; transform: scale(0.94); transition: transform 0.8s var(--ease); }
.lightbox.is-open img { transform: none; }
.lightbox button { position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--ivory); font-size: 22px; }

/* ---------- Forms ---------- */
.form-layout { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); border-top: 1px solid var(--line); }
.form-layout__aside { padding: clamp(40px, 5vw, 72px) var(--gutter); border-right: 1px solid var(--line); }
.form-layout__aside-inner { position: sticky; top: calc(var(--hdr) + 40px); display: grid; gap: 22px; }
.form-layout__aside p { margin: 0; color: var(--mute); }
.form-layout__main { padding: clamp(40px, 5vw, 72px) var(--gutter); }
@media (max-width: 1000px) { .form-layout { grid-template-columns: 1fr; } .form-layout__aside { border-right: 0; border-bottom: 1px solid var(--line); } }

.form { display: grid; gap: 34px; }
.fieldset { border: 0; margin: 0; padding: 0; display: grid; gap: 24px 28px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.fieldset legend { grid-column: 1 / -1; margin-bottom: 8px; padding: 0; display: flex; gap: 14px; align-items: baseline; width: 100%; }
.fieldset legend .step__n { font-size: 30px; }
.fieldset legend strong { font-family: var(--serif); font-weight: 500; font-size: 26px; letter-spacing: -0.01em; }
.field { display: grid; gap: 8px; min-width: 0; align-content: start; }
.field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .fieldset { grid-template-columns: 1fr; } }
.field > label, .field > .field__label { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); }
.field .req { color: var(--champagne); }
.input, .textarea, .field select {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0;
  padding: 10px 0 12px; font-size: 17px; color: var(--ivory); outline: none;
  transition: border-color 0.3s;
}
.field select { appearance: none; -webkit-appearance: none; background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%23f3eee4' stroke-opacity='.6'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E") right 4px center no-repeat; padding-right: 24px; }
.field select option { background: var(--ink-2); }
.input::placeholder, .textarea::placeholder { color: var(--faint); }
.input:focus, .textarea:focus, .field select:focus { border-color: var(--champagne); }
.textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.input[type="date"] { color-scheme: dark; font-family: var(--sans); font-size: 16px; }
.field.is-invalid .input, .field.is-invalid .textarea, .field.is-invalid select { border-color: var(--danger); }
.field__err { font-size: 13px; color: var(--danger); min-height: 0; }
.field__hint { font-size: 13px; color: var(--faint); }
.radios { display: flex; flex-wrap: wrap; gap: 8px; }
.radios label { position: relative; }
.radios input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radios span { display: inline-block; padding: 10px 16px; border-radius: var(--radius-pill); box-shadow: inset 0 0 0 1px var(--line-strong); font-size: 14px; color: var(--mute); transition: all 0.3s; }
.radios input:checked + span { background: var(--ivory); color: var(--ink); box-shadow: none; }
.radios input:focus-visible + span { outline: 1px solid var(--champagne); outline-offset: 3px; }
.drop {
  display: grid; place-items: center; text-align: center; gap: 8px; padding: 34px 20px; cursor: pointer;
  border: 1px dashed var(--line-strong); color: var(--mute); transition: border-color 0.3s, background-color 0.3s;
}
.drop:hover, .drop.is-over { border-color: var(--champagne); background: rgba(201, 169, 110, 0.05); }
.field > label.drop { text-transform: none; letter-spacing: 0; font-size: 15px; font-weight: 400; }
.drop strong { color: var(--ivory); font-weight: 500; }
.thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.thumbs figure { margin: 0; position: relative; width: 76px; height: 76px; overflow: hidden; background: var(--ink-2); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.thumbs button { position: absolute; top: 3px; right: 3px; width: 20px; height: 20px; border-radius: 50%; background: rgba(11,11,12,0.85); font-size: 12px; line-height: 20px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form__foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 10px; border-top: 1px solid var(--line); }
.form__foot p { margin: 0; font-size: 13px; color: var(--faint); max-width: 44ch; }
.form-status { font-size: 14px; }
.form-status.is-error { color: var(--danger); }
.done { display: grid; gap: 22px; padding: 40px 0; }
.done p { margin: 0; color: var(--mute); max-width: 52ch; }

.contact-card { display: grid; gap: 4px; padding: 24px 0 0; border-top: 1px solid var(--line); font-size: 15px; }
.contact-card strong { font-weight: 500; }
.contact-card span { color: var(--mute); }

/* ---------- Cart ---------- */
.cart { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); border-top: 1px solid var(--line); }
.cart__items { border-right: 1px solid var(--line); }
.cline { display: grid; grid-template-columns: 180px 1fr auto; gap: 28px; padding: 28px var(--gutter); border-bottom: 1px solid var(--line); align-items: center; }
.cline .vitrine { aspect-ratio: 1; }
.cline__title { font-family: var(--serif); font-weight: 500; font-size: 26px; line-height: 1.05; letter-spacing: -0.01em; margin: 6px 0 8px; }
.cline__meta { color: var(--mute); font-size: 13px; }
.cline__side { text-align: right; display: grid; gap: 12px; justify-items: end; }
.cline__remove { font-size: 13px; color: var(--mute); }
.cline__remove:hover { color: var(--danger); }
@media (max-width: 640px) { .cline { grid-template-columns: 96px 1fr; } .cline__side { grid-column: 1 / -1; grid-template-columns: auto auto; justify-content: space-between; align-items: center; } }
.cart__summary { padding: 36px var(--gutter) 48px; }
.cart__summary-inner { position: sticky; top: calc(var(--hdr) + 30px); display: grid; gap: 22px; }
.sum-row { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; }
.sum-row span:first-child { color: var(--mute); }
.sum-row--total { font-size: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.sum-row--total span:first-child { color: var(--ivory); }
.paytabs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.paytab { background: var(--ink); padding: 16px; text-align: left; display: grid; gap: 4px; transition: background-color 0.3s; }
.paytab strong { font-weight: 500; font-size: 15px; }
.paytab span { font-size: 12px; color: var(--mute); }
.paytab[aria-selected="true"] { background: var(--ink-3); box-shadow: inset 0 -2px 0 var(--champagne); }
.paytab[disabled] { opacity: 0.4; cursor: not-allowed; }
.cart__empty { padding: 80px var(--gutter); display: grid; gap: 24px; justify-items: start; }
.note { font-size: 13px; color: var(--mute); line-height: 1.5; }
.note--gold { color: var(--champagne); }
@media (max-width: 1000px) { .cart { grid-template-columns: 1fr; } .cart__items { border-right: 0; } }

/* ---------- Drawer (added to cart) ---------- */
.drawer {
  position: fixed; top: calc(var(--hdr) + 12px); right: 12px; z-index: 95;
  width: min(400px, calc(100vw - 24px));
  background: var(--ink-2); border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  display: grid; grid-template-columns: 96px 1fr; gap: 16px; padding: 16px;
  transform: translateY(-12px); opacity: 0; visibility: hidden;
  transition: transform 0.6s var(--ease), opacity 0.4s, visibility 0.4s;
}
.drawer.is-open { transform: none; opacity: 1; visibility: visible; }
.drawer .vitrine { aspect-ratio: 1; }
.drawer__title { font-family: var(--serif); font-weight: 500; font-size: 20px; line-height: 1.1; margin: 4px 0 6px; }
.drawer__actions { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.drawer__actions .btn { min-height: 44px; padding: 0 16px; font-size: 13px; justify-content: center; }

/* ---------- Policies (Vita legal page) ---------- */
.legal { display: grid; grid-template-columns: 300px minmax(0, 1fr); border-top: 1px solid var(--line); }
.legal__nav { border-right: 1px solid var(--line); padding: 40px var(--gutter); }
.legal__nav ul { position: sticky; top: calc(var(--hdr) + 40px); list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.legal__nav a { display: block; padding: 9px 0; font-size: 15px; color: var(--mute); border-bottom: 1px solid transparent; transition: color 0.3s; }
.legal__nav a:hover, .legal__nav a.is-active { color: var(--ivory); }
.legal__nav a.is-active::before { content: "— "; color: var(--champagne); }
.legal__body { padding: 40px var(--gutter) 100px; max-width: 900px; }
.legal__doc { padding-block: 40px 60px; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--hdr) + 20px); }
.legal__doc:first-child { padding-top: 0; }
.legal__doc h2 { margin-bottom: 30px; }
.legal__doc h3 { font-size: 17px; font-weight: 500; margin: 32px 0 10px; letter-spacing: -0.01em; }
.legal__doc p, .legal__doc li { color: var(--mute); font-size: 15px; line-height: 1.7; }
.legal__doc p { margin: 0 0 14px; }
.legal__doc ul { padding-left: 20px; margin: 0 0 14px; }
@media (max-width: 900px) { .legal { grid-template-columns: 1fr; } .legal__nav { border-right: 0; border-bottom: 1px solid var(--line); } .legal__nav ul { position: static; grid-template-columns: 1fr 1fr; } }

/* ---------- Prose pages ---------- */
.prose { max-width: 760px; }
.prose p { font-size: 18px; line-height: 1.65; color: var(--mute); margin: 0 0 22px; }
.prose p:first-child { color: var(--ivory); font-size: clamp(20px, 1.7vw, 24px); line-height: 1.45; letter-spacing: -0.01em; }
.ordered { counter-reset: n; list-style: none; padding: 0; margin: 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.ordered li { counter-increment: n; display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.ordered li::before { content: counter(n, decimal-leading-zero); font-family: var(--serif); font-weight: 500; font-size: 30px; line-height: 1; }
.ordered strong { display: block; font-weight: 500; margin-bottom: 6px; }
.ordered span { color: var(--mute); }

.banner-img { position: relative; overflow: hidden; }
.banner-img .frame { aspect-ratio: 21 / 7; }
@media (max-width: 700px) { .banner-img .frame { aspect-ratio: 4 / 3; } }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mt-s { margin-top: 16px; } .mt-m { margin-top: 32px; } .mt-l { margin-top: 64px; }
.center { text-align: center; }
.gold { color: var(--champagne); }
.row-gap { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hide-sm { } @media (max-width: 700px) { .hide-sm { display: none !important; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .marquee { animation: none; }
}

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
/* Hero content waits for the intro animation (class set by an inline head
   script; removed again after 4s if the motion scripts never arrive). */
.motion .hero__inner { opacity: 0; }
.split-line { padding-bottom: 0.06em; margin-bottom: -0.06em; }
.fcard > a { display: block; min-height: 100%; }
.fcard > a .vitrine { height: 100%; }

/* ==========================================================================
   Signature layer — texture, cursor, transitions and editorial sections.
   Everything here degrades to a plain static page without JS, and is muted
   under prefers-reduced-motion (see the block at the end of this file).
   ========================================================================== */

/* ---------- Film grain ---------- */
/* One fixed, very low-opacity noise plate over the whole page: it warms the
   flat blacks the way film stock does. Pointer-events off so it never
   intercepts clicks. */
body::after {
  content: ""; position: fixed; inset: -50%; z-index: 120; pointer-events: none;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -4%); }
  60% { transform: translate(-3%, -3%); }
  80% { transform: translate(4%, 2%); }
}

/* ---------- Spotlight + glint on watch plates ---------- */
/* A soft champagne pool of light behind each vitrine, as if the piece were
   lit in a case, and a glint that sweeps across the crystal on hover. */
.vitrine { box-shadow: 0 50px 120px -60px rgba(201, 169, 110, 0.5); }
.vitrine::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.55) 48%, rgba(255, 255, 255, 0.1) 56%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 1.1s var(--ease);
  mix-blend-mode: screen;
}
.pcard:hover .vitrine::before,
.fcard:hover .vitrine::before,
.rail__item:hover .vitrine::before,
.cline:hover .vitrine::before { transform: translateX(120%); }

/* ---------- "View" cursor over watches ---------- */
/* The disc only exists while a watch is hovered; the system pointer is
   untouched anywhere else on the page. */
[data-cursor-label], [data-cursor-label] * { cursor: none; }
.cursor {
  position: fixed; top: 0; left: 0; z-index: 130; pointer-events: none;
  width: 92px; height: 92px; margin: -46px 0 0 -46px; border-radius: 50%;
  background: var(--champagne); color: var(--ink);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0; transform-origin: 50% 50%; scale: 0.4;
  transition: opacity 0.35s var(--ease), scale 0.45s var(--ease);
}
.cursor.is-on { opacity: 1; scale: 1; }
.cursor span { white-space: nowrap; }

/* ---------- Page transition curtain ---------- */
.curtain {
  position: fixed; inset: 0; z-index: 140; pointer-events: none;
  background: var(--ink);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
}
.curtain img { width: 54px; opacity: 0; }

/* ---------- Full-bleed macro break ---------- */
.break { position: relative; overflow: hidden; }
.break .frame { aspect-ratio: 21 / 7; }
.break__cap {
  position: absolute; left: var(--gutter); bottom: 34px; z-index: 2;
  max-width: 30ch; color: var(--ivory);
  font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2.3vw, 34px); line-height: 1.12;
  letter-spacing: -0.015em; text-shadow: 0 6px 40px rgba(0, 0, 0, 0.6);
}
.break__cap em { font-style: italic; color: var(--champagne); }
.break::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,11,12,0.5) 0%, rgba(11,11,12,0.05) 35%, rgba(11,11,12,0.78) 100%);
}
@media (max-width: 700px) { .break .frame { aspect-ratio: 3 / 4; } }

/* ---------- Horizontal rail (vertical scroll drives it sideways) ---------- */
/* The pinned section must fit the viewport, so the rail sizes off vh. */
.rail-section { position: relative; }
@media (min-width: 900px) {
  .rail-section { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; }
  .rail-section > .wrap { padding-block: clamp(28px, 4vh, 60px); }
}
.rail-viewport { overflow: hidden; }
.rail {
  display: flex; gap: clamp(20px, 2.4vw, 40px);
  padding-inline: var(--gutter);
  will-change: transform;
}
.rail__item { flex: 0 0 clamp(260px, 26vw, 380px); }
.rail__item .vitrine { aspect-ratio: 4 / 5; }
@media (min-width: 900px) {
  .rail__item .vitrine { aspect-ratio: auto; height: min(52vh, 460px); }
}
.rail__row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-top: clamp(14px, 2vh, 22px); }
.rail__title { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 2vw, 30px); line-height: 1.05; letter-spacing: -0.015em; margin: 6px 0 8px; }
.rail__meta { font-size: 13px; color: var(--mute); }
.rail__end {
  flex: 0 0 clamp(260px, 26vw, 360px); align-self: center;
  display: grid; gap: 20px; justify-items: start;
}
.rail__end p { margin: 0; color: var(--mute); }
.rail__progress { position: relative; height: 1px; background: var(--line); margin: clamp(28px, 4vh, 56px) var(--gutter) clamp(8px, 2vh, 20px); }
.rail__progress i { position: absolute; inset: 0; background: var(--champagne); transform: scaleX(0); transform-origin: left; }
/* No-JS / touch fallback: a normal swipeable row. */
.rail-viewport.is-static { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.rail-viewport.is-static::-webkit-scrollbar { display: none; }
.rail-viewport.is-static .rail__item { scroll-snap-align: center; }

/* ---------- Sticky editorial column ---------- */
.stick { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(24px, 4vw, 80px); }
.stick__aside { position: sticky; top: calc(var(--hdr) + 60px); align-self: start; display: grid; gap: 26px; justify-items: start; height: fit-content; }
.stick__list { display: grid; }
.stick__step {
  display: grid; grid-template-columns: 90px 1fr; gap: 24px;
  padding: clamp(36px, 5vw, 64px) 0; border-top: 1px solid var(--line);
}
.stick__step:last-child { border-bottom: 1px solid var(--line); }
.stick__n { font-family: var(--serif); font-weight: 500; font-size: clamp(38px, 4vw, 62px); line-height: 0.9; color: var(--champagne); }
.stick__step h3 { margin: 0 0 10px; font-size: clamp(20px, 1.7vw, 26px); font-weight: 500; letter-spacing: -0.015em; }
.stick__step p { margin: 0; color: var(--mute); max-width: 46ch; }
@media (max-width: 900px) {
  .stick { grid-template-columns: 1fr; }
  .stick__aside { position: static; }
  .stick__step { grid-template-columns: 56px 1fr; gap: 16px; }
}

/* ---------- Oversized maison marquee ---------- */
.maisons { overflow: hidden; padding-block: clamp(20px, 2.5vw, 40px); }
.maisons .marquee { animation-duration: 64s; }
.maisons .marquee__group { align-items: center; }
.maisons .maison {
  display: inline-flex; align-items: center; gap: clamp(28px, 3.5vw, 60px);
  padding-right: clamp(28px, 3.5vw, 60px);
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(48px, 7.5vw, 124px); line-height: 1.16; letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1.2px rgba(243, 238, 228, 0.62);
  white-space: nowrap;
  transition: color 0.6s var(--ease), -webkit-text-stroke-color 0.6s var(--ease);
}
.maisons .maison::after {
  content: ""; width: clamp(10px, 1vw, 18px); height: clamp(10px, 1vw, 18px); flex: none;
  background: var(--champagne);
  -webkit-mask: url("../img/brand/mark.png") center / contain no-repeat; mask: url("../img/brand/mark.png") center / contain no-repeat;
}
a.maison:hover { color: var(--champagne); -webkit-text-stroke-color: transparent; }

/* ---------- Editorial offsets ---------- */
.offset-up { margin-top: 0; }
.offset-down { margin-top: clamp(40px, 9vw, 160px); }
@media (max-width: 900px) { .offset-up, .offset-down { margin-top: 0; } }

/* ---------- Menu overlay media panel ---------- */
.mmenu__inner { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; width: 100%; }
.mmenu__media { display: none; }
@media (min-width: 720px) {
  .mmenu__inner { grid-template-columns: 1.15fr 0.85fr; gap: 60px; }
  .mmenu__media { display: block; position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink-2); }
  .mmenu__media img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transform: scale(1.06); transition: opacity 0.8s var(--ease), transform 1.2s var(--ease);
  }
  .mmenu__media img.is-on { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  body::after { animation: none; }
  .cursor, .curtain { display: none !important; }
  .vitrine::before { display: none; }
}
