/* =========================================================
   Baymont Auto Repair — speculative demo
   Design tokens
   ========================================================= */
:root {
  --navy-900: #0B1020;
  --navy-800: #121a30;
  --navy-700: #1a2440;
  --navy-600: #26324f;

  --blue-500: #2E6FE0;
  --blue-400: #4C8DFF;
  --blue-100: #dbe7fb;

  --paper: #ffffff;
  --paper-2: #f4f6fa;
  --line: #e2e6ee;

  --ink: #10141f;
  --ink-2: #414a5e;
  --ink-3: #6b7488;

  --on-dark: #f2f5fb;
  --on-dark-2: #a9b4ca;

  --star: #f5a524;

  --shell: 1180px;
  --pad: clamp(20px, 5vw, 40px);
  --radius: 14px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(11,16,32,.06), 0 4px 12px rgba(11,16,32,.06);
  --shadow-md: 0 10px 30px rgba(11,16,32,.10), 0 2px 6px rgba(11,16,32,.06);
  --shadow-lg: 0 30px 70px rgba(11,16,32,.20);

  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; color: inherit; }

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

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--blue-500);
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
}
.skip:focus { left: 12px; top: 12px; }

/* =========================================================
   Typography primitives
   ========================================================= */
.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 1.2rem + 2.8vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.section__lede {
  margin-top: 18px;
  color: var(--ink-2);
  max-width: 56ch;
}

.section { padding-block: clamp(72px, 9vw, 130px); }

.section__head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 66px); }

.stars { color: var(--star); letter-spacing: 2px; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: transparent;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1.5px solid var(--btn-bd);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              border-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--accent {
  --btn-bg: var(--blue-500);
  --btn-fg: #fff;
  --btn-bd: var(--blue-500);
  box-shadow: 0 6px 18px rgba(46,111,224,.32);
}
.btn--accent:hover { --btn-bg: var(--blue-400); --btn-bd: var(--blue-400); }

.btn--ghost {
  --btn-fg: #fff;
  --btn-bd: rgba(255,255,255,.42);
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.06);
}
.btn--ghost:hover { --btn-bd: #fff; background: rgba(255,255,255,.14); }

.btn--outline { --btn-bd: var(--line); --btn-fg: var(--ink); background: #fff; }
.btn--outline:hover { --btn-bd: var(--blue-500); --btn-fg: var(--blue-500); }

.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(11,16,32,.92);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,.08);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: #fff;
  margin-right: auto;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--blue-500);
  color: #fff;
  flex: none;
}
.brand__mark svg { width: 20px; height: 20px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .01em;
}
.brand__text span {
  font-size: 10px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--on-dark-2);
  font-weight: 500;
}

.nav { display: flex; gap: 30px; }
.nav a {
  position: relative;
  color: var(--on-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding-block: 6px;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--blue-400);
  transition: right .28s var(--ease);
}
.nav a:hover::after { right: 0; }

.header__cta { padding: 11px 18px; font-size: 14px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 11px 9px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span + span { margin-top: 6px; }
.header.is-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.header.is-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px var(--pad) 26px;
  background: rgba(11,16,32,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a {
  color: var(--on-dark);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-nav .btn { margin-top: 18px; border-bottom: 0; }
.header.is-open .mobile-nav { display: flex; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 96svh, 900px);
  display: flex;
  align-items: flex-end;
  padding-block: 160px 72px;
  background: var(--navy-900);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(.72) contrast(1.04);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,16,32,.86) 0%, rgba(11,16,32,.42) 34%, rgba(11,16,32,.80) 74%, rgba(11,16,32,.97) 100%),
    linear-gradient(90deg, rgba(11,16,32,.86) 0%, rgba(11,16,32,.20) 62%, transparent 100%);
}

.hero__inner { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-2);
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(76,141,255,.22);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 1.6rem + 6.2vw, 6.5rem);
  line-height: .93;
  letter-spacing: -0.015em;
  max-width: 15ch;
}
.hero__title em {
  font-style: normal;
  color: var(--blue-400);
}

