/* ==========================================================================
   HORAE — Watch House
   ========================================================================== */

:root {
  --paper: #eeeae2;
  --paper-2: #e6e1d7;
  --paper-3: #dcd6ca;
  --ink: #121211;
  --ink-2: #2a2926;
  --muted: #6e6a62;
  --line: rgba(18, 18, 17, 0.12);
  --night: #0d0e0d;
  --night-2: #151715;
  --night-line: rgba(239, 234, 226, 0.12);
  --cream: #efeae2;
  --green: #1c4535;
  --brass: #c9a86a;
  --red: #b4452f;

  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --gutter: clamp(16px, 4vw, 56px);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --nav-h: 76px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }

img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select { font: inherit; color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
em { font-style: italic; }
::selection { background: var(--brass); color: var(--ink); }

:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 6px; }

.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;
}
.mono { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(96px, 14vw, 180px) 0; }

/* Grain overlay for tactile depth */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 200;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.eyebrow .idx {
  display: inline-grid; place-items: center;
  height: 22px; padding: 0 8px; border-radius: 99px;
  border: 1px solid currentColor; font-size: 11px;
}
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 6.4vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.h2 em { color: var(--green); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--paper);
  position: relative;
  display: inline-flex; align-items: center; gap: 14px;
  height: 56px; padding: 0 8px 0 26px;
  border-radius: 99px;
  background: var(--bg); color: var(--fg);
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  overflow: hidden; isolation: isolate;
  transition: color 0.4s, box-shadow 0.5s var(--ease);
}
.btn::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: var(--brass);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--ink); }
.btn__label { position: relative; }
.btn__icon {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--fg); color: var(--bg);
  transition: transform 0.5s var(--ease), background 0.3s, color 0.3s;
}
.btn__icon svg { width: 18px; height: 18px; }
.btn:hover .btn__icon { transform: rotate(-45deg); background: var(--ink); color: var(--paper); }
.btn--light { --bg: var(--cream); --fg: var(--ink); }
.btn--light .btn__icon { background: var(--ink); color: var(--cream); }
.btn--dark { --bg: var(--ink); --fg: var(--paper); }
.btn--block { width: 100%; justify-content: space-between; }
.btn--grow { flex: 1; justify-content: space-between; }
.btn:not(:has(.btn__icon)) { padding: 0 26px; }

.link-arrow {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; padding: 6px 0;
}
.link-arrow::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor;
  transform-origin: right; transform: scaleX(0.35);
  transition: transform 0.6s var(--ease);
}
.link-arrow:hover::after { transform: scaleX(1); transform-origin: left; }

.icon-btn {
  position: relative;
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  transition: background 0.3s, transform 0.4s var(--ease);
}
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn:hover { background: rgba(127, 127, 127, 0.14); }
.icon-btn:active { transform: scale(0.9); }
.icon-btn--outline { border: 1px solid var(--line); width: 56px; height: 56px; flex: none; }
.icon-btn.is-on { --heart-fill: var(--red); color: var(--red); }

.badge {
  position: absolute; top: 4px; right: 2px;
  min-width: 18px; height: 18px; padding: 0 5px;
  display: grid; place-items: center;
  border-radius: 99px;
  background: var(--brass); color: var(--ink);
  font-size: 10px; font-weight: 700; line-height: 1;
  transform: scale(0);
  transition: transform 0.45s var(--ease);
}
.badge.is-visible { transform: scale(1); }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 300;
  background: var(--night); color: var(--cream);
  display: grid; place-items: center;
}
.loader__center { position: relative; width: 120px; height: 120px; }
.loader__ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.loader__ring circle { fill: none; stroke-width: 1.2; }
.loader__track { stroke: var(--night-line); }
.loader__progress { stroke: var(--brass); stroke-dasharray: 339.3; stroke-dashoffset: 339.3; stroke-linecap: round; }
.loader__mark { position: absolute; inset: 30px; width: 60px; height: 60px; color: var(--cream); }
.loader__foot {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: 32px;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(239, 234, 226, 0.55);
}
.loader__count { color: var(--cream); }
.no-js .loader { display: none; }

