/* =============================================================
   Latin Food Truck — styles.css
   1. Tokens  2. Reset  3. Utilities  4. Typography  5. Components
   6. Sections  7. Effects  8. Responsive  9. Reduced-motion
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #FFFFFF;
  --bg-2:      #FFF6EC;
  --bg-3:      #FBEFE0;
  --ink:       #201810;
  --ink-soft:  #382C20;
  --ink-mute:  #7A6B5A;
  --paper:     #FFFFFF;

  --accent:      #C8102E;   /* Cuban red — primary */
  --accent-dark: #8F0B21;
  --accent-tint: #FBE3E6;
  --green:       #4C7A3D;   /* mojo / mint secondary accent */
  --gold:        #E3A857;

  --line:      rgba(32, 24, 16, 0.12);
  --line-soft: rgba(32, 24, 16, 0.07);

  --serif: "Fraunces", "Georgia", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius: 18px;
  --radius-sm: 10px;
  --shadow-card: 0 20px 50px -20px rgba(32,24,16,0.18), 0 2px 8px rgba(32,24,16,0.06);
  --shadow-lift: 0 30px 70px -20px rgba(200,16,46,0.28), 0 10px 26px -10px rgba(32,24,16,0.22);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 600; }
::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--ink); color: #fff;
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}
.section--alt { background: var(--bg-2); }
.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .9rem;
}
.kicker::before {
  content: ""; width: 22px; height: 2px; background: var(--accent); display: inline-block;
}
.section-title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin-bottom: .9rem;
}
.section-title em { color: var(--accent); font-style: italic; }
.section-sub {
  color: var(--ink-mute);
  font-size: 1.05rem;
  max-width: 54ch;
}

/* =============================================================
   4. Typography
   ============================================================= */
.eyebrow { font-family: var(--sans); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: .78rem; }

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .96rem;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(32,24,16,0.08), 0 1px 3px rgba(32,24,16,0.06);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s var(--ease-out), color .3s var(--ease-out);
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { box-shadow: 0 22px 46px -10px rgba(200,16,46,0.42); background: var(--accent-dark); }

.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 12px 30px -14px rgba(32,24,16,0.25); }

.btn-white { background: #fff; color: var(--accent); }
.btn-white:hover { box-shadow: 0 22px 46px -10px rgba(0,0,0,0.28); }

.btn-sm { padding: .7rem 1.2rem; font-size: .85rem; }

/* Nav */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  padding-block: 1.1rem;
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -20px rgba(32,24,16,0.25);
  padding-block: .75rem;
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: 1.35rem; color: var(--ink);
}
.brand-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  color: #fff; font-family: var(--serif); font-style: normal; font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-link {
  position: relative; padding: .25rem 0; font-weight: 500; font-size: .95rem;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: .7rem; }
.nav-burger {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 50%; border: 1.5px solid var(--line);
}
.nav-burger span, .nav-burger::before, .nav-burger::after { display: none; }
.nav-burger svg { width: 18px; height: 18px; }

/* Mobile nav */
.nav-mobile {
  position: fixed; inset: 0; z-index: 95;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile-list { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.nav-mobile-list a { font-family: var(--serif); font-style: italic; font-size: 2rem; }
.nav-mobile-close {
  position: absolute; top: 1.3rem; right: 1.3rem;
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.3);
  display: grid; place-items: center;
}

/* Cards */
.card {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .6s var(--ease-soft), box-shadow .5s var(--ease-soft);
}
.card:hover { box-shadow: var(--shadow-lift); }

/* Badges / ratings */
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .04em;
  padding: .35rem .7rem; border-radius: 999px;
  background: var(--accent-tint); color: var(--accent-dark);
}

