/* ─────────────────────────────────────────────────────────────
   MAISON NOIR
   Two skins (night / day), one token set. Nothing below this
   block hard-codes a colour.
   ───────────────────────────────────────────────────────────── */

:root {
  /* night — the default */
  --ink:        #0B0A09;
  --ink-2:      #131110;
  --ink-3:      #1C1917;
  --cream:      #EDE6DA;
  --cream-dim:  #9A9187;
  --cream-mute: #8A8279;
  --ember:      #C2703D;
  --hair:       rgba(237,230,218,.13);
  --hair-hard:  rgba(237,230,218,.24);
  --scrim-h:    linear-gradient(96deg, rgba(11,10,9,.94) 0%, rgba(11,10,9,.78) 30%, rgba(11,10,9,.3) 62%, rgba(11,10,9,.04) 100%);
  --scrim-v:    linear-gradient(180deg, rgba(11,10,9,.8) 0%, rgba(11,10,9,0) 26%, rgba(11,10,9,0) 55%, rgba(11,10,9,.9) 100%);
  --grain-op:   .035;
  --shift:      0;
  --hero-img:   url("assets/img/hero-pass-1600.webp");

  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans:  "Schibsted Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --slow: 1.1s;

  --gut: clamp(20px, 5vw, 92px);
  --max: 1560px;
}

[data-skin="day"] {
  --ink:        #E8E1D6;
  --ink-2:      #DFD7CA;
  --ink-3:      #D3CABB;
  --cream:      #1A1614;
  --cream-dim:  #554C43;
  --cream-mute: #635A50;
  --ember:      #A4552A;
  --hair:       rgba(26,22,20,.16);
  --hair-hard:  rgba(26,22,20,.32);
  --scrim-h:    linear-gradient(96deg, rgba(232,225,214,.98) 0%, rgba(232,225,214,.93) 32%, rgba(232,225,214,.5) 66%, rgba(232,225,214,.1) 100%);
  --scrim-v:    linear-gradient(180deg, rgba(232,225,214,.88) 0%, rgba(232,225,214,.2) 24%, rgba(232,225,214,.12) 55%, rgba(232,225,214,.96) 100%);
  --grain-op:   .05;
  --hero-img:   url("assets/img/hero-daylight-1600.webp");
}

/* ── reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color .9s var(--ease), color .9s var(--ease);
}
img, video, svg, canvas { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 1px solid var(--ember); outline-offset: 3px; }

/* film grain — the single cheapest luxury signal on the page */
body::after {
  content: "";
  position: fixed; inset: -50%;
  pointer-events: none; z-index: 60;
  opacity: var(--grain-op);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0) }
  20% { transform: translate(-3%, 2%) }
  40% { transform: translate(2%, -3%) }
  60% { transform: translate(-2%, -2%) }
  80% { transform: translate(3%, 1%) }
}

.skip {
  position: fixed; top: 8px; left: 8px; z-index: 200;
  padding: 10px 16px; background: var(--ember); color: #fff;
  transform: translateY(-160%);
}
.skip:focus { transform: none; }

/* ── typography primitives ─────────────────────────────────── */
.eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream-mute);
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 6.4vw, 92px);
  line-height: .98;
  letter-spacing: -.015em;
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--ember); }
.section-lede {
  max-width: 46ch;
  color: var(--cream-dim);
  font-size: clamp(15px, 1.15vw, 17px);
}
.section-head {
  padding: clamp(80px, 12vh, 150px) var(--gut) clamp(36px, 5vh, 62px);
  max-width: var(--max); margin-inline: auto;
  display: grid; gap: 18px;
}
.section-head--tight { padding: 0 0 30px; }

/* ── buttons ───────────────────────────────────────────────── */
.btn {
  --bg: var(--ember);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px;
  background: var(--bg); color: #fff;
  font-size: 12px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--bg); cursor: pointer;
  position: relative; z-index: 0; overflow: hidden;
  transition: color .5s var(--ease), border-color .5s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--cream); transform: translateY(101%);
  transition: transform .55s var(--ease);
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--ink); border-color: var(--cream); }
.btn--ghost { --bg: transparent; color: var(--cream); border-color: var(--hair-hard); }
.btn--ghost:hover { color: var(--ink); }
.btn--small { padding: 11px 22px; font-size: 11px; }

