/* ===== Bar Pie Guys — shared styles ===== */

:root {
  /* strictly the BPG brand palette — red, cream, olive. no brown.
     ink/text uses a near-black shade of olive, kept minimal throughout. */
  --bpg-red: #fc0318;
  --bpg-red-dark: #c40212;
  --bpg-olive: #557a2a;
  --bpg-olive-dark: #435f21;
  --bpg-cream: #fff0d9;
  --bpg-black: #1c2410;
  --bpg-charcoal: #435f21;
  --bpg-line: #ecd9b6;
  --font-display: "Anton", "Arial Narrow Bold", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Caveat", "Segoe Script", cursive;
  --font-editorial: "Playfair Display", Georgia, serif;
  --max-width: 1080px;
  --neon-dark: #2c3a17;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bpg-cream);
  color: var(--bpg-black);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  /* pizza-slice cursor: golden cheese wedge, olive crust outline, red-orange pepperoni.
     Extra canvas margin (36x36) keeps the crust curve from clipping at the edge. */
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36'><path d='M17 5 L31 29 Q17 35 3 29 Z' fill='%23F6B93B' stroke='%23557A2A' stroke-width='1.5' stroke-linejoin='round'/><path d='M5.5 27.5 Q17 32.5 28.5 27.5' fill='none' stroke='%23FFF0D9' stroke-width='3' stroke-linecap='round'/><circle cx='14' cy='16' r='2' fill='%23C0392B'/><circle cx='21' cy='14' r='2' fill='%23C0392B'/><circle cx='17.5' cy='21.5' r='2' fill='%23C0392B'/></svg>") 4 4, auto;
}

a, button, .btn {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='38' height='38' viewBox='0 0 38 38'><path d='M18 5 L33 30 Q18 37 3 30 Z' fill='%23F6B93B' stroke='%23557A2A' stroke-width='1.5' stroke-linejoin='round'/><path d='M5.5 28.5 Q18 34 30.5 28.5' fill='none' stroke='%23FFF0D9' stroke-width='3.2' stroke-linecap='round'/><circle cx='15' cy='17' r='2.1' fill='%23C0392B'/><circle cx='22.5' cy='15' r='2.1' fill='%23C0392B'/><circle cx='18.5' cy='23' r='2.1' fill='%23C0392B'/></svg>") 4 4, pointer;
}

/* ---------- Checkerboard (tavern nostalgia) ---------- */

.checker-band {
  height: 26px;
  background-image:
    linear-gradient(45deg, var(--bpg-olive) 25%, transparent 25%, transparent 75%, var(--bpg-olive) 75%),
    linear-gradient(45deg, var(--bpg-olive) 25%, transparent 25%, transparent 75%, var(--bpg-olive) 75%);
  background-color: var(--bpg-cream);
  background-size: 26px 26px;
  background-position: 0 0, 13px 13px;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.5em;
  color: var(--bpg-olive);
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.15rem; letter-spacing: 0.08em; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bpg-cream);
  border-bottom: 2px solid var(--bpg-olive);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--bpg-olive);
  border-radius: 6px;
  width: 42px;
  height: 38px;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bpg-cream);
    border-bottom: 2px solid var(--bpg-olive);
    flex-direction: column;
    gap: 0;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--bpg-line);
    width: 100%;
  }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */

.hero {
  text-align: center;
  padding: 90px 24px 70px;
  background: var(--bpg-cream);
  border-bottom: 2px solid var(--bpg-olive);
}

.hero .eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bpg-olive-dark);
  margin-bottom: 18px;
}

.hero-logo {
  max-width: 260px;
  margin: 0 auto 24px;
}

.hero p.tagline {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--bpg-charcoal);
}

/* ---------- Full-bleed rotating slideshow hero (Esme-inspired) ---------- */

.slideshow-hero {
  position: relative;
  height: 86vh;
  min-height: 480px;
  max-height: 780px;
  overflow: hidden;
  background: var(--bpg-charcoal);
}

.slideshow-hero .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideFade 20s infinite;
}

