/* =============================================================
   MRBL — stylesheet
   Version 1.0 · April 2026
   
   Organisation:
   1. Design tokens (:root)
   2. Theme variants (white, cream default, ink)
   3. Base elements & reset
   4. Typography (display, body, labels, CTAs)
   5. Masthead & navigation
   6. Hero photo + slideshow
   7. Sections (restaurant, menu, bar, private, book)
   8. Footer & gallery
   9. Mobile burger menu
   10. Theme toggle
   11. Utility (reveal, scroll)
   12. Media queries
   ============================================================= */


/* =============================================================
   1. Design tokens
   ============================================================= */
:root {
  /* Colour */
  --ink: #231f20;
  --paper-white: #ffffff;
  --paper-cream: #f6ead0;
  --bronze: #684e21;
  --gold: #d4a85a;

  /* Derived (cream theme) */
  --bg: var(--paper-cream);
  --fg: var(--ink);
  --rule: rgba(35, 31, 32, 0.85);
  --rule-soft: rgba(35, 31, 32, 0.18);
  --muted: rgba(35, 31, 32, 0.55);
  --muted-soft: rgba(35, 31, 32, 0.14);

  /* Typography */
  --display: 'Anton', 'Impact', sans-serif;
  --body: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  --italic: 'Bodoni Moda', 'Bodoni 72', Georgia, serif;

  /* Layout */
  --gutter: clamp(1.25rem, 2.5vw, 2.25rem);
  --max: 1680px;
}


/* =============================================================
   2. Theme variants
   ============================================================= */
[data-theme="white"] {
  --bg: var(--paper-white);
  --rule-soft: rgba(35, 31, 32, 0.15);
  --muted-soft: rgba(35, 31, 32, 0.12);
}

[data-theme="ink"] {
  --bg: var(--ink);
  --fg: var(--paper-cream);
  --rule: rgba(246, 234, 208, 0.85);
  --rule-soft: rgba(246, 234, 208, 0.2);
  --muted: rgba(246, 234, 208, 0.55);
  --muted-soft: rgba(246, 234, 208, 0.14);
}
[data-theme="ink"] .wordmark-art path,
[data-theme="ink"] .footer-mark path { fill: var(--paper-cream); }
[data-theme="ink"] .burger span,
[data-theme="ink"] .mobile-menu-close span { background: var(--paper-cream); }
[data-theme="ink"] .hero-photo-inner::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
}
[data-theme="ink"] .bar-section { background: #0a0a0a; }


/* =============================================================
   3. Base elements
   ============================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 300ms ease, color 300ms ease;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

p { margin: 0 0 1.25rem 0; }
p:last-child { margin-bottom: 0; }

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


/* =============================================================
   4. Typography
   ============================================================= */

/* Display headlines — Anton uppercase */
h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 3rem 0;
  text-wrap: balance;
}

h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}

/* Small uppercase label (eyebrows, footer labels) */
.eyebrow,
.footer-label {
  font-family: var(--display);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 2rem 0;
  opacity: 0.6;
  display: block;
}

.footer-label {
  margin: 0 0 1rem 0;
  font-size: 12px;
}

/* Link CTAs — Anton small caps with underline */
.link-cta {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  transition: opacity 180ms ease;
  color: inherit;
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
}
.link-cta:hover,
.link-cta.reveal.in:hover { opacity: 0.55; }
.reveal.in.link-cta { transition: opacity 180ms ease; }

/* Body / italic helpers */
em, .italic { font-family: var(--italic); font-style: italic; font-weight: 400; }

.intro-body {
  font-family: var(--body);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.7;
  max-width: 54ch;
}
.intro-body p + p { margin-top: 1.3rem; }


/* =============================================================
   5. Masthead & navigation
   ============================================================= */

