/* =========================================================================
   West Midlands Hydraulics
   Hand-written stylesheet. No framework, no utility soup.

   Layout model: one `.wrap` container, a 12-column grid used asymmetrically,
   and a light/dark section system driven by a single `data-tone` attribute.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokens
   ---------------------------------------------------------------------- */

:root {
  /* Brand — carried over unchanged from the previous site */
  --navy:        #060B23;
  --navy-soft:   #0D1430;
  --steel:       #33335C;
  --lime:        #C4FF47;
  --lime-dim:    #A8E02F;
  /* Lime is a background colour. At small sizes on white it fails contrast,
     so text, markers and icons on light tones use this darker mix instead. */
  --lime-ink:    #6E8F14;
  --white:       #FFFFFF;
  --body:        #444444;

  /* Derived neutrals */
  --ink:         #101322;
  --ink-2:       #3A3F52;
  --paper:       #FFFFFF;
  --paper-2:     #F6F7F4;
  --paper-3:     #EDEFE8;
  --rule:        rgba(6, 11, 35, 0.14);
  --rule-soft:   rgba(6, 11, 35, 0.08);

  /* Tone-aware slots. Overridden per section by [data-tone]. */
  --bg:          var(--paper);
  --fg:          var(--body);
  --fg-strong:   var(--navy);
  --fg-muted:    #6A6F80;
  --hairline:    var(--rule);
  --card-bg:     var(--white);
  --card-border: var(--rule);

  /* Type */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Fluid scale — 320px to 1400px viewport */
  --step--1: clamp(0.84rem, 0.82rem + 0.10vw, 0.90rem);
  --step-0:  clamp(1.00rem, 0.96rem + 0.19vw, 1.12rem);
  --step-1:  clamp(1.18rem, 1.10rem + 0.36vw, 1.40rem);
  --step-2:  clamp(1.42rem, 1.26rem + 0.72vw, 1.85rem);
  --step-3:  clamp(1.70rem, 1.42rem + 1.30vw, 2.50rem);
  --step-4:  clamp(2.05rem, 1.55rem + 2.30vw, 3.40rem);
  --step-5:  clamp(2.45rem, 1.60rem + 3.90vw, 4.60rem);

  /* Spacing */
  --s-1: 0.5rem;
  --s-2: 0.875rem;
  --s-3: 1.25rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4.5rem;
  --s-7: 7rem;

  --wrap: 1200px;
  --gap:  clamp(1.25rem, 0.9rem + 1.6vw, 2.5rem);
  --radius: 3px;

  --t-fast: 140ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-mid:  260ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark sections. Applied to a <section data-tone="dark">. */
[data-tone="dark"] {
  --bg:          var(--navy);
  --fg:          rgba(255, 255, 255, 0.76);
  --fg-strong:   var(--white);
  --fg-muted:    rgba(255, 255, 255, 0.52);
  --hairline:    rgba(255, 255, 255, 0.16);
  --card-bg:     var(--navy-soft);
  --card-border: rgba(255, 255, 255, 0.13);
}

[data-tone="tint"] {
  --bg:      var(--paper-2);
  --card-bg: var(--white);
}

/* -------------------------------------------------------------------------
   2. Reset and base
   ---------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-variant-numeric: tabular-nums;
  /* `clip` rather than `hidden`: hidden turns body into a scroll container,
     which breaks position:sticky and scroll anchoring. */
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--s-3);
  color: var(--fg-strong);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); line-height: 1.2; }
h4 { font-size: var(--step-1); line-height: 1.3; letter-spacing: -0.012em; }
h5, h6 { font-size: var(--step-0); letter-spacing: 0; }

p { margin: 0 0 var(--s-3); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration-color: color-mix(in srgb, currentColor 40%, transparent); text-underline-offset: 0.18em; }
a:hover { text-decoration-color: currentColor; }

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

strong, b { font-weight: 600; color: var(--fg-strong); }

hr { border: 0; border-top: 1px solid var(--hairline); margin: var(--s-5) 0; }

::selection { background: var(--lime); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 2px;
}
[data-tone="dark"] :focus-visible { outline-color: var(--lime); }

/* -------------------------------------------------------------------------
   3. Layout primitives
   ---------------------------------------------------------------------- */

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}
@media (max-width: 600px) {
  .wrap { width: min(100% - 2rem, var(--wrap)); }
}

.section {
  background: var(--bg);
  color: var(--fg);
  padding-block: clamp(3.5rem, 2rem + 6vw, var(--s-7));
  position: relative;
}
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--flush-top { padding-top: 0; }

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--lime);
  color: var(--navy);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* -------------------------------------------------------------------------
   4. Section heading — the editorial rail
   Numbered, left-aligned, hairline above. Deliberately not a centred
   eyebrow/heading/lede stack repeated down the page.
   ---------------------------------------------------------------------- */

