/* Zoe's Mobile Tire Service — site styles
   Yellow + black + white. Sharp corners, heavy type, dark contrast sections. */

:root {
  --yellow: #F7C600;
  --yellow-2: #FFD21A;
  --ink: #111111;
  --ink-2: #1A1A1A;
  --ink-3: #242424;
  --white: #FFFFFF;
  --paper: #F7F7F5;
  --muted: #6B6B6B;
  --muted-on-dark: #A3A3A0;
  --line: #E4E4E0;
  --line-dark: #2E2E2E;

  --font: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(72px, 10vw, 136px);
  --radius: 3px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

.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 { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--yellow); color: var(--ink); padding: 10px 16px; font-weight: 800; text-decoration: none; }
.skip:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.on-light :focus-visible, .section--light :focus-visible, .section--white :focus-visible { outline-color: var(--ink); }

.icon { width: 1.25em; height: 1.25em; flex: none; }

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

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .8125rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--yellow);
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: currentColor; }
.section--light .eyebrow, .section--white .eyebrow { color: var(--ink); }
.section--light .eyebrow::before, .section--white .eyebrow::before { background: var(--yellow); }

.h-display {
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.5rem, 6.4vw, 5.25rem); line-height: .94; letter-spacing: -.035em;
}
.h-section {
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(2rem, 4.6vw, 3.625rem); line-height: .98; letter-spacing: -.03em;
  text-wrap: balance;
}
.h-card { font-weight: 800; text-transform: uppercase; font-size: 1.125rem; letter-spacing: -.005em; line-height: 1.2; }
.lede { font-size: clamp(1.0625rem, 1.5vw, 1.25rem); line-height: 1.6; color: var(--muted); max-width: 40em; }
.section--dark .lede, .hero .lede, .page-hero .lede { color: var(--muted-on-dark); }
.hl { color: var(--yellow); }
.fine { font-size: .875rem; color: var(--muted); }
.section--dark .fine { color: var(--muted-on-dark); }

