/* ---------------------------------------------------------
   Ledercollection · editorial warm luxury
   Palette: cognac / cream / espresso (oklch)
--------------------------------------------------------- */

:root {
  /* Warmer, slightly darker base. Less "paper white", more "candle-lit room". */
  --cream:      oklch(0.948 0.018 72);
  --parchment:  oklch(0.895 0.028 70);
  --sand:       oklch(0.84  0.038 65);
  /* Deeper cognac, more saturated. Reads as oiled saddle leather. */
  --cognac:     oklch(0.52  0.115 50);
  --cognac-deep:oklch(0.40  0.10  45);
  --saddle:     oklch(0.32  0.075 42);
  --espresso:   oklch(0.18  0.030 38);
  --ink:        oklch(0.11  0.020 36);

  --line:       color-mix(in oklab, var(--espresso) 18%, transparent);
  --line-soft:  color-mix(in oklab, var(--espresso) 10%, transparent);

  --bg:         var(--cream);
  --fg:         var(--ink);
  --muted:      color-mix(in oklab, var(--ink) 62%, var(--cream));
  --ink-soft:   color-mix(in oklab, var(--ink) 78%, var(--cream));

  --serif:      "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --sans:       "Tenor Sans", "Optima", "Futura", system-ui, sans-serif;
  --mono:       "JetBrains Mono", ui-monospace, Menlo, monospace;

  --maxw: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ---------- Display-scaling op grote schermen ---------- */
/* Boven 1600px zijn de clamp()-maxima met vw te dominant;
   we cappen de display-types iets strakker zodat tekst
   rustig voelt op brede monitoren (1920 / 1440p / 4K). */
@media (min-width: 1600px) {
  .hero-cinema-title    { font-size: 82px !important; }
  .hero-title           { font-size: 82px !important; }
  .section-head h2      { font-size: 68px !important; }
  .subhero h1           { font-size: 78px !important; }
  .callout-band h2      { font-size: 72px !important; }
  .newsletter h2        { font-size: 78px !important; }
}
@media (min-width: 1920px) {
  :root { --maxw: 1520px; }
  .hero-cinema-title    { font-size: 88px !important; }
  .section-head h2      { font-size: 72px !important; }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* --- type system ---------------------------------------- */
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--saddle);
}
.label {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
}
.lede {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  color: var(--saddle);
  font-style: italic;
}

em.italic { font-family: var(--serif); font-style: italic; }

/* --- layout primitives ---------------------------------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.divider { height: 1px; background: var(--line); width: 100%; }
.rule-dotted {
  height: 1px;
  background-image: linear-gradient(to right, var(--line) 50%, transparent 0%);
  background-size: 8px 1px; background-repeat: repeat-x;
}

/* --- placeholder imagery --------------------------------
   We have no real product photos: use warm, textured
   placeholders with a clear label explaining what belongs. */
.ph {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 20% 10%,
      color-mix(in oklab, var(--cognac) 35%, transparent),
      transparent 60%),
    radial-gradient(120% 80% at 90% 90%,
      color-mix(in oklab, var(--saddle) 50%, transparent),
      transparent 55%),
    repeating-linear-gradient(
      135deg,
      color-mix(in oklab, var(--saddle) 88%, black) 0 2px,
      color-mix(in oklab, var(--saddle) 80%, black) 2px 5px
    );
  color: color-mix(in oklab, var(--cream) 92%, transparent);
  isolation: isolate;
}
.ph::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 40% at 30% 40%,
      color-mix(in oklab, var(--cream) 25%, transparent),
      transparent 70%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.ph .ph-tag {
  position: absolute;
  left: 16px; top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: color-mix(in oklab, var(--ink) 45%, transparent);
  backdrop-filter: blur(6px);
  color: var(--cream);
  border: 1px solid color-mix(in oklab, var(--cream) 20%, transparent);
  z-index: 2;
}
.ph .ph-note {
  position: absolute;
  left: 16px; bottom: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: color-mix(in oklab, var(--cream) 70%, transparent);
  text-transform: uppercase;
  z-index: 2;
}

