/* ============================================================
   The Bug Guy. Sydney pest control. Site styles.
   Hand-coded, no build step. Single fixed colour scheme (no dark-mode switching).
   Brand: logo blue (#1464DC) on navy ink (#0A1020). Hero and footer are navy ink.
   Display: Bricolage Grotesque. Body: Hanken Grotesk.
   ============================================================ */

/* ---------- TOKENS, single fixed scheme (True Logo). No dark-mode switching:
   the site renders identically regardless of the visitor's device light/dark setting. ---------- */
:root {
  color-scheme: only light;      /* stop the browser dark-theming form controls etc. */

  --brand-black: #0A1020;        /* navy ink: hero, footer, CTA bands */
  --electric-blue: #1464DC;      /* Mark's real logo blue */
  --electric-blue-bright: #2A7AF0;
  --navy: #111A2E;

  --bg: #FFFFFF;
  --bg-alt: #EEF2FB;
  --bg-card: #FFFFFF;
  --input-bg: #EEF2FB;
  --border: #DCE4F2;
  --border-strong: #C2CFE6;
  --text: #111A2E;
  --text-mute: #55607A;

  --shadow-card: 0 1px 2px rgba(10,26,61,.04), 0 12px 30px rgba(10,26,61,.08);
  --shadow-hover: 0 8px 18px rgba(20,100,220,.16), 0 20px 44px rgba(10,26,61,.12);
  --shadow-pop: 0 18px 50px rgba(10,26,61,.16);

  --grid-line: rgba(10,26,61,.05);
  --maxw: 1200px;
  --radius: 6px;
  --radius-lg: 14px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--electric-blue); text-decoration: none; }
a:hover { color: var(--electric-blue-bright); }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--electric-blue); outline-offset: 3px; border-radius: 3px; }
h1, h2, h3, h4 { font-family: 'Bricolage Grotesque', 'Hanken Grotesk', sans-serif; font-weight: 800; letter-spacing: -0.02em; line-height: 1.04; }

/* ---------- LAYOUT ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: 64px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } }

/* Blueprint dot-grid texture, the technical signature motif */
.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--grid-line) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

