/* Ecoweald — Wealden vernacular fabric.
   Clay peg-tile courses, limewash render, tarred weatherboard.
   Direction contract lives in index.html (seed 012a373c). */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/bricolage-grotesque-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("fonts/public-sans-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --limewash: #FAF6EF;
  --render: #F0E7D9;
  --clay-100: #E8B48E;
  --clay-200: #D98F5C;
  --clay-300: #C9713D;
  --clay-400: #B4552B;
  --clay-500: #9E4322;
  --clay-600: #84351C;
  --clay-700: #652818;
  --tar: #221E1A;
  --tar-2: #2C2723;
  --tar-board: #35302A;
  --cowl: #FBFAF7;
  --ink: #2B2620;
  --ink-soft: #675B4D;
  --ink-on-dark: #CFC2B0;
  --oak: #8A6B4A;
  --line: #DDD2C0;
  --epc-a: #008054;
  --epc-b: #19B459;
  --epc-c: #8DCE46;
  --epc-d: #FFD500;
  --epc-e: #FCAA65;
  --epc-f: #EF8023;
  --epc-g: #E9153B;
  --font-display: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --font-text: "Public Sans", "Segoe UI", sans-serif;
  --tile-radius: 3px 3px 12px 12px;
  --shadow-1: 0 2px 6px rgba(58, 28, 12, 0.22);
  --shadow-2: 0 6px 18px rgba(58, 28, 12, 0.18);
  --wrap: 1120px;
}

/* ---------- reset & ground ---------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--limewash);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  caret-color: var(--clay-500);
  accent-color: var(--clay-500);
  scrollbar-color: var(--clay-300) var(--render);
}

::selection { background: var(--clay-200); color: var(--tar); }

body::-webkit-scrollbar { width: 12px; }
body::-webkit-scrollbar-track { background: var(--render); }
body::-webkit-scrollbar-thumb {
  background: var(--clay-300);
  border-radius: 6px;
  border: 2px solid var(--render);
}

:focus-visible {
  outline: 2px solid var(--clay-500);
  outline-offset: 2px;
  border-radius: 2px;
}
.on-dark :focus-visible, .band-dark :focus-visible { outline-color: var(--cowl); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 99;
  background: var(--cowl);
  color: var(--ink);
  padding: 0.6rem 1rem;
  border-radius: var(--tile-radius);
}
.skip-link:focus { left: 12px; top: 12px; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.25; }

p { margin: 0 0 1em; max-width: 68ch; }
.lede { font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--ink); max-width: 56ch; }

a {
  color: var(--clay-600);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-color: var(--clay-300);
  transition: color 120ms ease-out, text-decoration-color 120ms ease-out;
}
a:hover { color: var(--clay-700); text-decoration-color: var(--clay-600); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }

/* ---------- buttons: tiles ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  padding: 0.78rem 1.35rem;
  border-radius: var(--tile-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 140ms cubic-bezier(0.2, 0.8, 0.3, 1), background-color 140ms ease-out, box-shadow 140ms ease-out;
}
.btn svg { flex: none; }
.btn-primary {
  background: var(--clay-600);
  color: var(--cowl);
  box-shadow: var(--shadow-1);
}
.btn-primary:hover { background: var(--clay-700); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--limewash); transform: translateY(-2px); }
.band-dark .btn-ghost { color: var(--cowl); box-shadow: inset 0 0 0 2px var(--cowl); }
.band-dark .btn-ghost:hover { background: var(--cowl); color: var(--tar); }
.btn-cowl { background: var(--cowl); color: var(--clay-700); box-shadow: var(--shadow-1); }
.btn-cowl:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-2); }

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

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    repeating-linear-gradient(180deg,
      var(--tar) 0px, var(--tar) 23px,
      rgba(0, 0, 0, 0.3) 23px, rgba(0, 0, 0, 0.3) 24px,
      rgba(255, 255, 255, 0.02) 24px, rgba(255, 255, 255, 0.02) 25px),
    var(--tar);
  border-bottom: 1px solid var(--tar-board);
}
.site-head :focus-visible { outline-color: var(--cowl); }
.site-head .wrap {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--cowl);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--clay-100); }
.brand svg { display: block; }

.site-nav { display: flex; gap: 1.3rem; margin-left: auto; align-items: center; }
.site-nav a {
  color: var(--ink-on-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 120ms ease-out, color 120ms ease-out;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--cowl); border-bottom-color: var(--clay-300); }

.head-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--cowl);
  text-decoration: none;
  white-space: nowrap;
  font-feature-settings: "tnum";
}
.head-phone:hover { color: var(--clay-100); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--cowl);
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--tar);
    border-bottom: 1px solid var(--tar-board);
    padding: 0.6rem clamp(1rem, 4vw, 2rem) 1rem;
    box-shadow: var(--shadow-2);
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: 0.7rem 0; font-size: 1.1rem; border-bottom: 1px solid var(--tar-board); }
  .site-nav .btn { margin-top: 0.8rem; width: auto; }
  .nav-toggle { display: block; }
  .site-head .head-phone { margin-left: auto; }
  .nav-toggle { margin-left: 0; }
  .site-head .head-quote { display: none; }
}

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

.hero { overflow: hidden; }
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-top: clamp(2.2rem, 6vw, 4.5rem);
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
}
.hero-copy .lede { margin-bottom: 1.6rem; }
.hero-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.hero-facts li { display: flex; gap: 0.6rem; align-items: baseline; font-weight: 500; }
.hero-facts svg { flex: none; transform: translateY(2px); }
.hero-facts strong { font-family: var(--font-display); font-weight: 700; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 0.6rem; }
.hero-note { font-size: 0.92rem; color: var(--ink-soft); max-width: 40ch; }

.hero-figure { min-width: 0; }
.hero-figure svg { display: block; width: 100%; height: auto; }
.hero-figure figcaption {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  text-align: right;
}

.inspection-list { display: none; }

@media (max-width: 820px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-figure { order: 2; }
  .svg-annotations { display: none; }
  .inspection-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.2rem;
    list-style: none;
    padding: 0.9rem 0 0;
    margin: 0;
    font-size: 0.92rem;
  }
  .inspection-list li { display: flex; gap: 0.5rem; align-items: baseline; color: var(--ink-soft); }
  .inspection-list li::before {
    content: "";
    flex: none;
    width: 9px;
    height: 9px;
    border-radius: 2px 2px 4px 4px;
    background: var(--clay-400);
    transform: translateY(0.5px);
  }
}

/* ---------- accreditation strip ---------- */