/* ── curtain ───────────────────────────────────────────────── */
#curtain {
  position: fixed; inset: 0; z-index: 120;
  background: var(--ink);
  display: grid; place-items: center;
  transition: clip-path 1.15s var(--ease), opacity .4s .55s;
  clip-path: inset(0 0 0 0);
}
#curtain.is-done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.curtain__inner { display: grid; gap: 14px; justify-items: center; }
.curtain__mark {
  font-family: var(--serif); font-size: 44px; letter-spacing: .06em;
  color: var(--cream);
}
.curtain__count {
  font-size: 11px; letter-spacing: .3em; color: var(--cream-mute);
  font-variant-numeric: tabular-nums;
}

/* ── candlelight cursor ────────────────────────────────────── */
#glow {
  position: fixed; z-index: 2; pointer-events: none;
  width: 460px; height: 460px; margin: -230px 0 0 -230px;
  border-radius: 50%; opacity: 0;
  background: radial-gradient(circle, rgba(194,112,61,.16) 0%, rgba(194,112,61,.06) 40%, transparent 68%);
  transition: opacity .6s var(--ease);
  mix-blend-mode: screen;
}
@media (hover: hover) and (pointer: fine) {
  #glow.is-on { opacity: 1; }
}
@media (hover: none), (pointer: coarse) {
  #glow { display: none; }
}
[data-skin="day"] #glow { display: none; }

/* ── nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 22px var(--gut);
  transition: background-color .5s var(--ease), padding .5s var(--ease), border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  backdrop-filter: blur(14px);
  padding-block: 14px;
  border-bottom-color: var(--hair);
}
.nav__mark {
  font-family: var(--serif); font-size: 20px; letter-spacing: .04em;
  display: flex; gap: .32em;
}
.nav__mark-alt { color: var(--ember); }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream-dim); position: relative; padding-block: 4px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--ember);
  transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.service {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--hair-hard);
  padding: 9px 16px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cream-dim);
}
.status__dot, .service__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cream-mute); flex: none;
}
.is-open .status__dot, .is-open .service__dot { background: var(--ember); box-shadow: 0 0 0 3px rgba(194,112,61,.18); }

.nav__aside { display: flex; align-items: center; gap: 10px; }

/* ── mobile drawer ─────────────────────────────────────────── */
.burger {
  display: none; align-items: center; gap: 10px;
  background: none; border: 1px solid var(--hair-hard);
  padding: 9px 14px; cursor: pointer;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cream-dim);
}
.burger__bars { display: grid; gap: 4px; width: 15px; }
.burger__bars i {
  display: block; height: 1px; background: currentColor;
  transition: transform .45s var(--ease), opacity .3s;
}
.burger[aria-expanded="true"] .burger__bars i:first-child { transform: translateY(2.5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bars i:last-child  { transform: translateY(-2.5px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 45;
  background: var(--ink);
  display: grid; align-content: space-between;
  padding: 96px var(--gut) 40px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .8s var(--ease);
}
.drawer[hidden] { display: none; }
.drawer.is-open { clip-path: inset(0 0 0 0); }
.drawer__nav { display: grid; }
.drawer__nav a {
  font-family: var(--serif); font-size: clamp(30px, 9vw, 46px);
  line-height: 1.24; padding: 10px 0;
  border-bottom: 1px solid var(--hair);
  display: flex; align-items: baseline; gap: 16px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), color .3s;
}
.drawer.is-open .drawer__nav a { opacity: 1; transform: none; }
.drawer__nav a:nth-child(1) { transition-delay: .12s }
.drawer__nav a:nth-child(2) { transition-delay: .18s }
.drawer__nav a:nth-child(3) { transition-delay: .24s }
.drawer__nav a:nth-child(4) { transition-delay: .30s }
.drawer__nav a:nth-child(5) { transition-delay: .36s }
.drawer__nav a span {
  font-family: var(--sans); font-size: 11px; letter-spacing: .18em;
  color: var(--ember);
}
.drawer__nav a:active { color: var(--ember); }
.drawer__foot { display: grid; gap: 4px; }

/* ── hero ──────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__still, .hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero__still {
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
}
.hero__video { opacity: 0; transition: opacity 1.2s var(--ease); }
.hero__video.is-live { opacity: 1; }
.hero__scrim { position: absolute; inset: 0; background-image: var(--scrim-h), var(--scrim-v); }

.hero__body {
  position: relative; z-index: 3;
  width: 100%; max-width: var(--max);
  margin-inline: auto;
  padding: clamp(104px, 15vh, 168px) var(--gut) clamp(80px, 13vh, 150px);
  display: grid; gap: clamp(16px, 2.4vh, 30px);
}
.hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(46px, min(10.5vw, 15.5vh), 156px);
  line-height: .88; letter-spacing: -.025em;
  display: grid;
}
.hero__title .ital { font-style: italic; padding-left: .32em; color: var(--ember); }
.hero__lede { max-width: 42ch; color: var(--cream-dim); font-size: clamp(15px, 1.2vw, 18px); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }

.hero__status {
  position: absolute; z-index: 3; right: var(--gut);
  bottom: clamp(90px, 16vh, 190px);
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream-dim);
}
.hero__scroll {
  position: absolute; left: var(--gut); bottom: 34px; z-index: 3;
  width: 1px; height: 54px; background: var(--hair-hard); overflow: hidden;
}
.hero__scroll span {
  display: block; width: 1px; height: 54px; background: var(--ember);
  animation: drip 2.6s var(--ease) infinite;
}
@keyframes drip {
  0% { transform: translateY(-100%) } 60%,100% { transform: translateY(100%) }
}

/* ── signature / turntable ─────────────────────────────────── */
.sig { position: relative; height: 420vh; background: var(--ink); }
.sig__sticky {
  position: sticky; top: 0; height: 100svh;
  display: grid; align-items: center;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(20px, 4vw, 70px);
  max-width: var(--max); margin-inline: auto;
  padding: 0 var(--gut);
}
.sig__stage { position: relative; z-index: 0; display: grid; place-items: center; }
.sig__stage::after {
  content: ""; position: absolute; z-index: -1;
  width: min(72%, 460px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(194,112,61,.14), transparent 70%);
  filter: blur(30px);
}
#turntable { width: min(100%, 620px); height: auto; aspect-ratio: 1; }

.sig__rail { display: grid; gap: 20px; align-content: center; }
.sig__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 3.6vw, 60px); line-height: 1.02;
  letter-spacing: -.015em; max-width: 15ch;
}
.sig__title em { font-style: italic; color: var(--ember); }
.sig__notes { list-style: none; padding: 0; display: grid; gap: 2px; margin-top: 6px; }
.sig__notes li {
  display: grid; grid-template-columns: 34px 1fr; gap: 14px;
  padding: 15px 0; border-top: 1px solid var(--hair);
  opacity: .3; transition: opacity .6s var(--ease);
}
.sig__notes li.is-live { opacity: 1; }
.sig__num { font-size: 11px; letter-spacing: .14em; color: var(--ember); padding-top: 4px; }
.sig__notes strong { display: block; font-weight: 500; font-size: 14px; }
.sig__notes span span, .sig__notes li > span:last-child { color: var(--cream-dim); font-size: 14px; }
.sig__notes strong { color: var(--cream); }
.sig__hint {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream-mute); margin-top: 8px;
}

/* ── menu ──────────────────────────────────────────────────── */
.menu { background: var(--ink-2); padding-bottom: clamp(70px, 12vh, 150px); }
.menu__layout {
  max-width: var(--max); margin-inline: auto; padding: 0 var(--gut);
  display: grid; grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 5vw, 86px); align-items: stretch;
}
.menu__col { position: relative; }
.menu__frame {
  position: sticky; top: 104px;
  aspect-ratio: 4/5; max-height: calc(100svh - 150px);
  overflow: hidden; background: var(--ink-3);
}
.menu__frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .55s var(--ease), transform 1.4s var(--ease);
}
.menu__frame.is-swapping img { opacity: 0; transform: scale(1.04); }
.menu__frame-cap {
  position: absolute; left: 20px; bottom: 18px; right: 20px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream); text-shadow: 0 1px 12px rgba(0,0,0,.7);
}