/* ---------- Cursor ---------- */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  html.has-cursor, html.has-cursor a, html.has-cursor button, html.has-cursor [data-cursor], html.has-cursor .card__media { cursor: none; }
  html.has-cursor input, html.has-cursor select { cursor: auto; }
  .cursor { display: block; position: fixed; top: 0; left: 0; z-index: 250; pointer-events: none; transition: opacity 0.3s; }
  .cursor__dot, .cursor__ring { position: fixed; top: 0; left: 0; border-radius: 50%; }
  .cursor__dot {
    width: 6px; height: 6px; margin: -3px 0 0 -3px;
    background: #fff; mix-blend-mode: difference;
    transition: opacity 0.3s;
  }
  .cursor__ring {
    width: 38px; height: 38px; margin: -19px 0 0 -19px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    mix-blend-mode: difference;
    display: grid; place-items: center;
    transition: width 0.45s var(--ease), height 0.45s var(--ease), margin 0.45s var(--ease),
      background 0.35s, border-color 0.35s;
  }
  .cursor__label {
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink); opacity: 0; transform: scale(0.6);
    transition: opacity 0.3s, transform 0.45s var(--ease);
  }
  .cursor.is-hover .cursor__ring {
    width: 84px; height: 84px; margin: -42px 0 0 -42px;
    background: var(--brass); border-color: var(--brass); mix-blend-mode: normal;
  }
  .cursor.is-hover .cursor__label { opacity: 1; transform: scale(1); }
  .cursor.is-hover .cursor__dot { opacity: 0; }
  .cursor.is-ghost .cursor__ring { background: rgba(255, 255, 255, 0.06); border-color: rgba(239, 234, 226, 0.6); backdrop-filter: blur(2px); }
  .cursor.is-ghost .cursor__label { color: var(--cream); }
  .cursor.is-hidden { opacity: 0; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 var(--gutter);
  color: var(--ink);
  transition: color 0.4s, transform 0.6s var(--ease);
}
.nav::before {
  content: '';
  position: absolute; inset: 10px calc(var(--gutter) - 14px);
  border-radius: 99px;
  background: rgba(238, 234, 226, 0.72);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid var(--line);
  opacity: 0; transform: scale(0.98);
  transition: opacity 0.4s, transform 0.5s var(--ease), background 0.4s, border-color 0.4s;
  z-index: -1;
}
.nav.is-scrolled::before { opacity: 1; transform: scale(1); }
.nav.is-hidden { transform: translateY(-110%); }
.nav.on-dark { color: var(--cream); }
.nav.on-dark::before { background: rgba(20, 22, 20, 0.6); border-color: var(--night-line); }
.nav.menu-open { color: var(--cream); transform: none; }
.nav.menu-open::before { opacity: 0; }

.brand { display: inline-flex; align-items: center; gap: 12px; justify-self: start; }
.brand__mark { width: 34px; height: 34px; transition: transform 0.9s var(--ease); }
.brand:hover .brand__mark { transform: rotate(360deg); }
.brand__word { font-family: var(--serif); font-size: 26px; letter-spacing: 0.22em; line-height: 1; padding-top: 2px; }

.nav__links { display: flex; gap: 6px; }
.nav__link {
  position: relative; display: block;
  padding: 8px 14px; font-size: 14px; font-weight: 500;
  overflow: hidden; height: 38px;
}
.nav__link span { position: relative; display: block; line-height: 22px; transition: transform 0.5s var(--ease); }
.nav__link span::after {
  content: attr(data-text);
  position: absolute; left: 0; top: 100%;
  font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 22px;
  padding-top: 8px;
}
.nav__link:hover span { transform: translateY(calc(-100% - 8px)); }

.nav__actions { display: flex; align-items: center; gap: 4px; justify-self: end; }

