
/* ============================================================================
   Your Helpers Home Services — "Daylight"
   Accessible-first. Body face is Atkinson Hyperlegible, drawn by the Braille
   Institute for low-vision readers. Base size is 19px, not 16px, on purpose.
   Orange is an action and accent colour only. It never carries white text and
   is never used as a text colour on the paper canvas.
   ========================================================================= */

:root {
  /* Cool paper, not cream. A warm beige canvas is a saturated AI-design lane and
     Creative Square already owns it in our client ledger; a cool off-white also
     sits better under this brand's navy. */
  --paper:      #F6F8FB;
  --paper-warm: #E9F0F8;
  --sky:        #DCE8F6;
  --navy:       #1B3E6F;   /* sampled from the client's logo */
  --navy-deep:  #14305A;
  --navy-ink:   #10233D;
  --orange:     #F2921D;   /* sampled from the client's logo */
  --orange-hi:  #FFA836;
  --body:       #2A3644;
  --body-soft:  #4A5866;
  --line:       #CFDAE8;
  --line-navy:  rgba(255,255,255,.20);
  --white:      #FFFFFF;

  --w-page: 1220px;
  /* Measured, not assumed: Atkinson's zero-glyph is much wider than its average
     character, so 1ch here is ~12.3px while a typical character is ~7.1px.
     56ch rendered ~97 characters per line. 44ch lands at ~72. */
  --w-text: 44ch;
  --gutter: 22px;
  --r: 14px;
  --r-sm: 10px;

  --shadow: 0 14px 40px -18px rgba(16,35,61,.34);
  --shadow-lg: 0 30px 70px -30px rgba(16,35,61,.46);

  --ease: cubic-bezier(.22,.61,.36,1);
}

@media (min-width: 720px) { :root { --gutter: 32px; } }

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: "Atkinson Hyperlegible", ui-sans-serif, system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: "Bricolage Grotesque", "Atkinson Hyperlegible", sans-serif;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 6.4vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 4.2vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); line-height: 1.2; }
h4 { font-size: 1.1rem; line-height: 1.3; }

p { margin: 0 0 1.15em; max-width: var(--w-text); }
p:last-child { margin-bottom: 0; }

a { color: var(--navy); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--navy-deep); text-decoration-color: var(--orange); }

strong { font-weight: 700; color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-navy :focus-visible { outline-color: var(--orange-hi); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: var(--white); padding: 12px 20px;
  border-radius: 0 0 10px 10px; font-weight: 700; text-decoration: none;
  transition: top .18s var(--ease);
}
.skip:focus { top: 0; color: var(--white); }

.container { width: 100%; max-width: var(--w-page); margin-inline: auto; padding-inline: var(--gutter); }

/* A grid item defaults to min-width:auto, so one wide descendant can push its
   track past the container and bleed text off a narrow screen. Caught at 360px
   on the careers page, which is the commonest Android width. */
.split > *, .contact-grid > *, .svc-grid > *, .ba-set > *, .team-grid > *,
.area-grid > *, .posts > *, .reviews > *, .tasks > *, .cta-inner > *,
.ftr-grid > *, .trust .container > *, .promise > *, .step > * { min-width: 0; }

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700; font-size: 1.02rem; letter-spacing: -.01em;
  padding: 15px 26px; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease), transform .18s var(--ease);
  min-height: 54px;
}
.btn:hover { transform: translateY(-2px); }
.btn .ico { width: 21px; height: 21px; flex: none; }

/* Doubled class on purpose. A band-level rule like `.band-navy a` outranks a
   single `.btn-action`, which silently turned the orange button's ink white
   (2.36:1) inside navy sections. Keep these at two classes. */
.btn.btn-primary { background: var(--navy); color: var(--white); }
.btn.btn-primary:hover { background: var(--navy-deep); color: var(--white); }

