/* ==========================================================================
   Marrow & Sage — dark, editorial, candlelit.
   Design tokens first. Square corners, hairline rules, no shadows.
   ========================================================================== */

:root {
  /* Colour */
  --night: #12100d;          /* page */
  --soot: #0b0a08;           /* deepest: notice bar, footer base */
  --char: #1a1713;           /* raised panels: menu card, reservation strip */
  --cream: #ece2d0;          /* primary text  (14.6:1 on night) */
  --bone: #b9ae98;           /* secondary text (8.4:1 on night) */
  --brass: #c9a36a;          /* accent: labels, rules, focus (7.6:1 on night) */
  --ember: #d97a41;          /* hover/active only (6:1 on night) */
  --hair: rgba(236, 226, 208, .16);
  --hair-strong: rgba(236, 226, 208, .38);

  /* Type */
  --serif: "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", serif;
  --sans: "Jost", "Futura", "Century Gothic", system-ui, sans-serif;

  /* Space */
  --gutter: clamp(20px, 4.5vw, 72px);
  --measure: 1240px;
  --band: clamp(88px, 11vw, 168px);
  --mast-h: 88px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: dark; }

body {
  margin: 0;
  background: var(--night);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.nav-locked { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; margin: 0; padding: 0; }
figure, blockquote, dl, dd { margin: 0; }
p { margin: 0 0 1.3em; }
a { color: inherit; }

h1, h2, h3 { margin: 0; font-weight: 300; color: var(--cream); }
h1, h2 { font-family: var(--serif); letter-spacing: -.012em; text-wrap: balance; }
h1 { font-size: clamp(2.9rem, 7.4vw, 6.75rem); line-height: .98; }
h2 { font-size: clamp(2.15rem, 4.3vw, 3.75rem); line-height: 1.06; }

:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; }
[id] { scroll-margin-top: var(--mast-h); }

.skip {
  position: absolute; left: 12px; top: -80px; z-index: 100;
  padding: 12px 18px; background: var(--cream); color: var(--night);
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; text-decoration: none;
}
.skip:focus { top: 12px; }

/* --- Shared small parts -------------------------------------------------- */

.label {
  margin: 0 0 22px;
  font-family: var(--sans); font-weight: 500; font-size: .72rem;
  letter-spacing: .32em; text-transform: uppercase; color: var(--brass);
}
.label--ruled { display: inline-flex; align-items: center; gap: 18px; }
.label--ruled::before, .label--ruled::after { content: ""; width: clamp(24px, 5vw, 64px); height: 1px; background: currentColor; opacity: .7; }

.button {
  display: inline-block; padding: 17px 30px 16px;
  border: 1px solid var(--hair-strong); border-radius: 0; background: transparent;
  color: var(--cream); font-family: var(--sans); font-weight: 500; font-size: .74rem;
  letter-spacing: .26em; text-transform: uppercase; text-decoration: none; text-align: center;
  cursor: pointer; transition: background .25s, color .25s, border-color .25s;
}
.button:hover { background: var(--cream); border-color: var(--cream); color: var(--night); }
.button--solid { background: var(--cream); border-color: var(--cream); color: var(--night); }
.button--solid:hover { background: var(--brass); border-color: var(--brass); }
.button--small { padding: 12px 20px 11px; font-size: .68rem; }

.textlink {
  display: inline-block; padding-bottom: 6px; border-bottom: 1px solid var(--brass);
  color: var(--cream); font-weight: 500; font-size: .74rem; letter-spacing: .24em;
  text-transform: uppercase; text-decoration: none; transition: color .25s, border-color .25s;
}
.textlink::after { content: "→"; display: inline-block; margin-left: 10px; letter-spacing: 0; transition: transform .25s; }
.textlink:hover { color: var(--ember); border-color: var(--ember); }
.textlink:hover::after { transform: translateX(4px); }

