:root {
  --bg: #131209;
  --bg-deep: #000000;
  --panel: #181818;
  --panel-lift: #1f1f1f;
  --panel-high: #272727;
  --line: #313131;
  --text: #fff4da;
  --muted: #b8b19f;
  --subtle: #817b6c;
  --red: #871e21;
  --red-bright: #b8322f;
  --gold: #f3c96b;
  --space-25: 2px;
  --space-50: 4px;
  --space-75: 8px;
  --space-100: 12px;
  --space-200: 16px;
  --space-300: 24px;
  --space-400: 32px;
  --space-500: 40px;
  --space-600: 48px;
  --space-700: 64px;
  --space-800: 80px;
  --space-900: 96px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: var(--space-200);
  left: var(--space-200);
  z-index: 30;
  transform: translateY(-160%);
  padding: var(--space-100) var(--space-200);
  border-radius: 8px;
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 14px;
  font-weight: 800;
  transition: transform 700ms var(--ease);
}

.skip-link:focus { transform: translateY(0); }

.section-wrap {
  width: min(1180px, calc(100% - 96px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  padding-top: var(--space-300);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: var(--space-300);
  min-height: 64px;
  padding: var(--space-75) var(--space-100) var(--space-75) var(--space-300);
  border: 1px solid rgba(255, 244, 218, 0.1);
  border-radius: 999px;
  background: rgba(24, 24, 24, 0.94);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-100);
  min-width: 180px;
}

.brand-mark { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(255, 244, 218, 0.54); border-radius: 999px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: 0.04em; }

.brand-wordmark,
.footer-brand {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-300);
  flex: 1;
}

.desktop-nav a,
.footer-links a,
.footer-legal button {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 700ms var(--ease), transform 700ms var(--ease);
}

.desktop-nav a:hover,
.footer-links a:hover,
.footer-legal button:hover { color: var(--text); transform: translateY(-2px); }

.desktop-nav .is-current { color: var(--text); }

.header-cta,
.mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-75);
  padding: var(--space-100) var(--space-200);
  border-radius: 999px;
  background: var(--red);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  transition: background 700ms var(--ease), transform 700ms var(--ease);
}

.header-cta:hover,
.mobile-menu-cta:hover { background: var(--red-bright); transform: translateY(-2px); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--panel-high);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 700ms var(--ease);
}

.menu-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 720px;
  margin-inline: 0;
  padding-top: var(--space-800);
  padding-right: max(48px, calc((100% - 1180px) / 2));
  padding-bottom: var(--space-800);
  padding-left: max(48px, calc((100% - 1180px) / 2));
  overflow: hidden;
  isolation: isolate;
}

.hero-background,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  z-index: -2;
  object-fit: cover;
  object-position: center 58%;
}

.hero-overlay {
  z-index: -1;
  background: rgba(19, 18, 9, 0.58);
}

.hero-copy { position: relative; z-index: 1; max-width: 680px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-75);
  margin: 0 0 var(--space-300);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 16px;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red-bright);
  box-shadow: 0 0 0 5px rgba(184, 50, 47, 0.14);
}

h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin-top: 0; }

h1 {
  max-width: 680px;
  margin-bottom: var(--space-300);
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
  background: linear-gradient(90deg, #fff4da, #b8b19f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 580px;
  margin: 0 0 var(--space-400);
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
}

.hero-actions,
.visit-actions { display: flex; align-items: center; flex-wrap: wrap; gap: var(--space-300); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-75);
  min-height: 48px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  transition: background 700ms var(--ease), border-color 700ms var(--ease), color 700ms var(--ease), transform 700ms var(--ease);
}

.button:hover { transform: translateY(-3px); }
.button:active { transform: translateY(1px) scale(0.98); }
.button-primary { background: var(--red); color: var(--text); }
.button-primary:hover { background: var(--red-bright); }
.button-secondary { background: var(--gold); color: var(--bg-deep); }
.button-secondary:hover { background: var(--text); }
.button-outline { border-color: var(--line); color: var(--text); }
.button-outline:hover { border-color: var(--text); background: var(--panel-high); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-75);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  transition: color 700ms var(--ease), transform 700ms var(--ease);
}

.text-link:hover { color: var(--gold); transform: translateY(-2px); }

