/* ===========================
   Space City BBQ · Lola's Kitchen Template
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700;1,800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #FAFAF8;
  --white: #FFFFFF;
  --accent: #D44F0A;
  --accent-hover: #B83E00;
  --text: #111111;
  --text-2: #666666;
  --text-3: #999999;
  --border: #E8E4DF;
  --card: #FFFFFF;
  --section-alt: #F5F1EC;
  --radius: 14px;
  --radius-lg: 24px;
  --nav-h: 72px;
  --ease: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── UTILITIES ─── */

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.section-py { padding-block: clamp(60px, 8vw, 96px); }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

h3 { font-size: clamp(17px, 2vw, 20px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }
h5 { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 18px; }

em { font-style: italic; }
h1 em, h2 em { color: var(--accent); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  transition: color var(--ease);
}
.link-arrow:hover { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ─── NAV ─── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease);
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}

.brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.brand span { color: var(--accent); }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--text); }

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

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 6px;
  line-height: 0;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  z-index: 99;
  padding: 8px 0 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px clamp(20px, 5vw, 48px);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-2);
  transition: color var(--ease);
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .btn {
  margin: 12px clamp(20px, 5vw, 48px) 0;
  justify-content: center;
}
.mobile-menu .btn-primary { background: var(--accent); color: #fff; }
.mobile-menu .btn-primary:hover { background: var(--accent-hover); color: #fff; }

/* ─── HERO ─── */

.hero {
  padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 80px));
  padding-bottom: clamp(40px, 6vw, 80px);
}

.hero--bg {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 80vh, 820px);
  display: flex;
  align-items: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 130%;
  top: -15%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  will-change: transform;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(10, 8, 6, 0.82) 0%,
    rgba(10, 8, 6, 0.65) 55%,
    rgba(10, 8, 6, 0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
}

.hero-content .hero-cats {
  justify-content: center;
}

.hero--bg .hero-eyebrow .eyebrow,
.hero--bg .label { color: rgba(255,255,255,0.6); }

.hero--bg h1 { color: #fff; }

.hero--bg .lead { color: rgba(255,255,255,0.75); }

.hero--bg .pill {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}
.hero--bg .pill:hover,
.hero--bg .pill:last-child {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: blink 2.4s infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

.hero h1 { margin-bottom: 20px; max-width: 820px; }

.lead {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text-2);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-cats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  margin-right: 4px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: all var(--ease);
}
.pill:hover, .pill:last-child {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ─── SECTION HEADER ─── */

.sec-head h2 { font-size: clamp(24px, 3.5vw, 36px); margin-top: 8px; }

/* ─── CATEGORY GRID ─── */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  background: var(--section-alt);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover img { transform: scale(1.06); }

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 55%);
}

.cat-name {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  pointer-events: none;
}

/* ─── ABOUT ─── */

.about { background: var(--section-alt); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--border);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

.about-inner > div:last-child { display: flex; flex-direction: column; gap: 20px; }
.about-inner p { color: var(--text-2); font-size: 16px; line-height: 1.8; }

/* ─── RECIPE CARDS ─── */

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.recipe-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: box-shadow var(--ease), transform var(--ease);
  cursor: pointer;
}
.recipe-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }

.recipe-card .thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--section-alt);
}
.recipe-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.recipe-card:hover .thumb img { transform: scale(1.07); }

.recipe-card h3 {
  font-size: 17px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  padding: 16px 16px 6px;
}

.recipe-card .meta {
  font-size: 13px;
  color: var(--text-2);
  padding: 0 16px 18px;
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 40px;
}

.star { color: var(--accent); letter-spacing: 1px; }

/* ─── FEATURE CARD ─── */

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.fc-media {
  min-height: 420px;
  overflow: hidden;
  background: var(--section-alt);
}
.fc-media img { width: 100%; height: 100%; object-fit: cover; }

