/* =========================================================================
   Strybos & Sons Electrical
   Palette derives from Australian cable core colours:
   neutral blue = brand, active red = urgency only, earth green/yellow = the stripe.
   ========================================================================= */

/* =========================================================================
   Palette sampled directly from the supplied logo and van wrap.
   Brand red  #EE1C25   (logo top band, mascot, van flashes)
   Brand blue #0C54A6   (logo bottom band)
   Deep navy  #06294F   (darkest tones of the van wrap; used for hero grounds)
   ========================================================================= */

:root {
  --ink: #0F141A;
  --brand-red: #EE1C25;        /* true brand red: bar, logo, accents, non-text */
  --btn-red: #E31420;          /* brand red nudged 4.79:1 vs white for button labels */
  --brand-red-dark: #C4141C;
  --red-tint: #FF4B52;        /* red, lightened, for text on deep navy */
  --navy: #0C54A6;            /* brand blue: buttons, accents, headings */
  --navy-mid: #1668C4;
  --navy-deep: #06294F;       /* hero and panel grounds */
  --active: var(--brand-red);
  --active-dark: var(--brand-red-dark);
  --gold: #C68209;            /* review stars only: deepened to clear 3:1 on white */
  --ok: #1E7A3C;
  --paper: #F4F6F5;
  --card: #FFFFFF;
  --steel: #59636E;
  --steel-light: #8A939C;
  --line: #E1E5E8;
  --line-dark: rgba(255, 255, 255, 0.16);

  /* Text on dark grounds is white. Only tiny uppercase mono labels are held
     back, and with translucent white rather than a blue-grey tint. */
  --on-dark: #FFFFFF;
  --on-dark-label: rgba(255, 255, 255, 0.75);

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --wrap: 1180px;
  --gutter: 24px;
  --radius: 4px;

  --shadow-sm: 0 1px 2px rgba(15, 20, 26, .06), 0 2px 8px rgba(15, 20, 26, .05);
  --shadow-md: 0 2px 4px rgba(15, 20, 26, .05), 0 12px 32px rgba(15, 20, 26, .09);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 750;
  font-stretch: 112%;
  letter-spacing: -0.018em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 1.7vw, 1.45rem); font-stretch: 105%; letter-spacing: -0.012em; }
p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

/* ---------- utility ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--brand-red);
  flex: none;
}
.on-dark .eyebrow { color: var(--on-dark-label); }
.lede { font-size: 1.14rem; color: var(--steel); max-width: 62ch; }
.on-dark .lede { color: var(--on-dark); }
/* page-hero was inheriting .lede's --steel on a navy ground: unreadable. */
.hero .lede, .page-hero .lede, .panel p, .quote .on-dark p { color: var(--on-dark); }

.section { padding: clamp(64px, 8vw, 108px) 0; }
.section-head { max-width: 68ch; margin-bottom: clamp(36px, 4vw, 56px); }

