/* ============================================================
   THE CHRISTCHURCH V4 — CSS Design System
   ============================================================

   Palette
   --bg          #0c1a13   deep forest  (hero, dark sections)
   --bg-mid      #17291f   mid forest   (cards, hover)
   --cream       #f0e4cc   warm cream   (light sections)
   --chalk       #faf4e8   near-white   (text on dark)
   --ink         #0d0a06   near-black   (text on light)
   --amber       #c47818   amber        (primary accent)
   --amber-lt    #e09a38   light amber  (hover state)
   --rust        #9c3d1e   rust/red     (Third Barrel brand)
   --gold        #d4a843   gold         (decorative)
   --muted       #6a8070   muted green  (secondary text on dark)

   Typography
   Playfair Display — display headings (serif, editorial)
   DM Sans         — body, UI, labels (clean sans)
   Space Mono      — numbers, details (monospaced)
   ============================================================ */


/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--chalk);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: none; font: inherit; border: none; background: none; }
ul { list-style: none; }


/* ── Custom Properties ── */
:root {
  --bg:         #0c1a13;
  --bg-mid:     #172a1e;
  --bg-light:   #1e3629;
  --cream:      #f0e4cc;
  --parchment:  #e8d8ba;
  --chalk:      #faf4e8;
  --ink:        #0d0a06;
  --ink-mid:    #2a2018;
  --amber:      #c47818;
  --amber-lt:   #e09a38;
  --rust:       #9c3d1e;
  --rust-lt:    #c0521e;
  --gold:       #d4a843;
  --muted:      #6a8a78;
  --muted-lt:   #8aaa98;

  --ff-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-sans:  'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --ff-mono:  'Space Mono', 'Courier New', monospace;

  --nav-h: 72px;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);

  --max-w: 1280px;
  --pad:   clamp(1.25rem, 5vw, 4rem);
}


/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--amber);
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease),
              background 0.2s var(--ease), opacity 0.2s var(--ease);
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(196, 120, 24, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out),
              border-color 0.3s var(--ease), opacity 0.2s var(--ease);
}
.cursor-ring.is-hovering {
  width: 60px; height: 60px;
  border-color: var(--amber-lt);
}
.cursor.is-hovering {
  width: 6px; height: 6px;
}
@media (hover: none) {
  .cursor, .cursor-ring { display: none; }
}


/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: var(--amber);
  z-index: 9000;
  transition: width 0.05s linear;
}