.shead {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: var(--gap);
  border-top: 1px solid var(--hairline);
  padding-top: var(--s-3);
  margin-bottom: var(--s-5);
}
.shead__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.shead__num {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--lime-ink);
  letter-spacing: 0.06em;
}
[data-tone="dark"] .shead__num { color: var(--lime); }
.shead__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.shead__body > :last-child { margin-bottom: 0; }
.shead__body h2 { margin-bottom: var(--s-2); max-width: 22ch; }
.shead__body p { max-width: 62ch; font-size: var(--step-1); color: var(--fg); }

@media (max-width: 860px) {
  .shead { grid-template-columns: 1fr; gap: var(--s-2); }
  .shead__meta { flex-direction: row; align-items: baseline; gap: var(--s-2); }
}

/* -------------------------------------------------------------------------
   5. Buttons
   ---------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
  font-family: inherit;
  line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
.btn { flex: none; }
.btn .wmh-icon { width: 1.05em; height: 1.05em; flex: none; }

.btn--primary {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
}
.btn--primary:hover { background: var(--lime-dim); border-color: var(--lime-dim); }

.btn--ghost {
  background: transparent;
  color: var(--fg-strong);
  border-color: var(--hairline);
}
.btn--ghost:hover { border-color: var(--fg-strong); }

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Text link with an arrow that nudges — used instead of a "card CTA button" */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: var(--step--1);
  text-decoration: none;
  color: var(--fg-strong);
}
.tlink .wmh-icon { width: 1em; height: 1em; transition: transform var(--t-fast); }
.tlink:hover .wmh-icon { transform: translateX(3px); }

/* -------------------------------------------------------------------------
   6. Header
   ---------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: 78px;
}

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; flex: none; }
.brand img { height: 42px; width: auto; }
.brand__text { display: none; }

.nav { display: flex; align-items: center; gap: var(--s-3); }
.nav ul { display: flex; align-items: center; gap: var(--s-3); list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.nav ul a { white-space: nowrap; }

/* Between 1000 and 1240px the row is tight: the phone number and the links
   matter more than a second quote button, so that one steps aside. */
@media (max-width: 1240px) and (min-width: 1001px) {
  .nav .header-cta { display: none; }
}
.nav ul a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.4rem 0;
  position: relative;
  transition: color var(--t-fast);
}
.nav ul a:hover, .nav .current-menu-item > a, .nav .current_page_item > a { color: var(--white); }
.nav .current-menu-item > a::after,
.nav .current_page_item > a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--lime);
}

.header-cta { display: flex; align-items: center; gap: 0.9rem; flex: none; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.header-phone .wmh-icon { width: 1.05em; height: 1.05em; color: var(--lime); }
.header-phone:hover { color: var(--lime); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  padding: 0.55rem;
  cursor: pointer;
  line-height: 0;
}
.nav-toggle .wmh-icon { width: 22px; height: 22px; }

@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 78px 0 auto 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    align-items: stretch;
    padding: var(--s-3) 1.25rem var(--s-4);
    gap: 0;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
  }
  .nav[data-open="true"] { opacity: 1; transform: none; visibility: visible; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav li { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .nav ul a { display: block; padding: 0.9rem 0; font-size: 1.05rem; }
  .nav .header-cta { display: block; margin-top: var(--s-3); }
  .nav .header-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  .header-phone span { display: none; }
  .brand img { height: 34px; }
}

/* -------------------------------------------------------------------------
   7. Hero
   ---------------------------------------------------------------------- */

.hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  --fg-strong: var(--white);
  --fg: rgba(255,255,255,0.76);
  --hairline: rgba(255,255,255,0.16);
  --fg-muted: rgba(255,255,255,0.52);
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3rem, 1.5rem + 6vw, 6.5rem);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: var(--s-3);
}
.hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--lime);
}
.hero h1 { margin-bottom: var(--s-3); max-width: 14ch; }
.hero h1 em {
  font-style: normal;
  color: var(--lime);
}
.hero__lede {
  font-size: var(--step-1);
  color: rgba(255, 255, 255, 0.78);
  max-width: 46ch;
  margin-bottom: var(--s-4);
}
.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--radius);
}
/* A single off-grid element: the stat card bleeds past the image corner. */
.hero__stat {
  position: absolute;
  left: -2.5rem;
  bottom: -1.75rem;
  background: var(--lime);
  color: var(--navy);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius);
  max-width: 15rem;
}
.hero__stat b {
  display: block;
  font-family: var(--mono);
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.hero__stat span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-4); }
  .hero h1 { max-width: 18ch; }
  .hero__media { order: -1; }
  .hero__stat { left: auto; right: 0.75rem; bottom: -1.25rem; }
}