/* leather-ish variants (just color shifts) */
.ph.cognac   { filter: none; }
.ph.espresso {
  background:
    radial-gradient(120% 80% at 20% 10%,
      color-mix(in oklab, var(--cognac-deep) 30%, transparent),
      transparent 60%),
    repeating-linear-gradient(
      135deg,
      color-mix(in oklab, var(--espresso) 95%, black) 0 2px,
      color-mix(in oklab, var(--ink) 90%, black) 2px 5px
    );
}
.ph.sand {
  background:
    radial-gradient(120% 80% at 20% 10%,
      color-mix(in oklab, #d8b592 45%, transparent),
      transparent 60%),
    repeating-linear-gradient(
      135deg,
      #b78c62 0 2px,
      #a67a4f 2px 5px
    );
  color: var(--ink);
}
.ph.oxblood {
  background:
    radial-gradient(120% 80% at 20% 10%,
      color-mix(in oklab, #6b2a25 55%, transparent),
      transparent 60%),
    repeating-linear-gradient(
      135deg,
      #4a1e1a 0 2px,
      #2f1512 2px 5px
    );
}

/* --- buttons -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  transition: all .4s cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
}
.btn .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}
.btn-primary {
  background: var(--espresso); color: var(--cream);
  border: 1px solid var(--espresso);
}
.btn-primary:hover { background: var(--cognac-deep); border-color: var(--cognac-deep); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--parchment); }
.btn-cream {
  background: var(--cream); color: var(--ink);
  border: 1px solid transparent;
}
.btn-cream:hover { background: var(--parchment); }

/* --- underline link ------------------------------------- */
.u-link {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 2px;
}
.u-link::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform-origin: left center;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.u-link:hover::after { transform: scaleX(0.4); }

/* --- NAV ------------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter);
  background: color-mix(in oklab, var(--espresso) 92%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid color-mix(in oklab, var(--cognac) 22%, transparent);
  color: var(--cream);
}
.nav a { color: inherit; }
.nav-mark {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--serif);
  font-size: 22px; letter-spacing: -0.01em;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
}
.nav-mark .wordmark {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1;
  white-space: nowrap;
  color: var(--cream);
}
.nav-mark .dotcom {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cognac);
  font-size: 0.85em;
  margin-left: 1px;
}
.nav-mark .and {
  font-family: var(--serif); font-style: italic;
  color: var(--cognac);
}
.nav-mark .sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--cream) 60%, transparent);
  border-left: 1px solid color-mix(in oklab, var(--cream) 22%, transparent);
  padding-left: 12px;
  margin-left: 4px;
  white-space: nowrap;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 13px; letter-spacing: 0.08em;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-links a { opacity: .78; transition: opacity .3s; white-space: nowrap; color: var(--cream); }
.nav-links a:hover { opacity: 1; }
.nav-links a.is-active { opacity: 1; color: var(--cognac); }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-cta .lang-sw {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: color-mix(in oklab, var(--cream) 65%, transparent);
  text-decoration: none;
  padding: 6px 8px;
  transition: color .2s;
}
.nav-cta .lang-sw:hover { color: var(--cream); }

.nav-cta .btn.btn-call {
  border-color: color-mix(in oklab, var(--cream) 28%, transparent);
  color: var(--cream);
  background: transparent;
}
.nav-cta .btn.btn-call:hover {
  background: var(--cognac);
  border-color: var(--cognac);
  color: var(--cream);
}
.nav-cta .btn.btn-primary {
  background: var(--cognac);
  border-color: var(--cognac);
  color: var(--cream);
}
.nav-cta .btn.btn-primary:hover {
  background: var(--cognac-deep);
  border-color: var(--cognac-deep);
}

@media (max-width: 1200px) {
  .nav-links { gap: 20px; font-size: 12px; }
}
@media (max-width: 1400px) {
  .nav-mark .sub { display: none; }
}
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-cta .btn.btn-call { display: none; }
  .nav { padding: 12px 18px; }
  .nav-mark .wordmark { font-size: 18px; }
}
@media (max-width: 480px) {
  .nav { padding: 10px 14px; }
  .nav-mark .wordmark { font-size: 16px; }
  .nav-cta { gap: 6px; }
  .nav-cta .lang-sw { padding: 4px 5px; font-size: 10px; }
  .nav-cta .btn.btn-primary { padding: 8px 14px; font-size: 11px; }
}

/* --- HERO ----------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}
.hero-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 var(--gutter);
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 16px;
}
.hero-meta .dash { width: 24px; height: 1px; background: var(--line); display: inline-block; vertical-align: middle; margin: 0 10px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--line-soft);
  max-height: calc(100vh - 140px);
}
.hero-left {
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(40px, 6vw, 80px) var(--gutter);
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: 1px solid var(--line-soft);
  min-height: 62vh;
  overflow: hidden;
}
.hero-title {
  font-size: clamp(56px, 7.5vw, 108px);
  line-height: 0.94;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line > span {
  display: inline-block;
  animation: rise 1.1s cubic-bezier(.2,.7,.2,1) both;
}
.hero-title .line:nth-child(2) > span { animation-delay: 0.08s; }
.hero-title .line:nth-child(3) > span { animation-delay: 0.16s; }
.hero-title em {
  font-style: italic;
  color: var(--cognac);
  padding-right: 0.1em;
}
.hero-title .amp {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cognac);
  transform: translateY(-0.05em);
  display: inline-block;
}

.hero-footnote {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px dotted var(--line);
  align-items: flex-start;
}
.hero-footnote p {
  margin: 0;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.hero-footnote .index { order: -1; }
.hero-footnote .hero-ctas { margin-top: 4px; }
.hero-footnote .index {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saddle);
}
.hero-ctas { display: flex; gap: 10px; }

.hero-right {
  position: relative;
  min-height: 62vh;
  max-height: 78vh;
  overflow: hidden;
  background: var(--espresso, #1a1410);
  align-self: stretch;
}
/* Hero video sits on top of the img fallback.
   If the video source 404s (e.g. before a Higgsfield clip is uploaded),
   the poster keeps things visible; the img fallback below also stays visible. */
.hero-video {
  z-index: 2;
  background: transparent;
}
.hero-photo-fallback { z-index: 1; }
.hero-right .ph {
  position: absolute; inset: 0;
}

/* Real hero photo */
.hero-figure {
  position: absolute; inset: 0;
  margin: 0;
  overflow: hidden;
}
.hero-photo-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
  animation:
    heroReveal 1400ms cubic-bezier(.2,.7,.15,1) both,
    heroDrift 32s ease-in-out 1400ms infinite alternate;
  will-change: transform, opacity, filter;
  filter: saturate(1.04) contrast(1.05);
}
/* When a real video loads, disable the CSS drift so there is no double motion */
.hero-video ~ .hero-photo-fallback { animation: heroReveal 1400ms cubic-bezier(.2,.7,.15,1) both; }

/* Video element shares the exact same positioning as the img fallback.
   It sits on top (z-index 2). If the video fails, the img below stays visible. */
video.hero-photo.hero-video {
  z-index: 2;
}
.hero-photo-fallback { z-index: 1; }

/* =========================================================
   HERO · CINEMA BANNER
   Full-width, 60vh tall, text overlay. Video fills the stage,
   editorial typography floats on top with a subtle scrim for legibility.
   The video extends UNDER the fixed top bar + nav so visitors see motion
   right behind the semi-transparent nav at page load.
========================================================= */
.hero-cinema {
  position: relative;
  background: var(--espresso, #1a1410);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  /* Override the base .hero padding-top so the video starts at y=0
     and passes behind the translucent nav bars. */
  padding-top: 0 !important;
  min-height: auto !important;
}

/* When the cinema hero is on the page, turn the fixed topbar + nav into
   glass overlays so visitors see the video motion slightly behind them.
   The backdrop-filter keeps text legibility intact. */
body:has(.hero-cinema) { padding-top: 0 !important; }
body:has(.hero-cinema) .topbar {
  background: color-mix(in oklab, var(--ink) 55%, transparent);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border-bottom: 1px solid color-mix(in oklab, var(--cream) 12%, transparent);
}
body:has(.hero-cinema) .nav {
  background: color-mix(in oklab, var(--ink) 38%, transparent);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border-bottom: 1px solid color-mix(in oklab, var(--cream) 10%, transparent);
}
.hero-cinema-stage {
  position: relative;
  width: 100%;
  /* Tall enough to accommodate the floating header (~128px) plus the
     editorial display type without looking cramped. */
  height: 74vh;
  min-height: 600px;
  max-height: 780px;
  overflow: hidden;
}
.hero-cinema-video,
.hero-cinema-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Maximum bottom-bias: the sofa is the subject; anything above it
     (ceiling, beams, top of windows) gets trimmed off. */
  object-position: center bottom;
}
.hero-cinema-fallback { z-index: 1; }
.hero-cinema-video { z-index: 2; transition: opacity 400ms ease; }
/* Once the video starts playing it reveals itself; until then the img poster
   carries the weight. The img underneath stays as a true safety net if the
   video stalls or 404s. */
.hero-cinema-grain {
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: .10;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.3  0 0 0 0 0.2  0 0 0 0 0.1  0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero-cinema-scrim {
  position: absolute; inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(26,20,16,0.38) 0%, rgba(26,20,16,0.05) 22%, rgba(26,20,16,0.05) 58%, rgba(26,20,16,0.72) 100%),
    linear-gradient(90deg, rgba(26,20,16,0.35) 0%, rgba(26,20,16,0) 48%);
}
.hero-cinema-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  grid-template-rows: auto 1fr auto;
  /* Push content below the floating topbar + nav (~128px combined) so
     the meta row and title never hide behind the glass header. */
  padding-top: clamp(140px, 12vh, 160px);
  padding-bottom: clamp(20px, 2.5vw, 40px);
  color: var(--cream);
}
/* Top row: eyebrow left, meta right */
.hero-cinema-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.hero-cinema-eyebrow {
  color: oklch(0.82 0.11 60);
}
.hero-cinema-meta {
  display: flex; gap: 10px; align-items: center;
  color: color-mix(in oklab, var(--cream) 72%, transparent);
}
.hero-cinema-meta .hero-dot { opacity: 0.55; }
.hero-cinema-meta .hero-cinema-model em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: oklch(0.82 0.11 60);
  margin-right: 6px;
}

