:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f6f8fc;
  --text: #0f172a;
  --muted: #475569;
  /* Ordering-page inspired green */
  --accent: #00b67a;
  --accent-2: #00a56f;
  --accent-3: #16a34a;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(2, 6, 23, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 182, 122, 0.12) 0, transparent 42%),
    radial-gradient(circle at 92% 8%, rgba(14, 165, 233, 0.12) 0, transparent 36%),
    var(--bg);
  line-height: 1.75;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.promo-strip {
  width: 100%;
  margin: 0 auto;
  padding: 10px 14px;
  border-radius: 0;
  background: rgba(0, 182, 122, 0.1);
  border: 1px solid rgba(0, 182, 122, 0.25);
  color: #0f5132;
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.2);
}

.mobile-only {
  display: none;
}

.hamburger {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  justify-content: flex-end;
  background: rgba(15, 23, 42, 0.28);
}

.mobile-drawer.open {
  display: flex;
}

.mobile-drawer-panel {
  width: min(320px, 86vw);
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: -24px 0 70px rgba(2, 6, 23, 0.14);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: drawerIn 0.22s ease;
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mobile-drawer-brand {
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mobile-drawer-nav {
  display: grid;
  gap: 8px;
  padding-top: 6px;
}

.mobile-drawer-nav a {
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 248, 252, 0.9));
}

.mobile-drawer-cta {
  margin-top: 10px;
}

.mobile-drawer-cta .btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
}

@keyframes drawerIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.logo {
  font-weight: 800;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.desktop-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 500;
}

.desktop-nav a:hover {
  color: var(--text);
}

.btn {
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-solid {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 182, 122, 0.24);
  animation: ctaPulse 3.2s ease-in-out infinite;
}

.btn-solid:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 32px rgba(0, 182, 122, 0.28);
}

.btn-ghost {
  border-color: rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  border-color: rgba(15, 23, 42, 0.26);
}

.hero {
  padding: 98px 0 72px;
}

.hero-grid {
  display: grid;
  gap: 56px;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
}

.hero-copy {
  justify-self: center;
}

.hero-copy p,
.hero-copy h1 {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy .eyebrow {
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 700;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.1;
  margin: 0.25em 0;
}

h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.7rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.hero-copy p {
  color: var(--muted);
  max-width: 58ch;
}

.trust-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.trust-stack span {
  padding: 6px 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  font-size: 0.82rem;
  color: #1f2937;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-card img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  animation: floatImage 6s ease-in-out infinite;
}

.feature-strip {
  padding: 18px 0 48px;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 248, 252, 0.9));
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
}

.feature-card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin: 12px 0 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.section {
  padding: 78px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(246, 248, 252, 0.9), rgba(255, 255, 255, 0.9));
}

.section-head {
  margin-bottom: 26px;
  text-align: center;
}

.section-head .eyebrow {
  display: inline-block;
}

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

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

.menu-tab {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.menu-tab.is-active {
  background: rgba(0, 182, 122, 0.12);
  border-color: rgba(0, 182, 122, 0.35);
}

.menu-section-content {
  margin-bottom: 14px;
}

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.menu-preview-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}

.menu-preview-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.menu-preview-top h4 {
  margin: 0;
  font-size: 0.95rem;
}

.menu-price {
  font-weight: 700;
  color: #0f5132;
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.menu-tag {
  font-size: 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 3px 8px;
  color: #334155;
}

.review-panel {
  background: #e9eaec;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 22px;
}

.menu-card,
.review-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.menu-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 182, 122, 0.32);
}

.menu-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.menu-card-content,
.review-card-content {
  padding: 20px;
}

.menu-card h3,
.review-card h3 {
  margin: 0;
}

.menu-card p,
.review-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.review-card {
  background: #fff;
}

.review-card-content {
  display: grid;
  gap: 10px;
}

.review-stars {
  margin: 0;
  color: #111827;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
}

.review-quote {
  margin: 0;
  color: #1f2937;
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-more {
  font-size: 0.82rem;
  width: fit-content;
}

.review-meta {
  margin: 0;
  display: flex;
  gap: 8px;
  font-size: 0.76rem;
  color: #6b7280;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.review-author h3 {
  font-size: 0.9rem;
  font-weight: 600;
}

.review-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #374151;
}

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

.location-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.location-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 182, 122, 0.26);
}

.location-title {
  margin: 0;
  font-size: 1.25rem;
  font-family: "Playfair Display", Georgia, serif;
}

.location-head-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
}

.location-head-copy {
  min-width: 0;
}

.location-side-logo {
  width: 118px;
  height: 118px;
  object-fit: contain;
  align-self: center;
}

.location-address {
  margin: 10px 0 0;
  color: var(--muted);
}

.location-phone {
  margin: 8px 0 0;
}