/* ---------- Buttons & CTA ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 22px;
  border: 2px solid transparent; border-radius: var(--radius);
  font-weight: 800; font-size: .9375rem; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; line-height: 1.1;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--yellow:hover { background: var(--yellow-2); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--ink-3); }
.btn--ghost { border-color: currentColor; background: transparent; }
.btn--ghost:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.btn--sm { min-height: 42px; padding: 9px 16px; font-size: .8125rem; }
.btn--lg { min-height: 60px; padding: 16px 30px; font-size: 1rem; }
.btn .icon-arrow { transition: transform .2s var(--ease); }
.btn:hover .icon-arrow { transform: translateX(4px); }

.cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; }
.cta__meta { display: flex; flex-direction: column; gap: 2px; }
.cta__phone { font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 1.875rem); letter-spacing: -.02em; line-height: 1.1; text-decoration: none; font-variant-numeric: tabular-nums; }
.cta__phone:hover { color: var(--yellow); }
.section--light .cta__phone:hover, .section--white .cta__phone:hover { color: inherit; text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; text-underline-offset: 4px; }
.cta__alt { display: inline-flex; gap: 8px; font-size: .8125rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-on-dark); }
.section--light .cta__alt, .section--white .cta__alt { color: var(--muted); }
.cta__alt a { text-decoration: none; border-bottom: 2px solid var(--yellow); }
.cta__alt a:hover { color: var(--yellow); }
.section--light .cta__alt a:hover, .section--white .cta__alt a:hover { color: var(--ink); }

.tagline {
  font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-on-dark);
  display: flex; flex-wrap: wrap; gap: 6px 14px;
}
.tagline span + span::before { content: "•"; color: var(--yellow); margin-right: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(17, 17, 17, .96);
  -webkit-backdrop-filter: saturate(140%) blur(8px); backdrop-filter: saturate(140%) blur(8px);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}
.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--white); }
.brand__mark { width: 38px; height: 38px; color: var(--yellow); transition: transform .6s var(--ease); }
.brand:hover .brand__mark { transform: rotate(45deg); }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-weight: 800; font-size: 1.375rem; letter-spacing: -.02em; text-transform: uppercase; }
.brand__sub { font-weight: 700; font-size: .625rem; letter-spacing: .2em; text-transform: uppercase; color: var(--yellow); margin-top: 5px; }

.nav { margin-left: auto; }
.nav__list { display: flex; gap: 6px; }
.nav__link {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px;
  font-weight: 700; font-size: .875rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; color: #D6D6D2;
  position: relative;
}
.nav__link::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 8px; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav__link:hover { color: var(--white); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--white); }
.nav__toggle { display: none; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta__num a { font-weight: 800; font-size: 1.0625rem; text-decoration: none; letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.header-cta__num a:hover { color: var(--yellow); }

@media (max-width: 899px) {
  :root { --header-h: 64px; }
  .site-header__inner { gap: 8px; }
  .brand__mark { width: 32px; height: 32px; }
  .brand__name { font-size: 1.1875rem; }
  .brand__sub { font-size: .5625rem; letter-spacing: .16em; }
  .header-cta { order: 2; margin-left: auto; }
  .header-cta__num { display: none; }
  .header-cta .btn span { display: none; }
  .header-cta .btn { width: 44px; height: 44px; min-height: 44px; padding: 0; }
  .nav { order: 3; margin-left: 0; }
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; background: none; border: 1px solid var(--line-dark); border-radius: var(--radius); cursor: pointer;
  }
  .nav__list {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0; padding: 8px var(--gutter) 20px;
    background: var(--ink); border-bottom: 1px solid var(--line-dark);
  }
  .nav.is-open .nav__list { display: flex; }
  .nav__link { width: 100%; min-height: 56px; padding: 0; font-size: 1.125rem; border-bottom: 1px solid var(--line-dark); }
  .nav__link::after { left: 0; right: auto; width: 32px; bottom: 12px; }
}
@media (min-width: 900px) and (max-width: 1099px) {
  .header-cta__num { display: none; }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section); position: relative; }
.section--dark { background: var(--ink); color: var(--white); }
.section--ink2 { background: var(--ink-2); color: var(--white); }
.section--light { background: var(--paper); }
.section--white { background: var(--white); }
.section__head { display: grid; gap: 20px; margin-bottom: clamp(40px, 6vw, 72px); max-width: 860px; }
.section__head--split { max-width: none; grid-template-columns: 1fr; align-items: end; }
@media (min-width: 900px) { .section__head--split { grid-template-columns: 1.1fr .9fr; gap: 48px; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--white);
  padding-block: clamp(40px, 7vw, 96px) clamp(56px, 8vw, 104px);
}
.hero::before {
  /* faint tread texture */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background:
    repeating-linear-gradient(115deg, transparent 0 46px, rgba(255,255,255,.018) 46px 60px),
    radial-gradient(60% 70% at 78% 40%, rgba(247,198,0,.10), transparent 70%);
}
.hero__grid { position: relative; display: grid; gap: 48px; align-items: center; }
@media (min-width: 1000px) { .hero__grid { grid-template-columns: 1.2fr .8fr; gap: 48px; } }
.hero__copy { display: grid; gap: 22px; justify-items: start; }
.hero h1 { max-width: 16ch; font-size: clamp(2.125rem, 5.6vw, 4.375rem); }
.hero__sub, .final .lede, .lede { text-wrap: pretty; }
.hero__sub { font-weight: 800; text-transform: uppercase; font-size: clamp(1.125rem, 2vw, 1.5rem); letter-spacing: .01em; line-height: 1.25; color: var(--yellow); }
.hero .lede { max-width: 34em; }
.hero .cta { margin-top: 8px; }
.hero .tagline { margin-top: 6px; }