/* Forms (help modal) */
.field { position: relative; margin-bottom: 1.1rem; }
.field label {
  display: block; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-mute); margin-bottom: .4rem;
}
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--bg-2); color: inherit; font: inherit;
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent); background: #fff; outline: none;
}
.field textarea { resize: vertical; min-height: 90px; }

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 6rem;
  overflow: clip;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-tint {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.9) 32%, rgba(255,255,255,0.35) 58%, rgba(255,255,255,0.05) 78%);
}
.hero-inner { position: relative; z-index: 1; max-width: 640px; }
.hero-meta {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .82rem; font-weight: 600; color: var(--ink-soft);
  background: #fff; border: 1px solid var(--line);
  padding: .5rem .9rem; border-radius: 999px;
  margin-bottom: 1.4rem;
  box-shadow: 0 6px 18px -10px rgba(32,24,16,0.2);
}
.hero-meta .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 3px rgba(76,122,61,0.18);
}
.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  margin-bottom: 1.2rem;
}
.hero-title em { color: var(--accent); font-style: italic; }
.hero-sub {
  font-size: 1.15rem; color: var(--ink-soft); max-width: 46ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.2rem; }
.hero-stats { display: flex; gap: 1.9rem; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat b { font-family: var(--serif); font-size: 1.7rem; color: var(--accent); }
.hero-stat span { font-size: .82rem; color: var(--ink-mute); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .72rem; color: var(--ink-mute); letter-spacing: .1em; text-transform: uppercase;
}
.hero-scroll-line { width: 1px; height: 34px; background: linear-gradient(var(--ink-mute), transparent); animation: scrollPulse 2.2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

/* --- Marquee --- */
.marquee-wrap {
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
  padding-block: 1rem;
}
.marquee { overflow: hidden; position: relative; }
.marquee-track { display: inline-flex; gap: 3rem; white-space: nowrap; will-change: transform; }
.marquee-track span {
  font-family: var(--serif); font-style: italic; font-size: 1.2rem;
  display: inline-flex; align-items: center; gap: 3rem;
}
.marquee-track span::after { content: "✺"; color: var(--accent); font-style: normal; }

/* --- Story --- */
.story-grid {
  display: grid; gap: 2.5rem; align-items: center;
}
.story-figure {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card);
  position: relative;
}
.story-figure::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.story-pillars { display: grid; gap: 1.6rem; margin-top: 2rem; }
.story-pillar { display: flex; gap: 1rem; align-items: flex-start; }
.story-pillar-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-tint); color: var(--accent-dark);
  display: grid; place-items: center; font-family: var(--serif); font-weight: 700;
}
.story-pillar h3 { font-family: var(--sans); font-weight: 700; font-size: 1rem; margin-bottom: .25rem; }
.story-pillar p { color: var(--ink-mute); font-size: .92rem; }

/* --- Bento specialties --- */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.bento-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  min-height: 260px;
  isolation: isolate;
}
.bento-card-img {
  position: absolute; inset: 0; z-index: -1;
  background: var(--bg-2);
}
.bento-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft); }
.bento-card:hover .bento-card-img img { transform: scale(1.06); }
.bento-card-body {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.2rem 1.3rem;
  background: linear-gradient(0deg, rgba(255,255,255,0.98) 8%, rgba(255,255,255,0.9) 55%, transparent 100%);
}
.bento-card-name { font-size: 1.15rem; margin-bottom: .3rem; display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.bento-card-price { font-family: var(--sans); font-weight: 700; color: var(--accent); font-size: 1rem; white-space: nowrap; }
.bento-card-desc { font-size: .86rem; color: var(--ink-mute); }
.bento-card.has-tilt { transition: transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft); }
.bento-card:hover { box-shadow: var(--shadow-lift); }