/* ── Grain Overlay ── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  z-index: 1001;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  animation: grain 0.5s steps(2) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10%  { transform: translate(-2%, -3%); }
  20%  { transform: translate(3%, 2%); }
  30%  { transform: translate(-1%, 4%); }
  40%  { transform: translate(4%, -2%); }
  50%  { transform: translate(-3%, 1%); }
  60%  { transform: translate(1%, -4%); }
  70%  { transform: translate(3%, 3%); }
  80%  { transform: translate(-4%, 2%); }
  90%  { transform: translate(2%, -1%); }
}


/* ── NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
              border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(12, 26, 19, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(196, 120, 24, 0.15);
}
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--chalk);
  margin-right: auto;
  transition: color 0.2s var(--ease);
}
.nav-logo:hover { color: var(--amber-lt); }
.nav-logo span {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  margin-left: 2px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.main-nav a {
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250, 244, 232, 0.75);
  transition: color 0.2s var(--ease);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover { color: var(--chalk); }
.main-nav a:hover::after { width: 100%; }
.main-nav a.active { color: var(--chalk); }
.main-nav a.active::after { width: 100%; }
.nav-cta {
  padding: 0.6rem 1.4rem !important;
  border: 1px solid var(--amber) !important;
  border-radius: 2px;
  color: var(--amber) !important;
  transition: background 0.2s var(--ease), color 0.2s var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--amber) !important;
  color: var(--ink) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 1rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--chalk);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}

/* Mobile Nav Drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 490;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-drawer.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-drawer a {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--chalk);
  transition: color 0.2s var(--ease);
}
.nav-drawer a:hover { color: var(--amber); }
.nav-drawer .drawer-cta {
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  border: 1px solid var(--amber);
  color: var(--amber);
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-drawer .drawer-cta:hover {
  background: var(--amber);
  color: var(--ink);
}


/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: var(--nav-h) var(--pad) clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 55%, rgba(196, 120, 24, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(26, 50, 40, 0.8) 0%, transparent 60%);
  z-index: 0;
}
.hero-glow {
  position: absolute;
  bottom: -10%; right: 5%;
  width: clamp(300px, 50vw, 700px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(196, 120, 24, 0.12) 0%, transparent 70%);
  z-index: 0;
  animation: pulse-glow 6s ease-in-out infinite alternate;
}
@keyframes pulse-glow {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.1); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 0;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-lt);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3dc47a;
  box-shadow: 0 0 0 0 rgba(61, 196, 122, 0.4);
  animation: ping 2s ease-in-out infinite;
}
.status-dot.closed {
  background: var(--muted);
  box-shadow: none;
  animation: none;
}
@keyframes ping {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61, 196, 122, 0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(61, 196, 122, 0); }
}
.hero-title {
  font-family: var(--ff-serif);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(4.5rem, 13vw, 11rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--chalk);
  margin-bottom: 2.5rem;
}
.hero-title .line { display: block; }
.hero-title .accent { color: var(--amber); }
.hero-title .indent { padding-left: clamp(2rem, 8vw, 8rem); }
.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.hero-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hero-address {
  font-family: var(--ff-mono);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-lt);
}
.hero-tagline {
  font-family: var(--ff-sans);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: rgba(250, 244, 232, 0.6);
  max-width: 36ch;
  line-height: 1.5;
  margin-top: 0.5rem;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
  animation: fade-in 1.5s var(--ease) 1.5s both;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* Number decorative (top right) */
.hero-num {
  position: absolute;
  top: calc(var(--nav-h) + 3rem);
  right: var(--pad);
  font-family: var(--ff-mono);
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(250, 244, 232, 0.025);
  line-height: 1;
  z-index: 1;
  letter-spacing: -0.05em;
  user-select: none;
}


/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn--fill {
  background: var(--amber);
  color: var(--ink);
  border: 1px solid var(--amber);
}
.btn--fill:hover {
  background: var(--amber-lt);
  border-color: var(--amber-lt);
}
.btn--outline {
  background: transparent;
  color: var(--chalk);
  border: 1px solid rgba(250, 244, 232, 0.35);
}
.btn--outline:hover {
  border-color: var(--chalk);
  background: rgba(250, 244, 232, 0.06);
}
.btn--dark {
  background: var(--ink-mid);
  color: var(--chalk);
  border: 1px solid rgba(250, 244, 232, 0.1);
}
.btn--dark:hover {
  background: var(--bg-light);
  border-color: rgba(250, 244, 232, 0.2);
}
.btn-magnetic {
  transition: transform 0.3s var(--ease-out), all 0.25s var(--ease);
}


/* ── MARQUEE BAND ── */
.marquee-band {
  overflow: hidden;
  background: var(--amber);
  padding: 0.9rem 0;
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 1.5rem;
}
.marquee-track span.sep {
  color: rgba(13, 10, 6, 0.4);
  padding: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ── CONTAINERS ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}


