/* =========================================================
   Milo — Personal Fitness Intelligence
   Visual language: warm-stone minimalism (adapted.app style).
   Geist Sans, light surface with dark-mode support, floating
   pill nav, tight-tracked headings, stone-black pill CTAs.
   ========================================================= */

:root {
  --bg: #fff;
  --fg: #1c1917;
  --text: #444;
  --muted: #666;
  --faint: #999;
  --card: #f0f0f0;
  --card-fade: #fafafa;
  --border: rgba(0, 0, 0, 0.06);
  --border-strong: rgba(0, 0, 0, 0.1);
  --cta-bg: #1c1917;
  --cta-text: #fff;
  --cta-hover: #2a2a2a;
  --nav-bg: rgba(250, 249, 246, 0.7);
  --shadow: rgba(0, 0, 0, 0.03);
  --phone-body: #1c1917;
  --screen: #0f0f0f;

  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --max: 1040px;
  --section-y: clamp(72px, 10vw, 96px);
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f0f0f;
    --fg: #faf9f6;
    --text: #a1a1a1;
    --muted: #888;
    --faint: #666;
    --card: #1a1a1a;
    --card-fade: #151515;
    --border: rgba(255, 255, 255, 0.06);
    --border-strong: rgba(255, 255, 255, 0.1);
    --cta-bg: #faf9f6;
    --cta-text: #0f0f0f;
    --cta-hover: #e5e5e5;
    --nav-bg: rgba(30, 30, 30, 0.7);
    --shadow: rgba(0, 0, 0, 0.2);
    --phone-body: #262626;
  }
}

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

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--fg); color: var(--bg); }

.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;
}

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

/* ===================== Header (floating pill nav) ===================== */

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 8px 8px 16px;
  border-radius: 999px;
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--fg);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--cta-bg);
  color: var(--cta-text);
}

.brand-word { font-size: 16px; }

.header-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-links a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: var(--muted);
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-links a:hover { color: var(--fg); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--cta-bg);
  color: var(--cta-text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.025em;
  transition: background 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-app:hover { background: var(--cta-hover); }
.btn-app.block { width: 100%; }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
}
.menu-btn span {
  width: 16px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--fg);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-btn[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.mobile-menu {
  width: min(400px, 100%);
  margin-top: 8px;
  padding: 16px;
  border-radius: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 16px 48px var(--shadow), 0 2px 8px var(--shadow);
}
.mobile-menu a {
  color: var(--fg);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 8px;
}
.mobile-menu .btn-app { margin-top: 8px; color: var(--cta-text); }

/* ===================== Hero ===================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(140px, 22vh, 200px);
  padding-bottom: var(--section-y);
}

.hero-block {
  max-width: 780px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-kicker {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-title {
  font-weight: 600;
  font-size: clamp(38px, 5.85vw, 65px);
  line-height: 0.95;
  letter-spacing: -1.5px;
  text-wrap: balance;
  color: var(--fg);
}

.hero-description {
  max-width: 540px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: var(--text);
}

.hero-cta-row {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 24px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.025em;
  cursor: pointer;
  transition: background 0.15s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-cta svg { flex: none; }

.hero-cta-primary {
  color: var(--cta-text);
  background: var(--cta-bg);
}
.hero-cta-primary:hover { background: var(--cta-hover); }

.hero-cta-secondary {
  color: var(--fg);
  background: transparent;
  border: 1px solid var(--border-strong);
}
.hero-cta-secondary:hover { background: var(--card-fade); }

.hero-trust {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.avatars { display: flex; }
.avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.avatar.a1 { background: linear-gradient(135deg, #d6d3d1, #a8a29e); }
.avatar.a2 { background: linear-gradient(135deg, #a8a29e, #78716c); }
.avatar.a3 { background: linear-gradient(135deg, #78716c, #57534e); }
.avatar.a4 { background: linear-gradient(135deg, #57534e, #292524); }

.hero-trust-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: var(--muted);
  white-space: nowrap;
}

/* ===================== Story (scrollytelling) ===================== */

.story-surface {
  position: relative;
  border-top: 1px solid var(--border);
  padding: clamp(1.4rem, 3vw, 2.6rem) 0 clamp(2.8rem, 7vw, 5.2rem);
}

.story-rail {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 24px;
}

/* Right column in DOM order: scrolling copy steps */
.story-copy-rail {
  display: flex;
  flex-direction: column;
}

.story-step {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border-strong);
  padding-left: 1.5rem;
  opacity: 0.35;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}