/* The brand bar: the logo's own two-band structure, run across the page. */
.brand-bar {
  height: 6px;
  background: linear-gradient(to bottom, var(--brand-red) 0 3px, var(--navy) 3px 6px);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-family: var(--display);
  font-weight: 650;
  font-stretch: 105%;
  font-size: 1rem;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-call { background: var(--btn-red); color: #fff; border-color: var(--btn-red); }
.btn-call:hover { background: var(--active-dark); border-color: var(--active-dark); }

.btn-quote { background: var(--card); color: var(--ink); border-color: var(--card); }
.btn-quote:hover { background: #E9EDF1; border-color: #E9EDF1; }

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

.btn-solid { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-solid:hover { background: var(--navy-deep); border-color: var(--navy-deep); }

.btn-outline { background: transparent; color: var(--navy); border-color: #C6CFD6; }
.btn-outline:hover { border-color: var(--navy); }

.btn-lg { padding: 17px 32px; font-size: 1.06rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  display: flex; align-items: center; gap: 28px;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.brand-logo {
  height: 52px; width: auto; flex: none;
  display: block;
  border-radius: 2px;
}

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  padding: 9px 13px; border-radius: 3px;
  text-decoration: none; font-size: .94rem; font-weight: 500;
  color: var(--steel);
  transition: color .15s ease, background-color .15s ease;
}
.nav a:hover { color: var(--ink); background: #EDF0F2; }
.nav a[aria-current="page"] { color: var(--navy); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: 14px; flex: none; }
.header-phone {
  font-family: var(--mono);
  font-weight: 600; font-size: .98rem;
  color: var(--ink); text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover { color: var(--active); }
.header-phone span {
  display: block; font-size: .58rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--steel); font-weight: 500;
}

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line);
  border-radius: 3px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 19px; height: 2px;
  background: var(--ink); position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  background: var(--navy-deep);
  background-image:
    radial-gradient(120% 90% at 82% 8%, rgba(20,73,126,.85) 0%, rgba(8,36,63,0) 62%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 124px) 0 clamp(56px, 6vw, 88px);
}
.hero::after {
  /* faint switchboard grid, barely there */
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 3; }

/* The van, slightly blurred, fading into the navy so the copy stays first.
   Height is locked to the photo's own aspect ratio (66 / 1.546 = 42.7vw) so the
   box never squares up and crops the van's nose on a laptop. Above ~2100px the
   hero is shorter than that, so min() hands back to 100% and it fills. */
.hero-media {
  position: absolute; top: 0; right: 0;
  width: 66%;
  height: min(100%, 42.7vw);
  z-index: 1;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 52% 48%;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      var(--navy-deep) 0%,
      rgba(6,41,79,.98) 30%,
      rgba(6,41,79,.72) 62%,
      rgba(6,41,79,.30) 100%),
    linear-gradient(to top,
      var(--navy-deep) 0 5%,
      rgba(4,32,62,.55) 20%,
      rgba(4,32,62,0) 54%);
}

.hero h1 { color: #fff; max-width: 17ch; }
.hero h1 em {
  font-style: normal;
  color: var(--red-tint);
}
.hero-lede { margin-top: 26px; font-size: 1.18rem; color: var(--on-dark); max-width: 54ch; }

/* Signature: the live line. Runs from the page edge, through the copy,
   and terminates at the call button. Current travels along it on load. */
.live-line {
  position: relative;
  height: 1px;
  background: rgba(255,255,255,.18);
  margin: 40px 0 34px;
  width: 100%;
}
.live-line::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 9px; height: 9px; margin-top: -4px; margin-left: -4px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(238,28,37,.20);
}
.live-line .current {
  position: absolute; top: -1px; left: 0;
  height: 3px; width: 92px;
  background: linear-gradient(90deg, rgba(238,28,37,0), var(--red-tint));
  filter: blur(.2px);
  border-radius: 2px;
}
html.js .live-line .current { animation: travel 3.6s cubic-bezier(.5,0,.5,1) .5s infinite; }
@keyframes travel {
  0%   { transform: translateX(0); opacity: 0; }
  8%   { opacity: 1; }
  72%  { opacity: 1; }
  85%, 100% { transform: translateX(calc(100vw)); opacity: 0; }
}

/* Emergency banner. The whole bar is one tap target straight to the phone,
   so urgent callers never hunt for a number. Scheduled work goes to the form. */
.emergency {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 640px;
  margin: 0 0 30px;
  padding: 13px 18px;
  background: var(--btn-red);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(196, 20, 28, .30);
  transition: background-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.emergency:hover {
  background: var(--brand-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(196, 20, 28, .38);
}
.emergency:active { transform: translateY(0); }

.emergency-dot {
  position: relative;
  width: 9px; height: 9px; flex: none;
  border-radius: 50%;
  background: #fff;
}
.emergency-dot::after {
  content: "";
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.65);
}
html.js .emergency-dot::after { animation: ping 2s cubic-bezier(.3,0,.4,1) infinite; }
@keyframes ping {
  0%   { transform: scale(.55); opacity: .9; }
  75%, 100% { transform: scale(1.5); opacity: 0; }
}

.emergency-label {
  font-family: var(--mono);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  flex: none;
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,.34);
}
.emergency-text {
  flex: 1 1 auto; min-width: 0;
  font-size: .95rem; line-height: 1.35;
}
.emergency-num {
  flex: none;
  display: flex; align-items: center; gap: 9px;
  font-family: var(--mono);
  font-weight: 600; font-size: 1.02rem;
  white-space: nowrap;
}
.emergency-num svg { transition: transform .16s ease; }
.emergency:hover .emergency-num svg { transform: translateX(3px); }

@media (max-width: 700px) {
  .emergency { flex-wrap: wrap; gap: 10px 14px; padding: 14px 16px; }
  .emergency-label { border-right: 0; padding-right: 0; }
  .emergency-text { flex: 1 0 100%; order: 3; font-size: .92rem; }
  .emergency-num { margin-left: auto; }
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-trust {
  margin-top: clamp(44px, 5vw, 68px);
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.hero-trust div { min-width: 0; }
.hero-trust dt {
  font-family: var(--mono);
  font-size: .64rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--on-dark-label); margin-bottom: 7px;
}
.hero-trust dd {
  margin: 0;
  font-family: var(--display);
  font-weight: 650; font-stretch: 104%;
  font-size: 1.02rem; color: #fff;
  letter-spacing: -0.01em;
}

/* ---------- urgent strip ---------- */
.urgent {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}
.urgent-inner {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 0;
  flex-wrap: wrap;
}
.urgent-tag {
  font-family: var(--mono);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--active);
  border: 1.5px solid rgba(176,42,30,.3);
  border-radius: 999px;
  padding: 6px 13px;
  flex: none;
}
.urgent p { margin: 0; font-size: 1rem; color: var(--steel); flex: 1 1 320px; }
.urgent p strong { color: var(--ink); font-weight: 600; }
.urgent a {
  font-family: var(--mono); font-weight: 600; font-size: .95rem;
  color: var(--active); text-decoration: none; white-space: nowrap;
  border-bottom: 1.5px solid rgba(176,42,30,.3);
}
.urgent a:hover { border-bottom-color: var(--active); }

/* ---------- service cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.svc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  position: relative;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.svc::before {
  content: "";
  position: absolute; left: -1px; top: -1px; bottom: -1px;
  width: 3px; border-radius: 3px 0 0 3px;
  background: var(--navy);
  opacity: 0; transition: opacity .18s ease;
}
.svc:hover { border-color: #C9D2D9; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.svc:hover::before { opacity: 1; }
.svc-icon { color: var(--navy); margin-bottom: 20px; }
.svc h3 { margin-bottom: 12px; }
.svc p { color: var(--steel); font-size: .97rem; margin-bottom: 20px; }
.svc ul {
  list-style: none; margin: 0 0 24px; padding: 0;
  font-size: .93rem; color: var(--steel);
}
.svc ul li { padding: 6px 0 6px 20px; position: relative; border-top: 1px solid var(--line); }
.svc ul li:first-child { border-top: 0; }
.svc ul li::before {
  content: ""; position: absolute; left: 2px; top: 15px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-red);
}
.svc-more {
  margin-top: auto;
  font-family: var(--display); font-weight: 650; font-stretch: 104%;
  font-size: .95rem; color: var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
}
.svc:hover .svc-more { gap: 12px; }
.svc-more svg { transition: transform .18s ease; }
.svc:hover .svc-more svg { transform: translateX(3px); }

/* ---------- facts ---------- */
.facts { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.fact {
  padding: 40px 28px;
  border-left: 1px solid var(--line);
}
.fact:first-child { border-left: 0; padding-left: 0; }
.fact-num {
  font-family: var(--display);
  font-weight: 780; font-stretch: 118%;
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  line-height: 1; letter-spacing: -0.035em;
  color: var(--navy);
  margin-bottom: 12px;
}
.fact p { font-size: .93rem; color: var(--steel); margin: 0; }

/* ---------- reviews ---------- */
.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex; flex-direction: column;
}
.stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--gold); }
.review blockquote { margin: 0 0 22px; font-size: 1rem; color: var(--ink); line-height: 1.6; }
.review footer { margin-top: auto; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.review cite {
  font-style: normal;
  font-family: var(--display); font-weight: 650; font-stretch: 104%;
  font-size: .95rem;
}
.review time { font-family: var(--mono); font-size: .74rem; color: var(--steel); }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 76px); align-items: start; }
.split > * { min-width: 0; }
.panel {
  background: var(--navy-deep);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px 36px;
}
.panel h3 { color: #fff; margin-bottom: 20px; }
.spec {
  display: grid; grid-template-columns: auto 1fr; gap: 12px 22px;
  font-size: .94rem; margin: 0;
  align-items: baseline;
}
.spec dt {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--on-dark-label);
  white-space: nowrap; padding-top: 3px;
}
.spec dd { margin: 0; color: var(--on-dark); font-family: var(--mono); font-size: .92rem; overflow-wrap: anywhere; }