/* ── SECTION SHARED STYLES ── */
.section-tag {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: var(--ff-serif);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.section-body {
  font-family: var(--ff-sans);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 300;
  line-height: 1.75;
  max-width: 52ch;
}
/* On light backgrounds */
.section-title.on-light { color: var(--ink); }
.section-body.on-light  { color: var(--ink-mid); }
.section-tag.on-light   { color: var(--rust); }


/* ── ABOUT / INTRO SECTION ── */
.about {
  background: var(--cream);
  padding: clamp(4rem, 10vw, 8rem) var(--pad);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: 'TC';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-serif);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(12rem, 30vw, 28rem);
  line-height: 1;
  color: rgba(13, 10, 6, 0.04);
  user-select: none;
  pointer-events: none;
}
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-left .section-title { font-size: clamp(2.5rem, 5vw, 4rem); }
.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-right p {
  font-family: var(--ff-sans);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-mid);
}
.about-right p strong {
  font-weight: 600;
  color: var(--ink);
}
.about-rule {
  width: 40px;
  height: 2px;
  background: var(--rust);
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(13, 10, 6, 0.1);
}
.stat-num {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(13, 10, 6, 0.5);
  margin-top: 0.3rem;
}


/* ── FLOORS SECTION ── */
.floors {
  background: var(--bg);
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.floors-header {
  padding: 0 var(--pad);
  max-width: var(--max-w);
  margin: 0 auto 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.floors-header .section-title { max-width: 16ch; }
.floors-intro-text {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted-lt);
  max-width: 36ch;
}

.floor-card {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  margin-bottom: clamp(4rem, 8vw, 6rem);
  position: relative;
}
.floor-card:last-child { margin-bottom: 0; }
.floor-card.flip { direction: rtl; }
.floor-card.flip > * { direction: ltr; }

.floor-num-wrap {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.floor-number {
  font-family: var(--ff-serif);
  font-weight: 900;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1;
  color: rgba(250, 244, 232, 0.06);
  user-select: none;
  transform: rotate(180deg);
}

.floor-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1rem;
}
.floor-label {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.floor-name {
  font-family: var(--ff-serif);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  color: var(--chalk);
}
.floor-desc {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted-lt);
  max-width: 40ch;
}
.floor-note {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(250, 244, 232, 0.08);
}

.floor-img-wrap {
  aspect-ratio: 4/3;
  background: var(--bg-mid);
  border: 1px solid rgba(250, 244, 232, 0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floor-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 120, 24, 0.08) 0%, transparent 60%);
}
.floor-img-ph {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}


/* ── WHAT'S POURING ── */
.pours {
  background: var(--cream);
  padding: clamp(4rem, 10vw, 8rem) var(--pad);
  position: relative;
}
.pours-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pours-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.pours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5px;
  border: 1px solid rgba(13, 10, 6, 0.12);
}
.beer-card {
  background: var(--parchment);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(13, 10, 6, 0.0);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.beer-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.beer-card:hover { background: var(--cream); transform: translateY(-2px); }
.beer-card:hover::before { transform: scaleX(1); }
.beer-card.is-featured::before { transform: scaleX(1); background: var(--amber); }
.beer-card.is-featured { background: var(--cream); }

.beer-tag {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.75rem;
}
.beer-name {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.beer-style {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(13, 10, 6, 0.5);
  margin-bottom: 0.75rem;
}
.beer-desc {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 1.25rem;
}
.beer-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 10, 6, 0.1);
}
.beer-abv {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(13, 10, 6, 0.45);
}
.beer-badge {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  background: rgba(156, 61, 30, 0.1);
  color: var(--rust);
}
.beer-badge.draft { background: rgba(196, 120, 24, 0.12); color: var(--amber); }


/* ── EVENTS BAND ── */
.events-band {
  background: var(--bg);
  padding: clamp(4rem, 10vw, 8rem) var(--pad);
}
.events-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(250, 244, 232, 0.06);
}
.event-card {
  background: var(--bg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.25s var(--ease);
  border: 1px solid transparent;
}
.event-card:hover {
  background: var(--bg-mid);
  border-color: rgba(196, 120, 24, 0.2);
}
.event-when {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}
.event-name {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--chalk);
  line-height: 1.1;
  margin-top: 0.25rem;
}
.event-info {
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted-lt);
  line-height: 1.5;
}
.event-free {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3dc47a;
  margin-top: auto;
  padding-top: 0.75rem;
}