.location-phone .footer-link {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.location-status {
  margin: 10px 0 0;
  font-weight: 700;
  color: #0f5132;
}

.location-radius {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.location-map-wrap {
  margin-top: 12px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.location-map {
  width: 100%;
  height: 170px;
  border: 0;
}

.intent-paths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.intent-path-btn {
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  border-radius: 12px;
  padding: 11px 12px;
  text-align: center;
  font-weight: 600;
}

.retention-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.retention-form {
  display: grid;
  gap: 8px;
}

.retention-form input {
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.retention-disclaimer {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.legal-section {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 18px;
}

.legal-section h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  padding: 16px 18px;
  color: var(--text);
  position: relative;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 900;
}

details[open] .faq-question::after {
  content: "-";
}

.faq-answer {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
}

.about-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-grid .about-meta {
  width: 100%;
}

.contact-grid .cta-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-meta {
  display: grid;
  gap: 22px;
}

.about-meta div {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 20px;
}

.about-meta ul {
  margin: 0;
  padding-left: 16px;
}

.cta-box {
  background: linear-gradient(140deg, rgba(0, 182, 122, 0.14) 0, rgba(255, 255, 255, 0.92) 55%, rgba(246, 248, 252, 0.92) 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 44px 34px;
  text-align: center;
}

.cta-box .hero-actions {
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 10px 26px rgba(0, 182, 122, 0.2);
  }
  50% {
    box-shadow: 0 14px 34px rgba(0, 165, 111, 0.32);
  }
}

.site-footer {
  padding: 24px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr auto 0.95fr 0.9fr;
  gap: 18px;
  align-items: start;
  background: #f3f4f6;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  padding: 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: start;
}

.footer-col p {
  margin: 0;
  line-height: 1.45;
}

.footer-brand {
  font-weight: 800;
  margin: 0;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.footer-mid-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-width: 90px;
  margin-top: -8px;
  margin-left: -185px;
}

.brand-logo {
  display: block;
  object-fit: contain;
}

.brand-logo-header {
  width: 42px;
  height: 42px;
}

.brand-logo-drawer {
  width: 34px;
  height: 34px;
}

.brand-logo-footer {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  margin-left: 0;
  position: static;
  transform: none;
  image-rendering: auto;
}

.brand-wordmark {
  line-height: 1.2;
  white-space: nowrap;
}

#footerBrand {
  display: inline;
  position: static;
  padding-right: 0;
  gap: 0;
  white-space: nowrap;
}

.footer-tag {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
}

.footer-address {
  margin: 0;
  color: var(--muted);
}

.footer-col h4 {
  margin: 0 0 2px;
  font-size: 0.95rem;
  color: var(--text);
}

.footer-links {
  display: grid;
  gap: 6px;
}

.footer-link {
  color: var(--muted);
}

.footer-link:hover {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer-bottom {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--muted);
}

.footer-legal-row {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 10px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-legal-link {
  color: var(--muted);
}

.footer-legal-link:hover {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer-bottom-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.footer-bottom-row p {
  margin: 0;
}

.footer-bottom-row p:first-of-type {
  justify-self: center;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
}

.social-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4b5563;
  color: #fff;
}

.social-link:hover {
  transform: translateY(-1px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-powered {
  color: var(--muted);
  font-size: 0.85rem;
  white-space: nowrap;
  justify-self: end;
}

.mobile-order-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 60;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.2);
}

.mobile-order-btn {
  width: auto;
  min-width: 220px;
  display: inline-flex;
  justify-content: center;
  margin: 0 auto;
}

@media (min-width: 901px) {
  .hero-copy,
  .hero-copy p,
  .hero-copy h1,
  .hero-copy .eyebrow {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
}

.order-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 23, 42, 0.36);
}

.order-popup.open {
  display: flex;
}

.hours-modal {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 23, 42, 0.36);
}

.hours-modal.open {
  display: flex;
}

.hours-modal-card {
  position: relative;
  width: min(520px, 100%);
  border-radius: 16px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 20%, rgba(246, 248, 252, 0.98) 100%);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 24px 80px rgba(2, 6, 23, 0.18);
}

.hours-modal-card h3 {
  margin: 0.2em 0 0.4em;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
}

.hours-modal-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
}

.hours-modal-list li {
  margin: 6px 0;
}

.order-popup-card {
  position: relative;
  width: min(460px, 100%);
  border-radius: 16px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 20%, rgba(246, 248, 252, 0.98) 100%);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 24px 80px rgba(2, 6, 23, 0.18);
  animation: popupIn 0.25s ease;
}

.order-popup-card h3 {
  margin: 0.2em 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
}

.order-popup-card p {
  color: var(--muted);
  margin-top: 0;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .nav-actions .btn {
    padding: 10px 14px;
  }

  .nav-actions #orderNowTop {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .menu-grid,
  .review-grid,
  .feature-grid,
  .locations-grid,
  .menu-preview-grid,
  .retention-box,
  .intent-paths {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 58px 0 50px;
  }

  .location-head-row {
    grid-template-columns: 1fr;
  }

  .location-side-logo {
    width: 92px;
    height: 92px;
    justify-self: end;
  }

  .section {
    padding: 56px 0;
  }

  .menu-grid,
  .review-grid,
  .feature-grid {
    gap: 18px;
  }

  .review-panel {
    padding: 14px;
  }

  .hero-copy {
    text-align: center;
  }

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

  .hero-copy h1 {
    font-size: clamp(1.85rem, 8.8vw, 2.35rem);
    line-height: 1.08;
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .promo-strip {
    margin-top: 8px;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .trust-stack {
    justify-content: center;
  }

  .menu-card img {
    height: 190px;
  }

  .feature-grid article,
  .menu-card-content,
  .review-card-content {
    padding: 16px;
  }

  .btn-solid {
    animation-duration: 3.8s;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .footer-mid-logo-wrap {
    display: flex;
    order: -1;
    justify-content: center;
    align-self: center;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 8px;
  }


  .footer-col {
    align-items: center;
    text-align: center;
  }

  .footer-tag,
  .footer-address {
    text-align: center;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-question::after {
    right: 14px;
  }

  .footer-legal-row {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
    justify-self: center;
  }

  .order-popup {
    align-items: center;
    padding: 8px;
    padding-bottom: 8px;
  }
}

@media (max-width: 900px) {
  body.has-mobile-order-bar {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