/* Full-screen masthead on homepage */
.masthead {
  padding: 2rem var(--gutter) 0;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.masthead .meta {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  padding-bottom: 1.5rem;
  align-items: start;
}

.address {
  font-family: var(--italic);
  font-style: italic;
  font-size: 15px;
  line-height: 1.45;
}
.address a { transition: opacity 160ms ease; }
.address a:hover { opacity: 0.6; }

.hours {
  font-family: var(--italic);
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
}
.hours span { display: block; 
}
.wordmark {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  color: var(--fg);
  opacity: 0;
  transform: translateY(12px);
  animation: wordmarkIn 1400ms cubic-bezier(.2,.7,.2,1) 150ms forwards;
}
.wordmark-art {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
/* Only cap height on short landscape viewports to prevent overflow */
@media (max-height: 600px) and (min-aspect-ratio: 2/1) {
  .wordmark-art { max-height: 55vh; }
}
@keyframes wordmarkIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Subpage masthead (book, newsletter, guidelines) — shorter */
.masthead.masthead-sub {
  min-height: auto;
  padding-bottom: 1rem;
}
.masthead.masthead-sub .wordmark {
  flex: 0 0 auto;
  padding: 2.5rem 0 1.5rem;
  display: flex;
  justify-content: center;
  animation: none;
  opacity: 1;
  transform: none;
}
.masthead.masthead-sub .wordmark-art {
  width: auto;
  height: 80px;
  max-width: 100%;
  max-height: none;
  display: block;
}
@media (max-width: 700px) {
  .masthead.masthead-sub .wordmark-art { height: 60px; }
}

/* Navigation — two instances used:
   .nav.nav-static: sits at bottom of masthead, visible on first screen
   .nav.nav-fixed:  position:fixed, hidden until scroll, slides in from top */
.nav {
  width: 100%;
  background: var(--bg);
  transition: background 300ms ease;
}
.nav-static {
  flex-shrink: 0;
  margin-top: 1.5rem;
  position: relative;
}
.nav-fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 220ms ease, transform 220ms ease, background 300ms ease;
  border-bottom: 1px solid var(--rule-soft);
}
.nav-fixed.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
}

.primary-nav {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.35vw, 21px);
}
.primary-nav a {
  padding-bottom: 2px;
  transition: opacity 180ms ease;
}
.primary-nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.book-cta {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.35vw, 21px);
  padding-bottom: 2px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: opacity 180ms ease;
}
.book-cta:hover { opacity: 0.6; }


/* =============================================================
   6. Hero photo + slideshow
   ============================================================= */
.hero {
  max-width: var(--max);
  margin: 3rem auto 0;
  padding: 0 var(--gutter);
}
.hero-photo-inner {
  position: relative;
  aspect-ratio: 1400 / 831;
  overflow: hidden;
  background: #1a1612;
}
.hero-photo-inner img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-photo-inner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.hero-slideshow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff8ea;
  z-index: 2;
  text-shadow: 0 2px 28px rgba(0,0,0,0.35);
  width: 90%; max-width: 900px;
  height: 1.2em;
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  pointer-events: none;
}
.hero-slideshow .phrase {
  position: absolute;
  top: 0; left: 0; right: 0;
  text-align: center;
  opacity: 0;
  white-space: nowrap;
  /* Cycle length = (number of phrases) × per-phrase window.
     With 3 phrases × 4s each = 12s, so each phrase appears every 12s
     and there's no dead air between the last phrase and the loop. */
  animation: phraseCycle 12s infinite;
}
.hero-slideshow .phrase:nth-child(1) { animation-delay: 0s; }
.hero-slideshow .phrase:nth-child(2) { animation-delay: 4s; }
.hero-slideshow .phrase:nth-child(3) { animation-delay: 8s; }
@keyframes phraseCycle {
  /* 12s cycle, 4s per phrase slot: visible 0.6s–2.4s of each slot, fade in/out at the edges. */
  0%, 33.33%, 100% { opacity: 0; }
  6.67%, 26.67%    { opacity: 1; }
}


/* =============================================================
   7. Sections
   ============================================================= */
