/* Dished — marketing site
   Design tokens mirror Sage/Sage/Design/Colors.swift exactly. */

:root {
  --sage: #4A7C59;
  --sage-lt: #E8F0E4;
  --amber: #946200;        /* amber for text/icons on light — clears 4.5:1 */
  --amber-fill: #D4A039;   /* brand amber — CTA fills only */
  --amber-on-dark: #FFE0A3;
  --cream: #FFF3DC;
  --warm-white: #FAFAF7;
  --charcoal: #2D2D2A;
  --warm-gray: #6B6B63;
  --stone: #9C9A8E;
  --linen: #E5E3DB;
  --forest: #3D8B4F;
  --tomato: #C94A3D;
  --white: #FFFFFF;
  --forest-deep: #2E5940;
  --bezel: #1F1F1D;

  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;

  --r-card: 12px;
  --r-chip: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shell: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--amber); text-decoration: none; }
a:hover { color: #7a5100; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; margin: 0; line-height: 1.15; }

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

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--sage); color: var(--white);
  padding: 12px 18px; border-radius: var(--r-card); font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; color: var(--white); }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 24px; }

/* ---------- Motion ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09); } }
@keyframes floatA { from { transform: rotate(-5deg) translateY(0); } to { transform: rotate(-5deg) translateY(-9px); } }
@keyframes floatB { from { transform: rotate(4deg) translateY(0); } to { transform: rotate(4deg) translateY(-7px); } }
@keyframes leafBreathe { from { transform: scale(1); } to { transform: scale(1.08); } }
@keyframes twinkle { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.78); } }
@keyframes timerPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* Scroll-reveal: elements start hidden, .is-visible is added by the observer.
   If JS never runs, .no-js on <html> keeps everything visible. */
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.is-visible { animation: fadeUp 0.55s var(--ease) forwards; }
.no-js .reveal { opacity: 1; transform: none; }

.spark { display: inline-block; animation: twinkle 2.6s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--amber-fill); color: var(--white);
  font-family: var(--sans); font-size: 16px; font-weight: 600;
  border: none; border-radius: var(--r-card); cursor: pointer;
  min-height: 52px; padding: 0 28px;
  box-shadow: 0 4px 14px rgba(212, 160, 57, 0.35);
  transition: filter 0.2s ease, transform 0.15s ease;
}
.btn:hover { filter: brightness(0.94); transform: translateY(-1px); color: var(--white); }
.btn:active { transform: none; }
.btn[disabled] { opacity: 0.6; cursor: default; transform: none; }
.btn-sm { min-height: 44px; padding: 0 22px; font-size: 15px; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; background: var(--sage-lt); border-radius: var(--r-chip);
  font-size: 13px; font-weight: 600; color: var(--sage);
}

.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--sage);
  text-transform: uppercase;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--linen);
}
.site-header .shell {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--charcoal); }
.brand:hover { color: var(--charcoal); }
.brand img { width: 32px; height: 32px; }
.brand span { font-family: var(--serif); font-weight: 700; font-size: 24px; letter-spacing: 2.5px; }

.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav a:not(.btn) { font-size: 15px; font-weight: 500; color: var(--warm-gray); }
.site-nav a:not(.btn):hover { color: var(--charcoal); }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 72px; }
.hero .shell { display: flex; align-items: center; gap: 60px; }
.hero-copy { flex: 1 1 560px; min-width: 0; }
.hero h1 { font-size: clamp(44px, 5.2vw, 68px); margin: 26px 0 24px; letter-spacing: -0.5px; }
.hero-sub { font-size: 19px; line-height: 1.55; color: var(--warm-gray); margin: 0 0 36px; max-width: 540px; }

.hero-visual { position: relative; flex: 1 1 620px; min-width: 0; height: 680px; }
.hero-photo {
  position: absolute; left: 150px; top: 24px; right: -140px; height: 600px;
  border-radius: 24px 0 0 24px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(45, 45, 42, 0.18);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 30s ease-in-out infinite alternate; }
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(45,45,42,0.16) 0%, rgba(45,45,42,0) 40%);
}

/* ---------- Phone mock ---------- */
.phone {
  position: absolute; left: 0; top: 46px; width: 300px;
  background: var(--bezel); border-radius: 44px; padding: 10px;
  box-shadow: 0 30px 60px rgba(45, 45, 42, 0.28);
}
.phone-screen {
  background: var(--warm-white); border-radius: 35px; overflow: hidden;
  display: flex; flex-direction: column; padding-bottom: 14px;
}
.phone-head { padding: 44px 18px 12px; display: flex; flex-direction: column; gap: 2px; }
.phone-head h3 { font-size: 22px; }
.phone-head span { font-size: 12px; color: var(--sage); font-weight: 600; }
.phone-rows { display: flex; flex-direction: column; gap: 8px; padding: 8px 14px; }
.phone-cta {
  margin: 10px 14px 0; display: flex; align-items: center; justify-content: center;
  height: 46px; background: var(--amber-fill); border-radius: var(--r-card);
  font-size: 14px; font-weight: 600; color: var(--white);
}

