@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Fredoka:wght@500;600;700&display=swap');

/* TAN St. Canard — drop the .otf into assets/fonts/ and uncomment:
   @font-face {
     font-family: 'TANStCanard';
     src: url('assets/fonts/TAN St. Canard Regular.otf') format('opentype');
     font-weight: normal;
     font-display: swap;
   }
   Fredoka is the interim display font — rounded/bold, closest free match
   to TAN St. Canard's warmth until the licensed font is installed.
*/

:root {
  --red: #d4161d;
  --red-deep: #9c0f15;
  --cream: #fbf0e3;
  --charcoal: #1a1a1a;
  --dark-grey: #333333;
  --mid-grey: #666666;
  --green: #2e8b57;
  --yellow: #f5a623;
  --radius: 14px;
  --radius-lg: 24px;
  --font-display: 'Fredoka', 'Montserrat', sans-serif; /* swap to 'TANStCanard' once loaded */
  --font-body: 'Montserrat', sans-serif;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 2px 16px rgba(26,26,26,.06);
  --shadow-lift: 0 20px 48px rgba(212,22,29,.16);
}

/* ─── KEYFRAMES ───────────────────────────────────────────── */

@keyframes hero-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  50%       { box-shadow: 0 0 0 6px transparent; opacity: 0.7; }
}

@keyframes num-pop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(var(--tilt, 0deg)); }
  50%      { transform: translateY(-14px) rotate(var(--tilt, 0deg)); }
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(20px, -30px) scale(1.06); }
  66%      { transform: translate(-16px, 16px) scale(0.96); }
}

@keyframes row-fill {
  from { width: 0%; }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ─── SCROLL REVEAL ───────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-spring);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── REDUCED MOTION ─────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── RESET ───────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ─── NAVIGATION ─────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,240,227,.82);
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid rgba(212,22,29,.12);
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s var(--ease-smooth), height 0.3s var(--ease-smooth);
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  height: 60px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--red);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav-logo span { color: var(--charcoal); font-family: var(--font-body); font-weight: 500; font-size: .85em; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-grey);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: .55rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: opacity .2s, transform 0.1s var(--ease-smooth) !important;
}

.nav-cta:hover  { opacity: .88; }
.nav-cta:active { transform: scale(0.96); opacity: 1; }

/* ─── HERO ───────────────────────────────────────────────── */

.hero {
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(255,255,255,.16), transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(0,0,0,.18), transparent 60%),
    linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  padding: 130px 6% 70px;
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
  animation: blob-drift 16s var(--ease-smooth) infinite;
}

.hero-blob--1 { width: 380px; height: 380px; background: #fff; top: -120px; left: -100px; }
.hero-blob--2 { width: 320px; height: 320px; background: var(--yellow); bottom: -140px; right: -80px; animation-delay: -6s; }

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
  text-align: left;
}

.hero-text { max-width: 560px; }

/* Hero entrance choreography — CSS only, no JS needed */
.hero-badge,
.hero h1,
.hero-sub,
.hero-actions,
.hero-stats,
.hero-visual {
  animation: hero-in 0.7s var(--ease-spring) both;
}

.hero-badge   { animation-delay: 0ms; }
.hero h1      { animation-delay: 100ms; }
.hero-sub     { animation-delay: 200ms; }
.hero-actions { animation-delay: 300ms; }
.hero-stats   { animation-delay: 400ms; }
.hero-visual  { animation-delay: 480ms; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  padding: .35rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(46,139,87,.4);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  opacity: .8;
  display: block;
  font-size: .58em;
  font-weight: 500;
  letter-spacing: -.5px;
  margin-top: .3rem;
}

