:root {
  --pearl: #eeeae2;
  --paper: #f7f4ee;
  --ink: #211b1c;
  --ink-soft: #504748;
  --lacquer: #b63227;
  --lacquer-dark: #8f241d;
  --brass: #987d55;
  --sage: #748178;
  --line: rgba(33, 27, 28, .18);
  --line-light: rgba(247, 244, 238, .2);
  --display: "Bodoni Moda", Georgia, serif;
  --body: "Manrope", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --page: min(1440px, calc(100vw - 64px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--pearl);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
[hidden] { display: none !important; }

::selection { background: var(--lacquer); color: var(--paper); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--lacquer);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 88px;
  padding: 0 32px;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: height .35s var(--ease), background .35s ease, color .35s ease, border-color .35s ease;
}

.site-header.is-scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(238, 234, 226, .94);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  text-decoration: none;
}

.brand-mark {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
}
.brand-mark span { color: var(--lacquer); }
.brand-lockup { display: grid; line-height: 1; }
.brand-lockup strong { font-family: var(--display); font-size: 16px; letter-spacing: .18em; }
.brand-lockup small { margin-top: 5px; font-family: var(--mono); font-size: 7px; text-transform: uppercase; letter-spacing: .16em; }

.main-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 52px); }
.main-nav a,
.header-phone {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
}
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.header-phone { opacity: .78; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button:disabled { opacity: .42; cursor: not-allowed; transform: none; }
.button--small { min-height: 42px; padding-inline: 18px; }
.button--wide { width: 100%; }
.button--dark { background: var(--ink); color: var(--paper); }
.site-header:not(.is-scrolled) .button--dark { background: var(--paper); color: var(--ink); }
.button--red { background: var(--lacquer); color: var(--paper); }
.button--red:hover { background: var(--lacquer-dark); }
.button--outline { border-color: var(--ink); background: transparent; color: var(--ink); }
.button--outline:hover { background: var(--ink); color: var(--paper); }
.button--light { border-color: var(--paper); background: var(--paper); color: var(--ink); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .25s ease; }

.hero {
  position: relative;
  min-height: 860px;
  height: 100svh;
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 132px 5vw 42px 7vw;
  background:
    linear-gradient(135deg, rgba(182, 50, 39, .11), transparent 42%),
    var(--ink);
}

.eyebrow {
  display: flex;
  gap: 20px;
  margin: 0 0 44px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span + span::before { content: "✦"; margin-right: 20px; color: var(--lacquer); }

.hero h1,
.section h2,
.private-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.065em;
}
.hero h1 { font-size: clamp(72px, 7.8vw, 142px); }
.hero h1 em,
.section h2 em,
.private-copy h2 em { font-weight: 400; }

.hero-intro {
  max-width: 440px;
  margin: 42px 0 0;
  color: rgba(247, 244, 238, .72);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }

.text-link,
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  cursor: pointer;
}
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link--light { color: var(--paper); }

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 450px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}
.hero-meta div { display: grid; gap: 6px; }
.hero-meta span { font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; opacity: .55; }
.hero-meta strong { font-size: 11px; font-weight: 600; }

.hero-visual { position: relative; overflow: hidden; }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; animation: hero-enter 1.4s var(--ease) both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(33,27,28,.38), transparent 32%, transparent 70%, rgba(33,27,28,.18)); }
.hero-caption { position: absolute; right: 34px; bottom: 28px; margin: 0; font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }

.house-seal {
  position: absolute;
  top: 20%;
  right: 0;
  display: flex;
  width: 164px;
  height: 164px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--lacquer);
  color: var(--paper);
}
.house-seal > span { font-family: var(--display); font-size: 55px; font-weight: 900; letter-spacing: -.1em; }
.house-seal small { font-family: var(--mono); font-size: 8px; line-height: 1.45; letter-spacing: .14em; text-transform: uppercase; }