.fc-body {
  padding: clamp(36px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.fc-body h2 { font-size: clamp(22px, 3vw, 34px); }
.fc-body p { color: var(--text-2); font-size: 15px; line-height: 1.75; }

/* ─── REVIEWS ─── */

.reviews { background: var(--section-alt); }

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 160px 1fr;
}

.r-img { overflow: hidden; background: var(--section-alt); }
.r-img img { width: 100%; height: 100%; object-fit: cover; }

.review-card > div:last-child { padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.stars { color: var(--accent); font-size: 14px; letter-spacing: 1px; }
.review-card h4 { font-size: 16px; font-weight: 700; }
.quote { font-size: 14px; color: var(--text-2); line-height: 1.65; font-style: italic; flex: 1; }
.by { font-size: 13px; font-weight: 600; color: var(--text-3); }

/* ─── CTA / SUBSCRIBE ─── */

.cta {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(44px, 6vw, 72px);
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.cta h2 { font-size: clamp(24px, 4vw, 38px); margin-bottom: 14px; }
.cta p { color: var(--text-2); font-size: 16px; margin-bottom: 32px; line-height: 1.65; }

.cta-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }

.cta-form input {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--ease);
}
.cta-form input:focus { border-color: var(--accent); }
.cta-form input::placeholder { color: var(--text-3); }

/* ─── FOOTER ─── */

.footer {
  background: var(--text);
  color: var(--white);
  padding-top: clamp(48px, 6vw, 72px);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer .brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}
.footer .brand span { color: var(--accent); }
.footer .tag { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 22px; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), border-color var(--ease);
}
.socials a:hover { background: var(--accent); border-color: var(--accent); }
.socials svg { width: 17px; height: 17px; fill: rgba(255,255,255,0.6); transition: fill var(--ease); }
.socials a:hover svg { fill: #fff; }

.footer h5 { color: rgba(255,255,255,0.35); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color var(--ease); }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom span { font-size: 14px; color: rgba(255,255,255,0.35); }

.legal { display: flex; gap: 24px; }
.legal a { font-size: 14px; color: rgba(255,255,255,0.35); transition: color var(--ease); }
.legal a:hover { color: rgba(255,255,255,0.6); }

/* ─── ANIMATIONS ─── */

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in-view { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger.in-view > * { opacity: 1; transform: none; }
.stagger.in-view > *:nth-child(1) { transition-delay: 0s; }
.stagger.in-view > *:nth-child(2) { transition-delay: 0.07s; }
.stagger.in-view > *:nth-child(3) { transition-delay: 0.14s; }
.stagger.in-view > *:nth-child(4) { transition-delay: 0.21s; }
.stagger.in-view > *:nth-child(5) { transition-delay: 0.28s; }
.stagger.in-view > *:nth-child(6) { transition-delay: 0.35s; }

/* ─── RESPONSIVE ─── */

@media (max-width: 960px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { grid-template-columns: 1fr; }
  .fc-media { min-height: 280px; aspect-ratio: 16/9; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: unset; height: 480px; }
  .about-img img { object-position: center; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .hamburger { display: flex; }
.cta-form { flex-direction: column; }
  .review-card { grid-template-columns: 1fr; }
  .r-img { aspect-ratio: 16/9; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > div:first-child { grid-column: auto; }
}

@media (max-width: 500px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .recipe-grid { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── GALLERY CARDS ─── */

.recipe-card--gallery h3 { padding-bottom: 20px; }

/* ─── MENU ─── */

.menu-category {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.menu-cat-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-cat-unit {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0;
}

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

.menu-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.menu-item:nth-child(odd) { padding-right: clamp(16px, 3vw, 40px); }
.menu-item:nth-child(even) { padding-left: clamp(16px, 3vw, 40px); border-left: 1px solid var(--border); }

.menu-item-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.menu-item-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.menu-item-price {
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-alt {
  font-weight: 500;
  font-size: 12px;
  color: var(--text-3);
}

.menu-item-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.menu-items--sides {
  grid-template-columns: repeat(3, 1fr);
}
.menu-items--sides .menu-item { padding: 14px 0; }
.menu-items--sides .menu-item:nth-child(odd) { padding-right: 0; }
.menu-items--sides .menu-item:nth-child(even) { padding-left: 0; border-left: none; }
.menu-items--sides .menu-item:nth-child(3n+2),
.menu-items--sides .menu-item:nth-child(3n+3) {
  padding-left: clamp(16px, 3vw, 32px);
  border-left: 1px solid var(--border);
}
.menu-items--sides .menu-item-name { font-size: 14px; }

.menu-category--special {
  background: var(--section-alt);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  margin-top: clamp(48px, 6vw, 72px);
}

.special-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.tag--special {
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
}

.menu-category--special .menu-items { background: transparent; }
.menu-category--special .menu-item { border-bottom-color: rgba(0,0,0,0.08); }
.menu-category--special .menu-item:nth-child(even) { border-left-color: rgba(0,0,0,0.08); }

/* ─── ORDER AHEAD ─── */

.order-section { background: var(--section-alt); }

.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--text-2); line-height: 1.65; }

.order-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.order-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  margin-bottom: 8px;
}

.order-note {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 28px;
}

.order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
}

.form-field input,
.form-field textarea {
  padding: 12px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--ease);
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }

/* ─── VISIT / FIND THE TRUCK ─── */

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.visit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--section-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  color: var(--accent);
}

.visit-card h4 { font-size: 16px; font-weight: 700; }
.visit-card p { font-size: 15px; color: var(--text); line-height: 1.5; }
.visit-sub { font-size: 13px; color: var(--text-2); line-height: 1.6; }

.visit-link { margin-top: auto; padding-top: 8px; }

/* ─── RESPONSIVE: NEW SECTIONS ─── */

@media (max-width: 960px) {
  .menu-items { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd) { padding-right: 0; }
  .menu-item:nth-child(even) { padding-left: 0; border-left: none; }
  .menu-items--sides { grid-template-columns: repeat(2, 1fr); }
  .menu-items--sides .menu-item:nth-child(odd) { padding-right: 0; }
  .menu-items--sides .menu-item:nth-child(even) { padding-left: clamp(16px, 3vw, 32px); border-left: 1px solid var(--border); }
  .order-inner { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .order-form { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .special-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom span { font-size: 12px; }
  .hero-cats { gap: 8px; }
}

@media (max-width: 500px) {
  .menu-items--sides { grid-template-columns: 1fr; }
  .menu-items--sides .menu-item:nth-child(even) { padding-left: 0; border-left: none; }
}

/* ─── GLOBAL BUTTON FIXES ─── */
#sendOrder { width: 100%; justify-content: center; }