/* Title: centered horizontally, vertically aligned to the MIDDLE of the stage */
.hero-cinema-title {
  align-self: center;
  justify-self: start;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 7.4vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--cream);
  text-shadow: 0 4px 36px rgba(0,0,0,0.35);
  max-width: min(92%, 1200px);
}
.hero-cinema-title em {
  font-style: italic;
  color: oklch(0.82 0.11 60);
}
.hero-cinema-title .line { display: block; overflow: hidden; }
.hero-cinema-title .line > span {
  display: inline-block;
  animation: rise 1.1s cubic-bezier(.2,.7,.2,1) both;
}
.hero-cinema-title .line:nth-child(2) > span { animation-delay: 0.08s; }
.hero-cinema-title .line:nth-child(3) > span { animation-delay: 0.16s; }
.hero-cinema-title .amp {
  font-style: italic;
  color: oklch(0.82 0.11 60);
  padding: 0 0.04em;
}

/* Bottom row: lede + ctas */
.hero-cinema-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 60px);
  align-items: end;
  max-width: min(100%, 1200px);
}
.hero-cinema-lede {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--cream) 90%, transparent);
  max-width: 54ch;
}
.hero-cinema-ctas {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.hero-cinema-ghost {
  color: var(--cream);
  border-color: color-mix(in oklab, var(--cream) 35%, transparent);
}
.hero-cinema-ghost:hover {
  background: color-mix(in oklab, var(--cream) 10%, transparent);
  border-color: var(--cream);
}

/* Caption pinned bottom-right outside the overlay grid rhythm */
.hero-cinema-caption {
  position: absolute;
  right: clamp(24px, 4vw, 80px);
  bottom: clamp(20px, 2.5vw, 40px);
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--cream) 78%, transparent);
  z-index: 6;
  pointer-events: none;
}
.hero-cinema-caption-idx { opacity: 0.7; }
.hero-cinema-caption-cap em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: oklch(0.82 0.11 60);
  margin-right: 6px;
}
.hero-cinema-caption-price { color: var(--cream); }

