@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/newsreader-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/newsreader-italic-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/instrument-sans-latin.woff2') format('woff2');
}

:root {
  --bg: #FAF6F0;
  --band: #F5EFE5;
  --card: #FFFFFF;
  --blue: #344874;
  --blue-hover: #2A3A5D;
  --blue-dark: #232B3F;
  --blue-darkest: #1A202E;
  --blue-tint: #E9EEF6;
  --why-card: #EFEDE4;

  --ink: #262320;
  --body: #575147;
  --muted: #6E675D;
  --muted-2: #736B5D; /* AA-darkened from handoff #7A7264 for contrast on warm bg */
  --nav-link: #4A453D;
  --trust-label: #3D382F;

  --gold: #E9C46A;
  --gold-ink: #4A3510;
  --clay: #9B5A33; /* AA-darkened from handoff #A8623C for contrast */
  --clay-2: #B5643C;

  --border: #ECE4D6;
  --border-2: #EBE3D6;
  --border-3: #E2D9CA;
  --border-4: #D8CFBF;
  --border-input: #DAD1C1;
  --border-map: #D6DCE8;
  --divider-menu: #EFE8DC;

  --on-dark: #EFEDE4;
  --on-dark-body: #C2C7D2;
  --on-dark-muted: #A7AEBD;
  --on-dark-footer: #99A1B0;
  --not-incl-text: #D5D9E2;
  --on-blue: #FFFFFF;

  --agent-heading: #D6B9A6;
  --con-text: #BDC2CC;
  --con-marker: #D89A78;
  --pro-marker-bg: #DCE3EE;
  --pro-text: #3D4451;
  --why-card-ink: #232A38;

  --caption-ink: #6F6759; /* AA-darkened from handoff #8A8171 for contrast */
  --map-land: #E4E9F0;
  --map-water: #A9BECC;
  --quote-mark: #CBB79A;
  --testi-role: #736B5D; /* AA-darkened from handoff #8A8171 for contrast on white */

  --header-bg: rgba(250, 246, 240, 0.82);
  --map-halo: rgba(250, 246, 240, 0.85);
  --white-04: rgba(255, 255, 255, 0.04);
  --white-10: rgba(255, 255, 255, 0.1);
  --clay-22: rgba(181, 100, 60, 0.22);
  --gold-15: rgba(233, 196, 106, 0.15);
  --shadow-blue: rgba(52, 72, 116, 0.35);
  --shadow-dark: rgba(0, 0, 0, 0.5);
  --selection: #CFD9E8;

  --font-head: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body: 'Instrument Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Consolas, monospace;

  --maxw: 1160px;
  --maxw-faq: 820px;
  --pad-x: 28px;
  --section-y: clamp(64px, 8vw, 104px);
  --header-h: 72px;

  --r-pill: 999px;
  --r-card: 20px;
  --r-card-sm: 18px;
  --r-card-xs: 16px;
  --r-faq: 14px;
  --r-input: 10px;
  --r-chip: 8px;

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

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-hover); }

button { font-family: inherit; }

::selection { background: var(--selection); }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

section { scroll-margin-top: 78px; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section-pad { padding-top: var(--section-y); padding-bottom: var(--section-y); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}
.eyebrow--gold { color: var(--gold); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--blue); color: var(--on-blue);
  padding: 10px 16px; border-radius: var(--r-chip); font-weight: 600;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; color: var(--on-blue); }

.logo { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.logo__mark { display: block; flex: none; }
.logo__word {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.btn {
  display: inline-block;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn--primary { background: var(--blue); color: var(--on-blue); padding: 15px 28px; }
.btn--primary:hover { background: var(--blue-hover); color: var(--on-blue); }
.btn--ghost {
  background: var(--card); color: var(--ink);
  padding: 15px 26px; border-color: var(--border-3);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }

.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-2);
}
.header__row {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x); height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-desktop { display: flex; align-items: center; gap: 30px; }
.nav-desktop a { color: var(--nav-link); font-size: 15px; font-weight: 500; }
.nav-desktop a:hover { color: var(--blue); }
.nav-desktop .nav-cta {
  background: var(--blue); color: var(--on-blue);
  padding: 10px 20px; border-radius: var(--r-pill); font-weight: 600;
  transition: background-color .2s ease;
}
.nav-desktop .nav-cta:hover { background: var(--blue-hover); color: var(--on-blue); }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--border-4);
  border-radius: var(--r-chip);
  width: 42px; height: 40px; cursor: pointer;
  flex-direction: column; gap: 4px; align-items: center; justify-content: center;
}
.nav-toggle__bar { width: 18px; height: 2px; background: var(--ink); display: block; }

