@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Instrument Serif';
  src: url('assets/fonts/instrument-serif-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Caveat';
  src: url('assets/fonts/caveat-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Caveat';
  src: url('assets/fonts/caveat-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Caveat';
  src: url('assets/fonts/caveat-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Thinner, wider casual handwriting — closer to the pen strokes on the real
   drinks-menu photo (assets/menu/matcha-based.png etc.) than Caveat, which
   reads as heavier/tighter. */
@font-face {
  font-family: 'Waiting for the Sunrise';
  src: url('assets/fonts/waiting-for-the-sunrise-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Bolder, rounder, more exaggerated handwriting — trying this on the
   landing page's perks checklist instead of Waiting for the Sunrise. */
@font-face {
  font-family: 'Architects Daughter';
  src: url('assets/fonts/architects-daughter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #102b82;
  --bg-alt: #16358f;
  --ink: #e6e1d2;
  --ink-dim: #a89f8c;
  --accent: #cdbb8c;
  --accent-dim: #8b7f5e;
  --line: #2c4bab;
  --card: #16368f;
  --error: #f0a08f;
  --radius: 14px;
  --max-w: 480px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100dvh;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.app {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.bg-texture {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(60% 45% at 50% 0%, rgba(255,255,255,0.06), transparent 70%),
    radial-gradient(80% 60% at 100% 100%, rgba(205,187,140,0.08), transparent 60%),
    var(--bg);
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 1;
  padding: 56px 24px 0;
  text-align: center;
}

.wordmark-img {
  height: 54px;
  width: auto;
}

#logo-link,
#menu-logo-link {
  display: inline-block;
  line-height: 0;
}

/* Community graphic — fixed centered on every page (index.html and
   menu.html both), behind the content, for continuity site-wide. */
.center-graphic {
  position: fixed;
  z-index: 0;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58%;
  max-width: 260px;
  height: auto;
  opacity: 0.3;
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 56px;
}

.screen {
  display: none;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: rise 0.45s ease both;
}

.screen.is-active { display: flex; }

.screen[data-screen="landing"] {
  position: relative;
  align-self: stretch;
  justify-content: space-evenly;
  padding: 8px 0;
}

.landing-hero,
.landing-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 24px;
}

/* .lang-switch is absolutely positioned (floats top-right, out of flow), so
   nothing here guarantees clearance on its own — on shorter viewports the
   space-evenly distribution above can push .landing-hero's top (and the
   eyebrow inside it) up underneath the flags. Reserve space explicitly. */
.landing-hero { padding-top: 44px; }

.landing-hero .lede { margin-bottom: 0; }

.perks-list {
  align-self: stretch;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  max-width: 38ch;
}

/* Introduces the Grounds-Pass perks list right below it — left-aligned and
   capped at the same 38ch as .perks-list so the heading's left edge lines
   up with the bullets' left edge (rather than sitting centered above a
   left-aligned list), with a thin underline reinforcing it as a header.
   align-self: stretch is required — .landing-hero is a flex column with
   align-items: center, so a short single-line child like this heading
   would otherwise shrink to its own text width instead of spanning the
   same width as .perks-list (which only reaches full width because its
   longer bullet text wraps across multiple lines). */
.perks-heading {
  align-self: stretch;
  margin: 20px 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  max-width: 38ch;
  text-align: left;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

.perks-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Architects Daughter', cursive;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink-dim);
}

.perks-list li::before {
  content: "–";
  flex: none;
  color: var(--accent);
  font-size: 19px;
  line-height: 1;
}

/* Landing page stat row — numbers count up from 0 on scroll-into-view
   (see the IntersectionObserver in script.js) as a small visual hook. */
.stats-row {
  display: flex;
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.stat-number {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--accent);
}

/* Next-event date sits alongside the count-up .stat-number figures but
   isn't itself a counted number — a smaller size fits "27 Sep" in the
   same column width as a two-digit count-up. */
.stat-date {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--accent);
}

.stat-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-align: center;
  max-width: 80px;
  line-height: 1.3;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 600;
}

.display {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 16px;
  color: var(--ink);
}

h1.display { font-size: clamp(38px, 10vw, 52px); }
h2.display { font-size: clamp(26px, 7vw, 32px); }

/* Landing hero: bring the headline size down a step closer to the eyebrow
   and lede around it, instead of the much larger default h1 scale. */
.landing-hero h1.display { font-size: clamp(34px, 9vw, 44px); }

.lede {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0 0 32px;
  max-width: 38ch;
}

.landing-bio {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0 0 16px;
  max-width: 42ch;
}

.fine-print {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--ink-dim);
}

/* Match the landing screen's fine print to its neighboring menu link (14px)
   instead of sitting a size smaller for no real reason. */
#landing-fine-print { font-size: 14px; }

.btn-primary {
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 340px;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 24px -8px rgba(205,187,140,0.4);
}

.btn-primary:hover { background: #ddd0a8; }
.btn-primary:active { transform: scale(0.97); }

/* Language switch — small flag buttons, top-right of the landing screen */
.lang-switch {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 4px;
}

.lang-switch-btn {
  appearance: none;
  cursor: pointer;
  border: 1px solid transparent;
  background: none;
  padding: 4px;
  border-radius: 8px;
  font-size: 19px;
  line-height: 1;
  opacity: 0.55;
  transition: opacity 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.lang-switch-btn:hover { opacity: 0.85; }
.lang-switch-btn.active {
  opacity: 1;
  border-color: var(--line);
  background: var(--card);
}

/* Question screen */
.progress {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
}

.progress .dot {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: var(--line);
  transition: background 0.25s ease;
}

.progress .dot.filled { background: var(--accent); }

.q-count {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 600;
}

.question-text {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(24px, 6.5vw, 30px);
  line-height: 1.25;
  letter-spacing: -1px;
  margin: 0 0 28px;
  color: var(--ink);
}

.q-hint {
  margin: -16px 0 20px;
  font-size: 13px;
  color: var(--ink-dim);
}

.q-hint[hidden] { display: none; }

.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.options[hidden] { display: none; }

.option-btn {
  appearance: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.4;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}

.option-btn:hover { border-color: var(--accent-dim); background: #1c3fa0; }
.option-btn:active { transform: scale(0.98); }
.option-btn.selected {
  border-color: var(--accent);
  background: #1c3fa0;
  box-shadow: 0 0 0 1px var(--accent);
}

.multi-answer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-top: 18px;
}

.multi-answer[hidden] { display: none; }

.write-in-answer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-top: 18px;
}

.write-in-answer[hidden] { display: none; }

.text-answer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.text-answer[hidden] { display: none; }

.text-answer-input {
  width: 100%;
  resize: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}

.text-answer-input.short { min-height: 52px; }
.text-answer-input:not(.short) { min-height: 120px; }

.text-answer-input::placeholder { color: #7c85c2; }
.text-answer-input:focus { border-color: var(--accent); }

/* Contact form */
#contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-dim);
}

.field em {
  font-style: normal;
  font-weight: 400;
  color: var(--ink-dim);
  opacity: 0.75;
}

.field input {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}

.field input::placeholder { color: #7c85c2; }
.field input:focus { border-color: var(--accent); }

.error {
  color: var(--error);
  font-size: 13px;
  margin: 0;
  text-align: left;
}

/* Reviewing */
.spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  margin-bottom: 26px;
  animation: spin 0.9s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Approved */
.price-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 340px;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  margin-bottom: 20px;
}

.price-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.price-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-dim);
}

.price-amount {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--accent);
}

.price-unit {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-dim);
  margin-left: 2px;
}

.price-sub {
  font-size: 12.5px;
  color: var(--ink-dim);
  text-align: left;
  white-space: pre-line;
}

.plan-badge {
  margin-top: 2px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  text-align: left;
}

.plan-badge[hidden] { display: none; }

/* Plan toggle — choose Grounds Pass, Single Event Pass, or Founding Member, above the price card */
.plan-toggle {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  margin-bottom: 14px;
}

.plan-btn {
  position: relative;
  appearance: none;
  cursor: pointer;
  flex: 1;
  text-align: left;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.plan-btn:hover { border-color: var(--accent-dim); }

.plan-btn.is-active {
  border-color: var(--accent);
  background: #1c3fa0;
  box-shadow: 0 0 0 1px var(--accent);
}

.plan-btn-badge {
  position: absolute;
  top: -8px;
  right: 10px;
  display: inline-block;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  border-radius: 999px;
  padding: 2px 6px;
}

.plan-btn-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-dim);
}

