:root {
  --ocean: #079fc8;
  --deep-ocean: #064b78;
  --navy: #08345a;
  --teal: #20c7c9;
  --seafoam: #97eee1;
  --sand: #fff0c8;
  --paper: #fffaf0;
  --sunset: #ff9248;
  --coral: #ff634f;
  --lime: #9bd84a;
  --yellow: #ffd85a;
  --ink: #123049;
  --muted: #587486;
  --white: #ffffff;
  --shadow: rgba(7, 52, 90, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 216, 90, 0.22), transparent 18%),
    radial-gradient(circle at 88% 20%, rgba(32, 199, 201, 0.18), transparent 22%),
    linear-gradient(180deg, #fffaf0 0%, #fff4d8 45%, #e7fbff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    radial-gradient(circle at 20px 20px, rgba(8, 52, 90, 0.16) 2px, transparent 3px),
    linear-gradient(135deg, transparent 44%, rgba(8, 52, 90, 0.08) 45%, rgba(8, 52, 90, 0.08) 46%, transparent 47%);
  background-size: 44px 44px, 90px 90px;
  z-index: -1;
}

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

h1, h2, h3, .nav-brand strong, .big-cta, .pill, .lang, .section-link {
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
}

.topbar {
  align-items: center;
  background: rgba(8, 52, 90, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 4px solid var(--seafoam);
  color: var(--white);
  display: flex;
  height: 78px;
  justify-content: space-between;
  left: 0;
  padding: 0 max(16px, calc((100vw - 1180px) / 2));
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}

.nav-brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.nav-brand img {
  background: var(--white);
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 50%;
  height: 56px;
  object-fit: cover;
  width: 56px;
}

.nav-brand strong,
.nav-brand small { display: block; }

.nav-brand strong {
  font-size: 21px;
  line-height: 0.95;
}

.nav-brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  margin-top: 2px;
  letter-spacing: .04em;
}

.top-actions {
  align-items: center;
  display: flex;
  gap: 8px;
}

.lang, .pill {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 38px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.lang {
  border: 2px solid rgba(255,255,255,.2);
  background: #0c436a;
  color: #d8f7ff;
  cursor: pointer;
  min-width: 42px;
  padding: 0 12px;
}

.lang.active {
  background: var(--sunset);
  border-color: var(--yellow);
  color: var(--white);
}

.pill {
  padding: 0 18px;
}

.pill.ghost {
  background: rgba(255,255,255,.95);
  color: var(--navy);
}

.pill.call {
  background: var(--coral);
  box-shadow: 0 7px 0 rgba(0,0,0,.15);
  color: var(--white);
}

.lang:hover, .pill:hover, .big-cta:hover, .section-link:hover {
  transform: translateY(-2px);
}

.hero-screen {
  min-height: calc(100svh - 78px);
  overflow: hidden;
  padding: 78px max(22px, calc((100vw - 1180px) / 2)) 80px;
  position: relative;
  background:
    radial-gradient(circle at 75% 23%, rgba(255, 216, 90, 0.72), transparent 14%),
    linear-gradient(180deg, #87e3f1 0%, #22bad2 42%, #06a0c6 43%, #0d6897 60%, #ffe6a8 61%, #fff2ca 100%);
}

.hero-screen::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 20%;
  height: 120px;
  background:
    radial-gradient(ellipse at 12% 52%, rgba(255,255,255,.75) 0 20%, transparent 21%),
    radial-gradient(ellipse at 36% 50%, rgba(255,255,255,.75) 0 18%, transparent 19%),
    radial-gradient(ellipse at 62% 52%, rgba(255,255,255,.75) 0 20%, transparent 21%),
    radial-gradient(ellipse at 86% 50%, rgba(255,255,255,.75) 0 18%, transparent 19%);
  opacity: .55;
  animation: waveDrift 9s ease-in-out infinite;
}

.hero-screen::after,
.about-screen::after,
.menu-hero::after {
  background-image: radial-gradient(rgba(0, 52, 90, 0.14) 1px, transparent 1px);
  background-size: 8px 8px;
  content: "";
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  position: absolute;
}

@keyframes waveDrift {
  0%,100% { transform: translateX(0); }
  50% { transform: translateX(60px); }
}

.papel {
  display: flex;
  height: 46px;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.papel span {
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 58%, 0 72%);
  display: block;
  flex: 1;
  min-width: 84px;
}
.papel span:nth-child(5n+1) { background: var(--coral); }
.papel span:nth-child(5n+2) { background: var(--yellow); }
.papel span:nth-child(5n+3) { background: var(--seafoam); }
.papel span:nth-child(5n+4) { background: var(--sunset); }
.papel span:nth-child(5n+5) { background: var(--lime); }

.hero-copy-block {
  max-width: 660px;
  position: relative;
  z-index: 5;
}

.script-note {
  color: var(--deep-ocean);
  font-family: "Pacifico", cursive;
  font-size: 28px;
  line-height: 1;
  margin: 0 0 12px;
  text-shadow: 0 2px rgba(255,255,255,.35);
}

.hero-copy-block h1 {
  color: var(--white);
  font-size: clamp(58px, 8.4vw, 112px);
  font-weight: 800;
  line-height: 0.82;
  margin: 0;
  text-shadow: 0 8px 0 rgba(6,75,120,.14);
  text-transform: uppercase;
}

.hero-copy-block h1 span,
.hero-copy-block h1 mark { display: block; }

.hero-copy-block h1 mark {
  background: transparent;
  color: var(--yellow);
}

.hero-subcopy {
  color: rgba(255, 255, 255, 0.96);
  font-size: 21px;
  font-weight: 850;
  line-height: 1.45;
  margin: 26px 0 22px;
  max-width: 580px;
}

.hero-buttons,
.delivery-screen div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.big-cta, .section-link {
  align-items: center;
  border: 3px solid var(--navy);
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  box-shadow: 0 8px 0 rgba(8, 52, 90, 0.16);
}

.big-cta.dark, .section-link {
  background: var(--coral);
  color: var(--white);
}

.big-cta.light {
  background: var(--yellow);
  color: var(--ink);
}

.logo-sticker {
  background: rgba(255,255,255,.96);
  border: 5px solid var(--navy);
  border-radius: 28px;
  box-shadow: 0 22px 0 rgba(8,52,90,.16);
  padding: 10px;
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2 + 20px));
  top: 104px;
  transform: rotate(5deg);
  width: min(340px, 28vw);
  z-index: 6;
}
.logo-sticker img { border-radius: 20px; }

