/* ==========================================================================
   CDC Repairs — main stylesheet
   ========================================================================== */

:root {
  --navy-950: #0a1422;
  --navy-900: #0f1c2e;
  --navy-800: #16283f;
  --navy-700: #1f3656;
  --blue-600: #1b4f9c;
  --blue-500: #2563c4;
  --orange-500: #f07a1a;
  --orange-600: #d9650b;
  --orange-100: #fff1e4;
  --ink: #1a1f27;
  --ink-2: #4a5360;
  --ink-3: #6b7482;
  --line: #e2e6ec;
  --paper: #ffffff;
  --paper-2: #f4f6f9;
  --ok: #1d7a43;
  --err: #c2321f;

  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 1px 2px rgb(15 28 46 / .06), 0 6px 18px rgb(15 28 46 / .07);
  --shadow-lg: 0 18px 40px rgb(15 28 46 / .16);
  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --container: 1200px;
  --header-h: 76px;

  interpolate-size: allow-keywords;
  color-scheme: light;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: var(--blue-600); text-underline-offset: 3px; }
a:hover { color: var(--orange-600); }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.08; letter-spacing: .005em; margin: 0 0 .5em; color: var(--navy-900); text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.25rem); font-weight: 800; text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.45rem; font-weight: 700; }
p { margin: 0 0 1em; text-wrap: pretty; }
ul, ol { padding: 0; margin: 0; list-style: none; }
address { font-style: normal; }
:focus-visible { outline: 3px solid var(--orange-500); outline-offset: 2px; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.container--narrow { width: min(100% - 32px, 860px); }
.icon { width: 1.25em; height: 1.25em; flex: none; }
.icon--sm { width: .9em; height: .9em; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--orange-500); color: #fff; padding: 10px 16px; border-radius: var(--radius); font-weight: 600;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--navy-900); --fg: #fff; --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 46px; padding: .7em 1.35em;
  font: 600 1rem/1.1 var(--font-body); letter-spacing: .01em;
  color: var(--fg); background: var(--bg); border: 2px solid var(--bd); border-radius: var(--radius);
  text-decoration: none; cursor: pointer; position: relative; overflow: hidden; isolation: isolate;
  transition: transform .2s var(--ease-out), background-color .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn:hover { color: var(--fg); transform: translateY(-2px); box-shadow: 0 8px 20px rgb(15 28 46 / .18); }
.btn:active { transform: translateY(0); }
.btn .icon { transition: transform .25s var(--ease-out); }
.btn:hover .icon:last-child:not(:first-child) { transform: translateX(3px); }
/* light sweep on hover */
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, transparent 30%, rgb(255 255 255 / .28) 50%, transparent 70%);
  transform: translateX(-120%);
}
.btn:hover::after { transition: transform .6s var(--ease-out); transform: translateX(120%); }

