/* ============================================
   PUMP & GRIND — Mansfield, Ohio
   Aesthetic: warm diner + vinyl record shop
   Palette: cream, espresso, amber, brick
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=DM+Mono:wght@400;500&display=swap');

:root {
  --cream:    #F5E9D4;
  --cream-2:  #EBD9B8;
  --espresso: #2A1810;
  --espresso-2:#3D2419;
  --espresso-3:#5F3A2B;
  --amber:    #E8A33C;
  --amber-dk: #BA7517;
  --brick:    #B84A1F;
  --brick-dk: #7A2E11;
  --ink:      #1A0E08;
  --paper:    #FDF8F0;
  --muted:    #6B5B47;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Fraunces', Georgia, serif;
  --font-mono:    'DM Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-serif);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--espresso);
  color: var(--cream);
  border-bottom: 3px solid var(--amber);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--cream);
}

.logo-disc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ink) 28%, var(--amber) 32%, var(--ink) 36%, var(--ink) 100%);
  position: relative;
  flex-shrink: 0;
  animation: spin 12s linear infinite;
}

.logo-disc::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: var(--brick);
}

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

.nav-links {
  display: flex;
  gap: 36px;
  font-family: var(--font-display);
  letter-spacing: 2px;
  font-size: 15px;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--amber);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
}

.nav-cta {
  background: var(--amber);
  color: var(--espresso);
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: transform 0.15s, background 0.2s;
}

.nav-cta:hover { background: var(--cream); transform: translateY(-1px); }

.nav-mobile-toggle { display: none; background: none; border: none; color: var(--cream); cursor: pointer; }

/* ---------- HERO ---------- */
.hero {
  background: var(--espresso);
  color: var(--cream);
  padding: 80px 32px 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg-disc {
  position: absolute;
  right: -180px;
  top: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--espresso-2) 30%, var(--espresso-3) 32%, var(--espresso-2) 34%, var(--espresso-2) 50%, var(--espresso-3) 52%, var(--espresso-2) 54%, var(--espresso-2) 70%, var(--espresso-3) 72%, var(--espresso-2) 74%, var(--espresso-2) 100%);
  opacity: 0.5;
  animation: spin 60s linear infinite;
}

.hero-bg-disc::after {
  content: '';
  position: absolute;
  inset: 220px;
  border-radius: 50%;
  background: var(--brick-dk);
  opacity: 0.6;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before, .eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--amber);
}

.eyebrow.left::before { display: none; }
.eyebrow.left { justify-content: flex-start; }
.eyebrow.left::after { flex: 0 0 60px; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.92;
  letter-spacing: 1px;
  color: var(--cream);
  margin-bottom: 28px;
  max-width: 900px;
}

.hero h1 .accent {
  color: var(--amber);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -2px;
}

.hero-sub {
  font-size: 20px;
  max-width: 560px;
  color: var(--cream-2);
  margin-bottom: 36px;
  line-height: 1.5;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn {
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: transform 0.15s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: var(--amber);
  color: var(--espresso);
}

.btn-primary:hover { background: var(--cream); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}

.btn-ghost:hover { background: var(--cream); color: var(--espresso); transform: translateY(-2px); }

.hero-strip {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--espresso-3);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cream-2);
}

.hero-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-strip-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.hero-strip-item.live .dot {
  background: #4ADE80;
  box-shadow: 0 0 8px #4ADE80;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ---------- SECTION SHELL ---------- */
.section {
  padding: 100px 32px;
  position: relative;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}

.section-head.center { margin: 0 auto 56px; text-align: center; }

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 1px;
  margin: 16px 0 16px;
  color: var(--espresso);
}

.section-head h2 .accent {
  color: var(--brick);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 500;
}

.section-head p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- FEATURED DISHES ---------- */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.dish-card {
  background: var(--paper);
  border: 1.5px solid var(--espresso);
  padding: 0;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.dish-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--espresso);
}

.dish-img {
  height: 200px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1.5px solid var(--espresso);
}

.dish-img svg { width: 80px; height: 80px; }

.dish-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brick);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.dish-body { padding: 20px 22px; }

.dish-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1.5px;
  color: var(--espresso);
  margin-bottom: 6px;
}

.dish-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
  min-height: 42px;
}

.dish-price {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--brick);
}

/* ---------- STORY (split) ---------- */
.split {
  background: var(--cream);
}

.split-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.split-text h2 { color: var(--espresso); }

.split-text p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--ink);
}

.split-text .pull {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--brick-dk);
  border-left: 4px solid var(--amber);
  padding: 8px 0 8px 20px;
  margin: 24px 0;
}

.split-text .sig {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--espresso);
  margin-top: 24px;
}

.vinyl-card {
  background: var(--espresso);
  color: var(--cream);
  padding: 36px;
  border: 1.5px solid var(--espresso);
  position: relative;
}