.feature-card,
.mini-card,
.poster-card,
.menu-hero-card {
  border-radius: 24px;
  overflow: hidden;
}

.feature-card {
  background: var(--navy);
  box-shadow: 0 22px 44px rgba(12, 31, 42, 0.34);
  color: var(--white);
}

.hero-feature {
  bottom: 76px;
  position: absolute;
  right: max(26px, calc((100vw - 1180px) / 2 + 40px));
  width: min(420px, 31vw);
  z-index: 5;
}

.hero-feature img {
  aspect-ratio: 4 / 2.75;
  object-fit: cover;
  width: 100%;
}

.hero-feature div { padding: 18px 22px 22px; }

.hero-feature h2 {
  color: var(--yellow);
  font-size: 32px;
  line-height: 0.95;
  margin: 0 0 8px;
}

.hero-feature p {
  color: rgba(255,255,255,.86);
  font-size: 16px;
  font-weight: 800;
  margin: 0;
}

.badge {
  background: var(--sunset);
  border: 2px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  padding: 8px 12px;
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 2;
}

.mini-card {
  background: var(--white);
  border: 4px solid var(--navy);
  box-shadow: 0 16px 24px var(--shadow);
  color: var(--navy);
  position: absolute;
  width: 150px;
  z-index: 4;
}

.mini-card img {
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  width: 100%;
}

.mini-card b {
  display: block;
  font-size: 17px;
  font-weight: 900;
  line-height: 0.95;
  padding: 10px;
}

.hero-mini-left {
  left: max(18px, calc((100vw - 1180px) / 2 - 40px));
  top: 130px;
  transform: rotate(-8deg);
}
.hero-mini-bottom {
  bottom: 44px;
  left: max(46px, calc((100vw - 1180px) / 2 + 8px));
  transform: rotate(7deg);
}

.float-bubble {
  border: 3px solid rgba(255,255,255,.7);
  border-radius: 50%;
  position: absolute;
  z-index: 2;
}
.b1 { height: 34px; width: 34px; left: 10%; top: 38%; }
.b2 { height: 22px; width: 22px; left: 66%; top: 58%; }
.b3 { height: 46px; width: 46px; right: 8%; top: 46%; }