.hero-sub {
  font-size: 1.15rem;
  opacity: .9;
  max-width: 480px;
  margin: 0 0 2.5rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  background: #fff;
  color: var(--red);
  padding: .9rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .3s var(--ease-spring), box-shadow .3s var(--ease-smooth);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.btn-primary svg, .btn-secondary svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-primary:active { transform: scale(0.96); transition-duration: 0.1s; }

.btn-secondary {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  padding: .9rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s, transform 0.1s var(--ease-smooth);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.btn-secondary:hover  { background: rgba(255,255,255,.25); }
.btn-secondary:active { transform: scale(0.96); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-stat { text-align: left; }
.hero-stat strong { font-family: var(--font-display); display: block; font-size: 2.1rem; font-weight: 600; }
.hero-stat span { font-size: .8rem; opacity: .75; letter-spacing: .04em; text-transform: uppercase; }

/* ─── HERO VISUAL — live occupancy mock widget ──────────── */

.hero-visual {
  position: relative;
  z-index: 2;
  max-width: 380px;
  justify-self: center;
  width: 100%;
}

.hero-phone {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: left;
  box-shadow: var(--shadow-lift);
  animation: float-slow 7s ease-in-out infinite;
  --tilt: -1.2deg;
}

.hero-phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.hero-phone-title { font-weight: 700; font-size: .95rem; }
.hero-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(46,139,87,.25);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border-radius: 100px;
}

.hero-phone-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  padding: .65rem .8rem;
  margin-bottom: .5rem;
}

.hero-phone-row:last-child { margin-bottom: 0; }

.hero-phone-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.hero-phone-dot.green  { background: var(--green);  box-shadow: 0 0 0 4px rgba(46,139,87,.25); }
.hero-phone-dot.yellow { background: var(--yellow); box-shadow: 0 0 0 4px rgba(245,166,35,.25); }
.hero-phone-dot.red    { background: #ff8a8f;       box-shadow: 0 0 0 4px rgba(255,138,143,.25); }

.hero-phone-row-label { flex: 1; font-size: .82rem; font-weight: 600; }
.hero-phone-row-meta  { font-size: .72rem; opacity: .7; }

/* ─── SECTION BASICS ─────────────────────────────────────── */

section { padding: 90px 5%; position: relative; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
}

.section-label::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -.5px;
}

.section-sub {
  color: var(--mid-grey);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 560px;
  margin-top: .85rem;
}

/* ─── HOW IT WORKS ───────────────────────────────────────── */

.how { background: var(--cream); }

.how-header { text-align: center; margin-bottom: 3.5rem; }
.how-header .section-label::before { display: none; }
.how-header .section-sub { margin: .85rem auto 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  counter-reset: step;
}

.step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, var(--red), var(--red-deep));
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

/* Num pops after card has started fading in — delay synced to card's transition-delay via --step-delay */
.step.is-visible .step-num {
  animation: num-pop 0.5s var(--ease-spring) calc(var(--step-delay, 0ms) + 200ms) both;
}

.step h3 {
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: .5rem;
  color: var(--charcoal);
}

.step p { color: var(--mid-grey); font-size: .9rem; line-height: 1.6; }

/* ─── FEATURES ───────────────────────────────────────────── */

.features { background: #fff; }

.features-header { margin-bottom: 3rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  grid-auto-flow: dense;
  gap: 1.25rem;
}

.feature-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(212,22,29,.08);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth), border-color .3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(212,22,29,.2);
}

.feature-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(150deg, var(--cream) 0%, #f7e4d0 100%);
}

.feature-card--featured .feature-icon { width: 52px; height: 52px; border-radius: 15px; }
.feature-card--featured .feature-icon svg { width: 25px; height: 25px; }
.feature-card--featured h3 { font-size: 1.15rem; }
.feature-card--featured p { max-width: 360px; }

.feature-demo {
  margin-top: 1.5rem;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(212,22,29,.1);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.feature-demo-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .6rem;
}

.feature-demo-label { font-size: .75rem; font-weight: 700; color: var(--mid-grey); text-transform: uppercase; letter-spacing: .04em; }
.feature-demo-value { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--red); }

.feature-demo-bar {
  height: 8px;
  border-radius: 100px;
  background: rgba(212,22,29,.12);
  overflow: hidden;
}