.vinyl-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--espresso-3);
  margin-bottom: 20px;
}

.vinyl-card-head .lbl {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--amber);
}

.vinyl-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--espresso-3);
  font-family: var(--font-mono);
  font-size: 14px;
}

.vinyl-track:last-child { border-bottom: none; }

.vinyl-track .num { color: var(--amber); font-size: 12px; }
.vinyl-track .album { color: var(--cream-2); font-style: italic; font-family: var(--font-serif); }

.mini-disc {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ink) 30%, var(--amber) 33%, var(--ink) 36%);
  animation: spin 8s linear infinite;
}

/* ---------- DRINKS BAR STRIP ---------- */
.bar-strip {
  background: var(--espresso);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.bar-strip .section-head h2 { color: var(--cream); }
.bar-strip .section-head h2 .accent { color: var(--amber); }
.bar-strip .section-head p { color: var(--cream-2); }

.drink-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.drink-card {
  background: var(--espresso-2);
  padding: 28px 26px;
  border: 1px solid var(--espresso-3);
  position: relative;
  transition: border-color 0.25s, transform 0.2s;
}

.drink-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}

.drink-card .cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 14px;
}

.drink-card h4 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1.5px;
  color: var(--cream);
  margin-bottom: 8px;
}

.drink-card .desc {
  font-size: 14px;
  color: var(--cream-2);
  line-height: 1.5;
  margin-bottom: 18px;
  min-height: 48px;
}

.drink-card .price {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--amber);
  font-weight: 500;
}

/* ---------- TICKER ---------- */
.ticker {
  background: var(--amber);
  color: var(--espresso);
  border-top: 2px solid var(--espresso);
  border-bottom: 2px solid var(--espresso);
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 60px;
  padding: 18px 0;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
}

.ticker-track span { display: flex; align-items: center; gap: 60px; }
.ticker-track .star { color: var(--brick-dk); }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- VISIT ---------- */
.visit {
  background: var(--cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.info-card {
  background: var(--paper);
  border: 1.5px solid var(--espresso);
  padding: 32px;
  position: relative;
}

.info-card .ico {
  width: 48px;
  height: 48px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--espresso);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 1.5px;
  color: var(--espresso);
  margin-bottom: 16px;
}

.info-card .line {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--ink);
}

.info-card .hours-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--cream-2);
}

.info-card .hours-row:last-child { border-bottom: none; }
.info-card .hours-row.today { color: var(--brick); font-weight: 500; }

.cta-block {
  background: var(--espresso);
  color: var(--cream);
  padding: 48px;
  text-align: center;
  border: 1.5px solid var(--espresso);
}

.cta-block h3 {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 1.5px;
  color: var(--cream);
  margin-bottom: 12px;
}

.cta-block p { color: var(--cream-2); margin-bottom: 24px; font-size: 17px; }

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: var(--cream-2);
  padding: 60px 32px 30px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--espresso-3);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 280px; }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  padding: 4px 0;
  color: var(--cream-2);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--amber); }

.footer-bottom {
  max-width: 1280px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.social-row { display: flex; gap: 14px; }

.social-row a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--espresso-3);
  transition: all 0.2s;
  color: var(--cream-2);
}

.social-row a:hover { background: var(--amber); color: var(--espresso); border-color: var(--amber); }

/* ---------- MENU PAGE ---------- */
.menu-hero {
  background: var(--espresso);
  color: var(--cream);
  padding: 70px 32px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.menu-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 140px);
  letter-spacing: 2px;
  line-height: 0.95;
  color: var(--cream);
}

.menu-hero h1 .accent { color: var(--amber); font-style: italic; font-family: var(--font-serif); font-weight: 500; letter-spacing: -1px; }

.menu-hero p { color: var(--cream-2); max-width: 560px; margin: 16px auto 0; font-size: 18px; }

.menu-tabs {
  background: var(--cream);
  border-bottom: 2px solid var(--espresso);
  position: sticky;
  top: 70px;
  z-index: 50;
}

.menu-tabs-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  padding: 16px 32px;
  overflow-x: auto;
}

.menu-tab {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 2px;
  padding: 10px 20px;
  background: transparent;
  border: 1.5px solid transparent;
  color: var(--espresso);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.menu-tab:hover { border-color: var(--espresso); }
.menu-tab.active { background: var(--espresso); color: var(--cream); }

.menu-section {
  padding: 70px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.menu-section-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--espresso);
}

.menu-section-head h2 {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 2px;
  color: var(--espresso);
}

.menu-section-head .num {
  font-family: var(--font-mono);
  color: var(--amber-dk);
  font-size: 14px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  align-items: start;
}

.menu-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--cream-2);
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 6px;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1.5px;
  color: var(--espresso);
}

.menu-item-dots {
  flex: 1;
  border-bottom: 2px dotted var(--cream-2);
  transform: translateY(-4px);
}

