:root {
  --bg: #120905;
  --panel: rgba(44, 23, 13, 0.86);
  --panel-2: rgba(75, 42, 24, 0.72);
  --wood: #3a2115;
  --wood-soft: #5c3723;
  --gold: #efca84;
  --gold-soft: #d7a35d;
  --text: #fff0d4;
  --muted: #d8b98b;
  --ember: #ff7b1c;
  --ember-soft: rgba(255, 123, 28, 0.36);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-lift: 0 22px 55px rgba(0, 0, 0, 0.5);
  --radius: 24px;
  --max: 1220px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  color-scheme: dark;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at top, rgba(255, 135, 36, 0.15), transparent 28%),
    linear-gradient(180deg, rgba(12, 6, 4, 0.95), rgba(18, 9, 5, 1));
  color: var(--text);
}

::selection {
  background: rgba(239, 202, 132, 0.28);
  color: var(--text);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.22)),
    url('../images/background-image.png') center/cover no-repeat;
  opacity: 0.16;
  filter: saturate(0.9);
}

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

.site-shell {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  min-height: 100vh;
}

.topbar,
.hero-pricing-stack,
.hero,
.quick-strip,
.board-section,
.raccoon-rider-strip,
.menu-section,
.drinks-cta,
.spotlight-section,
.visit-section {
  width: min(calc(100% - 1.4rem), var(--max));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 220, 164, 0.14);
  border-radius: 999px;
  background: rgba(17, 8, 5, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.brand strong,
h1,h2,h3 {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.02em;
}
.brand strong { font-size: 1rem; }
.brand-kicker { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; }

.nav-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-weight: 600;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  transition: color 0.2s var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }

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

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.topbar-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid rgba(255, 220, 164, 0.14);
  background: rgba(255, 255, 255, 0.04);
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.topbar-social-link:hover {
  color: var(--gold);
  border-color: rgba(255, 220, 164, 0.28);
  background: rgba(255, 255, 255, 0.07);
}
.social-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold);
  border: 1px solid rgba(255, 220, 164, 0.2);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 199, 119, 0.35);
  color: #f5dcb0;
}
.social-link .social-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #f1cf8c, #cd8b3f);
  color: #241109;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(255, 123, 28, 0.26);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  -webkit-tap-highlight-color: rgba(239, 202, 132, 0.25);
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255, 123, 28, 0.36); }
.button:active { transform: translateY(0); box-shadow: 0 8px 22px rgba(255, 123, 28, 0.22); }
.button-secondary {
  background: rgba(255, 238, 210, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 220, 164, 0.18);
  box-shadow: none;
}
.button-secondary:hover {
  background: rgba(255, 238, 210, 0.12);
  border-color: rgba(255, 220, 164, 0.28);
}
.button-ghost {
  min-height: 42px;
  padding-inline: 1rem;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255, 220, 164, 0.18);
  box-shadow: none;
}
.button-ghost:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255, 220, 164, 0.26);
}
.button-sm { min-height: 42px; padding: 0.7rem 1rem; }

.hero-pricing-stack {
  position: relative;
  overflow: visible;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0 0.75rem;
}
.hero-copy,
.hero-art {
  min-width: 0;
}
.hero-copy {
  text-align: center;
}
.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.3rem);
  line-height: 0.96;
  max-width: 11ch;
  text-wrap: balance;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
  margin-inline: auto;
}
.lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 58ch;
  margin: 1rem 0 1.6rem;
  margin-inline: auto;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
  justify-content: center;
}
.hero-highlights {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-highlights li {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  justify-content: center;
  color: #f3d8af;
}
.hero-highlights li::before {
  content: '•';
  color: var(--ember);
}

.hero-weekly-figure {
  max-width: min(100%, 38rem);
  margin-inline: auto;
  width: 100%;
}

.hero-art {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.75rem;
  min-height: 0;
}
.raccoon-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  margin-top: 0.35rem;
  margin-bottom: clamp(-2.5rem, -5vw, -0.85rem);
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.6));
}
.raccoon-wrap img {
  width: min(100%, 420px);
  object-fit: contain;
  animation: bob 6s ease-in-out infinite;
}
.phone-card {
  position: relative;
  width: min(82%, 360px);
  padding: 0.55rem;
  border-radius: 28px;
  margin-top: 0.35rem;
  background: linear-gradient(180deg, rgba(255, 231, 181, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 220, 164, 0.15);
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}
.phone-card img {
  border-radius: 22px;
  border: 1px solid rgba(255, 220, 164, 0.14);
}
.float-card { animation: drift 8s ease-in-out infinite; }

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  /* Default (tablet / laptop): lighter tuck so two-column hero + carousel are not covered */
  margin-top: clamp(-2.75rem, -4.5vw, -0.35rem);
  padding: clamp(1.5rem, 3.5vw, 2.25rem) 0 3rem;
  position: relative;
  z-index: 1;
}
.quick-card,
.burger-card,
.visit-card,
.drinks-cta,
.menu-copy,
.menu-frame {
  background:
    linear-gradient(180deg, rgba(87, 51, 31, 0.55), rgba(43, 22, 13, 0.82)),
    rgba(34, 18, 10, 0.8);
  border: 1px solid rgba(255, 220, 164, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.quick-card {
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.quick-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 199, 119, 0.28);
  box-shadow: var(--shadow-lift);
}
.quick-label {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  margin-bottom: 0.55rem;
}
.quick-card strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--gold);
}
.quick-card small { color: var(--muted); }