.hero__visual { position: relative; aspect-ratio: 1 / 1; max-width: 560px; width: 100%; justify-self: center; }
.hero__visual::before {
  content: ""; position: absolute; inset: 6% -8% 6% 14%;
  border: 2px solid var(--yellow); opacity: .9;
}
.hero__visual picture { position: relative; display: block; width: 100%; height: 100%; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 60%; animation: settle 1.4s var(--ease) both; }
@keyframes settle { from { transform: scale(1.06); opacity: 0; } to { transform: none; opacity: 1; } }
.badge {
  position: absolute; left: 0; bottom: 6%;
  background: var(--yellow); color: var(--ink);
  padding: 16px 20px 14px; display: grid; gap: 2px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.badge__big { font-weight: 800; font-size: clamp(1.375rem, 2.4vw, 1.875rem); letter-spacing: -.02em; line-height: 1; text-transform: uppercase; }
.badge__small { font-weight: 800; font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; }
@media (max-width: 999px) {
  .hero__visual { max-width: 420px; }
  .hero__visual::before { inset: 6% -4% 6% 12%; }
}
@media (max-width: 599px) {
  .hero__visual { max-width: 300px; margin-top: -8px; }
  .badge { padding: 12px 14px 10px; left: -4px; }
}

/* ---------- Trust bar ---------- */
.trust { background: var(--white); border-bottom: 1px solid var(--line); }
.trust__list { display: grid; grid-template-columns: repeat(2, 1fr); }
.trust__item { display: grid; grid-template-columns: auto 1fr; gap: 4px 14px; align-items: start; padding: 26px 16px 26px 0; border-top: 1px solid var(--line); }
.trust__item:nth-child(-n+2) { border-top: 0; }
.trust__icon { grid-row: span 2; display: grid; place-items: center; width: 44px; height: 44px; background: var(--ink); color: var(--yellow); }
.trust__title { font-weight: 800; font-size: .875rem; letter-spacing: .08em; text-transform: uppercase; line-height: 1.25; }
.trust__text { font-size: .875rem; color: var(--muted); line-height: 1.45; }
.trust__call { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 0; border-top: 1px solid var(--line); font-weight: 700; }
.trust__call a { font-weight: 800; text-decoration: none; font-size: 1.125rem; border-bottom: 3px solid var(--yellow); }
@media (max-width: 599px) {
  .trust__list { grid-template-columns: 1fr; }
  .trust__item:nth-child(2) { border-top: 1px solid var(--line); }
}
@media (min-width: 1000px) {
  .trust__list { grid-template-columns: repeat(4, 1fr); }
  .trust__item { border-top: 0; padding: 32px 24px; border-left: 1px solid var(--line); }
  .trust__item:first-child { border-left: 0; padding-left: 0; }
}

/* ---------- Comparison (the core idea) ---------- */
.compare { display: grid; gap: 12px; margin-bottom: clamp(48px, 7vw, 88px); }
.compare__row { display: grid; grid-template-columns: 1fr; gap: 14px; padding: 22px; border: 1px solid var(--line); background: var(--white); }
.compare__row--zoe { background: var(--ink); color: var(--white); border-color: var(--ink); }
.compare__label { font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.compare__row--zoe .compare__label { color: var(--yellow); }
.compare__steps { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.compare__step { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; text-transform: uppercase; font-size: clamp(.875rem, 1.6vw, 1.125rem); letter-spacing: .02em; }
.compare__step .icon { width: 22px; height: 22px; }
.compare__row--shop .compare__step { color: #8A8A86; }
.compare__row--zoe .compare__step .icon { color: var(--yellow); }
.compare__sep { width: 18px; height: 18px; color: #B9B9B5; }
.compare__row--zoe .compare__sep { color: var(--yellow); }
.compare__result { font-size: .9375rem; color: var(--muted); }
.compare__row--zoe .compare__result { color: var(--muted-on-dark); }
.compare__row--zoe .compare__result strong { color: var(--white); }
@media (min-width: 900px) {
  .compare__row { grid-template-columns: 180px 1fr auto; align-items: center; padding: 26px 32px; gap: 24px; }
  .compare__steps { gap: 14px; }
}

/* ---------- Numbered feature columns ---------- */
.features { display: grid; gap: 0; grid-template-columns: 1fr; border-top: 2px solid var(--ink); }
.feature { padding: 28px 0; border-bottom: 1px solid var(--line); display: grid; gap: 10px; align-content: start; }
.feature__num { font-weight: 800; font-size: .8125rem; letter-spacing: .14em; color: var(--muted); }
.feature__num::after { content: ""; display: inline-block; width: 18px; height: 3px; background: var(--yellow); margin-left: 10px; vertical-align: middle; }
.feature p { color: var(--muted); font-size: 1rem; }
@media (min-width: 700px) { .features { grid-template-columns: repeat(2, 1fr); column-gap: 40px; } }
@media (min-width: 1100px) {
  .features { grid-template-columns: repeat(4, 1fr); column-gap: 0; }
  .feature { padding: 32px 28px 8px; border-bottom: 0; border-left: 1px solid var(--line); }
  .feature:first-child { border-left: 0; padding-left: 0; }
}
.section--dark .features { border-top-color: var(--yellow); }
.section--dark .feature { border-color: var(--line-dark); }
.section--dark .feature p, .section--dark .feature__num { color: var(--muted-on-dark); }

/* ---------- New & used tires ---------- */
.hl-mark { background: linear-gradient(transparent 58%, var(--yellow) 58%, var(--yellow) 92%, transparent 92%); padding: 0 .06em; }
.newtires__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1000px) { .newtires__grid { grid-template-columns: 1fr 1fr; gap: 72px; } }
.newtires__copy { display: grid; gap: 24px; }
.newtires__visual { position: relative; }
.newtires__visual img { width: 100%; max-height: 640px; object-fit: cover; }
.newtires__visual figcaption { position: absolute; right: 0; top: 24px; background: var(--yellow); color: var(--ink); font-weight: 800; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; padding: 8px 12px; }
.checks { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line-dark); }
.checks li { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-dark); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-size: .9375rem; }
.checks .icon { color: var(--yellow); width: 24px; height: 24px; }
@media (min-width: 600px) { .checks { grid-template-columns: 1fr 1fr; column-gap: 28px; } }
.section--light .checks, .section--white .checks { border-color: var(--line); }
.section--light .checks li, .section--white .checks li { border-color: var(--line); }
.section--light .checks .icon, .section--white .checks .icon { color: var(--ink); background: var(--yellow); padding: 3px; }
.disclaimer { font-size: .875rem; color: var(--muted-on-dark); border-left: 3px solid var(--yellow); padding-left: 14px; max-width: 36em; }
.section--light .disclaimer, .section--white .disclaimer { color: var(--muted); }

/* ---------- Services grid ---------- */
.svc-grid { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.svc {
  position: relative; display: grid; gap: 14px; align-content: start;
  padding: 32px 28px 36px; background: var(--white);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-decoration: none; transition: background-color .25s var(--ease);
}
.svc::after { content: ""; position: absolute; left: -1px; right: -1px; bottom: -1px; height: 4px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.svc:hover::after, .svc:focus-visible::after { transform: scaleX(1); }
.svc__icon { width: 52px; height: 52px; display: grid; place-items: center; background: var(--ink); color: var(--yellow); margin-bottom: 6px; }
.svc__icon .icon { width: 26px; height: 26px; }
.svc p { color: var(--muted); font-size: 1rem; }
.svc__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; font-weight: 800; font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase; }
.svc__more .icon { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.svc:hover .svc__more .icon { transform: translateX(4px); }
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; margin-top: 40px; }

/* ---------- Emergency ---------- */
.emergency { background: var(--ink); color: var(--white); overflow: hidden; }
.emergency::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 8px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 18px, var(--ink) 18px 36px);
}
.emergency__grid { display: grid; gap: 40px; align-items: end; }
@media (min-width: 1000px) { .emergency__grid { grid-template-columns: 1.3fr .7fr; gap: 64px; } }
.emergency__kicker { font-weight: 800; text-transform: uppercase; font-size: clamp(3rem, 11vw, 9rem); line-height: .85; letter-spacing: -.05em; color: transparent; -webkit-text-stroke: 2px #5A5A57; }
.emergency__big { font-weight: 800; text-transform: uppercase; font-size: clamp(2.25rem, 6vw, 5rem); line-height: .95; letter-spacing: -.035em; margin-top: 12px; }
.emergency__big .hl { display: block; }
.emergency__side { display: grid; gap: 28px; }
.emergency__side .lede { color: var(--muted-on-dark); }
.emergency__phone { display: block; font-weight: 800; font-size: clamp(2rem, 4.2vw, 3.25rem); letter-spacing: -.03em; line-height: 1; text-decoration: none; color: var(--yellow); font-variant-numeric: tabular-nums; }
.emergency__phone:hover { color: var(--yellow-2); }

/* ---------- Experience ---------- */
.exp__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1000px) { .exp__grid { grid-template-columns: .9fr 1.1fr; gap: 80px; } }
.exp__media { position: relative; }
.exp__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 85% 50%; }
.exp__media::after { content: ""; position: absolute; right: -14px; bottom: -14px; width: 42%; height: 42%; border-right: 4px solid var(--yellow); border-bottom: 4px solid var(--yellow); pointer-events: none; }
.exp__tag { position: absolute; left: 0; top: 24px; background: var(--ink); color: var(--white); padding: 12px 16px; font-weight: 800; letter-spacing: .14em; font-size: .75rem; text-transform: uppercase; }
.exp__tag span { color: var(--yellow); }
.exp__copy { display: grid; gap: 22px; }
.exp__copy > p { color: var(--muted); font-size: 1.0625rem; max-width: 38em; }
.points { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 2px solid var(--ink); margin-top: 8px; }
.point { padding: 20px 16px 20px 0; border-bottom: 1px solid var(--line); }
.point:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
.point__t { font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .9375rem; display: flex; align-items: center; gap: 10px; }
.point__t::before { content: ""; width: 10px; height: 10px; background: var(--yellow); }
.point p { color: var(--muted); font-size: .9375rem; margin-top: 4px; }
@media (min-width: 1200px) {
  .points { grid-template-columns: repeat(4, 1fr); }
  .point, .point:nth-child(even) { padding: 20px 16px; border-left: 1px solid var(--line); }
  .point:first-child { border-left: 0; padding-left: 0; }
}