.proof-line {
  display: flex;
  align-items: center;
  gap: var(--space-75);
  margin: var(--space-600) 0 0;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-line i { color: var(--gold); font-size: 16px; }

.hero-note {
  position: absolute;
  z-index: 1;
  right: var(--space-400);
  bottom: var(--space-400);
  width: min(260px, calc(100% - 64px));
  padding: var(--space-300);
  border: 1px solid rgba(255, 244, 218, 0.18);
  border-radius: 16px;
  background: rgba(19, 18, 9, 0.86);
  backdrop-filter: blur(16px);
}

.hero-note span {
  display: block;
  margin-bottom: var(--space-100);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note strong { display: block; font-size: 16px; line-height: 24px; }

.hero-stamp {
  position: absolute;
  z-index: 1;
  top: var(--space-400);
  left: var(--space-400);
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border: 1px solid rgba(255, 244, 218, 0.56);
  border-radius: 999px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
  transform: rotate(-12deg);
}

.hero-stamp span { color: var(--gold); font-size: 10px; letter-spacing: 0.18em; }

.internal-hero {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: flex-end;
  margin-top: var(--space-600);
  margin-bottom: var(--space-800);
  padding: var(--space-700);
  overflow: hidden;
  border: 1px solid rgba(255, 244, 218, 0.14);
  border-radius: 24px;
  isolation: isolate;
}

.internal-hero::before,
.internal-hero-overlay {
  position: absolute;
  inset: 0;
  content: "";
}

.internal-hero::before {
  z-index: -2;
  background-color: var(--panel);
  background-image: var(--page-image);
  background-position: center;
  background-size: cover;
}

.internal-hero-overlay { z-index: -1; background: rgba(19, 18, 9, 0.58); }
.internal-hero-copy { max-width: 680px; }
.internal-hero-copy h1 { margin-bottom: var(--space-300); }
.internal-hero-copy > p:not(.eyebrow) { max-width: 600px; margin-bottom: var(--space-400); color: var(--muted); font-size: 18px; line-height: 28px; }
.internal-hero-stat { position: absolute; right: var(--space-700); bottom: var(--space-700); display: grid; min-width: 180px; padding: var(--space-300); border: 1px solid rgba(255, 244, 218, 0.18); border-radius: 16px; background: rgba(19, 18, 9, 0.86); backdrop-filter: blur(16px); }
.internal-hero-stat span, .internal-hero-stat small { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.internal-hero-stat strong { color: var(--text); font-size: 48px; letter-spacing: -0.05em; line-height: 1; }
.internal-hero-stat small { color: var(--muted); letter-spacing: 0.04em; }

.route-section { padding-bottom: var(--space-900); }
.route-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-200); padding-top: var(--space-600); }
.route-card { min-height: 248px; padding: var(--space-400); border: 1px solid var(--line); border-radius: 16px; background: var(--panel); transition: border-color 700ms var(--ease), background 700ms var(--ease), transform 700ms var(--ease); }
.route-card:hover { border-color: var(--gold); background: var(--panel-lift); transform: translateY(-4px); }
.route-card > i { display: block; margin-bottom: var(--space-500); color: var(--gold); font-size: 32px; }
.route-card h3 { margin-bottom: var(--space-100); font-size: 24px; line-height: 32px; }
.route-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 20px; }

.menu-page-section { padding-bottom: var(--space-900); }
.menu-page-board { padding-top: 0; }
.menu-footnote { display: flex; align-items: center; gap: var(--space-100); margin: var(--space-500) 0 0; color: var(--muted); font-size: 12px; }
.menu-footnote i { color: var(--gold); font-size: 18px; }

.not-found { min-height: 100vh; display: grid; align-content: center; justify-items: start; padding-top: var(--space-900); padding-bottom: var(--space-900); }
.not-found h1 { max-width: 680px; margin-bottom: var(--space-300); }
.not-found p:not(.eyebrow) { margin: 0 0 var(--space-400); color: var(--muted); font-size: 18px; line-height: 28px; }

.visit-page-section { padding-bottom: var(--space-900); }
.visit-page-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--space-700); }
.visit-page-grid h2 { max-width: 520px; margin-bottom: var(--space-300); font-size: 48px; letter-spacing: -0.05em; line-height: 1; }
.visit-page-grid > div:first-child > p:not(.eyebrow) { max-width: 520px; margin: 0 0 var(--space-400); color: var(--muted); line-height: 24px; }
.visit-page-details { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-500) var(--space-300); align-content: start; padding: var(--space-400); border: 1px solid var(--line); border-radius: 16px; background: var(--panel); }
.visit-page-details span { display: block; margin-bottom: var(--space-75); color: var(--subtle); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.visit-page-details strong, .visit-page-details a { color: var(--text); font-size: 16px; font-weight: 700; line-height: 24px; }
.visit-page-details a { transition: color 700ms var(--ease); }
.visit-page-details a:hover { color: var(--gold); }

.status-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-300);
  padding: var(--space-300);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.status-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 12px;
  background: var(--red);
  color: var(--text);
  font-size: 24px;
}

.status-band .eyebrow { margin-bottom: var(--space-75); }
.status-band h2 { margin: 0; font-size: 24px; line-height: 32px; }

.tagline-section { padding-top: var(--space-900); padding-bottom: var(--space-900); }
.tagline { max-width: 760px; margin: 0; color: rgba(255, 244, 218, 0.3); font-size: 60px; font-weight: 800; letter-spacing: -0.06em; line-height: 1.04; }
.reveal-word { display: inline-block; color: rgba(255, 244, 218, 0.3); filter: blur(1px); transition: color 900ms var(--ease), filter 900ms var(--ease); }
.reveal-word.is-visible { color: var(--text); filter: blur(0); }