section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 10vh, 9rem) var(--gutter);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}

/* Image strip — two portrait images side by side */
.image-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
}
.image-strip .plate {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #2a2520;
  margin: 0;
  display: block;
}
.image-strip .plate img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Single-image variant — one wide landscape hero, full-bleed */
.image-strip-single {
  grid-template-columns: 1fr;
  max-width: none;
  padding: 0;
  margin: 0;
}
.image-strip .plate-wide {
  aspect-ratio: 16 / 9;
}


/* --- Menu ------------------------------------------------- */
.menu-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.menu-head h2 { margin: 0; }

.menu-tabs {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.menu-tabs button {
  background: none;
  border: none;
  padding: 0 0 3px;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}
.menu-tabs button:hover { color: var(--fg); border-bottom-color: var(--muted-soft); }
.menu-tabs button.active {
  color: var(--fg);
  border-bottom-color: var(--fg);
}

.menu-provenance {
  font-family: var(--body);
  font-style: italic;
  font-size: 15.5px;
  max-width: 62ch;
  margin: 0 0 3rem 0;
  opacity: 0.75;
  line-height: 1.65;
  text-wrap: pretty;
}

.menu-panel { display: none; }
.menu-panel.active {
  display: block;
  animation: menuFade 500ms cubic-bezier(.2,.7,.2,1);
}
@keyframes menuFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.menu-section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--rule);
}
.menu-section-title:first-child { margin-top: 0; }

.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1.5rem;
  padding: 1rem 0;
  font-size: 1.1rem;
  align-items: baseline;
}
.menu-list li + li { border-top: 1px dotted var(--muted-soft); }

.dish-main { font-family: var(--body); font-weight: 400; }
.dish-desc {
  display: block;
  font-family: var(--body);
  font-style: italic;
  font-size: 0.93rem;
  opacity: 0.6;
  margin-top: 0.3rem;
  line-height: 1.55;
}
.price {
  font-family: var(--body);
  opacity: 0.55;
  font-variant-numeric: lining-nums;
  align-self: start;
  padding-top: 0.1rem;
}

.menu-sub {
  font-family: var(--body);
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.menu-note {
  font-family: var(--body);
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.6;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px dotted var(--muted-soft);
  line-height: 1.65;
  max-width: 64ch;
}

.weight {
  font-family: var(--body);
  font-style: italic;
  opacity: 0.55;
  font-size: 0.9em;
}


/* --- The Bar — full-bleed dark with photo left, copy right - */
.bar-section {
  background: var(--ink);
  color: var(--paper-cream);
  max-width: none !important;
  padding: 0;
  margin: 0;
}
.bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.bar-photo {
  min-height: 600px;
  overflow: hidden;
}
.bar-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.bar-copy {
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: calc(var(--max) / 2);
}
.bar-section .eyebrow { color: var(--gold); opacity: 1; }
.bar-section h2 { color: var(--paper-cream); }
.bar-section .bar-copy-body {
  font-family: var(--body);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.7;
  max-width: 48ch;
  color: var(--paper-cream);
  opacity: 0.92;
}
.bar-section .bar-copy-body p + p { margin-top: 1.2rem; }

.cocktail-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(246,234,208,0.2);
  color: var(--cream);
}

.cocktail-list {
  margin-top: 0;
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(246,234,208,0.2);
}
.cocktail-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px dotted rgba(246,234,208,0.12);
  font-size: 1rem;
}
.cocktail-list .cname { font-family: var(--body); font-weight: 400; }
.cocktail-list .cdesc {
  display: block;
  font-family: var(--body);
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 0.25rem;
  line-height: 1.55;
}
.cocktail-list .price { opacity: 0.75; color: inherit; }

