/* ============================================================
   Dino Dispatch — R2 refresh direction for Dinomite Heating & Cooling
   Design tokens from the acquired brand system:
   navy #001441 · blue #007BB6 · yellow #FDB713 · fog #E9EDEF
   ============================================================ */

:root {
  --navy: #001441;
  --navy-deep: #000c2c;
  --blue: #007bb6;
  --blue-dark: #005f8e;
  --yellow: #fdb713;
  --yellow-dark: #e5a400;
  --fog: #e9edef;
  --paper: #ffffff;
  --ink: #001441;
  --shadow-hard: 8px 8px 0 rgba(0, 20, 65, 1);
  --shadow-hard-sm: 4px 4px 0 rgba(0, 20, 65, 1);
  --font-display: 'Archivo Black', 'Archivo', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --font-label: 'Archivo Narrow', 'Archivo', sans-serif;
  --wrap: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

a { color: var(--blue); }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Type helpers ---------- */

.eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--yellow);
  margin-right: 10px;
  vertical-align: middle;
}
.eyebrow--on-dark { color: var(--yellow); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: var(--navy);
}
.section-title--on-dark { color: var(--paper); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  border: 2px solid var(--navy);
  border-radius: 0;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
  box-shadow: var(--shadow-hard-sm);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(0, 20, 65, 1); }
.btn:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 rgba(0, 20, 65, 1); }
.btn img, .proof__chip img, .coverage__address img { flex-shrink: 0; }

.btn--action { background: var(--yellow); color: var(--navy); }
.btn--action:hover { background: var(--yellow-dark); }

.btn--navy { background: var(--navy); color: var(--paper); border-color: var(--navy); box-shadow: 4px 4px 0 var(--blue); }
.btn--navy:hover { box-shadow: 6px 6px 0 var(--blue); background: var(--navy-deep); }
.btn--navy:active { box-shadow: 2px 2px 0 var(--blue); }

.btn--light { background: var(--paper); color: var(--navy); }
.btn--light:hover { background: var(--fog); }

.btn--ghost { background: transparent; color: var(--navy); box-shadow: none; }
.btn--ghost:hover { background: var(--fog); box-shadow: none; transform: none; }

.btn--ghost-dark { background: transparent; color: var(--navy); }
.btn--ghost-dark:hover { background: var(--navy); color: var(--paper); }

.btn--lg { padding: 18px 32px; font-size: 18px; }
.btn--block { display: flex; width: 100%; }

/* ---------- Utility bar ---------- */