.story-step.is-active {
  opacity: 1;
  border-left-color: var(--fg);
}

.story-step-copy { max-width: 480px; }

.story-eyebrow {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.story-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--fg);
  margin-bottom: 1rem;
}

.story-body {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: var(--text);
}

/* Left column: sticky phone stage (DOM is copy-first, so pull it left) */
.story-stage-column {
  order: -1;
  position: sticky;
  top: 74px;
  align-self: start;
  height: calc(100svh - 148px);
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.stage-headline {
  position: relative;
  width: 100%;
  height: 1.7rem;
  flex: none;
}
.stage-headline-item {
  position: absolute;
  inset: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.025em;
  color: var(--fg);
  text-align: center;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-6px);
  transition: opacity 0.52s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 0.58s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.stage-headline-item.is-active {
  opacity: 1;
  clip-path: inset(0 0% 0 0);
  transform: translateX(0);
}

.story-stage-panel {
  position: relative;
  width: min(360px, 100%);
  flex: 1;
  max-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-visual-panel {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.96) translateY(10px);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}
.story-visual-panel.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

/* Phone */
.phone-shell {
  position: relative;
  width: min(300px, 82%);
  aspect-ratio: 878 / 1856;
  border-radius: 14%;
  background: var(--phone-body);
  padding: 10px;
  filter: drop-shadow(0 9px 7px rgba(0, 0, 0, 0.1))
    drop-shadow(0 24px 48px rgba(0, 0, 0, 0.12));
}
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 24px;
  border-radius: 999px;
  background: var(--phone-body);
  z-index: 3;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 11%;
  overflow: hidden;
  background: var(--screen);
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Screenshot placeholders */
.ph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
}
.ph-label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #faf9f6;
  background: rgba(0, 0, 0, 0.34);
  padding: 7px 13px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.ph-blue   { background: linear-gradient(160deg, #44403c, #1c1917); }
.ph-indigo { background: linear-gradient(160deg, #57534e, #292524); }
.ph-teal   { background: linear-gradient(160deg, #3f3f46, #18181b); }

/* Chat panel (real, inside the phone) */
.phone-screen--chat { background: var(--bg); }
.chat {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 44px 12px 14px;
  background: var(--bg);
}
.chat-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.chat-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cta-bg);
  color: var(--cta-text);
  font-weight: 600;
  font-size: 15px;
  flex: none;
}
.chat-name { font-size: 13px; font-weight: 600; color: var(--fg); line-height: 1.1; }
.chat-status { font-size: 11px; color: var(--faint); }
.chat-call {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--card);
  color: var(--fg);
  flex: none;
}
.bubble {
  max-width: 82%;
  padding: 9px 12px;
  font-size: 12.5px;
  line-height: 1.38;
  letter-spacing: -0.1px;
  border-radius: 16px;
}
.bubble.in {
  align-self: flex-start;
  background: var(--card);
  color: var(--fg);
  border-bottom-left-radius: 5px;
}
.bubble.out {
  align-self: flex-end;
  background: var(--cta-bg);
  color: var(--cta-text);
  border-bottom-right-radius: 5px;
}
.chat-input {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 7px 7px 13px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--faint);
  font-size: 12px;
}
.chat-send {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cta-bg);
  color: var(--cta-text);
  font-size: 13px;
}

/* ===================== FAQ ===================== */

.faq-surface {
  border-top: 1px solid var(--border);
  padding: var(--section-y) 0 calc(var(--section-y) * 1.25);
}
.faq-inner {
  width: min(640px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}
.faq-eyebrow {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-bottom: 0.55rem;
}
.faq-heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--fg);
  margin-bottom: 40px;
}
.faq-item { border-top: 1px solid var(--border-strong); }
.faq-item:last-child { border-bottom: 1px solid var(--border-strong); }

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 1.15rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--fg);
}
.faq-icon {
  position: relative;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--card);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.15s ease,
    color 0.15s ease;
  color: var(--muted);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item--open .faq-icon {
  background: var(--cta-bg);
  color: var(--cta-text);
  transform: rotate(45deg);
}

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item--open .faq-answer-wrap { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer {
  padding-bottom: 1.3rem;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.1px;
  max-width: 56ch;
}
.faq-answer a {
  color: var(--fg);
  border-bottom: 1px solid var(--border-strong);
  transition: border-color 0.15s ease;
}
.faq-answer a:hover { border-bottom-color: var(--fg); }

/* ===================== Waitlist ===================== */

.waitlist-surface {
  padding: var(--section-y) 24px;
  border-top: 1px solid var(--border);
}
.waitlist-inner {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(36px, 7vw, 64px);
  border-radius: 32px;
  background: var(--fg);
  color: var(--bg);
  text-align: center;
}
.waitlist-eyebrow {
  margin-bottom: 0.65rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.65;
}
.waitlist-heading {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.waitlist-copy {
  max-width: 46ch;
  margin: 1rem auto 0;
  font-size: 17px;
  opacity: 0.72;
}
.waitlist-form {
  display: flex;
  gap: 8px;
  max-width: 520px;
  margin: 2rem auto 0;
  padding: 6px;
  border-radius: 999px;
  background: var(--bg);
}
.waitlist-form input {
  min-width: 0;
  flex: 1;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--fg);
  font: 500 16px/1 var(--font-sans);
}
.waitlist-form input::placeholder { color: var(--faint); }
.waitlist-form button {
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  font: 600 15px/1 var(--font-sans);
  cursor: pointer;
}
.waitlist-form button:disabled { cursor: wait; opacity: 0.6; }
.waitlist-status {
  min-height: 1.5em;
  margin-top: 0.85rem;
  font-size: 14px;
  opacity: 0.75;
}
.waitlist-status.is-error { color: #fca5a5; opacity: 1; }

/* ===================== Footer ===================== */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--card-fade);
}
.site-footer__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 24px clamp(1.4rem, 2.2vw, 1.8rem);
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  gap: clamp(1.6rem, 2.8vw, 3rem);
  align-items: start;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.brand--dark { color: var(--fg); }
