/* ==========================================================================
   George & Nick's Pizza & Steakhouse — Centerville, Iowa
   Theme: "Coal-town supper club" — charcoal + ember + brass + cream,
   a quiet nod to the Greek family who opened the place in 1968.
   ========================================================================== */

:root {
  --charcoal: #17110d;
  --charcoal-2: #221810;
  --charcoal-3: #2c2018;
  --ember: #b3441e;
  --ember-light: #d0642f;
  --rust: #7c2f1f;
  --brass: #c9a13b;
  --brass-light: #e6c877;
  --brass-dark: #8f6c1f;
  --cream: #f3e8d6;
  --cream-dim: rgba(243, 232, 214, 0.72);
  --cream-faint: rgba(243, 232, 214, 0.45);
  --aegean: #2f4d6b;
  --aegean-light: #4c7196;
  --shadow: rgba(0, 0, 0, 0.45);

  --font-display: "Fraunces", "Liberation Serif", Georgia, serif;
  --font-body: "Jost", "Segoe UI", Arial, sans-serif;

  --panel-pad: clamp(1.25rem, 5vw, 3rem);
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }

body {
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Subtle film-grain texture over the whole page for a tactile, printed feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 0.5em;
  line-height: 1.12;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--brass-light);
  font-weight: 500;
}

.rule {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), transparent);
  margin: 0.9em 0 1.2em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(0) scale(0.97); }
.btn-primary {
  background: linear-gradient(150deg, var(--ember-light), var(--ember) 65%, var(--rust));
  color: var(--cream);
  box-shadow: 0 10px 24px -6px rgba(179, 68, 30, 0.55), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover { box-shadow: 0 14px 30px -6px rgba(179, 68, 30, 0.65), inset 0 1px 0 rgba(255,255,255,0.22); transform: translateY(-2px); }
.btn-outline {
  border-color: var(--brass);
  color: var(--brass-light);
  background: rgba(201, 161, 59, 0.08);
  box-shadow: 0 6px 16px -6px rgba(0,0,0,0.5);
}
.btn-outline:hover { background: rgba(201, 161, 59, 0.18); transform: translateY(-2px); box-shadow: 0 10px 20px -6px rgba(0,0,0,0.55); }

/* ---------------------------------------------------------------------- */
/* Snap-scroll shell                                                       */
/* ---------------------------------------------------------------------- */

#scroller {
  height: 100svh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.panel {
  min-height: 100svh;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  --header-clear: 84px;
  padding: calc(var(--header-clear) + var(--panel-pad) + env(safe-area-inset-top)) var(--panel-pad) var(--panel-pad);
}

.panel-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.panel:not(.hero)::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,161,59,0.35) 20%, rgba(201,161,59,0.35) 80%, transparent);
}

/* Quiet per-section atmosphere so panels don't all read as one flat charcoal block */
#story::after, #parties::after {
  content: "";
  position: absolute;
  width: 640px; height: 640px;
  background-image: url("../images/mark.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
#story::after { left: -200px; top: -180px; }
#parties::after { right: -200px; bottom: -200px; }
#story .panel-inner, #parties .panel-inner { position: relative; z-index: 1; }

#visit { background: radial-gradient(ellipse at 85% 0%, rgba(201, 161, 59, 0.10), transparent 55%); }
#contact { background: radial-gradient(ellipse at 15% 100%, rgba(179, 68, 30, 0.12), transparent 55%); }
#parties { background: radial-gradient(ellipse at 90% 90%, rgba(201, 161, 59, 0.07), transparent 55%); }

.panel--menu, .panel--visit {
  justify-content: flex-start;
}

.panel--menu {
  height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

/* Decorative Greek-key top/bottom rule used on a few panels */
.key-rule {
  height: 10px;
  width: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    var(--brass) 0 3px,
    transparent 3px 6px
  );
  opacity: 0.35;
}

/* ---------------------------------------------------------------------- */
/* Nav: dot rail (desktop) + hamburger drawer (mobile)                    */
/* ---------------------------------------------------------------------- */

.brandbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(180deg, rgba(23, 17, 13, 0.92), rgba(23, 17, 13, 0));
  pointer-events: none;
}
.brandbar > * { pointer-events: auto; }
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cream);
}
.brand img { width: 40px; height: 40px; }

.hamburger {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 161, 59, 0.5);
  background: rgba(23, 17, 13, 0.6);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.hamburger span, .hamburger::before, .hamburger::after { content: none; }
.hamburger svg { width: 20px; height: 20px; stroke: var(--brass-light); }

.dotrail {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dotrail a {
  position: relative;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(243, 232, 214, 0.25);
  border: 1.5px solid rgba(201, 161, 59, 0.5);
  transition: background 0.2s, transform 0.2s;
}
.dotrail a:hover { transform: scale(1.2); }
.dotrail a.active { background: var(--brass-light); }
.dotrail a .label {
  position: absolute;
  right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--charcoal-2);
  padding: 0.3em 0.7em;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  border: 1px solid rgba(201, 161, 59, 0.3);
}
.dotrail a:hover .label { opacity: 1; }

