/* ==========================================================================
   AllServe Australia — Landing Page
   Design system: design-system/allserve-australia/MASTER.md
   Palette locked 2026-08-19: logo navy #0B1E3C + safety orange CTA #FF711F
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

/* ---------- Tokens ---------- */
:root {
  --navy:        #0B1E3C;
  --navy-deep:   #071426;
  --navy-soft:   #1B3357;
  --navy-70:     rgba(11, 30, 60, .70);

  --orange:      #FF711F;
  --orange-hover:#E85D0C;
  --orange-tint: #FFF3EA;

  --logo-grey:   #8A8E95;
  --bg:          #FFFFFF;
  --bg-alt:      #F6F7F9;
  --fg:          #0F1729;
  --fg-muted:    #5A6473;
  --border:      #E3E7EC;
  --success:     #0F8A55;

  --font-head: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --space-sm: .5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;

  --radius:    10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(11,30,60,.06);
  --shadow-md: 0 4px 14px rgba(11,30,60,.08);
  --shadow-lg: 0 18px 40px rgba(11,30,60,.12);

  --wrap: 1200px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- A11y ---------- */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
.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;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: var(--space-3xl); }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: .8125rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy);            /* 15.4:1 on white — orange text is only 2.75:1 */
  margin-bottom: .75rem;
}
/* The orange stays as the rule, which is decorative and not contrast-bound. */
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--orange); }
/* On dark surfaces orange is 6.0:1, so the accent colour can carry the text. */
.hero .eyebrow, .section--navy .eyebrow,
.guarantee .eyebrow, .cta-final .eyebrow { color: var(--orange); }

.section-head { max-width: 720px; margin-bottom: var(--space-2xl); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); font-weight: 800; }
.section-head p { color: var(--fg-muted); font-size: 1.0625rem; margin: 0; }
.section--navy .section-head p { color: rgba(255,255,255,.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .875rem 1.5rem; border-radius: var(--radius); border: 2px solid transparent;
  transition: background-color .2s var(--ease), border-color .2s var(--ease),
              color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
  text-align: center; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; flex: none; }

/* White on #FF711F is only 2.75:1 and fails at every size, so the primary
   button carries near-black text instead: #0F1729 on #FF711F = 6.5:1. */
.btn--primary { background: var(--orange); color: #0F1729; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--orange-hover); color: #0F1729; box-shadow: var(--shadow-lg); }

.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--navy); background: var(--bg-alt); }