.plan-row {
  display: flex; align-items: center; gap: 10px; padding: 9px 10px;
  background: var(--white); border: 1px solid var(--linen); border-radius: var(--r-card);
  box-shadow: 0 2px 6px rgba(45, 45, 42, 0.05);
}
.plan-row.is-pick { border: 1.5px solid var(--sage); }
.plan-day { font-size: 10px; font-weight: 700; color: var(--amber); letter-spacing: 0.6px; width: 30px; flex-shrink: 0; }
.plan-row img { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.plan-meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.plan-meta strong { font-size: 13px; font-weight: 600; }
.plan-meta small { font-size: 11px; color: var(--stone); }
.plan-meta small.pick { color: var(--sage); font-weight: 600; }

.meal-card {
  position: absolute; display: flex; flex-direction: column; width: 128px;
  background: var(--white); border: 1.5px solid var(--linen); border-radius: 14px;
  overflow: hidden; box-shadow: 0 10px 28px rgba(45, 45, 42, 0.16);
}
.meal-card img { width: 100%; height: 80px; object-fit: cover; }
.meal-card strong { font-size: 13px; font-weight: 600; text-align: center; line-height: 1.2; padding: 8px 8px 3px; }
.meal-card small { font-size: 11px; color: var(--stone); text-align: center; padding-bottom: 10px; }
.meal-card.a { right: 36px; top: -6px; animation: floatB 4.4s ease-in-out 0.6s infinite alternate; }
.meal-card.b { left: 262px; bottom: 2px; animation: floatA 4s ease-in-out 1.1s infinite alternate; }

/* ---------- Waitlist form ---------- */
.waitlist { max-width: 540px; }
.waitlist-fields { display: flex; gap: 12px; }
.waitlist input[type="email"] {
  flex: 1; min-width: 0; min-height: 56px;
  background: var(--white); border: 1.5px solid var(--linen); border-radius: var(--r-card);
  padding: 0 18px; font-size: 16px; color: var(--charcoal); font-family: inherit;
}
.waitlist input[type="email"]::placeholder { color: var(--stone); }
.waitlist input[type="email"]:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(74,124,89,0.15); }
.waitlist .btn { min-height: 56px; flex-shrink: 0; }
.waitlist-note { font-size: 13px; color: var(--stone); margin: 14px 0 0; }
.waitlist-error { font-size: 14px; color: var(--tomato); margin: 12px 0 0; font-weight: 500; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.btn .spinner {
  width: 16px; height: 16px; margin-right: 8px;
  border: 2px solid rgba(255,255,255,0.4); border-top-color: var(--white);
  border-radius: 50%; animation: spin 0.7s linear infinite;
}

.waitlist-done {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; background: var(--sage-lt); border-radius: var(--r-card);
}
.waitlist-done .tick {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; background: var(--forest); border-radius: 50%; flex-shrink: 0;
}
.waitlist-done strong { display: block; font-size: 16px; }
.waitlist-done span { font-size: 14px; color: var(--warm-gray); }
[hidden] { display: none !important; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-tint { background: var(--white); }
.section-head { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 42px); margin-top: 14px; }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.step { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.step-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: var(--sage-lt); border-radius: 50%; flex-shrink: 0;
}
.step h3 { font-size: 23px; }
.step p { font-size: 15px; line-height: 1.55; color: var(--warm-gray); margin: 0; }
.step-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.step-chips .chip { font-size: 12px; padding: 5px 11px; }

/* ---------- Walkthrough ---------- */
.walk {
  display: flex; background: var(--white);
  border: 1.5px solid var(--linen); border-radius: 20px;
  box-shadow: 0 10px 30px rgba(45, 45, 42, 0.07); overflow: hidden;
}
.walk-steps { display: flex; flex-direction: column; gap: 6px; width: 330px; padding: 26px 20px; border-right: 1px solid var(--linen); flex-shrink: 0; }
.walk-step {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px;
  border: none; border-radius: var(--r-card); background: transparent;
  font: inherit; color: inherit; text-align: left; width: 100%; cursor: pointer;
  transition: background 0.4s ease;
  -webkit-appearance: none; appearance: none;
}
.walk-step:hover { background: rgba(232, 240, 228, 0.55); }
.walk-step.is-on { background: var(--sage-lt); }
.walk-step .n {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; background: var(--white);
  border: 1.5px solid var(--sage); border-radius: 50%; flex-shrink: 0;
}
.walk-step strong { font-size: 15.5px; font-weight: 600; }
.walk-step small { display: block; font-size: 13px; line-height: 1.45; color: var(--warm-gray); margin-top: 3px; }

.walk-stage { position: relative; flex: 1; min-height: 424px; background: var(--warm-white); }
.walk-scene {
  position: absolute; inset: 0; display: flex; flex-direction: column; gap: 16px;
  padding: 30px 34px 36px;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}
.walk-scene.is-on { opacity: 1; transform: none; }
.walk-caption { font-size: 13.5px; font-weight: 600; letter-spacing: 0.4px; color: var(--stone); }
.walk-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--linen); }
.walk-bar i { display: block; width: 0; height: 100%; background: var(--amber-fill); }
.walk-bar i.run { width: 100%; transition: width 5s linear; }