/* --- Full menu --- */
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-bottom: 2.2rem;
}
.menu-tab {
  padding: .6rem 1.1rem; border-radius: 999px; border: 1.5px solid var(--line);
  font-size: .88rem; font-weight: 600; color: var(--ink-mute);
  transition: all .3s var(--ease-out);
}
.menu-tab:hover { border-color: var(--accent); color: var(--accent); }
.menu-tab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.menu-category { margin-bottom: 2.6rem; }
.menu-category-title {
  font-size: 1.5rem; margin-bottom: 1.1rem;
  display: flex; align-items: center; gap: .8rem;
}
.menu-category-title::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.menu-list { display: grid; gap: .1rem; }
.menu-row {
  display: flex; align-items: center; gap: 1rem;
  padding-block: .85rem;
  border-bottom: 1px dashed var(--line);
}
.menu-row:last-child { border-bottom: 0; }
.menu-row-thumb {
  flex-shrink: 0; width: 58px; height: 58px; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 12px -4px rgba(32,24,16,0.25);
}
.menu-row-thumb img { width: 100%; height: 100%; object-fit: cover; }
.menu-row-body { flex: 1; min-width: 0; }
.menu-row-name { font-weight: 700; font-size: 1.02rem; }
.menu-row-desc { color: var(--ink-mute); font-size: .88rem; margin-top: .2rem; }
.menu-row-price { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; color: var(--accent); white-space: nowrap; }

/* --- Reviews --- */
.reviews-grid {
  display: grid; gap: 1.3rem;
}
.review-card {
  padding: 1.7rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.review-top { display: flex; align-items: center; gap: .9rem; }
.review-photo {
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--accent-tint);
}
.review-photo img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 700; font-size: .98rem; }
.review-role { font-size: .8rem; color: var(--ink-mute); }
.review-quote { font-size: .96rem; color: var(--ink-soft); font-style: italic; }

.reviews-summary {
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
  margin-bottom: 2.2rem; padding: 1.4rem 1.6rem;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.reviews-summary-score { font-family: var(--serif); font-size: 2.6rem; color: var(--accent); }
.reviews-summary-meta { display: flex; flex-direction: column; gap: .25rem; }

/* --- Location / hours --- */
.location-grid { display: grid; gap: 2rem; align-items: center; }
.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.schedule-list { display: grid; gap: .1rem; }
.schedule-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding-block: 1rem; border-bottom: 1px dashed var(--line);
}
.schedule-row:last-child { border-bottom: 0; }
.schedule-day { font-weight: 700; }
.schedule-place { font-size: .86rem; color: var(--ink-mute); margin-top: .2rem; }
.schedule-hours { font-family: var(--serif); color: var(--accent); font-weight: 600; white-space: nowrap; }

/* --- Final CTA --- */
.final-cta {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--accent);
  color: #fff;
  padding: clamp(2.6rem, 7vw, 5rem) clamp(1.6rem, 6vw, 4rem);
  text-align: center;
  isolation: isolate;
}
.final-cta::before {
  content: "";
  position: absolute; inset: -20%; z-index: -1;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 55%),
              radial-gradient(circle at 85% 80%, rgba(255,255,255,0.14), transparent 50%);
}
.final-cta h2 { color: #fff; font-size: clamp(1.9rem, 4.6vw, 3rem); margin-bottom: 1rem; }
.final-cta p { color: rgba(255,255,255,0.88); max-width: 46ch; margin-inline: auto; margin-bottom: 2rem; }
.final-cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* --- Footer --- */
.footer {
  background: var(--ink); color: rgba(255,255,255,0.78);
  padding-block: 3.5rem 2rem;
}
.footer-grid {
  display: grid; gap: 2.4rem;
  margin-bottom: 2.6rem;
}
.footer-brand { color: #fff; margin-bottom: .8rem; }
.footer-desc { max-width: 34ch; font-size: .92rem; }
.footer-heading { color: #fff; font-family: var(--sans); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer-links { display: grid; gap: .65rem; font-size: .92rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.12);
  font-size: .8rem; color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.75); }
.footer-bottom a:hover { color: #fff; }
.footer-social { display: flex; gap: .8rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18);
  display: grid; place-items: center; transition: border-color .3s, background .3s;
}
.footer-social a:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* --- Floating help button --- */
.help-btn {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 150;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 1.3rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 700; font-size: .92rem;
  box-shadow: 0 16px 40px -12px rgba(200,16,46,0.55), 0 4px 12px rgba(0,0,0,0.15);
  transition: transform .5s var(--ease-soft), box-shadow .4s var(--ease-out);
}
.help-btn:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 24px 50px -12px rgba(200,16,46,0.6); }
.help-btn-icon {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.22);
  display: grid; place-items: center; flex-shrink: 0;
}
.help-btn-icon svg { width: 14px; height: 14px; }
.help-btn-ring {
  position: absolute; inset: 0; border-radius: 999px;
  border: 2px solid var(--accent);
  animation: helpPulse 2.6s ease-out infinite;
}
.help-btn-label { display: none; }