.section-heading {
  max-width: 700px;
  margin-bottom: 1.3rem;
  text-align: center;
  margin-inline: auto;
}
.section-heading h2,
.menu-copy h2,
.drinks-cta h2,
.visit-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.board-section { padding: 1rem 0 2rem; }

.raccoon-rider-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.35rem 0 1rem;
  pointer-events: none;
}
.raccoon-rider-img {
  width: min(96%, 460px);
  max-height: min(88vh, 520px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.55));
  animation: bob 6s ease-in-out infinite;
}
.burger-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.burger-card {
  padding: 1.35rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.burger-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 199, 119, 0.35);
  box-shadow: var(--shadow-lift);
}
.badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 145, 43, 0.12);
  color: var(--gold);
  border: 1px solid rgba(255, 173, 74, 0.22);
  font-size: 0.82rem;
  font-weight: 700;
}
.burger-card h3 { margin: 0 0 0.55rem; font-size: 1.45rem; }
.burger-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.menu-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  padding: 2rem 0;
}
.menu-copy,
.menu-frame { padding: 1rem; }
.menu-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.menu-copy p:not(.eyebrow) { color: var(--muted); line-height: 1.8; }
.menu-copy p:not(.eyebrow) { margin-inline: auto; max-width: 60ch; }
.menu-frame img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 220, 164, 0.16);
  transition: border-color 0.2s var(--ease-out);
}
.menu-frame img:hover {
  border-color: rgba(255, 220, 164, 0.28);
}
.flavor-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}
.flavor-pills span {
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255, 220, 164, 0.14);
  color: #f8dcae;
  font-weight: 600;
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.flavor-pills span:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255, 220, 164, 0.24);
}

.drinks-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.6rem;
  margin-top: 0.6rem;
}
@media (min-width: 781px) {
  .drinks-cta { text-align: center; }
}

.spotlight-section {
  padding: 2.5rem 0 1rem;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.spotlight-grid--solo {
  grid-template-columns: 1fr;
  max-width: min(44rem, 100%);
  margin-inline: auto;
  justify-items: center;
}

.spotlight-grid--solo .spotlight-copy {
  width: 100%;
}
.spotlight-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 220, 164, 0.14);
  box-shadow: var(--shadow-lift);
  background:
    linear-gradient(180deg, rgba(87, 51, 31, 0.35), rgba(43, 22, 13, 0.65)),
    rgba(18, 9, 5, 0.5);
}
.spotlight-figure > img {
  width: 100%;
  height: auto;
  display: block;
}

.weekly-events-title {
  margin: 0 0 0.65rem;
  padding: 0 0.25rem;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.15;
}