@media (max-width: 900px) {
  .hero-cinema-stage { height: 70vh; min-height: 460px; }
  .hero-cinema-bottom { grid-template-columns: 1fr; }
  .hero-cinema-caption { position: static; margin-top: 20px; flex-wrap: wrap; }
}
@keyframes heroReveal {
  from { opacity: 0; transform: translate(-50%, -50%) scale(1.04); filter: saturate(0.6) contrast(1.1) blur(8px); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); filter: saturate(1.02) contrast(1.04) blur(0); }
}
/* Slow Ken Burns-style drift: subtle zoom + horizontal float. Acts as a
   visual placeholder until a Higgsfield-generated hero video is added. */
@keyframes heroDrift {
  0%   { transform: translate(-50%, -50%) scale(1.00) translate3d(0,    0,   0); }
  33%  { transform: translate(-50%, -50%) scale(1.045) translate3d(-1.2%, 0.4%, 0); }
  66%  { transform: translate(-50%, -50%) scale(1.05) translate3d(1.0%,  -0.3%, 0); }
  100% { transform: translate(-50%, -50%) scale(1.02) translate3d(0.4%, 0.6%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo { animation: heroReveal 1400ms cubic-bezier(.2,.7,.15,1) both !important; }
}
.hero-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: .18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.3  0 0 0 0 0.2  0 0 0 0 0.1  0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grainShift 1.2s steps(4) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-2%, 1%); }
  50%  { transform: translate(1%, -2%); }
  75%  { transform: translate(-1%, -1%); }
  100% { transform: translate(0,0); }
}
.hero-vignette {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 40%, transparent 45%, rgba(20,14,10,.55) 100%),
    linear-gradient(to top, rgba(20,14,10,.55) 0%, transparent 35%);
}
.hero-caption {
  position: absolute;
  top: 24px; left: 24px; right: 24px;
  display: flex; gap: 16px; align-items: baseline; justify-content: space-between;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  z-index: 3;
  opacity: 0;
  animation: fadeDown 900ms 900ms ease-out both;
}
.hero-caption .idx { opacity: .75; }
.hero-caption .cap em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: oklch(0.82 0.1 60);
}
.hero-caption .cap { flex: 1; text-align: center; }
.hero-caption .price { opacity: .85; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: flex-end;
  color: var(--cream);
  z-index: 3;
  opacity: 0;
  animation: fadeUp 900ms 1100ms ease-out both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo { animation: none; transform: translate(-50%, -50%) scale(1); }
  .hero-grain { animation: none; }
  .hero-caption, .hero-badge { animation: none; opacity: 1; }
}
.hero-badge .big-num {
  font-family: var(--serif);
  font-size: 84px; line-height: .9;
  letter-spacing: -0.02em;
}
.hero-badge .stack {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: right;
  opacity: .9;
}

