/* ==========================================================================
   Alpha Clean Sunshine Coast
   Mobile-first. min-width queries only — never mix in max-width, or rules
   silently override each other. Fluid type/space via clamp() so there are no
   dead zones between breakpoints.
   Brand colours are sampled from the logo: #45B3E6 sky, #1A2652 navy.
   No gradients, no coloured glows. Flat colour, neutral grey shadow.
   ========================================================================== */

:root {
  /* Brand */
  --navy:        #1A2652;
  --navy-deep:   #131C3D;
  --navy-soft:   #2C3A6E;
  --sky:         #45B3E6;
  --sky-deep:    #2A94C6;
  --sky-wash:    #EAF6FC;

  /* Neutrals */
  --paper:       #FFFFFF;
  --paper-warm:  #F6F8FA;
  --paper-deep:  #ECF1F5;
  --ink:         #16203D;
  --ink-soft:    #4A5670;
  --ink-faint:   #7C87A0;
  --line:        #DDE4EC;
  --line-strong: #C6D1DD;

  /* Accent — used sparingly, on the money action only */
  --accent:      #0B7A53;
  --accent-deep: #096544;

  /* Type */
  --font-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Karla", "Segoe UI", system-ui, -apple-system, sans-serif;

  --step--1: clamp(0.83rem, 0.8rem + 0.14vw, 0.91rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.11rem);
  --step-1:  clamp(1.18rem, 1.09rem + 0.44vw, 1.42rem);
  --step-2:  clamp(1.45rem, 1.26rem + 0.95vw, 2.05rem);
  --step-3:  clamp(1.9rem, 1.53rem + 1.85vw, 3.05rem);
  --step-4:  clamp(2.35rem, 1.6rem + 3.4vw, 4.6rem);

  --gutter: clamp(1.15rem, 5vw, 4.5rem);

  /* Neutral grey shadows only. Never a coloured glow. */
  --shadow-sm:   0 1px 2px rgba(22, 32, 61, .05), 0 4px 10px rgba(22, 32, 61, .05);
  --shadow-card: 0 1px 2px rgba(22, 32, 61, .05), 0 10px 26px rgba(22, 32, 61, .08);
  --shadow-lift: 0 2px 6px rgba(22, 32, 61, .07), 0 22px 48px rgba(22, 32, 61, .13);

  /* Deliberately varied radii — one radius everywhere reads as a template */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-slow: cubic-bezier(.33, .02, .18, 1);

  /* .site-header: 74px min-height + .75rem padding top and bottom */
  --header-h: 98px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--sky-deep);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff;
  padding: .8rem 1.3rem; text-decoration: none; font-weight: 700;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.022em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); font-weight: 500; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); line-height: 1.25; }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

.lede { font-size: var(--step-1); line-height: 1.55; color: var(--ink-soft); text-wrap: pretty; }
.muted { color: var(--ink-soft); }
.small { font-size: var(--step--1); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin: 0 0 .9rem;
}
.eyebrow-light { color: var(--sky); }

.section-head { margin: 0 0 1rem; }
.section-lede {
  font-size: var(--step-1); line-height: 1.55;
  color: var(--ink-soft); max-width: 62ch; margin: 0 0 2.5rem;
  text-wrap: pretty;
}

/* ---------- Layout ---------- */
.wrap { width: min(1200px, 100% - (var(--gutter) * 2)); margin-inline: auto; }
.wrap-narrow { width: min(720px, 100% - (var(--gutter) * 2)); margin-inline: auto; }
section { padding-block: clamp(3rem, 6vw, 5.5rem); }

/* ---------- Section bands ----------
   Visual separation comes from alternating grounds, not from whitespace.
   Grey / white / tinted / navy / photo, in that rough rotation. */
