/* =====================================================================
   M.N.O Specialist Roofing & Exteriors — public site styles
   Palette taken from the logo and the van livery: gloss black, livery red,
   brushed silver and white.
   ===================================================================== */

:root {
  --red: #d71920;
  --red-bright: #ea2830;
  --red-dark: #a8101a;
  --red-deep: #7c0c13;

  --black: #0b0b0d;
  --ink-900: #111114;
  --ink-800: #1a1a1e;
  --ink-700: #26262b;
  --steel: #3a3b41;
  --silver-500: #8e9097;
  --silver-300: #c7c9ce;
  --silver-200: #dedfe3;
  --silver-100: #eeeff1;
  --paper: #f5f5f6;
  --white: #fff;

  --text: #1b1b1f;
  --muted: #5b5d65;
  --line: #e2e3e7;
  --wa: #25d366;

  --font: 'Archivo', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 10px -4px rgba(11, 11, 13, .18);
  --shadow: 0 22px 44px -26px rgba(11, 11, 13, .45);
  --shadow-red: 0 12px 26px -12px rgba(215, 25, 32, .75);
  --container: 1220px;
  --header-h: 84px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* --------------------------------------------------------------- Base */
*, *::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.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: var(--red); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--red-dark); }
button { font: inherit; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.1; font-weight: 800; font-stretch: 112%; letter-spacing: -.01em; color: inherit; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 2px; }
[hidden] { display: none !important; }