/* Help modal */
.help-modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: 1.2rem;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease-out);
}
.help-modal[data-open="true"] { opacity: 1; pointer-events: auto; }
.help-modal-backdrop { position: absolute; inset: 0; background: rgba(32,24,16,0.55); backdrop-filter: blur(3px); }
.help-modal-panel {
  position: relative;
  width: 100%; max-width: 440px;
  background: #fff; border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,0.4);
  transform: translateY(24px) scale(0.97);
  transition: transform .45s var(--ease-soft);
  max-height: 88vh; overflow-y: auto;
}
.help-modal[data-open="true"] .help-modal-panel { transform: translateY(0) scale(1); }
.help-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-2);
}
.help-modal h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.help-modal-sub { color: var(--ink-mute); font-size: .92rem; margin-bottom: 1.5rem; }
.help-quick { display: grid; gap: .7rem; margin-bottom: 1.6rem; }
.help-quick-link {
  display: flex; align-items: center; gap: .8rem;
  padding: .85rem 1rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); font-weight: 600; font-size: .92rem;
  transition: border-color .25s, background .25s;
}
.help-quick-link:hover { border-color: var(--accent); background: var(--accent-tint); }
.help-quick-link svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); }
.help-divider {
  display: flex; align-items: center; gap: .8rem; color: var(--ink-mute); font-size: .78rem;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.4rem;
}
.help-divider::before, .help-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.cta-form.is-sent { display: none; }
.cta-success { display: none; text-align: center; padding-block: 1rem; }
.cta-success.is-visible { display: block; }
.cta-success-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--accent-tint); color: var(--accent);
  display: grid; place-items: center; margin-inline: auto; margin-bottom: 1rem;
}
.cta-success-icon svg { width: 26px; height: 26px; }
.help-submit { width: 100%; margin-top: .3rem; }
.help-submit .label-sending, .help-submit .label-idle { transition: opacity .2s; }
.is-sending .label-idle { opacity: 0; }
.label-sending { display: none; }
.is-sending .label-sending { display: inline; }

/* =============================================================
   7. Effects
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
/* Defensive: split-text elements must never stay invisible */
.reveal[data-split] { opacity: 1; transform: none; }

@keyframes helpPulse {
  0% { opacity: .5; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.35); }
}

.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft);
}
.has-tilt:hover { transition-duration: .15s; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (max-width: 539px) {
  .nav-actions .btn-sm { display: none; }
  .brand { font-size: 1.15rem; }
}

@media (min-width: 540px) {
  .hero-title { max-width: 22ch; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 720px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1.05fr 1fr; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .help-btn-label { display: inline; }
}

@media (min-width: 960px) {
  .bento { grid-template-columns: repeat(3, 1fr); }
  .bento-card:nth-child(1) { grid-column: span 2; grid-row: span 2; min-height: 100%; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-title { max-width: 26ch; }
}

@media (min-width: 1280px) {
  .section { padding-block: clamp(4rem, 7vw, 8rem); }
}

/* =============================================================
   9. Reduced-motion — only intrusive effects are gated
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-scroll-line { animation: none; }
  .help-btn-ring { animation: none; opacity: 0; }
  .marquee-track { animation-duration: 90s !important; }
}