.site-footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.site-footer__tagline {
  max-width: 32ch;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.1px;
  color: var(--muted);
}
.footer-app { margin-top: 2px; min-height: 42px; font-size: 15px; }

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}
.site-footer__column h2 {
  margin-bottom: 0.7rem;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 500;
}
.site-footer__column { display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer__column a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: var(--muted);
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer__column a:hover { color: var(--fg); }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}
.site-footer__social { display: flex; gap: 8px; }
.site-footer__social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--muted);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.site-footer__social a:hover { color: var(--fg); border-color: var(--muted); }
.site-footer__legal { font-size: 13px; font-weight: 500; color: var(--faint); }
.site-footer__compliance {
  margin-top: 1rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--faint);
}

/* ===================== Responsive ===================== */

@media (max-width: 860px) {
  .header-links { display: none; }
  .header-inner .btn-app { display: none; }
  .menu-btn { display: flex; }
  .header-inner { gap: 12px; padding: 6px 6px 6px 16px; }

  .story-rail { grid-template-columns: 1fr; gap: 1.4rem; }

  /* Phone moves to top, sticks while the steps scroll under it */
  .story-stage-column {
    order: -1;
    top: 64px;
    height: auto;
    min-height: 0;
    gap: 1rem;
    padding-bottom: 0.5rem;
  }
  .story-stage-panel {
    width: 100%;
    height: clamp(360px, 52svh, 520px);
    flex: none;
  }
  .phone-shell { width: auto; height: 100%; max-width: 260px; }
  .story-step { min-height: 72svh; }
}

@media (max-width: 520px) {
  .container { padding-inline: 18px; }
  .hero-cta-row { flex-direction: column; align-self: stretch; width: 100%; }
  .hero-cta { width: 100%; }
  .waitlist-surface { padding-inline: 18px; }
  .waitlist-inner { border-radius: 24px; }
  .waitlist-form { flex-direction: column; border-radius: 20px; }
  .waitlist-form input { min-height: 46px; text-align: center; }

  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__columns { grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; }
  .site-footer__bottom { flex-direction: column-reverse; align-items: flex-start; gap: 14px; }
}

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