/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
.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; }

/* ── TOKENS ──────────────────────────────────────── */
:root {
  /* Palette — "The Red Facade" */
  --bg:           oklch(0.97 0.000 0);      /* true neutral off-white */
  --surface:      oklch(0.94 0.005 22);     /* very slightly warm light */
  --border:       oklch(0.87 0.006 22);     /* warm light rule */
  --primary:      oklch(0.38 0.155 22);     /* deep oxblood/crimson — the pub facade */
  --primary-mid:  oklch(0.28 0.120 22);     /* darker crimson for overlays */
  --primary-h:    oklch(0.44 0.155 22);     /* lighter on hover */
  --accent:       oklch(0.72 0.12 78);      /* heraldic amber-gold */
  --accent-h:     oklch(0.80 0.12 78);      /* gold hover */
  --ink:          oklch(0.12 0.010 22);     /* near-black, warm tint */
  --muted:        oklch(0.40 0.012 22);     /* dark warm gray — body text on white */
  --subtle:       oklch(0.62 0.008 22);     /* lighter secondary */
  --on-primary:   oklch(0.97 0.000 0);      /* text on crimson bg */

  /* Typography */
  --display: 'Barlow Condensed', system-ui, sans-serif;
  --body:    'Libre Baskerville', Georgia, serif;

  /* Scale */
  --text-xs:   clamp(0.72rem,  1.4vw,  0.82rem);
  --text-sm:   clamp(0.875rem, 1.7vw,  0.97rem);
  --text-base: clamp(1rem,     2vw,    1.1rem);
  --text-lg:   clamp(1.1rem,   2.2vw,  1.32rem);
  --text-xl:   clamp(1.3rem,   2.8vw,  1.65rem);
  --text-2xl:  clamp(1.65rem,  3.5vw,  2.1rem);
  --text-3xl:  clamp(2.1rem,   5vw,    3.3rem);
  --text-4xl:  clamp(2.8rem,   6.5vw,  5rem);
  --text-hero: clamp(3.2rem,   7.5vw,  6rem);

  /* Spacing */
  --s2:  0.5rem;   --s3:  0.75rem;  --s4:  1rem;   --s5:  1.25rem;
  --s6:  1.5rem;   --s8:  2rem;     --s10: 2.5rem;  --s12: 3rem;
  --s16: 4rem;     --s24: 6rem;     --s32: 8rem;

  /* Z-index */
  --z-sticky: 100;
  --z-drawer: 200;
  --z-modal:  300;
}

/* ── BASE ────────────────────────────────────────── */
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.65;
}

.container { width: min(90%, 1200px); margin-inline: auto; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.8em 1.8em;
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-h); border-color: var(--primary-h); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--on-primary); }
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn-outline-white {
  background: transparent;
  color: var(--on-primary);
  border-color: var(--on-primary);
}
.btn-outline-white:hover { background: var(--on-primary); color: var(--primary); }

/* ── REVEAL ANIMATIONS ───────────────────────────── */
/* Default: visible. JS adds .will-animate, then .revealed to trigger. */
.reveal-x  { transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-y  { transition: opacity 0.6s ease,  transform 0.6s ease; }
.reveal-scale { transition: opacity 0.5s ease, transform 0.5s ease; }

.will-animate.reveal-x     { opacity: 0; transform: translateX(-32px); }
.will-animate.reveal-y     { opacity: 0; transform: translateY(24px); }
.will-animate.reveal-scale { opacity: 0; transform: scale(0.96); }

.will-animate.reveal-x.revealed,
.will-animate.reveal-y.revealed,
.will-animate.reveal-scale.revealed {
  opacity: 1; transform: none;
}

/* stagger: parent gets .stagger, children get individual delays via nth-child */
.stagger-children > * {
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.will-animate.stagger-children > * { opacity: 0; transform: translateY(18px); }
.will-animate.stagger-children.revealed > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.will-animate.stagger-children.revealed > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.07s; }
.will-animate.stagger-children.revealed > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.14s; }
.will-animate.stagger-children.revealed > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.21s; }
.will-animate.stagger-children.revealed > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.28s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-x, .reveal-y, .reveal-scale,
  .stagger-children > * { transition: none; }
  .will-animate.reveal-x,
  .will-animate.reveal-y,
  .will-animate.reveal-scale,
  .will-animate.stagger-children > * {
    opacity: 1; transform: none;
  }
  .atm-photo:hover img,
  .event-card:hover .event-card-img { transform: none; }
  .event-lightbox,
  .event-lightbox-content { transition: none; }
}

