/* Slice of The Burg — site styles
   Brand: Alfa Slab One display, DM Sans body, Bitter accent, sauce-red + ink.
   Fonts are loaded via <link> in the document head (see build.js). */

:root {
  /* Brand palette */
  --red: #a4221e;
  --red-dark: #8a1b18;
  --red-tint: #f4d9d8;
  --ink: #1b1b1b;
  --ink-soft: #2a2a2a;
  --muted: #595959;
  --line: #e2e2e2;
  --paper: #ffffff;
  --soft: #f6f6f6;
  --warm: #f7f1e6;        /* warm cream band */
  --warm-deep: #efe6d6;

  /* Type */
  --display: "Alfa Slab One", Georgia, serif;
  --body: "DM Sans", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --serif: "Bitter", Georgia, serif;
  --accent: "Caveat", "Segoe Script", cursive;

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --reading: 760px;
  --gutter: clamp(16px, 4vw, 40px);
  --section-y: clamp(52px, 7vw, 104px);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .08);
  --shadow: 0 8px 24px rgba(0, 0, 0, .14);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, .26);
  --ease-out: cubic-bezier(.2, .7, .2, 1);
  --header-h: 92px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 8px 8px;
  font-size: 13px;
  font-weight: 700;
  transition: top .2s var(--ease-out);
}

.skip-link:focus { top: 0; color: #fff; }

/* ---------- Layout primitives ---------- */

.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.container-wide {
  width: min(var(--container-wide), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.narrow {
  width: min(var(--reading), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

/* Full-bleed bands: section paints edge-to-edge, inner holds content */
.band { padding-block: var(--section-y); }
.band--cream { background: var(--warm); }

/* ---------- Promo + header ---------- */

.promo {
  display: block;
  padding: 8px 16px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}

.promo:hover { background: var(--red-dark); color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  width: min(var(--container-wide), calc(100% - var(--gutter) * 2));
  min-height: var(--header-h);
  margin: 0 auto;
}

.logo-link img { width: 152px; height: auto; }

.desktop-nav { display: flex; justify-content: center; gap: 20px; }

.desktop-nav a,
.footer-nav a,
.mobile-nav a {
  position: relative;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }

.desktop-nav a[aria-current="page"],
.desktop-nav a:hover,
.footer-nav a:hover,
.mobile-nav a:hover { color: var(--red); }

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

.order-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 26px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(164, 34, 30, .26);
  transition: background .18s ease, transform .12s ease, box-shadow .18s ease;
}

.order-button:hover,
.button:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(164, 34, 30, .32);
}

.button:active,
.order-button:active { transform: translateY(0) scale(.98); }

.button-dark { background: var(--ink); box-shadow: 0 6px 16px rgba(0, 0, 0, .26); }
.button-dark:hover { background: #000; }

.button-outline {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
  box-shadow: none;
}

.button-outline:hover { background: var(--red); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s var(--ease-out), opacity .2s var(--ease-out);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 29;
  display: grid;
  gap: 2px;
  padding: 6px var(--gutter) 18px;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: saturate(140%) blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 18px 28px rgba(0, 0, 0, .14);
  transform: translateY(-16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .28s var(--ease-out), opacity .28s var(--ease-out), visibility .28s;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a { padding: 13px 2px; border-bottom: 1px solid var(--line); }

.mobile-order { display: inline-flex; margin-top: 12px; }

/* ---------- Typography ---------- */

h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 { margin: 0 0 12px; font-size: clamp(2.1rem, 6vw, 3.6rem); }

h2 { margin: 0; color: var(--red); font-size: clamp(1.8rem, 4vw, 2.8rem); }

h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-phone,
.hero-service,
.kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-tagline {
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
}

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

.hero {
  position: relative;
  min-height: min(78vh, 680px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
  padding: 48px var(--gutter);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .5));
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-accent {
  position: absolute;
  top: clamp(14px, 4vw, 40px);
  right: clamp(16px, 5vw, 56px);
  z-index: 1;
  margin: 0;
  font-family: var(--accent);
  font-weight: 700;
  font-size: clamp(1.7rem, 5vw, 3.1rem);
  line-height: 1;
  color: #ffd7a0;
  transform: rotate(-6deg);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
  pointer-events: none;
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  padding: 40px 40px 44px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-lg);
  border-radius: 6px;
  text-align: center;
}

.hero-panel > * { margin-block: 0; }
.hero-panel > * + * { margin-top: 14px; }

/* ---------- Intro ---------- */

.intro { text-align: center; }

.intro h2 {
  margin-bottom: 16px;
  font-family: var(--body);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

.intro p,
.section-head p,
.visit-info p,
.simple-page p,
.page-hero p,
.menu-note,
.section-note { color: var(--muted); }

/* ---------- Quote bars ---------- */

.quote-bar {
  padding: 30px var(--gutter);
  background: var(--red);
  color: #fff;
  text-align: center;
}

.quote-bar blockquote {
  width: min(900px, 100%);
  margin: 0 auto;
}

.quote-text {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.375rem);
  line-height: 1.5;
}

.quote-by {
  display: block;
  margin-top: 10px;
  font-family: var(--body);
  font-style: normal;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .85);
}

/* ---------- Section heads ---------- */

.section-head {
  width: min(var(--reading), 100%);
  margin: 0 auto 32px;
  text-align: center;
}

.kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 10px;
}

.kicker::before,
.kicker::after {
  content: "";
  width: min(190px, 22vw);
  height: 2px;
  background: var(--red);
  opacity: .35;
}

/* ---------- Slice Club ---------- */

.club-card {
  display: grid;
  grid-template-columns: 360px auto;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.club-card img {
  width: 100%;
  height: auto;
}

.club-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.club-card ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.club-card li { padding: 6px 0; }

.club-card li::before {
  content: "\2713";
  margin-right: 10px;
  color: var(--red);
  font-weight: 700;
}

/* ---------- Gift cards ---------- */

.gift-card-inner {
  display: grid;
  gap: 24px;
  text-align: center;
}

.gift-card-inner img {
  width: 100%;
  max-width: 760px;
  max-height: 300px;
  margin-inline: auto;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .3));
}

.gift-card-inner h2 { margin: 0; }

.gift-card-inner p:not(.kicker) {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
}

.gift-card-inner .button { justify-self: center; }

/* ---------- Faves carousel ---------- */

.faves { overflow: hidden; }

.gallery-stage {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.gallery-viewport { width: 100%; overflow: hidden; }

.gallery-track {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform .45s var(--ease-out);
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 600px;
  width: 600px;
  height: 600px;
  margin: 0;
  background: var(--ink);
  border-radius: 10px;
  overflow: hidden;
  opacity: .32;
  transform: scale(.92);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}

.gallery-slide.active { opacity: 1; transform: scale(1); box-shadow: var(--shadow-lg); }
.gallery-slide.near { opacity: .5; }

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}

.gallery-slide.active:hover img { transform: scale(1.05); }

/* Unified carousel arrow controls (main + thumbnail) */
.gallery-prev,
.gallery-next,
.gallery-thumb-prev,
.gallery-thumb-next {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background .18s ease, color .18s ease, transform .12s ease, box-shadow .18s ease;
}

.gallery-prev:hover,
.gallery-next:hover,
.gallery-thumb-prev:hover,
.gallery-thumb-next:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 8px 18px rgba(164, 34, 30, .3);
}

.gallery-prev:active,
.gallery-next:active,
.gallery-thumb-prev:active,
.gallery-thumb-next:active { transform: scale(.94); }

.gallery-prev svg,
.gallery-next svg,
.gallery-thumb-prev svg,
.gallery-thumb-next svg { width: 42%; height: 42%; }

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: var(--shadow);
}