.hero__lede {
  margin-top: 26px;
  max-width: 54ch;
  font-size: clamp(1rem, .95rem + .3vw, 1.19rem);
  color: rgba(255,255,255,.86);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.trustbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 30px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.15);
  list-style: none;
  padding-left: 0;
  font-size: 14px;
  color: rgba(255,255,255,.78);
}
.trustbar li { display: flex; align-items: center; gap: 8px; }
.trustbar strong { color: #fff; font-weight: 600; }
.trustbar .stars { font-size: 13px; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 3px; height: 7px;
  border-radius: 2px;
  background: #fff;
  animation: scrollDot 1.9s var(--ease) infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  55% { transform: translateY(13px); opacity: .15; }
}

/* =========================================================
   Stats
   ========================================================= */
.stats {
  background: var(--navy-800);
  color: #fff;
  padding-block: clamp(40px, 4.5vw, 62px);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.10);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--navy-800);
  padding: 26px clamp(16px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.6rem + 1.6vw, 3rem);
  line-height: 1;
  color: #fff;
}
.stat__unit {
  font-size: .42em;
  color: var(--blue-400);
  margin-left: 4px;
  letter-spacing: .02em;
}
.stat__label {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--on-dark-2);
}

/* =========================================================
   Services
   ========================================================= */
.services { background: var(--paper); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-700);
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }

.card__body { padding: 24px 24px 28px; }
.card__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1.1;
  margin-bottom: 9px;
}
.card__body p { color: var(--ink-2); font-size: 15.5px; }

.chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: clamp(30px, 3vw, 44px);
}
.chips__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-right: 4px;
}
.chip {
  padding: 7px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--paper-2);
}

/* =========================================================
   Why
   ========================================================= */
.why {
  position: relative;
  isolation: isolate;
  background: var(--navy-900);
  color: #fff;
  padding-block: clamp(84px, 10vw, 150px);
  overflow: hidden;
}
.why__media {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(.6);
}
.why__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(11,16,32,.97) 0%, rgba(11,16,32,.93) 46%, rgba(11,16,32,.62) 100%);
}

.why__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.why .section__title { margin-bottom: 24px; }
.why__copy p { color: rgba(255,255,255,.80); max-width: 54ch; }
.why__copy p + p { margin-top: 16px; }
.why__copy .btn { margin-top: 32px; }

.why__list { list-style: none; padding: 0; display: grid; gap: 2px; }
.why__list li {
  padding: 24px 26px;
  background: rgba(255,255,255,.05);
  border-left: 3px solid var(--blue-500);
  border-radius: 0 12px 12px 0;
  backdrop-filter: blur(3px);
}
.why__list h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.42rem;
  line-height: 1.15;
  margin-bottom: 6px;
}
.why__list p { color: var(--on-dark-2); font-size: 15px; }

/* =========================================================
   Reviews
   ========================================================= */
.reviews { background: var(--paper-2); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 26px);
}

.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}
.review .stars { font-size: 15px; margin-bottom: 16px; }
.review p:not(.stars) {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.62;
}
.review--short p:not(.stars) {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.18;
  color: var(--ink);
  font-weight: 600;
}
.review cite {
  display: block;
  margin-top: auto;
  padding-top: 20px;
  font-style: normal;
  font-weight: 600;
  font-size: 14.5px;
}
.review cite span { font-weight: 400; color: var(--ink-3); }

.reviews__cta { margin-top: clamp(32px, 4vw, 48px); text-align: center; }

/* =========================================================
   Financing
   ========================================================= */
.financing { background: var(--paper); }
.financing__inner {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.financing__copy p { color: var(--ink-2); max-width: 58ch; }
.financing__copy .section__title { margin-bottom: 22px; }
.financing__copy strong { color: var(--ink); font-weight: 600; }
.financing__note {
  margin-top: 18px;
  font-weight: 500;
  color: var(--ink) !important;
}
.financing__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.creds {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
}
.creds__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.creds ul { list-style: none; padding: 0; display: grid; gap: 12px; }
.creds li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 500;
  font-size: 15.5px;
}
.creds li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--blue-500);
  flex: none;
}

/* =========================================================
   Contact
   ========================================================= */