.nav-mobile { display: none; border-top: 1px solid var(--border-2); background: var(--bg); }
.nav-mobile[data-open="true"] { display: block; }
.nav-mobile__inner { padding: 10px var(--pad-x) 20px; display: flex; flex-direction: column; gap: 4px; }
.nav-mobile a {
  padding: 12px 4px; color: var(--ink); font-weight: 500;
  border-bottom: 1px solid var(--divider-menu);
}
.nav-mobile a.nav-mobile__cta {
  margin-top: 10px; background: var(--blue); color: var(--on-blue);
  padding: 13px; border-radius: var(--r-pill); text-align: center; border-bottom: 0;
}

.h1 {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(38px, 5.6vw, 62px);
  line-height: 1.04; letter-spacing: -0.02em;
}
.h2 {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1; letter-spacing: -0.02em;
}
.h2--wide { font-size: clamp(28px, 3.8vw, 44px); }
.accent-italic { font-style: italic; color: var(--blue); }
.accent-italic--gold { font-style: italic; color: var(--gold); }

.hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(36px, 4vw, 52px) var(--pad-x) clamp(40px, 6vw, 72px);
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero__text { animation: floatIn 0.7s ease both; }
.hero__media { position: relative; animation: floatIn 0.9s ease both; }
.pill-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-tint); color: var(--blue);
  padding: 7px 15px; border-radius: var(--r-pill);
  font-size: 13.5px; font-weight: 600;
}
.pill-eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex: none; }
.hero__h1 { margin-top: 22px; }
.hero__lede {
  font-size: clamp(16.5px, 1.5vw, 19px); line-height: 1.6;
  color: var(--body); margin-top: 24px; max-width: 30em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-card-xs); padding: 15px 19px;
  box-shadow: 0 12px 30px -14px var(--shadow-blue);
}
.hero__badge-big { font-family: var(--font-head); font-size: 26px; font-weight: 600; color: var(--blue); }
.hero__badge-cap { font-size: 13px; color: var(--muted-2); margin-top: 1px; }

@keyframes floatIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__media picture, .about__media { display: block; }
.hero__photo, .about__photo {
  display: block; width: 100%; height: auto;
  border-radius: var(--r-card); border: 1px solid var(--border-3);
  object-fit: cover;
}
.hero__photo { aspect-ratio: 4 / 5; }
.about__photo { aspect-ratio: 5 / 4; }

.trust {
  border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2);
  background: var(--band);
}
.trust__row {
  max-width: var(--maxw); margin: 0 auto; padding: 22px var(--pad-x);
  display: flex; flex-wrap: wrap; gap: 14px 40px;
  justify-content: space-between; align-items: center;
}
.trust__item { display: flex; align-items: center; gap: 11px; }
.egg-glyph {
  width: 8px; height: 10px; background: var(--blue);
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%; flex: none;
}
.trust__label { font-size: 15px; font-weight: 500; color: var(--trust-label); }

.about__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.about__body p { font-size: 17px; line-height: 1.65; color: var(--body); }
.about__h2 { margin-top: 14px; }
.about__body p:first-of-type { margin-top: 20px; }
.about__body p + p { margin-top: 16px; }
.about__stats {
  display: flex; flex-wrap: wrap; gap: 26px;
  margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--border);
}
.stat__value { font-family: var(--font-head); font-size: 30px; font-weight: 600; color: var(--blue); }
.stat__cap { font-size: 14px; color: var(--muted-2); margin-top: 2px; }

.why { background: var(--blue-dark); color: var(--on-dark); }
.why__intro { max-width: 640px; }
.why__intro h2 { margin-top: 14px; }
.why__intro p { font-size: 17px; line-height: 1.65; color: var(--on-dark-body); margin-top: 18px; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; }
.compare-card { border-radius: var(--r-card-sm); padding: 30px; }
.compare-card--agent { background: var(--white-04); border: 1px solid var(--white-10); }
.compare-card--us { background: var(--why-card); color: var(--why-card-ink); box-shadow: 0 24px 50px -20px var(--shadow-dark); }
.compare-card__title { font-family: var(--font-head); font-size: 23px; margin-bottom: 4px; }
.compare-card--agent .compare-card__title { color: var(--agent-heading); font-weight: 500; }
.compare-card--us .compare-card__title { color: var(--blue); font-weight: 600; }
.accent-bar { width: 34px; height: 3px; border-radius: 3px; margin: 10px 0 20px; }
.accent-bar--clay { background: var(--clay-2); }
.accent-bar--blue { background: var(--blue); }
.compare-list { display: flex; flex-direction: column; gap: 15px; }
.compare-item { display: flex; gap: 13px; align-items: flex-start; }
.compare-item span:last-child { font-size: 15px; line-height: 1.5; }
.compare-card--agent .compare-item span:last-child { color: var(--con-text); }
.compare-card--us .compare-item span:last-child { color: var(--pro-text); }
.marker {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; margin-top: 1px;
}
.marker--con { background: var(--clay-22); color: var(--con-marker); font-size: 15px; }
.marker--pro { background: var(--pro-marker-bg); color: var(--blue); font-size: 12px; font-weight: 700; }