.slideshow-hero .slide:nth-child(1) { animation-delay: 0s; }
.slideshow-hero .slide:nth-child(2) { animation-delay: 5s; }
.slideshow-hero .slide:nth-child(3) { animation-delay: 10s; }
.slideshow-hero .slide:nth-child(4) { animation-delay: 15s; }

@keyframes slideFade {
  0% { opacity: 0; }
  5% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; }
  100% { opacity: 0; }
}

.slideshow-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,36,16,0.2) 0%, rgba(28,36,16,0.5) 100%);
}

.slideshow-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 24px 10vh;
}

/* Buttons sitting on top of the photo need to read clearly against it —
   a hollow outline blends into busy photo backgrounds, so fill it. */
.slideshow-hero-content .btn-outline,
.photo-hero-content .btn-outline {
  background: var(--bpg-cream);
  border-color: var(--bpg-cream);
  color: var(--bpg-olive-dark);
}

.slideshow-hero-content .btn-outline:hover,
.photo-hero-content .btn-outline:hover {
  background: var(--bpg-olive);
  border-color: var(--bpg-olive);
  color: var(--bpg-cream);
}

/* Logo shown directly on the photo, no circle backing — bigger and cleaner */
.slideshow-hero-content .hero-brand-logo,
.photo-hero-content .hero-brand-logo {
  width: min(320px, 58vw);
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4));
  /* the source PNG has a lot of built-in transparent padding around the
     mark itself, so a small CSS margin still reads as a huge gap —
     pull the next element up to compensate */
  margin-bottom: -30px;
}

.slideshow-hero-content .script-tagline,
.photo-hero-content .script-tagline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.slideshow-hero-content .sub-eyebrow,
.photo-hero-content .sub-eyebrow {
  font-family: var(--font-display);
  color: var(--bpg-cream);
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ---------- Static photo hero (full-story page) ---------- */

.photo-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.photo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,36,16,0.35) 0%, rgba(28,36,16,0.6) 100%);
}

.photo-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
  width: 100%;
}

/* Handwritten scrap note, scattered */

.scrap-note {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--bpg-olive-dark);
  transform: rotate(6deg);
  display: inline-block;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid var(--bpg-red-dark);
  background: var(--bpg-red);
  color: var(--bpg-cream);
  transition: transform 0.12s ease, background 0.12s ease;
}

.btn:hover { background: var(--bpg-red-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: var(--bpg-olive-dark);
  color: var(--bpg-olive-dark);
}

.btn-outline:hover {
  background: var(--bpg-olive);
  border-color: var(--bpg-olive);
  color: var(--bpg-cream);
}

.btn-row {
  display: inline-flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
  position: relative;
  max-width: 100%;
}

/* ---------- Hand-drawn CTA arrow (Mama's Boy inspired) ---------- */
/* .has-decal reserves clear space above the row so the arrow/note never
   clips into content above or overlaps the buttons themselves */

.btn-row.has-decal {
  padding-top: 40px;
}

.cta-decal {
  position: absolute;
  top: 0;
  left: 100%;
  width: 96px;
  height: 40px;
  margin-left: 2px;
  pointer-events: none;
}

@media (max-width: 780px) {
  .cta-decal { position: static; width: auto; height: auto; margin: 8px 0 0; display: block; }
  .btn-row.has-decal { padding-top: 24px; }
}

.cta-arrow {
  position: absolute;
  width: 42px;
  height: auto;
  top: 2px;
  left: 0;
}

.cta-note {
  position: absolute;
  top: 6px;
  left: 40px;
  transform: rotate(-6deg);
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bpg-olive-dark);
  white-space: nowrap;
}

@media (max-width: 780px) {
  .cta-arrow { display: none; }
  .cta-note {
    position: static;
    display: block;
    transform: none;
    margin-top: 4px;
    font-size: 1.1rem;
  }
}

/* ---------- Sections ---------- */

section {
  padding: 64px 0;
  border-bottom: 2px solid var(--bpg-line);
}