.events-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 244, 232, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.private-hire-note {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted-lt);
  max-width: 40ch;
}
.private-hire-note strong { font-weight: 500; color: var(--chalk); }


/* ── FIND US SECTION ── */
.find-us {
  background: var(--cream);
  padding: clamp(4rem, 10vw, 8rem) var(--pad);
}
.find-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.find-left {}
.find-cta-title {
  font-family: var(--ff-serif);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.find-cta-title em { color: var(--rust); }
.find-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.find-ctas .btn--fill {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--chalk);
}
.find-ctas .btn--fill:hover {
  background: var(--rust-lt);
  border-color: var(--rust-lt);
}
.find-ctas .btn--outline {
  color: var(--ink);
  border-color: rgba(13, 10, 6, 0.3);
}
.find-ctas .btn--outline:hover {
  border-color: var(--ink);
  background: rgba(13, 10, 6, 0.04);
}

.find-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 1rem;
}
.find-block {}
.find-block-label {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13, 10, 6, 0.4);
  margin-bottom: 0.6rem;
}
.find-block p {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-mid);
}
.find-block a { color: var(--rust); }
.find-block a:hover { text-decoration: underline; }

.find-map {
  grid-column: 1 / -1;
  height: 160px;
  background: var(--parchment);
  border: 1px solid rgba(13, 10, 6, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(13, 10, 6, 0.3);
}


/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: rgba(250, 244, 232, 0.45);
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--pad);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-style: italic;
  font-size: 1rem;
  color: var(--chalk);
}
.footer-nav-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-nav-links a {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(250, 244, 232, 0.4);
  transition: color 0.2s var(--ease);
}
.footer-nav-links a:hover { color: var(--chalk); }
.footer-copy {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
}