.checklist { list-style: none; margin: 0; padding: 0; column-gap: 40px; }
.checklist li {
  padding: 11px 0 11px 30px; position: relative;
  border-bottom: 1px solid var(--line);
  font-size: .97rem; color: var(--ink);
  break-inside: avoid;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 17px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
}
.cols-2 { column-count: 2; }

/* ---------- areas ---------- */
.areas { background: var(--card); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--mono); font-size: .8rem;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--steel);
  background: var(--paper);
}
.chip strong { color: var(--navy); font-weight: 600; }
.postcode-block { margin-bottom: 26px; }
.postcode-block h4 {
  font-family: var(--mono); font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; color: var(--ink);
  margin: 0 0 12px;
}

/* ---------- form ---------- */
.quote { background: var(--navy-deep); color: #fff; }
.quote .split { align-items: center; }
.quote h2 { color: #fff; }
.form-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label {
  display: block; margin-bottom: 7px;
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--steel); font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 3px;
  font-family: var(--body); font-size: 1rem;
  color: var(--ink); background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 108px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(14,58,102,.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .82rem; color: var(--steel); margin-top: 16px; }
.form-status { margin-top: 16px; font-size: .93rem; display: none; }
.form-status.is-ok { display: block; color: var(--ok); font-weight: 600; }
.form-status.is-err { display: block; color: var(--active); font-weight: 600; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-card .btn { width: 100%; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background: var(--navy-deep);
  color: #fff;
  padding: clamp(56px, 6.5vw, 92px) 0 clamp(48px, 5.5vw, 74px);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px; pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero .lede { margin-top: 22px; }
.crumbs {
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--on-dark-label); margin-bottom: 20px;
}
.crumbs a { color: var(--on-dark); text-decoration: none; }
.crumbs a:hover { color: #fff; }

/* ---------- final cta ---------- */
.cta-band { background: var(--card); border-top: 1px solid var(--line); }
.cta-inner {
  padding: clamp(52px, 6vw, 84px) 0;
  display: grid; grid-template-columns: 1.2fr auto;
  gap: 36px; align-items: center;
}
.cta-inner h2 { max-width: 18ch; }
.cta-inner p { color: var(--steel); margin-top: 16px; max-width: 48ch; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark); padding: clamp(56px, 6vw, 80px) 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 52px;
}
.site-footer h4 {
  font-family: var(--mono); font-size: .68rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: #fff; margin: 0 0 18px;
}
.site-footer a { color: var(--on-dark); text-decoration: none; }
.site-footer a:hover { color: var(--on-dark); text-decoration: underline; text-underline-offset: 3px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; font-size: .94rem; overflow-wrap: anywhere; }
.site-footer li { margin-bottom: 10px; }
.footer-blurb { font-size: .94rem; margin-top: 20px; max-width: 38ch; color: var(--on-dark); }
.footer-licence {
  font-family: var(--mono); font-size: .78rem;
  color: var(--on-dark-label); margin-top: 22px; line-height: 1.9;
}
.footer-licence strong { color: #fff; font-weight: 500; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 26px 0 34px;
  display: flex; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  font-size: .84rem; color: var(--on-dark-label);
}

/* ---------- mobile call bar ---------- */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none;
  background: var(--card);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -4px 24px rgba(15,20,26,.1);
}
.call-bar .btn { flex: 1; padding: 14px 10px; font-size: .96rem; }

/* ---------- reveal (gated on html.js) ---------- */
html.js .reveal { opacity: 0; transform: translateY(14px); }
html.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1);
}