.cred-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--render); }
.cred-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem 1.9rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cred {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  white-space: nowrap;
}
.cred svg { color: var(--clay-500); }
.cred small { font-family: var(--font-text); font-weight: 500; color: var(--ink-soft); font-size: 0.85rem; }

/* ---------- sections ---------- */

.section { padding: clamp(3rem, 8vw, 5.5rem) 0; }
.section-render { background: var(--render); }
.section h2 { max-width: 22ch; }
.section-intro { margin-bottom: clamp(1.6rem, 3vw, 2.6rem); }
.section-intro p { color: var(--ink-soft); }

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

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
  align-items: stretch;
}
.service-panel {
  border-radius: 4px 4px 22px 22px;
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
.service-panel h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.service-panel > p { margin-bottom: 1.1rem; }
.service-epc { background: linear-gradient(160deg, var(--clay-500), var(--clay-600) 70%); color: var(--cowl); }
.service-retrofit { background: linear-gradient(160deg, var(--tar-2), var(--tar) 70%); color: var(--cowl); }
.service-panel .tile-edge {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 14px;
  opacity: 0.5;
}
.service-who {
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}
.service-epc .service-who, .service-epc .service-list li { color: #F6DCC8; }
.service-retrofit .service-who, .service-retrofit .service-list li { color: var(--ink-on-dark); }
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-list li { display: flex; gap: 0.6rem; align-items: baseline; }
.service-list svg { flex: none; transform: translateY(2px); color: var(--cowl); }
.service-cta { margin-top: auto; display: flex; align-items: center; flex-wrap: wrap; gap: 0.9rem 1.3rem; }
.service-cta .service-price { flex-basis: 100%; }
.service-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--cowl);
  font-feature-settings: "tnum";
}
.service-price small { display: block; font-family: var(--font-text); font-weight: 500; font-size: 0.82rem; opacity: 0.85; }
.service-more { font-size: 0.95rem; }
.service-epc .service-more { color: #F6DCC8; text-decoration-color: #F6DCC8; }
.service-epc .service-more:hover { color: var(--cowl); }
.service-retrofit .service-more { color: var(--ink-on-dark); text-decoration-color: var(--ink-on-dark); }
.service-retrofit .service-more:hover { color: var(--cowl); }

@media (max-width: 820px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- how it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 1.3rem; }
.step::before {
  /* a course of hanging fishscale tiles, not a rule */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 9px;
  background-image: radial-gradient(7px 8px at 7px 1px, var(--clay-400) 96%, transparent);
  background-size: 14px 9px;
  background-repeat: repeat-x;
}
.step h3 { display: flex; align-items: baseline; gap: 0.6rem; }
.step h3 span {
  font-feature-settings: "tnum";
  color: var(--clay-500);
}
.step p { color: var(--ink-soft); font-size: 0.98rem; }
.step p strong { color: var(--ink); }

@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- EPC scale ---------- */

.epc-scale-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.epc-chart { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.epc-row { display: flex; align-items: center; gap: 10px; min-height: 40px; }
.epc-band {
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 40px;
  border-radius: 2px 2px 8px 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
  box-shadow: var(--shadow-1);
}
.epc-band small { font-family: var(--font-text); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.02em; margin-top: 2px; }
.epc-tiles { display: flex; gap: 4px; height: 26px; }
.epc-tiles i {
  width: 20px;
  border-radius: 2px 2px 7px 7px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.12);
}
.epc-note {
  margin-left: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}
.epc-copy p { color: var(--ink-soft); }
.epc-copy p strong { color: var(--ink); }

.epc-animate .epc-tiles i {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 320ms cubic-bezier(0.2, 0.8, 0.3, 1), transform 320ms cubic-bezier(0.2, 0.8, 0.3, 1);
}
.epc-animate.epc-in .epc-tiles i { opacity: 1; transform: none; }
.epc-animate.epc-in .epc-row:nth-child(1) i { transition-delay: 0ms; }
.epc-animate.epc-in .epc-row:nth-child(2) i { transition-delay: 60ms; }
.epc-animate.epc-in .epc-row:nth-child(3) i { transition-delay: 120ms; }
.epc-animate.epc-in .epc-row:nth-child(4) i { transition-delay: 180ms; }
.epc-animate.epc-in .epc-row:nth-child(5) i { transition-delay: 240ms; }
.epc-animate.epc-in .epc-row:nth-child(6) i { transition-delay: 300ms; }
.epc-animate.epc-in .epc-row:nth-child(7) i { transition-delay: 360ms; }

@media (max-width: 820px) {
  .epc-scale-grid { grid-template-columns: 1fr; }
  .epc-row { flex-wrap: wrap; row-gap: 2px; }
  .epc-note { flex-basis: 100%; margin-left: 68px; white-space: normal; font-size: 0.82rem; }
}

/* ---------- coverage ---------- */

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.coverage-post svg { display: block; width: 100%; max-width: 300px; height: auto; margin: 0 auto; }
.coverage-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.coverage-columns h3 { color: var(--clay-600); font-size: 1.05rem; letter-spacing: 0.01em; }
.coverage-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  gap: 1.2rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.coverage-columns li { padding: 0.22rem 0; break-inside: avoid; }
.coverage-note { margin-top: 1.4rem; color: var(--ink-soft); font-size: 0.98rem; }

@media (max-width: 820px) {
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-post { order: 2; }
  .coverage-columns ul { columns: 1; }
}
@media (max-width: 520px) {
  .coverage-columns { grid-template-columns: 1fr; }
}

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

.faq-list { max-width: 780px; }
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  transition: color 120ms ease-out;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--clay-600); }
.faq-list summary .faq-mark {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 2px 2px 9px 9px;
  background: var(--render);
  display: grid;
  place-items: center;
  color: var(--clay-600);
  transition: background-color 160ms ease-out, color 160ms ease-out;
}
.faq-list details[open] summary .faq-mark { background: var(--clay-600); color: var(--cowl); }
.faq-list summary .faq-mark svg { transition: transform 200ms cubic-bezier(0.2, 0.8, 0.3, 1); }
.faq-list details[open] summary .faq-mark svg { transform: rotate(45deg); }
.faq-list .faq-body { padding: 0 0 1.2rem; color: var(--ink-soft); }
.faq-list .faq-body p { margin-bottom: 0.7em; }
.faq-list .faq-body p:last-child { margin-bottom: 0; }
.faq-list .faq-body strong { color: var(--ink); }

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