/* Orange surface carries navy ink (6.7:1), never white. */
.btn.btn-action { background: var(--orange); color: var(--navy-ink); }
.btn.btn-action:hover { background: var(--orange-hi); color: var(--navy-ink); }

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

.on-navy .btn.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.55); }
.on-navy .btn.btn-ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-lg { font-size: 1.1rem; padding: 17px 32px; min-height: 60px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* --------------------------------------------------------------- utility  */

.util {
  background: var(--navy-deep); color: rgba(255,255,255,.9);
  font-size: .93rem;
}
.util .container { display: flex; flex-wrap: wrap; gap: 8px 26px; align-items: center;
  justify-content: space-between; padding-block: 9px; }
.util a { color: var(--white); font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: .45em; }
.util a:hover { color: var(--orange-hi); }
.util .ico { width: 18px; height: 18px; }
.util-meta { display: inline-flex; align-items: center; gap: .5em; }

/* ---------------------------------------------------------------- header  */

.hdr {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.hdr .container { display: flex; align-items: center; gap: 20px; padding-block: 12px; }
.brand { flex: none; text-decoration: none; display: block; line-height: 0; }
.brand img { width: 214px; }
@media (max-width: 420px) { .brand img { width: 168px; } }

.nav { margin-left: auto; display: none; }
.nav ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav a {
  display: block; padding: 10px 13px; border-radius: 8px;
  font-weight: 700; font-size: .99rem; text-decoration: none; color: var(--navy);
  transition: background-color .16s var(--ease);
}
.nav a:hover { background: var(--sky); }
.nav a[aria-current="page"] { background: var(--sky); box-shadow: inset 0 -3px 0 var(--orange); }

.drop { position: relative; }
.drop > button {
  display: flex; align-items: center; gap: .35em;
  padding: 10px 13px; border: 0; border-radius: 8px; background: transparent;
  font: inherit; font-weight: 700; font-size: .99rem; color: var(--navy); cursor: pointer;
  font-family: "Atkinson Hyperlegible", sans-serif;
}
.drop > button:hover { background: var(--sky); }
.drop > button .ico { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.drop.open > button .ico { transform: rotate(180deg); }
.panel {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 248px;
  background: var(--white); border-radius: var(--r-sm);
  box-shadow: var(--shadow); padding: 8px;
  opacity: 0; visibility: hidden;
  transition: opacity .18s var(--ease) .25s, visibility 0s linear .43s;
}
.drop:hover .panel, .drop.open .panel {
  opacity: 1; visibility: visible; transition-delay: 0s;
}
/* Without JS there is no .open class, so focus alone has to reveal the panel.
   With JS we must NOT key off :focus-within, or Escape cannot close a panel
   whose trigger button still holds focus. */
html:not(.js) .drop:focus-within .panel {
  opacity: 1; visibility: visible; transition-delay: 0s;
}
.nav:has(.drop:is(:hover,.open,:focus-within)) .drop:not(:hover):not(.open):not(:focus-within) .panel {
  transition: none;
}
.drop.snap .panel { transition: none; }
.panel a { padding: 11px 14px; }

.hdr-cta { margin-left: 14px; display: none; }

.burger {
  margin-left: auto; display: inline-flex; align-items: center; gap: .5em;
  background: var(--navy); color: var(--white); border: 0; border-radius: 999px;
  padding: 12px 20px; font: inherit; font-weight: 700; cursor: pointer; min-height: 50px;
}
.burger .ico { width: 22px; height: 22px; }

@media (min-width: 1060px) {
  .nav, .hdr-cta { display: block; }
  .burger { display: none; }
}

.mnav {
  display: none; border-top: 1px solid var(--line); background: var(--paper);
  padding: 12px var(--gutter) 26px;
}
.mnav.open { display: block; }
.mnav ul { list-style: none; margin: 0; padding: 0; }
.mnav > ul > li + li { border-top: 1px solid var(--line); }
.mnav a {
  display: block; padding: 15px 4px; font-weight: 700; font-size: 1.08rem;
  text-decoration: none; color: var(--navy);
}
.mnav ul ul a { padding-left: 22px; font-size: 1rem; color: var(--body-soft); font-weight: 400; }
.mnav .btn { width: 100%; justify-content: center; margin-top: 18px; }

/* ------------------------------------------------------------- structure  */

.band { padding-block: clamp(56px, 8vw, 96px); }
.band-paper { background: var(--paper); }
.band-warm  { background: var(--paper-warm); }
.band-sky   { background: var(--sky); }
.band-navy  { background: var(--navy); color: rgba(255,255,255,.88); }
.band-navy h2, .band-navy h3, .band-navy h4 { color: var(--white); }
.band-navy a { color: var(--white); }
.band-navy strong { color: var(--white); }

/* The recurring rhythm: a short statement on the left, the detail on the
   right. Deliberately not a row of equal cards. */
.split { display: grid; gap: 30px 56px; }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0,5fr) minmax(0,7fr); align-items: start; }
  .split-tight { grid-template-columns: minmax(0,4fr) minmax(0,8fr); }
}
.split > header h2 { margin-bottom: .35em; }
.lede { font-size: clamp(1.08rem, 1.6vw, 1.22rem); color: var(--body-soft); }
.band-navy .lede { color: rgba(255,255,255,.82); }