.heading { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.heading__sub { max-width: 520px; margin: 26px auto 0; }

.js [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .9s ease, transform .9s ease; }
.js [data-reveal].is-seen { opacity: 1; transform: none; }

/* --- Notice bar ---------------------------------------------------------- */

.notice {
  margin: 0; padding: 9px var(--gutter); background: var(--soot); border-bottom: 1px solid var(--hair);
  color: var(--bone); font-size: .7rem; font-weight: 400; letter-spacing: .14em; line-height: 1.6;
  text-transform: uppercase; text-align: center;
}
.notice a { color: var(--brass); text-decoration: none; border-bottom: 1px solid transparent; white-space: nowrap; }
.notice a:hover { border-bottom-color: currentColor; }

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

.masthead {
  position: sticky; top: 0; z-index: 50; height: var(--mast-h);
  background: var(--night); border-bottom: 1px solid var(--hair);
  transition: background .35s, border-color .35s;
}
.js .masthead.is-top:not(.is-open) { background: transparent; border-bottom-color: transparent; }

.masthead__inner {
  height: 100%; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
}
.masthead__nav { display: flex; gap: clamp(18px, 2.2vw, 36px); }
.masthead__nav a, .masthead__tel {
  position: relative; padding: 8px 0; color: var(--cream); text-decoration: none; white-space: nowrap;
  font-weight: 400; font-size: .7rem; letter-spacing: .24em; text-transform: uppercase;
}
.masthead__nav a::after {
  content: ""; position: absolute; left: 0; right: .24em; bottom: 2px; height: 1px;
  background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.masthead__nav a:hover::after { transform: scaleX(1); }
.masthead__nav-reserve { display: none; }
.masthead__tel:hover { color: var(--brass); }
.masthead__actions { display: flex; justify-content: flex-end; align-items: center; gap: 28px; }
.masthead__toggle { display: none; }

.wordmark {
  font-family: var(--serif); font-weight: 400; font-size: 1.5rem; line-height: 1;
  letter-spacing: .3em; text-transform: uppercase; text-decoration: none; color: var(--cream);
  white-space: nowrap; margin-right: -.3em;
}
.wordmark span { font-style: italic; font-weight: 300; letter-spacing: 0; color: var(--brass); margin: 0 .12em 0 -.12em; text-transform: none; }

/* --- Cover (hero) -------------------------------------------------------- */

.cover {
  position: relative; isolation: isolate; overflow: hidden;
  margin-top: calc(-1 * var(--mast-h));
  height: clamp(620px, 94vh, 940px);
  height: clamp(620px, 94svh, 940px);
  display: grid; grid-template-rows: 1fr auto; text-align: center;
}
.cover__photo { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.cover::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 48%, rgba(11, 10, 8, .5), transparent 72%),
    linear-gradient(to bottom, rgba(11, 10, 8, .82) 0%, rgba(11, 10, 8, .54) 26%, rgba(11, 10, 8, .56) 62%, rgba(18, 16, 13, .94) 90%, var(--night) 100%);
}
.cover__body { align-self: center; padding: calc(var(--mast-h) + 24px) var(--gutter) 24px; }
.cover__body h1 { max-width: 11.5em; margin: 0 auto; text-shadow: 0 1px 30px rgba(0, 0, 0, .45); }
.cover__body .label { margin-bottom: 30px; }
.cover__actions { margin-top: 46px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.cover__actions .button:not(.button--solid) { border-color: rgba(236, 226, 208, .6); }

.cover__facts {
  width: min(100% - 2 * var(--gutter), 920px); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hair-strong);
}
.cover__facts li {
  padding: 22px 12px 26px; font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  color: var(--cream); line-height: 1.3;
}
.cover__facts li + li { border-left: 1px solid var(--hair-strong); }
.cover__facts span {
  display: block; margin-bottom: 6px; font-family: var(--sans); font-weight: 500; font-size: .66rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--brass);
}

/* --- Preface ------------------------------------------------------------- */

.preface { padding: clamp(56px, 7vw, 104px) var(--gutter) 0; text-align: center; }
.preface__mark { display: block; width: 1px; height: 72px; margin: 0 auto 44px; background: linear-gradient(var(--brass), transparent); }
.preface p {
  max-width: 880px; margin: 0 auto; font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.55rem, 2.7vw, 2.3rem); line-height: 1.38; color: var(--cream); text-wrap: pretty;
}

/* --- Carte (menu) -------------------------------------------------------- */

.carte { padding: var(--band) 0; }

.carte__card {
  position: relative; width: min(100% - 2 * var(--gutter), 1120px);
  margin: clamp(48px, 6vw, 84px) auto 0; padding: clamp(36px, 5.5vw, 84px) clamp(22px, 5.5vw, 88px) clamp(32px, 4vw, 56px);
  background: var(--char); border: 1px solid var(--hair);
  display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(40px, 7vw, 112px);
}
.carte__card::before { content: ""; position: absolute; inset: 7px; border: 1px solid var(--hair); pointer-events: none; }
.carte__card::after { content: ""; position: absolute; left: 50%; top: clamp(44px, 6vw, 92px); bottom: 132px; width: 1px; background: var(--hair); }