@media (max-width: 899px) {
  .dotrail { display: none; }
}
@media (max-width: 600px) {
  :root { --panel-pad: 1.15rem; }
  h2 { font-size: 1.55rem !important; }
  .hero h1 { font-size: 2.15rem; }
  .hero .tagline { font-size: 0.92rem; margin-bottom: 1.1rem; }
  .section-head p { font-size: 0.92rem; }
  .hours-table td { padding: 0.35em 0; font-size: 0.88rem; }
  .card { padding: 1.05rem; }
  .card .stat { font-size: 1.7rem; }
  .form-note { display: none; }
  .form-wrap { margin-top: 0.7rem; }
}
@media (min-width: 900px) {
  .hamburger { display: none; }
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgb(21, 15, 11);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}
.drawer.open { transform: translateX(0); }
.drawer a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
}
.drawer a.active { color: var(--brass-light); }
.drawer-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 161, 59, 0.5);
  background: transparent;
  color: var(--brass-light);
  font-size: 1.4rem;
  cursor: pointer;
}

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

.hero {
  background:
    radial-gradient(ellipse at 30% 15%, rgba(179, 68, 30, 0.26), transparent 55%),
    radial-gradient(ellipse at 82% 78%, rgba(201, 161, 59, 0.16), transparent 50%),
    linear-gradient(180deg, var(--charcoal-2), var(--charcoal));
  overflow: hidden;
}
.hero-skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 52%;
  min-height: 230px;
  object-fit: cover;
  object-position: bottom;
  opacity: 0.9;
}
@media (max-width: 600px) {
  .hero-skyline { height: 36%; opacity: 0.8; }
}
.hero-badge {
  width: clamp(84px, 18vw, 128px);
  height: auto;
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
}
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  color: var(--cream);
}
.hero h1 em {
  font-style: italic;
  color: var(--brass-light);
}
.hero .tagline {
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  color: var(--cream-dim);
  max-width: 46ch;
  margin-bottom: 1.6rem;
}
.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.hero .status-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.85rem;
  color: var(--cream-dim);
  padding: 0.5em 1em;
  border: 1px solid rgba(201, 161, 59, 0.3);
  border-radius: 999px;
  background: rgba(0,0,0,0.2);
}
.dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7bbf6a;
  box-shadow: 0 0 0 3px rgba(123,191,106,0.2);
}

.hero-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}
.hero .panel-inner { position: relative; z-index: 1; }

/* ---------------------------------------------------------------------- */
/* Story / stat tiles / horizontal carousel                                */
/* ---------------------------------------------------------------------- */

.section-head { max-width: 62ch; }
.section-head p { color: var(--cream-dim); font-size: 1.02rem; }

.carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 0.5rem 0 1rem;
  margin-top: 1.4rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--brass-dark) transparent;
}
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-thumb { background: var(--brass-dark); border-radius: 3px; }

.card {
  scroll-snap-align: start;
  flex: 0 0 min(80vw, 300px);
  background: linear-gradient(160deg, var(--charcoal-3), var(--charcoal-2));
  border: 1px solid rgba(201, 161, 59, 0.22);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 14px 30px -14px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); border-color: rgba(201, 161, 59, 0.4); }

@media (min-width: 900px) {
  .carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
  }
  .card { flex: none; }
}
.card .stat {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--brass-light);
}
.card .stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream-faint);
  margin-bottom: 0.4rem;
}
.card p.desc {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  color: var(--cream-dim);
}

.story-quote {
  margin-top: 1.6rem;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--ember);
  background: rgba(179, 68, 30, 0.08);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--cream-dim);
  max-width: 62ch;
}

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

.panel--menu { padding-bottom: 0; }
.menu-head { margin-bottom: 0.6rem; }

.menu-tabs {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.9rem 0;
  margin: 0 calc(var(--panel-pad) * -1);
  padding-left: var(--panel-pad);
  padding-right: var(--panel-pad);
  background: linear-gradient(180deg, var(--charcoal) 70%, rgba(23,17,13,0.0));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex: 0 0 auto;
  padding: 0.55em 1.1em;
  border-radius: 999px;
  border: 1.5px solid rgba(201, 161, 59, 0.35);
  background: transparent;
  color: var(--cream-dim);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.menu-tab.active {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--charcoal);
}

.menu-scroll {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
}

.menu-category { display: none; }
.menu-category.active { display: block; animation: fadein 0.25s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(4px);} to { opacity:1; transform:none; } }

.menu-cat-note {
  font-size: 0.85rem;
  color: var(--cream-faint);
  margin: -0.2rem 0 1rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.4rem 2rem;
}

.menu-item {
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(201, 161, 59, 0.25);
}
.menu-item-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.menu-item-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--cream);
}
.menu-item-fill {
  flex: 1;
  border-bottom: 1px dotted rgba(243, 232, 214, 0.22);
  transform: translateY(-4px);
}
.menu-item-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brass-light);
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 0.85rem;
  color: var(--cream-dim);
  margin-top: 0.15rem;
}
.tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  background: var(--brass-light);
  border-radius: 5px;
  padding: 0.12em 0.45em;
  margin-left: 0.4em;
  vertical-align: middle;
  transform: translateY(-1px);
}
.tag.greek { background: var(--aegean-light); color: var(--cream); }