/* ---------- Reviews ---------- */
.reviews { background: var(--yellow); color: var(--ink); }
.reviews__grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 900px) { .reviews__grid { grid-template-columns: 1.4fr auto; gap: 64px; } }
.reviews .eyebrow { color: var(--ink); }
.reviews .eyebrow::before { background: var(--ink); }
.reviews p { font-size: 1.125rem; max-width: 36em; margin-top: 16px; font-weight: 600; }
.reviews__actions { display: grid; gap: 12px; justify-items: start; }
.reviews .btn--dark { min-height: 60px; padding-inline: 28px; }
.reviews__call { font-weight: 800; text-decoration: none; letter-spacing: .02em; }
.reviews__call:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Service area map ---------- */
.area__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1000px) { .area__grid { grid-template-columns: .85fr 1.15fr; gap: 72px; } }
.area__copy { display: grid; gap: 22px; }
.area__ask { padding: 24px; background: var(--ink-2); border-left: 4px solid var(--yellow); display: grid; gap: 16px; }
.section--light .area__ask { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--yellow); }
.area__ask-t { font-weight: 800; font-size: 1.125rem; }
.map { width: 100%; height: auto; }
.map text { font-family: var(--font); }
.map__ring { transform-origin: 400px 300px; }
.map__pulse { transform-origin: 400px 300px; animation: pulse 3.2s var(--ease) infinite; }
@keyframes pulse { 0% { transform: scale(.3); opacity: .7; } 100% { transform: scale(2.4); opacity: 0; } }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 0; counter-reset: step; border-top: 2px solid var(--ink); }
.step { display: grid; grid-template-columns: auto 1fr; gap: 6px 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.step__n { grid-row: span 2; font-weight: 800; font-size: clamp(2.75rem, 5vw, 4rem); line-height: .85; letter-spacing: -.04em; color: var(--ink); -webkit-text-stroke: 0; }
.step__n span { color: var(--yellow); -webkit-text-stroke: 1.5px var(--ink); }
.step p { color: var(--muted); }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .step { grid-template-columns: 1fr; padding: 36px 32px 32px; border-bottom: 0; border-left: 1px solid var(--line); }
  .step:first-child { border-left: 0; padding-left: 0; }
  .step__n { grid-row: auto; margin-bottom: 14px; }
}
.section--dark .steps { border-top-color: var(--yellow); }
.section--dark .step { border-color: var(--line-dark); }
.section--dark .step__n { color: var(--white); }
.section--dark .step__n span { -webkit-text-stroke: 0; }
.section--dark .step p { color: var(--muted-on-dark); }
.steps-foot { margin-top: 44px; }