.hero-wordmark {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: -3.8vw;
  left: 2vw;
  font-family: var(--display);
  font-size: clamp(120px, 17.8vw, 340px);
  font-weight: 600;
  line-height: .72;
  letter-spacing: -.075em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 244, 238, .24);
  pointer-events: none;
}

@keyframes hero-enter { from { opacity: .4; transform: scale(1.07); } to { opacity: 1; transform: scale(1); } }

.section { position: relative; padding: 132px max(5vw, calc((100vw - 1440px) / 2)); }
.section-rail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 62px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-rail--light { border-color: var(--line-light); }
.kicker { margin: 0 0 24px; font-family: var(--mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }

.experience-heading,
.venues-heading { display: grid; grid-template-columns: 28% 72%; align-items: end; }
.section h2,
.private-copy h2 { font-size: clamp(56px, 6.8vw, 116px); }
.experience-grid { display: grid; grid-template-columns: 1.3fr .85fr .85fr; min-height: 520px; margin-top: 88px; }

.tempo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  padding: 42px;
  border: 1px solid var(--line);
  border-left: 0;
}
.tempo-card:first-child { border-left: 1px solid var(--line); }
.tempo-card h3 { margin: 0 0 24px; font-family: var(--display); font-size: clamp(40px, 4vw, 68px); font-weight: 500; line-height: .95; letter-spacing: -.045em; }
.tempo-card > p:not(.tempo-time) { margin: 0 0 32px; color: var(--ink-soft); font-size: 13px; line-height: 1.8; }
.tempo-time { margin: auto 0 24px; font-family: var(--mono); font-size: 10px; letter-spacing: .14em; }
.tempo-card--image { overflow: hidden; color: var(--paper); }
.tempo-card--image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tempo-card--image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(33,27,28,.82)); }
.tempo-card--image:hover img { transform: scale(1.035); }
.tempo-image-copy { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; }
.tempo-image-copy span { font-family: var(--mono); font-size: 10px; }
.tempo-image-copy strong { font-family: var(--display); font-size: 34px; font-weight: 500; }
.tempo-card--red { border-color: var(--lacquer); background: var(--lacquer); color: var(--paper); }
.tempo-card--red > p:not(.tempo-time) { color: rgba(247,244,238,.72); }

.menu-section { background: var(--ink); color: var(--paper); }
.menu-heading { display: grid; grid-template-columns: 2fr 1fr; gap: 10vw; align-items: end; }
.menu-lead { max-width: 460px; margin: 0; color: rgba(247,244,238,.63); font-size: 14px; line-height: 1.85; }
.menu-shell { margin-top: 88px; }
.menu-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--line-light); }
.segmented { display: flex; }
.segmented button {
  min-width: 138px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line-light);
  background: transparent;
  color: rgba(247,244,238,.58);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.segmented button + button { margin-left: -1px; }