.menu-item-price {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--brick);
  font-weight: 500;
}

.menu-item-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.menu-item-badges {
  margin-top: 6px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  padding: 2px 8px;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--espresso);
  border: 1px solid var(--cream-2);
}

.badge.hot { background: var(--brick); color: var(--cream); border-color: var(--brick); }
.badge.new { background: var(--amber); color: var(--espresso); border-color: var(--amber); }

/* Menu item image — placed inside .menu-item, floats top-right */
.menu-item-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 1px solid var(--cream-2);
  background: var(--cream);
  display: block;
  margin-bottom: 14px;
}

/* SVG illustration variant — same size, displays the inline SVG */
.menu-item-illust {
  padding: 0;
  overflow: hidden;
}

.menu-item-illust svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* When item has image or illustration, give the item a soft card feel */
.menu-item:has(.menu-item-img) {
  background: rgba(255, 255, 255, 0.5);
  padding: 14px;
  border-bottom: none;
  border: 1px solid var(--cream-2);
}

/* Dish card image for homepage */
.dish-img.has-photo {
  background: var(--espresso);
  padding: 0;
  overflow: hidden;
}

.dish-img.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- MUSIC PAGE ---------- */
.music-hero {
  background: linear-gradient(180deg, var(--espresso) 0%, var(--espresso-2) 100%);
  color: var(--cream);
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.music-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, var(--amber) 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, var(--brick) 1px, transparent 2px),
    radial-gradient(circle at 45% 80%, var(--amber) 1px, transparent 2px);
  background-size: 200px 200px;
  opacity: 0.15;
}

.music-hero-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }

.event-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 380px));
  gap: 20px;
  justify-content: start;
}

.event-card {
  background: var(--paper);
  border: 1.5px solid var(--espresso);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.event-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--brick); }

.event-img {
  height: 200px;
  background: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.event-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(232,163,60,0.06) 20px, rgba(232,163,60,0.06) 40px);
}

.event-disc-big {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ink) 28%, var(--cream-2) 30%, var(--ink) 32%, var(--ink) 50%, var(--cream-2) 52%, var(--ink) 54%, var(--ink) 100%);
  position: relative;
  animation: spin 20s linear infinite;
  z-index: 2;
}

.event-disc-big::after {
  content: '';
  position: absolute;
  inset: 50px;
  background: var(--brick);
  border-radius: 50%;
}

.event-body { padding: 24px 26px; }

/* New visual treatments for music page event cards */
.event-img.has-photo {
  padding: 0;
  height: 200px;
}

.event-img.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-img.has-photo::before {
  display: none;
}

.event-img.has-illustration {
  background: var(--espresso);
  padding: 0;
}

.event-img.has-illustration svg {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 2;
}

/* Dish-card style cards (for weekly specials) — bigger image area when has illustration */
.dish-card .dish-img.event-illust {
  height: 180px;
  padding: 0;
  background: var(--espresso);
}

.dish-card .dish-img.event-illust svg {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 2;
}

.dish-card .dish-img.event-photo {
  height: 180px;
  padding: 0;
  overflow: hidden;
}

.dish-card .dish-img.event-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--brick);
  margin-bottom: 8px;
}

.event-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1.5px;
  color: var(--espresso);
  margin-bottom: 8px;
  line-height: 1;
}

.event-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.event-meta {
  display: flex;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

/* ---------- STORY PAGE ---------- */
.story-hero {
  background: var(--cream);
  padding: 80px 32px;
}

.story-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.story-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px 100px;
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink);
}

.story-body p { margin-bottom: 24px; }

.story-body .drop::first-letter {
  font-family: var(--font-display);
  font-size: 88px;
  float: left;
  line-height: 0.85;
  padding: 8px 12px 0 0;
  color: var(--brick);
}

.story-body h3 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 1.5px;
  margin: 48px 0 16px;
  color: var(--espresso);
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  background: var(--espresso);
  color: var(--cream);
  margin: 40px 0;
}

.fact-strip > div {
  padding: 28px;
  border-right: 1px solid var(--espresso-3);
  text-align: center;
}

.fact-strip > div:last-child { border-right: none; }

.fact-strip .big {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}

.fact-strip .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-2);
}

/* ---------- MOBILE ---------- */
@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-inner.mobile-open + .nav-links-mobile { display: flex; }
  .split-inner { grid-template-columns: 1fr; gap: 40px; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 70px 24px; }
  .hero { padding: 60px 24px 70px; }
  .hero-bg-disc { width: 360px; height: 360px; right: -120px; }
  .footer-bottom { flex-direction: column; gap: 14px; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 56px; }
  .menu-section-head h2 { font-size: 38px; }
  .cta-block { padding: 32px 24px; }
  .cta-block h3 { font-size: 30px; }
}