.vault-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; flex: 1; }
.vault-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--linen); border-radius: var(--r-card); overflow: hidden; }
.vault-card img { width: 100%; height: 84px; object-fit: cover; }
.vault-card span { font-size: 12px; font-weight: 600; padding: 8px 10px; }

.fakebar { display: flex; align-items: center; gap: 9px; padding: 10px 14px; background: var(--white); border: 1px solid var(--linen); border-radius: var(--r-card); font-size: 13.5px; color: var(--stone); }

/* ---------- Feature rows ---------- */
.feature { display: flex; align-items: center; gap: 72px; }
.feature + .feature { margin-top: 88px; }
.feature.flip { flex-direction: row-reverse; }
.feature-copy { flex: 1 1 440px; min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.feature-copy h3 { font-size: 32px; line-height: 1.2; }
.feature-copy p { font-size: 16px; line-height: 1.6; color: var(--warm-gray); margin: 0; }
.feature-visual {
  flex: 1 1 560px; min-width: 0; display: flex; align-items: center;
  background: var(--white); border: 1.5px solid var(--linen); border-radius: 20px;
  box-shadow: 0 10px 30px rgba(45, 45, 42, 0.07); overflow: hidden; min-height: 300px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-visual:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(45, 45, 42, 0.11); }
.feature-visual > * { width: 100%; padding: 26px; }

.mini-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.mini {
  display: flex; align-items: center; gap: 12px; padding: 10px;
  background: var(--warm-white); border: 1px solid var(--linen); border-radius: var(--r-card);
}
.mini img { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.mini strong { display: block; font-size: 14px; font-weight: 600; }
.mini small { font-size: 12px; color: var(--stone); }

.g-list { display: flex; flex-direction: column; gap: 10px; }
.g-cat { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--stone); }
.g-row { display: flex; align-items: center; gap: 11px; padding: 10px 13px; background: var(--white); border: 1px solid var(--linen); border-radius: var(--r-card); }
.g-row.done { opacity: 0.55; }
.g-row.done .g-name { text-decoration: line-through; }
.g-box { width: 21px; height: 21px; border: 2px solid var(--stone); border-radius: 50%; flex-shrink: 0; }
.g-box.on { display: flex; align-items: center; justify-content: center; background: var(--sage); border-color: var(--sage); }
.g-name { font-size: 15px; flex: 1; }
.g-qty { font-size: 13px; color: var(--stone); }
.g-tag { font-size: 10px; font-weight: 700; color: var(--sage); background: var(--sage-lt); padding: 3px 8px; border-radius: 10px; }

.cook-step { display: flex; align-items: flex-start; gap: 12px; padding: 14px; background: var(--warm-white); border: 1.5px solid var(--sage); border-radius: var(--r-card); font-size: 15px; line-height: 1.5; }
.cook-step .n { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; background: var(--sage); color: var(--white); border-radius: 50%; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.timers { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.timer { display: flex; align-items: center; gap: 9px; padding: 11px 16px; background: var(--sage-lt); border-radius: var(--r-card); font-size: 15px; font-weight: 600; }
.timer.idle { background: var(--white); border: 1px solid var(--linen); color: var(--warm-gray); }
.timer .dot { width: 8px; height: 8px; background: var(--forest); border-radius: 50%; animation: timerPulse 1.6s ease-in-out infinite; }
.timer time { font-family: var(--serif); font-size: 17px; color: var(--sage); }
.timer.idle time { color: var(--stone); }

/* ---------- Mid-page CTA ---------- */
.cta-mini { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 72px; }
.cta-mini small { font-size: 13px; color: var(--stone); }

/* ---------- Promise band ---------- */
.promise { position: relative; overflow: hidden; }
.promise > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: kenburns 24s ease-in-out infinite alternate; }
.promise::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,46,34,0.68) 0%, rgba(20,40,29,0.92) 100%);
}
.promise .shell {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-top: 96px; padding-bottom: 96px;
}
.promise img.mark { width: 54px; height: 54px; filter: brightness(0) invert(1); margin-bottom: 22px; animation: leafBreathe 2.4s ease-in-out infinite alternate; }
.promise h2 { font-size: clamp(28px, 3.4vw, 40px); color: var(--white); margin-bottom: 18px; }
.promise p { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 0 40px; }
.promise .waitlist input[type="email"] { border-color: rgba(255,255,255,0.25); }
.promise .waitlist-note { color: rgba(255,255,255,0.6); }
.promise .waitlist-error { color: var(--amber-on-dark); }
.promise .waitlist-done { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); }
.promise .waitlist-done strong { color: var(--white); }
.promise .waitlist-done span { color: rgba(255,255,255,0.75); }