.hero-ticker {
  display: flex; align-items: center; gap: 40px;
  padding: 18px var(--gutter);
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saddle);
  overflow: hidden;
  white-space: nowrap;
}
.hero-ticker .track {
  display: flex; gap: 40px;
  animation: marquee 38s linear infinite;
}
.hero-ticker span.sep { color: var(--cognac); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes rise {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .hero-right { min-height: 70vh; }
  .hero-footnote { grid-template-columns: 1fr; }
}

/* --- SECTION scaffolding -------------------------------- */
.section {
  padding: clamp(80px, 10vw, 160px) 0;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-bottom: clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(40px, 5vw, 72px);
}
.section-head .eyebrow { margin-bottom: 20px; display: block; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 16ch;
}
.section-head h2 em { font-style: italic; color: var(--cognac); }
.section-head .aside {
  max-width: 38ch;
  font-size: 15px;
  color: var(--muted);
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; }
}

/* ---- COLLECTIONS --------------------------------------- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 1100px) { .collection-grid { grid-template-columns: repeat(2, 1fr); } }
.collection-card {
  position: relative;
  background: var(--cream);
  padding: 0;
  cursor: pointer;
  transition: background .4s;
}
.collection-card:hover { background: var(--parchment); }
.collection-card .media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.collection-card .media > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.collection-card:hover .media > img { transform: scale(1.04); }
.collection-card .media .ph {
  position: absolute; inset: 0;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.collection-card:hover .media .ph { transform: scale(1.05); }
.collection-card .body {
  padding: 28px 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}
.collection-card .body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.collection-card .body .count {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saddle);
}
.collection-card .body p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.collection-card .arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid; place-items: center;
  transition: all .4s;
  flex-shrink: 0;
}
.collection-card:hover .arrow {
  background: var(--espresso); color: var(--cream);
  border-color: var(--espresso);
  transform: rotate(-45deg);
}
.collection-card .tag-num {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--cream);
  background: color-mix(in oklab, var(--ink) 50%, transparent);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  z-index: 3;
}
@media (max-width: 700px) {
  .collection-grid { grid-template-columns: 1fr; }
}

/* ---- MODELS STRIP -------------------------------------- */
.models-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.model { display: block; group: model; }
.model-media {
  aspect-ratio: 4 / 5;
  position: relative; overflow: hidden;
  border-radius: 2px;
}
.model-media > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.model:hover .model-media > img { transform: scale(1.04); }
.model-media .ph {
  position: absolute; inset: 0;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.model:hover .model-media .ph { transform: scale(1.04); }
.model-foot {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 16px 2px 0;
}
.model-name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 4px;
}
.model-sub {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.model-tag {
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cognac-deep);
  padding: 4px 8px;
  border: 1px solid var(--cognac-deep);
  border-radius: 2px;
}
@media (max-width: 900px) { .models-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .models-row { grid-template-columns: 1fr; } }

