/* ==========================================================================
   The Signature Room at the 95th - 2026 rebuild
   Palette drawn from the room itself: night sky beyond the glass, table
   linen, brass light, and the house claret.
   ========================================================================== */

:root {
  --night:      #0E1A26;
  --night-2:    #152534;
  --slate:      #1D2E3E;
  --linen:      #EFEBE1;
  --linen-2:    #F8F6F1;
  --ink:        #16202A;
  --muted:      #5C6B79;
  --rule:       #D7D1C4;
  --brass:      #B8842A;
  --brass-lt:   #E0B45F;
  --claret:     #8E1B1E;
  --claret-lt:  #A82428;

  --display: "Bodoni Moda", "Didot", Georgia, serif;
  --text: "Jost", "Helvetica Neue", Arial, sans-serif;

  --measure: 68ch;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --wide: 1240px;
  --shell: 1080px;

  --step--1: clamp(0.82rem, 0.79rem + 0.13vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.35rem + 0.72vw, 2rem);
  --step-3:  clamp(1.9rem, 1.6rem + 1.4vw, 2.9rem);
  --step-4:  clamp(2.4rem, 1.8rem + 2.8vw, 4.4rem);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: var(--text);
  font-size: var(--step-0);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--night); color: #fff; padding: .8rem 1.2rem;
}
.skip:focus { left: 0; }

/* ---------- Type ---------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 1.15em; }

strong, b { font-weight: 500; }

hr {
  border: 0; height: 1px; background: var(--rule);
  margin: 3rem 0;
}

/* ---------- Shell ---------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--wide { max-width: var(--wide); }
.prose { max-width: var(--measure); }

.band { padding-block: clamp(3rem, 7vw, 6rem); }
.band--tight { padding-block: clamp(2rem, 4vw, 3.25rem); }
.band--night { background: var(--night); color: #E8EDF2; }
.band--night h1, .band--night h2, .band--night h3 { color: #fff; }
.band--paper { background: var(--linen-2); }

/* ---------- Masthead ---------- */

