/* ============================================================
   Sam's Saloon — Design System
   Palette: Navy + Black (logo) with Red accents
   ============================================================ */

:root {
  /* Brand */
  --navy: #16305c;
  --navy-deep: #0f2340;
  --blue: #2c5aa0;      /* logo blue */
  --blue-bright: #3b74c9;
  --red: #c8102e;       /* bar red accent */
  --red-dark: #9c0a22;
  --ink: #14161a;       /* near-black */
  --charcoal: #23262d;

  /* Neutrals */
  --cream: #f7f4ee;
  --paper: #ffffff;
  --muted: #5b6570;
  --line: #e4e0d8;

  /* Typography */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --wrap: 1180px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(15, 35, 64, 0.10);
  --shadow-lg: 0 20px 50px rgba(15, 35, 64, 0.18);
  --header-h: 224px;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
/* <picture> wrappers shouldn't affect layout — let the <img> lay out as if
   the picture weren't there (keeps object-fit/height rules working). */
picture { display: contents; }
a { color: var(--blue); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--red); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0 0 .5em;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }

.wrap { width: min(var(--wrap), 92%); margin-inline: auto; }
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--tight { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.lp-block + .lp-block { margin-top: clamp(2rem, 5vw, 3.25rem); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-ink { background: var(--ink); color: #f2f2f2; }
.center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 62ch; }
.center .lead { margin-inline: auto; }

/* ---------- Eyebrow / accents ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: .6rem;
}
.bg-navy .eyebrow { color: var(--blue-bright); }
.rule {
  width: 64px; height: 4px; background: var(--red);
  border: 0; margin: 1rem 0 1.5rem; border-radius: 2px;
}
.center .rule { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .06em; font-weight: 600; font-size: .95rem;
  padding: .85rem 1.6rem; border-radius: var(--radius);
  cursor: pointer; border: 2px solid transparent; transition: all .18s ease;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(15, 35, 64, .06);
}
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 208px; width: auto; }
.brand .brand-text { display: none; }

.nav-links { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink); font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .05em; font-size: .9rem; font-weight: 600;
  padding: .5rem .75rem; border-radius: 6px;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); background: rgba(20,22,26,.05); }
.nav-links a.active { box-shadow: inset 0 -2px 0 var(--red); }
.nav-cta { margin-left: .5rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 8px;
}
.nav-toggle span { display: block; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 0 solid var(--red);
    box-shadow: 0 12px 20px rgba(15,35,64,.12);
    padding: 0 .5rem; max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
  }
  .nav-links.open { max-height: 620px; padding: .5rem; border-bottom-width: 3px; }
  .nav-links a { padding: .9rem 1rem; border-radius: 0; }
  /* In the stacked mobile menu, mark the active page with a left bar,
     not a bottom underline (which looked like it crossed out the item below). */
  .nav-links a.active { box-shadow: inset 3px 0 0 var(--red); }
  .nav-cta { margin: .5rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 78vh; display: flex; align-items: center;
  color: #fff; text-align: center; overflow: hidden;
  background: linear-gradient(rgba(10,20,40,.72), rgba(10,20,40,.86)),
              var(--navy);
  background-size: cover; background-position: center;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 6px;
  background: linear-gradient(90deg, var(--red) 0 33%, #fff 33% 66%, var(--blue) 66% 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,.4); }
.hero .lead { color: #e7ecf5; margin-inline: auto; }
.hero-badges { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 1.5rem 0; }
.hero-badge {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em;
  font-size: .8rem; padding: .45rem 1rem; border: 1px solid rgba(255,255,255,.35);
  border-radius: 40px; color: #fff;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

/* ---------- Page header (interior) ---------- */
.page-head {
  background: var(--navy); color: #fff; text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  border-bottom: 4px solid var(--red);
}
.page-head h1 { color: #fff; }
.page-head p { color: #cdd6e5; max-width: 60ch; margin-inline: auto; }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
/* Even 3-across feature grid (3+3 on desktop, 2+2+2 tablet, 1 per row mobile) */
.feature-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feature-grid { grid-template-columns: 1fr; } }
/* Even 2-across grid (2+2 on desktop, 1 per row mobile) */
.even-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) { .even-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--line);
}
.card__body { padding: 1.5rem; }
.card h3 { color: var(--navy); }

.stat {
  background: var(--paper); border-radius: var(--radius); padding: 1.6rem 1rem;
  text-align: center; box-shadow: var(--shadow); border-top: 4px solid var(--red);
}
.stat b { display: block; font-family: var(--font-display); font-size: 2.6rem; color: var(--navy); line-height: 1; }
.stat span { text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; color: var(--muted); }

/* Feature with icon */
.feature { text-align: center; padding: 1rem; }
.feature .ic {
  width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--navy); color: #fff; display: grid; place-items: center; font-size: 1.6rem;
}

/* ---------- Menu list ---------- */
.menu-section { margin-bottom: 2.5rem; }
.menu-section h3 {
  border-bottom: 2px solid var(--line); padding-bottom: .5rem; margin-bottom: 1rem;
  display: flex; align-items: baseline; gap: .6rem; color: var(--navy);
}
.menu-item {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding: .55rem 0; border-bottom: 1px dashed var(--line);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item .name { font-weight: 700; flex: 1; color: var(--ink); }
.menu-item .desc { color: var(--muted); font-size: .92rem; font-weight: 400; }
.menu-item .dots { flex: 1; border-bottom: 1px dotted #c9c9c9; transform: translateY(-4px); }
.menu-item .price { font-family: var(--font-display); color: var(--red); font-weight: 600; white-space: nowrap; }

/* Two-column menu layout (like a printed menu) */
.menu-columns { columns: 2; column-gap: 3.5rem; }
.menu-columns .menu-section { break-inside: avoid; }
@media (max-width: 760px) { .menu-columns { columns: 1; } }

/* ---------- Menu sheets (page images) ---------- */
.menu-sheets {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 1.5rem;
}
.menu-sheet {
  display: block; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.menu-sheet:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.menu-sheet img { display: block; width: 100%; height: auto; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .9rem; }
.gallery-grid figure {
  margin: 0; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  background: var(--navy); position: relative; box-shadow: var(--shadow);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figure:has(img) { cursor: zoom-in; }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.4rem .6rem .6rem; text-align: center;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em;
  font-size: .9rem; color: #fff; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,0));
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(10,15,25,.93); display: none; align-items: center; justify-content: center; z-index: 200; padding: 2rem; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 96%; max-height: 92vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox .lb-close { position: absolute; top: .5rem; right: 1.5rem; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; font-family: var(--font-display); }
.placeholder-img {
  width: 100%; height: 100%; display: grid; place-items: center; text-align: center;
  color: rgba(255,255,255,.5); font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .1em; font-size: .8rem; padding: 1rem;
  background: repeating-linear-gradient(45deg, #1b3a6b, #1b3a6b 12px, #17325d 12px, #17325d 24px);
}

/* ---------- Events ---------- */
.event {
  display: grid; grid-template-columns: 96px 1fr; gap: 1.25rem; align-items: center;
  background: var(--paper); border-radius: var(--radius); padding: 1.25rem;
  box-shadow: var(--shadow); border-left: 5px solid var(--red);
}
/* Event cards are always white, so keep their titles dark even inside
   dark (.bg-navy) sections — otherwise they render white-on-white. */
.event h3 { color: var(--navy); }
.event .date {
  text-align: center; background: var(--navy); color: #fff; border-radius: 8px; padding: .6rem;
  align-self: start;
}
.concert-cal {
  display: inline-block; margin-top: .5rem; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .04em; font-size: .82rem; font-weight: 600;
  color: var(--blue);
}
.concert-cal:hover { color: var(--red); }
.concert-links { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: .5rem; }
.concert-links .concert-cal { margin-top: 0; }
.genre-tag {
  display: inline-block; vertical-align: middle; margin: 0 0 .15rem;
  font-family: var(--font-body); font-weight: 600; font-size: .6rem;
  text-transform: uppercase; letter-spacing: .09em; color: #fff;
  background: var(--blue); padding: .16rem .5rem; border-radius: 20px;
}
.event .date b { display: block; font-family: var(--font-display); font-size: 1.8rem; line-height: 1; }
.event .date span { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.badge-recurring { display:inline-block; font-size:.7rem; text-transform:uppercase; letter-spacing:.1em;
  background: var(--blue); color:#fff; padding:.15rem .5rem; border-radius: 20px; }

/* Concert series states (set by JS based on today's date) */
.concert-event.past { opacity: .45; }
.concert-event.next { outline: 2px solid var(--red); box-shadow: 0 0 0 4px rgba(200,16,46,.15), var(--shadow); }
.concert-event .next-badge { display: none; background: var(--red); }
.concert-event.next .next-badge { display: inline-block; }

/* ---------- Sports channels ---------- */
.chip-grid { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  background: var(--paper); border: 1px solid var(--line); border-radius: 30px;
  padding: .5rem 1rem; font-weight: 600; font-size: .9rem; box-shadow: var(--shadow);
  color: var(--ink);
}
.chip.hl { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- What's On Today (live games) ---------- */
.whats-on-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.wo-league { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; break-inside: avoid; }
.wo-league h3 { background: var(--navy); color: #fff; margin: 0; padding: .65rem 1rem; font-size: 1.05rem; }
.wo-league ul { list-style: none; margin: 0; padding: .3rem 0; }
.wo-league li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .6rem 1rem; border-bottom: 1px dashed var(--line); }
.wo-league li:last-child { border-bottom: 0; }
.wo-match { font-weight: 600; color: var(--ink); }
.wo-match .wo-at { color: var(--muted); font-weight: 400; }
.wo-meta { text-align: right; white-space: nowrap; color: var(--muted); font-size: .9rem; }
.wo-net { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; font-size: .72rem; color: var(--blue); }
.wo-live { color: #fff; background: var(--red); border-radius: 4px; padding: .05rem .4rem; font-weight: 700; font-size: .72rem; }
.wo-loading, .wo-empty { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 1.5rem; }

/* ---------- Info / contact ---------- */
.info-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.3rem; }
.info-row .ic { flex: 0 0 44px; height: 44px; border-radius: 50%; background: var(--navy);
  color:#fff; display:grid; place-items:center; font-size:1.1rem; }
.info-row b { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; color: var(--navy); }

form.contact-form { display: grid; gap: 1rem; }
.contact-form label { font-weight: 600; font-size: .9rem; display:block; margin-bottom:.3rem; color: var(--navy); }
.contact-form input, .contact-form textarea {
  width: 100%; padding: .8rem .9rem; border: 1px solid var(--line); border-radius: 8px;
  font: inherit; background: var(--paper);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--blue); border-color: var(--blue); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: .55rem 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--navy); }
.hours-table tr.today td { color: var(--red); font-weight: 700; }

/* ---------- Untappd / beer ---------- */
.untappd-cta {
  background: var(--navy); color:#fff; border-radius: var(--radius); padding: 2.5rem;
  text-align: center; box-shadow: var(--shadow-lg);
}
.untappd-cta h2 { color:#fff; }
.tap-note { font-size: .9rem; color: var(--muted); }

/* ---------- Untappd menu embed ---------- */
#menu-container { min-height: 420px; }
#menu-container:empty {
  display: grid; place-items: center; min-height: 420px;
  color: var(--muted); font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .08em; font-size: .95rem; text-align: center;
}
#menu-container:empty::before {
  content: "Loading live tap list from Untappd\2026";
}
#menu-container iframe { width: 100%; border: 0; display: block; }

/* ---------- Today's Specials ---------- */
.specials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
@media (max-width: 760px) { .specials-grid { grid-template-columns: 1fr; } }
.special-card {
  background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--red);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem 1.25rem; text-align: center;
}
.special-ic { font-size: 2rem; line-height: 1; margin-bottom: .5rem; }
.special-card h3 { color: var(--navy); font-size: 1rem; letter-spacing: .06em; margin-bottom: .4rem; }
.special-card p { margin: 0; font-size: 1.2rem; font-weight: 600; color: var(--ink); }
.specials-empty { color: var(--muted); font-size: 1.1rem; margin: 1rem 0 0; }
.specials-updated { color: var(--muted); font-size: .85rem; margin-top: 1.1rem; text-transform: uppercase; letter-spacing: .08em; }

/* ---------- YouTube facade (click to load) ---------- */
.yt-facade {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; margin: 0; padding: 0; cursor: pointer; background: #000; display: block;
}
.yt-facade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yt-facade::after {
  content: ""; position: absolute; left: 50%; top: 50%; z-index: 1;
  transform: translate(-50%, -50%); width: 68px; height: 48px;
  border-radius: 14px; background: rgba(200, 16, 46, .92); transition: background .18s ease;
}
.yt-facade::before {
  content: ""; position: absolute; left: 50%; top: 50%; z-index: 2;
  transform: translate(-35%, -50%);
  border-style: solid; border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent #fff;
}
.yt-facade:hover::after, .yt-facade:focus-visible::after { background: var(--red); }

/* ---------- Map ---------- */
.map-embed { width:100%; height: 380px; border:0; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c7ccd6; padding: 3rem 0 1.5rem; }
.site-footer h4 { color: #fff; margin-bottom: 1rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-grid a { color: #c7ccd6; }
.footer-grid a:hover { color: var(--red); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .4rem; }
.social { display: flex; gap: .7rem; margin-top: 1rem; }
.social a {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: #fff; font-size: 1.1rem;
}
.social a:hover { background: var(--red); }
.footer-bottom {
  text-align: center; border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2.5rem; padding-top: 1.5rem; font-size: .85rem; color: #8a90a0;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Headshots (owners / team) ---------- */
.owners-row { display: flex; flex-wrap: wrap; gap: 1.75rem; justify-content: center; margin-top: 2.5rem; }
.headshot { width: 180px; margin: 0; text-align: center; }
.headshot .avatar {
  width: 150px; height: 150px; margin: 0 auto .8rem; border-radius: 50%;
  position: relative; overflow: hidden; background: var(--blue);
  display: grid; place-items: center; box-shadow: var(--shadow);
  border: 3px solid rgba(255,255,255,.7);
}
.headshot .avatar::before {
  content: attr(data-initials); color: #fff; font-family: var(--font-display);
  font-size: 2.4rem; letter-spacing: .04em;
}
.headshot .avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.headshot figcaption b {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em;
  color: var(--navy); font-size: 1.05rem;
}
.headshot figcaption span { display: block; color: var(--muted); font-size: .85rem; margin-top: .1rem; }
.bg-navy .headshot figcaption b { color: #fff; }
.bg-navy .headshot figcaption span { color: #cdd6e5; }

/* ---------- FAQ (accordion) ---------- */
.faq details {
  border: 1px solid var(--line); border-radius: 10px; margin-bottom: .75rem;
  background: var(--paper); overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 1.05rem 1.25rem; list-style: none;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .01em;
  font-size: 1.02rem; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 1.5rem; line-height: 1; flex: 0 0 auto; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq details p { padding: 1rem 1.25rem; margin: 0; color: var(--muted); }

/* ---------- Note / callout ---------- */
.note {
  background: #fff8e6; border: 1px solid #f0dfa8; border-left: 4px solid var(--red);
  padding: 1rem 1.25rem; border-radius: 8px; font-size: .92rem; color: #5a4a1e;
}
.note b { color: var(--red-dark); }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 800px){ .split { grid-template-columns: 1fr; } }

/* ============================================================
   Mobile optimizations
   ============================================================ */
/* Keep in-page anchor targets clear of the sticky header */
:where(section, [id]) { scroll-margin-top: calc(var(--header-h) + 14px); }

/* Tablet & mobile nav: shrink the oversized logo/header so it
   doesn't dominate the screen (desktop keeps the big logo). */
@media (max-width: 1080px) {
  :root { --header-h: 136px; }
  .brand img { height: 116px; }
}

@media (max-width: 600px) {
  :root { --header-h: 116px; }
  .brand img { height: 96px; }

  h3 { font-size: 1.2rem; }
  .lead { font-size: 1.05rem; }
  .section { padding: 2.75rem 0; }

  /* Hero fits the first screen better on phones */
  .hero { min-height: 74vh; }
  .hero-badges { gap: .5rem; margin: 1.1rem 0; }
  .hero-badge { font-size: .72rem; padding: .38rem .8rem; letter-spacing: .08em; }

  /* Stack CTA buttons full-width for easy thumb taps */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Tighter event rows so the date box doesn't crowd the text */
  .event { grid-template-columns: 68px 1fr; gap: 1rem; padding: 1rem; }
  .event .date b { font-size: 1.5rem; }

  .card__body { padding: 1.25rem; }
  .untappd-cta { padding: 1.75rem 1.25rem; }
  .stat b { font-size: 2.2rem; }
  .map-embed { height: 320px; }
}