.btn--ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost-light:hover { background: rgba(255,255,255,.16); border-color: #fff; }

.btn--block { width: 100%; }
.btn--lg { padding: 1.0625rem 1.75rem; font-size: 1.0625rem; }

/* ---------- Utility bar ---------- */
.utility {
  background: var(--navy-deep); color: rgba(255,255,255,.82);
  font-size: .8125rem; padding-block: .5rem;
}
.utility .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.utility ul { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.utility li { display: inline-flex; align-items: center; gap: .4rem; }
.utility svg { width: 15px; height: 15px; color: var(--orange); flex: none; }
.utility a { display: inline-block; padding: .1875rem 0; }
.utility a:hover { color: #fff; text-decoration: underline; }
.utility__right { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: #fff; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--border);
  transition: box-shadow .25s var(--ease);
}
.header.is-stuck { box-shadow: var(--shadow-md); }
.header .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 42px; width: auto; }

.nav { margin-left: auto; }
.nav ul { display: flex; align-items: center; gap: .25rem; }
.nav a {
  display: block; padding: .625rem .75rem; border-radius: 8px;
  font-weight: 500; font-size: .9375rem; color: var(--fg);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav a:hover { color: var(--navy); background: var(--bg-alt); }

.header__cta { display: flex; align-items: center; gap: .75rem; flex: none; }
.header__phone {
  display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap;
  font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: .9375rem;
  padding: .5rem .75rem; border-radius: 8px;
}
.header__phone:hover { background: var(--orange-tint); }
.header__phone svg { width: 18px; height: 18px; color: var(--orange); }

.nav-toggle {
  display: none; margin-left: auto; flex: none;   /* flex:none — otherwise the
     header's flex row shrinks the button to ~21px and the icon clips */
  background: var(--navy); color: #fff; border: 0; border-radius: 8px;
  width: 46px; min-width: 46px; height: 46px;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--navy); color: #fff; overflow: hidden;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 12% 0%, rgba(255,113,31,.20), transparent 62%),
    radial-gradient(700px 500px at 95% 100%, rgba(27,51,87,.85), transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; color: #fff;
  margin-bottom: .625rem;
}
.hero h1 .accent { color: var(--orange); }
.hero__lede { font-size: clamp(1.0625rem,1.6vw,1.1875rem); color: rgba(255,255,255,.82); max-width: 30rem; }

.hero__chips { display: flex; flex-wrap: wrap; gap: .625rem; margin: 1.5rem 0; }
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; padding: .5rem .9375rem; font-size: .875rem; font-weight: 500;
}
.chip svg { width: 17px; height: 17px; color: var(--orange); flex: none; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }

.hero__proof {
  /* grid, not flex-wrap: three even columns keep the stats on one row instead
     of orphaning the third onto its own line at mid widths */
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14);
}
.hero__proof div strong {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.375rem, 2vw, 1.75rem); color: #fff; line-height: 1.1;
}
.hero__proof div span { font-size: .875rem; color: rgba(255,255,255,.7); }

/* ---------- Quote form ---------- */
.quote-card {
  background: #fff; color: var(--fg); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.4vw, 2rem); box-shadow: var(--shadow-lg);
}
.quote-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: .25rem; }
.quote-card__sub { color: var(--fg-muted); font-size: .9375rem; margin-bottom: 1.25rem; }
.quote-card__sub strong { color: var(--navy); }

.field { margin-bottom: .875rem; }
.field label {
  display: block; font-size: .8125rem; font-weight: 600;
  color: var(--navy); margin-bottom: .3125rem;
}
.field .req { color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .9375rem; color: var(--fg);
  padding: .75rem .875rem; border: 1px solid var(--border); border-radius: 8px;
  background: #fff; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #9AA3AF; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #C6CCD4; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,113,31,.18);
}
.field textarea { resize: vertical; min-height: 84px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; }