.utility-bar {
  background: var(--navy-deep);
  color: var(--fog);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.utility-bar__row {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 40px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.utility-bar__item { display: inline-flex; align-items: center; gap: 8px; }
.utility-bar__item img { flex-shrink: 0; }
.utility-bar__badge img { width: 18px; height: 18px; }
.utility-bar__area { opacity: 0.75; margin-right: auto; }
.utility-bar__badge { color: var(--yellow); }
.utility-bar__rating { opacity: 0.9; }
.utility-bar__phone { color: var(--paper); text-decoration: none; border-bottom: 2px solid var(--yellow); }
.utility-bar__phone:hover { color: var(--yellow); }

/* ---------- Header ---------- */

.site-header {
  background: var(--paper);
  border-bottom: 3px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 200ms ease;
}
.site-header.is-stuck { box-shadow: 0 6px 0 rgba(0, 20, 65, 0.12); }
.site-header__row {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 88px;
}
.site-header__logo { flex-shrink: 0; }
.site-header__logo img { width: 168px; height: auto; }

.site-nav { margin-left: auto; }
.site-nav__list {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__list a {
  display: block;
  padding: 10px 12px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

@media (max-width: 1500px) and (min-width: 1181px) {
  .site-header__row { gap: 18px; }
  .site-header__logo img { width: 148px; }
  .site-nav__list a { padding: 10px 8px; font-size: 13.5px; }
  .site-header__call { display: none; }
}
.site-nav__list a:hover { border-color: var(--navy); background: var(--yellow); }

.site-header__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.site-header__call { padding: 10px 16px; font-size: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: var(--paper);
  border: 2px solid var(--navy);
  cursor: pointer;
}
.nav-toggle span { display: block; height: 3px; background: var(--navy); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-toggle span { transition: transform 180ms ease, opacity 180ms ease; }

/* ---------- Mobile nav ---------- */

.mobile-nav {
  background: var(--navy);
  border-bottom: 4px solid var(--yellow);
  position: sticky;
  top: 91px;
  z-index: 99;
}
.mobile-nav ul { list-style: none; margin: 0; padding: 12px 24px; }
.mobile-nav ul a {
  display: block;
  padding: 13px 4px;
  color: var(--paper);
  text-decoration: none;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-nav ul a:hover { color: var(--yellow); }
.mobile-nav__actions { padding: 8px 24px 24px; display: grid; gap: 12px; }

/* ---------- Hero ---------- */

.hero {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 96px),
    var(--navy);
  color: var(--paper);
  padding: 96px 0 104px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.hero__title::after {
  content: "";
  display: block;
  width: 96px;
  height: 8px;
  background: var(--yellow);
  margin-top: 24px;
}
.hero__sub { font-size: 19px; max-width: 34em; color: #c9d4ea; margin: 0 0 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }
.hero__proof {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__proof li {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 14px;
}
.hero__proof li::before { content: "▸ "; color: var(--yellow); }

.hero__media {
  margin: 0;
  position: relative;
  border: 3px solid var(--paper);
  box-shadow: 12px 12px 0 var(--blue);
}
.hero__media img { width: 100%; height: auto; }
.hero__ticket {
  position: absolute;
  left: -20px;
  bottom: 28px;
  background: var(--yellow);
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-hard-sm);
  padding: 14px 20px;
  display: grid;
  gap: 2px;
}
.hero__ticket-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero__ticket-value { font-weight: 900; font-size: 18px; }

/* ---------- Router ---------- */

.router { background: var(--fog); padding: 104px 0; }
.router__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}
.route-card {
  border: 3px solid var(--navy);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-hard);
}
.route-card--now { background: var(--yellow); }
.route-card--planned { background: var(--navy); color: var(--paper); }
.route-card__tag {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0;
}
.route-card--now .route-card__tag { color: var(--navy); opacity: 0.75; }
.route-card--planned .route-card__tag { color: var(--yellow); }
.route-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
}
.route-card__text { margin: 0; font-size: 17px; max-width: 34em; }
.route-card--planned .route-card__text { color: #c9d4ea; }
.route-card__links {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.route-card__links a {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 7px 12px;
  border: 2px solid currentColor;
}
.route-card--now .route-card__links a { color: var(--navy); }
.route-card--now .route-card__links a:hover { background: var(--navy); color: var(--yellow); }
.route-card--planned .route-card__links a { color: var(--paper); }
.route-card--planned .route-card__links a:hover { background: var(--paper); color: var(--navy); }
.route-card .btn { margin-top: auto; }
.route-card--now .btn--navy { box-shadow: 4px 4px 0 rgba(0, 20, 65, 0.35); }

/* ---------- Service board ---------- */

.board {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 72px),
    var(--navy-deep);
  padding: 104px 0;
}
.board__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.job-card {
  position: relative;
  background: var(--paper);
  border: 3px solid var(--navy);
  box-shadow: var(--shadow-hard);
  padding: 32px 28px 28px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.job-card:hover { transform: translate(-4px, -4px); box-shadow: 12px 12px 0 var(--blue); }
.job-card__num {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--yellow);
  border: 3px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 20px;
  padding: 6px 12px;
}
.job-card__icon { width: 64px; height: 64px; object-fit: contain; }
.job-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0;
}
.job-card__text { margin: 0; font-size: 15.5px; color: #2a3a5f; flex: 1; }
.job-card__go {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.job-card__go::after { content: " →"; }
.job-card:hover .job-card__go { color: var(--navy); }

/* ---------- Proof ---------- */

.proof { background: var(--paper); padding: 104px 0; }
.proof__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.proof__medal {
  margin: 0;
  border: 3px solid var(--navy);
  box-shadow: var(--shadow-hard);
  background: var(--paper);
  padding: 24px;
}
.proof__copy p { max-width: 36em; }
.proof__chips { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.proof__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-hard-sm);
  padding: 10px 16px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Coverage ---------- */

.coverage { background: var(--blue); color: var(--paper); padding: 104px 0; }
.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.coverage__copy p { color: #dff0fa; max-width: 34em; }
.coverage__towns {
  list-style: none;
  margin: 28px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.coverage__towns li {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--paper);
  padding: 8px 14px;
}
.coverage__towns li:first-child { background: var(--yellow); border-color: var(--navy); color: var(--navy); }
.coverage__address {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--paper) !important;
  margin-bottom: 28px;
}
.coverage__address img { width: 34px; height: 34px; }
.coverage__media { margin: 0; position: relative; border: 3px solid var(--navy); box-shadow: 12px 12px 0 var(--navy); }
.coverage__map {
  position: absolute;
  right: -16px;
  bottom: -28px;
  width: 200px;
  border: 3px solid var(--navy);
  box-shadow: var(--shadow-hard-sm);
  background: var(--paper);
}
.coverage__map img { width: 100%; height: auto; }

/* ---------- Maintenance plan ---------- */

.plan { background: var(--fog); padding: 104px 0; }
.plan__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.plan__media { margin: 0; border: 3px solid var(--navy); box-shadow: 12px 12px 0 var(--yellow); }
.plan__copy p { max-width: 34em; }
.plan__actions { margin-top: 28px; }

/* ---------- About ---------- */

.about { background: var(--paper); padding: 104px 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  align-items: center;
}
.about__copy p { max-width: 36em; }
.about__copy .btn { margin-top: 12px; }
.about__media {
  margin: 0;
  background: var(--yellow);
  border: 3px solid var(--navy);
  box-shadow: var(--shadow-hard);
  padding: 24px;
}

/* ---------- Reviews ---------- */

.reviews { background: var(--navy); padding: 104px 0; color: var(--paper); }
.reviews__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.reviews__media { margin: 0; position: relative; border: 3px solid var(--paper); box-shadow: 12px 12px 0 var(--blue); }
.reviews__rating {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 20, 65, 0.92);
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.reviews__rating strong { color: var(--yellow); font-size: 20px; }
.reviews__stars { display: inline-flex; gap: 2px; }
.reviews__cards { display: grid; gap: 22px; }
.review-card {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--navy-deep);
  box-shadow: 6px 6px 0 var(--blue);
  padding: 26px 28px;
}
.review-card p { margin: 0 0 16px; font-size: 16px; }
.review-card footer {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review-card cite { font-style: normal; color: var(--navy); }
.review-card footer span { color: var(--blue); font-size: 12px; }
.reviews__cards .btn { justify-self: start; }

/* ---------- Extras ---------- */

.extras { background: var(--fog); padding: 104px 0; }
.extras__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.extra-card {
  background: var(--paper);
  border: 3px solid var(--navy);
  box-shadow: var(--shadow-hard);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.extra-card__art { width: 110px; height: auto; flex-shrink: 0; }
.extra-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.extra-card p { margin: 0 0 20px; }

/* ---------- Final CTA ---------- */

.final-cta {
  background:
    linear-gradient(90deg, rgba(0, 20, 65, 0.96) 0%, rgba(0, 20, 65, 0.88) 55%, rgba(0, 20, 65, 0.55) 100%),
    url('../assets/photo-dispatch-band.jpg') right center / cover no-repeat,
    var(--navy);
  color: var(--paper);
  padding: 104px 0;
}
.final-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.final-cta__text { color: #c9d4ea; max-width: 30em; }
.final-cta__actions { display: grid; gap: 16px; justify-items: start; }
.final-cta__form { width: 100%; margin-top: 12px; }
.final-cta__form label {
  display: block;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--yellow);
}
.final-cta__form-row { display: flex; gap: 12px; }
.final-cta__form input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 2px solid var(--navy);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
}
.final-cta__form-note { font-size: 13px; color: #9fb2d4; margin: 10px 0 0; }

/* ---------- Footer ---------- */

.site-footer { background: var(--navy-deep); color: #c9d4ea; padding: 80px 0 0; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
}
.site-footer__logo { width: 180px; height: auto; background: var(--paper); border: 2px solid var(--paper); padding: 8px; margin-bottom: 20px; }
.site-footer__brand p { max-width: 30em; font-size: 15px; }
.site-footer__badges { width: 100%; max-width: 360px; background: var(--paper); padding: 12px; margin-top: 20px; }
.site-footer__col h3 {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 18px;
}
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer__col a { color: #c9d4ea; text-decoration: none; font-size: 15px; }
.site-footer__col a:hover { color: var(--yellow); }
.site-footer__col a.btn--action { color: var(--navy); font-size: 16px; }
.site-footer__phone {
  font-family: var(--font-display);
  font-size: 26px !important;
  color: var(--paper) !important;
}
.site-footer__phone:hover { color: var(--yellow) !important; }
.site-footer__contact .btn { margin-top: 14px; }
.site-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  padding-bottom: 24px;
}
.site-footer__legal p { margin: 0; font-size: 12.5px; color: #7e90b8; max-width: 90em; }

/* ---------- Reveal motion ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn, .job-card, .nav-toggle span { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1180px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header__actions { margin-left: auto; }
}

@media (max-width: 1020px) {
  .hero__grid,
  .router__grid,
  .proof__grid,
  .coverage__grid,
  .plan__grid,
  .about__grid,
  .reviews__grid,
  .extras__grid,
  .final-cta__grid { grid-template-columns: 1fr; }
  .board__grid { grid-template-columns: 1fr 1fr; }
  .coverage__map { right: 12px; bottom: -24px; width: 170px; }
  .proof__medal { max-width: 420px; }
  .about__media { max-width: 420px; }
  .hero__media { margin-top: 8px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .utility-bar__row { flex-wrap: wrap; gap: 8px 18px; padding-top: 10px; padding-bottom: 10px; }
  .utility-bar__area { display: none; }
  .utility-bar__rating { display: none; }
  .utility-bar__phone { margin-left: auto; }
  .site-header__row { min-height: 72px; gap: 14px; }
  .site-header__logo img { width: 132px; }
  .site-header__call { display: none; }
  .site-header__actions .btn--action { padding: 10px 14px; font-size: 13px; }
  .mobile-nav { top: 75px; }

  .hero { padding: 64px 0 72px; }
  .hero__grid { gap: 44px; }
  .hero__cta .btn { width: 100%; }
  .hero__ticket { left: 0; bottom: 16px; padding: 10px 14px; }
  .hero__ticket-value { font-size: 15px; }

  .router, .board, .proof, .coverage, .plan, .about, .reviews, .extras, .final-cta { padding: 72px 0; }
  .route-card { padding: 28px 22px; box-shadow: 6px 6px 0 rgba(0, 20, 65, 1); }
  .board__grid { grid-template-columns: 1fr; }
  .job-card { box-shadow: 6px 6px 0 rgba(0, 20, 65, 1); }

  .proof__grid { gap: 40px; }
  .coverage__map { position: static; width: 100%; margin-top: 16px; box-shadow: none; }
  .coverage__media { box-shadow: 8px 8px 0 var(--navy); }
  .plan__media { box-shadow: 8px 8px 0 var(--yellow); }
  .reviews__media { box-shadow: 8px 8px 0 var(--blue); }
  .reviews__rating { position: static; flex-wrap: wrap; }
  .extra-card { flex-direction: column; padding: 26px 22px; box-shadow: 6px 6px 0 rgba(0, 20, 65, 1); }
  .final-cta__form-row { flex-direction: column; }

  .site-footer__grid { grid-template-columns: 1fr; gap: 40px; }
}