.band-grey { background: var(--paper-warm); border-block: 1px solid var(--line); }
.band-tint { background: var(--sky-wash); border-block: 1px solid #D8EAF6; }
.band-navy { background: var(--navy); color: #fff; }
.band-navy h2, .band-navy h3 { color: #fff; }
.band-navy .lede { color: rgba(255,255,255,.82); }
.center-block { text-align: center; }
.center-block .hero-actions { justify-content: center; }
.center-block p { margin-inline: auto; max-width: 60ch; }
.prose-after { margin-top: 1.5rem; font-weight: 700; color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 46px;
  padding: .72rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 700; font-size: var(--step-0);
  text-decoration: none; white-space: nowrap;
  border: 1.5px solid transparent; border-radius: 100px;
  cursor: pointer;
  transition: background .22s var(--ease), border-color .22s var(--ease),
              color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.btn-lg { min-height: 54px; padding: .95rem 1.9rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: var(--shadow-card); }

/* The single premium accent. Money actions only. */
.btn-accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: var(--shadow-card); }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--navy); background: var(--paper-warm); }

.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.42); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; color: var(--sky-deep); text-decoration: none;
  border-bottom: 1.5px solid transparent;
  padding-block: .5rem 2px;   /* clears the 44px tap-target floor */
  transition: color .2s var(--ease), border-color .2s var(--ease), gap .2s var(--ease);
}
.link-arrow:hover { color: var(--navy); border-bottom-color: var(--navy); gap: .7rem; }
.link-arrow-light { color: var(--sky); }
.link-arrow-light:hover { color: #fff; border-bottom-color: #fff; }

/* ---------- Header ---------- */
.site-header {
  /* Must sit above .nav-scrim (65): position:sticky + z-index creates a
     stacking context, so the drawer's own z-index is scoped inside this one.
     At 60 the entire mobile menu rendered under the scrim and could not be
     tapped. */
  position: sticky; top: 0; z-index: 70;
  padding: .75rem var(--gutter);
}
.site-header-inner {
  width: min(1200px, 100%); margin-inline: auto;
  min-height: 74px;
  display: flex; align-items: center; gap: clamp(.4rem, 2vw, 1rem);
  padding: 0 .35rem;
  border: 1px solid transparent;
  border-radius: 100px;
  transition: width .55s var(--ease-slow), padding .55s var(--ease-slow),
              min-height .55s var(--ease-slow), background .5s var(--ease-slow),
              border-color .5s var(--ease-slow), box-shadow .5s var(--ease-slow);
}
.site-header.is-stuck .site-header-inner {
  width: min(1080px, 100%); min-height: 62px;
  padding: 0 .5rem 0 1.15rem;
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
  backdrop-filter: blur(18px) saturate(165%);
  border-color: var(--line);
  box-shadow: var(--shadow-card);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header.is-stuck .site-header-inner { background: rgba(255, 255, 255, .97); }
}

.brand { display: flex; align-items: center; flex: none; }
.brand img {
  height: clamp(34px, 8.5vw, 56px); width: auto;
  transform-origin: left center;
  will-change: transform;
  transition: transform .55s var(--ease-slow);
}
.site-header.is-stuck .brand img { transform: scale(.68); }
.brand { min-width: 0; }

/* Above the open drawer (.nav is z-index 70 in this same stacking context),
   so the close button and the Book CTA stay visible and tappable. */
.header-actions { display: flex; align-items: center; gap: .5rem; margin-left: auto; position: relative; z-index: 80; }

/* Hidden on the narrowest phones so the header row fits — the number is still
   in the drawer and the footer. Shown again from 25em up. */
.header-call {
  display: none; place-content: center; flex: none;
  width: 46px; height: 46px; border-radius: 50%;
  color: var(--navy); border: 1.5px solid var(--line-strong);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.header-call:hover { border-color: var(--navy); background: var(--paper-warm); }

.nav-cta { padding: .6rem clamp(.85rem, 3vw, 1.35rem); min-height: 46px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .22s var(--ease); }


/* Hamburger */
.nav-toggle {
  display: grid; place-content: center; flex: none;
  width: 46px; height: 46px; padding: 0;
  background: transparent; border: 1.5px solid var(--line-strong); border-radius: 50%;
  cursor: pointer;
  transition: border-color .2s var(--ease);
}
.nav-toggle:hover { border-color: var(--navy); }
.nav-toggle-bars { display: grid; gap: 4px; width: 17px; }
.nav-toggle-bars span {
  display: block; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.nav {
  position: fixed; inset: 0 0 0 auto;
  width: min(360px, 86vw);
  background: var(--paper);
  padding: 5.5rem 1.6rem 2rem;
  transform: translateX(100%);
  transition: transform .38s var(--ease);
  z-index: 70;
  overflow-y: auto;
  box-shadow: var(--shadow-lift);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.nav.is-open { transform: translateX(0); }
.no-js .nav { position: static; width: auto; transform: none; padding: 0; box-shadow: none; }

.nav-list { display: grid; gap: .15rem; }
.nav-link {
  display: flex; align-items: center; gap: .35rem;
  width: 100%;
  padding: .8rem .2rem;
  min-height: 46px;
  font-family: var(--font-display);
  font-size: var(--step-1); font-weight: 500;
  color: var(--navy); text-decoration: none;
  background: none; border: 0; text-align: left; cursor: pointer;
  border-bottom: 1px solid var(--line);
}
.nav-link:hover { color: var(--sky-deep); }
/* Current page. In the mobile drawer it reads as a coloured row with a bar;
   on desktop it becomes an underline beneath the link. */
.nav-link[aria-current="page"],
.nav-link.is-active { color: var(--sky-deep); }
.nav-sub a[aria-current="page"] { color: var(--sky-deep); font-weight: 700; }
.nav-sub-toggle svg { transition: transform .25s var(--ease); }
.nav-sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav-sub { display: none; padding: .4rem 0 .8rem .9rem; border-bottom: 1px solid var(--line); }
.nav-sub.is-open { display: grid; gap: .1rem; }
.nav-sub a {
  display: block; padding: .6rem .2rem; min-height: 44px;
  color: var(--ink-soft); text-decoration: none; font-weight: 500;
}
.nav-sub a:hover { color: var(--sky-deep); }

.nav-foot { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }
.nav-phone {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; color: var(--navy); text-decoration: none; min-height: 46px;
}

.nav-scrim {
  position: fixed; inset: 0; z-index: 65;
  background: rgba(19, 28, 61, .45);
  opacity: 0; transition: opacity .3s var(--ease);
}
.nav-scrim.is-visible { opacity: 1; }
body.nav-open { overflow: hidden; }

/* Hero and trust bar are one full-viewport block: the hero takes the leftover
   space, so the trust bar lands on the fold at any window height and the
   section after it is always below. */
.hero-block {
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  flex-direction: column;
}
.hero-block .hero { flex: 1 1 auto; }
.hero-block .trustbar { flex: none; }

/* ---------- Hero ----------
   Full-bleed photo. The top ~15% holds solid white so the transparent
   sticky header sits on white and the image appears to grow out of it.
   This is a legibility scrim, not decoration — the copy sits in the faded
   zone so it is dark text on near-white at every screen size. */
.hero {
  position: relative;
  isolation: isolate;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  display: block;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 62%;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(
    to bottom,
    #fff 0%,
    #fff 17%,
    rgba(255,255,255,.96) 27%,
    rgba(255,255,255,.9) 39%,
    rgba(255,255,255,.74) 51%,
    rgba(255,255,255,.42) 62%,
    rgba(255,255,255,0) 71%
  );
}
.hero-inner { position: relative; max-width: 60rem; }

.hero-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: .6rem;
  font-size: var(--step--1); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--sky-deep);
  margin: 0 0 1.3rem;
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }

/* Let the headline use the width it has — boxed to 16ch it wrapped to four
   cramped lines with empty space beside it. */
.hero h1 {
  margin: 0;
  max-width: 24ch;
  font-size: clamp(2.25rem, 1.5rem + 3.3vw, 4.4rem);
  line-height: 1.04;
}
.hero-lede { margin-top: 1.5rem; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }
/* On a phone the copy runs lower than the fade, so this line lands on bare
   photo. A translucent backing keeps it readable whatever image sits behind
   it — dropped from tablet up, where it already sits on white. */
.hero-note {
  display: inline-block;
  margin-top: 1.1rem;
  padding: .5rem .85rem;
  font-size: var(--step--1); color: var(--ink); font-weight: 600;
  line-height: 1.5;
  background: rgba(255, 255, 255, .84);
  -webkit-backdrop-filter: blur(7px) saturate(150%);
  backdrop-filter: blur(7px) saturate(150%);
  border-radius: var(--r-sm);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hero-note { background: rgba(255, 255, 255, .93); }
}

/* ---------- Trust bar ---------- */
.trustbar { background: var(--paper-warm); border-block: 1px solid var(--line); padding-block: clamp(2rem, 4vw, 2.75rem); }
.trust-list { display: grid; gap: 1.4rem; }
.trust-list li { display: grid; grid-template-columns: 34px 1fr; gap: .85rem; align-items: start; }
.trust-list svg { width: 26px; height: 26px; color: var(--sky-deep); margin-top: .1rem; }
.trust-list strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: var(--step-0); }
.trust-list span { display: block; font-size: var(--step--1); color: var(--ink-soft); line-height: 1.5; }

/* ---------- Steps ---------- */
.steps-section { background: var(--paper); }
.steps { display: grid; gap: 1.5rem; counter-reset: step; margin-top: 2.5rem; }
.step {
  counter-increment: step;
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.step::before {
  content: counter(step);
  display: grid; place-content: center;
  width: 38px; height: 38px; margin-bottom: 1rem;
  background: var(--navy); color: #fff;
  border-radius: 50%;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
}
.step h3 { margin: 0 0 .5rem; }
.step p { color: var(--ink-soft); font-size: var(--step--1); line-height: 1.6; margin: 0; }
.steps-foot { margin-top: 2rem; }

/* ---------- Services ---------- */
.service-grid { display: grid; gap: clamp(1.5rem, 3vw, 2rem); }
.service-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--line-strong); }
.service-card-media { display: block; overflow: hidden; background: var(--paper-deep); }
.service-card-media img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-card-media img { transform: scale(1.035); }
.service-card-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.service-card-body h3 { margin: 0; }
.service-card-body h3 a { text-decoration: none; }
.service-card-body h3 a:hover { color: var(--sky-deep); }
.service-card-body p { font-size: var(--step--1); color: var(--ink-soft); line-height: 1.6; margin: 0; flex: 1; }