.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-link { position: absolute; left: 12px; top: -60px; z-index: 1000; background: var(--black); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm); font-weight: 700; }
.skip-link:focus { top: 12px; color: #fff; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; }

.ico { width: 1.15em; height: 1.15em; flex: none; vertical-align: -.2em; }
.ico-xs { width: .85em; height: .85em; }
.ico-wa { color: var(--wa); }

/* ------------------------------------------------------------ Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .85em 1.35em; border: 2px solid transparent; border-radius: var(--radius-sm);
  font-weight: 800; font-stretch: 108%; font-size: .9rem; letter-spacing: .03em; text-transform: uppercase;
  line-height: 1.2; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s var(--ease), box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .ico { transition: transform .2s var(--ease); }
.btn:hover .ico:last-child:not(:first-child) { transform: translateX(3px); }
.btn--lg { padding: 1.02em 1.6em; font-size: .95rem; }
.btn--sm { padding: .6em 1em; font-size: .8rem; }
.btn--block { width: 100%; }

.btn--red { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn--red:hover { background: var(--red-dark); color: #fff; }
.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: var(--ink-700); color: #fff; }
.btn--white { background: #fff; color: var(--black); }
.btn--white:hover { background: var(--silver-100); color: var(--black); }
.btn--outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn--outline:hover { background: var(--black); color: #fff; }
.btn--outline-light { background: rgba(255,255,255,.04); color: #fff; border-color: rgba(255,255,255,.55); }
.btn--outline-light:hover { background: #fff; color: var(--black); border-color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn-row--center { justify-content: center; }
.linklike { background: none; border: 0; padding: 0; color: inherit; cursor: pointer; text-decoration: none; }
.linklike:hover { color: #fff; text-decoration: underline; }

/* ----------------------------------------------------------- Eyebrows */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55em; margin: 0 0 14px;
  font-size: .8rem; font-weight: 800; font-stretch: 115%; letter-spacing: .14em; text-transform: uppercase; color: var(--red);
}
.eyebrow .ico { width: 1.25em; height: 1.25em; color: var(--red); }
.eyebrow--light { color: #fff; }
.eyebrow--center { display: flex; justify-content: center; }

/* ------------------------------------------------ Announcement & topbar */
.announce { background: var(--red); color: #fff; font-weight: 700; font-size: .9rem; text-align: center; padding: 8px 0; }
.announce .ico { vertical-align: -.2em; }

.topbar { background: var(--black); color: var(--silver-300); font-size: .84rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; }
.topbar__note { margin: 0; display: flex; align-items: center; gap: .45em; flex-wrap: wrap; }
.topbar__note strong { color: #fff; font-weight: 700; }
.topbar__note .ico { color: var(--red-bright); }
.topbar__sep { opacity: .4; margin: 0 .3em; }
.topbar__links { list-style: none; display: flex; align-items: center; gap: 20px; }
.topbar__links a { color: var(--silver-300); text-decoration: none; display: inline-flex; align-items: center; gap: .45em; }
.topbar__links a:hover { color: #fff; }
.topbar__social .ico { width: 1.05em; height: 1.05em; }

/* ------------------------------------------------------------- Header */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow .25s; }
.site-header.is-scrolled { box-shadow: 0 10px 30px -18px rgba(0,0,0,.35); }
.site-header::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: linear-gradient(90deg, var(--black) 0 22%, var(--red) 22% 100%); }
.site-header__inner { display: flex; align-items: center; gap: 28px; height: var(--header-h); }

.brand { display: block; flex: none; }
.brand img { height: 62px; width: auto; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav__head, .main-nav__cta { display: none; }
.main-nav__list { list-style: none; display: flex; align-items: center; gap: 4px; }
.main-nav__list > li { position: relative; display: flex; align-items: center; }
.main-nav__list > li > a {
  position: relative; display: block; padding: 30px 14px; color: var(--black); text-decoration: none;
  font-weight: 700; font-stretch: 106%; font-size: .98rem;
}
.main-nav__list > li > a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 22px; height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.main-nav__list > li > a:hover::after,
.main-nav__list > li.is-active > a::after { transform: scaleX(1); }
.main-nav__list > li > a:hover { color: var(--black); }

.dropdown-toggle { display: none; background: none; border: 0; color: inherit; padding: 6px; cursor: pointer; }
.has-dropdown > a { padding-right: 30px !important; }
.has-dropdown > a::before {
  content: ""; position: absolute; right: 12px; top: 50%; width: 7px; height: 7px; margin-top: -6px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); opacity: .6;
}
.dropdown {
  position: absolute; top: 100%; left: 50%; width: 560px; padding: 18px; background: #fff;
  border-radius: 0 0 var(--radius) var(--radius); border-top: 3px solid var(--red); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: opacity .2s, transform .2s var(--ease), visibility .2s;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown, .has-dropdown.is-open .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown__grid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.dropdown__grid a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius-sm); color: var(--black); text-decoration: none; font-weight: 600; font-size: .95rem; line-height: 1.25; }
.dropdown__grid a:hover { background: var(--paper); color: var(--red-dark); }
.dropdown__icon { display: grid; place-items: center; width: 36px; height: 36px; flex: none; border-radius: 8px; background: var(--black); color: #fff; }
.dropdown__grid a:hover .dropdown__icon { background: var(--red); }
.dropdown__all { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; padding: 12px; border-radius: var(--radius-sm); background: var(--paper); color: var(--black); font-weight: 700; text-decoration: none; font-size: .9rem; }
.dropdown__all:hover { background: var(--black); color: #fff; }

.header-actions { display: flex; align-items: center; gap: 18px; flex: none; }
.header-call { display: flex; align-items: center; gap: 10px; color: var(--black); text-decoration: none; }
.header-call__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.header-call__icon .ico { width: 20px; height: 20px; }
.header-call__text { display: flex; flex-direction: column; line-height: 1.15; }
.header-call__text small { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.header-call__text strong { font-size: 1.15rem; font-stretch: 110%; font-weight: 800; }
.header-call:hover strong { color: var(--red); }
.nav-toggle { display: none; place-items: center; width: 46px; height: 46px; border-radius: var(--radius-sm); border: 0; background: var(--black); color: #fff; cursor: pointer; }
.nav-toggle .ico { width: 24px; height: 24px; }
.nav-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 190; background: rgba(11,11,13,.6); }

/* --------------------------------------------------------------- Hero */
.hero { position: relative; overflow: hidden; background: var(--black); color: #fff; padding: 72px 0 132px; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -2;
  background:
    radial-gradient(900px 500px at 12% 10%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, #121215 0%, var(--black) 100%);
}
.hero__stripes, .page-hero__stripes, .fleet__stripes, .quote-info__stripes {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(118deg,
    transparent 0 57%,
    var(--red) 57% 62.5%,
    transparent 62.5% 65.5%,
    var(--red-dark) 65.5% 67%,
    transparent 67%);
}
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.hero__title {
  font-size: clamp(2.35rem, 5.2vw, 4.2rem); font-weight: 900; font-stretch: 118%; text-transform: uppercase;
  line-height: .98; letter-spacing: -.015em; margin-bottom: 22px;
}
.hero__title span { color: var(--red-bright); display: inline-block; }
.hero__lead { font-size: 1.15rem; color: var(--silver-300); max-width: 560px; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__points { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; font-size: .95rem; color: #fff; font-weight: 600; }
.hero__points li { display: flex; align-items: center; gap: .5em; }
.hero__points .ico { color: var(--red-bright); }

.hero__media { position: relative; }
.hero__photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 70px -30px rgba(0,0,0,.9); border: 4px solid rgba(255,255,255,.08); aspect-ratio: 4 / 3.3; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: -26px; bottom: 34px; display: flex; align-items: center; gap: 14px;
  padding: 14px 20px 14px 14px; background: var(--red); color: #fff; border-radius: var(--radius); box-shadow: 0 20px 40px -18px rgba(0,0,0,.8);
  font-weight: 700; line-height: 1.15; max-width: 250px;
}
.hero__badge strong { display: block; font-size: 1.7rem; font-weight: 900; font-stretch: 120%; }
.hero__badge-icon { display: grid; place-items: center; width: 50px; height: 50px; flex: none; border-radius: 8px; background: rgba(0,0,0,.22); }
.hero__badge-icon .ico { width: 26px; height: 26px; }
.hero__van {
  position: absolute; right: -18px; top: -34px; width: 44%; margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 4px solid #fff; box-shadow: 0 24px 40px -20px rgba(0,0,0,.85); transform: rotate(3deg);
}
.hero__van img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }

/* ------------------------------------------------------- Trust strip */
.trust { position: relative; z-index: 5; margin-top: -72px; }
.trust__grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; border-bottom: 4px solid var(--red); }
.trust__item { display: flex; align-items: center; gap: 14px; padding: 24px 22px; line-height: 1.3; }
.trust__item + .trust__item { border-left: 1px solid var(--line); }
.trust__item strong { display: block; font-stretch: 108%; font-weight: 800; font-size: 1.02rem; }
.trust__item small { display: block; color: var(--muted); font-size: .86rem; }
.trust__item small a { color: var(--red); font-weight: 600; text-decoration: none; }
.trust__item small a:hover { text-decoration: underline; }
.trust__icon { display: grid; place-items: center; width: 48px; height: 48px; flex: none; border-radius: 10px; background: var(--black); color: #fff; }
.trust__icon .ico { width: 24px; height: 24px; }
.trust__item:nth-child(odd) .trust__icon { background: var(--red); }

/* ----------------------------------------------------------- Sections */
.section { padding: 96px 0; }
.section--paper { background: var(--paper); }
.section-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; text-align: left; margin-bottom: 40px; }
.section-head--split .section-title { margin-bottom: 0; }
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.75rem); font-weight: 900; font-stretch: 114%; }
.section-lead { font-size: 1.12rem; color: var(--muted); }
.section-head--light, .process .section-title { color: #fff; }

/* ------------------------------------------------------ Service cards */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card-grid--compact { grid-template-columns: repeat(4, 1fr); }
.svc-card {
  position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; color: var(--text); text-decoration: none; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.svc-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; color: var(--text); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card__img { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-800); }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card__img::after { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,11,13,.55)); }
.svc-card:hover .svc-card__img img { transform: scale(1.06); }
.svc-card__body { position: relative; display: flex; flex-direction: column; flex: 1; padding: 34px 22px 24px; }
.svc-card__icon { position: absolute; top: -28px; left: 22px; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 10px; background: var(--red); color: #fff; box-shadow: var(--shadow-red); border: 3px solid #fff; }
.svc-card__icon .ico { width: 26px; height: 26px; }
.svc-card__title { font-size: 1.2rem; font-weight: 800; font-stretch: 110%; margin: 0 0 8px; }
.svc-card__text { display: block; color: var(--muted); font-size: .95rem; line-height: 1.55; margin-bottom: 18px; }
.svc-card__more { margin-top: auto; display: inline-flex; align-items: center; gap: .45em; font-weight: 800; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--red); }
.svc-card:hover .svc-card__more .ico { transform: translateX(4px); }
.svc-card__more .ico { transition: transform .25s var(--ease); }

/* ----------------------------------------------------------- Why us */
.why__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; align-items: center; }
.why__media { position: relative; padding: 0 70px 70px 0; }
.why__main { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.why__inset { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); border: 6px solid #fff; box-shadow: var(--shadow); }
.why__tag { position: absolute; left: 24px; top: 24px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: var(--radius-sm); background: var(--black); color: #fff; font-weight: 700; font-size: .88rem; box-shadow: var(--shadow-sm); }
.why__tag .ico { color: var(--red-bright); }
.why__copy .section-title { max-width: 560px; }

.checklist { list-style: none; display: grid; gap: 12px; margin: 26px 0 0; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; line-height: 1.45; }
.checklist .ico { width: 22px; height: 22px; padding: 4px; flex: none; margin-top: 1px; border-radius: 50%; background: var(--red); color: #fff; stroke-width: 3.2; }
.checklist--two { grid-template-columns: 1fr 1fr; gap: 14px 26px; }

/* ----------------------------------------------------------- Process */
.process { position: relative; background: var(--ink-900); color: #fff; overflow: hidden; isolation: isolate; }
.process::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -1; background: repeating-linear-gradient(118deg, rgba(255,255,255,.025) 0 2px, transparent 2px 22px); }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; border-radius: var(--radius); background: var(--ink-800); border: 1px solid rgba(255,255,255,.07); overflow: hidden; }
.step::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--red); }
.step__num { position: absolute; right: 18px; top: 8px; font-size: 3.6rem; font-weight: 900; font-stretch: 120%; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.14); line-height: 1; }
.step__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 10px; background: var(--red); color: #fff; margin-bottom: 18px; }
.step__icon .ico { width: 24px; height: 24px; }
.step h3 { font-size: 1.2rem; }
.step p { color: var(--silver-300); margin: 0; font-size: .97rem; }