/* ---------- Footer ---------- */
.site-footer { padding: 56px 0 40px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; padding-bottom: 40px; }
.footer-brand { max-width: 300px; display: flex; flex-direction: column; gap: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.5; color: var(--warm-gray); margin: 0; }
.footer-cols { display: flex; gap: 80px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--stone); margin: 0; text-transform: uppercase; }
.footer-col a { font-size: 14px; color: var(--warm-gray); }
.footer-col a:hover { color: var(--charcoal); }
.footer-bot { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 24px; border-top: 1px solid var(--linen); font-size: 13px; color: var(--stone); }

/* ---------- Legal / doc pages ---------- */
.doc { max-width: 720px; margin: 0 auto; padding: 64px 24px 72px; }
.doc h1 { font-size: clamp(32px, 4vw, 42px); margin-bottom: 10px; }
.doc .updated { font-size: 14px; color: var(--stone); display: block; margin-bottom: 28px; }
.doc h2 { font-size: 22px; margin: 36px 0 12px; }
.doc p, .doc li { font-size: 15px; line-height: 1.65; color: var(--warm-gray); }
.doc p { margin: 0 0 14px; }
.doc ul { margin: 0 0 14px; padding-left: 22px; display: flex; flex-direction: column; gap: 10px; }
.doc strong { color: var(--charcoal); }
.doc-draft {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 24px;
  padding: 6px 13px; background: var(--cream); border-radius: var(--r-chip);
  font-size: 12.5px; font-weight: 600; color: var(--amber);
}
.doc-draft .dot { width: 7px; height: 7px; background: var(--amber); border-radius: 50%; }

.faq { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.faq-card {
  display: flex; flex-direction: column; gap: 9px; padding: 22px 24px;
  background: var(--white); border: 1px solid var(--linen); border-radius: 14px;
  box-shadow: 0 3px 8px rgba(45, 45, 42, 0.05);
}
.faq-card h3 { font-family: var(--sans); font-size: 16.5px; font-weight: 600; }
.faq-card p { margin: 0; }
.contact-card {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 26px 28px; background: var(--sage-lt); border-radius: 16px; margin-bottom: 48px;
}
.contact-card .icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--sage); border-radius: 50%; flex-shrink: 0; }
.contact-card .txt { flex: 1; min-width: 180px; }
.contact-card strong { display: block; font-size: 17px; }
.contact-card small { font-size: 14.5px; color: var(--warm-gray); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero .shell { flex-direction: column; gap: 48px; }
  .hero-copy { flex: 1 1 auto; width: 100%; }
  .hero-sub { max-width: none; }
  .waitlist { max-width: none; }
  .hero-visual { width: 100%; height: auto; display: flex; flex-direction: column; gap: 24px; }
  .hero-photo { position: static; height: 260px; border-radius: 16px; width: 100%; }
  .phone { position: static; margin: 0 auto; }
  .meal-card { display: none; }
  .feature, .feature.flip { flex-direction: column; gap: 32px; }
  .feature + .feature { margin-top: 64px; }
  .feature-visual { width: 100%; }
  .walk { flex-direction: column; }
  .walk-steps { width: 100%; border-right: none; border-bottom: 1px solid var(--linen); }
  .walk-stage { min-height: 460px; }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .site-nav a:not(.btn) { display: none; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 48px 0 56px; }
  .hero h1 { margin: 18px 0 16px; }
  .waitlist-fields { flex-direction: column; }
  .waitlist .btn { width: 100%; }
  .vault-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-grid { grid-template-columns: 1fr; }
  .walk-scene { padding: 22px 20px 30px; }
  .walk-stage { min-height: 500px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-cols { gap: 48px; }
  .footer-bot { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cta-mini { margin-top: 48px; }
  .promise .shell { padding-top: 64px; padding-bottom: 64px; }
}

@media (max-width: 420px) {
  .footer-cols { flex-direction: column; gap: 28px; }
  .phone { width: 100%; max-width: 300px; }
}
