/* ============================================================
   SCOOP WASTE REMOVAL — style.css
   Neo-brutalist but friendly. Baby blue van energy.
   Every colour on this site comes from the token list below.
   Every margin/padding is a multiple of the 4px base unit.
   ============================================================ */

/* ------------------------------------------------------------
   1. BRAND TOKENS — do not add colours outside this list
   ------------------------------------------------------------ */
:root {
  --baby-blue: #AEE2F5;        /* primary brand */
  --baby-blue-light: #E8F6FC;  /* section backgrounds */
  --navy: #0A2540;             /* headlines, body text, dark sections */
  --paper: #FAFAF8;            /* page background — warm off-white, NOT pure white */
  --white: #FFFFFF;            /* cards sitting on paper */
  --black: #111111;            /* ALL borders, outlines */
  --whatsapp: #25D366;         /* WhatsApp CTAs ONLY, nowhere else */

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;

  --radius: 12px;              /* cards, buttons */
  --radius-pill: 999px;        /* area tags only */

  /* Signature shadow system — hard offset, ZERO blur.
     On hover a soft baby blue glow is layered UNDER the hard offset —
     the one deliberate exception to the no-blur rule. */
  --shadow: 5px 5px 0 var(--black);
  --shadow-hover: 7px 7px 0 var(--black);
  --shadow-press: 2px 2px 0 var(--black);
  --shadow-small: 3px 3px 0 var(--black);
  --glow: 0 0 28px rgba(174, 226, 245, 0.75); /* --baby-blue at 75% */
}

/* ------------------------------------------------------------
   2. RESET + BASE
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* guard against any stray overflow at 375px */
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; }

/* Visible focus for keyboard users — hard black outline, offset */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 3px;
}

/* ------------------------------------------------------------
   3. TYPE SCALE — dramatic contrast between levels
   ------------------------------------------------------------ */
h1, h2, h3, .logo, .stat-figure {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); text-transform: uppercase; }
h3 { font-size: 1.375rem; }

.section-sub {
  font-size: 1.125rem;
  max-width: 620px;
}

/* ------------------------------------------------------------
   4. LAYOUT HELPERS
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.section { padding: var(--space-16) 0; }
@media (min-width: 768px) { .section { padding: var(--space-24) 0; } }

.bg-paper { background: var(--paper); }
.bg-blue-light { background: var(--baby-blue-light); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-baby-blue { background: var(--baby-blue); color: var(--navy); }

/* ------------------------------------------------------------
   5. BUTTONS
   Baby blue is VERY light — navy text only on it, never white.
   All touch targets >= 44px tall.
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 52px;
  padding: var(--space-3) var(--space-6);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.0625rem;
  text-decoration: none;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hover), var(--glow); }
.btn:active { transform: translate(2px, 2px); box-shadow: var(--shadow-press); }

/* Primary — WhatsApp green, white text. Green is ONLY for WhatsApp actions. */
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }

/* Secondary — baby blue with navy text (hard accessibility rule: never white on baby blue) */
.btn-secondary { background: var(--baby-blue); color: var(--navy); }

/* Tertiary — navy with white text */
.btn-tertiary { background: var(--navy); color: var(--white); }

/* White — used on the baby blue big CTA band */
.btn-white { background: var(--white); color: var(--navy); }

.btn-lg { min-height: 60px; font-size: 1.25rem; padding: var(--space-4) var(--space-8); }

/* Inline WhatsApp glyph inside buttons */
.wa-icon { width: 22px; height: 22px; flex: none; }

/* ------------------------------------------------------------
   6. CARDS — the signature look
   ------------------------------------------------------------ */
.card {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-6);
}

.card-hover { transition: transform 0.15s ease, box-shadow 0.15s ease; }
.card-hover:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hover), var(--glow); }

/* ------------------------------------------------------------
   7. ANNOUNCEMENT BAR
   ------------------------------------------------------------ */
.announcement {
  background: var(--baby-blue);
  color: var(--navy);
  border-bottom: 2px solid var(--black);
  text-align: center;
  padding: var(--space-2) var(--space-4);
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ------------------------------------------------------------
   8. STICKY NAV
   ------------------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 2px solid var(--black);
}
/* Frosted paper once the page scrolls (class added by main.js) */
.nav.is-scrolled {
  background: rgba(250, 250, 248, 0.85); /* --paper at 85% */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 72px;
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}

.logo {
  font-size: 1.75rem;
  color: var(--navy);
  text-decoration: none;
  line-height: 1;
}
.logo .dot { color: var(--baby-blue); -webkit-text-stroke: 1.5px var(--black); }