.course + .course { margin-top: clamp(44px, 5vw, 68px); }
.course h3 {
  margin-bottom: 30px; text-align: center; font-family: var(--sans); font-weight: 500; font-size: .76rem;
  letter-spacing: .34em; text-transform: uppercase; color: var(--brass);
}
.course h3::after { content: ""; display: block; width: 28px; height: 1px; margin: 16px auto 0; background: var(--brass); opacity: .6; }
.course li + li { margin-top: 22px; }
.course li p { margin: 3px 0 0; font-family: var(--serif); font-style: italic; font-size: 1.2rem; line-height: 1.4; color: var(--bone); }

.dish { display: flex; align-items: baseline; font-family: var(--serif); font-size: 1.42rem; font-weight: 500; line-height: 1.25; color: var(--cream); }
.dish__dots { flex: 1; min-width: 28px; margin: 0 10px; border-bottom: 1px dotted rgba(236, 226, 208, .42); transform: translateY(-5px); }
.dish__price { font-weight: 400; font-variant-numeric: lining-nums; }

.carte__note {
  grid-column: 1 / -1; margin: clamp(40px, 5vw, 64px) 0 0; padding-top: 26px; border-top: 1px solid var(--hair);
  text-align: center; font-family: var(--serif); font-style: italic; font-size: 1.12rem; color: var(--bone);
}

/* --- Mosaic -------------------------------------------------------------- */

.mosaic {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(190px, 23vw, 380px);
  gap: 6px; padding: 0 6px;
}
.mosaic img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) brightness(.9); transition: filter .6s; }
.mosaic img:hover { filter: none; }
.mosaic__a { grid-column: 1 / 3; grid-row: 1 / 3; object-position: 72% 50%; }
.mosaic__b { grid-column: 3; grid-row: 1 / 3; }
.mosaic__c { grid-column: 4; grid-row: 1; }
.mosaic__d { grid-column: 4; grid-row: 2; }
.mosaic__e { grid-column: 1; grid-row: 3; object-position: 50% 58%; }
.mosaic__f { grid-column: 2 / 4; grid-row: 3; }
.mosaic__g { grid-column: 4; grid-row: 3; }

/* --- Chapters (story, events) ------------------------------------------- */

.chapter { display: grid; grid-template-columns: 5fr 6fr; align-items: stretch; margin-top: var(--band); }
.chapter__photo { min-height: clamp(520px, 56vw, 820px); position: relative; }
.chapter__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.chapter__text {
  align-self: center; max-width: 720px;
  padding: clamp(40px, 6vw, 96px) var(--gutter) clamp(40px, 6vw, 96px) clamp(36px, 7vw, 120px);
}
.chapter__text h2 { margin-bottom: 32px; }
.chapter__text .textlink, .chapter__text .button { margin-top: 18px; }

.chapter--flip { grid-template-columns: 6fr 5fr; margin-top: 0; padding-top: var(--band); }
.chapter--flip .chapter__photo { order: 2; min-height: clamp(460px, 46vw, 680px); }
.chapter--flip .chapter__text { justify-self: end; padding: clamp(40px, 6vw, 96px) clamp(36px, 7vw, 120px) clamp(40px, 6vw, 96px) var(--gutter); }

.trio {
  order: 3; grid-column: 1 / -1; width: min(100% - 2 * var(--gutter), var(--measure)); margin: clamp(56px, 7vw, 96px) auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
}
.trio li { padding: 40px clamp(20px, 3vw, 44px) 36px; counter-increment: trio; }
.trio li + li { border-left: 1px solid var(--hair); }
.trio li::before {
  content: counter(trio, upper-roman) "."; display: block; margin-bottom: 14px;
  font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--brass);
}
.trio h3 { text-wrap: balance; font-family: var(--serif); font-size: 1.62rem; font-weight: 400; line-height: 1.2; margin-bottom: 12px; }
.trio p { margin: 0; font-size: 1rem; }

/* --- Ember band ---------------------------------------------------------- */

.ember {
  position: relative; isolation: isolate; margin-top: var(--band);
  min-height: clamp(440px, 52vw, 700px); display: grid; place-items: center;
  padding: 80px var(--gutter); text-align: center;
}
.ember img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 30% 40%; }
.ember::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(11, 10, 8, .55), transparent 75%), linear-gradient(to bottom, var(--night) 0%, rgba(11, 10, 8, .62) 22%, rgba(11, 10, 8, .62) 78%, var(--night) 100%); }
.ember p {
  max-width: 17em; margin: 0; font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.9rem, 4.2vw, 3.6rem); line-height: 1.16; color: var(--cream); text-wrap: balance;
  text-shadow: 0 1px 24px rgba(0, 0, 0, .5);
}
.ember p span {
  display: block; margin-top: 34px; font-family: var(--sans); font-style: normal; font-weight: 500;
  font-size: .72rem; letter-spacing: .32em; text-transform: uppercase; color: var(--brass); text-shadow: none;
}