.archive-section { padding-bottom: var(--space-900); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(260px, 420px); gap: var(--space-700); align-items: end; padding-bottom: var(--space-600); border-bottom: 1px solid var(--line); }
.section-heading .eyebrow { margin-bottom: var(--space-200); }
.section-heading h2, .mailing-copy h2, .visit-card h2 { margin-bottom: 0; font-size: 48px; font-weight: 800; letter-spacing: -0.05em; line-height: 1; }
.section-intro { margin: 0; color: var(--muted); font-size: 16px; line-height: 24px; }

.archive-layout { display: grid; grid-template-columns: 120px 1fr; gap: var(--space-700); padding-top: var(--space-600); }
.year-index { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-200); position: sticky; top: var(--space-300); height: max-content; }
.index-label { margin-bottom: var(--space-100); color: var(--subtle); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.year-index a { color: var(--subtle); font-size: 14px; font-weight: 800; transition: color 700ms var(--ease), transform 700ms var(--ease); }
.year-index a:hover, .year-index .active-year { color: var(--gold); transform: translateX(4px); }

.archive-year { margin-bottom: var(--space-700); scroll-margin-top: 120px; }
.year-title { display: flex; align-items: center; gap: var(--space-200); margin-bottom: var(--space-300); color: var(--gold); }
.year-title > span:first-child { font-size: 24px; font-weight: 800; letter-spacing: -0.03em; }
.year-title small { color: var(--subtle); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.year-rule { height: 1px; flex: 1; background: var(--line); }

.event-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-200); }
.event-card { position: relative; display: grid; grid-template-columns: 32px 1fr 18px; gap: var(--space-200); min-height: 184px; padding: var(--space-300); border: 1px solid var(--line); border-radius: 16px; background: var(--panel); transition: border-color 700ms var(--ease), background 700ms var(--ease), transform 700ms var(--ease); }
.event-card:hover { border-color: var(--gold); background: var(--panel-lift); transform: translateY(-4px); }
.featured-event { grid-column: span 2; min-height: 224px; background: var(--red); border-color: var(--red); }
.featured-event:hover { background: var(--red-bright); border-color: var(--red-bright); }
.event-number { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; }
.event-kicker { margin: 0 0 var(--space-100); color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; line-height: 16px; text-transform: uppercase; }
.event-card h3 { max-width: 420px; margin-bottom: var(--space-100); font-size: 24px; font-weight: 800; letter-spacing: -0.04em; line-height: 32px; }
.event-card p:last-child { max-width: 360px; margin: 0; color: var(--muted); font-size: 14px; line-height: 20px; }
.featured-event p:last-child { color: rgba(255, 244, 218, 0.76); }
.event-arrow { align-self: end; color: var(--gold); font-size: 18px; transition: transform 700ms var(--ease); }
.event-card:hover .event-arrow { transform: translate(3px, -3px); }

.compact-grid .event-card { min-height: 164px; }
.compact-grid .event-card h3 { font-size: 18px; line-height: 28px; }

.drinks-section,
.menu-section { padding-bottom: var(--space-900); }

.drinks-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-200); padding-top: var(--space-600); }
.drink-card { position: relative; min-height: 296px; padding: var(--space-400); border: 1px solid var(--line); border-radius: 16px; background: var(--panel); transition: border-color 700ms var(--ease), background 700ms var(--ease), transform 700ms var(--ease); }
.drink-card:hover { border-color: var(--gold); background: var(--panel-lift); transform: translateY(-4px); }
.drink-index { position: absolute; top: var(--space-400); right: var(--space-400); color: var(--subtle); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; }
.drink-card > i { display: block; margin-bottom: var(--space-500); color: var(--gold); font-size: 32px; }
.drink-card h3 { margin-bottom: var(--space-100); font-size: 24px; line-height: 32px; }
.drink-card strong { display: block; margin-bottom: var(--space-200); color: var(--gold); font-size: 14px; }
.drink-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 20px; }

.menu-board { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-600) var(--space-500); padding-top: var(--space-600); }
.menu-group { align-self: start; }
.menu-group-title { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-200); padding-bottom: var(--space-200); border-bottom: 1px solid var(--line); }
.menu-group-title h3 { margin: 0; font-size: 24px; line-height: 32px; }
.menu-group-title span { color: var(--subtle); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: var(--space-300); padding: var(--space-300) 0; border-bottom: 1px solid var(--line); }
.menu-item strong { display: block; margin-bottom: var(--space-75); color: var(--text); font-size: 16px; }
.menu-item p { max-width: 420px; margin: 0; color: var(--muted); font-size: 14px; line-height: 20px; }
.menu-item > span { color: var(--gold); font-size: 16px; font-weight: 800; }
.menu-note { display: flex; gap: var(--space-100); margin-top: var(--space-300); padding: var(--space-200); border: 1px solid var(--line); border-radius: 12px; color: var(--muted); font-size: 12px; line-height: 20px; }
.menu-note i { flex: 0 0 auto; color: var(--gold); font-size: 18px; }