/* ── ANIMATIONS & REVEALS ── */
.fade-up {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.fade-in.visible { opacity: 1; }
.slide-left {
  opacity: 0;
  transform: translateX(-3rem);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right {
  opacity: 0;
  transform: translateX(3rem);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

@keyframes fade-in {
  from { opacity: 0; transform: translateY(1rem); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }


/* ── VIEW TRANSITIONS ── */
@keyframes fade-out { to { opacity: 0; } }
@keyframes fade-in-anim { from { opacity: 0; } }
@keyframes slide-from-right {
  from { transform: translateX(2rem); opacity: 0; }
}
@keyframes slide-to-left {
  to { transform: translateX(-2rem); opacity: 0; }
}
::view-transition-old(root) {
  animation: 0.3s var(--ease) both fade-out;
}
::view-transition-new(root) {
  animation: 0.4s var(--ease-out) both fade-in-anim;
}


/* ── ACCESSIBILITY ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}


/* ══════════════════════════════════════
   MENU PAGE STYLES
   ══════════════════════════════════════ */

.page-hero {
  background: var(--bg);
  padding: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem)) var(--pad) clamp(3rem, 6vw, 5rem);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-title {
  font-family: var(--ff-serif);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  color: var(--chalk);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.page-subtitle {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted-lt);
  max-width: 40ch;
  line-height: 1.6;
}

.menu-section {
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
}
.menu-section:nth-child(odd) { background: var(--cream); }
.menu-section:nth-child(even) { background: var(--parchment); }

.menu-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.menu-heading {
  font-family: var(--ff-serif);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.menu-subheading {
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(13, 10, 6, 0.45);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(13, 10, 6, 0.1);
}
.menu-list {
  display: grid;
  gap: 0;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(13, 10, 6, 0.08);
  align-items: baseline;
}
.menu-item-left {}
.menu-item-name {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.menu-item-desc {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(13, 10, 6, 0.5);
  line-height: 1.5;
}
.menu-item-tags {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.35rem;
  flex-wrap: wrap;
}
.menu-tag {
  font-family: var(--ff-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 100px;
  background: rgba(156, 61, 30, 0.08);
  color: var(--rust);
}
.menu-tag.abv { background: rgba(196, 120, 24, 0.1); color: var(--amber); }
.menu-tag.new { background: rgba(61, 196, 122, 0.1); color: #2a9960; }
.menu-tag.seasonal { background: rgba(212, 168, 67, 0.12); color: #9a7a1a; }
.menu-item-price {
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  color: rgba(13, 10, 6, 0.6);
  white-space: nowrap;
}


/* ══════════════════════════════════════
   EVENTS PAGE STYLES
   ══════════════════════════════════════ */

.events-page-section {
  background: var(--bg);
  padding: clamp(4rem, 8vw, 6rem) var(--pad);
}
.events-page-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.recurring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(250, 244, 232, 0.05);
  margin-top: 3rem;
}
.recurring-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.recurring-card:hover {
  background: var(--bg-mid);
  border-color: rgba(196, 120, 24, 0.15);
}
.recurring-day {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}
.recurring-name {
  font-family: var(--ff-serif);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--chalk);
  line-height: 1.05;
}
.recurring-time {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted-lt);
}
.recurring-free {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3dc47a;
  margin-top: 0.5rem;
}

/* Private Hire */
.hire-section {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 6rem) var(--pad);
}
.hire-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.hire-text { display: flex; flex-direction: column; gap: 1.25rem; }
.hire-desc {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-mid);
}
.hire-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hire-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.hire-detail-label {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(13, 10, 6, 0.4);
  white-space: nowrap;
  padding-top: 0.15rem;
  min-width: 6rem;
}
.hire-detail-val {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.5;
}


/* ══════════════════════════════════════
   BOOK PAGE STYLES
   ══════════════════════════════════════ */

.book-section {
  background: var(--cream);
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
}
.book-inner {
  max-width: 760px;
  margin: 0 auto;
}
.book-intro {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 2.5rem;
}
.book-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-label {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(13, 10, 6, 0.5);
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--parchment);
  border: 1px solid rgba(13, 10, 6, 0.18);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  border-radius: 0;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--rust);
  background: #fff;
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-note {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(13, 10, 6, 0.45);
  line-height: 1.5;
}
.form-submit {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}
.book-form .btn--fill {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--chalk);
  padding: 1rem 2.5rem;
}
.book-form .btn--fill:hover {
  background: var(--rust-lt);
  border-color: var(--rust-lt);
}

.book-walkin {
  background: var(--bg);
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
}
.book-walkin-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.book-walkin-text { max-width: 50ch; }
.book-walkin-text h2 {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--chalk);
  margin-bottom: 0.75rem;
}
.book-walkin-text p {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted-lt);
}


/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 1024px) {
  .floor-card {
    grid-template-columns: auto 1fr;
  }
  .floor-img-wrap { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about::before { font-size: 40vw; }
  .find-inner { grid-template-columns: 1fr; }
  .hire-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero-foot { flex-direction: column; align-items: flex-start; }
  .hero-title { font-size: clamp(3.5rem, 14vw, 7rem); }
  .hero-num { display: none; }

  .floor-card {
    grid-template-columns: 1fr;
  }
  .floor-num-wrap { writing-mode: horizontal-tb; }
  .floor-number { font-size: clamp(4rem, 15vw, 7rem); transform: none; }

  .about-stats { flex-wrap: wrap; gap: 1.5rem; }

  .floors-header { flex-direction: column; align-items: flex-start; }
  .pours-header { flex-direction: column; align-items: flex-start; }
  .events-header { flex-direction: column; align-items: flex-start; }

  .find-right { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .book-walkin-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { justify-content: center; }
  .events-grid { grid-template-columns: 1fr; }
  .pours-grid { grid-template-columns: 1fr; }
  .recurring-grid { grid-template-columns: 1fr; }
  .find-right { grid-template-columns: 1fr; }
}


/* ── Database-driven content (events / menu rendered from Supabase) ── */

/* Event card description — was an inline style on the static cards;
   moved to a class now that the cards are built from data. */
.recurring-desc {
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted-lt);
  line-height: 1.65;
  margin-top: 0.5rem;
}

/* Loading / empty / error states for data-driven sections. */
.data-state {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted-lt);
  padding: 2rem 0;
  grid-column: 1 / -1;       /* span the whole grid */
}
.data-state--error { color: var(--rust); }