.btn--accent { --bg: var(--orange-500); }
.btn--accent:hover { --bg: var(--orange-600); }
.btn--light { --bg: #fff; --fg: var(--navy-900); }
.btn--outline { --bg: transparent; --fg: #fff; --bd: rgb(255 255 255 / .45); }
.btn--outline:hover { --bd: #fff; --bg: rgb(255 255 255 / .08); }
.btn--outline-dark { --bg: transparent; --fg: var(--navy-900); --bd: var(--line); }
.btn--outline-dark:hover { --bd: var(--navy-900); }
.btn--ghost { --bg: var(--paper-2); --fg: var(--navy-900); }
.btn--lg { min-height: 54px; font-size: 1.075rem; padding-inline: 1.6em; }
.btn--block { width: 100%; }

/* ---------- Top bar & header ---------- */
.topbar { background: var(--navy-950); color: #b9c3d1; font-size: .875rem; }
.topbar__inner { display: flex; gap: 24px; align-items: center; min-height: 36px; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; color: inherit; text-decoration: none; }
.topbar__item .icon { color: var(--orange-500); width: 1em; height: 1em; }
.topbar a.topbar__item { margin-left: auto; }
.topbar a.topbar__item:hover { color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgb(255 255 255 / .96);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background-color .3s;
}
@supports (backdrop-filter: blur(8px)) { .site-header { background: rgb(255 255 255 / .88); backdrop-filter: saturate(1.4) blur(10px); } }
.site-header.is-scrolled { box-shadow: 0 6px 24px rgb(15 28 46 / .08); }
.site-header__inner { display: flex; align-items: center; gap: 28px; min-height: var(--header-h); transition: min-height .3s var(--ease-out); }
.site-header.is-scrolled .site-header__inner { min-height: 62px; }
.logo img { height: 44px; width: auto; transition: height .3s var(--ease-out); }
.site-header.is-scrolled .logo img { height: 38px; }

.nav { margin-right: auto; }
.nav__list { display: flex; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 4px; padding: 10px 12px;
  font-weight: 600; color: var(--navy-900); text-decoration: none; position: relative;
}
.nav__link::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  background: var(--orange-500); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out);
}
.nav__link:hover::after, .nav__link[aria-current]::after { transform: scaleX(1); }
.nav__link:hover { color: var(--navy-900); }
.nav__sub {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 270px; padding: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .25s var(--ease-out), visibility .2s;
}
.nav__sub::before { content: ""; position: absolute; inset: -10px 0 auto; height: 10px; }
.has-sub:hover .nav__sub, .has-sub:focus-within .nav__sub { opacity: 1; visibility: visible; transform: none; }
.nav__sub a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius); color: var(--navy-900); text-decoration: none; font-weight: 500; }
.nav__sub a .icon { color: var(--blue-600); }
.nav__sub a:hover, .nav__sub a[aria-current] { background: var(--paper-2); }
.nav__phone { display: none; }