/* -------------------------------------------------------------------------
   8. Trust strip
   ---------------------------------------------------------------------- */

.strip {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
}
.strip__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.strip__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1.4rem 1.5rem 1.4rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  line-height: 1.4;
}
.strip__list li:last-child { border-right: 0; }
.strip__list li:not(:first-child) { padding-left: 1.5rem; }
.strip__list .wmh-icon { width: 20px; height: 20px; color: var(--lime); flex: none; margin-top: 1px; }
.strip__list b { display: block; color: var(--white); font-weight: 600; }

@media (max-width: 900px) {
  .strip__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .strip__list li:nth-child(2n) { border-right: 0; }
  .strip__list li:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.12); }
}
@media (max-width: 520px) {
  .strip__list { grid-template-columns: 1fr; }
  .strip__list li { border-right: 0; padding-left: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.12); }
}

/* -------------------------------------------------------------------------
   9. Cards — deliberately mixed surfaces, flat at rest
   ---------------------------------------------------------------------- */

.cards {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: var(--s-4) var(--s-3) var(--s-3);
  position: relative;
  transition: border-color var(--t-fast), transform var(--t-fast);
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}
.card:hover { border-color: color-mix(in srgb, var(--fg-strong) 45%, transparent); }
a.card:hover { transform: translateY(-2px); }

.card__num {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
  display: block;
}
.card h3 { font-size: var(--step-1); margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; color: var(--fg); margin-bottom: var(--s-3); }
.card .tlink { margin-top: auto; }
.card .wmh-icon--lead { width: 30px; height: 30px; color: var(--lime-ink); margin-bottom: 1rem; }
[data-tone="dark"] .card .wmh-icon--lead { color: var(--lime); }

/* Every fourth card inverts, so the row never reads as one repeated tile. */
.cards--mixed .card:nth-child(4n+3) {
  background: var(--navy);
  border-color: var(--navy);
  --fg: rgba(255,255,255,0.74);
  --fg-strong: var(--white);
  --fg-muted: rgba(255,255,255,0.5);
}
.cards--mixed .card:nth-child(4n+3) .wmh-icon--lead { color: var(--lime); }
.cards--mixed .card:nth-child(4n+3) h3 { color: var(--white); }

/* Flat, borderless variant for dense lists */
.card--flat { background: transparent; border-color: transparent; border-top: 1px solid var(--hairline); border-radius: 0; padding-inline: 0; }
.card--flat:hover { border-color: transparent; border-top-color: var(--fg-strong); }

/* -------------------------------------------------------------------------
   10. Numbered list — replaces tick-badge bullets
   ---------------------------------------------------------------------- */

.nlist { list-style: none; margin: 0; padding: 0; counter-reset: n; }
.nlist li {
  counter-increment: n;
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0.5rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--hairline);
  align-items: baseline;
}
.nlist li:last-child { border-bottom: 1px solid var(--hairline); }
.nlist li::before {
  content: counter(n, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--lime-ink);
  font-weight: 500;
}
[data-tone="dark"] .nlist li::before { color: var(--lime); }

/* Spec table */
.spec { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.spec th, .spec td { text-align: left; padding: 0.8rem 0; border-top: 1px solid var(--hairline); vertical-align: top; }
.spec tr:last-child th, .spec tr:last-child td { border-bottom: 1px solid var(--hairline); }
.spec th { font-weight: 500; color: var(--fg-muted); width: 45%; }
.spec td { font-family: var(--mono); color: var(--fg-strong); font-size: 0.9rem; }

/* -------------------------------------------------------------------------
   11. Prose (editor content)
   ---------------------------------------------------------------------- */

.prose { max-width: 68ch; font-size: var(--step-0); }
.prose > * + * { margin-top: var(--s-3); }
.prose h2 { font-size: var(--step-3); margin-top: var(--s-5); }
.prose h3 { font-size: var(--step-1); margin-top: var(--s-4); }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.15rem; margin-bottom: 0; }
.prose li { margin-bottom: 0.45rem; }
.prose li::marker { color: var(--lime-ink); }
.prose a { color: var(--fg-strong); font-weight: 500; text-decoration: underline; text-decoration-color: var(--lime); text-decoration-thickness: 2px; }
.prose a:hover { background: color-mix(in srgb, var(--lime) 28%, transparent); }
.prose blockquote {
  margin: var(--s-4) 0;
  padding: 0 0 0 var(--s-3);
  border-left: 2px solid var(--lime);
  font-size: var(--step-1);
  color: var(--fg-strong);
}
.prose img { border-radius: var(--radius); margin-block: var(--s-4); }
.prose table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.prose th, .prose td { border-top: 1px solid var(--hairline); padding: 0.7rem 0.5rem 0.7rem 0; text-align: left; }