/* ── SKIP LINK ───────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--s4);
  background: var(--accent);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6em 1.2em;
  z-index: calc(var(--z-modal) + 10);
  transition: top 0.2s;
}
.skip-link:focus { top: var(--s4); }

/* ── NAVIGATION ──────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--primary);
  border-bottom: 1px solid var(--primary-mid);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--s6);
}

/* Centered logo nav: links left | logo center | links+cta right */
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: var(--s6);
  flex: 1;
}
.nav-right { justify-content: flex-end; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s6);
  list-style: none;
}
.nav-links a {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: oklch(0.97 0 0 / 0.72);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-logo img { height: 64px; width: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--s2);
  width: 44px;
  height: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
  z-index: calc(var(--z-drawer) + 1);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--on-primary);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: var(--s2);
  padding: var(--s6) 0 var(--s8);
  border-top: 1px solid oklch(0.97 0 0 / 0.15);
}
.nav-drawer.is-open { display: flex; }
.nav-drawer a {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--text-2xl);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: oklch(0.97 0 0 / 0.82);
  padding: var(--s2) 0;
  border-bottom: 1px solid oklch(0.97 0 0 / 0.12);
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--accent); }
.nav-drawer .btn { margin-top: var(--s4); width: fit-content; }

/* Back to demos link */
.nav-back {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(0.97 0 0 / 0.45);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-back:hover { color: var(--accent); }

/* btn-primary on the primary-bg nav: switch to accent gold */
.nav .btn-primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.nav .btn-primary:hover {
  background: var(--accent-h);
  border-color: var(--accent-h);
}

@media (max-width: 900px) {
  .nav-links, .nav-back { display: none; }
  .nav-toggle { display: flex; }
  .nav-right { flex: 0; }
  .nav-right .btn {
    padding: 0.55em 1.1em;
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
}

/* ── ALE MARY LOGO ───────────────────────────────── */
.alem-ins-v2 { display: block; margin-bottom: var(--s6); }
.alem-ins-v2 img { width: 340px; height: auto; display: block; }

/* ── HERO LOGO ───────────────────────────────────── */
.logo-ins-v1 { display: block; margin-bottom: var(--s6); }
.logo-ins-v1 img {
  height: 144px; width: auto; display: block;
  filter: invert(1) brightness(0.12);
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100dvh - 72px);
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 45% 55%; }
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 5vw, 5rem);
  background: var(--bg);
}

.hero-location {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--body);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: var(--s8);
}
.hero-location-line {
  width: 2.5rem;
  height: 1px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-heading {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--text-hero);
  line-height: 0.87;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: balance;
  margin-bottom: var(--s8);
}
.hero-heading .line-one { color: var(--primary); }
.hero-heading .line-two { color: var(--ink); }

.hero-body {
  font-size: var(--text-base);
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.72;
  text-wrap: pretty;
  margin-bottom: var(--s10);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-top: var(--s8);
}

.hero-image {
  position: relative;
  min-height: 55dvh;
  overflow: hidden;
  background: var(--primary-mid);
}
@media (min-width: 900px) { .hero-image { min-height: auto; } }

.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-badge {
  position: absolute;
  bottom: var(--s8);
  right: var(--s8);
  background: var(--primary);
  color: var(--on-primary);
  padding: var(--s3) var(--s6);
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s;
}
a.hero-badge:hover { background: var(--primary-h); }

/* ── WHAT'S ON ───────────────────────────────────── */
.schedule {
  padding: clamp(4rem, 9vw, 8rem) 0;
  border-bottom: 1px solid var(--border);
}

.schedule-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s8);
  margin-bottom: var(--s12);
  flex-wrap: wrap;
}

.schedule-heading {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--text-4xl);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.schedule-heading .accent-line { color: var(--primary); }

.schedule-aside {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
  max-width: 30ch;
  text-align: right;
}
@media (max-width: 640px) {
  .schedule-aside { text-align: left; }
}

/* Column grid — newspaper layout */
.schedule-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  border: 1px solid var(--border);
}

.schedule-col {
  padding: var(--s6) var(--s5, 1.2rem);
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.schedule-col:last-child { border-right: none; }

/* Tonight highlight */
.schedule-col.is-tonight {
  background: var(--primary);
}

.schedule-col-day {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--primary);
  padding-bottom: var(--s4);
  margin-bottom: var(--s4);
  border-bottom: 2px solid var(--primary);
  display: flex;
  align-items: baseline;
  gap: 0.4em;
  flex-wrap: wrap;
}
.schedule-col.is-tonight .schedule-col-day {
  color: var(--on-primary);
  border-bottom-color: oklch(0.97 0 0 / 0.3);
}