.nav-links {
  display: none; /* mobile: collapsed into drawer */
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  padding: var(--space-2) 0; /* keeps the tap target tall */
}
.nav-links a:hover { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 3px; text-decoration-color: var(--baby-blue); }

.nav-cta { min-height: 44px; padding: var(--space-2) var(--space-4); font-size: 0.9375rem; box-shadow: var(--shadow-small); }
.nav-cta:hover { box-shadow: var(--shadow); }
.nav-cta:active { box-shadow: var(--shadow-press); }

/* Hamburger (mobile only) */
.nav-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: var(--space-3);
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  cursor: pointer;
}
.nav-burger span { display: block; height: 3px; width: 100%; background: var(--navy); border-radius: 2px; transition: transform 0.15s ease, opacity 0.15s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  background: var(--paper);
  border-bottom: 2px solid var(--black);
  padding: var(--space-4);
}
.nav-drawer.is-open { display: block; }
.nav-drawer a {
  display: block;
  padding: var(--space-3) var(--space-2);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 2px solid var(--baby-blue-light);
}
.nav-drawer a:last-child { border-bottom: none; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-burger, .nav-drawer { display: none !important; }
}

/* ------------------------------------------------------------
   9a. FULL-SCREEN INTRO HEADER — the spiral animation alone,
   with the SCOOP wordmark surfacing in the centre. The nav and
   everything else lives below the fold; a chevron invites the
   scroll.
   ------------------------------------------------------------ */
.hero-intro {
  position: relative;
  height: 100vh;
  height: 100svh; /* stable on mobile browser chrome */
  background: var(--navy);
  border-bottom: 2px solid var(--black);
  overflow: hidden;
}

/* The canvas the spiral galaxy animation paints onto (see main.js) */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-logo {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  /* surfaces out of the galaxy well after the spiral has drawn —
     long delay + slow fade so the animation gets its moment first */
  opacity: 0;
  animation: logo-surface 3.5s ease 5s forwards;
}
@keyframes logo-surface {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.hero-logo-mark {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 15vw, 11rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
  text-shadow: 6px 6px 0 var(--black);
}
.hero-logo-mark .dot { color: var(--baby-blue); }

.hero-logo-tag {
  margin-top: var(--space-3);
  font-weight: 700;
  font-size: clamp(0.8125rem, 2vw, 1rem);
  letter-spacing: 0.35em;
  color: var(--baby-blue);
  text-transform: uppercase;
}

/* Scroll invitation at the base of the intro */
.scroll-cue {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  margin-left: -24px; /* centres the 48px target */
  z-index: 2;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--baby-blue);
  background: var(--navy);
  border: 2px solid var(--baby-blue);
  border-radius: 50%;
  animation: cue-bob 1.8s ease-in-out infinite;
}
.scroll-cue svg { width: 22px; height: 22px; }
@keyframes cue-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ------------------------------------------------------------
   9b. HERO CONTENT — light editorial split below the intro
   ------------------------------------------------------------ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--baby-blue-light);
  color: var(--navy);
  border-bottom: 2px solid var(--black);
  overflow: hidden;
  padding: var(--space-16) 0;
}
@media (min-width: 900px) { .hero { padding: var(--space-24) 0; } }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
}

.eyebrow {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-4);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-6);
}

.hero h1 { color: var(--navy); margin-bottom: var(--space-6); }
.hero h1 .fast {
  display: block;
  color: var(--baby-blue);
  text-shadow: 4px 4px 0 var(--navy); /* baby blue is faint on light bg — navy offset gives it the punch */
}

.hero-sub {
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 520px;
  margin-bottom: var(--space-8);
  color: var(--navy);
}

/* ------------------------------------------------------------
   9c. TICKER STRIP — continuous marquee of the promises
   ------------------------------------------------------------ */
.ticker {
  background: var(--navy);
  border-bottom: 2px solid var(--black);
  overflow: hidden;
  padding: var(--space-3) 0;
}
.ticker-track {
  display: flex;
  gap: var(--space-12);
  white-space: nowrap;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-track span {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--baby-blue);
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* track content is duplicated, so -50% loops seamlessly */
}

/* The three-step card in the hero */
.hero-steps {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
  display: grid;
  gap: var(--space-4);
  max-width: 520px;
}
.hero-step { display: flex; align-items: center; gap: var(--space-4); font-weight: 600; }

.step-num {
  flex: none;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--baby-blue);
  color: var(--navy);
  border: 2px solid var(--black);
  border-radius: 50%;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.125rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* ------------------------------------------------------------
   10. THE VAN — real footage in a card that matches the border
   system. Paused by main.js under prefers-reduced-motion.
   ------------------------------------------------------------ */