.band-dark {
  background:
    repeating-linear-gradient(180deg,
      var(--tar) 0px, var(--tar) 34px,
      rgba(0, 0, 0, 0.28) 34px, rgba(0, 0, 0, 0.28) 35px,
      rgba(255, 255, 255, 0.018) 35px, rgba(255, 255, 255, 0.018) 36px),
    var(--tar);
  color: var(--cowl);
  position: relative;
}
.band-dark::before {
  /* hanging tile course over the top edge of the tarred band */
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 12px;
  background-image: radial-gradient(9px 10px at 9px 1px, var(--clay-500) 96%, transparent);
  background-size: 18px 12px;
  background-repeat: repeat-x;
  pointer-events: none;
}
.band-dark h2 { color: var(--cowl); }
.band-dark p { color: var(--ink-on-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  color: var(--cowl);
  text-decoration: none;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
  margin: 0.4rem 0 1rem;
}
.contact-phone:hover { color: var(--clay-100); }
.contact-hours { font-size: 0.95rem; }

.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.quote-form .field-full { grid-column: 1 / -1; }
.quote-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: var(--cowl);
}
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  background: rgba(251, 250, 247, 0.07);
  border: 1px solid rgba(251, 250, 247, 0.28);
  border-radius: 2px 2px 9px 9px;
  color: var(--cowl);
  font: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.8rem;
  transition: border-color 120ms ease-out, background-color 120ms ease-out;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #9C8F7D; opacity: 1; }