/* ------------------------------------------------------------------ hero  */

.hero { position: relative; background: var(--navy); }
.hero-media { position: relative; }
.hero-media img { width: 100%; height: clamp(300px, 46vw, 560px); object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,35,61,.30) 0%, rgba(16,35,61,.05) 45%, rgba(16,35,61,.55) 100%);
}
.hero-shelf { background: var(--navy); }
.hero-shelf .container { padding-block: clamp(34px, 5vw, 56px); }
.hero h1 { color: var(--white); max-width: 17ch; }
.hero .lede { color: rgba(255,255,255,.86); max-width: 54ch; margin-top: .7em; }

@media (min-width: 1000px) {
  .hero { display: grid; }
  .hero-media, .hero-shelf { grid-area: 1 / 1; }
  .hero-media img { height: clamp(520px, 52vw, 660px); }
  .hero-shelf {
    align-self: end; background: transparent; width: 100%;
    /* The media overlay is absolutely positioned, so the shelf needs its own
       stacking context or the gradient paints straight over the headline. */
    position: relative; z-index: 1;
  }
  .hero-shelf .container { display: grid; }
  .hero-shelf .shelf-inner {
    background: var(--navy); border-radius: var(--r) var(--r) 0 0;
    padding: 46px 52px 44px; max-width: 760px; box-shadow: var(--shadow-lg);
  }
}
.hero-shelf .shelf-inner { max-width: 760px; }

/* -------------------------------------------------------------- trustbar  */

.trust { background: var(--paper-warm); border-bottom: 1px solid var(--line); }
.trust .container {
  display: grid; gap: 20px 34px; padding-block: 26px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .trust .container { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .trust .container { grid-template-columns: auto repeat(3, 1fr); align-items: center; } }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item .ico { width: 30px; height: 30px; color: var(--navy); flex: none; }
.trust-item p { font-size: .97rem; line-height: 1.4; margin: 0; }
.trust-item b { display: block; font-family: "Bricolage Grotesque", sans-serif;
  color: var(--navy); font-size: 1.04rem; letter-spacing: -.01em; }
.trust-badge img { width: 168px; }

/* -------------------------------------------------------------- promises  */

.promises { display: grid; gap: 2px; margin-top: 8px; }
.promise {
  display: grid; gap: 6px 26px; padding: 24px 0;
  border-top: 1px solid var(--line);
}
.promise:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 780px) { .promise { grid-template-columns: minmax(0,1fr) minmax(0,1.5fr); align-items: baseline; } }
.promise h3 { margin: 0; display: flex; gap: .6em; align-items: baseline; }
.promise h3 .ico { width: 22px; height: 22px; color: var(--orange); flex: none; transform: translateY(3px); }
.promise p { margin: 0; color: var(--body-soft); }
.band-navy .promise { border-color: var(--line-navy); }
.band-navy .promise p { color: rgba(255,255,255,.8); }