.menu__course {
  font-family: var(--serif); font-weight: 400;
  font-size: 13px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--cream-mute);
  padding: 34px 0 10px;
}
.menu__list ul { list-style: none; padding: 0; }
.dish {
  display: grid;
  grid-template-columns: 40px auto 1fr auto;
  align-items: baseline; gap: 14px;
  padding: 20px 0; border-top: 1px solid var(--hair);
  cursor: pointer; position: relative; z-index: 0;
  transition: color .45s var(--ease);
}
.dish::before {
  content: ""; position: absolute; left: -14px; right: -14px; top: 0; bottom: 0;
  background: var(--hair); opacity: 0;
  transition: opacity .45s var(--ease);
  z-index: -1;
}
.dish:hover::before, .dish.is-active::before { opacity: .5; }
.dish__n { font-size: 11px; letter-spacing: .12em; color: var(--cream-mute); }
.dish__name {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 30px); line-height: 1.16;
  transition: color .45s var(--ease);
}
.dish:hover .dish__name, .dish.is-active .dish__name { color: var(--ember); }
.dish__rule { height: 1px; background: var(--hair); align-self: center; }
.dish__price {
  font-size: 13px; letter-spacing: .08em; color: var(--cream-dim);
  font-variant-numeric: tabular-nums;
}
.dish__price::before { content: "£"; opacity: .5; margin-right: 2px; }

/* ── pour / pairing ────────────────────────────────────────── */
.pour { position: relative; min-height: 88svh; display: grid; align-items: center; overflow: hidden; }
.pour__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .5;
}
.pour::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ink) 4%, rgba(11,10,9,.55) 48%, transparent 92%);
}
[data-skin="day"] .pour::after {
  background: linear-gradient(90deg, var(--ink) 4%, rgba(232,225,214,.6) 48%, transparent 92%);
}
.pour__body {
  position: relative; z-index: 2;
  max-width: var(--max); margin-inline: auto; width: 100%;
  padding: clamp(60px,10vh,110px) var(--gut);
  display: grid; gap: 18px;
}

/* ── sourcing ──────────────────────────────────────────────── */
.source { background: var(--ink); padding-bottom: clamp(70px, 12vh, 150px); }
.source__grid {
  max-width: var(--max); margin-inline: auto; padding: 0 var(--gut);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 30px);
}
.source__item { display: grid; gap: 14px; }
.source__item:nth-child(even) { margin-top: clamp(20px, 5vw, 64px); }
.source__item img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.source__item figcaption { font-size: 13px; color: var(--cream-dim); }
.source__item strong {
  display: block; color: var(--cream); font-weight: 500;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 5px;
}

/* ── room / table picker ───────────────────────────────────── */
.room { background: var(--ink-2); padding-bottom: clamp(70px, 12vh, 150px); }
.room__layout {
  max-width: var(--max); margin-inline: auto; padding: 0 var(--gut);
  display: grid; grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 5vw, 80px); align-items: center;
}
.room__plan svg { width: 100%; height: auto; }
.plan__shell, .plan__terrace { fill: none; stroke: var(--hair-hard); stroke-width: 1; }
.plan__terrace { stroke-dasharray: 3 4; }
.plan__caption {
  fill: var(--cream-mute); font-size: 7px;
  letter-spacing: .22em; text-transform: uppercase; text-anchor: middle;
  font-family: var(--sans);
}
.plan__fire { fill: var(--ember); opacity: .8; }
.zone { cursor: pointer; }
.zone rect {
  fill: var(--hair); stroke: var(--hair-hard); stroke-width: 1;
  transition: fill .45s var(--ease), stroke .45s var(--ease);
}
.zone text {
  fill: var(--cream-mute); font-size: 7px; letter-spacing: .16em;
  text-transform: uppercase; text-anchor: middle; font-family: var(--sans);
  transition: fill .45s var(--ease);
}
.zone:hover rect { fill: color-mix(in srgb, var(--ember) 22%, transparent); }
.zone.is-picked rect { fill: color-mix(in srgb, var(--ember) 38%, transparent); stroke: var(--ember); }
.zone:hover text, .zone.is-picked text { fill: var(--cream); }