.form-status {
  margin: .75rem 0 0; font-size: .875rem; font-weight: 600; min-height: 1.2em;
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: #DC2626;
}
.form-note {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .8125rem; color: var(--fg-muted); margin-top: .875rem;
}
.form-note svg { width: 16px; height: 16px; color: var(--success); flex: none; margin-top: 2px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding-block: 1.5rem; }
.trust-strip ul {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.trust-strip li { display: flex; align-items: center; gap: .75rem; }
.trust-strip .ico {
  width: 44px; height: 44px; flex: none; border-radius: 10px;
  background: var(--orange-tint); color: var(--orange);
  display: grid; place-items: center;
}
.trust-strip .ico svg { width: 22px; height: 22px; }
.trust-strip strong { display: block; font-family: var(--font-head); font-size: .9375rem; color: var(--navy); }
.trust-strip span { font-size: .8125rem; color: var(--fg-muted); }

/* ---------- Services ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem;
}
.service {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.service:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service__ico {
  width: 52px; height: 52px; border-radius: 12px; margin-bottom: 1.125rem;
  background: var(--navy); color: var(--orange); display: grid; place-items: center;
  transition: background-color .25s var(--ease);
}
.service:hover .service__ico { background: var(--orange); color: #fff; }
.service__ico svg { width: 26px; height: 26px; }
.service h3 { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: .375rem; }
.service p { font-size: .9375rem; color: var(--fg-muted); margin-bottom: 1rem; flex: 1; }
.service__link {
  display: inline-flex; align-items: center; gap: .375rem;
  font-family: var(--font-head); font-weight: 600; font-size: .875rem; color: var(--navy);
}
.service__link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.service:hover .service__link { color: var(--orange); }
.service:hover .service__link svg { transform: translateX(4px); }
.service::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); }

/* ---------- Value prop ---------- */
.value { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,4rem); align-items: center; }
.value__list { margin-top: 1.5rem; display: grid; gap: 1rem; }
.value__list li { display: flex; gap: .875rem; align-items: flex-start; }
.value__list .tick {
  width: 26px; height: 26px; flex: none; border-radius: 50%;
  background: var(--orange); color: #fff; display: grid; place-items: center; margin-top: 2px;
}
.value__list .tick svg { width: 15px; height: 15px; }
.value__list strong { display: block; font-family: var(--font-head); color: #fff; font-size: 1rem; }
.value__list span { font-size: .9375rem; color: rgba(255,255,255,.72); }

.combo {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.combo h3 { font-size: 1.125rem; margin-bottom: 1.25rem; }
.combo__tags { display: flex; flex-wrap: wrap; gap: .625rem; margin-bottom: 1.25rem; }
.combo__tags span {
  background: rgba(255,113,31,.16); border: 1px solid rgba(255,113,31,.4);
  color: #FFC79E; border-radius: 999px; padding: .4375rem .875rem;
  font-size: .875rem; font-weight: 500;
}
.combo__foot {
  display: flex; align-items: center; gap: .75rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.14); font-size: .9375rem; color: rgba(255,255,255,.8);
}
.combo__foot svg { width: 22px; height: 22px; color: var(--orange); flex: none; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-top: 3.25rem; }
.step__num {
  position: absolute; top: 0; left: 0;
  width: 52px; height: 52px; border-radius: 12px; background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
}
.step h3 { font-size: 1.125rem; color: var(--navy); }
.step p { color: var(--fg-muted); font-size: .9375rem; margin: 0; }

/* ---------- Guarantee ---------- */
.guarantee {
  display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center;
  background: var(--navy); border-radius: var(--radius-lg); padding: clamp(1.75rem,3vw,2.5rem);
  color: #fff;
}
.guarantee__seal {
  width: 96px; height: 96px; flex: none; border-radius: 50%;
  border: 3px solid var(--orange); display: grid; place-items: center; color: var(--orange);
}
.guarantee__seal svg { width: 46px; height: 46px; }
.guarantee h2 { font-size: clamp(1.375rem,2.4vw,1.75rem); margin-bottom: .375rem; }
.guarantee p { color: rgba(255,255,255,.78); margin: 0; max-width: 46rem; font-size: .9375rem; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.review {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem; display: flex; flex-direction: column;
}
.review__stars { display: flex; gap: 2px; color: var(--orange); margin-bottom: .875rem; }
.review__stars svg { width: 18px; height: 18px; }
.review blockquote { margin: 0 0 1.25rem; font-size: .9375rem; color: var(--fg); flex: 1; }
.review__who { display: flex; align-items: center; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.review__av {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: .9375rem;
}
.review__who strong { display: block; font-size: .9375rem; color: var(--navy); font-family: var(--font-head); }
/* `> span > span` deliberately excludes .review__av, which is a direct child
   and would otherwise inherit muted grey onto its navy chip. */
.review__who > span > span { font-size: .8125rem; color: var(--fg-muted); }

/* ---------- Service area + map ---------- */
.area { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,4vw,3rem); align-items: center; }
.suburbs { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.25rem 0 1.75rem; }
.suburbs span {
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: .4375rem .875rem; font-size: .875rem; color: var(--fg-muted);
}
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-md); background: var(--bg-alt);
}
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: .75rem; overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq details[open] { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.125rem 1.375rem; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--bg-alt); }
.faq summary .chev {
  width: 22px; height: 22px; flex: none; color: var(--orange);
  transition: transform .25s var(--ease);
}
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq__body { padding: 0 1.375rem 1.25rem; color: var(--fg-muted); font-size: .9375rem; }
.faq__body p:last-child { margin: 0; }