/* -------------------------------------------------------------- services  */

.svc-grid { display: grid; gap: 26px; margin-top: 40px; }
@media (min-width: 860px) { .svc-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.svc {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow); text-decoration: none; color: inherit;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sky); }
.svc-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { margin-bottom: .35em; }
.svc-body p { color: var(--body-soft); margin-bottom: 1em; }
.svc-more {
  margin-top: auto; display: inline-flex; align-items: center; gap: .45em;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; color: var(--navy);
}
.svc-more .ico { width: 19px; height: 19px; transition: transform .2s var(--ease); }
.svc:hover .svc-more .ico { transform: translateX(4px); }

/* ------------------------------------------------------ before / after ---
   The signature component. A native range input drives the wipe, so it works
   with a mouse, a finger, and the keyboard, and announces itself to a screen
   reader. Content is fully visible at rest (the slider starts at 50%).      */

.ba-set { display: grid; gap: 30px; margin-top: 40px; }
@media (min-width: 820px) { .ba-set { grid-template-columns: 1fr 1fr; gap: 34px; } }

.ba-card { background: var(--white); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
/* Elevation is declared once. A navy shadow on a navy band reads as a glow, so
   the card separates by surface tone instead. */
.band-navy .ba-card { background: var(--navy-deep); box-shadow: none; }

.ba {
  position: relative; overflow: hidden; background: var(--navy-deep);
  --pos: 50%;
  touch-action: pan-y;
}
.ba img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; user-select: none; -webkit-user-drag: none;
}
.ba .ba-after { clip-path: inset(0 0 0 var(--pos)); }
.ba-line {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 4px; margin-left: -2px; background: var(--white);
  box-shadow: 0 0 0 1px rgba(16,35,61,.28); pointer-events: none;
}
.ba-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--white); box-shadow: 0 6px 18px rgba(16,35,61,.42);
  display: grid; place-items: center; color: var(--navy);
}
.ba-grip .ico { width: 26px; height: 26px; }
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize; appearance: none; background: transparent;
}
.ba-range::-webkit-slider-thumb { appearance: none; width: 64px; height: 100%; cursor: ew-resize; }
.ba-range::-moz-range-thumb { width: 64px; height: 200px; border: 0; cursor: ew-resize; }
.ba:has(.ba-range:focus-visible) { outline: 3px solid var(--orange); outline-offset: 2px; }
.ba-tag {
  position: absolute; top: 14px; z-index: 2; pointer-events: none;
  background: rgba(16,35,61,.86); color: var(--white);
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700;
  font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px;
}
.ba-tag-before { left: 14px; }
.ba-tag-after  { right: 14px; }
.ba-cap { padding: 18px 22px 20px; }
.ba-cap h3 { margin: 0 0 .25em; font-size: 1.18rem; }
.ba-cap p { margin: 0; font-size: .95rem; color: var(--body-soft); }
.band-navy .ba-cap p { color: rgba(255,255,255,.75); }

/* ----------------------------------------------------------------- steps  */

.steps { counter-reset: s; display: grid; gap: 0; margin-top: 34px; }
.step {
  display: grid; gap: 4px 26px; padding: 26px 0; border-top: 1px solid var(--line);
  grid-template-columns: 54px 1fr;
}
.step:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 820px) { .step { grid-template-columns: 54px minmax(0,1fr) minmax(0,1.4fr); align-items: baseline; } }
.step::before {
  counter-increment: s; content: counter(s);
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 1.5rem;
  color: var(--orange); grid-row: span 2; align-self: start; line-height: 1;
}
@media (min-width: 820px) { .step::before { grid-row: auto; } }
.step h3 { margin: 0; }
.step p { margin: 0; color: var(--body-soft); }
.band-navy .step { border-color: var(--line-navy); }
.band-navy .step p { color: rgba(255,255,255,.8); }