.room__view { display: grid; gap: 24px; }
.room__frame { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--ink-3); }
.room__frame img, .room__frame video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.room__frame video { opacity: 0; transition: opacity 1s var(--ease); }
.room__frame video.is-live { opacity: 1; }
.room__frame.is-swapping img { opacity: 0; }
.room__frame img { transition: opacity .5s var(--ease); }
.room__meta { display: grid; gap: 12px; max-width: 52ch; }
.room__meta h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 2.6vw, 38px); }
.room__meta p { color: var(--cream-dim); }
.room__seats { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--cream-mute); }
.room__meta .btn { justify-self: start; margin-top: 6px; }

/* ── reserve ───────────────────────────────────────────────── */
.reserve { position: relative; overflow: hidden; padding: clamp(80px,12vh,150px) var(--gut); }
.reserve__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .34;
}
.reserve::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(11,10,9,.62) 40%, var(--ink) 100%);
}
[data-skin="day"] .reserve::after {
  background: linear-gradient(180deg, var(--ink) 0%, rgba(232,225,214,.72) 40%, var(--ink) 100%);
}
.reserve__panel {
  position: relative; z-index: 2;
  max-width: 920px; margin-inline: auto;
  background: color-mix(in srgb, var(--ink-2) 92%, transparent);
  border: 1px solid var(--hair);
  padding: clamp(26px, 4vw, 56px);
  backdrop-filter: blur(18px);
}

.hold {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 26px; padding: 13px 18px;
  border: 1px solid color-mix(in srgb, var(--ember) 45%, transparent);
  background: color-mix(in srgb, var(--ember) 10%, transparent);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
}
.hold strong { color: var(--ember); font-weight: 500; }
.hold__timer { font-variant-numeric: tabular-nums; color: var(--cream); }

.form { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 22px; }
.field { display: grid; gap: 8px; }
.field--wide { grid-column: 1 / -1; }
.field label {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream-mute);
}
.field input, .field select, .field textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--hair-hard);
  padding: 11px 2px; width: 100%; border-radius: 0;
  transition: border-color .4s var(--ease);
  font-size: 15px;
}
.field textarea { resize: vertical; }
.field select { appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: right 8px top 50%, right 3px top 50%;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.field select option, .field select optgroup { background: var(--ink-2); color: var(--cream); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--ember); }
.field.is-bad input, .field.is-bad select { border-bottom-color: #B4523F; }
.field__err { font-size: 11px; letter-spacing: .1em; color: #C2705F; min-height: 0; }

.form__foot {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-top: 10px;
  padding-top: 24px; border-top: 1px solid var(--hair);
}
.form__fine { font-size: 12px; color: var(--cream-mute); }

.done { display: grid; gap: 20px; }
.done__title { font-family: var(--serif); font-weight: 400; font-size: clamp(28px,4vw,54px); line-height: 1.02; }
.done__title em { font-style: italic; color: var(--ember); }
.done__list { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin: 4px 0; }
.done__list dt {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream-mute); margin-bottom: 5px;
}
.done__list dd { margin: 0; font-family: var(--serif); font-size: 22px; }
.done__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── footer ────────────────────────────────────────────────── */
.foot { background: var(--ink); padding: clamp(60px,9vh,110px) var(--gut) 40px; }
.foot__grid {
  max-width: var(--max); margin-inline: auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px;
}
.foot__mark { font-family: var(--serif); font-size: clamp(30px,4vw,54px); line-height: 1; margin-bottom: 16px; }
.foot__mark span { color: var(--ember); font-style: italic; margin-left: .2em; }
.foot__line { font-size: 14px; color: var(--cream-dim); }
.foot__line a:hover { color: var(--ember); }
.foot__dim { color: var(--cream-mute); }
.foot__rule { max-width: var(--max); margin: 46px auto 18px; height: 1px; background: var(--hair); }
.foot__fine { max-width: var(--max); margin-inline: auto; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-mute); }

.foot__eyebrow { margin-top: 28px; }
.lightswitch {
  display: inline-flex; margin-top: 10px;
  border: 1px solid var(--hair-hard);
}
.lightswitch button {
  background: none; border: 0; cursor: pointer;
  padding: 10px 18px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cream-mute);
  transition: color .45s var(--ease), background-color .45s var(--ease);
}
.lightswitch button + button { border-left: 1px solid var(--hair-hard); }
.lightswitch button:hover { color: var(--cream); }
.lightswitch button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--cream);
}