.older-archive { border-top: 1px solid var(--line); scroll-margin-top: 120px; }
.older-archive:last-child { border-bottom: 1px solid var(--line); }
.older-archive summary { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: var(--space-300); padding: var(--space-300) 0; color: var(--text); list-style: none; cursor: pointer; }
.older-archive summary::-webkit-details-marker { display: none; }
.older-archive summary span:first-child { font-size: 24px; font-weight: 800; letter-spacing: -0.04em; }
.older-archive summary span:nth-child(2) { color: var(--subtle); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-align: right; text-transform: uppercase; }
.older-archive summary i { color: var(--gold); font-size: 20px; transition: transform 700ms var(--ease); }
.older-archive[open] summary i { transform: rotate(45deg); }
.older-items { display: flex; flex-wrap: wrap; gap: var(--space-75); padding: 0 0 var(--space-300); }
.older-items span { padding: var(--space-75) var(--space-100); border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; }

.visit-section { padding-bottom: var(--space-900); }
.visit-card { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-700); padding: var(--space-700); border-radius: 24px; background: var(--red); }
.visit-card .eyebrow { color: var(--gold); }
.visit-card h2 { max-width: 440px; }
.visit-card > div:first-child > p:last-child { max-width: 500px; margin: var(--space-300) 0 0; color: rgba(255, 244, 218, 0.78); line-height: 24px; }
.visit-details { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-500) var(--space-300); align-content: start; }
.visit-details > div:last-child { grid-column: span 2; }
.visit-details span { display: block; margin-bottom: var(--space-75); color: rgba(255, 244, 218, 0.58); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.visit-details strong, .visit-details a { color: var(--text); font-size: 16px; font-weight: 700; line-height: 24px; }
.visit-details a { transition: color 700ms var(--ease); }
.visit-details a:hover { color: var(--gold); }
.visit-actions { grid-column: span 2; }
.visit-card .button-outline { border-color: rgba(255, 244, 218, 0.42); }
.visit-card .button-outline:hover { border-color: var(--text); background: rgba(0, 0, 0, 0.16); }

.mailing-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr); gap: var(--space-700); align-items: center; padding-top: var(--space-700); padding-bottom: var(--space-900); border-top: 1px solid var(--line); }
.mailing-copy h2 { max-width: 600px; }
.mailing-copy > p:last-child { max-width: 520px; margin: var(--space-300) 0 0; color: var(--muted); line-height: 24px; }
.email-form { padding: var(--space-400); border: 1px solid var(--line); border-radius: 16px; background: var(--panel); }
.email-form label { display: block; margin-bottom: var(--space-100); color: var(--muted); font-size: 14px; font-weight: 700; }
.form-row { display: flex; gap: var(--space-100); }
.form-row input { width: 100%; min-width: 0; min-height: 48px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--panel-lift); color: var(--text); font-size: 14px; transition: border-color 700ms var(--ease), background 700ms var(--ease); }
.form-row input::placeholder { color: var(--subtle); }
.form-row input:focus { border-color: var(--gold); background: var(--panel-high); outline: 0; }
.form-row .button { flex: 0 0 auto; border: 0; }
.form-message { min-height: 20px; margin: var(--space-100) 0 0; color: var(--gold); font-size: 12px; line-height: 20px; }
.form-message.is-error { color: #ff9890; }

.site-footer { padding-top: var(--space-400); padding-bottom: var(--space-300); border-top: 1px solid var(--line); }
.footer-top, .footer-bottom { display: flex; justify-content: space-between; gap: var(--space-300); }
.footer-top { align-items: flex-start; padding-bottom: var(--space-500); }
.footer-top p { margin: var(--space-100) 0 0; color: var(--subtle); font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: var(--space-300); }
.footer-links a:nth-last-child(-n + 2) { color: var(--gold); }
.footer-bottom { align-items: center; padding-top: var(--space-300); border-top: 1px solid var(--line); color: var(--subtle); font-size: 12px; }
.footer-legal { display: flex; gap: var(--space-200); }
.footer-legal button { padding: 0; border: 0; background: transparent; color: var(--subtle); font-size: 12px; }

.legal-dialog { position: fixed; width: min(480px, calc(100% - 48px)); padding: var(--space-600); border: 1px solid var(--line); border-radius: 24px; background: var(--panel); color: var(--text); box-shadow: 0 32px 100px rgba(0,0,0,0.5); }
.legal-dialog::backdrop { background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px); }
.legal-dialog h2 { margin-bottom: var(--space-200); font-size: 36px; letter-spacing: -0.05em; }
.legal-dialog p:last-child { margin: 0; color: var(--muted); line-height: 24px; }
.dialog-close { position: absolute; top: var(--space-300); right: var(--space-300); display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--text); }
.dialog-close:hover { border-color: var(--gold); color: var(--gold); }