/* -------------------------------------------------------------------------
   12. FAQ
   ---------------------------------------------------------------------- */

.faq { border-top: 1px solid var(--hairline); }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-3);
  padding: 1.2rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--step-1);
  color: var(--fg-strong);
  list-style: none;
  line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 14px; height: 14px;
  margin-top: 0.4rem;
  border-right: 1.5px solid var(--lime-ink);
  border-bottom: 1.5px solid var(--lime-ink);
  transform: rotate(45deg);
  transition: transform var(--t-fast);
}
[data-tone="dark"] .faq summary::after { border-color: var(--lime); }
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 0.7rem; }
.faq__a { padding: 0 0 1.4rem; max-width: 70ch; color: var(--fg); }
.faq__a > :last-child { margin-bottom: 0; }

/* -------------------------------------------------------------------------
   13. CTA band
   ---------------------------------------------------------------------- */

.cta {
  background: var(--lime);
  color: var(--navy);
  --fg-strong: var(--navy);
  --fg: rgba(6, 11, 35, 0.78);
  --hairline: rgba(6, 11, 35, 0.2);
}
.cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--gap);
  align-items: center;
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
}
.cta h2 { font-size: var(--step-3); margin-bottom: 0.5rem; max-width: 20ch; }
.cta p { color: rgba(6, 11, 35, 0.75); max-width: 50ch; }
.cta__actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.cta__phone {
  font-family: var(--mono);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--navy);
  text-decoration: none;
}
.cta__phone:hover { text-decoration: underline; }
@media (max-width: 800px) {
  .cta__inner { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   14. Areas grid
   ---------------------------------------------------------------------- */

.areas { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr)); gap: 0; border-top: 1px solid var(--hairline); }
.area-tile {
  display: block;
  padding: 1.4rem 1.25rem 1.4rem 0;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  text-decoration: none;
  color: inherit;
  transition: background var(--t-fast);
}
.area-tile:hover { background: color-mix(in srgb, var(--fg-strong) 5%, transparent); }
.area-tile strong { display: block; font-size: var(--step-1); font-weight: 700; color: var(--fg-strong); margin-bottom: 0.15rem; letter-spacing: -0.015em; }
.area-tile span { font-size: 0.8rem; color: var(--fg-muted); font-family: var(--mono); line-height: 1.4; display: block; }
.area-tile:not(:first-child) { padding-left: 1.25rem; }

/* -------------------------------------------------------------------------
   15. Enquiry form
   ---------------------------------------------------------------------- */

.form { display: grid; gap: var(--s-3); }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-3); }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--fg-strong); letter-spacing: 0.01em; }
.field label .req { color: var(--lime-ink); }
[data-tone="dark"] .field label .req { color: var(--lime); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--fg-strong);
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: border-color var(--t-fast);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--lime-dim); }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-muted); }