/* ---------------------------------------------------------- Work grid */
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.work-tile { position: relative; display: block; padding: 0; border: 0; border-radius: var(--radius); overflow: hidden; background: var(--ink-800); cursor: zoom-in; }
.work-tile img, .work-tile video { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.work-tile:hover img { transform: scale(1.06); }
.work-tile--big { grid-column: span 2; grid-row: span 2; }
.work-tile--video { grid-row: span 2; cursor: default; }
.work-tile__label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 12px; text-align: left;
  background: linear-gradient(180deg, transparent, rgba(11,11,13,.85)); color: #fff; font-size: .88rem; font-weight: 700; line-height: 1.3;
  transform: translateY(8px); opacity: 0; transition: opacity .3s, transform .3s var(--ease);
}
.work-tile:hover .work-tile__label, .work-tile:focus-visible .work-tile__label, .work-tile--video .work-tile__label, .work-tile--big .work-tile__label { opacity: 1; transform: none; }

/* ------------------------------------------------------------- Fleet */
.fleet { position: relative; overflow: hidden; background: var(--black); color: #fff; padding: 96px 0; isolation: isolate; }
.fleet__stripes { left: 44%; background: linear-gradient(118deg, transparent 0 38%, var(--red) 38% 52%, transparent 52% 57%, var(--red-dark) 57% 60%, transparent 60%); opacity: .95; }
.fleet__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.fleet__copy p { color: var(--silver-300); font-size: 1.08rem; }
.fleet__services { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 30px; }
.fleet__services li { padding: 7px 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-size: .85rem; font-weight: 700; }
.fleet__services li::before { content: "•"; color: var(--red-bright); margin-right: 6px; }
.fleet__media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; border: 4px solid rgba(255,255,255,.1); box-shadow: 0 40px 70px -30px rgba(0,0,0,.95); }
.fleet__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