.js .float-bubble { animation: bob 5s ease-in-out infinite; }
.js .b2 { animation-delay: -1.4s; }
.js .b3 { animation-delay: -2.2s; }
@keyframes bob {
  0%,100% { transform: translateY(0); opacity: .7; }
  50% { transform: translateY(-18px); opacity: 1; }
}

.menu-screen,
.find-screen,
.delivery-screen {
  padding: 88px max(20px, calc((100vw - 1180px) / 2));
}

.section-title {
  margin-bottom: 30px;
}

.section-title h2,
.about-copy h2,
.find-copy h2,
.delivery-screen h2 {
  color: var(--navy);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 800;
  line-height: 0.86;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.section-title span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 850;
}

.section-link {
  margin-top: 18px;
}

.poster-menu-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.poster-card {
  background: var(--navy);
  color: var(--white);
  min-height: 280px;
  position: relative;
  box-shadow: 0 18px 30px rgba(8,52,90,.12);
  transform-style: preserve-3d;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.poster-card:hover {
  box-shadow: 0 26px 44px rgba(8,52,90,.22);
  transform: translateY(-5px) rotate(-1deg);
}

.poster-card::after {
  background: linear-gradient(transparent 30%, rgba(5, 38, 67, 0.92));
  content: "";
  inset: 0;
  position: absolute;
}

.poster-card img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.poster-card div {
  bottom: 0;
  left: 0;
  padding: 24px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.poster-card h3 {
  color: var(--yellow);
  font-size: 34px;
  line-height: .9;
  margin: 0 0 8px;
}

.poster-card p {
  color: rgba(255, 255, 255, 0.91);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
}

.poster-card-big {
  grid-row: span 2;
  min-height: 578px;
}
.poster-card-big h3 { font-size: 50px; }

.about-screen {
  align-items: center;
  background:
    radial-gradient(circle at 90% 16%, rgba(255, 216, 90, 0.36), transparent 24%),
    linear-gradient(120deg, #17bfd0, #087fb0 62%, #075b83);
  display: grid;
  gap: 54px;
  grid-template-columns: 0.88fr 1fr;
  overflow: hidden;
  padding: 96px max(20px, calc((100vw - 1180px) / 2));
  position: relative;
}

.truck-photo-frame,
.about-copy { position: relative; z-index: 2; }

.truck-photo-frame { transform: rotate(-2.5deg); }

.truck-photo-frame img {
  aspect-ratio: 1 / 0.88;
  border: 5px solid var(--navy);
  border-radius: 26px;
  box-shadow: 0 24px 0 rgba(8, 52, 90, 0.15);
  object-fit: cover;
  width: 100%;
}

.about-copy,
.about-copy h2 { color: var(--white); }

.about-copy .script-note { color: #fff0a3; }

.about-copy h2 mark {
  background: transparent;
  color: var(--yellow);
}

.about-copy p {
  font-size: 19px;
  font-weight: 850;
  line-height: 1.58;
  margin: 0 0 20px;
}

.quote {
  color: #fff6b9;
  font-family: "Pacifico", cursive;
  font-size: 24px;
}

.stats-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.stats-row div {
  background: rgba(8,52,90,.92);
  border-radius: 22px;
  box-shadow: 0 10px 0 rgba(8,52,90,.18);
  padding: 18px 20px;
  text-align: center;
}

.stats-row strong,
.stats-row span { display: block; }

.stats-row strong {
  color: var(--yellow);
  font-size: 40px;
  line-height: 1;
}

.stats-row span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 950;
  margin-top: 6px;
}

.find-screen {
  display: grid;
  gap: 44px;
  grid-template-columns: 0.9fr 1fr;
}

.find-copy p {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.4;
  margin: 0 0 32px;
}

.info-stack {
  display: grid;
  gap: 16px;
}

.info-stack a,
.info-stack div {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 2px solid rgba(8, 52, 90, 0.12);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(8, 52, 90, 0.08);
  display: grid;
  gap: 18px;
  grid-template-columns: 54px 1fr;
  padding: 18px;
}

.info-icon {
  align-items: center;
  background: var(--sunset);
  border-radius: 16px;
  color: var(--white);
  display: grid;
  font-weight: 950;
  height: 48px;
  justify-items: center;
  width: 48px;
}

.info-stack small,
.info-stack strong,
.info-stack em { display: block; }

.info-stack small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  margin-bottom: 6px;
}

.info-stack strong {
  color: var(--navy);
  font-size: 29px;
  line-height: 0.95;
}

.info-stack em {
  color: var(--navy);
  font-style: normal;
  font-weight: 750;
  margin-top: 4px;
}

.map-embed {
  border: 0;
  border-radius: 26px;
  box-shadow: -18px 18px 0 rgba(8, 52, 90, 0.08);
  min-height: 590px;
  width: 100%;
}

.delivery-screen {
  background:
    radial-gradient(circle at 87% 18%, rgba(255,255,255,.35), transparent 18%),
    linear-gradient(135deg, var(--yellow), #ffbd72);
  border-top: 5px solid var(--navy);
}

.delivery-screen p {
  font-size: 20px;
  font-weight: 850;
  margin: 0 0 24px;
}

.social-screen {
  background: var(--navy);
  color: var(--white);
  padding: 58px max(20px, calc((100vw - 1180px) / 2));
  text-align: center;
}

.social-screen h2 {
  color: var(--yellow);
  font-size: clamp(42px, 6vw, 72px);
  line-height: .9;
  margin: 0 0 10px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

.social-links a {
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-weight: 950;
  padding: 13px 18px;
}

.footer-bar {
  align-items: center;
  background: #062b49;
  color: var(--white);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 28px max(20px, calc((100vw - 1180px) / 2));
}

.footer-bar strong {
  color: var(--yellow);
  font-size: 22px;
}

.footer-bar span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.footer-bar a {
  color: var(--seafoam);
  font-weight: 950;
}

.mobile-cta { display: none; }

.js .reveal.is-visible {
  animation: revealUp 720ms cubic-bezier(0.19, 1, 0.22, 1) both;
}
@keyframes revealUp {
  from { opacity: 0.35; transform: translateY(38px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Menu page */
.menu-page { background: var(--paper); }

.menu-hero {
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 216, 90, 0.65), transparent 18%),
    linear-gradient(118deg, #ffbd72 0%, #31c8d8 58%, #079fc8 100%);
  overflow: hidden;
  padding: 88px max(20px, calc((100vw - 1180px) / 2)) 72px;
  position: relative;
}

.menu-hero-inner {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 0.75fr;
  position: relative;
  z-index: 2;
}

.menu-hero h1 {
  color: var(--white);
  font-size: clamp(68px, 10vw, 132px);
  line-height: .78;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.menu-hero h1 mark {
  background: transparent;
  color: var(--yellow);
  display: block;
}

.menu-hero p {
  color: rgba(255, 255, 255, 0.96);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.5;
  margin: 0;
}

.menu-hero-card {
  background: var(--navy);
  border: 4px solid rgba(255,255,255,.55);
  box-shadow: 0 26px 44px rgba(8, 52, 90, 0.25);
  color: var(--white);
  transform: rotate(3deg);
}

.menu-hero-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.menu-hero-card div { padding: 20px; }

.menu-hero-card strong {
  color: var(--yellow);
  display: block;
  font-size: 30px;
  line-height: 0.95;
}

.category-nav {
  background: var(--navy);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 14px;
  position: sticky;
  top: 78px;
  z-index: 40;
}

.category-nav a {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  padding: 10px 14px;
}

.full-menu {
  display: grid;
  gap: 24px;
  padding: 70px max(16px, calc((100vw - 1180px) / 2));
}

.menu-category {
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid rgba(8, 52, 90, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(8, 52, 90, 0.06);
  overflow: hidden;
}

.menu-category h2 {
  background: linear-gradient(90deg, var(--yellow), #ffe98c);
  border-bottom: 3px solid var(--navy);
  color: var(--navy);
  font-size: 42px;
  line-height: 0.95;
  margin: 0;
  padding: 18px 22px;
  text-transform: uppercase;
}

.category-photo {
  height: 240px;
  object-fit: cover;
  width: 100%;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-item {
  border-bottom: 1px solid rgba(8, 52, 90, 0.12);
  border-right: 1px solid rgba(8, 52, 90, 0.12);
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  padding: 18px 20px;
}

.menu-item:nth-child(2n) { border-right: 0; }

.menu-item h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.12;
  margin: 0;
}

.menu-item p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
  margin: 0;
}

.menu-item strong {
  color: var(--coral);
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}

.menu-locations {
  background: var(--teal);
  color: var(--white);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 56px max(16px, calc((100vw - 1180px) / 2));
}

.menu-location-card {
  background: var(--navy);
  border-radius: 24px;
  padding: 24px;
}

.menu-location-card h2 {
  color: var(--yellow);
  font-size: 42px;
  line-height: 0.95;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.menu-location-card p {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
  line-height: 1.5;
}

.menu-location-card .big-cta { margin-top: 12px; }

@media (prefers-reduced-motion: reduce) {
  .js .float-bubble,
  .js .reveal.is-visible { animation: none; }
  .poster-card { transition: none; }
}

@media (max-width: 980px) {
  .hero-screen { padding-left: 22px; padding-right: 22px; }
  .hero-feature {
    margin-top: 30px;
    position: relative;
    right: auto;
    bottom: auto;
    width: min(460px, 100%);
  }
  .logo-sticker {
    right: 18px;
    top: 82px;
    width: 180px;
  }
  .mini-card { display: none; }
  .poster-menu-grid,
  .about-screen,
  .find-screen,
  .menu-hero-inner {
    grid-template-columns: 1fr;
  }
  .poster-card-big { min-height: 420px; }
}

@media (max-width: 720px) {
  body { padding-bottom: 62px; }
  .topbar {
    height: 62px;
    padding: 0 10px;
  }
  .nav-brand img {
    height: 42px;
    width: 42px;
  }
  .nav-brand strong { font-size: 14px; }
  .nav-brand small { display: none; }
  .top-actions .pill.ghost:not(.menu-pill) { display: none; }
  .lang {
    min-height: 32px;
    min-width: 34px;
    padding: 0 8px;
  }
  .menu-pill, .pill.call {
    font-size: 12px;
    min-height: 34px;
    padding: 0 11px;
  }
  .hero-screen {
    min-height: auto;
    padding: 62px 14px 44px;
  }
  .papel { height: 34px; }
  .papel span { min-width: 48px; }
  .logo-sticker {
    position: relative;
    right: auto;
    top: auto;
    transform: rotate(0);
    width: 160px;
    margin: 0 0 18px;
  }
  .script-note { font-size: 20px; }
  .hero-copy-block { max-width: 100%; }
  .hero-copy-block h1 { font-size: 48px; }
  .hero-subcopy { font-size: 16px; }
  .big-cta { width: 100%; }
  .hero-feature { width: 100%; }
  .menu-screen,
  .about-screen,
  .find-screen,
  .delivery-screen,
  .social-screen {
    padding: 52px 14px;
  }
  .section-title h2,
  .about-copy h2,
  .find-copy h2,
  .delivery-screen h2 {
    font-size: 46px;
  }
  .poster-menu-grid { gap: 12px; }
  .poster-card,
  .poster-card-big { min-height: 300px; }
  .poster-card h3,
  .poster-card-big h3 { font-size: 31px; }
  .about-copy p,
  .find-copy p,
  .delivery-screen p { font-size: 16px; }
  .stats-row { grid-template-columns: 1fr; }
  .info-stack a,
  .info-stack div {
    grid-template-columns: 42px 1fr;
    padding: 12px;
  }
  .info-icon {
    height: 38px;
    width: 38px;
  }
  .info-stack strong { font-size: 24px; }
  .map-embed { min-height: 360px; }
  .menu-hero { padding: 58px 14px 44px; }
  .menu-hero h1 { font-size: 56px; }
  .category-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 10px;
    top: 62px;
  }
  .category-nav a { flex: 0 0 auto; }
  .full-menu { padding: 38px 12px; }
  .menu-category h2 { font-size: 34px; }
  .category-photo { height: 170px; }
  .menu-items,
  .menu-locations { grid-template-columns: 1fr; }
  .menu-item {
    border-right: 0;
    grid-template-columns: 1fr;
  }
  .footer-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 82px;
  }
  .mobile-cta {
    background: var(--navy);
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    left: 0;
    position: fixed;
    right: 0;
    z-index: 80;
  }
  .mobile-cta a {
    color: var(--white);
    font-size: 14px;
    font-weight: 950;
    padding: 18px 8px;
    text-align: center;
  }
  .mobile-cta a:nth-child(2) { background: var(--coral); }
}