.quote-form input:hover, .quote-form select:hover, .quote-form textarea:hover { border-color: rgba(251, 250, 247, 0.5); }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: 2px solid var(--clay-200);
  outline-offset: 1px;
  border-color: transparent;
}
.quote-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23FBFAF7' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.8rem center; padding-right: 2.2rem; }
.quote-form select option { color: var(--ink); background: var(--limewash); }
.quote-form textarea { min-height: 96px; resize: vertical; }
.quote-form .form-note { grid-column: 1 / -1; font-size: 0.88rem; color: var(--ink-on-dark); margin: 0; }
.quote-form .btn { justify-self: start; }
.form-error { color: var(--clay-100); font-size: 0.88rem; font-weight: 600; display: none; margin: 0; }
.form-error.show { display: block; }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
  .quote-form { grid-template-columns: 1fr; }
}

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

.site-foot {
  background:
    repeating-linear-gradient(180deg,
      var(--tar) 0px, var(--tar) 34px,
      rgba(0, 0, 0, 0.28) 34px, rgba(0, 0, 0, 0.28) 35px,
      rgba(255, 255, 255, 0.018) 35px, rgba(255, 255, 255, 0.018) 36px),
    var(--tar);
  color: var(--ink-on-dark);
  border-top: 1px solid var(--tar-board);
  font-size: 0.92rem;
}
.site-foot .wrap { padding-top: 2.4rem; padding-bottom: 2.4rem; }
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-foot .brand { color: var(--cowl); margin-bottom: 0.6rem; }
.site-foot h3 { color: var(--cowl); font-size: 0.95rem; margin-bottom: 0.7rem; }
.site-foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.site-foot a { color: var(--ink-on-dark); text-decoration-color: rgba(207, 194, 176, 0.4); }
.site-foot a:hover { color: var(--cowl); text-decoration-color: var(--cowl); }
.foot-legal {
  border-top: 1px solid var(--tar-board);
  padding-top: 1.3rem;
  font-size: 0.84rem;
  color: #9C8F7D;
  max-width: none;
}

@media (max-width: 820px) {
  .foot-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}

/* ---------- service page hero ---------- */

.page-hero { padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 2.5rem); }
.page-hero .lede { margin-bottom: 1.4rem; }
.page-hero .hero-ctas { margin-bottom: 0; }

.fact-band { background: var(--render); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact-band .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 3rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.fact-band dl { display: flex; gap: 0.5rem; margin: 0; align-items: baseline; }
.fact-band dt { font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; }
.fact-band dd { margin: 0; font-family: var(--font-display); font-weight: 700; font-feature-settings: "tnum"; }

.prose { max-width: 70ch; }
.prose h3 { margin-top: 2rem; }
.prose ul { padding-left: 1.2rem; color: var(--ink-soft); }
.prose ul li { margin-bottom: 0.45rem; }
.prose ul li::marker { color: var(--clay-400); }
.prose ul strong { color: var(--ink); }

/* ---------- motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