.burger { display: none; width: 44px; height: 44px; position: relative; }
.burger span {
  position: absolute; left: 12px; right: 12px; height: 1.5px; background: currentColor;
  transition: transform 0.5s var(--ease), top 0.5s var(--ease);
}
.burger span:first-child { top: 18px; }
.burger span:last-child { top: 25px; }
.burger[aria-expanded='true'] span:first-child { top: 21.5px; transform: rotate(45deg); }
.burger[aria-expanded='true'] span:last-child { top: 21.5px; transform: rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--night); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 20px) var(--gutter) 32px;
  clip-path: circle(0% at calc(100% - 40px) 38px);
  visibility: hidden;
}
.menu__links a {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--night-line);
  font-family: var(--serif); font-size: clamp(44px, 12vw, 72px); line-height: 1;
}
.menu__links small { font-family: var(--mono); font-size: 12px; color: var(--brass); }
.menu__foot { margin-top: auto; color: rgba(239, 234, 226, 0.5); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  background: radial-gradient(120% 90% at 70% 40%, #1a211d 0%, var(--night) 60%);
  color: var(--cream);
  display: flex; flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
.hero__glow {
  position: absolute; z-index: -1;
  width: 70vmax; height: 70vmax; right: -18vmax; top: -12vmax;
  background: radial-gradient(circle, rgba(36, 88, 67, 0.55), transparent 62%);
  filter: blur(20px);
  animation: drift 14s ease-in-out infinite alternate;
}
.hero__grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(var(--night-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--night-line) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 70% 60% at 65% 45%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 65% 45%, #000 20%, transparent 75%);
  opacity: 0.45;
}
@keyframes drift { to { transform: translate(-8vmax, 6vmax) scale(1.1); } }

.hero__inner {
  flex: 1;
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 24px;
  padding-top: calc(var(--nav-h) + 24px);
}
.hero__eyebrow { color: rgba(239, 234, 226, 0.65); }
.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brass);
  box-shadow: 0 0 0 0 rgba(201, 168, 106, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(201, 168, 106, 0); } 100% { box-shadow: 0 0 0 0 rgba(201, 168, 106, 0); } }

.hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(64px, 9.6vw, 164px);
  line-height: 0.9; letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.hero__title em { color: var(--brass); padding-right: 0.04em; }
.line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line__in { display: inline-block; will-change: transform; }

.hero__lede { max-width: 440px; color: rgba(239, 234, 226, 0.7); font-size: 17px; margin-bottom: 40px; }
.hero__ctas { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.hero__stage {
  position: relative;
  height: min(76svh, 760px);
  min-height: 420px;
}
.stage__halo {
  position: absolute; inset: 12% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.18), transparent 65%);
  filter: blur(10px);
}
#watch3d { position: absolute; inset: 0; width: 100%; height: 100%; touch-action: pan-y; }
.stage__fallback {
  display: none;
  position: absolute; left: 50%; top: 50%; width: 300px; transform: translate(-50%, -50%);
  border-radius: 50%;
}
.no-webgl #watch3d, .no-webgl .stage__hint, .no-webgl .dial-picker { display: none; }
.no-webgl .stage__fallback { display: block; }

.stage__hint {
  position: absolute; right: 0; top: 8%;
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
  color: rgba(239, 234, 226, 0.5); font-size: 11px;
  pointer-events: none;
}
.drag-icon {
  width: 26px; height: 14px; border: 1px solid currentColor; border-radius: 99px; position: relative;
}
.drag-icon::after {
  content: ''; position: absolute; top: 3px; left: 4px; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass); animation: drag 2.4s var(--ease-io) infinite;
}
@keyframes drag { 50% { transform: translateX(10px); } }

.dial-picker {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 8px; border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--night-line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.swatch {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--sw);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12);
  position: relative;
  transition: transform 0.4s var(--ease);
}
.swatch::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid var(--brass); opacity: 0; transform: scale(0.7);
  transition: opacity 0.3s, transform 0.5s var(--ease);
}
.swatch:hover { transform: scale(1.12); }
.swatch.is-active::after { opacity: 1; transform: scale(1); }
.dial-picker__label { min-width: 104px; color: rgba(239, 234, 226, 0.8); font-size: 11px; padding-left: 6px; }

.hero__meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 26px; color: rgba(239, 234, 226, 0.55); font-size: 11px;
}
.hero__meta b { color: var(--cream); font-weight: 500; margin-left: 8px; font-variant-numeric: tabular-nums; }
.scroll-cue {
  width: 22px; height: 36px; border: 1px solid rgba(239, 234, 226, 0.35); border-radius: 99px;
  display: grid; justify-items: center; align-items: start; padding-top: 6px;
}
.scroll-cue span { width: 2px; height: 7px; border-radius: 2px; background: var(--cream); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink); color: var(--cream);
  overflow: hidden; white-space: nowrap;
  padding: 22px 0;
  border-top: 1px solid var(--night-line);
}
.marquee__track { display: inline-flex; align-items: center; gap: 36px; padding-right: 36px; will-change: transform; }
.marquee__track span { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); line-height: 1; }
.marquee__track i { font-style: normal; color: var(--brass); font-size: 18px; }