/* --- Voices (reviews) ---------------------------------------------------- */

.voices { padding: var(--band) 0; }
.voices__row {
  width: min(100% - 2 * var(--gutter), var(--measure)); margin: clamp(48px, 6vw, 80px) auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.voices figure { padding: 8px clamp(22px, 3.4vw, 56px); text-align: center; display: flex; flex-direction: column; }
.voices figure + figure { border-left: 1px solid var(--hair); }
.voices__stars { margin-bottom: 24px; font-size: .68rem; letter-spacing: .3em; color: var(--brass); }
.voices blockquote { flex: 1; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.4rem, 1.9vw, 1.72rem); line-height: 1.36; color: var(--cream); }
.voices figcaption { margin-top: 28px; font-weight: 400; font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; color: var(--bone); }

/* --- Visit --------------------------------------------------------------- */

.visit { padding: var(--band) 0; border-top: 1px solid var(--hair); }
.visit__row {
  width: min(100% - 2 * var(--gutter), var(--measure)); margin: clamp(48px, 6vw, 80px) auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); text-align: center;
}
.visit__col { padding: 6px clamp(22px, 3.2vw, 52px); }
.visit__col + .visit__col { border-left: 1px solid var(--hair); }
.visit__col h3 { margin-bottom: 28px; font-family: var(--sans); font-weight: 500; font-size: .74rem; letter-spacing: .34em; text-transform: uppercase; color: var(--brass); }
.visit__big { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.6rem); text-wrap: balance; font-weight: 400; line-height: 1.32; color: var(--cream); }
.visit__links { margin: 30px 0 0; display: flex; flex-direction: column; align-items: center; gap: 20px; }

.hours div { padding: 0 0 18px; }
.hours div + div { padding-top: 18px; border-top: 1px solid var(--hair); }
.hours div:last-child { padding-bottom: 0; }
.hours dt { font-size: .82rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; }
.hours dd { font-family: var(--serif); font-size: 1.6rem; line-height: 1.3; color: var(--cream); }

.visit__list { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--hair); font-size: .98rem; line-height: 1.5; }
.visit__list li + li { margin-top: 9px; }

/* --- Book (reservation strip) ------------------------------------------- */