.reveal-section, .reveal-on-load { opacity: 1; transform: none; filter: none; }
html.js .reveal-section, html.js .reveal-on-load { opacity: 0; transform: translateY(64px); filter: blur(8px); transition: opacity 900ms var(--ease), transform 900ms var(--ease), filter 900ms var(--ease); }
html.js .reveal-section.is-visible, html.js .reveal-on-load.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }

.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 760px;
  margin-inline: 0;
  padding: var(--space-800) max(48px, calc((100% - 1180px) / 2));
  overflow: hidden;
  isolation: isolate;
}

.home-hero .hero-copy { position: relative; z-index: 1; max-width: 680px; }
.home-hero h1 { max-width: 680px; }
.walk-in-note { display: flex; align-items: center; gap: var(--space-75); margin: var(--space-200) 0 0; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.walk-in-note i { font-size: 16px; }
.hero-identity { position: absolute; right: max(48px, calc((100% - 1180px) / 2)); bottom: var(--space-700); z-index: 1; display: grid; gap: var(--space-100); min-width: 220px; padding: var(--space-300); border: 1px solid rgba(255, 244, 218, 0.18); border-radius: 16px; background: rgba(19, 18, 9, 0.84); backdrop-filter: blur(16px); }
.hero-identity span { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; }
.hero-identity strong { color: var(--text); font-size: 18px; line-height: 28px; }

.pouring-section { padding-top: var(--space-900); padding-bottom: var(--space-900); }
.pouring-heading { padding-bottom: var(--space-400); }
.pouring-meta { display: flex; justify-content: space-between; gap: var(--space-300); padding: var(--space-200) 0; border-bottom: 1px solid var(--line); color: var(--subtle); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.pouring-meta strong { color: var(--gold); font-weight: 800; }
.pouring-list { margin-bottom: var(--space-300); }
.pouring-row { display: grid; grid-template-columns: minmax(280px, 1.8fr) 0.7fr 0.75fr auto; gap: var(--space-300); align-items: center; padding: var(--space-300) 0; border-bottom: 1px solid var(--line); }
.pouring-row > div { min-width: 0; }
.pouring-row h3 { margin: 0 0 var(--space-75); font-size: 18px; line-height: 28px; }
.pouring-row h3, .tap-row h3, .menu-item strong { overflow-wrap: anywhere; }
.pouring-row p { margin: 0; color: var(--muted); font-size: 14px; line-height: 20px; }
.pouring-origin, .pouring-style { color: var(--subtle); font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.pouring-abv { color: var(--gold); font-size: 16px; font-weight: 800; text-align: right; }
.section-arrow-link { display: inline-flex; align-items: center; gap: var(--space-75); color: var(--gold); font-size: 14px; font-weight: 800; text-transform: uppercase; transition: color 700ms var(--ease), transform 700ms var(--ease); }
.section-arrow-link:hover { color: var(--text); transform: translateX(4px); }

.metric-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-300); padding-top: var(--space-500); padding-bottom: var(--space-500); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric-item { display: grid; gap: var(--space-100); }
.metric-item strong { color: var(--gold); font-size: 48px; font-weight: 800; letter-spacing: -0.06em; line-height: 1; }
.metric-item span { max-width: 160px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: 0.06em; line-height: 16px; text-transform: uppercase; }
.metric-item strong .metric-year { display: inline; max-width: none; color: inherit; font-size: inherit; font-weight: inherit; letter-spacing: inherit; line-height: inherit; text-transform: none; }

.food-section { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: var(--space-800); align-items: start; padding-top: var(--space-900); padding-bottom: var(--space-900); }
.section-photo { margin: 0; overflow: hidden; border-radius: 16px; background: var(--panel); }
.section-photo img { display: block; width: 100%; height: auto; object-fit: cover; }
.food-photo { margin-top: var(--space-500); }
.food-photo img { aspect-ratio: 16 / 9; object-position: center; }
.food-copy h2, .bible-copy h2, .events-preview h2, .visit-home-copy h2, .shop-section h2 { margin-bottom: var(--space-300); font-size: 48px; font-weight: 800; letter-spacing: -0.05em; line-height: 1; }
.food-copy > p:not(.eyebrow) { max-width: 500px; margin: 0 0 var(--space-400); color: var(--muted); line-height: 24px; }
.food-board { padding: var(--space-400); border: 1px solid var(--line); border-radius: 16px; background: var(--panel); }
.food-board-kicker { margin-bottom: var(--space-200); color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.food-feature { display: grid; grid-template-columns: 32px 1fr auto; gap: var(--space-200); align-items: start; padding: var(--space-300) 0; border-top: 1px solid var(--line); }
.food-feature > span { color: var(--subtle); font-size: 12px; font-weight: 800; }
.food-feature h3 { margin: 0 0 var(--space-75); font-size: 20px; line-height: 28px; }
.food-feature p { margin: 0; color: var(--muted); font-size: 14px; line-height: 20px; }
.food-feature > strong { color: var(--gold); font-size: 16px; }

.bible-section { display: grid; grid-template-columns: 180px minmax(0, 1fr) minmax(220px, 0.55fr); gap: var(--space-600); align-items: center; padding: var(--space-700); border-radius: 24px; background: var(--red); }
.bible-mark { display: grid; width: 180px; height: 180px; place-content: center; border: 1px solid rgba(255, 244, 218, 0.62); border-radius: 999px; color: var(--text); font-size: 20px; font-weight: 800; line-height: 24px; text-align: center; transform: rotate(-8deg); }
.bible-mark span { color: var(--gold); font-size: 11px; letter-spacing: 0.14em; line-height: 16px; }
.bible-copy { max-width: 640px; }
.bible-copy h2 { margin-bottom: var(--space-300); }
.bible-copy > p:not(.eyebrow) { max-width: 600px; margin: 0 0 var(--space-300); color: rgba(255, 244, 218, 0.82); font-size: 18px; line-height: 28px; }
.bible-copy .bible-detail { color: rgba(255, 244, 218, 0.64); font-size: 14px; line-height: 20px; }
.bible-photo { align-self: stretch; }
.bible-photo img { height: 100%; min-height: 230px; object-position: 52% center; }

.story-section { padding-top: var(--space-900); padding-bottom: var(--space-900); }
.story-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-700); padding: var(--space-600) 0 var(--space-400); }
.story-grid p { margin: 0; color: var(--muted); font-size: 18px; line-height: 28px; }
.story-photo { margin: var(--space-200) 0 var(--space-400); }
.story-photo img { max-height: 320px; object-position: center 46%; }

.events-preview { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: var(--space-700); align-items: center; padding: var(--space-600); border: 1px solid var(--line); border-radius: 16px; background: var(--panel); }
.events-preview h2 { margin-bottom: var(--space-200); font-size: 36px; }
.events-preview p:not(.eyebrow) { max-width: 600px; margin: 0; color: var(--muted); line-height: 24px; }
.events-preview-actions { display: flex; flex-direction: column; align-items: stretch; gap: var(--space-200); }

.visit-home-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(190px, 0.6fr) minmax(240px, 0.7fr); gap: var(--space-500); align-items: end; margin-top: var(--space-900); padding: var(--space-700); border-radius: 24px; background: var(--red); }
.visit-home-copy h2 { margin-bottom: var(--space-300); }
.visit-home-copy > p:not(.eyebrow) { margin: 0 0 var(--space-400); color: rgba(255, 244, 218, 0.76); font-size: 18px; line-height: 28px; }
.visit-home-hours { display: grid; gap: var(--space-100); padding-left: var(--space-400); border-left: 1px solid rgba(255, 244, 218, 0.28); }
.visit-home-hours span { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.visit-home-hours strong { color: var(--text); font-size: 16px; line-height: 24px; }
.visit-home-hours small { margin-top: var(--space-100); color: rgba(255, 244, 218, 0.64); font-size: 12px; line-height: 20px; }
.visit-home-photo { align-self: stretch; }
.visit-home-photo img { height: 100%; min-height: 220px; object-position: center; }

.shop-section { display: flex; align-items: center; justify-content: space-between; gap: var(--space-500); padding-top: var(--space-900); padding-bottom: var(--space-900); border-bottom: 1px solid var(--line); }
.shop-section h2 { margin-bottom: var(--space-200); font-size: 36px; }
.shop-section p:not(.eyebrow) { margin: 0; color: var(--muted); }
.shop-actions { display: flex; flex-wrap: wrap; gap: var(--space-200); justify-content: flex-end; }

.events-hero { position: relative; display: flex; align-items: flex-end; min-height: 560px; margin-top: var(--space-600); margin-bottom: var(--space-800); padding: var(--space-700); overflow: hidden; border: 1px solid rgba(255, 244, 218, 0.14); border-radius: 24px; background: var(--panel); isolation: isolate; }
.events-hero::before { position: absolute; inset: 0; z-index: -2; content: ""; background: url("https://monkscafe.com/images/main-page-welcome.jpg") center / cover; }
.events-hero::after { position: absolute; inset: 0; z-index: -1; content: ""; background: rgba(19, 18, 9, 0.58); }
.events-hero-copy { max-width: 680px; }
.events-hero-copy h1 { margin-bottom: var(--space-300); }
.events-hero-copy > p:not(.eyebrow) { max-width: 560px; margin: 0 0 var(--space-400); color: var(--muted); font-size: 18px; line-height: 28px; }
.events-hero-note { position: absolute; right: var(--space-700); bottom: var(--space-700); display: grid; gap: var(--space-100); min-width: 220px; padding: var(--space-300); border: 1px solid rgba(255, 244, 218, 0.18); border-radius: 16px; background: rgba(19, 18, 9, 0.86); backdrop-filter: blur(16px); }
.events-hero-note span, .events-hero-note small { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.events-hero-note strong { font-size: 18px; line-height: 28px; }
.events-hero-note small { color: var(--muted); letter-spacing: 0; text-transform: none; }
.archive-title-card { min-height: 120px; align-items: center; }
.archive-title-card h3 { grid-column: span 2; margin: 0; font-size: 18px; line-height: 28px; }

.tap-list-section, .wine-list-section { padding-bottom: var(--space-900); }
.tap-board, .wine-board { border-top: 1px solid var(--line); }
.tap-row { display: grid; grid-template-columns: minmax(260px, 1.2fr) minmax(160px, 0.65fr) minmax(180px, 1fr) auto; gap: var(--space-300); align-items: start; padding: var(--space-300) 0; border-bottom: 1px solid var(--line); }
.tap-row h3 { margin: 0 0 var(--space-75); font-size: 18px; line-height: 28px; }
.tap-row p { margin: 0; color: var(--muted); font-size: 14px; line-height: 20px; }
.tap-row span { color: var(--subtle); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.tap-row strong { color: var(--gold); font-size: 16px; text-align: right; }
.wine-board { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-600) var(--space-500); padding-top: var(--space-600); border-top: 0; }
.wine-group h3 { padding-bottom: var(--space-200); border-bottom: 1px solid var(--line); font-size: 24px; }
.wine-item { display: flex; justify-content: space-between; gap: var(--space-200); padding: var(--space-200) 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 14px; line-height: 20px; }
.wine-item span { flex: 0 0 auto; color: var(--gold); font-weight: 800; }

@media (max-width: 980px) {
  .section-wrap { width: min(100% - 64px, 760px); }
  .desktop-nav { gap: var(--space-200); }
  .brand { min-width: 150px; }
  .brand-wordmark { font-size: 11px; }
  .hero { min-height: 680px; padding: var(--space-700) 32px; }
  .home-hero { min-height: 680px; padding: var(--space-700) 32px; }
  .hero-identity { right: 32px; bottom: 48px; }
  .hero-copy { max-width: 680px; }
  .archive-layout { gap: var(--space-500); }
  .drinks-grid { grid-template-columns: 1fr; }
  .menu-board { gap: var(--space-500); }
  .internal-hero { min-height: 640px; padding: var(--space-600); }
  .internal-hero-stat { right: var(--space-600); bottom: var(--space-600); }
  .visit-page-grid { gap: var(--space-500); }
  .visit-card { gap: var(--space-500); padding: var(--space-600); }
  .mailing-section { gap: var(--space-500); }
  .food-section { gap: var(--space-500); }
  .bible-section { gap: var(--space-500); padding: var(--space-600); }
  .visit-home-section { gap: var(--space-500); padding: var(--space-600); }
}

@media (max-width: 720px) {
  .section-wrap { width: calc(100% - 40px); }
  .site-header { padding-top: var(--space-200); }
  .nav-shell { min-height: 56px; padding-left: var(--space-200); }
  .brand { min-width: 0; flex: 1; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; justify-content: center; gap: var(--space-300); padding: 120px 40px 40px; background: rgba(19, 18, 9, 0.98); opacity: 0; pointer-events: none; visibility: hidden; transform: translateY(-24px); transition: opacity 700ms var(--ease), transform 700ms var(--ease), visibility 700ms var(--ease); }
  .mobile-menu.is-open { z-index: 10; opacity: 1; pointer-events: auto; visibility: visible; transform: translateY(0); }
  .mobile-menu a { width: max-content; color: var(--muted); font-size: 24px; font-weight: 800; letter-spacing: -0.04em; }
  .mobile-menu a.is-current { color: var(--text); }
  .mobile-menu-cta { margin-top: var(--space-300); color: var(--text) !important; font-size: 16px !important; }
  .hero { min-height: 720px; padding: var(--space-600) 20px var(--space-700); }
  .home-hero { min-height: 640px; padding: var(--space-600) 20px var(--space-600); }
  .hero-identity { right: 20px; bottom: 24px; min-width: 180px; }
  h1 { font-size: 48px; }
  .hero-description { font-size: 16px; }
  .hero-note { right: 20px; bottom: 24px; }
  .internal-hero { min-height: 640px; margin-top: var(--space-400); padding: var(--space-400) var(--space-300) var(--space-600); }
  .internal-hero-copy > p:not(.eyebrow) { font-size: 16px; line-height: 24px; }
  .internal-hero-stat { right: var(--space-300); bottom: var(--space-300); }
  .route-grid { grid-template-columns: 1fr; }
  .visit-page-grid { grid-template-columns: 1fr; }
  .visit-page-grid h2 { font-size: 36px; }
  .status-band { grid-template-columns: auto 1fr; }
  .status-band .button { grid-column: 2; justify-self: start; }
  .tagline-section { padding-top: var(--space-800); padding-bottom: var(--space-800); }
  .tagline { font-size: 48px; }
  .section-heading { grid-template-columns: 1fr; gap: var(--space-300); }
  .section-heading h2, .mailing-copy h2, .visit-card h2 { font-size: 36px; }
  .archive-layout { grid-template-columns: 1fr; gap: var(--space-400); }
  .year-index { position: static; flex-direction: row; align-items: center; gap: var(--space-200); overflow-x: auto; padding-bottom: var(--space-100); }
  .index-label { flex: 0 0 auto; margin: 0; }
  .year-index a { flex: 0 0 auto; padding: var(--space-75) var(--space-100); border: 1px solid var(--line); border-radius: 999px; }
  .event-grid { grid-template-columns: 1fr; }
  .featured-event { grid-column: auto; }
  .menu-board { grid-template-columns: 1fr; }
  .visit-card { grid-template-columns: 1fr; padding: var(--space-500); }
  .visit-details { gap: var(--space-300); }
  .visit-actions { grid-column: auto; }
  .mailing-section { grid-template-columns: 1fr; padding-top: var(--space-600); padding-bottom: var(--space-800); }
  .footer-top, .footer-bottom { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .pouring-row { grid-template-columns: 1fr auto; gap: var(--space-100) var(--space-200); }
  .pouring-origin { grid-column: 2; grid-row: 1; text-align: right; }
  .pouring-style { grid-column: 1; grid-row: 2; }
  .pouring-abv { grid-column: 2; grid-row: 2; }
  .metric-band { grid-template-columns: repeat(2, 1fr); }
  .food-section, .bible-section, .story-grid, .events-preview, .visit-home-section, .shop-section { grid-template-columns: 1fr; }
  .food-section { padding-top: var(--space-800); }
  .bible-section { grid-template-columns: 1fr; padding: var(--space-500); }
  .bible-mark { width: 128px; height: 128px; }
  .bible-photo img { min-height: 200px; max-height: 260px; }
  .events-preview-actions { align-items: flex-start; }
  .visit-home-hours { padding-top: var(--space-300); padding-left: 0; border-top: 1px solid rgba(255, 244, 218, 0.28); border-left: 0; }
  .shop-section { align-items: flex-start; }
  .shop-actions { justify-content: flex-start; }
  .events-hero { min-height: 640px; margin-top: var(--space-400); padding: var(--space-400) var(--space-300) var(--space-600); }
  .events-hero-note { right: var(--space-300); bottom: var(--space-300); }
  .tap-row { grid-template-columns: 1fr auto; gap: var(--space-100) var(--space-200); }
  .tap-row > div { grid-column: 1 / -1; }
  .tap-row span:nth-of-type(1) { grid-column: 1; }
  .tap-row span:nth-of-type(2) { grid-column: 1; }
  .tap-row strong { grid-column: 2; grid-row: 2 / span 2; align-self: center; }
  .wine-board { grid-template-columns: 1fr; gap: var(--space-500); }
}

@media (max-width: 430px) {
  h1 { font-size: 36px; }
  .hero-note { right: 20px; bottom: 20px; width: calc(100% - 40px); padding: var(--space-200); }
  .hero-stamp { top: var(--space-200); left: var(--space-200); width: 64px; height: 64px; }
  .home-hero { min-height: 620px; }
  .hero-identity { right: 20px; bottom: 20px; width: calc(100% - 40px); }
  .food-copy h2, .bible-copy h2, .events-preview h2, .visit-home-copy h2, .shop-section h2 { font-size: 36px; }
  .metric-item strong { font-size: 36px; }
  .metric-item span { font-size: 10px; }
  .internal-hero { min-height: 620px; }
  .internal-hero-stat { left: var(--space-300); right: auto; min-width: 160px; }
  .status-band { gap: var(--space-200); padding: var(--space-200); }
  .status-icon { width: 48px; height: 48px; }
  .status-band h2 { font-size: 20px; line-height: 28px; }
  .tagline { font-size: 36px; }
  .event-card, .featured-event { min-height: auto; }
  .event-card h3 { font-size: 20px; line-height: 28px; }
  .older-archive summary { gap: var(--space-100); }
  .older-archive summary span:nth-child(2) { font-size: 10px; }
  .visit-card { padding: var(--space-400); }
  .visit-details { grid-template-columns: 1fr; }
  .visit-details > div:last-child { grid-column: auto; }
  .visit-actions { align-items: stretch; flex-direction: column; }
  .form-row { align-items: stretch; flex-direction: column; }
  .form-row .button { width: 100%; }
  .email-form { padding: var(--space-300); }
  .events-hero-note { right: 20px; bottom: 20px; width: calc(100% - 40px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 1ms !important; animation-duration: 1ms !important; }
  .reveal-section, .reveal-on-load { opacity: 1; transform: none; filter: none; }
  .reveal-word { color: var(--text); filter: none; }
}