/* --- Private Dining — image-right / copy-left split band -- */
.private-section {
  background: var(--bronze);
  color: var(--paper-cream);
  max-width: none !important;
  padding: 0;
  margin: 0;
}
.private-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: none;
}
.private-copy {
  padding: clamp(5rem, 10vw, 8rem) clamp(3rem, 6vw, 6rem) clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.private-photo {
  min-height: 600px;
  overflow: hidden;
  margin: 0;
}
.private-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.private-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: baseline;
}
.private-inner .eyebrow {
  color: var(--gold);
  opacity: 1;
  margin-bottom: 1.5rem;
}
.private-inner h2 { color: var(--paper-cream); margin-bottom: 2.5rem; }
.private-section .intro-body { color: var(--paper-cream); opacity: 0.88; }
.private-section .link-cta:hover { opacity: 0.65; }


/* --- Book CTA at bottom --------------------------------- */
.cta {
  text-align: center;
  padding: clamp(6rem, 12vw, 10rem) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.cta h2 { margin-bottom: 2.5rem; }
.cta p {
  max-width: 48ch;
  margin: 0 auto 1.25rem;
  opacity: 0.75;
  font-size: 1.1rem;
  line-height: 1.65;
}
/* Keep the generous gap before the CTA button, just not between every paragraph. */
.cta p:last-of-type { margin-bottom: 3rem; }


/* =============================================================
   8. Footer + gallery
   ============================================================= */

/* Horizontal-scroll gallery */
.gallery-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 5vw, 4rem);
  overflow: hidden;
}
.gallery-section .eyebrow {
  padding: 0 var(--gutter);
  margin-bottom: 1.5rem;
}
.gallery-track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 var(--gutter) 1rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.dragging { cursor: grabbing; }
.gallery-track > figure,
.gallery-track > a {
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 280px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1a1612;
  scroll-snap-align: start;
  margin: 0;
}
.gallery-track img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