/* ---------- Final CTA ---------- */
.cta-final { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(680px 380px at 78% 12%, rgba(255,113,31,.24), transparent 60%);
}
.cta-final .wrap { position: relative; text-align: center; }
.cta-final h2 { font-size: clamp(1.75rem,3.6vw,2.6rem); font-weight: 800; margin-bottom: .625rem; }
.cta-final p { color: rgba(255,255,255,.8); max-width: 40rem; margin: 0 auto 1.75rem; font-size: 1.0625rem; }
.cta-final__actions { display: flex; flex-wrap: wrap; gap: .875rem; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding-block: var(--space-2xl) var(--space-lg); font-size: .9375rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer h4 {
  font-size: .8125rem; text-transform: uppercase; letter-spacing: .1em;
  color: #fff; margin-bottom: 1rem;
}
.footer li { margin-bottom: .25rem; }
.footer a { display: inline-block; padding: .3125rem 0; }   /* ≥24px target */
.footer a:hover { color: var(--orange); }
.footer__contact li { display: flex; gap: .625rem; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--orange); flex: none; margin-top: 4px; }
.footer__bottom {
  margin-top: var(--space-xl); padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .875rem;
}

/* ---------- Mobile call bar ---------- */
.callbar { display: none; }

/* ---------- Reveal animation ----------
   The hidden state ONLY exists under html.js-anim, which is set by an inline
   head script and only when the tab is visible and motion is allowed.
   A hidden tab pauses CSS transitions, so an element that starts at opacity 0
   and relies on a transition to reach 1 stays blank. Gating it this way means
   the default state is always visible — the animation is purely additive. */
.js-anim .reveal { opacity: 0; transform: translateY(22px); }
.js-anim .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .quote-card { max-width: 560px; }
  .value, .area { grid-template-columns: 1fr; }
  .trust-strip ul { grid-template-columns: repeat(2,1fr); }
  .reviews { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header__cta .btn { display: none; }
  .nav.is-open {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg); padding: .75rem 1.25rem 1.25rem;
  }
  .nav.is-open ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav.is-open a { padding: .875rem .5rem; border-bottom: 1px solid var(--border); }
  .nav.is-open li:last-child a { border-bottom: 0; }
}

@media (max-width: 768px) {
  .section { padding-block: var(--space-2xl); }
  .steps { grid-template-columns: 1fr; }
  .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .guarantee p { margin-inline: auto; }
  .utility ul li:not(:first-child) { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .map-frame iframe { height: 320px; }

  /* sticky click-to-call — the highest-intent action on mobile */
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: .625rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    background: #fff; border-top: 1px solid var(--border);
    padding: .625rem .75rem calc(.625rem + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 16px rgba(11,30,60,.12);
  }
  .callbar .btn { padding: .8125rem 1rem; font-size: .9375rem; }
  body { padding-bottom: 76px; }
}

@media (max-width: 560px) {
  /* Collapse the header phone to an icon-only tap target — the full number
     doesn't fit beside the logo at 375px, and the sticky call bar still
     carries the labelled "Call now" action. */
  .header__phone-num { display: none; }
  .header__phone {                      /* keep a 44px minimum touch target */
    padding: 0; width: 44px; height: 44px; justify-content: center;
  }
  .header__phone svg { width: 22px; height: 22px; }

  .trust-strip ul { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__proof { grid-template-columns: 1fr 1fr; gap: 1.25rem 1rem; }
  .hero__actions .btn { width: 100%; }
  .brand img { height: 36px; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .js-anim .reveal, .reveal { opacity: 1 !important; transform: none !important; }
  .btn:hover, .service:hover { transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .header, .utility, .callbar, .map-frame, .cta-final { display: none; }
  body { color: #000; }
}