.weekly-carousel {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.weekly-carousel-viewport {
  overflow: hidden;
  border-radius: calc(var(--radius) - 6px);
  touch-action: pan-y pinch-zoom;
  background: radial-gradient(ellipse at center, rgba(44, 23, 13, 0.5), rgba(12, 6, 4, 0.94));
  box-shadow: inset 0 0 0 1px rgba(255, 220, 164, 0.06);
}

.weekly-carousel-track {
  display: flex;
  transition: transform 0.42s var(--ease-out);
  will-change: transform;
}

.weekly-carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.weekly-carousel-slide-frame {
  position: relative;
  width: 100%;
  min-height: clamp(228px, 48vw, 460px);
  height: clamp(248px, 52vw, 480px);
  max-height: min(52vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.25rem;
  box-sizing: border-box;
}

.weekly-carousel-slide-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 128%;
  height: 128%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  filter: blur(28px) saturate(1.05);
  opacity: 0.68;
  pointer-events: none;
  user-select: none;
}

.weekly-carousel-slide-main {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.weekly-carousel-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.2rem 0.15rem 0;
  flex-wrap: wrap;
}

.carousel-nav {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(239, 202, 132, 0.28);
  background: rgba(44, 23, 13, 0.68);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.carousel-nav:hover {
  background: rgba(75, 42, 24, 0.88);
  border-color: rgba(239, 202, 132, 0.55);
  color: #fff5e0;
}

.carousel-nav:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 2px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-inline: 0.15rem;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 999px;
  background: rgba(239, 202, 132, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot:hover {
  background: rgba(239, 202, 132, 0.42);
}

.carousel-dot.is-active {
  background: var(--gold-soft);
  transform: scale(1.28);
  box-shadow: 0 0 0 1px rgba(239, 202, 132, 0.35);
}

.carousel-dot:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 2px;
}

.spotlight-figure.hero-weekly-figure {
  margin-top: 2.75rem;
  margin-bottom: 0.15rem;
  padding: 0.55rem 0.5rem 0.62rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.36);
  border-color: rgba(255, 220, 164, 0.11);
}

@media (prefers-reduced-motion: reduce) {
  .weekly-carousel-track {
    transition: none;
  }
  .weekly-carousel-slide-bg {
    filter: blur(12px) saturate(1.02);
    opacity: 0.52;
  }
}

.spotlight-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.5vw, 3.2rem);
  line-height: 1.08;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.02em;
  text-align: center;
}
.spotlight-lede {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
  max-width: 42ch;
  margin-inline: auto;
  text-align: center;
}
.spotlight-tagline {
  margin: 1.25rem 0 0;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  text-align: center;
}

.restaurant-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 220, 164, 0.14);
  box-shadow: var(--shadow-lift);
  background:
    linear-gradient(180deg, rgba(87, 51, 31, 0.25), rgba(43, 22, 13, 0.55)),
    rgba(18, 9, 5, 0.45);
}
.restaurant-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.restaurant-photo-caption {
  margin: 0;
  padding: 0.9rem 1.15rem 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid rgba(255, 220, 164, 0.1);
  background: rgba(12, 6, 4, 0.35);
}

.hero-restaurant-photo {
  margin-top: 0.35rem;
  margin-bottom: 1.35rem;
  max-width: min(100%, 520px);
  margin-inline: auto;
}

.visit-section { padding: 2rem 0 7rem; }
.visit-card {
  text-align: center;
  padding: 2.3rem 1.25rem;
}
.phone-link {
  display: inline-block;
  margin: 1rem 0 0.65rem;
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--gold);
  transition: color 0.2s var(--ease-out), text-shadow 0.2s var(--ease-out);
}
.phone-link:hover {
  color: #f5dcb0;
  text-shadow: 0 0 24px rgba(239, 202, 132, 0.35);
}
.visit-note { margin: 0; color: var(--muted); }

.embers {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.embers span {
  position: absolute;
  bottom: -5vh;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, rgba(255, 180, 92, 0.95), rgba(255, 94, 0, 0.15));
  border-radius: 50%;
  filter: blur(0.3px);
  animation: rise linear infinite;
}
.embers span:nth-child(1) { left: 6%; animation-duration: 11s; animation-delay: -2s; }
.embers span:nth-child(2) { left: 24%; width: 12px; height: 12px; animation-duration: 14s; animation-delay: -7s; }
.embers span:nth-child(3) { left: 48%; animation-duration: 10s; animation-delay: -5s; }
.embers span:nth-child(4) { left: 68%; width: 8px; height: 8px; animation-duration: 12s; animation-delay: -1s; }
.embers span:nth-child(5) { left: 82%; width: 12px; height: 12px; animation-duration: 15s; animation-delay: -4s; }
.embers span:nth-child(6) { left: 92%; animation-duration: 9s; animation-delay: -8s; }

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Keyboard focus & reduced motion */
a:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}
.brand:focus-visible {
  border-radius: 12px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal.visible { transform: none; }
  .embers span { animation: none; opacity: 0; }
  .raccoon-wrap img,
  .raccoon-rider-img,
  .float-card { animation: none; }
  .button:hover,
  .burger-card:hover,
  .quick-card:hover { transform: none; }
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@keyframes rise {
  0% { transform: translateY(0) translateX(0) scale(0.8); opacity: 0; }
  10% { opacity: 0.85; }
  100% { transform: translateY(-110vh) translateX(60px) scale(1.6); opacity: 0; }
}
@keyframes drift {
  0%,100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-12px); }
}
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1040px) {
  .hero,
  .menu-section,
  .burger-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .hero { align-items: start; gap: clamp(1.35rem, 3vw, 2.25rem); }
  .burger-grid article:last-child { grid-column: 1 / -1; }
}