.masthead {
  position: sticky; top: 0; z-index: 50;
  background: var(--night);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.masthead__venues {
  display: flex; gap: 1.5rem; justify-content: center;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  padding: .55rem 0; color: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.masthead__venues a { text-decoration: none; }
.masthead__venues a:hover, .masthead__venues a[aria-current] { color: var(--brass-lt); }

.masthead__bar {
  display: flex; align-items: center; gap: 1.5rem;
  padding-block: .9rem;
}
.masthead__logo { flex: 0 0 auto; }
.masthead__logo img { width: clamp(140px, 18vw, 196px); }

.nav { margin-left: auto; }
.nav ul {
  display: flex; align-items: center; gap: clamp(.9rem, 1.9vw, 1.9rem);
  list-style: none; margin: 0; padding: 0;
}
.nav a {
  text-decoration: none; color: rgba(255,255,255,.86);
  font-size: .74rem; letter-spacing: .13em; text-transform: uppercase;
  padding-block: .4rem; border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav a:hover { color: #fff; border-bottom-color: var(--brass); }
.nav a[aria-current="page"] { color: var(--brass-lt); border-bottom-color: var(--brass); }

.nav__book a {
  background: var(--claret); color: #fff; border: 0;
  padding: .62rem 1.15rem; letter-spacing: .14em;
}
.nav__book a:hover { background: var(--claret-lt); border-bottom-color: transparent; }

.navtoggle {
  display: none; margin-left: auto;
  background: none; border: 1px solid rgba(255,255,255,.3); color: #fff;
  font: inherit; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .5rem .85rem; cursor: pointer;
}

@media (max-width: 900px) {
  .navtoggle { display: block; }
  .nav {
    display: none; width: 100%; order: 3;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-block: .6rem 1rem;
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav li { width: 100%; }
  .nav a { display: block; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav__book a { display: inline-block; margin-top: .8rem; }
  .masthead__bar { flex-wrap: wrap; }
}

/* ---------- Section nav (sub pages) ---------- */

.subnav { background: var(--night-2); }
.subnav ul {
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  list-style: none; margin: 0; padding: .85rem 0;
}
.subnav a {
  color: rgba(255,255,255,.72); text-decoration: none;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
}
.subnav a:hover { color: #fff; }
.subnav a[aria-current="page"] { color: var(--brass-lt); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--night);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0; z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(9,17,25,.94) 0%, rgba(9,17,25,.55) 45%, rgba(9,17,25,.35) 100%),
    linear-gradient(to right, rgba(9,17,25,.75), rgba(9,17,25,0) 70%);
}
.hero__inner {
  min-height: clamp(420px, 78vh, 760px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-block: clamp(4rem, 12vh, 8rem) clamp(2.5rem, 6vh, 4rem);
  position: relative;
}
.hero--page .hero__inner { min-height: clamp(300px, 46vh, 460px); }

/* the signature element: the floor numeral */
.floor {
  position: absolute; left: calc(var(--gutter) * -0.22); bottom: -.18em;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(11rem, 34vw, 26rem);
  line-height: .78; letter-spacing: -.05em;
  color: rgba(255,255,255,.055);
  z-index: -1; pointer-events: none; user-select: none;
}
.floor sup { font-size: .3em; vertical-align: super; letter-spacing: 0; }

.hero__eyebrow {
  font-size: .74rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--brass-lt); margin: 0 0 1rem;
}
.hero h1 { margin-bottom: .35em; max-width: 16ch; }
.hero__lede {
  max-width: 46ch; font-size: var(--step-1); font-weight: 300;
  color: rgba(255,255,255,.85); margin-bottom: 1.8rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block; text-decoration: none;
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .95rem 1.8rem; border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.btn--primary { background: var(--claret); color: #fff; }
.btn--primary:hover { background: var(--claret-lt); }
.btn--ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn--ink { border-color: var(--ink); color: var(--ink); }
.btn--ink:hover { background: var(--ink); color: var(--linen); }

/* inline text link with a brass underline */
.prose a, .menu a, .split__body a, .panel__body a {
  color: inherit; text-decoration: none;
  background-image: linear-gradient(var(--brass), var(--brass));
  background-size: 100% 1px; background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 1px;
}
.prose a:hover, .split__body a:hover { color: var(--claret); }
.band--night .prose a { background-image: linear-gradient(var(--brass-lt), var(--brass-lt)); }

/* ---------- Split feature ---------- */

.split {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.split + .split { margin-top: clamp(3rem, 7vw, 5.5rem); }
.split--flip .split__media { order: 2; }
.split__body { max-width: 46ch; }
.split__body h2 { margin-bottom: .5em; }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
}

/* ---------- Venue entries (home) ---------- */

.venue {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.venue__media { position: relative; }
.venue__media img { width: 100%; height: 100%; object-fit: cover; }
.venue__body {
  background: var(--night); color: #E8EDF2;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.venue__floor {
  font-family: var(--display); font-size: clamp(6rem, 12vw, 11rem);
  line-height: .8; color: rgba(255,255,255,.06);
  position: absolute; right: .06em; top: .02em; user-select: none;
}
.venue__body h2 { color: #fff; margin-bottom: .25em; position: relative; }
.venue__kicker {
  font-size: .74rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--brass-lt); margin-bottom: .9rem; position: relative;
}
.venue__body p { color: rgba(255,255,255,.82); max-width: 42ch; position: relative; }
.venue__hours {
  margin: 1.4rem 0 1.8rem; font-size: var(--step--1);
  color: rgba(255,255,255,.7); position: relative;
}
.venue__hours dt { color: var(--brass-lt); letter-spacing: .1em; text-transform: uppercase; font-size: .7rem; }
.venue__hours dd { margin: .15rem 0 .7rem; }
.venue__actions { position: relative; display: flex; flex-wrap: wrap; gap: .7rem; }
@media (max-width: 860px) {
  .venue { grid-template-columns: 1fr; }
  .venue__media { min-height: 260px; }
  .venue--flip .venue__media { order: -1; }
}

/* ---------- Tiles (explore links) ---------- */

.tiles {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px; background: var(--rule);
}
.tile {
  position: relative; display: block; text-decoration: none;
  aspect-ratio: 4 / 3; overflow: hidden; background: var(--night);
}
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .35s, transform .5s;
}
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,17,25,.88) 0%, rgba(9,17,25,.28) 55%, rgba(9,17,25,.1) 100%);
}
.tile:hover img, .tile:focus-visible img { transform: scale(1.04); }
.tile span {
  position: absolute; left: 1.4rem; bottom: 1.2rem; right: 1.4rem;
  color: #fff; font-family: var(--display); font-size: var(--step-1);
  z-index: 1;
}

/* ---------- Menus ---------- */

.menu { max-width: 780px; }
.menu__section {
  font-family: var(--display); font-size: var(--step-2);
  margin: 3rem 0 1.5rem; padding-bottom: .5rem;
  border-bottom: 1px solid var(--rule);
}
.menu__section:first-child { margin-top: 0; }

.dish { margin-bottom: 1.6rem; }
.dish__line {
  display: flex; align-items: baseline; gap: .6rem;
  font-family: var(--display); font-size: var(--step-1);
}
.dish__name { flex: 0 1 auto; }
.dish__leader {
  flex: 1 1 auto; height: 0;
  border-bottom: 1px dotted var(--rule);
  transform: translateY(-.25em);
  min-width: 1.5rem;
}
.dish__price { flex: 0 0 auto; font-variant-numeric: lining-nums tabular-nums; white-space: nowrap; }
.dish__desc { margin: .3rem 0 0; color: var(--muted); font-size: var(--step--1); max-width: 58ch; }
.dish__tags {
  display: inline-block; margin-top: .25rem;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brass);
}
.menu__cols { columns: 2; column-gap: 3.5rem; }
.menu__cols > * { break-inside: avoid; }
@media (max-width: 760px) { .menu__cols { columns: 1; } }

.menu__note {
  margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid var(--rule);
  font-size: var(--step--1); color: var(--muted);
}

/* ---------- Accordion ---------- */

.panel {
  border-bottom: 1px solid var(--rule);
}
.panel > summary {
  cursor: pointer; list-style: none;
  padding: 1.3rem 2.5rem 1.3rem 0; position: relative;
  font-family: var(--display); font-size: var(--step-1);
}
.panel > summary::-webkit-details-marker { display: none; }
.panel > summary::after {
  content: "+"; position: absolute; right: .35rem; top: 50%;
  transform: translateY(-50%); font-size: 1.4rem; color: var(--brass);
  font-family: var(--text); font-weight: 300;
}
.panel[open] > summary::after { content: "\2212"; }
.panel__body { padding-bottom: 1.6rem; max-width: var(--measure); }
.panel__body > *:last-child { margin-bottom: 0; }

/* ---------- People ---------- */

.people {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(2.2rem, 4vw, 3.5rem);
}
.person img {
  width: 110px; height: 110px; border-radius: 50%; object-fit: cover;
  object-position: top; margin-bottom: 1.1rem;
}
.person h3 { font-size: var(--step-1); margin-bottom: .15em; }
.person__role {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 1rem; line-height: 1.5;
}
.person__bio p { font-size: var(--step--1); color: var(--muted); max-width: 60ch; }
.person__bio p:last-child { margin-bottom: 0; }

/* ---------- Gallery ---------- */

.gallery {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.gallery figure { margin: 0; }
.gallery figure:nth-child(4n+1) img { aspect-ratio: 4 / 5; }

/* ---------- Facts / detail lists ---------- */

.facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.6rem, 3.5vw, 3rem);
}
.fact h3 {
  font-family: var(--text); font-size: .74rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; color: var(--brass);
  margin-bottom: .8rem;
}
.fact p, .fact li { font-size: var(--step--1); margin-bottom: .5em; }
.fact ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Tables ---------- */

table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; font-size: var(--step--1); }
th, td { text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--rule); vertical-align: top; }
th { font-weight: 400; letter-spacing: .1em; text-transform: uppercase; font-size: .72rem; color: var(--brass); }