footer {
  border-top: 1px solid var(--rule-soft);
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem var(--gutter) 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.7;
}
footer a {
  transition: opacity 160ms ease;
  display: block;
  margin-bottom: 0.25rem;
}
footer a:hover {
  opacity: 0.6;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-mark {
  display: block;
  width: 140px;
  max-width: 100%;
  line-height: 0;
  color: var(--fg);
}
.footer-mark svg { width: 100%; height: auto; }

.footnote {
  font-size: 12px;
  opacity: 0.5;
  text-align: center;
  padding: 1.5rem var(--gutter) 0.5rem;
  font-style: italic;
}
.footnote-brand {
  font-size: 11px;
  opacity: 0.4;
  text-align: center;
  padding: 0 var(--gutter) 2.5rem;
  font-style: italic;
}
.footnote-brand a {
  transition: opacity 160ms ease;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.footnote-brand a:hover { opacity: 0.7; }


/* =============================================================
   9. Mobile burger menu
   ============================================================= */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  align-self: center;
  margin-top: 0.3rem;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  transition: background 200ms ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  color: var(--fg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-close {
  position: absolute;
  top: 1.75rem;
  right: var(--gutter);
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close span {
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
}
.mobile-menu-close span:first-child { transform: rotate(45deg); }
.mobile-menu-close span:last-child { transform: rotate(-45deg); }

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--italic);
  font-style: italic;
  font-size: 28px;
  line-height: 1;
}
.mobile-menu-links a {
  color: var(--fg);
  padding: 0.3rem 0;
}
.mobile-menu-book {
  font-family: var(--display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-soft);
  margin-top: 1rem;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--fg);
  font-style: normal;
}

.mobile-menu-mark {
  position: absolute;
  bottom: 2.5rem;
  width: 100px;
  line-height: 0;
  color: var(--fg);
  opacity: 0.4;
}
.mobile-menu-mark svg { width: 100%; height: auto; }


/* =============================================================
   10. Theme toggle
   ============================================================= */
.theme-toggle {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 100;
  background: var(--ink);
  color: var(--paper-cream);
  padding: 0.55rem 1rem;
  font-family: var(--italic);
  font-style: italic;
  font-size: 12px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: opacity 200ms ease;
}
.theme-toggle:hover { opacity: 0.88; }
[data-theme="ink"] .theme-toggle {
  background: var(--paper-cream);
  color: var(--ink);
}


/* =============================================================
   11. Utility
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1000ms cubic-bezier(.2,.7,.2,1),
              transform 1000ms cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================================
   12. Media queries (consolidated)
   ============================================================= */
@media (max-width: 900px) {
  .nav-inner { gap: 1rem; }
  .primary-nav {
    gap: 1.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
  }
  .primary-nav::-webkit-scrollbar { display: none; }
  .primary-nav a { flex-shrink: 0; }
  .book-cta { flex-shrink: 0; }

  .intro { grid-template-columns: 1fr; }
  .private-inner { grid-template-columns: 1fr; }
  .private-photo { min-height: 320px; order: -1; }
  .private-copy { max-width: none; padding: 3rem var(--gutter); }

  footer { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 780px) {
  .menu-grid { grid-template-columns: 1fr; }
  .bar-inner { grid-template-columns: 1fr; }
  .bar-photo { min-height: 0; aspect-ratio: 831 / 1247; }
  .bar-copy { padding: 3rem var(--gutter); }
  .image-strip { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  /* Show burger, hide desktop nav */
  .burger { display: flex; }
  .nav-static,
  .nav-fixed { display: none !important; }

  /* Meta reflowed: address left, burger centre, hours right */
  .masthead .meta {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .address { grid-column: 1; }
  .hours { grid-column: 3; }

  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    width: 100%;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tabs button { flex-shrink: 0; }
}

@media (max-width: 520px) {
  .primary-nav { font-size: 15px; }
  .book-cta { font-size: 15px; }
}

@media (max-width: 480px) {
  /* Keep the 3-column header (address | burger | hours) on phones —
     shrinks type instead of stacking, so the masthead stays compact. */
  .masthead .meta {
    grid-template-columns: 1fr auto 1fr;
    gap: 0.6rem;
    align-items: start;
  }
  .address { grid-column: 1; grid-row: 1; font-size: 11px; line-height: 1.35; }
  .burger  { grid-column: 2; grid-row: 1; justify-self: center; }
  .hours   { grid-column: 3; grid-row: 1; text-align: right; font-size: 10px; line-height: 1.5; }
  .hours span { white-space: nowrap; }

  .mobile-menu-links { font-size: 24px; }

  footer { grid-template-columns: 1fr; gap: 2rem; }
}


/* =============================================================
   Subpage helpers (book, newsletter)
   ============================================================= */
.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vh, 6rem) var(--gutter);
}
.page-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0 0 2rem;
  text-wrap: balance;
}
.page-lead {
  font-family: var(--body);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.7;
  max-width: 54ch;
  margin-bottom: 3rem;
}

/* Simple form styling */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 480px;
  margin-bottom: 1.5rem;
}
.form-group label {
  font-family: var(--display);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
}
.form-group input {
  font-family: var(--body);
  font-size: 1.05rem;
  padding: 0.8rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  color: var(--fg);
  outline: none;
  transition: border-color 180ms ease;
}
.form-group input:focus { border-bottom-color: var(--fg); }

.resdiary-embed {
  max-width: 900px;
  margin: 2rem auto 0;
  background: var(--paper-white);
  border: 1px solid var(--muted-soft);
  padding: 2rem;
}
[data-theme="ink"] .resdiary-embed {
  background: rgba(246, 234, 208, 0.05);
  border-color: var(--rule-soft);
}
.resdiary-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 700px;
  background: var(--paper-cream);
  border: 1px dashed var(--muted-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}
[data-theme="ink"] .resdiary-placeholder {
  background: rgba(246, 234, 208, 0.03);
}
.resdiary-placeholder p {
  font-style: italic;
  max-width: 40ch;
  opacity: 0.7;
  margin: 0;
}
.resdiary-placeholder code {
  font-family: monospace;
  font-size: 12px;
  opacity: 0.5;
}