/* ---------- EYEBROW (// motif) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--electric-blue);
  margin: 0 0 16px;
}
.eyebrow--centered { justify-content: center; }

/* ---------- SECTION HEADINGS ---------- */
.section__head { max-width: 760px; margin: 0 0 44px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__title {
  font-size: clamp(30px, 4.2vw, 50px);
  margin: 0 0 16px;
  color: var(--text);
}
.section__lede {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-mute);
  margin: 0;
}
.accent { color: var(--electric-blue); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__logo { line-height: 0; flex-shrink: 0; }
.nav__logo img { height: 56px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__links > a, .nav__sub-toggle {
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 9px 14px;
  border-radius: var(--radius);
  background: transparent;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s, background .15s;
}
.nav__links > a:hover, .nav__sub-toggle:hover { color: var(--electric-blue); background: var(--bg-alt); }
.nav__links a[aria-current="page"] { color: var(--electric-blue); }

/* Dropdown */
.has-sub { position: relative; }
.nav__sub-toggle svg { width: 14px; height: 14px; transition: transform .2s; }
.has-sub:hover .nav__sub-toggle svg, .has-sub:focus-within .nav__sub-toggle svg { transform: rotate(180deg); }
.nav__sub {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 270px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  padding: 8px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.has-sub:hover .nav__sub, .has-sub:focus-within .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__sub a {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}
.nav__sub a small { color: var(--text-mute); font-weight: 500; font-size: 12px; }
.nav__sub a:hover { background: var(--bg-alt); color: var(--electric-blue); }
.nav__sub-all { flex-direction: row !important; align-items: center; justify-content: space-between; margin-top: 6px; padding-top: 13px; border-top: 1px solid var(--border); font-weight: 700; color: var(--electric-blue); }
.nav__sub-all svg { width: 15px; height: 15px; }
.nav__cta {
  margin-left: 8px;
  background: var(--electric-blue);
  color: #fff;
  padding: 11px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 6px 16px rgba(20,100,220,.28);
}
.nav__cta:hover { background: var(--electric-blue-bright); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 22px rgba(20,100,220,.4); }
.nav__cta svg { width: 15px; height: 15px; }
.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  margin-left: auto;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: transform .2s, opacity .2s; }

@media (max-width: 980px) {
  .nav__burger { display: block; }
  .nav__links {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-pop);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s var(--ease), opacity .22s;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav--open .nav__links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links > a, .nav__sub-toggle { font-size: 17px; padding: 14px 12px; border-bottom: 1px solid var(--border); border-radius: 0; width: 100%; justify-content: space-between; }
  .nav__sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-bottom: 1px solid var(--border);
    border-radius: 0; padding: 0 0 8px 12px; background: transparent;
    display: none;
  }
  .has-sub.is-open .nav__sub { display: grid; }
  .has-sub:hover .nav__sub-toggle svg { transform: none; }
  .has-sub.is-open .nav__sub-toggle svg { transform: rotate(180deg); }
  .nav__cta { margin: 14px 0 0; justify-content: center; padding: 14px; font-size: 16px; }
  .nav--open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav--open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav--open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 26px;
  border-radius: var(--radius);
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: transform .15s var(--ease), background .15s, border-color .15s, color .15s, box-shadow .15s;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--electric-blue); color: #fff; box-shadow: 0 8px 22px rgba(20,100,220,.32); }
.btn--primary:hover { background: var(--electric-blue-bright); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(20,100,220,.45); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--electric-blue); color: var(--electric-blue); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: #fff; color: var(--electric-blue); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 32px; font-size: 15px; }

/* ============================================================
   HERO (home), black in both modes
   ============================================================ */
.hero {
  background: var(--brand-black);
  color: #fff;
  padding: 64px 0 116px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 12% 6%, rgba(20,100,220,.40), transparent 56%),
    radial-gradient(ellipse 40% 50% at 96% 100%, rgba(61,134,242,.16), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(120deg, #000, transparent 72%);
  -webkit-mask-image: linear-gradient(120deg, #000, transparent 72%);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
}
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; gap: 46px; } }
.hero .eyebrow { color: #6FA0FF; }
.hero__title {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 0.98;
  margin: 0 0 20px;
  color: #fff;
  letter-spacing: -0.03em;
}
.hero__title .accent { color: #3D86F2; }
.hero__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,.74);
  max-width: 48ch;
  margin: 0 0 30px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.hero .btn--ghost:hover { border-color: #fff; color: #fff; }
.hero__meta {
  margin: 30px 0 0;
  display: flex; gap: 22px; flex-wrap: wrap;
  color: rgba(255,255,255,.62);
  font-size: 14px; font-weight: 600;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta svg { width: 16px; height: 16px; color: #6FA0FF; }

/* Hero visual panel + floating badges */
.hero__visual { position: relative; }
.hero__frame {
  position: relative; aspect-ratio: 1/1; border-radius: 22px;
  background: linear-gradient(160deg, #15224a, #0b1430);
  border: 1px solid rgba(120,160,255,.18); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero__frame::before { content:''; position:absolute; inset:0; background-image: radial-gradient(rgba(120,160,255,.14) 1.3px, transparent 1.3px); background-size: 22px 22px; }
.hero__frame img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero__frame > svg { width: 44%; height: 44%; color: rgba(120,160,255,.4); position: relative; z-index: 1; }
.hero__frame-tag { position:absolute; left:0; right:0; bottom:0; padding:14px 16px; background: linear-gradient(0deg, rgba(8,14,30,.92), transparent); color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; text-align: center; }
.badge-exp {
  position:absolute; top:-20px; right:-16px; width:112px; height:112px; border-radius:50%;
  background: var(--electric-blue); color:#fff; display:flex; flex-direction:column;
  align-items:center; justify-content:center; text-align:center;
  box-shadow: 0 16px 40px rgba(20,100,220,.5); border:5px solid var(--brand-black); transform: rotate(-6deg);
}
.badge-exp b { font-family:'Bricolage Grotesque', sans-serif; font-size:32px; line-height:1; }
.badge-exp span { font-size:10px; letter-spacing:.12em; text-transform:uppercase; margin-top:3px; }
.badge-rating {
  position:absolute; left:-18px; bottom:30px; background:#fff; color:var(--text);
  border-radius:14px; padding:12px 16px; box-shadow:0 18px 40px rgba(0,0,0,.3);
  display:flex; align-items:center; gap:11px;
}
.badge-rating .stars { color: var(--electric-blue); font-size:15px; letter-spacing:1px; }
.badge-rating b { font-family:'Bricolage Grotesque', sans-serif; font-size:20px; display:block; line-height:1; }
.badge-rating small { color: var(--text-mute); font-size:12px; }
@media (max-width: 940px) { .hero__frame { aspect-ratio: 16/11; } }
@media (max-width: 480px) { .badge-exp { width:92px; height:92px; right:6px; } .badge-exp b { font-size:26px; } .badge-rating { left:6px; bottom:16px; } }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--brand-black);
  color: #fff;
  padding: 56px 24px 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 12% 0%, rgba(20,100,220,.25), transparent 55%);
  pointer-events: none;
}
.page-hero__inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; }
.page-hero .eyebrow { color: #6FA0FF; }
.page-hero h1 {
  font-size: clamp(34px, 5vw, 60px);
  color: #fff;
  margin: 0 0 16px;
  max-width: 18ch;
}
.page-hero p { color: rgba(255,255,255,.72); font-size: clamp(16px,1.5vw,19px); max-width: 60ch; margin: 0 0 28px; }
.page-hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.page-hero .btn--ghost:hover { border-color: #fff; color: #fff; }

/* Breadcrumbs */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; margin: 0 0 22px; color: rgba(255,255,255,.55); }
.crumbs a { color: rgba(255,255,255,.7); font-weight: 600; }
.crumbs a:hover { color: #fff; }
.crumbs span[aria-current] { color: #fff; }
.crumbs li { display: inline-flex; align-items: center; gap: 8px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.crumbs .sep { opacity: .5; }

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote-wrap { margin-top: -84px; padding: 0 24px; position: relative; z-index: 2; }
.quote {
  max-width: 1040px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 30px 34px 34px;
  box-shadow: var(--shadow-pop);
  border: 1px solid var(--border);
  position: relative;
}
.quote::before {
  content: '';
  position: absolute; top: 0; left: 34px; right: 34px; height: 3px;
  background: linear-gradient(90deg, var(--electric-blue), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.quote__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; flex-wrap: wrap; gap: 8px; }
.quote__head h2 { margin: 0; font-size: 24px; color: var(--text); }
.quote__hint { font-size: 13px; color: var(--text-mute); font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.quote__hint::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #1FBF6B; box-shadow: 0 0 0 4px rgba(31,191,107,.18); }
.quote__grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1.3fr auto; gap: 14px; align-items: end; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field__label { font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-mute); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); opacity: .65; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--electric-blue); background: var(--bg-card); box-shadow: 0 0 0 3px rgba(20,100,220,.14); }
.quote__submit { height: 49px; white-space: nowrap; }

@media (max-width: 980px) {
  .quote__grid { grid-template-columns: 1fr 1fr; }
  .field--wide { grid-column: 1 / -1; }
  .quote__submit { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .quote-wrap { margin-top: -48px; padding: 0 16px; }
  .quote { padding: 24px 20px; }
  .quote__grid { grid-template-columns: 1fr; }
}

/* Standalone contact form (not overlapping) */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.form-card .quote__grid { grid-template-columns: 1fr 1fr; }
.form-card .field--wide { grid-column: 1 / -1; }
.form-card .quote__submit { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-card .quote__grid { grid-template-columns: 1fr; } }

/* TOAST */
.toast {
  margin-top: 14px; padding: 13px 16px;
  background: var(--electric-blue); color: #fff;
  border-radius: var(--radius); font-size: 14px; font-weight: 600;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .2s, transform .2s; pointer-events: none;
}
.toast--show { opacity: 1; transform: translateY(0); }

/* ============================================================
   TRUST CHIPS + ACCREDITATIONS
   ============================================================ */
.trust { padding: 36px 24px 0; }
.trust__inner { max-width: 1040px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg-alt); border: 1px solid var(--border);
  padding: 9px 15px; border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--text);
}
.chip svg { width: 15px; height: 15px; color: var(--electric-blue); }
.chip .star { color: var(--electric-blue); }

/* Accreditation plaque, full-width dark band */
.creds-band { background: var(--brand-black); position: relative; overflow: hidden; padding: 66px 0; }
.creds-band::before { content:''; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.05) 1.3px, transparent 1.3px); background-size:26px 26px; mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000, transparent 75%); }
.creds-band .container { position: relative; z-index: 1; }
.creds-band__head { text-align:center; margin: 0 0 38px; }
.creds-band__head .eyebrow { justify-content:center; color:#6FA0FF; }
.creds-band__head h2 { color:#fff; font-size: clamp(26px,3.4vw,42px); margin:0; }
.creds-band__row { display:grid; grid-template-columns: repeat(6,1fr); border:1px solid rgba(255,255,255,.13); border-radius: var(--radius-lg); overflow:hidden; }
@media (max-width:900px){ .creds-band__row { grid-template-columns: repeat(3,1fr); } }
@media (max-width:520px){ .creds-band__row { grid-template-columns: 1fr 1fr; } }
.creds-band__row--3 { grid-template-columns: repeat(3,1fr); max-width: 840px; margin-left:auto; margin-right:auto; }
@media (max-width:600px){ .creds-band__row--3 { grid-template-columns: 1fr; } }
.creds-cell { padding:24px 20px; border-right:1px solid rgba(255,255,255,.1); border-bottom:1px solid rgba(255,255,255,.1); transition: background .2s; }
.creds-cell:hover { background: rgba(20,100,220,.12); }
.creds-cell svg { width:22px; height:22px; color:#6FA0FF; margin-bottom:10px; }
.creds-cell b { display:block; color:#fff; font-family:'Bricolage Grotesque', sans-serif; font-size:16px; letter-spacing:-.01em; }
.creds-cell span { color: rgba(255,255,255,.5); font-size:12px; }

/* ============================================================
   SERVICES GRID + CARDS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 54px rgba(10,26,61,.14); border-color: var(--border-strong); }
.service-card__icon {
  width: 46px; height: 46px; color: var(--electric-blue); margin-bottom: 20px;
}
.service-card h3 { margin: 0 0 10px; font-size: 21px; color: var(--text); position: relative; display: inline-block; }
.service-card h3::after { content:''; position:absolute; left:0; bottom:-7px; height:3px; width:24px; background: var(--electric-blue); border-radius:2px; transition: width .3s var(--ease); }
.service-card:hover h3::after { width: 52px; }
.service-card p { margin: 0 0 18px; color: var(--text-mute); font-size: 15px; flex: 1; }
.service-card__link {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--electric-blue); display: inline-flex; align-items: center; gap: 8px;
}
.service-card__link svg { width: 15px; height: 15px; transition: transform .2s; }
.service-card:hover .service-card__link svg { transform: translateX(5px); }

/* ============================================================
   SPLIT (two-column feature)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--media-left { grid-template-columns: 0.9fr 1.1fr; }
@media (max-width: 880px) { .split, .split--media-left { grid-template-columns: 1fr; gap: 36px; } }
.split h2 { font-size: clamp(28px, 3.6vw, 42px); margin: 0 0 18px; color: var(--text); }
.split p { color: var(--text-mute); margin: 0 0 18px; }

/* Photo placeholder, labelled (Mark to supply real photos) */
.media-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(20,100,220,.05), rgba(20,100,220,.05) 14px, transparent 14px, transparent 28px),
    var(--bg-card);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px; text-align: center; padding: 24px;
}
.media-frame--wide { aspect-ratio: 16 / 10; }
.media-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-frame strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; color: var(--text); }
.media-frame small { font-size: 13px; color: var(--text-mute); }
.media-frame em {
  font-style: normal; margin-top: 12px; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--electric-blue); font-weight: 700;
  border: 1px dashed var(--border-strong); border-radius: 100px; padding: 5px 12px;
}
.media-frame .pin { position: absolute; top: 14px; left: 14px; width: 26px; height: 26px; border-top: 2px solid var(--electric-blue); border-left: 2px solid var(--electric-blue); }
.media-frame .pin--br { top: auto; left: auto; bottom: 14px; right: 14px; border: 0; border-bottom: 2px solid var(--electric-blue); border-right: 2px solid var(--electric-blue); }

/* Ticked feature list */
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.ticks li { position: relative; padding-left: 34px; color: var(--text-mute); line-height: 1.5; }
.ticks li::before {
  content: '';
  position: absolute; left: 0; top: 1px; width: 22px; height: 22px;
  border-radius: 6px; background: rgba(20,100,220,.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231F6BFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.ticks strong { color: var(--text); display: block; }

/* ============================================================
   STEPS / PROCESS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; list-style: none; padding: 0; margin: 0; position: relative; }
.steps--4 { grid-template-columns: repeat(4, 1fr); }
.steps::before {
  content: ''; position: absolute; top: 32px; left: 9%; right: 9%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--electric-blue) 0 8px, transparent 8px 14px);
  z-index: 0;
}
@media (max-width: 760px) { .steps, .steps--4 { grid-template-columns: 1fr; } .steps::before { display: none; } }
.step { text-align: center; position: relative; z-index: 1; }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; background: var(--electric-blue); color: #fff;
  border-radius: 50%; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 26px;
  margin-bottom: 18px; box-shadow: 0 6px 18px rgba(20,100,220,.4); border: 5px solid var(--bg);
}
.step h3 { margin: 0 0 8px; font-size: 19px; color: var(--text); }
.step p { margin: 0; color: var(--text-mute); font-size: 15px; }

/* Ordered process list (detailed, e.g. general pest job) */
.process { list-style: none; counter-reset: p; padding: 0; margin: 0; display: grid; gap: 2px; }
.process li {
  counter-increment: p; position: relative; padding: 16px 18px 16px 60px;
  border: 1px solid var(--border); background: var(--bg-card);
  color: var(--text);
}
.process li:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.process li:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.process li + li { border-top: 0; }
.process li::before {
  content: counter(p, decimal-leading-zero);
  position: absolute; left: 18px; top: 16px;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; color: var(--electric-blue); font-size: 16px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat { text-align: center; padding: 8px; }
.stat__num { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(36px, 5vw, 52px); color: var(--electric-blue); line-height: 1; letter-spacing: -0.02em; }
.stat__label { color: var(--text-mute); font-size: 14px; margin-top: 8px; font-weight: 600; }

/* ============================================================
   AREAS
   ============================================================ */
.areas-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 760px) { .areas-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .areas-list { grid-template-columns: 1fr; } }
.areas-list li {
  padding: 15px 18px; background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid var(--electric-blue); border-radius: var(--radius);
  font-weight: 600; color: var(--text); font-size: 15px;
}
.areas-list li small { display: block; font-weight: 500; color: var(--text-mute); font-size: 12px; margin-top: 2px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews { grid-template-columns: 1fr; } }
.review { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.review__stars { color: var(--electric-blue); font-size: 17px; letter-spacing: 3px; margin-bottom: 14px; }
.review p { margin: 0 0 16px; color: var(--text); font-size: 16px; line-height: 1.55; }
.review footer { font-size: 13px; font-weight: 700; color: var(--electric-blue); text-transform: uppercase; letter-spacing: 0.06em; }
.reviews__more { text-align: center; margin-top: 36px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: 10px; max-width: 840px; margin: 0 auto; }
.faq__item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq__item summary {
  padding: 20px 24px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 17px; color: var(--text);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background .15s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-weight: 800; font-size: 26px; color: var(--electric-blue); transition: transform .2s; line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { background: var(--bg-alt); }
.faq__item p { margin: 0; padding: 0 24px 22px; color: var(--text-mute); font-size: 16px; line-height: 1.6; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.price-card {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 28px;
  position: relative;
}
.price-card--feature { border-color: var(--electric-blue); box-shadow: var(--shadow-hover); }
.price-card__tag {
  position: absolute; top: -12px; left: 28px; background: var(--electric-blue); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
}
.price-card h3 { margin: 0 0 6px; font-size: 20px; color: var(--text); }
.price-card .price { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 40px; color: var(--text); letter-spacing: -0.02em; }
.price-card .price small { font-size: 15px; color: var(--text-mute); font-weight: 600; }
.price-card .price-note { color: var(--text-mute); font-size: 14px; margin: 4px 0 18px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; flex: 1; }
.price-card li { position: relative; padding-left: 26px; color: var(--text-mute); font-size: 15px; }
.price-card li::before {
  content: ''; position: absolute; left: 0; top: 4px; width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231F6BFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--brand-black); color: #fff; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 90% at 80% 50%, rgba(20,100,220,.28), transparent 60%);
}
.cta-band__inner { max-width: var(--maxw); margin: 0 auto; padding: 72px 24px; position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr auto; gap: 36px; align-items: center; }
@media (max-width: 820px) { .cta-band__inner { grid-template-columns: 1fr; text-align: center; } }
.cta-band h2 { font-size: clamp(28px, 4vw, 44px); color: #fff; margin: 0 0 12px; }
.cta-band p { color: rgba(255,255,255,.72); margin: 0; font-size: 18px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 820px) { .cta-band__actions { justify-content: center; } }
/* large click-to-call variant */
.cta-band__phone { display: flex; flex-direction: column; gap: 6px; }
@media (max-width: 820px) { .cta-band__phone { align-items: center; } }
.cta-band__phone small { color: rgba(255,255,255,.6); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.cta-band__phone a { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(30px,4vw,44px); color: #fff; display: inline-flex; align-items: center; gap: 12px; letter-spacing: -.02em; }
.cta-band__phone a:hover { color: #fff; }
.cta-band__phone a svg { width: 30px; height: 30px; color: #6FA0FF; }
.cta-band__alt { color: rgba(255,255,255,.6); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(15px,1.8vw,19px); letter-spacing: .04em; margin-top: 2px; }

/* ============================================================
   USP STRIP (overlaps hero seam)
   ============================================================ */
.usp { position: relative; z-index: 3; margin-top: -64px; }
.usp__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.usp__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; box-shadow: var(--shadow-pop); }
@media (max-width: 860px) { .usp__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .usp__grid { grid-template-columns: 1fr; } }
.usp__item { display: flex; gap: 13px; align-items: center; padding: 12px 14px; }
.usp__item + .usp__item { border-left: 1px solid var(--border); }
@media (max-width: 860px) { .usp__item + .usp__item { border-left: 0; } }
.usp__ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(20,100,220,.1); color: var(--electric-blue); display: flex; align-items: center; justify-content: center; }
.usp__ic svg { width: 24px; height: 24px; }
.usp__item b { display: block; font-size: 15px; color: var(--text); }
.usp__item small { color: var(--text-mute); font-size: 13px; }

/* ============================================================
   SPECIMEN SERVICE CARDS (.svc)
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }
.svc { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 28px 28px; overflow: hidden; transition: transform .28s var(--ease), box-shadow .28s, border-color .28s; }
.svc:hover { transform: translateY(-6px); box-shadow: 0 24px 54px rgba(10,26,61,.14); border-color: var(--border-strong); }
.svc__idx { position: absolute; top: 24px; right: 26px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 13px; color: var(--border-strong); letter-spacing: .06em; }
.svc__ghost { position: absolute; right: -30px; bottom: -34px; width: 160px; height: 160px; color: rgba(20,100,220,.06); pointer-events: none; transition: transform .4s var(--ease), color .28s; }
.svc:hover .svc__ghost { transform: rotate(-8deg) scale(1.06); color: rgba(20,100,220,.1); }
.svc__ghost svg { width: 100%; height: 100%; }
.svc__icon { width: 50px; height: 50px; color: var(--electric-blue); margin-bottom: 22px; position: relative; }
.svc h3 { font-size: 22px; margin: 0 0 12px; color: var(--text); position: relative; display: inline-block; }
.svc h3::after { content:''; position:absolute; left:0; bottom:-7px; height:3px; width:24px; background: var(--electric-blue); border-radius:2px; transition: width .3s var(--ease); }
.svc:hover h3::after { width: 52px; }
.svc p { color: var(--text-mute); font-size: 15px; margin: 0 0 20px; position: relative; }
.svc__link { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--electric-blue); display: inline-flex; align-items: center; gap: 8px; position: relative; }
.svc__link svg { width: 15px; height: 15px; transition: transform .2s; }
.svc:hover .svc__link svg { transform: translateX(5px); }

/* ============================================================
   ABOUT MEDIA FLOATING BADGE + CURVED DIVIDER
   ============================================================ */
.about__media { position: relative; }
.about__badge { position: absolute; right: -22px; bottom: 28px; width: 128px; height: 128px; border-radius: 50%; background: #fff; color: var(--text); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 18px 44px rgba(10,26,61,.25); border: 6px solid var(--bg-alt); z-index: 2; }
.about__badge b { font-family: 'Bricolage Grotesque', sans-serif; font-size: 32px; color: var(--electric-blue); line-height: 1; }
.about__badge span { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); margin-top: 4px; padding: 0 10px; }
@media (max-width: 480px) { .about__badge { width: 104px; height: 104px; right: -8px; } .about__badge b { font-size: 26px; } }
.divider { height: 70px; position: relative; overflow: hidden; line-height: 0; }
.divider svg { position: absolute; bottom: -1px; left: 0; width: 100%; height: 100%; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.contact-list li {
  display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: center;
  padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text);
}
.contact-list .ic { width: 44px; height: 44px; border-radius: 10px; background: rgba(20,100,220,.10); color: var(--electric-blue); display: inline-flex; align-items: center; justify-content: center; }
.contact-list .ic svg { width: 20px; height: 20px; }
.contact-list .lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); display: block; }
.contact-list a, .contact-list strong { font-size: 16px; font-weight: 700; color: var(--text); }
.contact-list a:hover { color: var(--electric-blue); }
.map-frame { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--brand-black); color: #fff; padding: 64px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 860px) { .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__brand img { height: 60px; width: auto; margin-bottom: 16px; }
.footer__brand p { margin: 0 0 16px; color: rgba(255,255,255,.6); font-size: 15px; max-width: 34ch; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a { width: 38px; height: 38px; border-radius: 9px; border: 1px solid rgba(255,255,255,.16); display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: background .15s, border-color .15s, color .15s; }
.footer__socials a:hover { background: var(--electric-blue); border-color: var(--electric-blue); color: #fff; }
.footer__socials svg { width: 18px; height: 18px; }
.footer__col h4 { font-family: 'Hanken Grotesk', sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 16px; font-weight: 700; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer__col a, .footer__col li { color: rgba(255,255,255,.78); font-size: 15px; }
.footer__col a:hover { color: var(--electric-blue); }
.footer__col .muted { color: rgba(255,255,255,.55); font-size: 14px; }
/* Vanity number: "1800 BUG GUY" with the dialable digits it spells in brackets
   underneath. Colour-agnostic (inherits the link colour, dims via opacity) so it
   reads correctly on both the dark footer and light page backgrounds. */
.vanity { display: inline-flex; flex-direction: column; line-height: 1.12; }
.vanity > b { font-weight: 700; }
.vanity > span { font-size: .76em; font-weight: 600; opacity: .58; letter-spacing: .04em; }
.footer__bottom { max-width: var(--maxw); margin: 40px auto 0; padding: 22px 24px 0; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; color: rgba(255,255,255,.5); font-size: 13px; }
.footer__bottom a { color: rgba(255,255,255,.7); }
.footer__bottom a:hover { color: var(--electric-blue); }

/* ============================================================
   FLOATING CALL BUTTON (real tel: link to 1800)
   ============================================================ */
.fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--electric-blue); color: #fff;
  padding: 14px 20px; border-radius: 100px; font-weight: 700; font-size: 15px;
  box-shadow: 0 10px 28px rgba(20,100,220,.45);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.fab svg { width: 20px; height: 20px; }
.fab:hover { transform: translateY(-3px); color: #fff; background: var(--electric-blue-bright); box-shadow: 0 14px 36px rgba(20,100,220,.55); }
.fab__label { white-space: nowrap; }
@media (max-width: 480px) { .fab { bottom: 16px; right: 16px; padding: 13px; } .fab__label { display: none; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* Reveal-on-scroll is a progressive enhancement. It only hides content once the
   inline head script has set .js on <html>, so with JS blocked, errored or
   disabled the content stays fully visible instead of leaving blank gaps. */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   PROSE (long-form copy blocks)
   ============================================================ */
.prose { max-width: 70ch; }
.prose p { color: var(--text-mute); margin: 0 0 18px; }
.prose h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 40px 0 16px; color: var(--text); }
.prose h3 { font-size: 22px; margin: 28px 0 12px; color: var(--text); }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: 12px; margin: 0 0 18px; }
.prose ul li { position: relative; padding-left: 26px; color: var(--text-mute); }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; background: var(--electric-blue); border-radius: 2px; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.lead { font-size: clamp(17px,1.6vw,20px); color: var(--text-mute); }
.note { font-size: 13px; color: var(--text-mute); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
/* ============================================================
   SMALL-SCREEN TYPE TUNING
   ============================================================ */
@media (max-width: 600px) {
  .hero { padding: 92px 20px 128px; }
  .hero__title { font-size: clamp(30px, 7.4vw, 46px); letter-spacing: -0.02em; }
  .hero__sub { font-size: 16px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .hero__meta { gap: 10px 22px; font-size: 13px; }
  .page-hero { padding: 48px 20px 56px; }
  .page-hero h1 { font-size: clamp(27px, 7.4vw, 40px); }
  .page-hero .hero__ctas { flex-direction: column; align-items: stretch; }
  .page-hero .hero__ctas .btn { width: 100%; }
  .cta-band h2, .section__title, .split h2 { overflow-wrap: break-word; }
}

/* ============================================================
   BACKGROUND ANT (homepage only)
   A faint line-art ant crawls behind the content. Stack: #antbg
   (colour bands + ant, z-index 0) sits under all page content
   (z-index 1). The coloured sections give up only their flat base
   colour to #antbands so the ant shows over it; every section keeps
   its own decorative pseudo-elements, which still paint over the ant.
   All scoped to body.home so other pages are unaffected.
   ============================================================ */
.home { position: relative; }
#antbg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; overflow: hidden; }
#antbands > div { position: absolute; left: 0; right: 0; }
#antLayer { position: absolute; top: 0; left: 0; overflow: visible; will-change: transform; }
#ant { transition: color .3s linear; }

/* The header is deliberately NOT in this list: it keeps its own sticky z-index 60
   from .nav so the fixed mobile menu paints above the page. Capping it at z-index 1
   here trapped the open menu under the hero (the "bleed-through" bug). */
.home > main, .home > .divider, .home > .cta-band, .home > footer { position: relative; z-index: 1; }

/* Sections only give up their base colour once ant.js has painted the bands behind
   them (body.ant-on). Without JS, reduced motion, or before the script runs, the
   sections keep their normal backgrounds, so the page is never blank. */
.ant-on .hero, .ant-on .creds-band, .ant-on .cta-band { background: transparent; }
.ant-on .section--alt { background: transparent; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
  #antbg { display: none; }
}

/* ============================================================
   SECTOR SHOWCASE (strata & commercial proof grid)
   Real job photos with a sector tag, editorial bottom-overlay.
   Shows the kind of sites Mark looks after without naming clients.
   ============================================================ */
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .sector-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sector-grid { grid-template-columns: 1fr; } }
.sector {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--brand-black);
  box-shadow: var(--shadow-card);
  isolation: isolate;
  border: 1px solid var(--border);
}
.sector img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.sector:hover img { transform: scale(1.06); }
.sector::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,16,32,0) 36%, rgba(10,16,32,.5) 64%, rgba(10,16,32,.93) 100%);
}
.sector__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(20,100,220,.92); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 100px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.sector__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px 22px 20px; }
.sector__body h3 { color: #fff; font-size: 20px; margin: 0 0 5px; letter-spacing: -.01em; }
.sector__body p { color: rgba(255,255,255,.82); font-size: 13.5px; margin: 0; line-height: 1.45; }

/* ============================================================
   AREA DIRECTORY (areas page: suburbs grouped by district)
   ============================================================ */
.area-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .area-groups { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .area-groups { grid-template-columns: 1fr; } }
.area-group { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 24px 22px; transition: border-color .25s, box-shadow .25s; }
.area-group:hover { border-color: var(--border-strong); box-shadow: var(--shadow-card); }
.area-group h3 { font-size: 18px; margin: 0 0 14px; color: var(--text); display: flex; align-items: center; gap: 9px; }
.area-group h3 svg { width: 18px; height: 18px; color: var(--electric-blue); flex: none; }
.area-group ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 7px; }
.area-group li { font-size: 13px; color: var(--text-mute); background: var(--bg-alt); border: 1px solid var(--border); border-radius: 100px; padding: 5px 11px; }

/* ---- Cookie consent banner ---- */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--brand-black); color: #fff; padding: 14px 20px; box-shadow: 0 -4px 24px rgba(10,26,61,.28); border-top: 2px solid var(--electric-blue); }
#cookie-banner .cookie-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
#cookie-banner p { font-size: .9rem; line-height: 1.5; margin: 0; flex: 1; min-width: 260px; color: rgba(255,255,255,.9); }
#cookie-banner a { color: var(--electric-blue-bright); text-decoration: underline; }
#cookie-banner .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
#cookie-banner .cookie-btn { padding: 9px 20px; border-radius: var(--radius); font: inherit; font-size: .9rem; font-weight: 600; cursor: pointer; border: 1px solid transparent; transition: background .2s var(--ease), opacity .2s var(--ease); }
#cookie-banner .cookie-btn--decline { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
#cookie-banner .cookie-btn--decline:hover { background: rgba(255,255,255,.12); }
#cookie-banner .cookie-btn--accept { background: var(--electric-blue); color: #fff; }
#cookie-banner .cookie-btn--accept:hover { opacity: .9; }
@media (max-width: 600px) { #cookie-banner .cookie-inner { flex-direction: column; text-align: center; } #cookie-banner .cookie-btns { width: 100%; justify-content: center; } }