.feature-demo-bar span {
  display: block;
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--yellow), var(--red));
  animation: row-fill 1.4s var(--ease-smooth) 0.3s both;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  background: rgba(212,22,29,.1);
  color: var(--red);
}

.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .5rem;
  color: var(--charcoal);
}

.feature-card p { color: var(--mid-grey); font-size: .875rem; line-height: 1.6; }

/* ─── FOR RESTAURANTS ────────────────────────────────────── */

.restaurants {
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(212,22,29,.18), transparent 60%),
    var(--charcoal);
  color: #fff;
}

.restaurants-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.restaurants .section-label { color: var(--yellow); }
.restaurants .section-label::before { background: var(--yellow); }
.restaurants .section-title { color: #fff; }
.restaurants .section-sub { color: rgba(255,255,255,.65); }

.restaurants-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 2rem;
  background: var(--red);
  color: #fff;
  padding: .9rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: transform .3s var(--ease-spring), box-shadow .3s var(--ease-smooth);
}

.restaurants-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,22,29,.35); }

.tier-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }

.tier-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s, background .3s;
}

.tier-card:hover {
  transform: translateX(4px);
  border-color: var(--red);
  background: rgba(255,255,255,.09);
}

.tier-card.featured {
  background: linear-gradient(145deg, var(--red), var(--red-deep));
  border-color: var(--red);
}

.tier-price strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.tier-price span { font-size: .75rem; opacity: .6; }

.tier-info h4 { font-weight: 600; font-size: .95rem; color: #fff; }
.tier-info p  { font-size: .8rem; opacity: .6; margin-top: .2rem; }

.tier-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* ─── AVAILABILITY BADGE ─────────────────────────────────── */

.availability-grid {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
}

.avail-badge.green  { background: rgba(46,139,87,.15);  color: var(--green); }
.avail-badge.yellow { background: rgba(245,166,35,.15); color: var(--yellow); }
.avail-badge.red    { background: rgba(212,22,29,.15);  color: var(--red); }

.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse-live 2s var(--ease-smooth) infinite;
}

/* color drives currentColor in the pulse box-shadow */
.avail-badge.green  .avail-dot { background: var(--green);  color: var(--green); }
.avail-badge.yellow .avail-dot { background: var(--yellow); color: var(--yellow); }
.avail-badge.red    .avail-dot { background: var(--red);    color: var(--red); }

/* ─── CTA BAND ───────────────────────────────────────────── */

.cta-band {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(255,255,255,.14), transparent 60%),
    linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  text-align: center;
  padding: 90px 5%;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -.5px;
}

.cta-band p { opacity: .88; font-size: 1.05rem; margin-bottom: 2rem; }

.store-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.4);
  border-radius: var(--radius);
  padding: .75rem 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s, transform 0.1s var(--ease-smooth);
}

.store-badge:hover  { background: rgba(255,255,255,.22); }
.store-badge:active { transform: scale(0.96); }
.store-badge svg    { width: 26px; height: 26px; flex-shrink: 0; }

/* ─── FOOTER ─────────────────────────────────────────────── */

footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.6);
  padding: 48px 5% 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: .75rem;
}

.footer-brand p { font-size: .875rem; line-height: 1.6; }

.footer-col h4 {
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }

.footer-col a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .875rem;
  transition: color .2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}

.footer-bottom a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ─── LEGAL PAGES ────────────────────────────────────────── */

.legal-hero {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  padding: 60px 5% 50px;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: .5rem;
}

.legal-hero p { opacity: .85; font-size: 1rem; }

.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 5%;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--charcoal);
  margin: 2.5rem 0 .75rem;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p, .legal-body li {
  color: var(--dark-grey);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: .75rem;
}

.legal-body ul { padding-left: 1.5rem; }
.legal-body li { margin-bottom: .4rem; }
.legal-body a  { color: var(--red); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */

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

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-stat { text-align: center; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--featured { grid-column: span 2; grid-row: span 1; }

  .restaurants-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats   { gap: 1.5rem; }
}