/* Honeypot — visually and programmatically hidden from people, present for bots */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.form__note { font-size: 0.82rem; color: var(--fg-muted); }
.form__msg { padding: 0.9rem 1.1rem; border-radius: var(--radius); font-size: 0.92rem; border: 1px solid; }
.form__msg--ok { border-color: var(--lime-dim); background: color-mix(in srgb, var(--lime) 18%, transparent); color: var(--fg-strong); }
.form__msg--err { border-color: #D1495B; background: rgba(209, 73, 91, 0.1); color: var(--fg-strong); }
.field--error input, .field--error textarea, .field--error select { border-color: #D1495B; }

/* -------------------------------------------------------------------------
   16. Breadcrumbs
   ---------------------------------------------------------------------- */

.crumbs { font-size: 0.8rem; color: var(--fg-muted); padding-block: 1rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; }
.crumbs li::after { content: "/"; margin-left: 0.4rem; opacity: 0.5; }
.crumbs li:last-child::after { content: ""; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* -------------------------------------------------------------------------
   17. Page header (interior pages)
   ---------------------------------------------------------------------- */

.phead {
  background: var(--navy);
  color: var(--white);
  --fg-strong: var(--white);
  --fg: rgba(255,255,255,0.75);
  --fg-muted: rgba(255,255,255,0.5);
  --hairline: rgba(255,255,255,0.16);
  padding-block: clamp(2.25rem, 1.5rem + 3vw, 4rem);
}
.phead__inner { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: var(--gap); align-items: end; }
.phead h1 { font-size: var(--step-4); margin-bottom: 0; max-width: 18ch; }
.phead__lede { font-size: var(--step-1); color: rgba(255,255,255,0.76); max-width: 46ch; }
.phead__meta { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: var(--s-3); }
.phead__stat { border-left: 2px solid var(--lime); padding-left: 0.75rem; }
.phead__stat b { display: block; font-family: var(--mono); font-size: 1.1rem; font-weight: 500; color: var(--white); }
.phead__stat span { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }
@media (max-width: 860px) { .phead__inner { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   18. Two-column article layout with sticky aside
   ---------------------------------------------------------------------- */

.layout { display: grid; grid-template-columns: minmax(0, 1fr) 20rem; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: start; }
@media (max-width: 980px) { .layout { grid-template-columns: 1fr; } }
.aside { position: sticky; top: 6.5rem; display: grid; gap: var(--s-3); }
@media (max-width: 980px) { .aside { position: static; } }

.panel { border: 1px solid var(--card-border); background: var(--card-bg); border-radius: var(--radius); padding: var(--s-3); }
.panel--dark { background: var(--navy); border-color: var(--navy); color: rgba(255,255,255,0.76); --fg-strong: var(--white); --hairline: rgba(255,255,255,0.16); --fg-muted: rgba(255,255,255,0.5); }
.panel h3 { font-size: var(--step-0); margin-bottom: 0.6rem; }
.panel p { font-size: 0.9rem; margin-bottom: var(--s-2); }
.panel ul { list-style: none; margin: 0; padding: 0; }
.panel li { border-top: 1px solid var(--hairline); }
.panel li:first-child { border-top: 0; }
.panel li a { display: block; padding: 0.6rem 0; font-size: 0.9rem; text-decoration: none; font-weight: 500; }
.panel li a:hover { color: var(--lime-dim); }
.panel--dark li a:hover { color: var(--lime); }

/* -------------------------------------------------------------------------
   19. Footer
   ---------------------------------------------------------------------- */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.62);
  --fg-strong: var(--white);
  --hairline: rgba(255, 255, 255, 0.13);
  font-size: 0.92rem;
  padding-top: var(--s-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--gap);
  padding-bottom: var(--s-5);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 { color: var(--white); font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: var(--s-2); font-weight: 600; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.site-footer a { color: rgba(255, 255, 255, 0.62); text-decoration: none; }
.site-footer a:hover { color: var(--lime); }
.site-footer .brand img { height: 44px; margin-bottom: var(--s-2); }

.footer-contact { display: grid; gap: 0.6rem; }
.footer-contact a { display: inline-flex; align-items: flex-start; gap: 0.55rem; color: rgba(255,255,255,0.82); }
.footer-contact .wmh-icon { width: 17px; height: 17px; color: var(--lime); flex: none; margin-top: 3px; }
.footer-contact .mono { font-family: var(--mono); letter-spacing: -0.01em; }

.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-block: var(--s-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-4);
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: var(--s-3); }

.socials { display: flex; gap: 0.6rem; margin-top: var(--s-2); }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.socials a:hover { border-color: var(--lime); color: var(--lime); }
.socials .wmh-icon { width: 17px; height: 17px; }

/* -------------------------------------------------------------------------
   20. Sticky mobile call bar — the single biggest mobile conversion lever
   ---------------------------------------------------------------------- */

.callbar { display: none; }
@media (max-width: 760px) {
  .callbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    border-top: 1px solid rgba(255,255,255,0.14);
  }
  .callbar a {
    padding: 0.95rem 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
  }
  .callbar .wmh-icon { width: 1.05em; height: 1.05em; }
  .callbar__call { background: var(--lime); color: var(--navy); }
  .callbar__quote { background: var(--navy); color: var(--white); }
  body { padding-bottom: 3.4rem; }
}

/* -------------------------------------------------------------------------
   21. Utilities
   ---------------------------------------------------------------------- */

.u-mono { font-family: var(--mono); }
.u-muted { color: var(--fg-muted); }
.u-lede { font-size: var(--step-1); }
.u-mb0 { margin-bottom: 0; }
.u-mt4 { margin-top: var(--s-4); }
.u-center { text-align: center; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.wmh-icon { width: 1.25em; height: 1.25em; display: inline-block; vertical-align: middle; }

/* Film-grain paper texture at very low opacity — fixed, never on a scroller */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (max-width: 760px) { body::after { display: none; } }