/* ---------- Section head ---------- */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-head__aside { max-width: 360px; color: var(--muted); }

/* ---------- Toolbar & filters ---------- */
.toolbar {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 14px 0; margin-bottom: 36px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.filters { position: relative; display: flex; gap: 4px; flex-wrap: wrap; }
.filter {
  position: relative; z-index: 1;
  height: 42px; padding: 0 18px; border-radius: 99px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color 0.35s;
}
.filter sup { font-family: var(--mono); font-size: 9px; margin-left: 2px; }
.filter:hover { color: var(--ink); }
.filter.is-active { color: var(--paper); }
.filters__pill {
  position: absolute; z-index: 0; top: 0; left: 0; height: 42px; width: 0;
  border-radius: 99px; background: var(--ink);
}
.sort { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.sort select {
  appearance: none; -webkit-appearance: none;
  height: 42px; padding: 0 40px 0 18px; border-radius: 99px;
  border: 1px solid var(--line); background: transparent; color: var(--ink);
  font-size: 14px; font-weight: 500;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%23121211' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  transition: border-color 0.3s;
}
.sort select:hover { border-color: var(--ink); }

/* ---------- Product grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
}
.card { position: relative; display: flex; flex-direction: column; }
.card.is-hidden { display: none; }
.card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: var(--paper-2);
  overflow: hidden;
  will-change: transform;
  cursor: pointer;
}
.card__media::before {
  /* soft spotlight that follows the pointer */
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 40%), rgba(255, 255, 255, 0.6), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
  mix-blend-mode: soft-light;
}
.card__media:hover::before { opacity: 1; }
.card__media::after {
  /* floor shadow under the watch */
  content: '';
  position: absolute; left: 24%; right: 24%; bottom: 13%; height: 18px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.16), transparent 70%);
  filter: blur(4px);
  transition: transform 0.7s var(--ease), opacity 0.7s;
}
.card__media:hover::after { transform: scaleX(0.8); opacity: 0.6; }
.card__img {
  position: absolute; left: 50%; top: 46%;
  width: min(86%, 300px);
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  transition: transform 0.9s var(--ease);
}
.card__media:hover .card__img { transform: translate(-50%, -54%) scale(1.06) rotate(-4deg); }

.card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  height: 26px; padding: 0 11px; border-radius: 99px;
  display: inline-grid; place-items: center;
  background: var(--paper); border: 1px solid var(--line);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
}
.card__badge[data-b='Limited'] { background: var(--ink); color: var(--brass); border-color: var(--ink); }
.card__badge[data-b='New'] { background: var(--green); color: var(--cream); border-color: var(--green); }

.card__wish {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(238, 234, 226, 0.8);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: color 0.3s;
}
.card__wish svg { width: 19px; height: 19px; transition: transform 0.4s var(--ease); }
.card__wish:hover svg { transform: scale(1.15); }
.card__wish.is-on { --heart-fill: var(--red); color: var(--red); }

.card__quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
  height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 8px 0 18px;
  background: var(--ink); color: var(--paper);
  font-size: 14px; font-weight: 600;
  transform: translateY(calc(100% + 16px));
  transition: transform 0.6s var(--ease), background 0.3s;
}
.card__quick span:last-child {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.5s var(--ease);
}
.card__quick svg { width: 16px; height: 16px; }
.card__media:hover .card__quick, .card__quick:focus-visible { transform: translateY(0); }
.card__quick:hover { background: var(--green); }
.card__quick:hover span:last-child { transform: rotate(90deg); }
.card__quick.is-added { background: var(--green); }

.card__info {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
  padding: 18px 4px 4px;
}
.card__brand { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.card__name { font-family: var(--serif); font-weight: 400; font-size: 24px; line-height: 1.1; }
.card__open { text-align: left; line-height: inherit; background-image: linear-gradient(currentColor, currentColor); background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size 0.6s var(--ease); }
.card__open:hover { background-size: 100% 1px; }
.card__price { font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; padding-top: 18px; }
.card__meta { display: flex; align-items: center; gap: 8px; padding: 6px 4px 0; font-size: 13px; color: var(--muted); }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--c); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15); flex: none; }