section:last-of-type { border-bottom: none; }

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title .eyebrow {
  display: block;
  color: var(--bpg-olive-dark);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 2px solid var(--bpg-olive);
  border-radius: 8px;
  padding: 28px;
}

.tilt-left { transform: rotate(-3deg); }
.tilt-right { transform: rotate(3deg); }
.sticker-shadow { box-shadow: 7px 7px 0 var(--bpg-red); }
.sticker-shadow-olive { box-shadow: 7px 7px 0 var(--bpg-olive); }

/* ---------- Event banner ---------- */

.event-banner {
  background: var(--bpg-olive);
  color: var(--bpg-cream);
  text-align: center;
  padding: 14px 24px;
}

.event-banner a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

/* ---------- Event page ---------- */

.event-hero {
  background: var(--bpg-olive);
  color: var(--bpg-cream);
  text-align: center;
  padding: 70px 24px;
  border-bottom: 2px solid var(--bpg-olive-dark);
  position: relative;
}

.event-hero .eyebrow {
  color: var(--bpg-cream);
  background: var(--bpg-red);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 4px;
  transform: rotate(-2deg);
}
.event-hero h1 { color: var(--bpg-cream); }

/* Two cards (Seatings, Menu) — fill the row evenly, sized up so the
   section doesn't look sparse or lopsided */
.event-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}

@media (max-width: 640px) {
  .event-details { grid-template-columns: 1fr; }
}

.event-details .card {
  text-align: center;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}

.event-details .card::before {
  content: "";
  display: block;
  height: 14px;
  margin: -36px -28px 20px;
  background-image:
    linear-gradient(45deg, var(--bpg-olive) 25%, transparent 25%, transparent 75%, var(--bpg-olive) 75%),
    linear-gradient(45deg, var(--bpg-olive) 25%, transparent 25%, transparent 75%, var(--bpg-olive) 75%);
  background-color: #fff;
  background-size: 14px 14px;
  background-position: 0 0, 7px 7px;
}

.event-details h3 { color: var(--bpg-red); margin-bottom: 12px; font-size: 1.3rem; }
.event-details p { font-size: 1.05rem; }

.hold-box {
  background: #fff;
  border: 2px dashed var(--bpg-olive);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  margin-top: 32px;
}

.hold-box .price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--bpg-red);
}

/* ---------- Interactive ticket / timeslot picker ---------- */

.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}

@media (min-width: 560px) {
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 700px) {
  .slot-grid { grid-template-columns: repeat(5, 1fr); }
}

.slot-btn {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  border: 2px solid var(--bpg-olive);
  background: var(--bpg-cream);
  color: var(--bpg-olive-dark);
  border-radius: 8px;
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: background 0.12s ease, transform 0.1s ease;
}

.slot-btn:hover:not(:disabled) { transform: translateY(-2px); background: #fff; }

.slot-btn.selected {
  background: var(--bpg-olive);
  border-color: var(--bpg-olive);
  color: var(--bpg-cream);
}

.slot-btn .slot-left {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  opacity: 0.75;
}

.slot-btn:disabled,
.slot-btn.sold-out {
  opacity: 0.4;
  text-decoration: line-through;
}

.ticket-summary {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--bpg-olive-dark);
  margin: 4px 0 0;
}

#reserveBtn:disabled {
  opacity: 0.5;
}

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

.pie-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.pie-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dotted var(--bpg-line);
  padding-bottom: 14px;
}

.pie-list .pie-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.1rem;
}

.pie-list .pie-price {
  color: var(--bpg-red);
  font-weight: 700;
}

.tbd {
  color: #9a8f7d;
  font-style: italic;
}

/* ---------- Footer ---------- */

footer {
  background: var(--bpg-olive-dark);
  color: var(--bpg-cream);
  padding: 48px 0 32px;
  text-align: center;
}

footer h3 { color: var(--bpg-cream); }

footer a { color: var(--bpg-cream); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
footer a:hover { color: var(--bpg-red); }

footer .foot-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0;
  list-style: none;
  padding: 0;
}

footer .fine-print {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 24px;
}

/* ---------- Neon dive-bar accents ---------- */