.consumer-advisory {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  font-size: 0.76rem;
  color: var(--cream-faint);
  border: 1px solid rgba(201, 161, 59, 0.2);
  border-radius: 10px;
  line-height: 1.5;
}

/* ---------------------------------------------------------------------- */
/* Visit / hours / map                                                     */
/* ---------------------------------------------------------------------- */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 760px) {
  .visit-grid { grid-template-columns: 1fr; }
  .map-wrap { display: none; }
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.hours-table td {
  padding: 0.5em 0;
  border-bottom: 1px dashed rgba(201, 161, 59, 0.2);
  font-size: 0.95rem;
}
.hours-table td:last-child { text-align: right; color: var(--brass-light); font-weight: 600; }
.hours-table tr.closed td:last-child { color: var(--cream-faint); font-weight: 400; }
.hours-note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--cream-faint);
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 161, 59, 0.25);
  aspect-ratio: 4 / 3;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) sepia(0.15); }

.contact-list { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.contact-list a { display: flex; align-items: center; gap: 0.6em; color: var(--cream); font-size: 1rem; }
.contact-list svg { width: 18px; height: 18px; stroke: var(--brass-light); flex-shrink: 0; }

/* ---------------------------------------------------------------------- */
/* Parties / inquiry form                                                  */
/* ---------------------------------------------------------------------- */

.form-wrap {
  max-width: 640px;
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}
.form-row { display: grid; gap: 0.65rem; grid-template-columns: 1fr 1fr; min-width: 0; }
.field { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; }
.field label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream-faint);
}
.field input, .field select, .field textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: var(--charcoal-2);
  border: 1.5px solid rgba(201, 161, 59, 0.3);
  border-radius: 8px;
  padding: 0.55em 0.8em;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--brass-light) 50%), linear-gradient(135deg, var(--brass-light) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.2em;
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brass);
}
.field textarea { resize: vertical; min-height: 60px; }
.honeypot { position: absolute; left: -9999px; top: -9999px; }
.form-note { font-size: 0.8rem; color: var(--cream-faint); }

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

.footer {
  justify-content: flex-end;
  background: var(--charcoal-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 161, 59, 0.15);
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.footer h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brass-light);
  font-family: var(--font-body);
  font-weight: 600;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer ul a { color: var(--cream-dim); font-size: 0.92rem; }
.footer ul a:hover { color: var(--brass-light); }
.footer-bottom {
  padding-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--cream-faint);
}
.social-row { display: flex; gap: 0.8rem; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 161, 59, 0.3);
  display: flex; align-items: center; justify-content: center;
}
.social-row svg { width: 17px; height: 17px; stroke: var(--brass-light); }

/* ---------------------------------------------------------------------- */
/* Mobile sticky action bar — Call / Directions / Menu / Inquire           */
/* ---------------------------------------------------------------------- */

.mobile-actionbar {
  display: none;
}

@media (max-width: 699px) {
  :root { --bottombar-h: 72px; }

  .mobile-actionbar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 55;
    height: calc(var(--bottombar-h) + env(safe-area-inset-bottom));
    background: rgb(18, 13, 10);
    border-top: 1px solid rgba(201, 161, 59, 0.25);
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.35);
  }
  .mobile-actionbar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--cream-dim);
    font-size: 0.64rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.15s, background 0.15s;
  }
  .mobile-actionbar a svg { width: 20px; height: 20px; stroke: currentColor; }
  .mobile-actionbar a:active { background: rgba(201, 161, 59, 0.12); }
  .mobile-actionbar a.actionbar-primary {
    color: var(--charcoal);
    position: relative;
  }
  .mobile-actionbar a.actionbar-primary::before {
    content: "";
    position: absolute;
    top: 6px; left: 14%; right: 14%; bottom: 6px;
    background: linear-gradient(150deg, var(--ember-light), var(--ember));
    border-radius: 14px;
    z-index: -1;
    box-shadow: 0 6px 16px -4px rgba(179,68,30,0.6);
  }
  .mobile-actionbar a.actionbar-primary { color: var(--cream); }

  /* Only the two panels that already use their full height edge-to-edge need to give
     up room for the bar. Every other panel keeps its normal 100svh snap box — it has
     natural slack at the bottom, so the bar simply floats over empty space there.
     (#scroller and the base .panel height are deliberately left untouched: shrinking
     them globally would shift every snap point and reopen the overflow bugs already
     fixed and verified for hero/story/visit/parties/contact.) */
  .panel--menu {
    height: calc(100svh - var(--bottombar-h) - env(safe-area-inset-bottom)) !important;
    max-height: calc(100svh - var(--bottombar-h) - env(safe-area-inset-bottom)) !important;
  }
  .footer {
    min-height: calc(100svh - var(--bottombar-h) - env(safe-area-inset-bottom));
  }
  .drawer { bottom: calc(var(--bottombar-h) + env(safe-area-inset-bottom)); }
}

/* generic helpers */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