.centred-intro { text-align: center; max-width: 620px; margin: 0 auto; }
.centred-intro h2 { margin-top: 14px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.step-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card-xs); padding: 26px; }
.step-card__n {
  font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--blue);
  width: 38px; height: 38px; border-radius: 50%; background: var(--blue-tint);
  display: flex; align-items: center; justify-content: center;
}
.step-card__title { font-size: 17.5px; font-weight: 600; margin-top: 18px; letter-spacing: -0.01em; }
.step-card__desc { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin-top: 9px; }

.services { background: var(--band); border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }
.services__head {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: flex-end; justify-content: space-between;
}
.services__head-text { max-width: 560px; }
.services__head-text h2 { margin-top: 14px; }
.services__head-note { font-size: 15px; color: var(--muted); max-width: 24em; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; align-items: stretch; }
.price-card { border-radius: var(--r-card); padding: 32px; display: flex; flex-direction: column; }
.price-card--plain { background: var(--card); color: var(--ink); border: 1px solid var(--border); }
.price-card--featured { background: var(--blue); color: var(--on-dark); border: 1px solid var(--blue); }
.price-card__top { display: flex; align-items: center; justify-content: space-between; }
.price-card__name { font-family: var(--font-head); font-size: 24px; font-weight: 600; }
.price-tag {
  font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--gold); color: var(--gold-ink); padding: 5px 11px; border-radius: var(--r-pill);
}
.price-card__rate-row { margin: 20px 0 4px; display: flex; align-items: baseline; gap: 8px; }
.price-card__rate { font-family: var(--font-head); font-size: 46px; font-weight: 600; line-height: 1; }
.price-card__unit { font-size: 14px; opacity: 0.75; }
.price-card__desc { font-size: 15px; line-height: 1.55; margin-top: 14px; opacity: 0.9; }
.price-card__spacer { flex: 1; }
.price-card__cta {
  margin-top: 26px; display: block; text-align: center; padding: 13px;
  border-radius: var(--r-pill); font-weight: 600; font-size: 15px; border: 1px solid;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.price-card__cta--plain { background: var(--card); color: var(--blue); border-color: var(--border-map); }
.price-card__cta--plain:hover { background: var(--blue-tint); color: var(--blue); }
.price-card__cta--gold { background: var(--gold); color: var(--gold-ink); border-color: var(--gold); }
.price-card__cta--gold:hover { background: var(--gold-ink); color: var(--gold); }

.incl-grid { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 22px; margin-top: 26px; }
.incl-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card); padding: 30px; }
.incl-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 18px; }
.incl-cols { columns: 2; column-gap: 34px; list-style: none; }
.incl-cols li { display: flex; gap: 10px; align-items: flex-start; break-inside: avoid; margin-bottom: 12px; }
.incl-cols li span:last-child { font-size: 14.5px; line-height: 1.5; color: var(--nav-link); }
.tick {
  flex: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue-tint); color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; margin-top: 1px;
}
.excl-card { background: var(--blue-dark); color: var(--not-incl-text); border-radius: var(--r-card); padding: 30px; }
.excl-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 18px; color: var(--gold); }
.excl-list { display: flex; flex-direction: column; gap: 13px; list-style: none; }
.excl-list li { display: flex; gap: 10px; align-items: flex-start; }
.excl-list li span:last-child { font-size: 14.5px; line-height: 1.5; }
.dash-gold {
  flex: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-15); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; font-size: 14px; margin-top: 1px;
}

.areas__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.areas__text h2 { margin-top: 14px; }
.areas__lede { font-size: 17px; line-height: 1.65; color: var(--body); margin: 18px 0 26px; }
.area-pills { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; }
.area-pill {
  background: var(--card); border: 1px solid var(--border-3); color: var(--trust-label);
  padding: 8px 15px; border-radius: var(--r-pill); font-size: 14.5px; font-weight: 500;
}
.areas__foot { font-size: 15px; color: var(--muted); margin-top: 22px; }
.areas__foot a { font-weight: 600; }
.map-box {
  aspect-ratio: 1 / 1; border-radius: var(--r-card); overflow: hidden;
  background: var(--band); border: 1px solid var(--border-map);
}
.coverage-map { display: block; width: 100%; height: 100%; }
.coverage-map__wash { fill: var(--map-land); stroke: var(--border-map); stroke-width: 1.5; }
.coverage-map__river { fill: none; stroke: var(--map-water); stroke-width: 20; stroke-linecap: round; stroke-linejoin: round; }
.coverage-map__dot { fill: var(--blue); }
.coverage-map__label {
  font-family: var(--font-body); font-size: 12px; font-weight: 600; fill: var(--trust-label);
  paint-order: stroke; stroke: var(--map-halo); stroke-width: 2.6; stroke-linejoin: round;
}