.gallery-prev:hover,
.gallery-next:hover { transform: translateY(-50%) scale(1.06); }
.gallery-prev:active,
.gallery-next:active { transform: translateY(-50%) scale(.94); }

.gallery-prev { left: calc(50% - 342px); }
.gallery-next { right: calc(50% - 342px); }

/* Autoplay progress bar */
.gallery-progress {
  width: min(600px, calc(100% - var(--gutter) * 2));
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.gallery-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform-origin: left;
  transform: scaleX(0);
}

.gallery-progress i.run { animation: car-progress var(--car-interval, 5s) linear forwards; }
.gallery-progress i.paused { animation-play-state: paused; }

@keyframes car-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.gallery-caption {
  margin: 12px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: .95rem;
  font-style: italic;
  text-align: center;
}

.gallery-thumb-controls {
  display: grid;
  grid-template-columns: 40px minmax(0, 920px) 40px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(var(--container), 100%);
  margin: 18px auto 0;
}

.gallery-thumb-prev,
.gallery-thumb-next { width: 40px; height: 40px; }

.gallery-thumbs {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 4px 2px 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar { display: none; }

.gallery-thumbs button {
  flex: 0 0 auto;
  width: 80px;
  height: 60px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #000;
  cursor: pointer;
  overflow: hidden;
  opacity: .6;
  scroll-snap-align: center;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.gallery-thumbs button:hover { opacity: .85; transform: translateY(-2px); }
.gallery-thumbs button.active { border-color: var(--red); opacity: 1; }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Connect / socials ---------- */

.connect { text-align: center; }

.social-links { display: flex; justify-content: center; gap: 14px; }

.social-links a {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .18));
  transition: transform .18s var(--ease-out), filter .18s ease;
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.05);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .25));
}

.social-links img { width: 48px; height: 48px; }

/* ---------- Visit ---------- */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-form { display: grid; gap: 14px; }

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 15px;
  font: inherit;
  background: #fff;
}

input:focus,
textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(164, 34, 30, .16);
}

.form-note { margin: 0; color: var(--muted); font-size: .78rem; }

.hours { display: grid; gap: 6px; margin: 0 0 22px; }

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 380px;
  padding-bottom: 4px;
  border-bottom: 1px dotted var(--line);
}

/* ---------- Page hero / simple pages ---------- */

.page-hero { text-align: center; }
.page-hero h1 { color: var(--red); }
.page-hero .button { margin-top: 6px; }