/* --------------------------------------------------------------- reviews  */

.reviews { display: grid; gap: 22px; margin-top: 38px; }
@media (min-width: 720px) { .reviews { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--white); border-radius: var(--r); padding: 26px 26px 24px;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.review blockquote { margin: 0 0 16px; font-size: 1.02rem; color: var(--body); }
.review blockquote p { max-width: none; }
.review figcaption {
  margin-top: auto; font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700; color: var(--navy);
}
.review .stars { display: flex; gap: 3px; color: var(--orange); margin-bottom: 14px; }
.review .stars .ico { width: 19px; height: 19px; }
.review .who { font-size: .88rem; color: var(--body-soft); font-weight: 400;
  font-family: "Atkinson Hyperlegible", sans-serif; display: block; }

/* -------------------------------------------------------------- partners  */

.partners { margin-top: 34px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: 46px; width: max-content; align-items: center;
  animation: slide 62s linear infinite; }
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee img { height: 46px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .72;
  transition: filter .2s var(--ease), opacity .2s var(--ease); }
.marquee li:hover img { filter: none; opacity: 1; }
.marquee ul { display: flex; gap: 46px; align-items: center; list-style: none; margin: 0; padding: 0; }
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
  .marquee-track { animation: none; }
}

/* ------------------------------------------------------------ task lists  */

.tasks { display: grid; gap: 26px; margin-top: 34px; }
@media (min-width: 700px) { .tasks { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .tasks { grid-template-columns: repeat(4, 1fr); gap: 30px; } }
.task-col h3 { font-size: 1.12rem; padding-bottom: 12px; border-bottom: 2px solid var(--orange);
  margin-bottom: 14px; }
.task-col ul { list-style: none; margin: 0; padding: 0; }
.task-col li { position: relative; padding: 6px 0 6px 28px; font-size: .99rem; color: var(--body-soft); }
.task-col li .ico { position: absolute; left: 0; top: 10px; width: 18px; height: 18px; color: var(--navy); }

/* ------------------------------------------------------------------ team  */

.team-grid { display: grid; gap: 30px; margin-top: 42px; }
@media (min-width: 700px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1060px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; } }
.person { background: var(--white); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.person > img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.person-body { padding: 24px 26px 28px; }
.person-body h3 { margin-bottom: .1em; }
.person-role {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: .82rem;
  letter-spacing: .09em; text-transform: uppercase; color: var(--body-soft); margin-bottom: 14px;
}
.person-body p { font-size: .97rem; color: var(--body-soft); }

/* ------------------------------------------------------------------ FAQ   */

.faq { margin-top: 34px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 21px 46px 21px 0; position: relative;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem); color: var(--navy); letter-spacing: -.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  margin-top: -9px; border-right: 3px solid var(--orange); border-bottom: 3px solid var(--orange);
  transform: rotate(45deg); transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -4px; }
.faq summary:hover { color: var(--navy-deep); }
.faq .answer { padding: 0 0 24px; }
.faq .answer p { color: var(--body-soft); }

/* ----------------------------------------------------------------- forms  */