/* Mid-width laptops: keep hero columns from crowding the weekly carousel */
@media (min-width: 641px) and (max-width: 1199px) {
  .hero {
    gap: clamp(1.5rem, 3.2vw, 2.75rem);
  }
  .weekly-carousel-slide-frame {
    min-height: clamp(210px, 40vw, 400px);
    height: clamp(226px, 44vw, 430px);
    max-height: min(46vh, 460px);
  }
  .spotlight-figure.hero-weekly-figure {
    max-width: min(100%, 34rem);
  }
}

@media (max-width: 780px) {
  .topbar { border-radius: 20px; padding: 0.85rem; }
  .nav-links,
  .topbar .button-ghost { display: none; }
  .topbar-social { margin-left: auto; }
  .quick-strip,
  .menu-section,
  .burger-grid,
  .spotlight-grid { grid-template-columns: 1fr; }
  .phone-card { width: min(74%, 290px); }
  .quick-strip {
    margin-top: clamp(-4.25rem, -16vw, -2.5rem);
    padding-top: clamp(1.25rem, 4vw, 2rem);
  }
  .raccoon-wrap { margin-bottom: clamp(-3.25rem, -12vw, -1.75rem); }
  .raccoon-rider-img {
    width: min(98%, 400px);
    max-height: min(52vh, 440px);
  }
  .drinks-cta { flex-direction: column; align-items: flex-start; }
}

/* True small screens: stack hero (copy + art) — laptops/tablets in landscape stay two-column */
@media (max-width: 640px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 1.8rem;
    gap: 1rem;
  }
  .hero h1 { max-width: 9.5ch; }
  .hero-art { gap: 0.35rem; padding-top: 1rem; }
  .hero-copy,
  .hero-art {
    max-width: none;
    width: 100%;
    justify-self: stretch;
    align-self: stretch;
    padding-inline-end: 0;
  }
}

@media (max-width: 520px) {
  .topbar,
  .hero-pricing-stack,
  .hero,
  .quick-strip,
  .board-section,
  .raccoon-rider-strip,
  .menu-section,
  .drinks-cta,
  .spotlight-section,
  .visit-section { width: min(calc(100% - 0.9rem), var(--max)); }
  .hero h1 { font-size: 2.5rem; }
  .section-heading h2,
  .menu-copy h2,
  .drinks-cta h2,
  .spotlight-copy h2,
  .visit-card h2 { font-size: 1.85rem; }
  .weekly-events-title { font-size: 1.2rem; }
  .phone-card { width: 72%; }
  .raccoon-wrap img { width: min(100%, 360px); }
  .quick-card strong { font-size: 1.6rem; }
  .phone-link { font-size: 2rem; }
}

/* Laptop & fullscreen: wider canvas (1024+ — includes 1280×800 / 1366×768) */
@media (min-width: 1024px) {
  :root {
    --max: 1280px;
  }
  .topbar,
  .hero-pricing-stack,
  .hero,
  .quick-strip,
  .board-section,
  .raccoon-rider-strip,
  .menu-section,
  .drinks-cta,
  .spotlight-section,
  .visit-section {
    width: min(calc(100% - 2.5rem), var(--max));
  }

  .topbar {
    margin-top: 1rem;
    padding: 0.88rem 1.35rem;
    gap: 1.15rem;
  }
  .nav-links {
    gap: 1.35rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(2.15rem, 3.4vw, 3.75rem);
    padding: 4.65rem 0 1.5rem;
    align-items: center;
  }
  .hero-copy {
    align-self: center;
    max-width: min(38rem, 100%);
    width: 100%;
    justify-self: center;
    padding-inline: 0.5rem;
  }
  .hero-art {
    align-self: center;
    width: 100%;
    max-width: min(26.5rem, 100%);
    justify-self: center;
  }
  .hero h1 {
    font-size: clamp(2.85rem, 3.2vw + 1rem, 5.25rem);
    max-width: 16ch;
  }
  .lede {
    font-size: 1.08rem;
    max-width: 42ch;
  }
  .hero-restaurant-photo {
    max-width: 100%;
  }

  /* Weekly carousel: use full hero-copy width, taller frame */
  .hero-copy .spotlight-figure.hero-weekly-figure {
    max-width: 100%;
    margin-inline: auto;
    margin-top: 2.5rem;
    padding: 0.58rem 0.55rem 0.65rem;
  }
  .weekly-carousel-slide-frame {
    min-height: clamp(240px, 30vw, 400px);
    height: clamp(256px, 32vw, 430px);
    max-height: min(48vh, 480px);
  }

  .quick-strip {
    margin-top: clamp(-2.2rem, -3.2vw, -0.15rem);
    padding: clamp(1.65rem, 2.2vw, 2.15rem) 0 3.25rem;
    gap: 1.1rem;
  }

  .board-section {
    padding: 1.5rem 0 2.4rem;
  }
  .section-heading {
    max-width: min(48rem, 100%);
    margin-bottom: 1.5rem;
  }

  .burger-grid {
    gap: 1.25rem;
  }
  .burger-card {
    padding: 1.5rem 1.4rem;
  }
  .burger-card h3 {
    font-size: 1.55rem;
  }
  .menu-section {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 1.75rem;
    padding: 2.75rem 0;
    align-items: center;
  }
  .menu-copy {
    padding: 2.25rem 2.5rem;
  }
  .spotlight-section {
    padding: 2.85rem 0 1.35rem;
  }
  .spotlight-grid {
    gap: clamp(2rem, 3vw, 3.25rem);
    align-items: center;
  }
  .drinks-cta {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    gap: 1.25rem;
    padding: 1.65rem 2rem;
  }
  .visit-card {
    padding: 2.5rem 2rem;
  }
  .raccoon-rider-strip {
    padding: 0.65rem 0 1.5rem;
  }
  .raccoon-rider-img {
    width: min(62vw, 680px);
    max-height: min(78vh, 720px);
  }
}