.tonight-pill {
  font-family: var(--body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--on-primary);
  opacity: 0.7;
  text-transform: uppercase;
}

.schedule-events-list { list-style: none; display: flex; flex-direction: column; gap: var(--s5, 1.2rem); }

.schedule-event-name {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.schedule-col.is-tonight .schedule-event-name { color: var(--on-primary); }

.schedule-event-time {
  display: block;
  font-size: var(--text-xs);
  color: var(--subtle);
  margin-top: 2px;
}
.schedule-col.is-tonight .schedule-event-time { color: oklch(0.97 0 0 / 0.65); }

.schedule-footer {
  margin-top: var(--s8);
  font-size: var(--text-xs);
  color: var(--subtle);
  letter-spacing: 0.04em;
  text-align: center;
  padding-top: var(--s6);
  border-top: 1px solid var(--border);
}

/* ── EVENTS ──────────────────────────────────────── */
.events {
  background: var(--primary);
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.events-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s8);
  margin-bottom: var(--s12);
}

.events-heading {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--text-4xl);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--on-primary);
}

.events-book-link {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(0.97 0 0 / 0.55);
  white-space: nowrap;
  transition: color 0.2s;
}
.events-book-link:hover { color: var(--on-primary); }

/* Asymmetric editorial grid */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}
@media (min-width: 640px) {
  .events-grid {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: var(--s4);
    height: 560px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }
  .events-grid::-webkit-scrollbar { display: none; }
  .event-card {
    width: calc(50% - var(--s4) / 2);
    height: calc(50% - var(--s4) / 2);
  }
}
@media (min-width: 1024px) {
  .events > .container {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .events > .container::-webkit-scrollbar { display: none; }
  .events-grid {
    height: 716px;
  }
  .event-card {
    width: 300px;
  }
  .event-card:nth-child(1)  { height: 420px; width: 380px; }
  .event-card:nth-child(2)  { height: 280px; width: 380px; }
  .event-card:nth-child(3)  { height: 310px; }
  .event-card:nth-child(4)  { height: 390px; }
  .event-card:nth-child(5)  { height: 260px; }
  .event-card:nth-child(6)  { height: 440px; }
  .event-card:nth-child(7)  { height: 380px; }
  .event-card:nth-child(8)  { height: 320px; }
  .event-card:nth-child(9)  { height: 440px; }
  .event-card:nth-child(10) { height: 260px; }
  .event-card:nth-child(11) { height: 350px; }
  .event-card:nth-child(12) { height: 350px; }
}

.event-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: var(--primary-mid);
  display: block;
  cursor: pointer;
}
@media (min-width: 640px) { .event-card { min-height: 0; flex-shrink: 0; } }

.event-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.event-card:hover .event-card-img { transform: scale(1.05); }

.event-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.10 0.06 22 / 0.92) 0%, transparent 65%);
}

.event-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--s6);
}

.event-card-date {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s2);
}

.event-card-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--text-2xl);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--on-primary);
  text-wrap: balance;
}

.event-card.event-past { opacity: 0.4; filter: grayscale(0.7); }
.event-card.event-past:hover { opacity: 1; filter: none; }
.event-past-label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-18deg);
  font-family: var(--display); font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: oklch(0.95 0 0 / 0.9);
  background: oklch(0.15 0.01 150 / 0.75); padding: 0.5em 1.5em; border-radius: 4px;
  white-space: nowrap;
  z-index: 3; pointer-events: none;
}
.event-card:hover .event-card-img { filter: brightness(0.4); }

.events-expand-toggle { display: none; }

@media (max-width: 860px) {
  .events-collapsed .events-hidden-card { display: none; }
  .events-expanded .events-hidden-card { display: block; }

  .events-collapsed {
    mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  }

  .events-expand-toggle {
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: -1rem auto 0;
    position: relative;
    z-index: 2;
  }
}

/* ── ALE MARY BREWING ────────────────────────────── */
.brewery {
  position: relative;
  min-height: 72dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brewery-photo {
  position: absolute;
  inset: 0;
  background: url('../images/inspiration/unnamed-3.webp') center / cover no-repeat;
}

.brewery-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    oklch(0.10 0.06 22 / 0.96) 0%,
    oklch(0.10 0.06 22 / 0.78) 45%,
    oklch(0.10 0.06 22 / 0.12) 100%
  );
}

.brewery-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 7vw, 6rem);
  max-width: 560px;
}