.form-wrap { background: var(--white); border-radius: var(--r); padding: 30px 26px 34px; box-shadow: var(--shadow); }
@media (min-width: 720px) { .form-wrap { padding: 40px 42px 44px; } }
.field { margin-bottom: 22px; }
.field label { display: block; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.field .hint { display: block; font-weight: 400; font-size: .92rem; color: var(--body-soft); margin-top: 2px; }
.field .req { color: #B3300E; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1.02rem; color: var(--body);
  padding: 14px 16px; border: 2px solid var(--line); border-radius: var(--r-sm);
  background: var(--paper); min-height: 54px;
  transition: border-color .16s var(--ease), background-color .16s var(--ease);
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #9BB0C9; }
.field input:focus, .field select:focus, .field textarea:focus { background: var(--white); border-color: var(--navy); }
.field input::placeholder, .field textarea::placeholder { color: #5C6B7D; }
.field[data-invalid] input, .field[data-invalid] select, .field[data-invalid] textarea { border-color: #B3300E; }
.field .err { display: none; color: #8F2609; font-weight: 700; font-size: .93rem; margin-top: 7px; }
.field[data-invalid] .err { display: flex; gap: .4em; align-items: center; }
.field .err .ico { width: 18px; height: 18px; flex: none; }
.field-row { display: grid; gap: 0 22px; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }

fieldset { border: 0; padding: 0; margin: 0 0 22px; }
fieldset legend { font-weight: 700; color: var(--navy); margin-bottom: 10px; padding: 0; }
.choices { display: flex; flex-wrap: wrap; gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice span {
  display: block; padding: 12px 20px; border: 2px solid var(--line); border-radius: 999px;
  cursor: pointer; font-weight: 700; color: var(--body-soft); background: var(--paper);
  transition: all .16s var(--ease); min-height: 50px; display: flex; align-items: center;
}
.choice input:checked + span { border-color: var(--navy); background: var(--navy); color: var(--white); }
.choice input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 3px; }
.choice span:hover { border-color: var(--navy); }

.form-note {
  margin-top: 24px; padding: 16px 20px; border-radius: var(--r-sm);
  background: var(--sky); font-size: .95rem; color: var(--navy);
}
.form-status { margin-top: 22px; }
.form-status:empty { margin: 0; }
.status-box { padding: 18px 22px; border-radius: var(--r-sm); background: var(--sky); color: var(--navy); }
.status-box h3 { margin: 0 0 .3em; font-size: 1.15rem; }
.status-box p { margin: 0; font-size: .97rem; }

/* --------------------------------------------------------------- contact  */

.contact-grid { display: grid; gap: 34px; }
@media (min-width: 980px) { .contact-grid { grid-template-columns: minmax(0,5fr) minmax(0,7fr); gap: 56px; align-items: start; } }
.contact-list { list-style: none; margin: 26px 0 0; padding: 0; }
.contact-list li { display: flex; gap: 15px; padding: 16px 0; border-top: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-list .ico { width: 25px; height: 25px; color: var(--orange); flex: none; margin-top: 3px; }
.contact-list b { display: block; font-family: "Bricolage Grotesque", sans-serif;
  color: var(--navy); font-size: .84rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-list a { font-weight: 700; }
.map-frame { border: 0; width: 100%; height: 340px; border-radius: var(--r); display: block; }

/* ------------------------------------------------------------ area cards  */

.area-grid { display: grid; gap: 26px; margin-top: 40px; }
@media (min-width: 820px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
.area {
  background: var(--white); border-radius: var(--r); padding: 30px 28px 32px;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.area h3 { margin-bottom: .35em; }
.area p { color: var(--body-soft); font-size: .99rem; }
.suburbs { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 22px; list-style: none; padding: 0; }
.suburbs li { font-size: .9rem; background: var(--sky); color: var(--navy);
  padding: 7px 14px; border-radius: 999px; min-height: 34px; display: flex; align-items: center; }
/* When a chip holds a link, the link itself is the target, so it carries the padding. */
.suburbs li:has(a) { padding: 0; }
.suburbs li > a { display: flex; align-items: center; padding: 7px 14px; min-height: 34px;
  text-decoration: none; font-weight: 700; border-radius: 999px; }
.suburbs li > a:hover { background: var(--navy); color: var(--white); }

/* ------------------------------------------------------------------ blog  */

.posts { display: grid; gap: 26px; margin-top: 40px; }
@media (min-width: 720px) { .posts { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1060px) { .posts { grid-template-columns: repeat(4, 1fr); gap: 28px; } }
.post {
  background: var(--white); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post img { aspect-ratio: 8 / 5; object-fit: cover; width: 100%; }
.post-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: .84rem; color: var(--body-soft); margin-bottom: 9px; }
.post h3 { font-size: 1.1rem; margin-bottom: .4em; }
.post p { font-size: .94rem; color: var(--body-soft); margin-bottom: 1em; }
.post .svc-more { font-size: .95rem; }

/* ------------------------------------------------------------- CTA band   */

.cta-band { background: var(--navy); color: var(--white); }
.cta-band .container { padding-block: clamp(50px, 7vw, 82px); }
.cta-inner { display: grid; gap: 26px; align-items: center; }
@media (min-width: 900px) { .cta-inner { grid-template-columns: minmax(0,1fr) auto; gap: 46px; } }
.cta-band h2 { color: var(--white); margin-bottom: .3em; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; }
.cta-band .btn-row { margin-top: 0; }

/* ---------------------------------------------------------------- footer  */

.ftr { background: var(--navy-deep); color: rgba(255,255,255,.78); font-size: .97rem; }
.ftr .container { padding-block: 56px 26px; }
.ftr-grid { display: grid; gap: 36px; }
@media (min-width: 760px) { .ftr-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .ftr-grid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 44px; } }
.ftr-h { color: var(--white); font-size: .86rem; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 12px; font-family: "Bricolage Grotesque", sans-serif; font-weight: 700;
  line-height: 1.3; }
.ftr a { color: rgba(255,255,255,.86); text-decoration: none; }
.ftr a:hover { color: var(--orange-hi); text-decoration: underline; }
.ftr ul { list-style: none; margin: 0; padding: 0; }
.ftr li { padding: 0; }
/* Footer navigation is not inline text, so each target clears 24px in its own right. */
.ftr li > a { display: block; padding: 7px 0; min-height: 26px; }
.ftr-logo img { width: 232px; margin-bottom: 18px; }
.ftr-contact li { display: flex; gap: 11px; padding: 7px 0; align-items: flex-start; }
.ftr-contact li > a { display: inline-flex; align-items: center; min-height: 26px; padding: 0; }
.ftr-contact .ico { width: 20px; height: 20px; color: var(--orange); flex: none; margin-top: 3px; }
.ftr-badges { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 20px; }
.ftr-badges img { background: var(--white); border-radius: 8px; padding: 8px 10px; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.12); color: var(--white);
  transition: background-color .18s var(--ease);
}
.social a:hover { background: var(--orange); color: var(--navy-ink); }
.social .ico { width: 21px; height: 21px; }
.ftr-base {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-navy);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-size: .89rem; color: rgba(255,255,255,.62);
}
.ftr-base ul { display: flex; flex-wrap: wrap; gap: 10px 22px; }

/* ------------------------------------------------------------ page head   */

.phead { background: var(--navy); color: rgba(255,255,255,.86); }
.phead .container { padding-block: clamp(44px, 6vw, 78px); }
.phead h1 { color: var(--white); }
.phead .lede { color: rgba(255,255,255,.84); }
.crumbs { font-size: .92rem; margin-bottom: 18px; color: rgba(255,255,255,.7); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: rgba(255,255,255,.42); }
.crumbs a { color: rgba(255,255,255,.86); }

/* ---------------------------------------------------------------- prose   */

.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { max-width: var(--w-text); padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose > :first-child { margin-top: 0; }

/* -------------------------------------------------------------- charity   */

.charity { display: grid; gap: 30px; align-items: start; }
@media (min-width: 860px) { .charity { grid-template-columns: 210px minmax(0,1fr); gap: 46px; } }
.charity-marks { display: flex; gap: 18px; flex-wrap: wrap; }
.charity-marks img { width: 96px; background: var(--white); border-radius: 12px; padding: 10px; }

/* ------------------------------------------------------------- utilities  */

.stack-lg > * + * { margin-top: 34px; }
.mt-md { margin-top: 26px; }
.center-narrow { max-width: 760px; }