.plan-btn-price {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 2px;
}

.plan-btn.is-active .plan-btn-price { color: var(--accent); }

/* Payment-method toggle — Pix, PayPal, or Wise, above the price card */
.payment-toggle {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  margin-bottom: 14px;
}

.payment-btn {
  appearance: none;
  cursor: pointer;
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink-dim);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.payment-btn:hover { border-color: var(--accent-dim); }

.payment-btn.is-active {
  border-color: var(--accent);
  background: #1c3fa0;
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--accent);
}

/* Pix payment card */
.pix-card {
  width: 100%;
  max-width: 300px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Landing screen's Refer-a-Friend and community-chat cards, side by side
   on the same row (they used to stack, adding a lot of extra scroll to an
   already-long page) — each shrinks to half width with a gap between,
   and stretches to match whichever card is taller. */
.cta-cards-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 340px;
  margin-top: 24px;
}

.cta-cards-row .pix-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: 16px 12px;
}

/* Landing screen's public community-chat card — reuses .pix-card's look */
.community-card {
  justify-content: center;
}

/* Landing screen's "Refer a Friend" card — reuses .pix-card's look, with
   its own serif, gold-accent headline instead of a plain lede line. */
.referral-card {
  justify-content: center;
}

.referral-heading,
.community-heading {
  font-size: clamp(16px, 4.2vw, 20px);
  color: var(--accent);
  margin: 0 0 8px;
}

.community-heading {
  display: block;
  text-decoration: none;
}

.community-heading:hover {
  color: var(--accent-dim);
}