.book { padding: clamp(64px, 8vw, 116px) var(--gutter); background: var(--char); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.book__intro { max-width: 640px; margin: 0 auto; text-align: center; }
.book__intro h2 { margin-bottom: 24px; }
.book__intro p:last-child { margin-bottom: 0; }

.book__strip {
  max-width: var(--measure); margin: clamp(44px, 5vw, 68px) auto 0;
  display: grid; grid-template-columns: 1.3fr 1.2fr 1.1fr 1fr .7fr; gap: 34px clamp(18px, 2.4vw, 36px); align-items: end;
}
.field { min-width: 0; }
.field--wide { grid-column: 1 / 5; }
.field label { display: block; margin-bottom: 4px; font-weight: 500; font-size: .66rem; letter-spacing: .28em; text-transform: uppercase; color: var(--brass); }
.field label span { color: var(--bone); letter-spacing: .12em; }
.field input {
  width: 100%; height: 48px; padding: 0; border: 0; border-bottom: 1px solid var(--hair-strong); border-radius: 0;
  background: transparent; color: var(--cream); font-family: var(--serif); font-size: 1.4rem; font-weight: 400;
  -webkit-appearance: none; appearance: none; transition: border-color .25s;
}
.field input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
.field input::placeholder { color: var(--bone); opacity: .75; font-style: italic; }
.field input:hover { border-bottom-color: var(--cream); }
.field input:focus-visible { outline: none; border-bottom-color: var(--brass); box-shadow: 0 2px 0 var(--brass); }
.book__strip .button { height: 52px; padding-top: 0; padding-bottom: 0; white-space: nowrap; }

.book__status { grid-column: 1 / -1; margin: 0; text-align: center; font-family: var(--serif); font-style: italic; font-size: 1.3rem; line-height: 1.4; color: var(--cream); }
.book__status:empty { display: none; }
.book__status.is-shown { padding: 20px 24px; border: 1px solid var(--brass); }

.book__contact {
  max-width: var(--measure); margin: clamp(40px, 5vw, 60px) auto 0; padding-top: 28px; border-top: 1px solid var(--hair);
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 0;
  font-size: .74rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase;
}
.book__contact li { padding: 0 22px; }
.book__contact li + li { border-left: 1px solid var(--hair-strong); }
.book__contact a { color: var(--cream); text-decoration: none; border-bottom: 1px solid var(--hair-strong); padding-bottom: 2px; }
.book__contact a:hover { color: var(--brass); border-bottom-color: var(--brass); }
.book__contact a[href^="mailto"] { text-transform: none; letter-spacing: .08em; font-size: .88rem; }

/* --- Colophon (footer) --------------------------------------------------- */

.colophon { padding: clamp(72px, 9vw, 128px) var(--gutter) 0; background: var(--night); text-align: center; }
.wordmark--large { display: inline-block; font-size: clamp(1.7rem, 4.4vw, 3.1rem); font-weight: 300; }
.colophon__line { max-width: 560px; text-wrap: balance; margin: 26px auto 0; font-family: var(--serif); font-style: italic; font-size: 1.3rem; line-height: 1.4; }
.colophon__nav { margin-top: 44px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px clamp(20px, 3vw, 44px); }
.colophon__nav a { padding: 4px 0; color: var(--cream); text-decoration: none; font-weight: 400; font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; border-bottom: 1px solid transparent; }
.colophon__nav a:hover { border-bottom-color: var(--brass); }
.colophon__contact { margin: 36px 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 0; font-size: .95rem; }
.colophon__contact > * { padding: 0 18px; }
.colophon__contact > * + * { border-left: 1px solid var(--hair-strong); }
.colophon__contact a { color: var(--cream); text-decoration: none; }
.colophon__contact a:hover { color: var(--brass); }
.colophon__base {
  max-width: var(--measure); margin: clamp(56px, 7vw, 88px) auto 0; padding: 26px 0 30px; border-top: 1px solid var(--hair);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px;
  font-size: .7rem; font-weight: 400; letter-spacing: .16em; text-transform: uppercase;
}
.colophon__base a { color: var(--brass); text-decoration: none; border-bottom: 1px solid transparent; }
.colophon__base a:hover { border-bottom-color: currentColor; }

/* --- Dock (phone-only action bar) ---------------------------------------- */

.dock { display: none; }

/* ==========================================================================
   Narrower screens
   ========================================================================== */

@media (max-width: 1280px) {
  .masthead__tel { display: none; }
}

@media (max-width: 1180px) {
  .book__strip { grid-template-columns: repeat(6, 1fr); }
  .book__strip .field { grid-column: span 3; }
  .book__strip .field:nth-child(3), .book__strip .field:nth-child(4), .book__strip .field--narrow { grid-column: span 2; }
  .book__strip .field--wide { grid-column: span 4; }
  .book__strip .button { grid-column: span 2; }
}

@media (max-width: 1100px) {
  :root { --mast-h: 68px; }

  .masthead__inner { grid-template-columns: 1fr auto; }
  .masthead__actions { display: none; }
  .wordmark { position: relative; z-index: 2; font-size: 1.2rem; letter-spacing: .24em; justify-self: start; }
  .wordmark--large { font-size: clamp(1.5rem, 6.4vw, 2.6rem); }

  .masthead__toggle {
    position: relative; z-index: 2; display: block; width: 48px; height: 48px; margin-right: -10px;
    padding: 0; border: 0; background: transparent; cursor: pointer;
  }
  .masthead__toggle span { position: absolute; left: 10px; right: 10px; height: 1px; background: var(--cream); transition: transform .3s, top .3s; }
  .masthead__toggle span:first-child { top: 19px; }
  .masthead__toggle span:last-child { top: 28px; }
  .is-open .masthead__toggle span:first-child { top: 24px; transform: rotate(45deg); }
  .is-open .masthead__toggle span:last-child { top: 24px; transform: rotate(-45deg); }

  .masthead__nav {
    position: fixed; inset: 0; z-index: 1; padding: 96px var(--gutter) 40px; background: var(--night);
    flex-direction: column; justify-content: center; align-items: center; gap: 4px;
    visibility: hidden; opacity: 0; transition: opacity .3s, visibility .3s;
  }
  .is-open .masthead__nav { visibility: visible; opacity: 1; }
  .masthead__nav a {
    padding: 12px 8px; font-family: var(--serif); font-weight: 300; font-size: clamp(1.9rem, 7vw, 2.6rem);
    letter-spacing: 0; text-transform: none;
  }
  .masthead__nav a::after { display: none; }
  .masthead__nav .masthead__nav-reserve {
    display: block; margin-top: 28px; padding: 17px 30px 16px; border: 1px solid var(--hair-strong);
    font-family: var(--sans); font-weight: 500; font-size: .74rem; letter-spacing: .26em; text-transform: uppercase;
  }

}

@media (max-width: 960px) {
  .chapter, .chapter--flip { grid-template-columns: 1fr; }
  .chapter__photo, .chapter--flip .chapter__photo { order: 0; min-height: 0; height: clamp(340px, 78vw, 620px); }
  .chapter__text, .chapter--flip .chapter__text { justify-self: start; max-width: 680px; padding: 52px var(--gutter) 0; }

  .trio, .voices__row, .visit__row { grid-template-columns: 1fr; }
  .trio li { padding: 30px 4px 28px; }
  .trio li + li, .voices figure + figure, .visit__col + .visit__col { border-left: 0; border-top: 1px solid var(--hair); }
  .voices figure { padding: 40px 0; }
  .voices figure:first-child { padding-top: 0; }
  .voices figure:last-child { padding-bottom: 0; }
  .visit__col { padding: 44px 0; }
  .visit__col:first-child { padding-top: 0; }
  .visit__col:last-child { padding-bottom: 0; }
  .voices__row, .visit__row { max-width: 560px; }
}

@media (max-width: 760px) {
  body { font-size: 1rem; padding-bottom: 58px; }

  .notice { font-size: .62rem; letter-spacing: .1em; padding: 8px 14px; }

  .cover { height: clamp(600px, 92vh, 780px); height: clamp(600px, 92svh, 780px); }
  .cover__body .label { font-size: .64rem; letter-spacing: .24em; gap: 12px; }
  .cover__actions { margin-top: 36px; flex-direction: column; align-items: center; }
  .cover__actions .button { width: min(100%, 300px); }
  .cover__facts li { padding: 16px 6px 22px; font-size: 1.02rem; }
  .cover__facts span { font-size: .56rem; letter-spacing: .2em; }

  .preface__mark { height: 52px; margin-bottom: 32px; }

  /* One column, re-ordered to read as a meal: start, fire, table, finish */
  .carte__card { grid-template-columns: 1fr; row-gap: 52px; }
  .carte__card::after { display: none; }
  .carte__column { display: contents; }
  .course + .course { margin-top: 0; }
  .carte__column:first-child .course:last-child { order: 3; }
  .carte__column:last-child .course:first-child { order: 2; }
  .carte__column:last-child .course:last-child { order: 4; }
  .carte__note { order: 5; margin-top: 0; }
  .dish { font-size: 1.28rem; }
  .dish__dots { min-width: 18px; margin: 0 8px; }

  .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 46vw; grid-auto-flow: dense; gap: 4px; padding: 0 4px; }
  .mosaic img { grid-column: auto; grid-row: auto; }
  .mosaic .mosaic__a { grid-column: 1 / 3; grid-row: span 2; }
  .mosaic .mosaic__b { grid-row: span 2; }
  .mosaic .mosaic__f { grid-column: 1 / 3; }

  .book__strip { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .book__strip .field, .book__strip .field:nth-child(3), .book__strip .field:nth-child(4) { grid-column: span 1; }
  .book__strip .field:nth-child(1), .book__strip .field:nth-child(2), .book__strip .field--narrow, .book__strip .field--wide, .book__strip .button { grid-column: 1 / -1; }
  .book__contact { flex-direction: column; align-items: center; gap: 14px; text-align: center; }
  .book__contact li + li { border-left: 0; }

  .colophon__contact { flex-direction: column; gap: 4px; }
  .colophon__contact > * + * { border-left: 0; }
  .colophon__base { justify-content: center; text-align: center; flex-direction: column; align-items: center; }

  .dock {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: grid; grid-template-columns: 1fr 2fr;
    background: var(--soot); border-top: 1px solid var(--hair-strong);
  }
  .dock a {
    padding: 19px 8px 18px; text-align: center; text-decoration: none; color: var(--cream);
    font-weight: 500; font-size: .7rem; letter-spacing: .24em; text-transform: uppercase;
  }
  .dock a:last-child { background: var(--cream); color: var(--night); }
  .nav-locked .dock { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