/* ----------------------------------------------------------- Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 36px; }
.review { margin: 0; padding: 28px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review blockquote { margin: 14px 0 18px; font-size: 1.02rem; }
.review blockquote p { margin: 0; }
.review figcaption { margin-top: auto; font-size: .92rem; color: var(--muted); }
.review figcaption strong { color: var(--text); }
.review figcaption em { font-style: normal; font-size: .84rem; }
.stars { display: flex; gap: 2px; color: #f2a60c; }
.stars .ico { width: 18px; height: 18px; }

.profile-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.profile-link { position: relative; display: flex; align-items: center; gap: 14px; padding: 20px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); text-decoration: none; color: var(--text); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.profile-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--red); color: var(--text); }
.profile-link strong { display: block; font-stretch: 108%; }
.profile-link small { display: block; color: var(--muted); font-size: .85rem; line-height: 1.3; }
.profile-link__icon { display: grid; place-items: center; width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--black); color: #fff; }
.profile-link:hover .profile-link__icon { background: var(--red); }
.profile-link__ext { position: absolute; top: 12px; right: 12px; width: 14px; height: 14px; color: var(--silver-500); }

/* ------------------------------------------------------- Quote section */
.quote-section { background: var(--paper); }
.quote-section__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.quote-section .quote-section__grid { align-items: stretch; }
.quote-info { position: relative; overflow: hidden; isolation: isolate; display: flex; flex-direction: column; padding: 44px 40px; border-radius: var(--radius-lg); background: var(--black); color: #fff; box-shadow: var(--shadow); }
.quote-info__photo { margin: 32px 0 0; margin-top: auto; padding-top: 32px; }
.quote-info__photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); border: 3px solid rgba(255,255,255,.12); }
.quote-info__stripes { background: linear-gradient(118deg, transparent 0 74%, var(--red) 74% 82%, transparent 82% 85%, var(--red-dark) 85% 87%, transparent 87%); opacity: .9; }
.quote-info p { color: var(--silver-300); }
.quote-copy { padding-top: 12px; }