.neon-panel {
  background: var(--neon-dark);
  color: var(--bpg-cream);
  text-align: center;
  padding: 64px 24px;
}

.neon-text {
  color: #f4fbe8;
  text-shadow:
    0 0 4px #fff,
    0 0 12px var(--neon-glow, var(--bpg-olive)),
    0 0 24px var(--neon-glow, var(--bpg-olive)),
    0 0 44px var(--neon-glow, var(--bpg-olive));
}

.neon-text.neon-red { --neon-glow: var(--bpg-red); }

.neon-panel .tagline {
  color: #d8d2c4;
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ---------- Countdown ---------- */

.countdown {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 26px 0;
}

.countdown .unit {
  background: #fff;
  border: 2px solid var(--bpg-olive);
  border-radius: 10px;
  padding: 14px 8px;
  min-width: 74px;
  text-align: center;
  box-shadow: 4px 4px 0 var(--bpg-olive);
}

.countdown .num {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.9rem;
  color: var(--bpg-red);
  line-height: 1;
}

.countdown .cd-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bpg-charcoal);
  margin-top: 4px;
}

#countdown-done {
  display: none;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bpg-red);
  margin: 26px 0;
}

/* ---------- Add to calendar ---------- */

.cal-link {
  display: inline-block;
  border-bottom: 2px dotted var(--bpg-olive-dark);
  cursor: inherit;
}

/* ---------- Standalone RSVP page shell ---------- */

.rsvp-shell {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 50% -10%, #2c3a17 0%, var(--neon-dark) 55%, #10150a 100%);
  padding: 40px 16px 64px;
}

.rsvp-topbar {
  max-width: 640px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rsvp-topbar a {
  color: var(--bpg-cream);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.rsvp-topbar a:hover { opacity: 1; }

.rsvp-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bpg-cream);
  border: 3px solid var(--bpg-olive);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.rsvp-card .checker-band.bottom { }

.rsvp-card-body {
  padding: 44px 36px 40px;
  text-align: center;
}

.rsvp-eyebrow {
  display: inline-block;
  background: var(--bpg-red);
  color: var(--bpg-cream);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 4px;
  transform: rotate(-2deg);
  margin-bottom: 16px;
}

.rsvp-card h1 {
  font-size: clamp(2rem, 7vw, 3rem);
  margin-bottom: 6px;
}

.rsvp-sub {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--bpg-charcoal);
  margin-bottom: 6px;
}

.rsvp-narrative {
  max-width: 480px;
  margin: 0 auto 8px;
  font-size: 1rem;
  color: var(--bpg-charcoal);
}

/* ---------- Menu subscribe form (top-secret menu teaser) ---------- */

.subscribe-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 460px;
  margin: 28px auto 0;
}

.subscribe-form input {
  flex: 1 1 220px;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 16px;
  border: 2px solid var(--bpg-olive);
  border-radius: 4px;
  background: #fff;
  color: var(--bpg-black);
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--bpg-red);
}

.subscribe-form .btn {
  flex: 0 0 auto;
}

/* ---------- Flexible menu grid (accommodates any card count) ---------- */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

/* ---------- July 31 announcement popup ---------- */

.event-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 36, 16, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.event-popup-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.event-popup-card {
  position: relative;
  max-width: 380px;
  width: 100%;
  background: var(--bpg-cream);
  border: 3px solid var(--bpg-olive);
  border-radius: 14px;
  padding: 36px 28px 28px;
  text-align: center;
  transform: translateY(12px);
  transition: transform 0.25s ease;
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
}

.event-popup-overlay.open .event-popup-card {
  transform: translateY(0);
}

.event-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--bpg-olive-dark);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.event-popup-eyebrow {
  display: inline-block;
  background: var(--bpg-red);
  color: var(--bpg-cream);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 4px;
  transform: rotate(-2deg);
  margin-bottom: 14px;
}

.event-popup-card h3 {
  color: var(--bpg-olive);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.event-popup-card p {
  font-size: 0.95rem;
  color: var(--bpg-charcoal);
  margin-bottom: 18px;
}