.contact {
  background: var(--navy-900);
  color: #fff;
  padding-block: clamp(72px, 9vw, 130px);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.contact .kicker { color: var(--blue-400); }
.contact__lede { margin-top: 16px; color: var(--on-dark-2); max-width: 46ch; }
.contact form { margin-top: 36px; display: grid; gap: 18px; }

.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-size: 14px; font-weight: 500; color: var(--on-dark); }
.field .opt { color: var(--on-dark-2); font-weight: 400; }

.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(255,255,255,.16);
  border-radius: 11px;
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 16px;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.36); }
.field input:hover, .field textarea:hover { border-color: rgba(255,255,255,.3); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 4px rgba(76,141,255,.18);
}

.field .error { font-size: 13.5px; color: #ff9a9a; min-height: 0; }
.field.has-error input, .field.has-error textarea { border-color: #ff8080; }

.form-success {
  margin-top: 6px;
  padding: 15px 18px;
  border-radius: 11px;
  background: rgba(76,141,255,.14);
  border: 1px solid rgba(76,141,255,.4);
  font-size: 15px;
  color: #fff;
}

.contact__panel {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  display: grid;
  gap: 30px;
}
.panel-block h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-dark-2);
  margin-bottom: 12px;
}
.panel-phone {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  transition: color .2s var(--ease);
}
.panel-phone:hover { color: var(--blue-400); }

.contact__panel address { font-style: normal; color: var(--on-dark); line-height: 1.6; }
.panel-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue-400);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}
.panel-link:hover { text-decoration: underline; }

.hours { width: 100%; border-collapse: collapse; font-size: 15px; }
.hours th, .hours td { padding: 8px 0; text-align: left; font-weight: 400; }
.hours th { color: var(--on-dark-2); width: 42%; }
.hours td { color: #fff; }
.hours tr + tr th, .hours tr + tr td { border-top: 1px solid rgba(255,255,255,.08); }
.hours .is-closed td { color: var(--on-dark-2); }

.panel-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  line-height: 0;
}
.panel-map iframe {
  width: 100%;
  height: 210px;
  border: 0;
  filter: grayscale(1) invert(.92) contrast(.86) hue-rotate(185deg);
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: #070b16;
  color: var(--on-dark-2);
  padding-block: clamp(52px, 6vw, 80px) 28px;
  font-size: 15px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 12px;
}
.footer__brand p { max-width: 44ch; line-height: 1.6; }

.footer__nav { display: grid; gap: 11px; align-content: start; }
.footer__nav a { text-decoration: none; }
.footer__nav a:hover { color: #fff; }

.footer__meta { display: grid; gap: 10px; align-content: start; }
.footer__meta a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
}
.footer__meta a:hover { color: var(--blue-400); }
.footer__meta address { font-style: normal; }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 26px;
  font-size: 13.5px;
}
.footer__disclaimer { color: #7d879c; }

/* =========================================================
   Sticky mobile call bar
   ========================================================= */
.call-bar {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 999px;
  background: var(--blue-500);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(11,16,32,.45);
}
.call-bar svg { width: 18px; height: 18px; }

/* =========================================================
   Scroll reveal (gated behind .js so no-JS still renders)
   ========================================================= */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .cards, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .why__inner, .financing__inner, .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: block; }
  .call-bar { display: flex; }
  .footer { padding-bottom: 96px; }
  .hero { padding-bottom: 92px; }
  .hero__scroll { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .cards, .review-grid, .stats__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .trustbar { gap: 12px 22px; font-size: 13.5px; }
  .review--short p:not(.stars) { font-size: 1.5rem; }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero__media, .why__media { display: none; }
  .hero { background: var(--navy-900) url('../https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?q=80&w=1200&auto=format&fit=crop') center/cover; }
  .why { background: var(--navy-900) url('../https://images.unsplash.com/photo-1517524008697-84bbe3c3fd98?q=80&w=1200&auto=format&fit=crop') center/cover; }
  .hero__scroll span { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover { transform: none; }
  .card:hover .card__media img { transform: none; }
  * { scroll-behavior: auto !important; }
}