.van-stage { position: relative; padding: var(--space-8) 0; }

.van-video {
  display: block;
  width: 100%;
  height: auto;
  background: var(--navy); /* letterbox colour while the first frame loads */
  border: 2px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ------------------------------------------------------------
   11. STATS BAR — navy, cells divided by black rules
   ------------------------------------------------------------ */
.stats {
  background: var(--navy);
  color: var(--white);
  border-bottom: 2px solid var(--black);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat {
  padding: var(--space-6) var(--space-4);
  text-align: center;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
@media (min-width: 768px) { .stat { border-bottom: none; } }
.stat:last-child { border-right: none; }
@media (max-width: 767px) { .stat:nth-child(2n) { border-right: none; } }

.stat-figure { font-size: 1.5rem; display: block; }
.stat-label { font-size: 0.875rem; color: var(--baby-blue); font-weight: 600; }

/* ------------------------------------------------------------
   12. HOW IT WORKS — four cards
   ------------------------------------------------------------ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-12);
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card { text-align: left; }
.step-card .step-num { width: 56px; height: 56px; font-size: 1.5rem; margin-bottom: var(--space-4); }
.step-card h3 { margin-bottom: var(--space-2); }
.step-card p { font-size: 0.9375rem; }

/* ------------------------------------------------------------
   13. WHATSAPP QUOTE SECTION
   ------------------------------------------------------------ */
.wa-card {
  max-width: 760px;
  margin: var(--space-12) auto 0;
  text-align: center;
  padding: var(--space-8) var(--space-6);
}
@media (min-width: 768px) { .wa-card { padding: var(--space-12); } }

.wa-card > p { max-width: 560px; margin: 0 auto var(--space-8); }

.wa-steps {
  list-style: none;
  counter-reset: wa;
  display: grid;
  gap: var(--space-3);
  max-width: 420px;
  margin: 0 auto var(--space-8);
  text-align: left;
}
.wa-steps li {
  counter-increment: wa;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 600;
}
.wa-steps li::before {
  content: counter(wa);
  flex: none;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--baby-blue);
  border: 2px solid var(--black);
  border-radius: 50%;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
}

.wa-promise {
  margin-top: var(--space-4);
  font-size: 0.9375rem;
  font-weight: 600;
  font-style: italic;
}

/* ------------------------------------------------------------
   14. SERVICES GRID
   ------------------------------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-12);
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--baby-blue-light);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hover), var(--glow); }

/* Hand-drawn icon badge on service cards — white tile, navy stroke icon */
.service-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}
.service-icon svg { width: 30px; height: 30px; }
.service-card p { flex: 1; font-size: 0.9375rem; }
.service-card .btn { align-self: flex-start; min-height: 48px; padding: var(--space-2) var(--space-4); font-size: 0.9375rem; }

/* ------------------------------------------------------------
   15. WHY SCOOP — navy section
   ------------------------------------------------------------ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: start;
}
@media (min-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.why-list { list-style: none; display: grid; gap: var(--space-4); margin-top: var(--space-8); }
.why-list li { display: flex; gap: var(--space-3); font-size: 1.125rem; font-weight: 600; align-items: flex-start; }
.check {
  flex: none;
  color: var(--baby-blue);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.375rem;
  line-height: 1.3;
}

.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.why-card {
  /* darker navy fill via layered shadow trick is off-palette; use navy + black border tone-on-tone */
  background: var(--navy);
  border: 2px solid var(--baby-blue);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--baby-blue);
  padding: var(--space-6) var(--space-4);
  text-align: center;
}
.why-card { transition: transform 0.15s ease, box-shadow 0.15s ease; }
.why-card:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--baby-blue), var(--glow); }
.why-card .why-icon { display: inline-flex; margin-bottom: var(--space-3); color: var(--baby-blue); }
.why-card .why-icon svg { width: 32px; height: 32px; }
.why-card p { font-weight: 700; font-size: 0.9375rem; color: var(--white); }

/* ------------------------------------------------------------
   16. AREAS — pill tags
   ------------------------------------------------------------ */
.areas-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}
.area-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--black);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-small);
  padding: var(--space-2) var(--space-4);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.area-pill:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow), var(--glow); }
.area-pill:active { transform: translate(2px, 2px); box-shadow: var(--shadow-press); }

/* ------------------------------------------------------------
   17. TRUST ROW
   ------------------------------------------------------------ */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-8) 0;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  padding: var(--space-2) var(--space-4);
  font-size: 0.8125rem;
  font-weight: 600;
}
.trust-badge svg { width: 18px; height: 18px; flex: none; color: var(--navy); }