.segmented button.is-active { position: relative; z-index: 1; border-color: var(--paper); background: var(--paper); color: var(--ink); }
.menu-search { display: flex; width: min(420px, 38vw); align-items: center; gap: 12px; border-bottom: 1px solid var(--line-light); }
.menu-search svg { fill: none; stroke: currentColor; stroke-width: 1.5; opacity: .58; }
.menu-search input { width: 100%; height: 52px; border: 0; outline: 0; background: transparent; color: var(--paper); font-size: 12px; }
.menu-search input::placeholder { color: rgba(247,244,238,.42); }
.menu-subnav { display: flex; justify-content: space-between; gap: 28px; margin-top: 30px; }
.category-tabs, .diet-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.category-tabs button,
.filter-chip {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: rgba(247,244,238,.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
}
.category-tabs button { margin-right: 22px; }
.category-tabs button.is-active { border-color: var(--lacquer); color: var(--paper); }
.filter-chip { padding: 8px 12px; border: 1px solid var(--line-light); }
.filter-chip.is-active { border-color: var(--brass); color: var(--paper); }
.menu-status { display: flex; align-items: center; gap: 10px; margin: 42px 0 16px; font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: rgba(247,244,238,.48); }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 4px rgba(116,129,120,.13); }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-light); }
.menu-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  min-height: 190px;
  padding: 34px 34px 32px 0;
  border-bottom: 1px solid var(--line-light);
  transition: background .25s ease, padding .3s var(--ease);
}
.menu-item:nth-child(even) { padding-right: 0; padding-left: 34px; border-left: 1px solid var(--line-light); }
.menu-item:hover { background: rgba(255,255,255,.025); }
.menu-item h3 { margin: 0 0 12px; font-family: var(--display); font-size: clamp(23px, 2vw, 31px); font-weight: 500; line-height: 1.05; letter-spacing: -.025em; }
.menu-item p { max-width: 510px; margin: 0; color: rgba(247,244,238,.52); font-size: 12px; line-height: 1.75; }
.menu-price { font-family: var(--mono); font-size: 12px; white-space: nowrap; }
.menu-price small { display: block; max-width: 100px; margin-top: 7px; color: rgba(247,244,238,.42); font-size: 8px; white-space: normal; text-align: right; }
.menu-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.menu-tag { padding: 4px 7px; border: 1px solid rgba(247,244,238,.18); font-family: var(--mono); font-size: 7px; letter-spacing: .08em; color: rgba(247,244,238,.68); }
.menu-tag--signature { border-color: var(--lacquer); color: #e98d84; }
.menu-empty { padding: 60px 0; border-top: 1px solid var(--line-light); text-align: center; }
.menu-empty strong, .menu-empty span { display: block; }
.menu-empty strong { font-family: var(--display); font-size: 34px; font-weight: 500; }
.menu-empty span { margin: 10px 0 22px; color: rgba(247,244,238,.55); font-size: 12px; }
.menu-empty .text-link { margin-inline: auto; }

.manifesto { display: grid; grid-template-columns: 1.35fr .65fr; min-height: 740px; background: var(--lacquer); color: var(--paper); }
.manifesto-image { min-height: 600px; overflow: hidden; }
.manifesto-image img { width: 100%; height: 100%; object-fit: cover; }
.manifesto-copy { display: flex; flex-direction: column; justify-content: space-between; padding: 70px 5vw; }
.brand-glyph { font-family: var(--display); font-size: 64px; font-weight: 900; letter-spacing: -.1em; }
.manifesto blockquote { margin: auto 0 34px; font-family: var(--display); font-size: clamp(38px, 4.2vw, 70px); line-height: .98; letter-spacing: -.04em; }
.manifesto-copy p { max-width: 430px; margin: 0; color: rgba(247,244,238,.7); font-size: 12px; line-height: 1.8; }

.venues-heading { margin-bottom: 82px; }
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.venue-card { background: var(--pearl); }
.venue-image { position: relative; height: 520px; overflow: hidden; }
.venue-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.venue-card:hover .venue-image img { transform: scale(1.025); }
.venue-image span { position: absolute; top: 24px; left: 24px; padding: 7px 10px; background: var(--paper); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.venue-info { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; min-height: 330px; padding: 42px; border: 1px solid var(--line); border-top: 0; }
.venue-info h3 { margin: 0; font-family: var(--display); font-size: clamp(42px, 4.3vw, 72px); font-weight: 500; line-height: .9; letter-spacing: -.045em; }
.venue-details { display: flex; flex-direction: column; align-items: flex-start; }
.venue-details p { margin: 0 0 18px; color: var(--ink-soft); font-size: 11px; line-height: 1.7; }
.venue-details .button { width: 100%; margin-top: auto; }

.private-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; background: #625e4f; color: var(--paper); }
.private-photo { min-height: 620px; overflow: hidden; }
.private-photo img { width: 100%; height: 100%; object-fit: cover; }
.private-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 88px 8vw; }
.private-copy h2 { margin-bottom: 38px; }
.private-copy > p:not(.kicker) { max-width: 580px; margin: 0; color: rgba(247,244,238,.7); font-size: 13px; line-height: 1.9; }
.private-facts { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; margin: 46px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.private-facts div { padding: 20px 16px 20px 0; }
.private-facts dt { margin-bottom: 8px; font-family: var(--mono); font-size: 7px; letter-spacing: .12em; text-transform: uppercase; opacity: .55; }
.private-facts dd { margin: 0; font-size: 10px; }

.booking { background: var(--ink); color: var(--paper); }
.booking-intro { display: grid; grid-template-columns: 2fr 1fr; gap: 10vw; align-items: end; }
.booking-intro > p { max-width: 430px; margin: 0; color: rgba(247,244,238,.6); font-size: 13px; line-height: 1.8; }
.booking-intro a { color: var(--paper); }
.booking-layout { display: grid; grid-template-columns: .66fr 1.34fr; gap: 8vw; margin-top: 90px; }
.booking-progress ol { margin: 0; padding: 0; list-style: none; }
.booking-progress li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 0 0 30px; color: rgba(247,244,238,.35); }
.booking-progress li > span { font-family: var(--mono); font-size: 9px; }
.booking-progress li div { position: relative; display: grid; gap: 5px; padding-bottom: 30px; border-bottom: 1px solid var(--line-light); }
.booking-progress li strong { font-family: var(--display); font-size: 23px; font-weight: 500; }
.booking-progress li small { font-size: 9px; }
.booking-progress li.is-active { color: var(--paper); }
.booking-progress li.is-complete { color: rgba(247,244,238,.62); }
.booking-progress li.is-active div::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 1px; background: var(--lacquer); }
.booking-assurance { display: flex; gap: 14px; margin-top: 24px; color: rgba(247,244,238,.5); }
.booking-assurance > span { color: var(--brass); }
.booking-assurance p { margin: 0; font-size: 9px; line-height: 1.7; }
.booking-assurance strong { color: var(--paper); font-weight: 600; }