.card--editorial .card__media {
  background: var(--green); color: var(--cream);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 26px;
}
.card--editorial .card__media::after { display: none; }
.card--editorial .brand__mark { width: 44px; height: 44px; color: var(--brass); position: relative; }
.card--editorial h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 2.5vw, 40px); line-height: 1.02; }
.card--editorial h3 em { color: var(--brass); }
.card--editorial p { font-size: 14px; color: rgba(239, 234, 226, 0.7); margin-top: 14px; }
.card--editorial .link-arrow { margin-top: 18px; color: var(--cream); }
.card--editorial .deco-ring {
  position: absolute; right: -30%; top: -18%; width: 90%; aspect-ratio: 1;
  border: 1px solid rgba(201, 168, 106, 0.35); border-radius: 50%;
  animation: spin 40s linear infinite;
}
.card--editorial .deco-ring::before {
  content: ''; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--brass);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Anatomy ---------- */
.anatomy {
  background: var(--paper-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.anatomy__pin {
  min-height: 100svh;
  display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 40px;
  padding-top: var(--nav-h); padding-bottom: 40px;
}
.steps { position: relative; margin-top: 44px; min-height: 170px; }
.step { position: absolute; inset: 0 0 auto 0; max-width: 420px; }
.step h3 { font-family: var(--serif); font-weight: 400; font-size: 36px; line-height: 1.1; margin: 10px 0 10px; }
.step p { color: var(--muted); }
.step__n { color: var(--green); }
.step:not(.is-active) { opacity: 0; visibility: hidden; }
.progress { display: flex; gap: 6px; margin: 12px 0 36px; max-width: 420px; }
.progress span { flex: 1; height: 2px; background: var(--line); position: relative; overflow: hidden; border-radius: 2px; }
.progress span::after { content: ''; position: absolute; inset: 0; background: var(--ink); transform: scaleX(var(--p, 0)); transform-origin: left; }

.anatomy__stage { position: relative; aspect-ratio: 1; width: min(100%, 620px); justify-self: center; display: grid; place-items: center; }
.bezel-ring { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--ink); }
.anatomy__img { position: relative; width: 58%; aspect-ratio: 1; background: var(--paper-2); isolation: isolate; }
.anatomy__img img { width: 100%; height: 100%; mix-blend-mode: multiply; }
.pin {
  position: absolute; left: var(--x); top: var(--y);
  width: 34px; height: 34px; margin: -17px 0 0 -17px;
  display: grid; place-items: center;
}
.pin span {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--ink);
  transition: transform 0.5s var(--ease), background 0.3s;
}
.pin::before {
  content: ''; position: absolute; inset: 4px; border-radius: 50%;
  border: 1px solid var(--ink); opacity: 0;
}
.pin.is-active span { background: var(--brass); transform: scale(1.3); }
.pin.is-active::before { animation: ripple 1.8s var(--ease) infinite; }
@keyframes ripple { 0% { transform: scale(0.6); opacity: 0.8; } 100% { transform: scale(1.8); opacity: 0; } }