/* Small friendly nudge closing out the community-chat card — the same
   casual handwriting font as the perks-list bullets, to read as a
   personal aside rather than more informational copy. */
.community-intro {
  margin: 8px 0 0;
  font-family: 'Architects Daughter', cursive;
  font-size: 15px;
  color: var(--accent);
}

.referral-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 0;
}

.referral-price-old {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 15px;
  color: var(--ink-dim);
  text-decoration: line-through;
  text-decoration-color: var(--ink-dim);
}

.referral-price-new {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--accent);
}

.pix-card[hidden] { display: none; }

.pix-qr-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
}

.pix-scan-hint {
  margin: 12px 0 16px;
  font-size: 12.5px;
  color: var(--ink-dim);
  text-align: center;
}

.pix-key-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pix-key-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 600;
}

.pix-key-value-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pix-key-value {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
}

.copy-btn {
  flex: none;
  appearance: none;
  cursor: pointer;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 14px;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.copy-btn:hover { border-color: var(--accent); background: #1c3fa0; }
.copy-btn.copied { color: var(--ink); border-color: var(--accent-dim); }

/* Secondary text link */
.link-secondary {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.link-secondary[hidden] {
  display: none;
}

.link-secondary:hover {
  color: var(--accent);
  border-color: var(--accent-dim);
}

@media (min-width: 640px) {
  main { padding: 56px 24px 80px; }
}

/* ---------------------------------------------------------------------- */
/* Menu page                                                               */
/* ---------------------------------------------------------------------- */

.menu-main {
  align-items: flex-start;
  padding: 32px 24px 64px;
}

.menu-page {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-dim);
  text-decoration: none;
}

.back-link:hover { color: var(--accent); }

button.back-link {
  appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  padding: 0;
}

.screen[data-screen="question"] .back-link,
.screen[data-screen="contact"] .back-link,
.screen[data-screen="select-event"] .back-link,
.screen[data-screen="approved"] .back-link {
  align-self: flex-start;
  margin-bottom: 20px;
}

.menu-perks-list {
  max-width: none;
  margin-top: 12px;
  margin-bottom: 28px;
}

.menu-category {
  margin-bottom: 28px;
}

.menu-category-title {
  display: inline-block;
  margin: 0 0 14px;
}

.menu-category-title-img {
  display: block;
  width: auto;
  /* height is set inline by menu.js (half natural size — see menu.js) */
}

.menu-category-title-text {
  font-family: 'Caveat', cursive;
  font-size: 25px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.menu-category-note {
  font-size: 13px;
  color: var(--ink-dim);
  margin: -8px 0 18px;
}

.menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-item {
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  text-align: left;
}

.menu-item-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.menu-item-name {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

.menu-item-name-img {
  display: block;
  width: auto;
  /* height is set inline by menu.js (half natural size — see menu.js) */
}

.menu-item-tag {
  flex: none;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
}

.menu-item-desc {
  margin: 4px 0 0;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--ink-dim);
}

.menu-item-playlist-link {
  display: inline-block;
  margin: 6px 0 0;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.menu-item-playlist-link:hover {
  color: var(--accent);
  border-color: var(--accent-dim);
}

/* Events page */
.events-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.event-card {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  text-align: center;
  overflow: hidden;
}

.event-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  border-radius: 999px;
  padding: 2px 7px;
}

.event-card-img {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
  cursor: pointer;
}

.event-card-img:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Full-screen lightbox for tapping an event poster to see it at full size */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 16, 48, 0.92);
  cursor: zoom-out;
}

.image-lightbox[hidden] { display: none; }

.image-lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  cursor: default;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.image-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.event-card-date {
  margin: 0;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--ink);
}

.event-card-title {
  margin: 0;
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 700;
  font-size: 11.5px;
  line-height: 1.15;
  color: var(--accent);
}

#past-events-heading {
  margin-top: 28px;
}

/* Select-your-event(s) step — same card look as events.html, but tappable */
.screen[data-screen="select-event"] .lede { margin-bottom: 20px; }

#select-event-list {
  width: 100%;
  margin-bottom: 16px;
}

.event-card-select {
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  width: 100%;
  position: relative;
  transition: border-color 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.event-card-select:hover { border-color: var(--accent-dim); }

.event-card-select.is-selected {
  border-color: var(--accent);
  background: #1c3fa0;
  box-shadow: 0 0 0 1px var(--accent);
}

.event-card-select.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.event-card-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.event-card-select:not(.is-selected) .event-card-check { color: transparent; }

#select-event-continue[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

#select-event-monthly-link {
  margin-top: 16px;
}

#select-event-founding-link {
  margin-top: 10px;
}

.menu-addon {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  margin-bottom: 28px;
}

.menu-addon-img {
  display: block;
  width: auto;
  /* height is set inline by menu.js (half natural size — see menu.js) */
}

.menu-addon-name {
  font-family: 'Caveat', cursive;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
}

.menu-note {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  text-align: center;
  margin: 0 0 28px;
}

.menu-footer {
  margin-top: 8px;
  text-align: left;
  width: 100%;
}