/* ---------- focus ---------- */
:focus-visible {
  outline: 2.5px solid var(--brand-red);
  outline-offset: 2px;
  border-radius: 2px;
  box-shadow: 0 0 0 5px rgba(238,28,37,.25);
}
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 12px 18px;
  border-radius: 3px; text-decoration: none;
  transition: top .18s ease;
}
.skip:focus { top: 12px; }

/* ---------- responsive ---------- */
@media (max-width: 1120px) {
  .brand-logo { height: 46px; }
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .header-bar { gap: 16px; }
  .header-cta { margin-left: auto; order: 2; min-width: 0; }
  .nav-toggle { order: 3; margin-left: 8px; flex: none; }

  .site-header.is-open .nav {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--card);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 20px;
    gap: 2px;
    box-shadow: var(--shadow-md);
  }
  .site-header.is-open .nav a { padding: 14px 6px; font-size: 1.02rem; border-bottom: 1px solid var(--line); }

  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .fact { padding: 30px 24px; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .fact:first-child, .fact:nth-child(2) { border-top: 0; }
  .fact:nth-child(odd) { border-left: 0; padding-left: 0; }
}

@media (max-width: 820px) {
  .hero-media { width: 100%; height: 100%; }
  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(6,41,79,.94) 0%, rgba(6,41,79,.86) 100%),
      linear-gradient(to top, rgba(4,32,62,.78) 0%, rgba(4,32,62,.30) 60%);
  }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 24px 22px; }
  .cols-2 { column-count: 1; }
  .call-bar { display: flex; }
  body { padding-bottom: 78px; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; }
  body { font-size: 16px; }
  .header-phone span { display: none; }
  .header-phone { font-size: .92rem; }
  .nav-toggle { width: 40px; height: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact { border-left: 0; padding: 26px 0; border-top: 1px solid var(--line); }
  .fact:nth-child(2) { border-top: 1px solid var(--line); }
  .hero-trust { grid-template-columns: 1fr; gap: 20px; }
  .cta-actions .btn { width: 100%; }
}

@media (max-width: 430px) {
  .spec { grid-template-columns: 1fr; gap: 2px 0; }
  .spec dt { padding-top: 14px; }
}

@media (max-width: 400px) {
  /* The sticky call bar carries the number here, so the header does not need it. */
  .header-phone { display: none; }
  .brand-logo { height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
  html.js .live-line .current { animation: none; opacity: .8; }
  html.js .emergency-dot::after { animation: none; opacity: .55; transform: scale(1); }
}

@media print {
  .site-header, .call-bar, .hero::after { display: none; }
}