/* ---- MATERIAL ------------------------------------------ */
.material {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.material-left {
  padding: clamp(40px, 6vw, 96px) var(--gutter) clamp(40px, 6vw, 96px) 0;
  border-right: 1px solid var(--line);
}
.material-left h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  max-width: 14ch;
}
.material-left h3 em { font-style: italic; color: var(--cognac); }
.material-left p {
  max-width: 48ch;
  font-size: 16px;
  color: color-mix(in oklab, var(--ink) 75%, var(--cream));
  line-height: 1.7;
}
.material-specs {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 32px;
  border-top: 1px dotted var(--line);
}
.material-specs .spec .num {
  font-family: var(--serif);
  font-size: 44px; line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cognac-deep);
}
.material-specs .spec .label {
  margin-top: 8px;
  font-size: 11px;
}
.material-right {
  padding: clamp(40px, 6vw, 96px) 0 clamp(40px, 6vw, 96px) clamp(40px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.leather-list {
  display: flex; flex-direction: column;
}
.leather-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  transition: padding .4s, background .4s;
}
.leather-row:hover {
  padding-left: 16px;
  background: var(--parchment);
}
.leather-swatch {
  width: 100px; height: 72px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
}
.leather-swatch img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.leather-row h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 2px;
  letter-spacing: -0.005em;
}
.leather-row .meta {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.leather-row .code {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--saddle);
  letter-spacing: 0.12em;
}
@media (max-width: 900px) {
  .material { grid-template-columns: 1fr; }
  .material-left { padding: 40px var(--gutter); border-right: 0; border-bottom: 1px solid var(--line); }
  .material-right { padding: 40px var(--gutter); }
}