.booking-form { min-height: 620px; padding: 46px; background: var(--paper); color: var(--ink); }
.booking-panel { animation: panel-in .42s var(--ease) both; }
@keyframes panel-in { from { opacity: 0; transform: translateY(12px); } }
.panel-heading { display: grid; grid-template-columns: 50px 1fr; gap: 18px; margin-bottom: 40px; }
.panel-heading > span { display: grid; width: 42px; height: 42px; place-items: center; background: var(--lacquer); color: var(--paper); font-family: var(--mono); font-size: 9px; }
.panel-heading h3 { margin: 0; font-family: var(--display); font-size: clamp(34px, 3.2vw, 50px); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.panel-heading p { margin: 9px 0 0; color: var(--ink-soft); font-size: 11px; }
.field-group { margin: 0 0 28px; padding: 0; border: 0; }
.field-group legend,
.field > span { display: block; margin-bottom: 10px; font-family: var(--mono); font-size: 8px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.venue-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.venue-option { position: relative; display: flex; min-height: 88px; align-items: center; justify-content: space-between; padding: 18px; border: 1px solid var(--line); cursor: pointer; transition: border-color .2s, background .2s; }
.venue-option:has(input:checked) { border-color: var(--lacquer); background: rgba(182,50,39,.045); }
.venue-option input { position: absolute; opacity: 0; pointer-events: none; }
.venue-option span { display: grid; gap: 5px; }
.venue-option strong { font-family: var(--display); font-size: 22px; font-weight: 500; }
.venue-option small { color: var(--ink-soft); font-size: 9px; }
.venue-option i { font-style: normal; color: var(--lacquer); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: block; margin-bottom: 24px; }
.field > span small { color: var(--ink-soft); font-family: var(--body); text-transform: lowercase; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--lacquer); box-shadow: 0 0 0 3px rgba(182,50,39,.08); }
.field input:invalid:not(:placeholder-shown) { border-color: var(--lacquer); }
.form-notice { min-height: 24px; margin: 2px 0 16px; color: var(--ink-soft); font-size: 10px; line-height: 1.6; }
.form-notice.is-error { color: var(--lacquer-dark); }
.form-notice.is-loading::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 8px; border: 1px solid var(--lacquer); border-top-color: transparent; border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; min-height: 210px; }
.slot {
  min-height: 62px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  cursor: pointer;
}
.slot:hover { border-color: var(--lacquer); }
.slot.is-selected { border-color: var(--lacquer); background: var(--lacquer); color: var(--paper); }
.slot small { display: block; margin-top: 3px; font-family: var(--body); font-size: 7px; opacity: .6; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 30px; }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin: 0 0 18px; color: var(--ink-soft); font-size: 9px; line-height: 1.6; }
.consent input { accent-color: var(--lacquer); }
.booking-success { text-align: center; animation: panel-in .5s var(--ease) both; }
.success-mark { display: grid; width: 90px; height: 90px; place-items: center; margin: 20px auto 34px; background: var(--lacquer); color: var(--paper); font-family: var(--display); font-size: 34px; font-weight: 900; }
.booking-success h3 { margin: 0; font-family: var(--display); font-size: clamp(48px, 5vw, 76px); font-weight: 500; line-height: .9; letter-spacing: -.045em; }
.booking-success p:not(.kicker) { max-width: 480px; margin: 28px auto 18px; color: var(--ink-soft); font-size: 12px; line-height: 1.7; }
.booking-success > strong { display: block; margin-bottom: 32px; font-family: var(--mono); font-size: 14px; letter-spacing: .12em; }
.booking-success .text-button { margin-inline: auto; }
.noscript { padding: 16px; background: var(--paper); color: var(--ink); }