.brewery-kicker {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--body);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s8);
}
.brewery-kicker::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.brewery-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--on-primary);
  margin-bottom: var(--s8);
  text-wrap: balance;
}

.brewery-desc {
  font-size: var(--text-base);
  color: oklch(0.82 0.008 22);
  line-height: 1.72;
  max-width: 46ch;
  text-wrap: pretty;
}

.brewery-est {
  margin-top: var(--s8);
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── ATMOSPHERE ──────────────────────────────────── */
.atmosphere {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: clamp(220px, 28vw, 380px);
}

.atm-photo {
  overflow: hidden;
  position: relative;
}
.atm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.atm-photo:hover img { transform: scale(1.06); }

@media (max-width: 540px) {
  .atmosphere { grid-template-columns: 1fr; height: auto; }
  .atm-photo  { height: 240px; }
}

/* ── OUR MENU ────────────────────────────────────── */
.our-menu {
  background: var(--bg);
  color: var(--ink);
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
}

/* Section header */
.menu-header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s8);
  flex-wrap: wrap;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid oklch(0.12 0.010 22 / 0.12);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 600px) {
  .menu-header-inner { align-items: flex-start; flex-direction: column; }
}

.menu-heading {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--text-4xl);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.menu-accent { color: var(--primary); }

.menu-header-sub {
  margin-top: var(--s3);
  font-size: var(--text-sm);
  color: oklch(0.12 0.010 22 / 0.55);
  line-height: 1.5;
}

/* Symmetric card grid — 3 across on desktop, 2 on tablet, 1 on mobile */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (max-width: 860px) {
  .menu-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .menu-cards { grid-template-columns: 1fr; }
}

.menu-expand-toggle { display: none; }

@media (max-width: 860px) {
  .menu-expand-toggle {
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: -1rem auto 0;
    position: relative;
    z-index: 2;
  }

  .menu-cards .menu-card:nth-child(n+4) {
    display: none;
  }
  .menu-cards.menu-cards--expanded .menu-card:nth-child(n+4) {
    display: flex;
  }

  .menu-cards:not(.menu-cards--expanded) {
    mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  }
}

.menu-card {
  background: var(--primary);
  border: 1px solid oklch(0.97 0 0 / 0.13);
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  border-radius: 4px;
}

.menu-cat-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  padding-bottom: var(--s3);
  border-bottom: 1px solid oklch(0.97 0 0 / 0.18);
  margin-bottom: var(--s4);
  line-height: 1;
}

.menu-cat-note {
  font-size: var(--text-xs);
  color: oklch(0.97 0 0 / 0.48);
  margin-bottom: var(--s3);
  font-style: italic;
}

.menu-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-items li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s4);
  padding-block: var(--s3);
  border-bottom: 1px solid oklch(0.97 0 0 / 0.08);
}
.menu-items li:first-child { padding-top: 0; }
.menu-items li:last-child  { border-bottom: none; padding-bottom: 0; }

.mi-name {
  font-family: var(--body);
  font-size: var(--text-sm);
  color: oklch(0.97 0 0 / 0.88);
  line-height: 1.4;
  flex: 1;
}

.mi-name em {
  font-style: normal;
  font-size: 0.7em;
  color: oklch(0.97 0 0 / 0.42);
  letter-spacing: 0.06em;
  margin-left: 0.3em;
}

.mi-price {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--accent);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-items-divider {
  height: 1px;
  background: oklch(0.97 0 0 / 0.18);
  border: none;
  padding: 0 !important;
  margin-block: var(--s2);
}

/* Integrated section footer — dietary info + PDF CTA */
.menu-section-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s8);
  flex-wrap: wrap;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid oklch(0.12 0.010 22 / 0.12);
  text-align: center;
}
@media (max-width: 640px) {
  .menu-section-footer { flex-direction: column; align-items: center; }
}

.menu-footer-info {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.menu-dietary {
  font-size: var(--text-xs);
  color: oklch(0.12 0.010 22 / 0.52);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.menu-dietary em {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}

.menu-surcharge {
  font-size: var(--text-xs);
  color: oklch(0.12 0.010 22 / 0.40);
  max-width: 60ch;
  line-height: 1.6;
}

/* Inline icon sizing within buttons */
.btn svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

/* Gold filled button — for use on crimson/primary backgrounds */
.btn-gold {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.btn-gold:hover { background: var(--accent-h); border-color: var(--accent-h); }

/* ── BOOK ────────────────────────────────────────── */
.book {
  padding: clamp(5rem, 11vw, 10rem) 0;
  background: var(--surface);
  text-align: center;
}

.book-heading {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--text-4xl);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--s6);
  text-wrap: balance;
}
.book-heading .cta-word { color: var(--primary); }

.book-sub {
  font-size: var(--text-base);
  color: var(--muted);
  max-width: 42ch;
  margin: 0 auto var(--s10);
  line-height: 1.7;
}

.book-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s4);
}