@media (min-width: 1200px) {
  :root {
    --max: 1360px;
  }
  .topbar,
  .hero-pricing-stack,
  .hero,
  .quick-strip,
  .board-section,
  .raccoon-rider-strip,
  .menu-section,
  .drinks-cta,
  .spotlight-section,
  .visit-section {
    width: min(calc(100% - 3rem), var(--max));
  }
  .hero {
    gap: clamp(2.35rem, 3.6vw, 4.1rem);
    padding: 4.85rem 0 1.6rem;
  }
  .hero-copy {
    max-width: min(42rem, 100%);
    padding-inline: 0.65rem;
  }
  .hero-art {
    max-width: min(30rem, 100%);
  }
  .hero-copy .spotlight-figure.hero-weekly-figure {
    max-width: 100%;
    margin-top: 2.65rem;
  }
  .weekly-carousel-slide-frame {
    min-height: clamp(252px, 28vw, 420px);
    height: clamp(268px, 30vw, 450px);
    max-height: min(50vh, 500px);
  }
  .menu-section {
    gap: 2rem;
    padding: 3rem 0;
  }
  .spotlight-grid {
    gap: clamp(2.15rem, 2.8vw, 3.5rem);
  }
}

@media (min-width: 1440px) {
  :root {
    --max: 1520px;
  }
  .topbar,
  .hero-pricing-stack,
  .hero,
  .quick-strip,
  .board-section,
  .raccoon-rider-strip,
  .menu-section,
  .drinks-cta,
  .spotlight-section,
  .visit-section {
    width: min(calc(100% - 3.5rem), var(--max));
  }
  .section-heading {
    max-width: min(52rem, 100%);
    margin-bottom: 1.65rem;
  }
  .hero {
    padding: 5.35rem 0 1.75rem;
    gap: clamp(2.6rem, 3.8vw, 4.75rem);
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }
  .hero-copy {
    max-width: min(44rem, 100%);
    padding-inline: 0.75rem;
  }
  .hero-art {
    max-width: min(32rem, 100%);
  }
  .hero-copy .spotlight-figure.hero-weekly-figure {
    max-width: 100%;
    margin-top: 2.85rem;
    padding: 0.6rem 0.65rem 0.72rem;
  }
  .weekly-carousel-slide-frame {
    min-height: clamp(268px, 26vw, 440px);
    height: clamp(284px, 28vw, 470px);
    max-height: min(52vh, 520px);
  }
  .quick-strip {
    padding: clamp(1.75rem, 2.4vw, 2.35rem) 0 3.4rem;
  }
  .board-section {
    padding: 1.65rem 0 2.65rem;
  }
  .menu-section {
    padding: 3.25rem 0;
    gap: 2.15rem;
  }
  .spotlight-section {
    padding: 3.1rem 0 1.5rem;
  }
  .raccoon-rider-img {
    width: min(58vw, 760px);
    max-height: min(82vh, 780px);
  }
}