.contact-list { list-style: none; display: grid; gap: 16px; margin-top: 26px; }
.contact-list li { display: flex; align-items: center; gap: 14px; line-height: 1.3; }
.contact-list small { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact-list a { color: var(--text); font-weight: 800; font-stretch: 108%; font-size: 1.1rem; text-decoration: none; word-break: break-word; }
.contact-list a:hover { color: var(--red); }
.contact-list__icon { display: grid; place-items: center; width: 46px; height: 46px; flex: none; border-radius: 10px; background: var(--red); color: #fff; }
.contact-list__icon--wa { background: var(--wa); }
.contact-list--light small { color: var(--silver-500); }
.contact-list--light a { color: #fff; }
.contact-list--light a:hover { color: var(--silver-300); }

/* -------------------------------------------------------------- Forms */
.form-card { position: relative; background: #fff; border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); border: 1px solid var(--line); border-top: 5px solid var(--red); }
.form-card--compact { padding: 26px 22px; }
.form-card__title { font-size: 1.55rem; margin-bottom: 4px; }
.form-card--compact .form-card__title { font-size: 1.25rem; }
.form-card__sub { color: var(--muted); font-size: .95rem; margin-bottom: 22px; }
.form-card--compact .form-card__sub { font-size: .88rem; margin-bottom: 16px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; margin-bottom: 22px; }
.form-grid--single { grid-template-columns: 1fr; gap: 12px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 6px; font-weight: 700; font-size: .9rem; }
.req { color: var(--red); }
.field input, .field select, .field textarea {
  display: block; width: 100%; padding: 12px 14px; min-height: 50px; font: inherit; font-size: 1rem; color: var(--text);
  background: var(--paper); border: 1.5px solid var(--silver-200); border-radius: var(--radius-sm); transition: border-color .2s, background-color .2s, box-shadow .2s;
  appearance: none; -webkit-appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--silver-300); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; border-color: var(--red); box-shadow: 0 0 0 4px rgba(215,25,32,.14); }
.field.has-error input, .field.has-error textarea { border-color: var(--red); background: #fff6f6; }
.field__error { margin: 6px 0 0; font-size: .85rem; font-weight: 600; color: var(--red-dark); }
.select-wrap { position: relative; }
.select-wrap .ico { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--muted); }
.select-wrap select { padding-right: 42px; cursor: pointer; }
.form-note { display: flex; align-items: flex-start; justify-content: center; gap: 6px; margin: 14px 0 0; font-size: .82rem; color: var(--muted); text-align: center; }
.form-note a { color: var(--muted); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.quote-form button[disabled] { opacity: .7; cursor: progress; }

.alert { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; border-radius: var(--radius-sm); margin-bottom: 18px; font-weight: 600; font-size: .95rem; line-height: 1.45; }
.alert .ico { margin-top: 2px; }
.alert--error { background: #fdecec; color: var(--red-deep); border: 1px solid #f3b9b9; }

/* ---------------------------------------------------------- Page hero */
.page-hero { position: relative; overflow: hidden; isolation: isolate; background: var(--black); color: #fff; padding: 64px 0 76px; }
.page-hero__bg { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -3; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.page-hero::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -2; background: linear-gradient(90deg, rgba(11,11,13,.97) 0%, rgba(11,11,13,.9) 40%, rgba(11,11,13,.45) 100%); }
.page-hero__stripes { background: linear-gradient(118deg, transparent 0 78%, var(--red) 78% 83%, transparent 83% 85.5%, var(--red-dark) 85.5% 86.8%, transparent 86.8%); }
.page-hero__inner { max-width: var(--container); }
.page-hero__title { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 900; font-stretch: 118%; text-transform: uppercase; line-height: 1; max-width: 820px; margin-bottom: 18px; }
.page-hero__lead { font-size: 1.15rem; color: var(--silver-300); max-width: 680px; margin-bottom: 0; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; font-size: .88rem; color: var(--silver-300); }
.breadcrumbs li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.breadcrumbs a { color: #fff; text-decoration: none; font-weight: 600; }
.breadcrumbs a:hover { color: var(--red-bright); }

/* ------------------------------------------------- Sidebar layouts */
.layout-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 56px; align-items: start; }
.sticky-stack { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 18px; }

.highlights { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 38px; border-radius: var(--radius); background: var(--paper); border-left: 5px solid var(--red); overflow: hidden; }
.highlights li { display: flex; align-items: center; gap: 12px; padding: 18px 20px; font-weight: 700; line-height: 1.3; font-size: .95rem; }
.highlights li + li { border-left: 1px solid var(--line); }
.highlights__icon { display: grid; place-items: center; width: 42px; height: 42px; flex: none; border-radius: 8px; background: var(--black); color: #fff; }
.highlights li:first-child .highlights__icon { background: var(--red); }

.prose { font-size: 1.06rem; }
.prose > *:first-child { margin-top: 0; }
.prose h2 { position: relative; font-size: 1.7rem; margin: 1.6em 0 .6em; padding-top: 16px; }
.prose h2::before { content: ""; position: absolute; left: 0; top: 0; width: 44px; height: 4px; background: var(--red); }
.prose h3 { font-size: 1.3rem; margin: 1.4em 0 .5em; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.1em; }
.prose ul { list-style: none; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 28px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: .62em; width: 10px; height: 10px; background: var(--red); transform: rotate(45deg); }
.prose ol { padding-left: 1.3em; }
.prose a { font-weight: 600; }
.prose--lead { font-size: 1.15rem; color: var(--muted); }
.prose--center { max-width: 780px; margin: 0 auto 48px; text-align: center; }

.included { margin: 40px 0; padding: 32px; border-radius: var(--radius-lg); background: var(--black); color: #fff; }
.included__title { display: flex; align-items: center; gap: 12px; font-size: 1.4rem; margin-bottom: 20px; }
.included__title .ico { color: var(--red-bright); }
.included .checklist { margin-top: 0; }
.included .checklist li { font-weight: 600; color: #fff; }

.related-work { margin: 44px 0; }
.related-work__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.related-work__head h2 { font-size: 1.5rem; margin: 0; }
.related-work__head a { font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.related-work__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.related-work__grid .work-tile { aspect-ratio: 1; }

.faq { margin-top: 44px; }
.faq__title { font-size: 1.6rem; margin-bottom: 18px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 10px; background: #fff; transition: border-color .2s, box-shadow .2s; }
.faq__item[open] { border-color: var(--silver-300); box-shadow: var(--shadow-sm); }
.faq__item summary { position: relative; list-style: none; cursor: pointer; padding: 18px 58px 18px 20px; font-weight: 700; font-stretch: 104%; font-size: 1.04rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: absolute; right: 18px; top: 50%; width: 26px; height: 26px; margin-top: -13px; border-radius: 50%; background: var(--paper); }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; left: 7px; right: 7px; top: 12px; height: 2px; background: var(--red); transition: transform .25s var(--ease); }
.faq__plus::after { transform: rotate(90deg); }
.faq__item[open] .faq__plus::after { transform: rotate(0deg); }
.faq__answer { padding: 0 20px 18px; color: var(--muted); }
.faq__answer p { margin: 0; }

.emergency-box { display: flex; gap: 14px; padding: 20px; border-radius: var(--radius); background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.emergency-box__icon { display: grid; place-items: center; width: 46px; height: 46px; flex: none; border-radius: 8px; background: rgba(0,0,0,.22); }
.emergency-box strong { display: block; font-size: 1.05rem; font-stretch: 108%; }
.emergency-box p { margin: 2px 0 6px; font-size: .92rem; color: rgba(255,255,255,.88); }
.emergency-box a { color: #fff; font-weight: 900; font-size: 1.3rem; font-stretch: 112%; text-decoration: none; }
.emergency-box a:hover { text-decoration: underline; }
.emergency-box--wide { text-align: left; margin: 36px 0 8px; }

/* ------------------------------------------------------------ Gallery */
.filter-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.chip { padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--silver-200); background: #fff; color: var(--text); font-weight: 700; font-size: .9rem; cursor: pointer; transition: all .2s; }
.chip:hover { border-color: var(--black); }
.chip.is-active { background: var(--black); border-color: var(--black); color: #fff; }

.masonry { columns: 3 300px; column-gap: 16px; }
.masonry__item { position: relative; display: block; width: 100%; margin: 0 0 16px; padding: 0; border: 0; border-radius: var(--radius); overflow: hidden; background: var(--ink-800); break-inside: avoid; cursor: zoom-in; text-align: left; }
.masonry__item img, .masonry__item video { width: 100%; transition: transform .6s var(--ease); }
.masonry__item:hover img { transform: scale(1.04); }
.masonry__item--video { cursor: default; }
.masonry__caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 36px 16px 14px; background: linear-gradient(180deg, transparent, rgba(11,11,13,.88)); color: #fff; font-weight: 700; font-size: .92rem; line-height: 1.3; }
.masonry__caption small { display: table; background: var(--red); color: #fff; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; padding: 2px 7px; border-radius: 3px; margin-bottom: 5px; }
.masonry__item.is-hidden { display: none; }
.empty-state { text-align: center; color: var(--muted); }

/* ----------------------------------------------------------- Lightbox */
.lightbox { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 400; display: grid; place-items: center; padding: 60px 70px; background: rgba(8,8,10,.94); }
.lightbox figure { margin: 0; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 150px); width: auto; border-radius: var(--radius-sm); box-shadow: 0 30px 60px rgba(0,0,0,.6); }
.lightbox figcaption { color: #fff; margin-top: 14px; font-weight: 600; text-align: center; }
.lightbox__btn { position: absolute; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; border: 0; background: rgba(255,255,255,.1); color: #fff; cursor: pointer; transition: background .2s; }
.lightbox__btn:hover { background: var(--red); }
.lightbox__btn .ico { width: 24px; height: 24px; }
.lightbox__close { top: 16px; right: 16px; }
.lightbox__prev { left: 14px; top: 50%; margin-top: -25px; }
.lightbox__next { right: 14px; top: 50%; margin-top: -25px; }
.lightbox__count { position: absolute; top: 28px; left: 24px; color: var(--silver-300); font-size: .9rem; font-weight: 600; }

/* -------------------------------------------------------------- About */
.about__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; }
.about__media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: sticky; top: calc(var(--header-h) + 20px); }
.about__media img { border-radius: var(--radius); object-fit: cover; width: 100%; height: 100%; box-shadow: var(--shadow-sm); }
.about__media img:first-child { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
.about__media img:last-child { grid-column: 2; aspect-ratio: 3 / 4; margin-top: -90px; border: 6px solid #fff; }

.promise-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.promise { display: flex; align-items: center; gap: 16px; padding: 22px; border-radius: var(--radius); background: var(--ink-800); border: 1px solid rgba(255,255,255,.07); font-weight: 700; line-height: 1.35; }
.promise__icon { display: grid; place-items: center; width: 48px; height: 48px; flex: none; border-radius: 10px; background: var(--red); color: #fff; }

.company-card-wrap { display: grid; grid-template-columns: 1.3fr .7fr; gap: 24px; }
.company-card { padding: 34px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.company-card__title { display: flex; align-items: center; gap: 12px; font-size: 1.4rem; margin-bottom: 20px; }
.company-card__title .ico { color: var(--red); }
.company-card__list { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; }
.company-card__list dt { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.company-card__list dd { margin: 2px 0 0; font-weight: 600; }
.company-card__list a { text-decoration: none; }
.company-card--dark { background: var(--black); color: #fff; border-color: var(--black); }
.company-card--dark p { color: var(--silver-300); }
.company-card__links { list-style: none; display: grid; gap: 8px; }
.company-card__links a { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; border-radius: var(--radius-sm); background: var(--ink-800); color: #fff; font-weight: 700; text-decoration: none; }
.company-card__links a:hover { background: var(--red); color: #fff; }

/* ------------------------------------------------------------ Contact */
.contact__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.contact__aside { display: grid; gap: 20px; }
.contact-card { padding: 30px; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line); }
.contact-card__title { font-size: 1.35rem; margin-bottom: 4px; }
.contact-card .contact-list { margin-top: 18px; }
.contact-card .contact-list li > span:last-child { font-weight: 600; }
.tip-card { display: flex; gap: 16px; padding: 24px; border-radius: var(--radius-lg); background: var(--black); color: #fff; }
.tip-card p { color: var(--silver-300); font-size: .95rem; margin: 4px 0 14px; }
.tip-card strong { font-size: 1.08rem; }
.tip-card__icon { display: grid; place-items: center; width: 48px; height: 48px; flex: none; border-radius: 10px; background: var(--red); }
.contact__photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; }
.contact__photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.contact__registered { font-size: .85rem; color: var(--muted); margin: 0; }

/* ------------------------------------------------------------- Thanks */
.thanks { padding: 90px 0 100px; text-align: center; background: var(--paper); }
.thanks__icon { display: inline-grid; place-items: center; width: 84px; height: 84px; border-radius: 50%; background: var(--red); color: #fff; box-shadow: var(--shadow-red); margin-bottom: 22px; }
.thanks__icon .ico { width: 42px; height: 42px; stroke-width: 3; }
.thanks__icon--muted { background: var(--black); box-shadow: var(--shadow); }
.thanks__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; font-stretch: 116%; }
.thanks__lead { font-size: 1.15rem; color: var(--muted); max-width: 620px; margin: 0 auto; }
.thanks__steps { list-style: none; counter-reset: t; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 40px 0 0; text-align: left; }
.thanks__steps li { counter-increment: t; padding: 22px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.thanks__steps li::before { content: "0" counter(t); display: block; font-weight: 900; font-stretch: 120%; font-size: 1.5rem; color: var(--red); margin-bottom: 6px; }
.thanks__steps strong { display: block; }
.thanks__steps span { color: var(--muted); font-size: .94rem; }

/* ------------------------------------------------------------ CTA band */
.cta-band { position: relative; overflow: hidden; isolation: isolate; background: var(--red); color: #fff; padding: 52px 0; }
.cta-band::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -1; background: linear-gradient(118deg, transparent 0 62%, rgba(0,0,0,.28) 62% 72%, transparent 72% 75%, rgba(0,0,0,.2) 75% 77%, transparent 77%); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-band__eyebrow { margin: 0 0 4px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .85rem; color: rgba(255,255,255,.85); }
.cta-band__title { margin: 0; font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 900; font-stretch: 116%; text-transform: uppercase; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ------------------------------------------------------------- Footer */
.site-footer { background: var(--black); color: var(--silver-300); font-size: .96rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.15fr; gap: 44px; padding-top: 72px; padding-bottom: 56px; }
.site-footer__brand img { width: 230px; margin-bottom: 18px; }
.site-footer__brand p { max-width: 320px; }
.site-footer__title { color: #fff; font-size: .92rem; font-weight: 800; font-stretch: 115%; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; padding-bottom: 12px; position: relative; }
.site-footer__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 3px; background: var(--red); }
.site-footer__title--spaced { margin-top: 30px; }
.site-footer__links { list-style: none; display: grid; gap: 9px; }
.site-footer a { color: var(--silver-300); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer__links .ico { opacity: .6; }
.site-footer__contact { list-style: none; display: grid; gap: 14px; }
.site-footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.site-footer__contact .ico { color: var(--red-bright); margin-top: 3px; }
.site-footer__contact a { color: #fff; font-weight: 600; word-break: break-word; }
.footer-social { list-style: none; display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ink-700); color: #fff; transition: background .2s; }
.footer-social a:hover { background: var(--red); }
.site-footer__bottom { background: #050506; border-top: 1px solid rgba(255,255,255,.06); }
.site-footer__legal { display: flex; justify-content: space-between; gap: 8px 30px; flex-wrap: wrap; padding-top: 20px; padding-bottom: 20px; font-size: .84rem; color: var(--silver-500); }
.site-footer__legal p { margin: 0; }
.site-footer__legal a { color: var(--silver-300); text-decoration: underline; }

/* ---------------------------------------------------- Floating actions */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 150; display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: #fff; box-shadow: 0 14px 30px -10px rgba(0,0,0,.45); transition: transform .25s var(--ease); }
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float .ico { width: 32px; height: 32px; }
.mobile-bar { display: none; }

.cookie-banner { position: fixed; left: 20px; bottom: 20px; z-index: 300; max-width: 420px; padding: 20px; border-radius: var(--radius); background: var(--black); color: var(--silver-300); box-shadow: var(--shadow); border-top: 4px solid var(--red); font-size: .92rem; }
.cookie-banner p { margin: 0 0 14px; }
.cookie-banner a { color: #fff; }
.cookie-banner__actions { display: flex; gap: 10px; justify-content: flex-end; }

/* ------------------------------------------------------------- Reveal */
.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: 1180px) {
  .header-call__text { display: none; }
  .main-nav__list > li > a { padding-left: 11px; padding-right: 11px; }
  .card-grid, .card-grid--compact { grid-template-columns: repeat(3, 1fr); }
  .card-grid--compact .svc-card:nth-child(4) { display: none; }
  .profile-links { grid-template-columns: repeat(2, 1fr); }
  .hero__badge { left: 16px; }
  .hero__van { right: 10px; }
}

@media (max-width: 980px) {
  :root { --header-h: 72px; }
  .topbar__note .topbar__sep, .topbar__links li:first-child { display: none; }
  .brand img { height: 52px; }
  .header-quote { display: none; }
  .nav-toggle { display: grid; }
  .header-actions { margin-left: auto; gap: 10px; }

  /* Off-canvas navigation. The header must not have backdrop-filter/transform,
     or it would trap this fixed-position drawer inside the header bar. The drawer
     lives in the header's stacking context, so the header sits above the backdrop
     and the mobile action bar. */
  .site-header { z-index: 250; }
  .nav-backdrop { z-index: 240; }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 200; width: min(360px, 88vw); display: flex; flex-direction: column; justify-content: flex-start;
    background: var(--black); color: #fff; padding: 18px 22px 26px; overflow-y: auto;
    transform: translateX(105%); transition: transform .35s var(--ease); visibility: hidden;
  }
  .main-nav.is-open { transform: none; visibility: visible; }
  .main-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
  .main-nav__head img { width: 150px; }
  .nav-close { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--ink-700); color: #fff; cursor: pointer; }
  .main-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav__list > li { flex-wrap: wrap; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-nav__list > li > a { flex: 1; color: #fff; padding: 16px 4px; font-size: 1.08rem; }
  .main-nav__list > li > a:hover { color: #fff; }
  .main-nav__list > li > a::after { display: none; }
  .main-nav__list > li.is-active > a { color: var(--red-bright); }
  .has-dropdown > a { padding-right: 4px !important; }
  .has-dropdown > a::before { display: none; }
  .dropdown-toggle { display: grid; place-items: center; width: 44px; height: 44px; color: #fff; }
  .dropdown-toggle .ico { transition: transform .25s; }
  .has-dropdown.is-open .dropdown-toggle .ico { transform: rotate(180deg); }
  .dropdown { position: static; width: 100%; padding: 0 0 12px; background: transparent; border: 0; box-shadow: none; transform: none; opacity: 1; visibility: visible; display: none; border-radius: 0; }
  .has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { transform: none; }
  .has-dropdown.is-open .dropdown { display: block; transform: none; }
  .dropdown__grid { grid-template-columns: 1fr; }
  .dropdown__grid a { color: var(--silver-300); padding: 8px 6px; }
  .dropdown__grid a:hover { background: var(--ink-800); color: #fff; }
  .dropdown__icon { width: 30px; height: 30px; background: var(--ink-700); }
  .dropdown__all { background: var(--ink-800); color: #fff; }
  .main-nav__cta { display: grid; gap: 10px; margin-top: 24px; }

  .hero { padding: 48px 0 120px; }
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__media { max-width: 640px; }
  .hero__van { display: none; }
  .hero__stripes { background: linear-gradient(118deg, transparent 0 70%, var(--red) 70% 76%, transparent 76% 79%, var(--red-dark) 79% 80.5%, transparent 80.5%); }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(3) { border-left: 0; }
  .trust__item:nth-child(n+3) { border-top: 1px solid var(--line); }

  .section { padding: 72px 0; }
  .card-grid, .card-grid--compact { grid-template-columns: repeat(2, 1fr); }
  .card-grid--compact .svc-card:nth-child(4) { display: flex; }
  .why__grid, .fleet__grid, .quote-section__grid, .layout-sidebar, .about__grid, .contact__grid, .company-card-wrap { grid-template-columns: 1fr; gap: 44px; }
  .why__media { max-width: 560px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 190px; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .sticky-stack, .about__media { position: static; }
  .about__media { max-width: 620px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .fleet__stripes { left: 0; background: linear-gradient(118deg, transparent 0 70%, var(--red) 70% 76%, transparent 76% 79%, var(--red-dark) 79% 80.5%, transparent 80.5%); opacity: .6; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; padding-bottom: 64px; }
  .container { padding: 0 18px; }
  .topbar { display: none; }
  .brand img { height: 46px; }
  .header-call__icon { width: 42px; height: 42px; }

  .hero { padding: 36px 0 110px; }
  .hero__lead { font-size: 1.04rem; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__points { gap: 8px; flex-direction: column; }
  .hero__badge { left: 12px; bottom: 12px; padding: 10px 14px 10px 10px; }
  .hero__badge strong { font-size: 1.3rem; }
  .hero__badge-icon { width: 40px; height: 40px; }
  .trust { margin-top: -80px; }
  .trust__grid { grid-template-columns: 1fr; }
  .trust__item + .trust__item { border-left: 0; border-top: 1px solid var(--line); }
  .trust__item { padding: 16px 18px; }

  .section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head--split { flex-direction: column; align-items: flex-start; }
  .card-grid, .card-grid--compact { grid-template-columns: 1fr; }
  .why__media { padding: 0 40px 50px 0; }
  .steps, .review-grid, .promise-grid, .profile-links, .thanks__steps { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 10px; }
  .work-tile__label { font-size: .78rem; padding: 24px 10px 8px; }
  .work-tile:not(.work-tile--big):not(.work-tile--video) .work-tile__label { display: none; }
  .fleet { padding: 64px 0; }
  .form-card { padding: 26px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .quote-info { padding: 32px 24px; }
  .checklist--two { grid-template-columns: 1fr; }
  .included { padding: 24px 20px; }
  .related-work__grid { grid-template-columns: 1fr 1fr; }
  .highlights { grid-template-columns: 1fr; }
  .highlights li + li { border-left: 0; border-top: 1px solid var(--line); }
  .highlights li { padding: 14px 16px; }
  .company-card { padding: 24px; }
  .company-card__list { grid-template-columns: 1fr; }
  .page-hero { padding: 44px 0 52px; }
  .page-hero__actions .btn { flex: 1 1 100%; }
  .page-hero__stripes { opacity: .5; }
  .masonry { columns: 2 140px; column-gap: 10px; }
  .masonry__item { margin-bottom: 10px; }
  .masonry__caption { font-size: .78rem; padding: 26px 10px 8px; }
  .lightbox { padding: 60px 10px; }
  .lightbox__prev, .lightbox__next { top: auto; bottom: 14px; margin-top: 0; }
  .lightbox__prev { left: calc(50% - 60px); }
  .lightbox__next { right: calc(50% - 60px); }
  .cta-band__actions, .cta-band__actions .btn { width: 100%; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 34px; padding-top: 54px; }
  .site-footer__legal { flex-direction: column; }

  .wa-float { display: none; }
  .mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; display: grid; grid-template-columns: repeat(3, 1fr); height: 64px; background: var(--black); box-shadow: 0 -8px 24px -10px rgba(0,0,0,.5); padding-bottom: env(safe-area-inset-bottom); }
  .mobile-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: #fff; text-decoration: none; font-size: .75rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
  .mobile-bar .ico { width: 22px; height: 22px; }
  .mobile-bar__call { background: var(--red); }
  .mobile-bar__wa .ico { color: var(--wa); }
  .mobile-bar__quote { border-left: 1px solid rgba(255,255,255,.1); }
  .cookie-banner { left: 10px; right: 10px; bottom: 74px; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .topbar, .site-header, .cta-band, .mobile-bar, .wa-float, .cookie-banner, .form-card { display: none !important; }
  .page-hero, .hero { background: none; color: #000; }
}