.testi { background: var(--band); border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card-sm); padding: 30px; display: flex; flex-direction: column; }
.testi-card__mark { font-family: var(--font-head); font-size: 40px; line-height: 0.6; color: var(--quote-mark); height: 20px; }
.testi-card__quote { font-size: 16.5px; line-height: 1.6; color: var(--trust-label); margin-top: 6px; font-style: italic; }
.testi-card__spacer { flex: 1; }
.testi-card__cap { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-tint); border: 1px solid var(--border-map); flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 17px; font-weight: 600; color: var(--blue);
}
.testi-card__name { display: block; font-size: 14.5px; font-weight: 600; }
.testi-card__role { display: block; font-size: 13px; color: var(--testi-role); }

.faq {
  max-width: var(--maxw-faq);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.faq__intro { text-align: center; margin-bottom: 44px; }
.faq__intro h2 { margin-top: 14px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-faq); overflow: hidden; }
.faq-item__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item__q-text { font-size: 16.5px; font-weight: 600; color: var(--ink); }
.faq-item__chip {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--blue-tint); color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 500; transition: transform .2s;
}
.faq-item__q[aria-expanded="true"] .faq-item__chip { transform: rotate(45deg); }
.faq-item__a { padding: 0 24px 22px; font-size: 15.5px; line-height: 1.62; color: var(--body); }
.faq-item__a[hidden] { display: none; }

.contact { background: var(--blue-dark); color: var(--on-dark); }
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 72px); }
.contact__intro h2 { margin-top: 14px; }
.contact__intro p { font-size: 17px; line-height: 1.65; color: var(--on-dark-body); margin: 18px 0 34px; }
.contact__people { display: flex; flex-direction: column; gap: 22px; }
.contact__name { font-family: var(--font-head); font-size: 20px; font-weight: 600; }
.contact__lines { margin-top: 6px; font-size: 15px; color: var(--on-dark-body); display: flex; flex-direction: column; gap: 3px; }
.contact__lines a { color: var(--gold); }
.contact__lines a:hover { color: var(--gold); text-decoration: underline; }
.contact__addr {
  font-size: 15px; color: var(--on-dark-muted); line-height: 1.5;
  padding-top: 8px; border-top: 1px solid var(--white-10);
}

.enquiry {
  background: var(--why-card); border-radius: var(--r-card);
  padding: clamp(26px, 3vw, 38px); color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: block; margin-top: 16px; }
.field:first-child, .form-row .field { margin-top: 0; }
.field__label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--nav-link); }
.field__input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border-input);
  border-radius: var(--r-input); background: var(--card); font-size: 15px;
  font-family: inherit; color: var(--ink);
}
.field__input:focus-visible { outline-color: var(--blue); border-color: var(--blue); }
textarea.field__input { resize: vertical; }
.enquiry__submit {
  margin-top: 22px; width: 100%; background: var(--blue); color: var(--on-blue); border: none;
  padding: 15px; border-radius: var(--r-pill); font-size: 16px; font-weight: 600; cursor: pointer;
  transition: background-color .2s ease;
}
.enquiry__submit:hover { background: var(--blue-hover); }
.enquiry__submit[disabled] { opacity: 0.6; cursor: progress; }
.enquiry__help { font-size: 12.5px; color: var(--caption-ink); text-align: center; margin-top: 12px; }
.honeypot { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 14px; font-size: 14.5px; line-height: 1.5; border-radius: var(--r-input); padding: 12px 14px; }
.form-status[hidden] { display: none; }
.form-status--ok { background: var(--blue-tint); color: var(--blue); }
.form-status--err { background: var(--gold-15); color: var(--clay); }
.form-status a { font-weight: 600; }

.footer { background: var(--blue-darkest); color: var(--on-dark-footer); }
.footer__row {
  max-width: var(--maxw); margin: 0 auto; padding: 34px var(--pad-x);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
}
.footer__logo .logo__word { font-size: 17px; color: var(--on-dark); }
.footer__note { font-size: 13.5px; }

.js-reveal .reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity .85s var(--ease-reveal), transform .85s var(--ease-reveal);
  will-change: opacity, transform;
}
.js-reveal .reveal.is-in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .hero, .about__grid, .areas__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media { order: 2; }
  .compare-grid, .steps-grid, .services-grid, .testi-grid, .incl-grid { grid-template-columns: 1fr; }
  .incl-cols { columns: 1; }
  .map-box { max-width: 460px; }
}

@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
  .form-row .field + .field { margin-top: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__text, .hero__media { animation: none; }
  .js-reveal .reveal {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .faq-item__chip, .btn, .price-card__cta, .enquiry__submit, .nav-desktop .nav-cta { transition: none; }
}