.site-footer { padding: 80px 5vw 28px; background: #171314; color: var(--paper); }
.footer-brand { display: flex; align-items: center; gap: 26px; padding-bottom: 60px; border-bottom: 1px solid var(--line-light); }
.footer-mark { font-family: var(--display); font-size: 82px; font-weight: 900; line-height: .8; letter-spacing: -.12em; color: var(--lacquer); }
.footer-brand div { display: grid; gap: 6px; }
.footer-brand strong { font-family: var(--display); font-size: clamp(36px, 5vw, 72px); font-weight: 500; line-height: .9; letter-spacing: .14em; }
.footer-brand small { font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,244,238,.45); }
.footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 80px; padding: 54px 0 80px 25%; }
.footer-columns > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-columns span { margin-bottom: 14px; font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,244,238,.38); }
.footer-columns a, .footer-columns p { margin: 0; color: rgba(247,244,238,.7); font-size: 11px; line-height: 1.7; text-decoration: none; }
.footer-columns a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid var(--line-light); font-family: var(--mono); font-size: 7px; letter-spacing: .1em; text-transform: uppercase; color: rgba(247,244,238,.38); }
.footer-bottom a { text-decoration: none; }
.mobile-booking-bar { display: none; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .main-nav.is-open {
    position: fixed;
    inset: 72px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 52px 32px;
    background: var(--pearl);
    color: var(--ink);
  }
  .main-nav.is-open a { width: 100%; padding: 20px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 34px; font-weight: 500; }
  .nav-open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { grid-template-columns: 48% 52%; }
  .hero-copy { padding-left: 5vw; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .tempo-card--image { grid-column: 1 / -1; }
  .menu-heading, .booking-intro { gap: 5vw; }
  .venue-info { grid-template-columns: 1fr; }
  .booking-layout { gap: 4vw; }
}

@media (max-width: 900px) {
  :root { --page: calc(100vw - 40px); }
  .site-header { height: 72px; padding: 0 20px; }
  .brand-lockup small, .header-phone { display: none; }
  .header-actions { gap: 8px; }
  .header-actions .button { display: none; }
  .hero { height: auto; min-height: 0; display: block; padding-top: 72px; }
  .hero-copy { min-height: 630px; padding: 70px 24px 42px; }
  .hero h1 { font-size: clamp(68px, 20vw, 112px); }
  .eyebrow { flex-wrap: wrap; margin-bottom: 34px; }
  .hero-intro { margin-top: 30px; }
  .hero-actions { flex-wrap: wrap; }
  .hero-meta { margin-top: 58px; }
  .hero-visual { height: 76vw; min-height: 430px; }
  .house-seal { top: 0; width: 124px; height: 124px; }
  .house-seal > span { font-size: 42px; }
  .hero-wordmark { display: none; }
  .section { padding: 92px 20px; }
  .section-rail { margin-bottom: 46px; }
  .experience-heading, .venues-heading, .menu-heading, .booking-intro { grid-template-columns: 1fr; gap: 24px; }
  .section h2, .private-copy h2 { font-size: clamp(52px, 14vw, 84px); }
  .experience-grid { grid-template-columns: 1fr; margin-top: 54px; }
  .tempo-card--image { grid-column: auto; }
  .tempo-card { min-height: 430px; padding: 30px; border-left: 1px solid var(--line); border-top: 0; }
  .tempo-card:first-child { border-top: 1px solid var(--line); }
  .menu-shell { margin-top: 56px; }
  .menu-toolbar, .menu-subnav { align-items: stretch; flex-direction: column; }
  .menu-search { width: 100%; }
  .category-tabs { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .category-tabs::-webkit-scrollbar { display: none; }
  .category-tabs button { flex: 0 0 auto; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item, .menu-item:nth-child(even) { min-height: 0; padding: 28px 0; border-left: 0; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-image { min-height: 70vw; }
  .manifesto-copy { min-height: 540px; padding: 52px 24px; }
  .venue-grid { grid-template-columns: 1fr; }
  .venue-image { height: 68vw; min-height: 420px; }
  .venue-info { min-height: 0; padding: 30px; }
  .venue-details .button { margin-top: 24px; }
  .private-section { grid-template-columns: 1fr; }
  .private-photo { min-height: 70vw; }
  .private-copy { padding: 76px 24px; }
  .booking-layout { grid-template-columns: 1fr; margin-top: 58px; }
  .booking-progress { display: none; }
  .booking-form { min-height: 0; padding: 28px 20px; }
  .slots { grid-template-columns: repeat(3, 1fr); }
  .footer-columns { padding-left: 0; }
  .mobile-booking-bar {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: var(--lacquer);
    color: var(--paper);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    box-shadow: 0 14px 38px rgba(33,27,28,.28);
    transition: opacity .2s, transform .2s;
  }
  .mobile-booking-bar.is-hidden { opacity: 0; transform: translateY(120%); pointer-events: none; }
  .site-footer { padding-bottom: 98px; }
}

@media (max-width: 560px) {
  .brand-lockup strong { font-size: 14px; }
  .hero-copy { min-height: 590px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-meta { grid-template-columns: 1fr; gap: 14px; }
  .hero-meta div { grid-template-columns: 90px 1fr; align-items: center; }
  .hero-visual { height: 118vw; }
  .hero-caption { right: 18px; bottom: 18px; left: 18px; }
  .section-rail { font-size: 7px; }
  .segmented { width: 100%; }
  .segmented button { min-width: 0; flex: 1; }
  .diet-filters { display: grid; grid-template-columns: 1fr 1fr; }
  .menu-item { grid-template-columns: 1fr auto; gap: 14px; }
  .menu-item h3 { font-size: 25px; }
  .venue-image { min-height: 360px; }
  .venue-info { grid-template-columns: 1fr; }
  .private-facts { grid-template-columns: 1fr; }
  .private-facts div + div { border-top: 1px solid var(--line-light); }
  .venue-options, .field-row { grid-template-columns: 1fr; }
  .slots { grid-template-columns: repeat(2, 1fr); }
  .form-actions { align-items: stretch; flex-direction: column-reverse; }
  .form-actions .button { width: 100%; }
  .form-actions .text-button { align-self: center; }
  .footer-brand { align-items: flex-start; }
  .footer-mark { font-size: 58px; }
  .footer-brand strong { font-size: 32px; }
  .footer-columns { grid-template-columns: 1fr 1fr; gap: 42px 24px; }
  .footer-bottom { flex-direction: column; }
}

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