/* ---------- Guarantee strip ---------- */
.guarantee-strip { background: var(--navy); color: #fff; }
.guarantee-inner { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
.guarantee-copy { max-width: 60ch; }
.guarantee-seal { display: flex; justify-content: center; }

/* These were lost when this block was restructured, so .lede fell back to the
   generic dark-grey ink colour — on a navy ground. */
.guarantee-strip h2 { color: #fff; margin-bottom: 1.1rem; }
.guarantee-strip .lede { color: rgba(255, 255, 255, .92); line-height: 1.6; margin-bottom: 1.1rem; }

/* The promise reads far better pulled out of the sentence than trailing it
   after a dash. */
.guarantee-quote {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--sky);
  margin: 0 0 1.6rem;
  text-wrap: balance;
}
.guarantee-quote-dark { color: var(--navy); margin-bottom: 1.2rem; }

/* ---------- Guarantee seal ---------- */
.seal { width: clamp(170px, 30vw, 250px); height: auto; }
.seal-face { fill: var(--navy-deep); }
.seal-line { stroke: var(--sky); }
.seal-tick { stroke: #fff; }

/* ---------- Eco ---------- */
.eco { background: var(--sky-wash); }
.eco-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
.eco-copy p { color: var(--ink-soft); }
.eco-points { display: grid; gap: 1rem; align-content: center; }
.eco-points li {
  display: grid; grid-template-columns: 42px 1fr; gap: 1rem; align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--sky);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.15rem 1.3rem;
  font-size: var(--step--1); line-height: 1.6; color: var(--ink-soft);
}
.eco-points svg { width: 26px; height: 26px; color: var(--sky-deep); }
.eco-points strong { display: block; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: var(--step-0); margin-bottom: .15rem; }

/* ---------- Reasons ---------- */
.reason-list { display: grid; gap: 1.25rem; counter-reset: reason; }
.reason {
  counter-increment: reason;
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.reason:last-child { border-bottom: 0; padding-bottom: 0; }
.reason::before {
  content: counter(reason);
  font-family: var(--font-display); font-size: var(--step-2); font-weight: 600;
  color: var(--sky); line-height: 1; min-width: 1.4ch;
}
/* Both the heading and the body sit in column 2, stacked, beside the numeral.
   Without the explicit grid-column the paragraph wraps under the number. */
.reason h3 { grid-column: 2; margin: 0 0 .4rem; }
.reason p { grid-column: 2; color: var(--ink-soft); margin: 0; }

/* ---------- Areas ---------- */
.areas-teaser { background: var(--paper-warm); border-block: 1px solid var(--line); }
.areas-teaser-inner { display: grid; gap: 2rem; }
.areas-teaser .section-lede { margin-bottom: 0; }
.area-chips { display: flex; flex-wrap: wrap; gap: .6rem; align-content: start; }
.area-chips a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: .55rem 1.05rem;
  background: var(--paper); border: 1px solid var(--line-strong);
  border-radius: 100px; text-decoration: none; font-weight: 500;
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.area-chips a:hover { border-color: var(--navy); color: var(--navy); background: #fff; }
.area-chips .chip-all { background: var(--navy); color: #fff; border-color: var(--navy); font-weight: 700; }
.area-chips .chip-all:hover { background: var(--navy-deep); color: #fff; }

.area-cards { display: grid; gap: 1.25rem; }
.area-card {
  padding: 1.6rem 1.5rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.area-card:hover { box-shadow: var(--shadow-card); border-color: var(--line-strong); }
.area-card h2 { font-size: var(--step-1); margin: 0 0 .2rem; }
.area-card h2 a { text-decoration: none; }
.area-card h2 a:hover { color: var(--sky-deep); }
.area-postcode { font-size: var(--step--1); color: var(--ink-faint); letter-spacing: .06em; margin: 0 0 .7rem; }
.area-card p { font-size: var(--step--1); color: var(--ink-soft); line-height: 1.6; }
.area-card-links { display: grid; gap: .1rem; margin-top: 1rem; padding-top: .8rem; border-top: 1px solid var(--line); }
.area-card-links a {
  display: inline-flex; align-items: center; gap: .4rem; min-height: 44px;
  font-size: var(--step--1); font-weight: 700; color: var(--sky-deep); text-decoration: none;
}
.area-card-links a:hover { color: var(--navy); }
.area-note {
  margin-top: 2.5rem; padding: clamp(1.6rem, 4vw, 2.6rem);
  background: var(--paper-warm); border: 1px solid var(--line); border-radius: var(--r-md);
}
.area-note h2 { font-size: var(--step-2); margin-bottom: .8rem; }
.area-note p { color: var(--ink-soft); max-width: 62ch; }

/* ---------- Page headers (inner pages) ---------- */
.page-header { padding-top: clamp(1.25rem, 3vw, 2rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.page-header-slim { padding-bottom: clamp(2rem, 4vw, 3rem); }
/* Without this the slim header's padding stacks on the next section's and
   leaves a dead band under the intro. */
.page-header-slim + section { padding-top: clamp(1.75rem, 3.5vw, 3rem); }
.page-header-slim .lede { max-width: 62ch; margin-top: 1.2rem; }

/* Centred page header — used where the headline is the whole story and a
   left-aligned narrow column underneath reads as off-centre. */
.page-header-center { text-align: center; }
.page-header-center .crumbs ol { justify-content: center; }
.page-header-center h1 { margin-inline: auto; max-width: 20ch; }
.page-header-center .lede { margin-inline: auto; }
.wrap-wide { width: min(940px, 100% - (var(--gutter) * 2)); margin-inline: auto; }
.prose-section .wrap-wide p { max-width: none; }
.page-header-grid { display: grid; gap: clamp(2rem, 4vw, 3rem); align-items: center; }
.page-header-copy .lede { margin-top: 1.1rem; max-width: 46ch; }
.page-header-media img {
  width: 100%; border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover; aspect-ratio: 16 / 10;
}

.crumbs { margin-bottom: 1.5rem; }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; font-size: var(--step--1); color: var(--ink-faint); }
.crumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--line-strong); }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--navy); text-decoration: underline; }
.crumbs [aria-current] { color: var(--ink); }

/* ---------- Prose ---------- */
.prose-section { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.prose-alt { background: var(--paper-warm); border-block: 1px solid var(--line); }
.prose-section h2 { margin-bottom: 1.1rem; font-size: var(--step-2); }
.prose-section p { color: var(--ink-soft); }
.prose-lead { font-size: var(--step-1); line-height: 1.55; color: var(--ink); }

/* ---------- Inclusions ---------- */
.inclusions { background: var(--paper-warm); border-block: 1px solid var(--line); }
.inclusion-grid { display: grid; gap: 1.25rem; }
.inclusion-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.5rem 1.4rem;
}
.inclusion-card h3 { margin: 0 0 1rem; padding-bottom: .8rem; border-bottom: 1px solid var(--line); }

.ticks { display: grid; gap: .6rem; }
.ticks li { display: grid; grid-template-columns: 20px 1fr; gap: .65rem; align-items: start; font-size: var(--step--1); line-height: 1.55; color: var(--ink-soft); }
.ticks svg { color: var(--sky-deep); margin-top: .28em; }
.ticks-lg li { font-size: var(--step-0); grid-template-columns: 24px 1fr; gap: .8rem; }
.ticks-lg strong { color: var(--ink); font-family: var(--font-display); font-weight: 600; }

.crosses { display: grid; gap: .7rem; }
.crosses li { display: grid; grid-template-columns: 20px 1fr; gap: .65rem; align-items: start; font-size: var(--step--1); line-height: 1.55; color: var(--ink-soft); }
.crosses svg { color: var(--ink-faint); margin-top: .3em; }

/* ---------- Price block ---------- */
.price-inner {
  display: grid; gap: 1.75rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--navy); color: #fff;
  border-radius: var(--r-lg);
}
.price-inner h2 { color: #fff; font-size: var(--step-2); margin-bottom: 1rem; }
.price-figure { font-size: var(--step-1); color: #fff; line-height: 1.5; margin-bottom: .8rem; }
.price-note { color: rgba(255,255,255,.75); font-size: var(--step--1); line-height: 1.6; margin: 0; }
.price-action { display: grid; gap: .7rem; align-content: center; justify-items: start; }
.price-action .muted { color: rgba(255,255,255,.6); }

/* ---------- Supplies / exclusions ---------- */
.supplies-grid { display: grid; gap: clamp(2rem, 4vw, 3rem); }
.supplies p { color: var(--ink-soft); }
.exclusions {
  padding: 1.6rem 1.5rem;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  align-self: start;
}
.exclusions h3 { margin: 0 0 .3rem; }
.exclusions .small { margin-bottom: 1.1rem; }

/* ---------- People / other services ---------- */
.people { background: var(--paper-warm); border-block: 1px solid var(--line); }
.other-list { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.other-list a {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 46px;
  padding: .6rem 1.15rem;
  border: 1px solid var(--line-strong); border-radius: 100px;
  text-decoration: none; font-weight: 500;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.other-list a:hover { border-color: var(--navy); color: var(--sky-deep); }

/* ---------- Guarantee page ---------- */
.promise-steps { display: grid; gap: 1.25rem; margin-top: 2rem; counter-reset: promise; }
.promise-step {
  counter-increment: promise;
  padding: 1.6rem 1.5rem;
  background: var(--paper-warm); border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.promise-step::before {
  content: "Step " counter(promise);
  display: block; margin-bottom: .6rem;
  font-size: var(--step--1); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sky-deep);
}
.promise-step h3 { margin: 0 0 .5rem; }
.promise-step p { color: var(--ink-soft); font-size: var(--step--1); line-height: 1.6; margin: 0; }
.promise-list-section { background: var(--paper-warm); border-block: 1px solid var(--line); }
.promise-grid { display: grid; gap: clamp(2rem, 4vw, 3rem); }
.promise-grid p { color: var(--ink-soft); }

/* ---------- Facts ---------- */
.facts { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; margin-top: 2rem; }
.fact { background: var(--paper); padding: 1.2rem 1.4rem; }
.fact dt { font-size: var(--step--1); letter-spacing: .11em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; margin-bottom: .3rem; }
.fact dd { margin: 0; font-family: var(--font-display); font-size: var(--step-1); font-weight: 500; }

/* ---------- Price table ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--r-md); }
.price-table { width: 100%; border-collapse: collapse; min-width: 620px; font-size: var(--step--1); }
.price-table th, .price-table td { padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th {
  background: var(--paper-warm);
  font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 700;
}
.price-table tbody th { font-weight: 700; }
.price-table tbody th a { color: var(--navy); text-decoration: none; }
.price-table tbody th a:hover { color: var(--sky-deep); text-decoration: underline; }
.price-table tbody tr:last-child th, .price-table tbody tr:last-child td { border-bottom: 0; }
.compare .small { margin-top: 1rem; }

/* ---------- FAQ ---------- */
.faq-list {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding: 1.15rem clamp(1rem, 3vw, 1.6rem);
  min-height: 46px;
  cursor: pointer; list-style: none;
  font-family: var(--font-display);
  font-size: var(--step-0); font-weight: 600; line-height: 1.35;
  color: var(--navy);
  transition: background .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--paper-warm); color: var(--sky-deep); }
.faq-item summary svg { flex: none; color: var(--sky-deep); transition: transform .25s var(--ease); }
.faq-item[open] summary { background: var(--paper-warm); }
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-answer {
  padding: 0 clamp(1rem, 3vw, 1.6rem) 1.35rem;
  border-top: 1px solid var(--line);
  background: var(--paper-warm);
}
.faq-answer p { color: var(--ink-soft); font-size: var(--step--1); line-height: 1.7; margin: 1.1rem 0 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
/* Grid items default to min-width:auto, so the long email address forces the
   track wider than the viewport on a narrow phone. */
.contact-grid > *, .footer-grid > *, .supplies-grid > *, .eco-grid > * { min-width: 0; }
.contact-list a, .footer-contact a { overflow-wrap: anywhere; }
.contact-details h2 { font-size: var(--step-2); margin-bottom: 1.5rem; }
.contact-list { display: grid; gap: 1.2rem; margin-bottom: 2.25rem; }
.contact-list li { display: grid; grid-template-columns: 26px 1fr; gap: .9rem; align-items: start; }
.contact-list svg { color: var(--sky-deep); margin-top: .15rem; }
.contact-label { display: block; font-size: var(--step--1); letter-spacing: .11em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; }
.contact-list a { color: var(--navy); font-weight: 700; text-decoration: none; }
.contact-list a:hover { color: var(--sky-deep); text-decoration: underline; }

.contact-book {
  padding: 1.5rem; background: var(--sky-wash);
  border: 1px solid var(--line); border-radius: var(--r-md);
}
.contact-book h3 { margin: 0 0 .5rem; }
.contact-book p { font-size: var(--step--1); color: var(--ink-soft); margin-bottom: 1.1rem; }

.contact-form-wrap {
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  background: var(--paper-warm);
  border: 1px solid var(--line); border-radius: var(--r-lg);
}
.contact-form-wrap h2 { font-size: var(--step-2); margin-bottom: 1.5rem; }
.contact-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: var(--step--1); font-weight: 700; color: var(--ink); }
.field .optional { font-weight: 400; color: var(--ink-faint); }
.field input, .field textarea {
  width: 100%; padding: .8rem .95rem;
  min-height: 46px;
  font: inherit; font-size: var(--step-0);
  color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--line-strong); border-radius: var(--r-sm);
  transition: border-color .2s var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--sky-deep); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #C0392B; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: var(--step--1); margin: 0; min-height: 1.2em; }
.form-status.is-ok { color: #1E7A46; font-weight: 700; }
.form-status.is-error { color: #C0392B; font-weight: 700; }

/* ---------- Book ---------- */
.book-intro { max-width: 62rem; margin: 0 auto clamp(2rem, 4vw, 2.75rem); }
.book-intro .section-head { margin-bottom: 1.5rem; }

/* The li is the grid; its contents must be a single child or every text node
   becomes its own grid item and the copy wraps one word per line. */
.book-steps { display: grid; gap: 1rem; margin-bottom: 1.75rem; counter-reset: bstep; }
.book-steps li {
  counter-increment: bstep;
  display: grid; grid-template-columns: 30px 1fr; gap: .9rem; align-items: start;
  font-size: var(--step-0); line-height: 1.6; color: var(--ink-soft);
}
.book-steps li::before {
  content: counter(bstep);
  display: grid; place-content: center;
  width: 28px; height: 28px;
  background: var(--navy); color: #fff;
  border-radius: 50%; font-weight: 700; font-size: .85rem;
}
.book-steps strong { color: var(--ink); }

.book-facts {
  display: grid; gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
}
.book-facts li { background: var(--paper); padding: 1rem 1.2rem; }
.book-facts strong {
  display: block; font-size: var(--step--1); letter-spacing: .11em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: .2rem;
}
.book-facts span { font-family: var(--font-display); font-size: var(--step-1); font-weight: 500; color: var(--ink); }

.book-embed {
  max-width: 62rem; margin-inline: auto;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: .5rem;
  min-height: 300px;
  box-shadow: var(--shadow-card);
}
.book-embed-fallback { padding: .75rem 1rem 0; }
.book-fallback { padding: 1.5rem; }
.book-foot { max-width: 62rem; margin: 1.5rem auto 0; text-align: center; }

/* ---------- Photo band (Fully Police Checked & Insured) ---------- */
.insured {
  position: relative; isolation: isolate;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.insured::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: url("/assets/img/office-cleaning.webp");
  background-size: cover; background-position: center;
}
/* Flat dark wash for legibility — not a decorative colour gradient. */
.insured::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(19, 28, 61, .86);
}
.insured h2 { color: #fff; margin-bottom: 1rem; }
.insured .lede { color: rgba(255,255,255,.84); max-width: 54ch; }
.insured-inner { display: grid; gap: 2rem; }

/* ---------- Win ---------- */
.win { background: var(--sky-wash); border-block: 1px solid #D8EAF6; }
.win-inner { text-align: center; }
.win-inner p { color: var(--ink-soft); margin-inline: auto; max-width: 56ch; }
.win-inner .btn { margin-top: 1.4rem; }
.win-inner .small { margin-top: 1.1rem; }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--navy); color: #fff; }
.cta-inner { display: grid; gap: 1.75rem; }
.cta-banner h2 { color: #fff; margin-bottom: .9rem; }
.cta-banner .lede { color: rgba(255,255,255,.8); max-width: 52ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-content: center; }
/* .btn is nowrap by default, which is right for short labels but pushed the
   long consult CTA past a 360px screen. Long-label buttons wrap instead. */
.cta-actions .btn, .insured-inner .btn { white-space: normal; text-align: center; max-width: 100%; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.72); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; font-size: var(--step--1); }
.footer-grid { display: grid; gap: 2.25rem; }
.footer-logo { height: 44px; width: auto; background: #fff; padding: .5rem .7rem; border-radius: var(--r-sm); }
.footer-blurb { margin: 1.1rem 0; max-width: 34ch; line-height: 1.6; }
.social {
  display: grid; place-content: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  color: rgba(255,255,255,.8);
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.social:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

.footer-head {
  font-family: var(--font-body);
  font-size: var(--step--1); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff; margin: 0 0 1rem;
}
.footer-col ul { display: grid; gap: .1rem; }
.footer-col a, .footer-contact a { color: rgba(255,255,255,.72); text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; }
.footer-col a:hover, .footer-contact a:hover { color: #fff; text-decoration: underline; }
.footer-contact li { line-height: 1.6; }
.footer-contact .muted { color: rgba(255,255,255,.5); padding: .5rem 0; }

.footer-legal {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid; gap: .3rem;
  color: rgba(255,255,255,.5);
}
.footer-legal p { margin: 0; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.load { opacity: 0; animation: rise .7s var(--ease) forwards; }
.l1 { animation-delay: .05s; } .l2 { animation-delay: .13s; }
.l3 { animation-delay: .21s; } .l4 { animation-delay: .29s; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.no-js .load { opacity: 1; animation: none; }
@media (prefers-reduced-motion: reduce) { .load { opacity: 1; animation: none; } }

/* ==========================================================================
   Breakpoints — min-width only, placed where the layout actually breaks.
   Every multi-column grid gets an intermediate state; nothing jumps 3→1.
   ========================================================================== */

@media (min-width: 25em) {
  .header-call { display: grid; }
}

@media (min-width: 34em) {
  .trust-list { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.75rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .inclusion-grid { grid-template-columns: repeat(2, 1fr); }
  .area-cards { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 48em) {
  .hero-note {
    display: block; padding: 0; border-radius: 0;
    background: none; -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  .hero::before {
    background: linear-gradient(
      to bottom,
      #fff 0%,
      #fff 17%,
      rgba(255,255,255,.96) 31%,
      rgba(255,255,255,.87) 45%,
      rgba(255,255,255,.66) 59%,
      rgba(255,255,255,.33) 73%,
      rgba(255,255,255,0) 86%
    );
  }
}

@media (min-width: 48em) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .promise-steps { grid-template-columns: repeat(3, 1fr); }
  .eco-grid { grid-template-columns: 1.15fr .85fr; align-items: center; }
  .supplies-grid { grid-template-columns: 1.1fr .9fr; }
  .promise-grid { grid-template-columns: .9fr 1.1fr; }
  .contact-grid { grid-template-columns: .85fr 1.15fr; }
  .book-steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .book-facts { grid-template-columns: repeat(3, 1fr); }
  .price-inner { grid-template-columns: 1.2fr .8fr; gap: 2.5rem; }
  .price-action { justify-items: end; text-align: right; }
  .facts { grid-template-columns: repeat(3, 1fr); }
  .cta-inner, .insured-inner { grid-template-columns: 1.15fr .85fr; align-items: center; }
  .guarantee-inner { grid-template-columns: 1.2fr auto; }
  .insured-inner .cta-actions { justify-content: flex-end; }
  .cta-actions { justify-content: flex-end; }
  .areas-teaser-inner { grid-template-columns: .85fr 1.15fr; align-items: center; gap: 3rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .reason { grid-template-columns: auto 1fr; gap: 1.5rem; }
}

@media (min-width: 62em) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
  .page-header-grid { grid-template-columns: 1.05fr .95fr; }
  .trust-list { grid-template-columns: repeat(4, 1fr); }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .inclusion-grid { grid-template-columns: repeat(3, 1fr); }
  .area-cards { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
  .footer-brand { grid-column: auto; }
  .footer-legal { grid-template-columns: 1fr auto; align-items: center; }
  .footer-legal p:last-child { text-align: right; }

  /* Desktop nav — out of the drawer, into the bar */
  .nav {
    position: static; width: auto; transform: none;
    padding: 0; box-shadow: none; background: none;
    flex-direction: row; align-items: center; gap: 0;
    overflow: visible;
    /* Take the space between logo and actions, and sit centred in it */
    flex: 1 1 auto; justify-content: center;
  }
  .nav-list { display: flex; align-items: center; gap: .1rem; }
  .nav-link {
    position: relative;
    padding: .55rem .75rem; min-height: 44px;
    font-family: var(--font-body); font-size: var(--step-0); font-weight: 700;
    border-bottom: 0; white-space: nowrap;
    transition: color .2s var(--ease);
  }

  /* Underline marks the current page */
  .nav-link[aria-current="page"]::after,
  .nav-link.is-active::after {
    content: ""; position: absolute;
    left: .75rem; right: .75rem; bottom: .1rem;
    height: 2.5px; border-radius: 2px;
    background: var(--sky);
  }

  .nav-foot { display: none; }
  .nav-toggle { display: none; }
  .header-call { display: none; }

  .has-sub { position: relative; }
  .nav-sub {
    display: block;
    position: absolute; top: calc(100% + .5rem); left: 0;
    min-width: 220px; padding: .5rem;
    background: var(--paper);
    border: 1px solid var(--line); border-radius: var(--r-md);
    box-shadow: var(--shadow-lift);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }
  .nav-sub.is-open,
  .has-sub:hover .nav-sub,
  .has-sub:focus-within .nav-sub {
    opacity: 1; visibility: visible; transform: none;
  }
  .nav-sub a { border-radius: var(--r-sm); padding: .55rem .75rem; min-height: 44px; font-size: var(--step--1); }
  .nav-sub a:hover { background: var(--paper-warm); color: var(--navy); }
  .nav-scrim { display: none; }
}

@media (min-width: 75em) {
  .area-chips { justify-content: flex-end; }
}

@media (min-width: 48em) {
  .faq-item summary { font-size: var(--step-1); }
  .faq-answer p { font-size: var(--step-0); }
}