/* ---------- Figures ---------- */

figure { margin: 2.5rem 0; }
figure img { width: 100%; }
figcaption { font-size: var(--step--1); color: var(--muted); margin-top: .7rem; }

/* ---------- Prose defaults ---------- */

.prose ul, .prose ol, .panel__body ul, .panel__body ol { padding-left: 1.2rem; margin-bottom: 1.2em; }
.prose li, .panel__body li { margin-bottom: .5em; }
.prose h2 { margin-top: 2.4em; }
.prose h3 { margin-top: 1.8em; }
.prose > h2:first-child, .prose > h3:first-child { margin-top: 0; }

.lede { font-size: var(--step-1); font-weight: 300; max-width: 52ch; }

/* ---------- Callout ---------- */

.callout {
  border-left: 2px solid var(--brass);
  padding: .3rem 0 .3rem 1.4rem;
  margin: 2rem 0;
  color: var(--muted);
  font-size: var(--step--1);
}

/* ---------- Booking strip ---------- */

.booking {
  background: var(--night-2); color: #E8EDF2;
  text-align: left;
}
.booking h2 { color: #fff; }
.booking p { color: rgba(255,255,255,.8); max-width: 48ch; }

/* ---------- Forms ---------- */

.field { margin-bottom: 1.4rem; max-width: 34rem; }
.field label {
  display: block; font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .45rem;
}
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: var(--step-0);
  padding: .8rem .9rem; border: 1px solid var(--rule);
  background: #fff; color: var(--ink);
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--brass); outline: none;
}

/* ---------- Footer ---------- */

.foot {
  background: var(--night); color: rgba(255,255,255,.72);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: var(--step--1);
}
.foot a { text-decoration: none; }
.foot a:hover { color: var(--brass-lt); }
.foot__grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
}
@media (max-width: 860px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__grid { grid-template-columns: 1fr; } }
.foot h2 {
  font-family: var(--text); font-size: .72rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; color: var(--brass-lt);
  margin-bottom: 1.1rem;
}
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: .5rem; }
.foot__logo img { width: 190px; margin-bottom: 1.4rem; }
.foot__social { display: flex; gap: .9rem; margin-top: 1.2rem; }
.foot__social img { width: 22px; height: 22px; opacity: .75; }
.foot__social a:hover img { opacity: 1; }
.foot__base {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center;
  font-size: .8rem; color: rgba(255,255,255,.55);
}
.foot__base ul { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-left: auto; }

/* ---------- Utility ---------- */

.stack > * + * { margin-top: 1.2rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

.split__media--wide img { aspect-ratio: 16 / 8; }

/* Legacy inline icons: keep them icon-sized, not full-measure */
.prose figure img[src$=".svg"],
.menu figure img[src$=".svg"] { width: 58px; }
.prose figure:has(img[src$=".svg"]) { margin: 2.5rem 0 .5rem; }
.prose figure img[src$=".png"][src*="icon"] { width: 58px; }

@media (max-width: 560px) {
  .dish__line { flex-wrap: wrap; }
  .dish__leader { display: none; }
  .dish__price { flex-basis: 100%; color: var(--brass); font-size: var(--step-0); }
}