/* Menu tabs (Beer / Whiskey / Wine & More / Food) — dark-on-light to
   match the cream/parchment menu background. */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.25rem;
  border-bottom: 1px solid rgba(13, 10, 6, 0.12);
  margin-bottom: 2.5rem;
}
.menu-tab {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13, 10, 6, 0.45);
  padding: 0.85rem 0;
  position: relative;
  background: none;
  cursor: none;
  transition: color 0.25s ease;
}
.menu-tab::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-tab:hover { color: var(--ink); }
.menu-tab.active { color: var(--rust); }
.menu-tab.active::after { transform: scaleX(1); }

/* Category headings stack within a tab panel; space them apart. */
.menu-panel .menu-heading { margin-top: 2.5rem; }
.menu-panel .menu-heading:first-child { margin-top: 0; }

/* "Draft" badge — was an inline amber style on the static menu. */
.menu-tag.draft { background: rgba(196, 120, 24, 0.1); color: var(--amber); }


/* "Download menu (PDF)" action above the menu tabs. */
.menu-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.25rem;
}
.menu-pdf-link { font-size: 0.7rem; }


/* ══════════════════════════════════════
   PRINTABLE MENU  (menu-pdf.html)
   ──────────────────────────────────────
   A single-document menu sheet rendered from the same Supabase data
   as the interactive menu. Designed dark-ink-on-light so it survives
   print-to-PDF (browsers drop background fills by default). The on-screen
   view shows the sheet as a "page" on a dark backdrop; @media print maps
   it to A4. To produce a dense LANDSCAPE variant later, the two marked
   knobs below (@page size + .pdf-content column-count) are all that change.
   ══════════════════════════════════════ */

.pdf-body-page { background: var(--bg); }

/* Screen-only toolbar */
.pdf-toolbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  background: rgba(12, 26, 19, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(240, 228, 204, 0.12);
}
.pdf-tool-link {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-lt);
  text-decoration: none;
}
.pdf-tool-link:hover { color: var(--chalk); }
.pdf-print-btn { font-size: 0.75rem; }

.pdf-stage {
  padding: clamp(1.5rem, 5vw, 3.5rem) 1rem;
  display: flex;
  justify-content: center;
}

/* The "paper". A4 portrait aspect on screen, real A4 in print. */
.pdf-doc {
  width: 100%;
  max-width: 820px;
  background: var(--chalk);
  color: var(--ink);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

/* ---- Header ---- */
.pdf-head {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--ink);
}
.pdf-eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.75rem;
}
.pdf-brand {
  font-family: var(--ff-serif);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  line-height: 1;
  color: var(--ink);
}
.pdf-address {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(13, 10, 6, 0.55);
  margin-top: 0.75rem;
}