.site-header__cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 10px; color: var(--navy-900); text-decoration: none; line-height: 1.15; }
.header-phone small { display: block; color: var(--ink-3); font-size: .78rem; }
.header-phone strong { font-family: var(--font-head); font-size: 1.3rem; }
.header-phone__icon {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange-100); color: var(--orange-600); position: relative;
}
@media (prefers-reduced-motion: no-preference) {
  .header-phone__icon::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--orange-500);
    animation: ring 2.4s var(--ease-out) infinite;
  }
}
@keyframes ring { 0% { transform: scale(1); opacity: .7; } 70%, 100% { transform: scale(1.6); opacity: 0; } }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--navy-900); cursor: pointer; }
.nav-toggle .icon { width: 28px; height: 28px; }
.nav-toggle__close { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #dfe6ef; background: var(--navy-900); overflow: hidden; padding: clamp(48px, 7vw, 96px) 0 0; }
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgb(255 255 255 / .035) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(0deg, rgb(255 255 255 / .035) 1px, transparent 1px) 0 0 / 48px 48px,
    radial-gradient(60% 80% at 85% 20%, #1c3960 0%, transparent 70%);
  mask-image: linear-gradient(to bottom, #000 60%, transparent);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.25fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: #fff; letter-spacing: .04em; text-transform: uppercase; font-size: .85rem; margin-bottom: 18px; }
.live-dot { width: 10px; height: 10px; border-radius: 50%; background: #3ecf72; position: relative; }
@media (prefers-reduced-motion: no-preference) {
  .live-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #3ecf72; animation: ring 2s ease-out infinite; }
}
.hero__title { color: #fff; margin-bottom: 20px; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__title .line > span { display: inline-block; }
.hero__title .accent { color: var(--orange-500); }
.hero__lead { font-size: 1.15rem; max-width: 36em; color: #c6d0dd; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 10px 24px; font-weight: 500; }
.hero__facts li { display: inline-flex; align-items: center; gap: 8px; }
.hero__facts .icon { color: var(--orange-500); }

.hero__card { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 32px); box-shadow: 0 30px 60px rgb(0 0 0 / .35); position: relative; }
.hero__card::before { content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 4px; background: var(--orange-500); border-radius: 0 0 4px 4px; }
.hero__card-title { font-size: 2rem; margin-bottom: 4px; }
.hero__card-sub { color: var(--ink-3); margin-bottom: 18px; }

/* hero entrance */
@media (prefers-reduced-motion: no-preference) {
  .hero__eyebrow, .hero__lead, .hero__actions, .hero__facts { animation: fade-up .8s var(--ease-out) both; }
  .hero__title .line > span { animation: rise 0.9s var(--ease-out) both; }
  .hero__title .line:nth-child(2) > span { animation-delay: .08s; }
  .hero__title .line:nth-child(3) > span { animation-delay: .16s; }
  .hero__lead { animation-delay: .3s; }
  .hero__actions { animation-delay: .42s; }
  .hero__facts { animation-delay: .54s; }
  .hero__card { animation: card-in 1s var(--ease-out) .25s both; }
}
@keyframes rise { from { transform: translateY(105%); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } }
@keyframes card-in { from { opacity: 0; transform: translateY(30px) scale(.97); } }

/* road + truck */
.hero__road { position: relative; height: 150px; margin-top: clamp(32px, 5vw, 56px); }
.road { position: absolute; left: 0; right: 0; bottom: 0; height: 44px; background: #0b1523; border-top: 3px solid #26374f; overflow: hidden; }
.road__dashes {
  position: absolute; left: 0; top: 50%; width: 200%; height: 4px; margin-top: -2px;
  background: repeating-linear-gradient(90deg, #f5c34a 0 44px, transparent 44px 96px);
}
.truck { position: absolute; bottom: 30px; width: min(420px, 70vw); left: 50%; translate: -50% 0; }
@media (prefers-reduced-motion: no-preference) {
  .road__dashes { animation: road 1.1s linear infinite; }
  .truck { animation: drive-in 2.4s var(--ease-out) .3s both; }
  .truck__body { animation: bob .45s ease-in-out infinite alternate; }
  .wheel { transform-box: fill-box; transform-origin: center; animation: spin .6s linear infinite; }
}
.wheel circle:first-child { stroke: #56647a; stroke-width: 3; }
.wheel circle:last-child { stroke: #1a1f27; stroke-width: 2; stroke-dasharray: 3 3; }
@keyframes road { to { transform: translateX(-96px); } }
@keyframes drive-in { from { translate: -170% 0; } }
@keyframes bob { to { transform: translateY(-1.5px); } }
@keyframes spin { to { transform: rotate(-360deg); } }

/* ---------- Brands marquee ---------- */
.brands { background: var(--navy-950); color: #8e9bb0; border-bottom: 1px solid #1d2c42; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; width: max-content; gap: 56px; padding: 18px 28px; }
.marquee__track li { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
@media (prefers-reduced-motion: no-preference) {
  .marquee__track { animation: marquee 40s linear infinite; }
  .marquee:hover .marquee__track { animation-play-state: paused; }
}
@keyframes marquee { to { transform: translateX(calc(-50% - 28px)); } }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--tint { background: var(--paper-2); }
.section--dark { background: var(--navy-900); color: #c6d0dd; }
.section--dark h2 { color: #fff; }
.section__head { max-width: 760px; margin-bottom: 44px; }
.section__head p { color: var(--ink-2); font-size: 1.1rem; }
.lead { font-size: 1.15rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.split--aside { grid-template-columns: minmax(0, 1fr) 360px; }
.split--map { align-items: center; }
.split--contact { grid-template-columns: .85fr 1.15fr; }

/* services grid */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: #fff; color: var(--ink); text-decoration: none; position: relative; overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s;
}
.service-card::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--orange-500);
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; color: var(--ink); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--navy-900); color: #fff; margin-bottom: 20px; transition: background-color .3s, transform .45s var(--ease-out);
}
.service-card__icon .icon { width: 28px; height: 28px; }
.service-card:hover .service-card__icon { background: var(--orange-500); transform: rotate(-8deg) scale(1.05); }
.service-card p { color: var(--ink-2); flex: 1; }
.service-card__more { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--blue-600); }
.service-card:hover .service-card__more .icon { transform: translateX(4px); }
.service-card__more .icon { transition: transform .3s var(--ease-out); }
.service-card--cta { background: var(--orange-500); border-color: var(--orange-500); color: #fff; }
.service-card--cta h3, .service-card--cta p, .service-card--cta .service-card__more { color: #fff; }
.service-card--cta:hover { color: #fff; }
.service-card--cta .service-card__icon { background: #fff; color: var(--orange-600); }
.service-card--cta:hover .service-card__icon { background: var(--navy-900); color: #fff; }
.service-card--cta::before { background: var(--navy-900); }

/* checklist */
.checklist li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; }
.checklist .icon { color: var(--orange-500); margin-top: .2em; }
.checklist--columns { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.section--dark .checklist li { border-bottom: 1px solid #22344f; color: #e3e9f1; font-weight: 500; padding: 14px 0; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; position: relative; }
.step { padding: 28px; border-radius: var(--radius-lg); background: var(--paper-2); position: relative; }
.step__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: #fff; color: var(--orange-600); box-shadow: var(--shadow); margin-bottom: 18px; }
.step p { color: var(--ink-2); margin: 0; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 54px; right: -20px; width: 20px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange-500) 0 6px, transparent 6px 10px);
}

/* service area */
.area-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; }
.area-list li { padding: 6px 12px; border-radius: 4px; background: #fff; border: 1px solid var(--line); font-weight: 500; font-size: .95rem; }
.map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; background: #dde3ea; }
.map iframe { width: 100%; height: 100%; border: 0; }
.map--small { aspect-ratio: 16 / 10; }

/* FAQ accordion */
.faq { display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; transition: box-shadow .3s, border-color .3s; }
.faq__item[open] { border-color: #c9d2de; box-shadow: var(--shadow); }
.faq__item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--navy-900);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .icon { transition: transform .3s var(--ease-out); color: var(--orange-500); }
.faq__item[open] summary .icon { transform: rotate(180deg); }
.faq__answer { padding: 0 22px 18px; color: var(--ink-2); }
.faq__answer p { margin: 0; }
/* smooth open/close where ::details-content is supported (progressive enhancement) */
.faq__item::details-content { block-size: 0; overflow: hidden; transition: block-size .35s var(--ease-out), content-visibility .35s allow-discrete; }
.faq__item[open]::details-content { block-size: auto; }
@media (prefers-reduced-motion: reduce) { .faq__item::details-content { transition: none; } }

/* ---------- Inner pages ---------- */
.page-hero { background: var(--navy-900); color: #c6d0dd; padding: clamp(40px, 6vw, 72px) 0; position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: repeating-linear-gradient(90deg, var(--orange-500) 0 40px, transparent 40px 70px);
  opacity: .9;
}
@media (prefers-reduced-motion: no-preference) {
  .page-hero::after { animation: road 2.2s linear infinite; right: -70px; }
  .page-hero h1, .page-hero__row, .page-hero__lead { animation: fade-up .8s var(--ease-out) both; }
  .page-hero__lead { animation-delay: .12s; }
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.2vw, 3.3rem); max-width: 22ch; }
.page-hero__row { display: flex; align-items: center; gap: 18px; }
.page-hero__row h1 { margin: 0; }
.page-hero__icon { display: grid; place-items: center; flex: none; width: 64px; height: 64px; border-radius: var(--radius); background: var(--orange-500); color: #fff; }
.page-hero__icon .icon { width: 32px; height: 32px; }
.page-hero__lead { font-size: 1.15rem; max-width: 46em; margin-top: 18px; }
.page-hero--404 { padding: clamp(80px, 12vw, 160px) 0; }

.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: .9rem; margin-bottom: 18px; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 6px; color: #5d6f88; }
.breadcrumbs a { color: #9fb0c6; text-decoration: none; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs [aria-current] { color: #fff; }

.prose h2 { margin-top: 1.6em; font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.prose h2:first-child { margin-top: 0; }
.summary { font-size: 1.15rem; padding: 20px 24px; background: var(--paper-2); border-radius: var(--radius-lg); color: var(--ink); }
.reasons li { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.reasons strong { color: var(--navy-900); }

.aside { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 20px; }
.aside__card { padding: 26px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-top: 4px solid var(--orange-500); }
.aside__card h2 { font-size: 1.6rem; }
.aside__nav { padding: 22px 26px; border-radius: var(--radius-lg); background: var(--paper-2); }
.aside__nav h2 { font-size: 1.25rem; }
.aside__nav a { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: var(--navy-900); text-decoration: none; font-weight: 500; }
.aside__nav a .icon { color: var(--blue-600); transition: transform .3s var(--ease-out); }
.aside__nav a:hover .icon { transform: translateX(3px); }

.service-list { display: grid; gap: 16px; }
.service-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
  padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); transition: box-shadow .3s, transform .3s var(--ease-out);
}
.service-row:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-row__icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: var(--radius); background: var(--navy-900); color: #fff; }
.service-row__icon .icon { width: 30px; height: 30px; }
.service-row h2 { font-size: 1.8rem; margin-bottom: .25em; }
.service-row h2 a { color: var(--navy-900); text-decoration: none; }
.service-row p { color: var(--ink-2); margin-bottom: 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags li { font-size: .85rem; padding: 4px 10px; border-radius: 4px; background: var(--paper-2); color: var(--ink-2); }

.facts dl { margin: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.facts dl > div { display: grid; grid-template-columns: 130px 1fr; gap: 12px; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.facts dl > div:last-child { border-bottom: 0; }
.facts dt { font-weight: 600; color: var(--ink-3); }
.facts dd { margin: 0; font-weight: 500; }

.contact-cards { display: grid; gap: 12px; }
.contact-card {
  display: flex; gap: 16px; align-items: center; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius-lg);
  color: var(--ink); text-decoration: none; transition: border-color .3s, transform .3s var(--ease-out);
}
a.contact-card:hover { border-color: var(--orange-500); transform: translateX(4px); color: var(--ink); }
.contact-card > .icon { width: 44px; height: 44px; padding: 10px; border-radius: 50%; background: var(--orange-100); color: var(--orange-600); }
.contact-card small { display: block; color: var(--ink-3); }
.contact-card strong { font-weight: 600; }
.form-panel { padding: clamp(24px, 4vw, 40px); border-radius: var(--radius-lg); background: var(--paper-2); }

.notice { display: flex; gap: 10px; align-items: center; padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-weight: 500; }
.notice--ok { background: #e6f5ec; color: var(--ok); }
.notice--err { background: #fdecea; color: var(--err); }

/* ---------- Form ---------- */
.quote-form { display: grid; gap: 14px; }
.quote-form--full { grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.quote-form--full .field--wide, .quote-form--full .btn, .quote-form--full .quote-form__note, .quote-form--full .quote-form__status { grid-column: 1 / -1; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; color: var(--navy-900); }
.req { color: var(--orange-600); }
.opt { font-weight: 400; color: var(--ink-3); }
.field input:not([type="checkbox"]), .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 11px 14px;
  font: inherit; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid #cfd6df; border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgb(37 99 196 / .15); }
.field input:user-invalid, .field textarea:user-invalid, .field .user-invalid-fallback { border-color: var(--err); background: #fff7f6; }
.field input:not([type="checkbox"]):user-valid { border-color: var(--ok); }
.field__error { display: none; margin: 6px 0 0; color: var(--err); font-size: .88rem; font-weight: 500; }
.field input:user-invalid ~ .field__error, .field .user-invalid-fallback ~ .field__error, .field [aria-invalid="true"] ~ .field__error { display: block; }
.field--check { display: grid; grid-template-columns: auto 1fr; gap: 4px 10px; align-items: start; }
.field--check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--orange-500); }
.field--check label { font-weight: 400; font-size: .92rem; color: var(--ink-2); margin: 0; }
.field--check .field__error { grid-column: 2; }
.quote-form__note { margin: 0; font-size: .9rem; color: var(--ink-3); }
.quote-form__status:empty { display: none; }
.quote-form__status { padding: 14px 16px; border-radius: var(--radius); font-weight: 500; }
.quote-form__status.is-ok { background: #e6f5ec; color: var(--ok); display: flex; gap: 10px; align-items: center; }
.quote-form__status.is-err { background: #fdecea; color: var(--err); }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.btn__spinner { display: none; width: 18px; height: 18px; border-radius: 50%; border: 2.5px solid rgb(255 255 255 / .4); border-top-color: #fff; }
.is-loading .btn__spinner { display: inline-block; animation: spin-cw .7s linear infinite; }
.is-loading { pointer-events: none; opacity: .85; }
@keyframes spin-cw { to { transform: rotate(360deg); } }
.success-check path { stroke-dasharray: 24; stroke-dashoffset: 24; animation: draw .5s .1s var(--ease-out) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.quote-form.is-sent .field, .quote-form.is-sent .btn { opacity: .5; }

/* ---------- CTA band + footer ---------- */
.cta-band { background: var(--orange-500); color: #fff; padding: 48px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-band h2 { color: #fff; margin-bottom: .2em; }
.cta-band p { margin: 0; max-width: 40em; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; flex: none; }
.cta-band .btn--accent { --bg: var(--navy-900); }
.cta-band .btn--accent:hover { --bg: var(--navy-950); }

.site-footer { background: var(--navy-950); color: #9aa7ba; font-size: .96rem; position: relative; }
.road-line { height: 4px; background: repeating-linear-gradient(90deg, #f5c34a 0 30px, transparent 30px 60px); opacity: .6; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding: 64px 0 40px; }
.site-footer__brand img { height: 44px; width: auto; margin-bottom: 18px; }
.site-footer__title { font-size: 1.15rem; color: #fff; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.site-footer__list li { padding: 4px 0; }
.site-footer a { color: #c8d2df; text-decoration: none; }
.site-footer a:hover { color: var(--orange-500); }
.site-footer__nap p { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.site-footer__nap .icon { color: var(--orange-500); margin-top: .2em; }
.site-footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px; padding: 20px 0 28px; border-top: 1px solid #1d2c42; font-size: .88rem; }
.site-footer__bottom p { margin: 0; }

.call-fab {
  display: none; position: fixed; right: 16px; bottom: 16px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%; place-items: center;
  background: var(--orange-500); color: #fff; box-shadow: 0 10px 24px rgb(240 122 26 / .45);
}
.call-fab .icon { width: 26px; height: 26px; }
@media (prefers-reduced-motion: no-preference) {
  .call-fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--orange-500); animation: ring 2s ease-out infinite; }
  .call-fab .icon { animation: wiggle 3s ease-in-out infinite; }
}
@keyframes wiggle { 0%, 88%, 100% { transform: rotate(0); } 91% { transform: rotate(-14deg); } 94% { transform: rotate(12deg); } 97% { transform: rotate(-8deg); } }

/* ---------- Scroll reveal ----------
   Native scroll-driven animation where supported; IntersectionObserver fallback in main.js */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    [data-reveal] {
      animation: reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 55%;
    }
  }
  html.js-reveal [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--d, 0s); }
  html.js-reveal [data-reveal].is-visible { opacity: 1; transform: none; }
}
@keyframes reveal { from { opacity: 0; transform: translateY(36px); } }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .header-phone { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .split--aside { grid-template-columns: 1fr; }
  .aside { position: static; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .topbar__addr { display: none; }
  .nav-toggle { display: inline-flex; }
  /* backdrop-filter would become the containing block of the fixed mobile menu */
  .site-header { backdrop-filter: none; background: #fff; }
  .site-header__cta .btn { display: none; }
  .nav {
    position: fixed; inset: var(--nav-top, var(--header-h)) 0 0 0; z-index: 49; margin: 0;
    background: #fff; padding: 20px 16px 32px; overflow-y: auto;
    display: flex; flex-direction: column; gap: 20px;
    transform: translateX(100%); visibility: hidden;
    transition: transform .4s var(--ease-out), visibility .4s;
  }
  .nav.is-open { transform: none; visibility: visible; }
  .nav__list { flex-direction: column; }
  .nav__link { font-size: 1.2rem; padding: 12px 4px; width: 100%; }
  .nav__link::after { display: none; }
  .nav__link .icon { display: none; }
  .nav__sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 8px; min-width: 0; }
  .nav__phone { display: inline-flex; }
  .nav-open .nav-toggle__open { display: none; }
  .nav-open .nav-toggle__close { display: block; }
  body.nav-open { overflow: hidden; }

  .hero__inner, .split, .split--contact { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .call-fab { display: grid; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  .topbar__inner { justify-content: center; }
  .topbar a.topbar__item { display: none; }
  .service-grid, .checklist--columns, .quote-form--full { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__actions .btn { width: 100%; }
  .facts dl > div { grid-template-columns: 1fr; gap: 2px; }
  .hero__road { height: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .topbar, .site-header, .cta-band, .call-fab, .hero__road, .brands, .quote-form { display: none !important; }
}