/* ---- CITIES -------------------------------------------- */
.cities-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 0 var(--gutter);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}
.cities-intro .big {
  font-family: var(--serif);
  font-size: clamp(44px, 5.6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
}
.cities-intro .big em { font-style: italic; color: var(--cognac); }
.cities-intro p {
  max-width: 44ch;
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.city {
  position: relative;
  padding: 28px var(--gutter) 28px 28px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  transition: background .5s, color .5s;
}
.city:hover {
  background: var(--espresso);
  color: var(--cream);
}
.city:hover .city-num { color: var(--cognac); }
.city:hover .city-pop { color: color-mix(in oklab, var(--cream) 70%, transparent); }
.city-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--saddle);
  transition: color .4s;
}
.city-name {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.city-pop {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .4s;
}

@media (max-width: 1100px) { .cities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .cities-grid { grid-template-columns: repeat(2, 1fr); } .cities-intro { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 500px)  { .cities-grid { grid-template-columns: 1fr; } }

/* ---- SHOWROOM ------------------------------------------ */
.showroom {
  background: var(--espresso);
  color: var(--cream);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}
.showroom .section-head { border-color: color-mix(in oklab, var(--cream) 14%, transparent); }
.showroom .section-head h2 em { color: var(--cognac); }
.showroom .eyebrow { color: color-mix(in oklab, var(--cream) 65%, transparent); }
.showroom .aside { color: color-mix(in oklab, var(--cream) 70%, transparent); }
.showroom-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  padding: 0 var(--gutter);
}
.showroom-media {
  aspect-ratio: 5 / 4;
  position: relative;
  overflow: hidden;
}
.showroom-info {
  padding: 40px 0 40px 64px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.showroom-info h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1; margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.showroom-info h3 em { font-style: italic; color: var(--cognac); }
.showroom-info p {
  font-size: 16px;
  color: color-mix(in oklab, var(--cream) 75%, transparent);
  max-width: 44ch;
  line-height: 1.7;
}
.showroom-address {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid color-mix(in oklab, var(--cream) 14%, transparent);
}
.showroom-address .item .k {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--cream) 55%, transparent);
  margin-bottom: 8px;
}
.showroom-address .item .v {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .showroom-grid { grid-template-columns: 1fr; gap: 32px; }
  .showroom-info { padding: 32px 0; }
}

/* ---- REVIEWS ------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.review {
  padding: 40px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 360px;
  position: relative;
}
.review:last-child { border-right: none; }
.review .stars {
  display: flex; gap: 3px;
  margin-bottom: 20px;
  color: var(--cognac);
}
.review .stars svg { width: 14px; height: 14px; }
.review blockquote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.review blockquote::before { content: "“"; color: var(--cognac); padding-right: 2px; }
.review blockquote::after  { content: "”"; color: var(--cognac); padding-left: 2px; }
.review .meta {
  display: flex; gap: 12px; align-items: center;
  padding-top: 20px;
  border-top: 1px dotted var(--line);
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.review .meta .name { color: var(--saddle); }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ---- SERVICES ------------------------------------------ */
.service-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service {
  padding: 48px 32px;
  border-right: 1px solid var(--line-soft);
  position: relative;
}
.service:last-child { border-right: 0; }
.service .icon {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--cognac);
  margin-bottom: 28px;
}
.service h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.service p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 900px) { .service-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .service-row { grid-template-columns: 1fr; } }

/* ---- NEWSLETTER + FOOTER ------------------------------- */
.newsletter {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  text-align: center;
  background: var(--parchment);
  border-bottom: 1px solid var(--line);
}
.newsletter h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 auto 24px;
  max-width: 14ch;
}
.newsletter h2 em { font-style: italic; color: var(--cognac); }
.newsletter p {
  max-width: 48ch; margin: 0 auto 40px;
  color: var(--muted);
  font-size: 15px;
}
.newsletter form {
  display: inline-flex; align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 100%; max-width: 520px;
}
.newsletter input {
  flex: 1;
  border: 0; outline: 0;
  font-family: var(--sans);
  font-size: 14px;
  background: transparent;
  color: var(--ink);
  padding: 10px 0;
  letter-spacing: 0.04em;
}
.newsletter input::placeholder { color: color-mix(in oklab, var(--ink) 45%, var(--cream)); }

.footer {
  background: var(--ink);
  color: color-mix(in oklab, var(--cream) 85%, transparent);
  padding: 72px var(--gutter) 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid color-mix(in oklab, var(--cream) 12%, transparent);
}
@media (max-width: 1200px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-top .col-info { display: none; }
}
.footer .mark {
  font-family: var(--serif); font-size: 36px; line-height: 1;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 16px;
  white-space: nowrap;
}
.footer .mark em { font-style: italic; color: var(--cognac); font-size: 0.85em; }
.footer p { color: color-mix(in oklab, var(--cream) 60%, transparent); max-width: 32ch; margin: 0; font-size: 13px; line-height: 1.6; }
.footer h5 {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cognac);
  margin: 0 0 20px;
  font-weight: 400;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { font-size: 14px; color: color-mix(in oklab, var(--cream) 75%, transparent); }