/* ---- Body: two columns that flow ---- */
.pdf-content {
  column-count: 2;          /* KNOB: 1 reads taller; landscape variant uses 3 */
  column-gap: 2.5rem;
}
.pdf-section { break-inside: avoid-column; margin-bottom: 1.4rem; }
.pdf-section-title {
  font-family: var(--ff-serif);
  font-weight: 900;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rust);
  margin-bottom: 0.6rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(156, 61, 30, 0.3);
}
.pdf-cat { break-inside: avoid; margin-bottom: 1rem; }
.pdf-cat-title {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.45rem;
}
.pdf-item { break-inside: avoid; margin-bottom: 0.55rem; }
.pdf-item-head {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.pdf-item-name {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  white-space: nowrap;
}
.pdf-leader {
  flex: 1 1 auto;
  border-bottom: 1px dotted rgba(13, 10, 6, 0.3);
  transform: translateY(-0.18rem);
}
.pdf-item-price {
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  color: var(--ink);
  white-space: nowrap;
}
.pdf-item-desc {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(13, 10, 6, 0.62);
  line-height: 1.45;
  margin-top: 0.1rem;
}
.pdf-item-meta {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: rgba(156, 61, 30, 0.85);
  margin-top: 0.15rem;
}

/* ---- Footer ---- */
.pdf-foot {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 10, 6, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(13, 10, 6, 0.5);
}

/* ══════════════════════════════════════
   PRINT  — applies to every page, but the printable menu is the
   one designed for it. Backgrounds are intentionally avoided so
   nothing relies on print-color-adjust; ink-on-white throughout.
   ══════════════════════════════════════ */
@media print {
  @page { size: A4 portrait; margin: 14mm; }   /* KNOB: "A4 landscape" for the dense variant */

  /* Hide all site chrome that isn't the menu sheet. */
  .grain, .cursor, .cursor-ring, .scroll-progress,
  .site-header, .nav-drawer, .marquee-band,
  .pdf-toolbar, .footer { display: none !important; }

  html, body { background: #fff !important; }
  .pdf-body-page { background: #fff !important; }
  .pdf-stage { padding: 0; display: block; }
  .pdf-doc {
    max-width: none;
    width: 100%;
    padding: 0;
    box-shadow: none;
    color: #000;
  }
  .pdf-section { break-inside: avoid; }
}


/* ══════════════════════════════════════
   EVENT THEMES  (re-skin via :root[data-theme])
   ──────────────────────────────────────
   Each theme only remaps the ACCENT palette variables — never layout, type,
   spacing, or the base bg/text — so the approved design's structure and
   contrast stay intact and only the accent hues change. Default (no
   data-theme) is the approved look. The active theme is set only from an
   approved value (js/data.js applyTheme + the DB check in migration 005);
   arbitrary values are never applied. ?theme=<name> previews one.
   ══════════════════════════════════════ */

:root[data-theme="paddys"] {        /* St Patrick's — green & gold */
  --amber: #2f9e44;  --amber-lt: #51cf66;
  --rust:  #2b8a3e;  --rust-lt:  #40a85a;
  --gold:  #f0c419;
}
:root[data-theme="christmas"] {     /* red, holly green & gold */
  --amber: #c0392b;  --amber-lt: #e74c3c;
  --rust:  #1e6b3a;  --rust-lt:  #2e8b4f;
  --gold:  #e8c33c;
}
:root[data-theme="halloween"] {     /* pumpkin orange & purple */
  --amber: #e8730c;  --amber-lt: #ff8c1a;
  --rust:  #7b2d9c;  --rust-lt:  #9b4fc0;
  --gold:  #f0a020;
}
:root[data-theme="ireland"] {       /* tricolour — green & orange */
  --amber: #169b62;  --amber-lt: #2dbd7e;
  --rust:  #ff7a2e;  --rust-lt:  #ff9457;
  --gold:  #e0a83a;
}
:root[data-theme="matchday"] {      /* green, gold & a bold blue */
  --amber: #2b8a3e;  --amber-lt: #51cf66;
  --rust:  #1864ab;  --rust-lt:  #2d7dd2;
  --gold:  #ffd43b;
}
:root[data-theme="easter"] {        /* spring pastels — yellow & lilac */
  --amber: #d99a2b;  --amber-lt: #f0c060;
  --rust:  #a86fb0;  --rust-lt:  #c08fc8;
  --gold:  #f0d060;
}