/* ── reveals ───────────────────────────────────────────────── */
.js-reveal .reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease);
  transition-delay: calc(var(--shift) * 70ms);
}
.js-reveal .reveal.is-in { opacity: 1; transform: none; }
.js-reveal .reveal img { clip-path: inset(0 0 100% 0); transition: clip-path 1.25s var(--ease); }
.js-reveal .reveal.is-in img { clip-path: inset(0 0 0 0); }

/* ── responsive ────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .sig__sticky { grid-template-columns: 1fr; align-content: center; gap: 20px; }
  #turntable { width: min(74vw, 380px); }
  .sig__rail { max-width: 620px; }
  .sig__notes li { padding: 11px 0; }
  .menu__layout { display: block; }
  .menu__col { display: contents; }
  .menu__frame {
    aspect-ratio: 16/9; top: 72px;
    max-height: 46svh; margin-bottom: 26px; z-index: 1;
  }
  .room__layout { grid-template-columns: 1fr; }
  .room__plan { max-width: 460px; }
  .source__grid { grid-template-columns: repeat(2, 1fr); }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  /* the signature must never be taller than the sticky box, or it spills
     over the hero above it */
  .sig { height: 300vh; }
  .sig__sticky {
    height: 100svh; overflow: hidden;
    padding: 78px var(--gut) 26px;
    align-content: center; gap: 14px;
  }
  #turntable { width: min(56vw, 220px); }
  .sig__rail { gap: 12px; }
  .sig__title { font-size: clamp(21px, 5.6vw, 28px); max-width: 20ch; }
  .sig__hint { margin-top: 2px; }

  /* one note at a time, cross-faded by scroll — saves ~250px */
  .sig__notes { position: relative; display: block; min-height: 116px; margin-top: 0; }
  .sig__notes li {
    position: absolute; left: 0; right: 0; top: 0;
    display: grid; grid-template-columns: 26px 1fr; gap: 10px;
    padding: 14px 0 0; margin: 0;
    opacity: 0; pointer-events: none;
    transition: opacity .55s var(--ease);
  }
  .sig__notes li.is-live { opacity: 1; }

  /* buttons stop wrapping raggedly */
  .hero__actions {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: 10px; width: 100%;
  }
  .hero__actions .btn { width: 100%; padding-inline: 14px; letter-spacing: .12em; }

  :root {
    --scrim-h: linear-gradient(180deg, rgba(11,10,9,.5) 0%, rgba(11,10,9,.62) 55%, rgba(11,10,9,.92) 100%);
  }
  [data-skin="day"] {
    --scrim-h: linear-gradient(180deg, rgba(232,225,214,.72) 0%, rgba(232,225,214,.8) 55%, rgba(232,225,214,.97) 100%);
  }
  .nav__links { display: none; }
  .burger { display: inline-flex; }
  .hero__status { left: var(--gut); right: auto; bottom: auto; top: 92px; }
  .hero__scroll { display: none; }
  .sig { height: 340vh; }
  .sig__title { font-size: clamp(24px, 6.2vw, 34px); }
  .sig__notes li { grid-template-columns: 26px 1fr; gap: 10px; }
  .dish { grid-template-columns: 30px 1fr auto; gap: 10px; row-gap: 2px; }
  .dish__rule { display: none; }
  .form { grid-template-columns: 1fr 1fr; }
  .field--wide, .form__foot { grid-column: 1 / -1; }
  .done__list { grid-template-columns: 1fr 1fr; }
  .form__foot .btn { width: 100%; }
  .foot__grid { grid-template-columns: 1fr; gap: 30px; }
  .source__item:nth-child(even) { margin-top: 0; }
}

@media (max-width: 420px) {
  .form { grid-template-columns: 1fr; }
  .done__list { grid-template-columns: 1fr; }
}

/* ── reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js-reveal .reveal { opacity: 1; transform: none; }
  .js-reveal .reveal img { clip-path: none; }
  .drawer { clip-path: none; }
  .drawer__nav a { opacity: 1; transform: none; }
  body::after { animation: none; }
  .sig { height: auto; }
  .sig__sticky { position: static; height: auto; padding-block: 80px; }
  .sig__notes li { opacity: 1; }
}
