:root {
  --bg: #f1f5f9;
  --ink: #111a2d;
  --muted: #5a6475;
  --accent: #02ab83;
  --accent-soft: rgba(2, 171, 131, 0.12);
  --card: #ffffff;
  --shadow: 0 20px 60px rgba(17, 26, 45, 0.14);
  --radius: 24px;
  --heading-font: 'Archivo Black', 'Montserrat', system-ui, -apple-system, sans-serif;
  --body-font: 'Montserrat', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background: radial-gradient(circle at 15% 10%, rgba(2, 171, 131, 0.08), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(17, 26, 45, 0.08), transparent 45%),
    linear-gradient(140deg, #f1f5f9, #e7eef5 60%, #dfe7f0);
  min-height: 100vh;
}

body[data-color-mode="dark"] {
  --ink: #f1f5f9;
  --muted: rgba(241, 245, 249, 0.72);
  --card: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  background: #111a2d;
  color: var(--ink);
}

body[data-color-mode="light"] {
  --ink: #111a2d;
  --muted: rgba(17, 26, 45, 0.64);
  --card: rgba(255, 255, 255, 0.78);
  --shadow: 0 22px 58px rgba(17, 26, 45, 0.14);
  background: radial-gradient(circle at 15% 10%, rgba(2, 171, 131, 0.08), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(17, 26, 45, 0.06), transparent 55%),
    linear-gradient(140deg, #ffffff, #f1f5f9 65%, #eef4fa);
  color: var(--ink);
}

body[data-view="landing"][data-theme][data-color-mode="dark"] {
  --ink: #f1f5f9;
  --muted: rgba(241, 245, 249, 0.72);
  --card: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  background: #111a2d;
  color: var(--ink);
}

body[data-view="landing"][data-theme][data-color-mode="light"] {
  --ink: #111a2d;
  --muted: rgba(17, 26, 45, 0.64);
  --card: rgba(255, 255, 255, 0.78);
  --shadow: 0 22px 58px rgba(17, 26, 45, 0.14);
  background: radial-gradient(circle at 15% 10%, rgba(2, 171, 131, 0.08), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(17, 26, 45, 0.06), transparent 55%),
    linear-gradient(140deg, #ffffff, #f1f5f9 65%, #eef4fa);
  color: var(--ink);
}

body[data-view="landing"] #app {
  position: relative;
  z-index: 1;
}

body[data-view="landing"] .landing-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

body[data-view="landing"] .landing-bg-icon {
  position: absolute;
  opacity: 0.11;
  filter: blur(2px);
  transform: translate3d(0, 0, 0);
  transform-origin: center;
  will-change: transform;
  user-select: none;
}

body[data-view="landing"][data-color-mode="dark"] .landing-bg-icon {
  opacity: 0.08;
  filter: blur(2.3px);
}

@media (prefers-reduced-motion: reduce) {
  body[data-view="landing"] .landing-bg-icon {
    transform: none !important;
  }
}

@media (max-width: 720px) {
  body[data-view="landing"] .landing-bg-icon {
    opacity: 0.09;
    filter: blur(1.4px);
  }

  body[data-view="landing"][data-color-mode="dark"] .landing-bg-icon {
    opacity: 0.075;
    filter: blur(1.7px);
  }

  body[data-view="landing"] .landing-bg-icon[data-hide-mobile="1"] {
    display: none;
  }
}

.no-scroll {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}

/* Skeletons */
.skeleton {
  position: relative;
  overflow: hidden;
  background: #e9eef3;
  border-radius: 12px;
}
.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: translateX(-100%);
  animation: shimmer 1.4s ease-in-out infinite;
}
@keyframes shimmer {
  100% { transform: translateX(100%); }
}
.skeleton-hero {
  padding: 18px 10vw;
  display: grid;
  gap: 10px;
}
.skeleton-hero .hero-title { height: 26px; width: 260px; }
.skeleton-hero .hero-sub { height: 18px; width: 340px; }
.skeleton-hero .hero-chip { height: 34px; width: 180px; border-radius: 999px; }
.skeleton-grid {
  padding: 0 10vw 30px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.skeleton-card {
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(17, 26, 45, 0.08);
  background: #fff;
  display: grid;
  gap: 10px;
}
.skeleton-card .card-img { height: 160px; border-radius: 18px; }
.skeleton-card .card-title { height: 18px; width: 70%; }
.skeleton-card .card-text { height: 14px; width: 55%; }
.skeleton-card .card-btn { height: 38px; width: 60%; border-radius: 12px; }

h1, h2, h3 {
  font-family: var(--heading-font);
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.6;
}

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

.header {
  padding: 40px 10vw 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

body[data-view="landing"] .header {
  justify-content: center;
  padding: 30px 10vw 10px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body[data-view="landing"] .brand {
  align-items: center;
  text-align: center;
  width: 100%;
}

body[data-view="landing"] .brand .label,
body[data-view="landing"] #restaurant-tagline {
  display: none;
}

body[data-view="landing"] #restaurant-title {
  display: none;
}

body[data-view="landing"] .brand-logo {
  width: 86px;
  height: 86px;
  max-height: none;
  max-width: 100%;
  object-fit: contain;
  filter: none;
}

body[data-view="restaurant"] #restaurant-title,
body[data-view="restaurant"] #restaurant-tagline {
  display: none;
}

body[data-view="restaurant"] .header {
  justify-content: center;
  padding: 24px 10vw 16px;
}

body[data-view="restaurant"] .brand {
  align-items: center;
  text-align: center;
}

body[data-view="restaurant"] .brand .label {
  display: none;
}

body[data-view="restaurant"] .brand-logo {
  width: 82px;
  height: 82px;
  max-height: none;
  border-radius: 50%;
  background: var(--card);
  padding: 10px;
  box-shadow: var(--shadow);
}

.brand-logo {
  width: 120px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.brand .label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  color: var(--muted);
}

.hero {
  padding: 0 10vw 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

body[data-view="restaurant"] .hero {
  padding-top: 14px;
  padding-bottom: 26px;
}

.landing-hero {
  padding: 0 10vw 26px;
}

body[data-view="landing"] .section {
  padding: 0 10vw 42px;
}

.landing-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(241, 245, 249, 0.22);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  color: rgba(241, 245, 249, 0.86);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.landing-headline {
  margin-top: 12px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-family: var(--body-font);
  font-weight: 700;
}

.landing-headline-accent {
  color: var(--accent);
  font-family: var(--body-font);
  font-style: italic;
  font-weight: 700;
}

.landing-subhead {
  margin-top: 10px;
  max-width: 62ch;
  color: rgba(241, 245, 249, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.landing-subpoints {
  margin-top: 10px;
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
  max-width: 62ch;
  text-align: left;
}

.landing-subpoints li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: rgba(241, 245, 249, 0.72);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.landing-benefits {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
  max-width: 62ch;
}

.landing-benefits li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: rgba(241, 245, 249, 0.92);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.landing-benefits .dot,
.landing-subpoints .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 10px 30px rgba(2, 171, 131, 0.24);
  flex: 0 0 auto;
  transform: translateY(1px);
}

.landing-actions {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  width: min(420px, 100%);
}

.landing-btn {
  display: block;
  text-align: center;
  padding: 14px 16px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.landing-btn.primary {
  background: linear-gradient(140deg, rgba(2, 171, 131, 0.95), rgba(2, 171, 131, 0.7));
  color: #ffffff;
  box-shadow: 0 18px 50px rgba(2, 171, 131, 0.22);
}

.landing-btn.outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(241, 245, 249, 0.26);
  color: rgba(241, 245, 249, 0.92);
}

.landing-btn:hover {
  transform: translateY(-2px);
}

.landing-btn.primary:hover {
  background: linear-gradient(140deg, rgba(2, 171, 131, 0.98), rgba(2, 171, 131, 0.76));
}

.landing-btn.outline:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(2, 171, 131, 0.45);
}

.landing-btn.disabled {
  opacity: 0.55;
  pointer-events: none;
  box-shadow: none;
}

.landing-link {
  display: inline-flex;
  margin-top: 12px;
  color: rgba(241, 245, 249, 0.76);
  font-weight: 700;
  text-decoration: none;
}

.sources-inline {
  max-width: 980px;
  margin: 12px auto 0;
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

body[data-view="landing"][data-color-mode="light"] .sources-inline a {
  color: rgba(17, 26, 45, 0.9);
}

body[data-view="landing"][data-color-mode="dark"] .sources-inline a {
  color: rgba(241, 245, 249, 0.92);
}

.landing-link:hover {
  color: rgba(241, 245, 249, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(2, 171, 131, 0.7);
}

body[data-view="landing"][data-color-mode="light"] .landing-kicker {
  border-color: rgba(17, 26, 45, 0.12);
  background: rgba(17, 26, 45, 0.03);
  color: rgba(17, 26, 45, 0.72);
}

body[data-view="landing"][data-color-mode="light"] .landing-subhead {
  color: rgba(17, 26, 45, 0.7);
}

body[data-view="landing"][data-color-mode="light"] .landing-subpoints li {
  color: rgba(17, 26, 45, 0.7);
}

body[data-view="landing"][data-color-mode="light"] .landing-benefits li {
  color: rgba(17, 26, 45, 0.9);
}

body[data-view="landing"][data-color-mode="light"] .landing-btn.outline {
  background: rgba(17, 26, 45, 0.03);
  border-color: rgba(17, 26, 45, 0.14);
  color: rgba(17, 26, 45, 0.9);
}

body[data-view="landing"][data-color-mode="light"] .landing-btn.outline:hover {
  background: rgba(17, 26, 45, 0.05);
  border-color: rgba(2, 171, 131, 0.4);
}

body[data-view="landing"][data-color-mode="light"] .landing-link {
  color: rgba(17, 26, 45, 0.7);
}

body[data-view="landing"][data-color-mode="light"] .landing-link:hover {
  color: rgba(17, 26, 45, 0.88);
}

body[data-view="landing"][data-color-mode="light"] .stat-card,
body[data-view="landing"][data-color-mode="light"] .landing-service,
body[data-view="landing"][data-color-mode="light"] .landing-faq-item,
body[data-view="landing"][data-color-mode="light"] .landing-footer-card {
  border-color: rgba(17, 26, 45, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

body[data-view="landing"][data-color-mode="light"] .stat-label,
body[data-view="landing"][data-color-mode="light"] .landing-service p {
  color: rgba(17, 26, 45, 0.66);
}

body[data-view="landing"][data-color-mode="light"] .landing-faq-item summary {
  color: rgba(17, 26, 45, 0.92);
}

body[data-view="landing"][data-color-mode="light"] .landing-faq-answer {
  color: rgba(17, 26, 45, 0.68);
}

body[data-view="landing"][data-color-mode="light"] .landing-footer-meta,
body[data-view="landing"][data-color-mode="light"] .landing-footer-meta a {
  color: rgba(17, 26, 45, 0.7);
}

.restaurant-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

body[data-view="restaurant"] .restaurant-title-row h1 {
  margin-bottom: 0;
}

body[data-view="restaurant"] .restaurant-tagline {
  margin-top: 10px;
  margin-bottom: 0;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

body[data-view="restaurant"] .hero-card {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border: none;
  overflow: visible;
}

body[data-view="landing"] .hero-card {
  border: 1px solid rgba(241, 245, 249, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: var(--accent-soft);
  border-radius: 50%;
  top: -60px;
  right: -70px;
}

.hero-card.compact {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

body[data-view="restaurant"] .hero-card {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.hero-card.compact::after {
  display: none;
}

.hero-card h1 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 16px;
}

.hero-card h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  margin-bottom: 16px;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

body[data-view="landing"] .hero-card p {
  color: rgba(241, 245, 249, 0.78);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.stats-grid {
  scroll-margin-top: 20px;
}

body[data-view="landing"] .stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.stat-card {
  border-radius: 18px;
  border: 1px solid rgba(241, 245, 249, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  padding: 18px 18px 16px;
  display: grid;
  gap: 8px;
}

body[data-view="landing"] .stat-card {
  border-radius: 22px;
  padding: 14px 14px;
  display: grid;
  grid-template-columns: minmax(92px, 120px) 1fr;
  align-items: center;
  gap: 0 14px;
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.02em;
}

body[data-view="landing"] .stat-number {
  font-size: 28px;
  color: var(--accent);
}

.stat-label {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(241, 245, 249, 0.78);
}

body[data-view="landing"] .stat-label {
  font-size: 12px;
  color: rgba(241, 245, 249, 0.72);
}

.stat-label strong {
  color: var(--accent);
  font-weight: 700;
}

body[data-view="landing"] .landing-service-list {
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 520px) {
  body[data-view="landing"] .stats-grid {
    grid-template-columns: 1fr;
  }

  .landing-service-text {
    gap: 6px;
  }
}

.landing-service-list {
  display: grid;
  gap: 14px;
}

.landing-service {
  border-radius: 24px;
  border: 1px solid rgba(241, 245, 249, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.landing-service-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.landing-service h3 {
  font-size: 17px;
  margin-bottom: 0;
  line-height: 1.25;
  min-width: 0;
}

.landing-service p {
  color: rgba(241, 245, 249, 0.72);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
  min-width: 0;
}

.landing-service-arrow {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(241, 245, 249, 0.16);
  display: grid;
  place-items: center;
  color: rgba(241, 245, 249, 0.88);
  flex: 0 0 40px;
}

.landing-service.is-link {
  cursor: pointer;
}

.landing-service.is-link:hover {
  border-color: rgba(2, 171, 131, 0.45);
}

.landing-faq {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.landing-faq-item {
  border-radius: 24px;
  border: 1px solid rgba(241, 245, 249, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  padding: 0;
  overflow: hidden;
}

.landing-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 800;
  color: rgba(241, 245, 249, 0.92);
}

.landing-faq-item summary::-webkit-details-marker {
  display: none;
}

.landing-faq-answer {
  padding: 0 18px 16px;
  color: rgba(241, 245, 249, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

body[data-view="landing"] .landing-faq-item[open] {
  border-color: rgba(2, 171, 131, 0.45);
  box-shadow: 0 0 0 1px rgba(2, 171, 131, 0.12);
}

body[data-view="landing"] .landing-faq-item[open] summary {
  box-shadow: inset 0 1px 0 0 rgba(2, 171, 131, 0.5),
    inset 1px 0 0 0 rgba(2, 171, 131, 0.5),
    inset -1px 0 0 0 rgba(2, 171, 131, 0.5);
  border-radius: 24px 24px 0 0;
}

.landing-cta {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(241, 245, 249, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  padding: 26px 22px;
}

.landing-cta h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 10px;
}

body[data-view="landing"] .landing-cta .muted {
  color: rgba(241, 245, 249, 0.72);
}

body[data-view="landing"] .footer {
  display: none;
}

.landing-footer {
  padding: 0 10vw 56px;
}

.landing-footer-card {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(241, 245, 249, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  padding: 18px 18px;
  display: grid;
  gap: 14px;
}

.landing-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.landing-footer-pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(241, 245, 249, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(241, 245, 249, 0.92);
  font-weight: 800;
  letter-spacing: 0.02em;
}

body[data-view="landing"][data-color-mode="light"] .landing-footer-pill {
  border-color: rgba(17, 26, 45, 0.14);
  background: rgba(17, 26, 45, 0.04);
  color: rgba(17, 26, 45, 0.92);
}

.landing-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(241, 245, 249, 0.72);
  font-size: 13px;
  align-items: center;
}

.landing-footer-meta a {
  color: rgba(241, 245, 249, 0.88);
  text-decoration: none;
}

.landing-footer-meta a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(2, 171, 131, 0.7);
}

.sources {
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(241, 245, 249, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
}

.sources summary {
  cursor: pointer;
  font-weight: 700;
  color: rgba(241, 245, 249, 0.86);
}

.sources ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(241, 245, 249, 0.78);
}

.sources a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(241, 245, 249, 0.35);
}

.sources a:hover {
  text-decoration-color: rgba(2, 171, 131, 0.7);
}

.search {
  display: flex;
  gap: 12px;
  width: min(420px, 100%);
}

.search.compact {
  width: min(320px, 100%);
  gap: 10px;
}

.search.compact input {
  padding: 12px 14px;
}

.search.compact button {
  padding: 10px 14px;
}

.search.inline {
  width: min(320px, 100%);
  gap: 10px;
}

.search.inline input {
  padding: 10px 12px;
  font-size: 15px;
}

.search.inline button {
  padding: 10px 12px;
  font-size: 14px;
}

.search input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #eadfd3;
  font-size: 16px;
}

.search button {
  padding: 12px 16px;
  white-space: nowrap;
}

.search-filters {
  margin-top: 10px;
}

.filter-chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 2px;
  scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  border: 1px solid rgba(17, 26, 45, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.filter-chip:hover {
  transform: translateY(-1px);
}

.filter-chip.active {
  background: rgba(2, 171, 131, 0.16);
  border-color: rgba(2, 171, 131, 0.4);
}

.button {
  padding: 12px 18px;
  border-radius: 14px;
  border: none;
  background: var(--accent);
  color: var(--accent-contrast, white);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 26px rgba(17, 26, 45, 0.14);
}

body[data-view="landing"] .button {
  box-shadow: 0 10px 26px rgba(2, 171, 131, 0.28);
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

body[data-view="landing"] .button.secondary {
  color: rgba(241, 245, 249, 0.92);
  border-color: rgba(241, 245, 249, 0.35);
}

.button.disabled {
  opacity: 0.55;
  pointer-events: none;
  box-shadow: none;
}

.button:hover {
  transform: translateY(-2px);
}

.hero-visual {
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 0 10vw 60px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 24px;
}

.section-header .tag:empty {
  display: none;
}

body[data-view="landing"] .section-header {
  max-width: 980px;
  margin: 0 auto 18px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.section-header h2 {
  font-size: clamp(24px, 3vw, 36px);
}

body[data-view="restaurant"] .section-header h2 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-carousel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}

.menu-track {
  display: flex;
  gap: 14px;
  min-height: 1px;
  --menu-card-width: 260px;
  --menu-card-height: 380px;
  --menu-card-min-height: 320px;
}

.menu-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: var(--menu-card-min-height);
  cursor: pointer;
  flex: 0 0 var(--menu-card-width);
  width: var(--menu-card-width);
  position: relative;
}

body[data-view="restaurant"] .menu-card {
  height: var(--menu-card-height);
}

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

.menu-card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
}

.menu-card-content .tags {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  min-height: 26px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.menu-card-content .tags::-webkit-scrollbar {
  display: none;
}

.menu-card-content h3 {
  font-size: 20px;
  line-height: 1.15;
  min-height: 2.3em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.menu-card-content p {
  color: var(--muted);
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-height: 1.4em;
}

.menu-card-details {
  display: grid;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
}

.menu-card-line {
  display: flex;
  gap: 6px;
  align-items: baseline;
}

.menu-card-label {
  font-weight: 600;
  white-space: nowrap;
}

.menu-card-value {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 10px;
}

.menu-card-footer .button {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.1;
}

.category-block {
  margin-bottom: 32px;
}

.category-title {
  font-size: 22px;
  margin: 16px 0 12px;
}

.specials-section .section-header {
  margin-bottom: 6px;
}

.specials-block {
  margin-bottom: 12px;
}

body[data-view="restaurant"] .category-title {
  font-size: 20px;
  margin: 12px 0 10px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--accent);
  font-weight: 700;
}

.price {
  font-weight: 600;
  font-size: 18px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(31, 27, 22, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

body[data-view="landing"][data-color-mode="dark"] .tag {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(241, 245, 249, 0.86);
}

body[data-view="landing"][data-color-mode="light"] .tag {
  background: rgba(17, 26, 45, 0.06);
  color: rgba(17, 26, 45, 0.72);
}

@media (max-width: 540px) {
  .menu-track {
    --menu-card-width: 220px;
    --menu-card-height: 360px;
    --menu-card-min-height: 300px;
  }
  .menu-card img {
    height: 132px;
  }
  .hero-card {
    padding: 18px;
  }
  .search.inline {
    width: 100%;
  }

  body[data-view="restaurant"] .restaurant-tagline {
    display: none;
  }

  .sales-step {
    flex-direction: column;
  }

  .sales-step-number {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
}

.lang-switch {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  background: var(--card);
  border: 1px solid rgba(17, 26, 45, 0.08);
  border-radius: 14px;
  padding: 6px 8px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mode-toggle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.12);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  padding: 0;
}

body[data-view="landing"][data-color-mode="dark"] .mode-toggle {
  border-color: rgba(241, 245, 249, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(241, 245, 249, 0.92);
}

.mode-toggle svg {
  width: 18px;
  height: 18px;
}

.mode-toggle-wrap {
  display: flex;
  align-items: center;
}

body.modal-open .lang-switch,
body.modal-open .mode-toggle-wrap,
body.modal-open .mode-toggle {
  display: none !important;
}

.action-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-card.sales .action-row {
  margin-top: 16px;
}

.sales-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.sales-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

body[data-view="landing"] .sales-card {
  border: 1px solid rgba(241, 245, 249, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.sales-card h3 {
  font-size: 18px;
}

.sales-card p {
  color: var(--muted);
  font-size: 14px;
}

.sales-steps {
  display: grid;
  gap: 14px;
}

.sales-step {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

body[data-view="landing"] .sales-step {
  border: 1px solid rgba(241, 245, 249, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.sales-step-number {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
}

.sales-step h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.sales-step p {
  color: var(--muted);
  font-size: 14px;
}

.feedback {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

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

.feedback input {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #eadfd3;
  font-size: 15px;
  font-family: var(--body-font);
}

.feedback-stars {
  display: flex;
  gap: 8px;
}

.star {
  font-size: 22px;
  cursor: pointer;
  color: #d1c5b9;
}

.star.active {
  color: #f2a93b;
}

.resto-info {
  margin-top: 22px;
  padding: 0 10vw 44px;
}

.resto-info-inner {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 26, 45, 0.12);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 12px;
  text-align: center;
}

.resto-info-hours {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-align: center;
}

.resto-info-hours-title {
  font-family: var(--heading-font);
  font-size: 16px;
  margin-bottom: 6px;
}

.resto-info-hours-text {
  margin: 0;
  white-space: pre-wrap;
  font-family: var(--body-font);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.resto-info-hours:hover .resto-info-hours-text {
  text-decoration: underline;
}

.resto-info-title {
  font-size: 18px;
  margin-top: 0;
}

.resto-info-text {
  white-space: pre-wrap;
  font-family: var(--body-font);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.resto-info-addresses {
  display: grid;
  gap: 14px;
  margin-top: 2px;
}

.resto-info-address {
  display: grid;
  gap: 6px;
}

.resto-info-address-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
  font-weight: 800;
  color: var(--muted);
}

.resto-info-address-text {
  color: inherit;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

.resto-info-address-text:hover {
  text-decoration: underline;
}

.resto-info-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 0;
}

.resto-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(17, 26, 45, 0.16);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

a.resto-info-icon {
  text-decoration: none;
}

.resto-info-icon svg {
  width: 24px;
  height: 24px;
}

.resto-info-icon:hover {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(17, 26, 45, 0.24);
  transform: translateY(-1px);
}

.resto-info-summary {
  margin: 2px auto 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
}

a.resto-info-summary:hover {
  text-decoration: underline;
}

.resto-info-pill {
  margin: 6px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 45, 0.12);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.resto-info-map {
  margin-top: 8px;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(17, 26, 45, 0.12);
  background: rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
}

.map-reset-control {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(17, 26, 45, 0.12);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: none;
}

.map-reset-control:hover {
  background: rgba(255, 255, 255, 0.92);
}

.map-reset-control:focus-visible {
  outline: 2px solid rgba(2, 171, 131, 0.5);
  outline-offset: 2px;
}

@media (max-width: 540px) {
  .resto-info {
    padding: 0 6vw 36px;
  }
  .resto-info-inner {
    padding: 14px;
    gap: 10px;
  }
  .resto-info-map {
    height: 200px;
  }
}

.resto-map {
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.resto-location-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.resto-location-row {
  background: var(--card);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.resto-location-title {
  font-weight: 700;
}

.resto-location-address {
  flex: 1 1 240px;
  min-width: 0;
  font-size: 14px;
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: var(--accent-contrast);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.resto-hours {
  margin-top: 18px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.resto-hours-title {
  font-size: 18px;
}

.resto-hours-text {
  margin: 10px 0 0;
  white-space: pre-wrap;
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--muted);
}

.resto-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.icon-link {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 14px 14px;
  min-width: 120px;
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 26, 45, 0.08);
  cursor: pointer;
}

.icon-link svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.icon-link span {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card {
  width: min(560px, 100%);
}

.info-content {
  display: grid;
  gap: 12px;
  max-height: min(60vh, 520px);
  overflow: auto;
}

.info-pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--muted);
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-row {
  background: rgba(2, 171, 131, 0.08);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.info-row-title {
  font-weight: 700;
}

.info-row-sub {
  flex: 1 1 100%;
  font-size: 13px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 10;
}

#menu-modal {
  z-index: 20;
}

#model-modal {
  z-index: 30;
}

.modal.active {
  display: flex;
}

.modal-card {
  background: var(--card);
  color: var(--ink);
  border-radius: 24px;
  padding: 20px;
  width: min(640px, 94vw);
  box-shadow: var(--shadow);
  position: relative;
}

.review-card {
  width: min(420px, 100%);
  display: grid;
  gap: 16px;
  text-align: center;
}

.review-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.review-modal input {
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #eadfd3;
  font-size: 15px;
  font-family: var(--body-font);
}

.modal-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
}

.modal-card h2,
.modal-card h4,
.modal-card h5 {
  color: var(--ink);
}

body[data-view="restaurant"] .hero {
  padding-top: 72px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.menu-modal-card {
  width: min(720px, 96vw);
}

.ar-slot-button {
  border: none;
  background: var(--accent);
  color: var(--accent-contrast);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(17, 26, 45, 0.18);
}

model-viewer .ar-slot-button {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.menu-modal-body {
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr;
  gap: 18px;
  align-items: flex-start;
}

.menu-modal-body > img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .menu-modal-card {
    width: min(840px, 88vw);
  }
  .menu-modal-body {
    grid-template-columns: minmax(320px, 380px) 1fr;
    gap: 24px;
  }
  .menu-modal-body > img {
    max-height: 420px;
    object-fit: contain;
  }
}

.menu-modal-content {
  display: grid;
  gap: 12px;
  color: var(--ink);
}

.menu-modal-details {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
}

.menu-modal-line {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.menu-modal-label {
  font-weight: 700;
  white-space: nowrap;
  color: var(--ink);
}

.menu-modal-value {
  flex: 1;
  min-width: 0;
}

.menu-modal-content p {
  color: var(--muted);
}

.menu-modal-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-upsell {
  display: grid;
  gap: 10px;
}

.menu-upsell-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-upsell-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.menu-upsell-track::-webkit-scrollbar {
  display: none;
}

.menu-upsell-card {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(17, 26, 45, 0.08);
  background: var(--card);
  border-radius: 18px;
  padding: 10px 12px;
  min-width: 210px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--body-font);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.menu-upsell-card:hover {
  transform: translateY(-1px);
  border-color: rgba(2, 171, 131, 0.4);
  box-shadow: 0 12px 30px rgba(17, 26, 45, 0.12);
}

.menu-upsell-card:focus-visible {
  outline: 2px solid rgba(2, 171, 131, 0.45);
  outline-offset: 2px;
}

.menu-upsell-thumb {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(17, 26, 45, 0.06);
}

.menu-upsell-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.menu-upsell-name {
  font-weight: 800;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-upsell-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.empty-state {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  text-align: center;
  color: var(--muted);
}

.hidden {
  display: none;
}

.footer {
  padding: 24px 10vw 40px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .header {
    padding: 32px 6vw 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  body[data-view="landing"] .header {
    padding: 26px 6vw 10px;
    align-items: center;
  }

  .landing-hero {
    padding: 12px 6vw 34px;
  }

  body[data-view="landing"] .section {
    padding: 0 6vw 38px;
  }

  .landing-hero-inner {
    text-align: center;
  }

  body[data-view="landing"] .landing-kicker {
    padding: 7px 14px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .landing-subhead {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-subpoints {
    margin-top: 14px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }

  .landing-actions {
    margin-top: 22px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 360px;
    gap: 14px;
  }

  body[data-view="landing"] .landing-btn {
    padding: 13px 16px;
  }

  body[data-view="landing"] .landing-btn.outline {
    display: inline-flex;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    justify-self: center;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(2, 171, 131, 0.55);
    text-underline-offset: 4px;
  }

  body[data-view="landing"][data-color-mode="light"] .landing-btn.outline,
  body[data-view="landing"][data-color-mode="light"] .landing-btn.outline:hover {
    background: transparent;
    border-color: transparent;
    color: rgba(17, 26, 45, 0.76);
    transform: none;
  }

  body[data-view="landing"][data-color-mode="dark"] .landing-btn.outline,
  body[data-view="landing"][data-color-mode="dark"] .landing-btn.outline:hover {
    background: transparent;
    border-color: transparent;
    color: rgba(241, 245, 249, 0.78);
    transform: none;
  }

  .landing-footer {
    padding: 0 6vw 48px;
  }

  body[data-view="restaurant"] .header {
    padding: 12px 6vw 8px;
    align-items: center;
    gap: 10px;
  }

  body[data-view="restaurant"] .brand-logo {
    width: 64px;
    height: 64px;
    padding: 6px;
  }

  body[data-view="restaurant"] h1,
  body[data-view="landing"] h1 {
    font-size: 32px;
    line-height: 1.1;
  }

  .landing-hero h1 {
    font-size: 30px;
  }

  .landing-subhead {
    font-size: 16px;
    line-height: 1.4;
  }

  .hero,
  .section {
    padding: 0 6vw 28px;
  }

  .search {
    flex-direction: column;
  }

  body[data-view="restaurant"] .search.inline {
    flex-direction: row;
  }

  .hero-visual {
    min-height: 220px;
  }

  .menu-modal-body {
    grid-template-columns: 1fr;
  }
}

body.modal-open .lang-switch,
body.modal-open .mode-toggle-wrap,
body.modal-open .mode-toggle {
  display: none !important;
}