/* ── FUNCTIONS ───────────────────────────────────── */
.functions {
  padding: clamp(5rem, 11vw, 10rem) 0;
  background: var(--bg);
  color: var(--ink);
}

.functions-header {
  text-align: center;
  margin-bottom: var(--s10);
}

.functions-heading {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--text-4xl);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--s6);
}
.functions-accent { color: var(--primary); }

.functions-sub {
  font-size: var(--text-base);
  color: var(--muted);
  max-width: 55ch;
  margin: 0 auto;
  line-height: 1.7;
}

.functions-form {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}

.functions-form .form-row {
  display: flex;
  gap: var(--s6);
}
@media (max-width: 500px) {
  .functions-form .form-row { flex-direction: column; }
}

.functions-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.functions-form .form-group-full {
  width: 100%;
}

.functions-form label {
  font-family: var(--display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.functions-form input,
.functions-form textarea {
  background: var(--surface);
  border: 1px solid oklch(0.12 0.010 22 / 0.12);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--text-sm);
  padding: 0.7rem 0.9rem;
  border-radius: 3px;
  transition: border-color 0.2s;
}

.functions-form input:focus,
.functions-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.functions-form textarea {
  resize: vertical;
}

.functions-form button {
  align-self: center;
  margin-top: var(--s2);
}

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  background: var(--primary);
  color: var(--on-primary);
  overflow: hidden;
}

.footer-giant {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(5rem, 14vw, 12rem);
  line-height: 0.84;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: oklch(0.97 0 0 / 0.06);
  padding: clamp(3rem, 6vw, 6rem) 0 0;
  user-select: none;
  pointer-events: none;
}

.footer-body {
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}

.footer-rule {
  height: 1px;
  background: oklch(0.97 0 0 / 0.18);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--s10);
}

.footer-col-label {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: oklch(0.97 0 0 / 0.45);
  margin-bottom: var(--s4);
}

.footer-col p,
.footer-col address {
  font-style: normal;
  font-size: var(--text-sm);
  color: oklch(0.97 0 0 / 0.78);
  line-height: 1.7;
}

.footer-col a {
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; text-decoration: underline; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s4);
  padding-top: var(--s6);
  border-top: 1px solid oklch(0.97 0 0 / 0.12);
  font-family: var(--display);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(0.97 0 0 / 0.38);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: var(--s4);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: oklch(0.97 0 0 / 0.42);
  border: 1px solid oklch(0.97 0 0 / 0.18);
  border-radius: 50%;
  transition: color 0.2s, border-color 0.2s;
}
.footer-social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.footer-social-link svg { width: 16px; height: 16px; }

/* LIGHTBOX -------------------------------------------------------- */
.event-lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.event-lightbox.is-open { opacity: 1; pointer-events: all; }

.event-lightbox-backdrop {
  position: absolute; inset: 0;
  background: oklch(0.05 0.01 150 / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.event-lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  z-index: 2; background: none; border: none; cursor: pointer;
  font-size: 2rem; line-height: 1; color: var(--on-primary, #fff);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.event-lightbox-close:hover { background: oklch(1 0 0 / 0.1); }
.event-lightbox-close:focus-visible {
  outline: 2px solid var(--accent, oklch(0.74 0.11 78));
  outline-offset: 2px;
}

.event-lightbox-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem;
  max-width: min(90vw, 900px); max-height: 85vh;
  transform: scale(0.92); opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease-out;
}
.event-lightbox.is-open .event-lightbox-content {
  transform: scale(1); opacity: 1;
}

.event-lightbox-img {
  max-width: 100%; max-height: 72vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px oklch(0 0 0 / 0.5);
}

.event-lightbox-info {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.25rem; text-align: center;
}

.event-lightbox-title {
  font-family: var(--display, system-ui);
  font-size: var(--text-2xl, 1.75rem);
  color: var(--on-primary, #fff);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.event-lightbox-date {
  font-family: var(--display, system-ui);
  font-size: var(--text-xs, 0.75rem);
  color: var(--accent, oklch(0.74 0.11 78));
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (pointer: coarse) {
  .functions-form input,
  .functions-form textarea {
    min-height: 44px;
    font-size: 1rem;
  }

  .nav-drawer a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer-col a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-lightbox,
  .event-lightbox-content { transition: none; }
}