/* ---------- Final CTA ---------- */
.final { background: var(--ink); color: var(--white); overflow: hidden; }
.final::after {
  content: ""; position: absolute; right: -180px; top: 50%; width: 560px; height: 560px; transform: translateY(-50%);
  border-radius: 50%; border: 56px dashed rgba(247, 198, 0, .07); pointer-events: none;
}
.final__inner { position: relative; z-index: 1; display: grid; gap: 28px; justify-items: start; }
.final h2 { font-weight: 800; text-transform: uppercase; font-size: clamp(2.75rem, 8vw, 6.5rem); line-height: .9; letter-spacing: -.045em; }
.final h2 span { display: block; }
.final h2 span:nth-child(2) { color: var(--yellow); }
.final .lede { font-size: clamp(1.125rem, 1.8vw, 1.375rem); }

/* ---------- Page hero (Services) ---------- */
.page-hero { background: var(--ink); color: var(--white); padding-block: clamp(48px, 8vw, 104px); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .5; background: repeating-linear-gradient(115deg, transparent 0 46px, rgba(255,255,255,.018) 46px 60px); pointer-events: none; }
.page-hero__inner { position: relative; display: grid; gap: 24px; justify-items: start; }
.crumbs { display: flex; gap: 10px; font-size: .8125rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-on-dark); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--yellow); }
.crumbs li + li::before { content: "/"; margin-right: 10px; color: #555; }
.page-hero h1 { max-width: 14ch; }
.jump { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.jump a { display: inline-flex; align-items: center; min-height: 40px; padding: 8px 14px; border: 1px solid var(--line-dark); font-size: .8125rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; color: #D6D6D2; transition: border-color .2s, color .2s; }
.jump a:hover { border-color: var(--yellow); color: var(--white); }

/* ---------- Service detail blocks ---------- */
.svc-detail { display: grid; gap: 28px 64px; padding-block: clamp(48px, 7vw, 88px); border-top: 1px solid var(--line); }
.svc-detail:first-child { border-top: 0; padding-top: 0; }
.svc-detail:last-child { padding-bottom: 0; }
@media (min-width: 1000px) { .svc-detail { grid-template-columns: 320px 1fr; } }
.svc-detail__label { display: grid; gap: 14px; align-content: start; }
.svc-detail__n { font-weight: 800; font-size: 4.5rem; line-height: .8; letter-spacing: -.05em; color: var(--yellow); -webkit-text-stroke: 1.5px var(--ink); }
.svc-detail__name { font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .875rem; display: flex; align-items: center; gap: 10px; }
.svc-detail__name .icon { width: 22px; height: 22px; }
.svc-detail__body { display: grid; gap: 20px; max-width: 760px; }
.svc-detail__body h3 { font-weight: 800; text-transform: uppercase; font-size: clamp(1.625rem, 3.2vw, 2.5rem); line-height: 1; letter-spacing: -.025em; }
.svc-detail__body > p { color: var(--muted); font-size: 1.0625rem; }
.bullets { display: grid; gap: 10px; }
.bullets li { display: flex; gap: 12px; align-items: baseline; font-weight: 700; }
.bullets li::before { content: ""; flex: none; width: 10px; height: 10px; background: var(--yellow); transform: translateY(-1px); }
.svc-detail .cta { margin-top: 6px; }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; gap: 40px; }
@media (min-width: 1000px) { .faq__grid { grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; } .faq__side { position: sticky; top: calc(var(--header-h) + 32px); } }
.faq__side { display: grid; gap: 22px; }
.faq { border-top: 2px solid var(--ink); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; min-height: 44px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary h3 { font-weight: 800; font-size: 1.0625rem; text-transform: uppercase; letter-spacing: .02em; line-height: 1.3; }
.faq__item summary:hover h3 { text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; text-underline-offset: 5px; }
.faq__icon { flex: none; width: 36px; height: 36px; display: grid; place-items: center; background: var(--ink); color: var(--yellow); transition: transform .3s var(--ease), background-color .2s; }
.faq__item[open] .faq__icon { transform: rotate(45deg); background: var(--yellow); color: var(--ink); }
.faq__a { padding: 0 56px 26px 0; color: var(--muted); font-size: 1.0625rem; }

/* ---------- Footer ---------- */
.site-footer { background: #0B0B0B; color: #CFCFCB; padding-block: 72px 32px; font-size: .9375rem; }
.site-footer__top { display: grid; gap: 40px; }
@media (min-width: 700px) { .site-footer__top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .site-footer__top { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 48px; } }
.site-footer__brand { display: grid; gap: 20px; align-content: start; }
.site-footer__blurb { color: #9A9A96; max-width: 30em; }
.site-footer__h { font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
.site-footer__list { display: grid; gap: 8px; }
.site-footer__list a { text-decoration: none; }
.site-footer__list a:hover { color: var(--yellow); }
.site-footer__phone { display: inline-block; font-weight: 800; font-size: 1.625rem; letter-spacing: -.02em; color: var(--white); text-decoration: none; margin-bottom: 16px; }
.site-footer__phone:hover { color: var(--yellow); }
.site-footer__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.site-footer__actions .btn--ghost { color: var(--white); }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: 56px; padding-top: 24px; border-top: 1px solid #222; font-size: .8125rem; color: #8A8A86; }
.site-footer__legal { display: flex; gap: 20px; }
.linkish { background: none; border: 0; padding: 0; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; min-height: 24px; }
.linkish:hover { color: var(--yellow); }

/* ---------- Legal dialogs ---------- */
.legal { border: 0; padding: 0; max-width: 640px; width: calc(100% - 32px); background: var(--white); color: var(--ink); border-top: 6px solid var(--yellow); }
.legal::backdrop { background: rgba(0,0,0,.7); }
.legal__inner { position: relative; padding: 40px 32px 32px; display: grid; gap: 16px; }
.legal h2 { font-weight: 800; text-transform: uppercase; font-size: 1.5rem; letter-spacing: -.01em; }
.legal p { color: #444; }
.legal__close { position: absolute; right: 12px; top: 12px; width: 44px; height: 44px; display: grid; place-items: center; background: none; border: 0; cursor: pointer; }

/* ---------- Mobile call bar ---------- */
.mobilebar { display: none; }
@media (max-width: 899px) {
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .mobilebar {
    display: grid; grid-template-columns: 1.6fr 1fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    background: var(--ink); border-top: 1px solid var(--line-dark);
    box-shadow: 0 -10px 30px rgba(0,0,0,.25);
  }
  .mobilebar__btn {
    display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px;
    font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-size: .9375rem; text-decoration: none; border-radius: var(--radius);
  }
  .mobilebar__btn--call { background: var(--yellow); color: var(--ink); }
  .mobilebar__btn--text { background: var(--ink-3); color: var(--white); border: 1px solid #3a3a3a; }
  .mobilebar__num { letter-spacing: 0; font-variant-numeric: tabular-nums; }
}
@media (max-width: 359px) { .mobilebar__num { display: none; } }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

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

/* ---------- Photos added: truck + services hero ---------- */
.area__truck { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--line-dark); }
.area__truck img { width: 112px; height: auto; border: 2px solid var(--yellow); }
.area__truck p { color: var(--muted-on-dark); font-size: .9375rem; line-height: 1.45; }
.page-hero__grid { position: relative; display: grid; gap: 40px; align-items: center; }
@media (min-width: 1000px) { .page-hero__grid { grid-template-columns: 1.25fr .75fr; gap: 56px; } }
.page-hero__media { margin: 0; position: relative; max-width: 440px; }
.page-hero__media::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--yellow); }
.page-hero__media img { position: relative; width: 100%; aspect-ratio: 1; object-fit: cover; object-position: 40% 60%; }
.page-hero__media figcaption { position: absolute; left: 0; bottom: 20px; background: var(--yellow); color: var(--ink); font-weight: 800; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; padding: 8px 12px; }
figure { margin: 0; }