.footer ul a:hover { color: var(--cream); }
.footer ul .footer-muted {
  font-size: 14px;
  color: color-mix(in oklab, var(--cream) 38%, transparent);
  cursor: default;
  display: inline-block;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--cream) 50%, transparent);
}
.footer-bottom .brand-line {
  display: flex; gap: 16px; align-items: center;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ---- TWEAKS panel -------------------------------------- */
.tweaks {
  position: fixed; right: 20px; bottom: 20px;
  width: 320px; z-index: 100;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 30px 60px -20px color-mix(in oklab, var(--ink) 25%, transparent);
  font-size: 12px;
  display: none;
}
.tweaks.open { display: block; }
.tweaks h4 {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--saddle);
  margin: 0 0 12px;
  display: flex; justify-content: space-between;
}
.tweaks .group { padding: 10px 0; border-top: 1px dotted var(--line); }
.tweaks .group:first-of-type { border-top: 0; }
.tweaks .group .k { font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.16em; font-size: 10px; color: var(--muted); margin-bottom: 8px; }
.tweaks .opts { display: flex; flex-wrap: wrap; gap: 6px; }
.tweaks .opt {
  padding: 6px 10px; border: 1px solid var(--line);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 999px;
  cursor: pointer; background: transparent;
}
.tweaks .opt.active { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.tweaks .opt.swatch { padding: 0; width: 32px; height: 32px; border-radius: 50%; }
.tweaks .close { background: none; border: 0; cursor: pointer; }

/* --- theme variants (set via data-theme on html) -------- */
html[data-theme="cinematic"] {
  --cream:      oklch(0.16 0.02 40);
  --parchment:  oklch(0.22 0.028 40);
  --sand:       oklch(0.28 0.03 40);
  --cognac:     oklch(0.72 0.11 60);
  --cognac-deep:oklch(0.62 0.10 55);
  --saddle:     oklch(0.78 0.09 60);
  --espresso:   oklch(0.92 0.02 75);
  --ink:        oklch(0.96 0.015 75);
  --bg: oklch(0.12 0.018 40);
  --fg: oklch(0.95 0.015 75);
  --muted: color-mix(in oklab, var(--fg) 60%, var(--bg));
}
html[data-theme="cinematic"] .btn-primary { background: var(--cognac); border-color: var(--cognac); color: oklch(0.14 0.02 40); }
html[data-theme="cinematic"] .btn-primary:hover { background: var(--saddle); border-color: var(--saddle); }
html[data-theme="cinematic"] .btn-ghost { border-color: color-mix(in oklab, var(--fg) 18%, transparent); }
html[data-theme="cinematic"] .showroom { background: oklch(0.09 0.015 40); }
html[data-theme="cinematic"] .newsletter { background: oklch(0.18 0.022 40); }
html[data-theme="cinematic"] .footer { background: oklch(0.08 0.015 40); }
html[data-theme="cinematic"] .nav { background: color-mix(in oklab, var(--bg) 85%, transparent); }

html[data-theme="sand"] {
  --cream:      oklch(0.93 0.028 85);
  --parchment:  oklch(0.88 0.035 80);
  --cognac:     oklch(0.5  0.09 50);
  --cognac-deep:oklch(0.42 0.08 45);
  --saddle:     oklch(0.35 0.06 42);
  --espresso:   oklch(0.18 0.025 38);
  --ink:        oklch(0.14 0.018 38);
  --bg: var(--cream);
}

/* --- font variants -------------------------------------- */
html[data-font="serifdisplay"] {
  --serif: "Cormorant Garamond", "Instrument Serif", Georgia, serif;
  --sans:  "Inter Tight", "Tenor Sans", system-ui, sans-serif;
}
html[data-font="grotesk"] {
  --serif: "Tenor Sans", "Optima", serif;
  --sans:  "Inter Tight", "Tenor Sans", system-ui, sans-serif;
}