.simple-page { min-height: 52vh; text-align: center; }
.simple-page h1 { color: var(--red); }
.simple-page p { font-size: 1.05rem; }

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

.menu-page { padding-bottom: var(--section-y); }

.menu-note { text-align: center; font-size: .95rem; }

.menu-tabs-band {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
}

.menu-tabs button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}

.menu-tabs button.active,
.menu-tabs button:hover { border-color: var(--red); background: var(--red); color: #fff; }

/* Mobile: collapse the wrapping pill grid into one swipeable row that
   auto-centers the active section. Soft edge-fades hint there's more. */
@media (max-width: 700px) {
  .menu-tabs {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
  }

  .menu-tabs::-webkit-scrollbar { display: none; }

  .menu-tabs button {
    flex: 0 0 auto;
    scroll-snap-align: center;
  }
}

.menu-content { margin-top: 8px; }

.menu-section {
  scroll-margin-top: calc(var(--header-h) + 80px);
  padding: 40px 0 30px;
  border-top: 1px solid var(--line);
}

.menu-section:first-child { border-top: 0; }

.menu-section h2 { margin-bottom: 8px; text-align: center; }

.section-note { max-width: 720px; margin: 0 auto 22px; text-align: center; }

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 48px;
}

.menu-item {
  break-inside: avoid;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}

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

.menu-item h3 { margin: 0; color: var(--ink); }

.menu-item span { flex: none; color: var(--red); font-weight: 700; }

.menu-item p { margin: 4px 0 0; color: var(--muted); font-size: .92rem; }

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

.site-footer {
  padding: 56px var(--gutter) 40px;
  background: var(--warm);
  border-top: 3px solid var(--red);
  color: var(--muted);
  text-align: center;
}

.footer-logo { width: 150px; height: auto; margin: 0 auto 18px; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-top: 24px;
}

.site-footer p { margin: 14px 0 0; color: var(--muted); font-size: .82rem; }

/* ---------- Mobile floating action buttons ---------- */

.mobile-fab { display: none; }

.fab {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .28);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  transition: background .18s ease, color .18s ease, transform .12s ease;
}

.fab svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .35));
}

.fab:hover { background: var(--red); color: #fff; }
.fab:active { transform: scale(.94); }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal.in-view { opacity: 1; transform: none; }

/* staggered children within revealed groups */
.menu-list .menu-item,
.gallery-thumbs button { transition-delay: 0s; }

/* ---------- Hero load-in ---------- */

.hero-panel > * { animation: rise .7s var(--ease-out) both; }
.hero-panel > *:nth-child(1) { animation-delay: .05s; }
.hero-panel > *:nth-child(2) { animation-delay: .14s; }
.hero-panel > *:nth-child(3) { animation-delay: .23s; }
.hero-panel > *:nth-child(4) { animation-delay: .32s; }
.hero-panel > *:nth-child(5) { animation-delay: .41s; }
.hero-panel > *:nth-child(6) { animation-delay: .5s; }

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

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .menu-list { gap: 18px 36px; }
}

@media (max-width: 920px) {
  :root { --header-h: 72px; }

  .header-inner { grid-template-columns: auto 1fr auto; }

  .desktop-nav,
  .order-button { display: none; }

  .nav-toggle { display: flex; justify-self: end; }

  .logo-link img { width: 132px; }

  .gift-card-inner,
  .visit-grid,
  .menu-list { grid-template-columns: 1fr; }

  .club-card { grid-template-columns: min(300px, 38vw) auto; }

  .gallery-slide {
    flex-basis: min(600px, calc(100vw - 100px));
    width: min(600px, calc(100vw - 100px));
    height: min(600px, calc(100vw - 100px));
  }

  .gallery-prev { left: 12px; }
  .gallery-next { right: 12px; }

  .mobile-fab {
    position: fixed;
    right: 14px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 40;
    display: flex;
    flex-direction: row;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  body { font-size: 15px; }

  .hero { align-items: end; min-height: 70vh; padding: 28px var(--gutter); }
  .hero-panel { padding: 28px 24px 32px; }

  .gallery-prev,
  .gallery-next { width: 42px; height: 42px; }

  .gallery-slide {
    flex-basis: calc(100vw - 80px);
    width: calc(100vw - 80px);
    height: calc(100vw - 80px);
  }

  .gallery-thumb-controls {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .gallery-thumb-prev,
  .gallery-thumb-next { width: 36px; height: 36px; }

  .gallery-thumbs button { width: 68px; height: 52px; }

  /* Club keeps the desktop 2-column layout on phones: image left, copy right */
  .club-card {
    grid-template-columns: min(300px, 46vw) auto;
    gap: 14px;
  }

  .club-card ul { margin-bottom: 16px; font-size: .8rem; }
  .club-card li::before { margin-right: 6px; }
  .club-copy .button { padding-inline: 16px; }

  /* Tighten the gift-card section so it matches the rest of the page rhythm */
  .gift-card-section { padding-block: 22px; }
  .gift-card-inner { gap: 10px; }

  .hours div,
  .menu-item-head { display: block; }

  .menu-item span { display: inline-block; margin-top: 2px; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal { opacity: 1; transform: none; }
  .hero-image { transform: none; }
}