/* ------------------------------------------------------------
   18. BIG CTA — full-bleed baby blue
   ------------------------------------------------------------ */
.big-cta {
  background: var(--baby-blue);
  color: var(--navy);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  text-align: center;
}
.big-cta h2 { font-size: clamp(2.25rem, 6vw, 4.5rem); }
.big-cta p { font-size: 1.25rem; font-weight: 600; margin: var(--space-4) 0 var(--space-8); }
.big-cta .hero-ctas { justify-content: center; }

/* ------------------------------------------------------------
   19. FOOTER
   ------------------------------------------------------------ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: var(--space-16) 0 var(--space-8);
}
.footer a { color: var(--baby-blue); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer .logo { color: var(--white); }
.footer h3 { font-size: 1rem; margin-bottom: var(--space-3); text-transform: uppercase; letter-spacing: 0.05em; }
.footer ul { list-style: none; display: grid; gap: var(--space-2); font-size: 0.9375rem; }
.footer-tagline { margin-top: var(--space-3); font-size: 0.9375rem; max-width: 260px; }

.footer-bottom {
  border-top: 2px solid var(--navy);
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: 0.8125rem;
}
.ea-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  padding: var(--space-1) var(--space-3);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ------------------------------------------------------------
   20. FLOATING WHATSAPP BUTTON — every page, always visible
   ------------------------------------------------------------ */
.wa-float {
  position: fixed;
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 200;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp);
  border: 2px solid var(--black);
  border-radius: 50%;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-float:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hover), var(--glow); }
.wa-float:active { transform: translate(2px, 2px); box-shadow: var(--shadow-press); }
.wa-float svg { width: 30px; height: 30px; }

/* ------------------------------------------------------------
   21. INNER PAGES — page header + content blocks
   ------------------------------------------------------------ */
.page-header {
  background: var(--baby-blue-light);
  border-bottom: 2px solid var(--black);
  padding: var(--space-16) 0;
  text-align: center;
}
.page-header p { max-width: 620px; margin: var(--space-4) auto 0; font-size: 1.125rem; }

.prose { max-width: 720px; }
.prose h2 { margin-bottom: var(--space-4); }
.prose h3 { margin-top: var(--space-8); margin-bottom: var(--space-2); }
.prose p { margin-bottom: var(--space-4); }
.prose ul { margin: 0 0 var(--space-4) var(--space-6); }
.prose li { margin-bottom: var(--space-1); }

.service-section .container { max-width: 820px; }
.service-section h2 { margin-bottom: var(--space-4); }
.service-section p { margin-bottom: var(--space-4); max-width: 680px; }
.service-section .btn { margin-top: var(--space-2); }
.service-meta { font-size: 0.875rem; font-weight: 600; margin-top: var(--space-4); }

/* Area blocks on areas.html */
.area-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-12);
}
@media (min-width: 768px) { .area-blocks { grid-template-columns: 1fr 1fr; } }

.area-block { display: flex; flex-direction: column; gap: var(--space-2); }
.area-block .postcodes {
  align-self: flex-start;
  background: var(--baby-blue);
  color: var(--navy);
  border: 2px solid var(--black);
  border-radius: var(--radius-pill);
  padding: var(--space-1) var(--space-3);
  font-size: 0.8125rem;
  font-weight: 700;
}
.area-block p { font-size: 0.9375rem; flex: 1; }
.area-block .area-links { font-size: 0.875rem; font-weight: 600; }

/* FAQ on services.html */
.faq-list { max-width: 760px; margin: var(--space-12) auto 0; display: grid; gap: var(--space-4); }
.faq-item { padding: var(--space-6); }
.faq-item h3 { margin-bottom: var(--space-2); }
.faq-item p { font-size: 0.9375rem; }

/* ------------------------------------------------------------
   22. SCROLL REVEAL (IntersectionObserver adds .is-visible)
   ------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ------------------------------------------------------------
   23. REDUCED MOTION — freeze everything
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-logo { opacity: 1; } /* wordmark shows immediately, no surface-in */
}

/* Inline stroke icons used across sections (services h2, stats, etc.) */
.h2-icon { display: inline-flex; vertical-align: -4px; margin-right: var(--space-2); }
.h2-icon svg { width: 32px; height: 32px; }
.stat-icon { display: inline-flex; vertical-align: -3px; margin-right: var(--space-1); }
.stat-icon svg { width: 22px; height: 22px; color: var(--baby-blue); }