/* ---------- Services ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-bottom: clamp(48px, 7vw, 96px);
}
.stat { padding: 30px 24px 30px 0; border-right: 1px solid var(--line); }
.stat + .stat { padding-left: 24px; }
.stat:last-child { border-right: 0; }
.stat__num { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(56px, 7vw, 112px); line-height: 1; font-variant-numeric: tabular-nums; }
.stat span { display: block; margin-top: 10px; color: var(--muted); font-size: 14px; max-width: 180px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.service {
  position: relative;
  padding: 34px 30px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden; isolation: isolate;
  transition: transform 0.6s var(--ease), border-color 0.4s, color 0.4s;
}
.service::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--ink);
  clip-path: circle(0% at var(--mx, 50%) var(--my, 100%));
  transition: clip-path 0.8s var(--ease);
}
.service:hover { color: var(--cream); transform: translateY(-6px); border-color: var(--ink); }
.service:hover::before { clip-path: circle(150% at var(--mx, 50%) var(--my, 100%)); }
.service__icon {
  width: 48px; height: 48px; margin-bottom: 70px;
  fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round;
}
.service:hover .service__icon { stroke: var(--brass); }
.service:hover .service__icon * { animation: draw 1.1s var(--ease) both; }
@keyframes draw { from { stroke-dasharray: 120; stroke-dashoffset: 120; } to { stroke-dasharray: 120; stroke-dashoffset: 0; } }
.service h3 { font-family: var(--serif); font-weight: 400; font-size: 32px; line-height: 1.1; margin-bottom: 12px; }
.service p { color: var(--muted); font-size: 15px; transition: color 0.4s; }
.service:hover p { color: rgba(239, 234, 226, 0.7); }
.service__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; font-size: 14px; font-weight: 600; }
.service__more svg { width: 16px; height: 16px; transition: transform 0.5s var(--ease); }
.service:hover .service__more svg { transform: translateX(6px); }

/* ---------- Letters ---------- */
.letters { background: var(--green); color: var(--cream); padding: clamp(80px, 11vw, 150px) 0; position: relative; overflow: hidden; }
.letters::before {
  content: ''; position: absolute; width: 60vmax; height: 60vmax; left: -20vmax; bottom: -40vmax;
  border-radius: 50%; border: 1px solid rgba(201, 168, 106, 0.25);
}
.letters .eyebrow { color: rgba(239, 234, 226, 0.6); }
.letters .h2 em { color: var(--brass); }
.letters__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; }
.subscribe__field {
  position: relative;
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(239, 234, 226, 0.4);
  transition: border-color 0.3s;
}
.subscribe__field::after {
  content: ''; position: absolute; left: 0; bottom: -1px; height: 1px; width: 100%;
  background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.subscribe__field:focus-within::after { transform: scaleX(1); }
.subscribe input {
  flex: 1; min-width: 0;
  height: 76px; background: transparent; border: 0; outline: none;
  font-family: var(--serif); font-size: clamp(26px, 3vw, 40px);
}
.subscribe input::placeholder { color: rgba(239, 234, 226, 0.35); }
.subscribe__btn {
  position: relative;
  width: 58px; height: 58px; border-radius: 50%; flex: none;
  background: var(--cream); color: var(--ink);
  display: grid; place-items: center;
  transition: transform 0.5s var(--ease), background 0.3s;
}
.subscribe__btn:hover { transform: scale(1.08); background: var(--brass); }
.subscribe__btn svg { position: absolute; width: 22px; height: 22px; transition: transform 0.5s var(--ease), opacity 0.3s; }
.subscribe__btn .s-check { opacity: 0; transform: scale(0.4) rotate(-40deg); }
.subscribe.is-done .s-arrow { opacity: 0; transform: translateX(20px); }
.subscribe.is-done .s-check { opacity: 1; transform: none; }
.subscribe.is-done .subscribe__btn { background: var(--brass); }
.subscribe__msg { margin-top: 16px; color: rgba(239, 234, 226, 0.6); text-transform: none; letter-spacing: 0; font-size: 13px; }
.subscribe.is-error .subscribe__field { border-color: #f0a08f; }
.subscribe.is-error .subscribe__msg { color: #f5b5a7; }

/* ---------- Footer ---------- */
.footer { background: var(--night); color: var(--cream); padding: 90px 0 28px; overflow: hidden; }
.footer__top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; padding-bottom: 60px; }
.footer__brand { max-width: 280px; }
.footer__brand .brand__mark { width: 44px; height: 44px; margin-bottom: 18px; color: var(--brass); }
.footer__brand p { color: rgba(239, 234, 226, 0.55); }
.footer__cols { display: flex; gap: clamp(40px, 7vw, 110px); }
.footer__cols h4 { font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass); margin-bottom: 18px; }
.footer__cols a { display: block; padding: 4px 0; color: rgba(239, 234, 226, 0.8); transition: color 0.3s, transform 0.4s var(--ease); }
.footer__cols a:hover { color: var(--cream); transform: translateX(4px); }
.footer__word {
  display: flex; justify-content: space-between;
  font-family: var(--serif); font-size: clamp(90px, 25vw, 400px); line-height: 0.82;
  letter-spacing: -0.02em;
  border-top: 1px solid var(--night-line);
  padding-top: 30px;
  overflow: hidden;
}
.footer__word span { display: inline-block; }
.footer__word span:nth-child(odd) { font-style: italic; color: var(--brass); }
.footer__bottom { display: flex; justify-content: space-between; margin-top: 30px; color: rgba(239, 234, 226, 0.45); font-size: 11px; }
.footer__bottom b { color: var(--cream); font-weight: 500; font-variant-numeric: tabular-nums; }

/* ---------- Drawer ---------- */
.scrim {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(13, 14, 13, 0.45);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
}
.drawer {
  position: fixed; top: 10px; right: 10px; bottom: 10px; z-index: 160;
  width: min(440px, calc(100vw - 20px));
  background: var(--paper);
  border-radius: 22px;
  display: flex; flex-direction: column;
  transform: translateX(calc(100% + 20px));
  visibility: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 20px 20px 14px 26px; }
.drawer__head h3 { font-family: var(--serif); font-weight: 400; font-size: 32px; }
.drawer__head sup { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.ship { padding: 0 26px 18px; border-bottom: 1px solid var(--line); }
.ship__msg { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.ship__msg b { color: var(--ink); }
.ship__bar { height: 4px; border-radius: 4px; background: var(--paper-3); overflow: hidden; }
.ship__bar span { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--green), var(--brass)); transform-origin: left; transform: scaleX(0); transition: transform 0.9s var(--ease); border-radius: 4px; }

.drawer__items { list-style: none; margin: 0; padding: 8px 26px; flex: 1; overflow-y: auto; overscroll-behavior: contain; }
.item { display: grid; grid-template-columns: 84px 1fr auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.item__img { width: 84px; height: 84px; border-radius: 12px; background: var(--paper-2); display: grid; place-items: center; overflow: hidden; }
.item__img img { width: 92%; mix-blend-mode: multiply; }
.item__brand { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.item__name { font-family: var(--serif); font-size: 20px; line-height: 1.1; margin: 2px 0 10px; }
.item__price { font-weight: 600; font-variant-numeric: tabular-nums; text-align: right; }
.item__remove { display: block; margin-top: 18px; margin-left: auto; font-size: 12px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.item__remove:hover { color: var(--red); }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 99px; height: 36px; }
.qty button { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; transition: background 0.3s; }
.qty button:hover { background: var(--paper-2); }
.qty svg { width: 14px; height: 14px; }
.qty output { min-width: 22px; text-align: center; font-weight: 600; font-variant-numeric: tabular-nums; font-size: 14px; }
.qv__actions .qty { height: 56px; flex: none; }
.qv__actions .qty button { width: 44px; height: 44px; }

.drawer__empty { display: none; flex: 1; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 20px; padding: 26px; color: var(--muted); }
.drawer__empty .brand__mark { width: 64px; height: 64px; color: var(--ink); animation: spin 18s linear infinite; }
.drawer.is-empty .drawer__empty { display: flex; }
.drawer.is-empty .drawer__items, .drawer.is-empty .drawer__foot { display: none; }
.drawer__foot { padding: 20px 26px 26px; border-top: 1px solid var(--line); }
.drawer__row { display: flex; justify-content: space-between; align-items: baseline; font-size: 15px; }
.drawer__row b { font-family: var(--serif); font-weight: 400; font-size: 34px; font-variant-numeric: tabular-nums; }
.drawer__note { color: var(--muted); font-size: 10px; margin: 2px 0 18px; }

/* ---------- Quick view modal ---------- */
.modal { position: fixed; inset: 0; z-index: 170; display: grid; place-items: center; padding: 20px; visibility: hidden; }
.modal__scrim { position: absolute; inset: 0; background: rgba(13, 14, 13, 0.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; }
.modal__panel {
  position: relative;
  width: min(1040px, 100%); max-height: calc(100svh - 40px);
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--paper); border-radius: 26px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
}
.modal__close { position: absolute; top: 14px; right: 14px; z-index: 3; background: var(--paper); }
.qv__media {
  position: relative; background: var(--paper-2);
  display: grid; place-items: center; min-height: 480px; overflow: hidden;
  cursor: zoom-in;
}
.qv__media img { width: min(80%, 360px); mix-blend-mode: multiply; transition: transform 0.5s var(--ease); transform-origin: var(--zx, 50%) var(--zy, 50%); }
.qv__media.is-zoom img { transform: scale(1.7); }
.qv__info { padding: 48px 44px 40px; overflow-y: auto; }
.qv__brand { color: var(--muted); margin-bottom: 10px; }
.qv__name { font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 3.6vw, 52px); line-height: 1; padding-right: 40px; }
.qv__price { font-size: 22px; font-weight: 600; margin: 16px 0 20px; font-variant-numeric: tabular-nums; }
.qv__desc { color: var(--muted); margin-bottom: 26px; }
.qv__specs { display: grid; grid-template-columns: 1fr 1fr; margin: 0 0 30px; border-top: 1px solid var(--line); }
.qv__specs div { padding: 14px 0; border-bottom: 1px solid var(--line); }
.qv__specs div:nth-child(odd) { padding-right: 12px; }
.qv__specs dt { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.qv__specs dd { margin: 4px 0 0; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.qv__actions { display: flex; gap: 10px; align-items: center; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 260;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px 12px 14px; border-radius: 99px;
  background: var(--ink); color: var(--cream); font-size: 14px; font-weight: 500;
  transform: translate(-50%, 140%); opacity: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  max-width: calc(100vw - 32px);
  pointer-events: none;
}
.toast svg { width: 22px; height: 22px; padding: 3px; border-radius: 50%; background: var(--brass); color: var(--ink); flex: none; }

/* Fly-to-bag ghost + heart burst */
.fly { position: fixed; z-index: 240; pointer-events: none; mix-blend-mode: multiply; }
.burst { position: fixed; z-index: 240; pointer-events: none; width: 6px; height: 6px; margin: -3px 0 0 -3px; border-radius: 50%; background: var(--red); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .nav__links { display: none; }
  .burger { display: block; }
  .nav { grid-template-columns: 1fr auto; }
}
@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  .hero__inner { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 28px); gap: 0; }
  .hero__stage { height: 62svh; min-height: 380px; margin-top: -10px; }
  .hero__title { font-size: clamp(58px, 15vw, 110px); }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .anatomy__pin { grid-template-columns: 1fr; padding-top: 90px; padding-bottom: 90px; }
  .anatomy__stage { order: -1; width: min(100%, 460px); }
  .steps { min-height: 0; }
  .step { position: relative; inset: auto; padding: 18px 0; border-top: 1px solid var(--line); }
  .step:not(.is-active) { opacity: 1; visibility: visible; }
  .step h3 { font-size: 28px; margin: 6px 0; }
  .progress { display: none; }
  .anatomy__cta { margin-top: 18px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3) { padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr; }
  .service__icon { margin-bottom: 36px; }
  .letters__inner { grid-template-columns: 1fr; }
  .modal { padding: 0; align-items: end; }
  .modal__panel { grid-template-columns: 1fr; border-radius: 26px 26px 0 0; max-height: 92svh; overflow-y: auto; }
  .qv__media { min-height: 300px; }
  .qv__info { padding: 28px 22px 30px; overflow: visible; }
}
@media (max-width: 560px) {
  .hide-sm { display: none; }
  .brand__word { font-size: 22px; }
  .hero__lede { font-size: 16px; }
  .btn { height: 52px; }
  .grid { gap: 22px 10px; }
  .card__name { font-size: 19px; }
  .card__info { flex-direction: column; gap: 2px; padding-top: 12px; }
  .card__price { padding-top: 0; font-size: 14px; }
  .card__meta { font-size: 12px; }
  .card__img { width: 80%; top: 45%; }
  .card__quick { left: auto; right: 8px; bottom: 8px; width: 40px; height: 40px; padding: 0; border-radius: 50%; justify-content: center; }
  .card__quick span:first-child { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .card__quick span:last-child { background: none; }
  .card__badge { top: 8px; left: 8px; }
  .card__wish { top: 6px; right: 6px; width: 34px; height: 34px; }
  .card--editorial .card__media { padding: 18px; }
  .card--editorial p { display: none; }
  .toolbar { flex-direction: column; align-items: stretch; }
  .filters { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .filter { flex: none; padding: 0 14px; }
  .sort { justify-content: space-between; }
  .stat { padding: 22px 12px 22px 0; }
  .stat + .stat { padding-left: 12px; }
  .footer__cols { gap: 32px; flex-wrap: wrap; }
  .qv__actions { flex-wrap: wrap; }
  .qv__actions .btn--grow { order: 3; flex-basis: 100%; }
}

/* Touch devices: always show quick-add; no hover-only affordances */
@media (hover: none) {
  .card__quick { transform: none; }
}

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