/* ==========================================================================
   JRM Electrical Contracting, site stylesheet (2026 redesign)
   Direction: editorial trade docket. Warm paper, brand black, fixed gold.
   Built from src/css/*.css by src/build.mjs. Edit the sources, not this file.
   ========================================================================== */

:root {
  /* Brand core, fixed (see brand.html) */
  --ink: #1B1A1B;
  --gold: #A67939;
  --gold-bright: #D4B274;
  --gold-deep: #7F5C2B;
  --white: #FFFFFF;

  /* Light surfaces */
  --paper: #F3EFE8;
  --paper-2: #EAE4D9;
  --paper-3: #DFD7C9;
  --card: #FBF9F5;
  --fg: #1B1A1B;      /* strongest foreground: headings, outlines */
  --text: #1B1A1B;
  --text-2: #4A4644;   /* 8.4:1 on paper */
  --muted: #6B6663;    /* 5.2:1 on paper */
  --gold-text: #7F5C2B; /* small gold text on paper, 5.6:1 */
  --rule: rgba(27, 26, 27, 0.14);
  --rule-strong: rgba(27, 26, 27, 0.85);

  /* Dark surfaces */
  --ink-2: #242223;
  --ink-3: #2E2C2D;
  --on-ink: #F2EFEC;
  --on-ink-2: #A7A3A1;
  --rule-ink: rgba(242, 239, 236, 0.14);

  --ok: #2F7A4A;
  --err: #A23B2F;

  --font-head: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --maxw: 1260px;
  --gutter: clamp(20px, 4.5vw, 56px);
  --sec: clamp(72px, 6vw + 40px, 150px);
  --radius: 3px;

  --t-display: clamp(2.9rem, 1.1rem + 6.4vw, 7rem);
  --t-h1: clamp(2.5rem, 1.2rem + 4.6vw, 5.4rem);
  --t-h2: clamp(2.1rem, 1.1rem + 3.3vw, 4.2rem);
  --t-h3: clamp(1.3rem, 1.05rem + 0.8vw, 1.75rem);
  --t-lead: clamp(1.06rem, 0.98rem + 0.35vw, 1.28rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 380ms;
  --shadow-card: 0 1px 0 rgba(27,26,27,.06), 0 30px 60px -30px rgba(27,26,27,.45);
}

@font-face { font-family: "Poppins"; font-weight: 400; font-display: swap; src: url("brand/assets/fonts/Poppins-Regular.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 500; font-display: swap; src: url("brand/assets/fonts/Poppins-Medium.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 600; font-display: swap; src: url("brand/assets/fonts/Poppins-SemiBold.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 700; font-display: swap; src: url("brand/assets/fonts/Poppins-Bold.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 800; font-display: swap; src: url("brand/assets/fonts/Poppins-ExtraBold.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 900; font-display: swap; src: url("brand/assets/fonts/Poppins-Black.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Mono"; font-weight: 400; font-display: swap; src: url("brand/assets/fonts/IBMPlexMono-Regular.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Mono"; font-weight: 500; font-display: swap; src: url("brand/assets/fonts/IBMPlexMono-Medium.woff2") format("woff2"); }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.09 0 0 0 0 0.08 0 0 0 .09 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); margin: 0; line-height: 1.02; letter-spacing: -0.03em; font-weight: 900; }
h1 em, h2 em, h3 em { font-style: normal; color: var(--gold); }
b, strong { font-weight: 600; }
::selection { background: var(--gold-bright); color: var(--ink); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.skip { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--ink); color: var(--on-ink); padding: 12px 18px; }
.skip:focus { left: 12px; top: 12px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.sec { padding: var(--sec) 0; position: relative; }
.sec--tint { background: var(--paper-2); }
.sec--ink { background: var(--ink); color: var(--on-ink); }
.sec--tight { padding: calc(var(--sec) * .6) 0; }

/* Mono label, the site's "spec" voice */
.mono, .eyebrow, .label {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-text); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); }
.sec--ink .eyebrow, .on-ink .eyebrow { color: var(--gold-bright); }

.lead { font-size: var(--t-lead); line-height: 1.6; color: var(--text-2); max-width: 58ch; }
.sec--ink .lead { color: var(--on-ink-2); }
.muted { color: var(--muted); }
.fine { font-size: .84rem; color: var(--muted); }

.h2 { font-size: var(--t-h2); }
.h3 { font-size: var(--t-h3); letter-spacing: -0.02em; font-weight: 800; }

/* Section heading row: number rule + heading + aside copy */
.head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: 28px 64px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.head__num {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-text);
}
.head__num::after { content: ""; flex: 1; height: 1px; background: var(--rule-strong); }
.sec--ink .head__num { color: var(--gold-bright); }
.sec--ink .head__num::after { background: var(--rule-ink); }
.head p { margin: 0; color: var(--text-2); max-width: 44ch; }
.sec--ink .head p { color: var(--on-ink-2); }

@media (max-width: 860px) {
  .head { grid-template-columns: 1fr; align-items: start; }
}

/* Reveal on scroll (JS adds .is-in). No-JS and reduced motion show content. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}


/* ==========================================================================
   Chrome: top bar, header/nav, buttons, footer, mobile action bar
   ========================================================================== */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-mono); font-size: .82rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 15px 26px; min-height: 48px;
  border-radius: var(--radius); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--ink); border-color: var(--ink); color: var(--gold-bright); transform: translateY(-2px); }
.btn-gold:active { transform: translateY(0); }
.btn-outline { background: transparent; color: var(--fg); border-color: var(--rule-strong); }
.btn-outline:hover { border-color: var(--fg); background: var(--fg); color: var(--paper); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--on-ink); border-color: var(--ink); }
.btn-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-ghost-ink { background: transparent; color: var(--on-ink); border-color: var(--rule-ink); }
.btn-ghost-ink:hover { border-color: var(--gold-bright); color: var(--gold-bright); transform: translateY(-2px); }
.btn-lg { padding: 18px 32px; font-size: .86rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ---------- Top bar ---------- */
.topbar { background: var(--ink); color: var(--on-ink-2); }
.topbar__in {
  max-width: var(--maxw); margin: 0 auto; padding: 9px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase;
}
.topbar__lic { display: flex; align-items: center; gap: 10px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.topbar__lic svg { width: 13px; height: 13px; flex: none; color: var(--gold-bright); }
.topbar a { text-decoration: none; }
.topbar__phone { color: var(--gold-bright); font-weight: 600; flex: none; }
.topbar__phone:hover { color: var(--on-ink); }
@media (max-width: 640px) { .topbar__lic span:last-child { display: none; } .topbar__lic::after { content: "Licensed & insured"; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: var(--paper); border-bottom: 1px solid var(--rule);
  transition: box-shadow var(--dur) var(--ease);
}
.is-scrolled .site-header { box-shadow: 0 8px 24px -18px rgba(27,26,27,.35); }
.site-header__in {
  max-width: var(--maxw); margin: 0 auto; padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: padding var(--dur) var(--ease);
}
.is-scrolled .site-header__in { padding-top: 10px; padding-bottom: 10px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); flex: none; }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__lockup { display: flex; flex-direction: column; line-height: 1.05; }
.brand__lockup b { font-family: var(--font-head); font-weight: 900; font-size: 1.15rem; letter-spacing: -.02em; }
.brand__lockup span { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  position: relative; text-decoration: none; color: var(--text-2);
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 2px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--gold);
  transition: right var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--text); }

.header__cta { display: flex; align-items: center; gap: 14px; flex: none; }
.header__phone {
  display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text);
  font-family: var(--font-mono); font-size: .84rem; font-weight: 500;
}
.header__phone svg { width: 17px; height: 17px; color: var(--gold-text); }
.header__phone:hover { color: var(--gold-text); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; border: 1px solid var(--rule-strong); border-radius: var(--radius);
  background: transparent; cursor: pointer; padding: 0;
}
.nav-toggle .bar { width: 20px; height: 2px; margin: 0 auto; background: var(--text); transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 65px 0 auto 0; z-index: 89;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--rule);
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height var(--dur) var(--ease), visibility 0s linear var(--dur);
  }
  .nav-links.open { max-height: 70vh; visibility: visible; transition: max-height var(--dur) var(--ease); overflow-y: auto; }
  .nav-links a { padding: 16px var(--gutter); border-bottom: 1px solid var(--rule); font-size: .9rem; }
  .nav-links a::after { display: none; }
  .header__phone span { display: none; }
  .nav-toggle { display: flex; }
  .header__cta .btn-gold { display: none; }
}
@media (min-width: 901px) {
  .nav-toggle { display: none; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-ink-2); }
.footer__head { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 6vw, 96px) var(--gutter) 24px; }
.footer__phone {
  display: inline-block; text-decoration: none;
  font-family: var(--font-head); font-weight: 900; letter-spacing: -.03em;
  font-size: clamp(2.4rem, 1.2rem + 5.6vw, 5.2rem);
  color: var(--on-ink); line-height: .96;
  transition: color var(--dur) var(--ease);
}
.footer__phone:hover { color: var(--gold-bright); }
.footer__phone-label { display: block; margin-top: 14px; }

.footer__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 24px var(--gutter) 0;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px;
  border-top: 1px solid var(--rule-ink); padding-top: 48px;
}
.footer__about { display: flex; flex-direction: column; gap: 16px; }
.footer__about .brand__mark { width: 38px; height: 38px; }
.footer__about p { margin: 0; max-width: 34ch; color: var(--on-ink-2); }
.footer__lic { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; line-height: 1.8; color: var(--on-ink-2); }
.footer__lic b { color: var(--on-ink); font-weight: 500; }

.footer__col h5 {
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-bright); margin: 0 0 16px; font-weight: 500;
}
.footer__col ul { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer__col ul:last-child { margin-bottom: 0; }
.footer__col a { text-decoration: none; color: var(--on-ink-2); transition: color var(--dur) var(--ease); }
.footer__col a:hover { color: var(--gold-bright); }

.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__contact a { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--on-ink-2); transition: color var(--dur) var(--ease); }
.footer__contact a svg { width: 17px; height: 17px; flex: none; color: var(--gold-bright); }
.footer__contact a:hover { color: var(--on-ink); }
.footer__hours { font-size: .88rem; color: var(--on-ink-2); margin: 0; }

.footer__bottom {
  max-width: var(--maxw); margin: 0 auto; padding: 26px var(--gutter) 32px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  border-top: 1px solid var(--rule-ink); margin-top: 40px;
  font-size: .8rem; color: var(--on-ink-2);
}
.footer__bottom a { color: var(--on-ink-2); text-decoration: underline; text-underline-offset: 3px; }
.footer__bottom a:hover { color: var(--gold-bright); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__about { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
}

/* ---------- Mobile action bar ---------- */
.mobile-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: var(--ink); border-top: 1px solid var(--rule-ink);
  padding: 10px var(--gutter);
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.mobile-bar__in { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: var(--maxw); margin: 0 auto; }
.mobile-bar .btn { width: 100%; }
@media (max-width: 560px) {
  .mobile-bar { display: block; }
  html { scroll-padding-top: 76px; }
}

.brand__lockup--light { color: var(--on-ink); }

/* Narrow phones: grids must never grow past the viewport */
.footer__grid > * { min-width: 0; }
.site-footer a[href^="mailto"] { overflow-wrap: anywhere; min-width: 0; }
@media (max-width: 380px) {
  .header__phone { display: none; } /* the fixed mobile bar carries the call button */
  .brand__lockup span { letter-spacing: .06em; }
}
/* Laptop widths: tighten the nav before it collides with the CTA */
@media (min-width: 901px) and (max-width: 1240px) {
  .nav-links { gap: 20px; }
  .nav-links a { letter-spacing: .03em; }
  .header__phone span { display: none; }
}


/* ==========================================================================
   Homepage sections
   ========================================================================== */

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 5vw, 88px) 0 clamp(64px, 6vw, 110px); overflow: clip; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__title { font-size: var(--t-display); margin: 18px 0 22px; }
.hero__lead { margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__ticks { display: flex; flex-wrap: wrap; gap: 12px 26px; list-style: none; margin: 0; padding: 0; }
.hero__ticks li { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; color: var(--text-2); }
.hero__ticks svg { width: 16px; height: 16px; color: var(--gold-text); flex: none; }

/* Job docket card */
.docket-wrap { display: flex; justify-content: center; }
.docket {
  position: relative; width: 100%; max-width: 400px;
  background: var(--ink); color: var(--on-ink); border-radius: var(--radius);
  padding: 34px 30px 30px; transform: rotate(2.2deg);
  box-shadow: var(--shadow-card);
}
.docket::before, .docket::after {
  content: ""; position: absolute; left: -11px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--paper);
}
.docket::before { top: 68px; } .docket::after { bottom: 68px; }
.docket__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px dashed var(--rule-ink); }
.docket__head b { font-family: var(--font-head); font-weight: 900; font-size: 1.1rem; letter-spacing: -.02em; }
.docket__head span { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-bright); }
.docket__stamp { width: 58px; height: 58px; flex: none; color: var(--gold-bright); }
.docket__rows { display: flex; flex-direction: column; gap: 13px; margin-bottom: 22px; }
.docket__row { display: flex; justify-content: space-between; gap: 14px; font-size: .87rem; }
.docket__row dt { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--on-ink-2); margin: 0; }
.docket__row dd { margin: 0; text-align: right; font-weight: 600; color: var(--on-ink); }
.docket__cta { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px dashed var(--rule-ink); }
.docket__cta .btn { width: 100%; }
.docket__cta small { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; color: var(--on-ink-2); text-align: center; }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .docket-wrap { order: -1; margin-bottom: 8px; }
  .docket { transform: rotate(1deg); max-width: 440px; }
}

/* ---------- Trust strip ---------- */
.trust { background: var(--ink); color: var(--on-ink); padding: clamp(36px, 4vw, 56px) 0; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.trust__item { display: flex; flex-direction: column; gap: 8px; padding-left: 18px; border-left: 2px solid var(--gold); }
.trust__item b { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.trust__item span { font-size: .84rem; color: var(--on-ink-2); }
@media (max-width: 860px) { .trust__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .trust__grid { grid-template-columns: 1fr; } }

/* ---------- Services index ---------- */
.svc-row {
  display: grid; grid-template-columns: 100px 1.1fr 1.5fr auto;
  align-items: center; gap: 28px;
  padding: 30px 24px; border-top: 1px solid var(--rule);
  text-decoration: none; color: var(--text);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), padding var(--dur) var(--ease);
  position: relative;
}
.services > a.svc-row:last-child { border-bottom: 1px solid var(--rule); }
.svc-row__num { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .08em; color: var(--gold-text); }
.svc-row__name { display: flex; flex-direction: column; gap: 4px; }
.svc-row__name b { font-family: var(--font-head); font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem); font-weight: 800; letter-spacing: -.02em; }
.svc-row__name span { font-family: var(--font-mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.svc-row__points { display: flex; flex-wrap: wrap; gap: 8px 18px; list-style: none; margin: 0; padding: 0; font-size: .86rem; color: var(--text-2); }
.svc-row__points li { position: relative; padding-left: 15px; }
.svc-row__points li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; background: var(--gold); }
.svc-row__arrow { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--rule-strong); display: flex; align-items: center; justify-content: center; flex: none; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.svc-row__arrow svg { width: 18px; height: 18px; }
.svc-row:hover { background: var(--ink); color: var(--on-ink); padding-left: 32px; padding-right: 16px; }
.svc-row:hover .svc-row__num { color: var(--gold-bright); }
.svc-row:hover .svc-row__name span { color: var(--on-ink-2); }
.svc-row:hover .svc-row__points { color: var(--on-ink-2); }
.svc-row:hover .svc-row__points li::before { background: var(--gold-bright); }
.svc-row:hover .svc-row__arrow { background: var(--gold); border-color: var(--gold); transform: rotate(45deg); }
.svc-row:focus-visible { background: var(--paper-2); }
@media (max-width: 860px) {
  .svc-row { grid-template-columns: 1fr auto; grid-template-areas: "num arrow" "name name" "points points"; row-gap: 14px; padding: 24px 18px; }
  .svc-row__num { grid-area: num; }
  .svc-row__arrow { grid-area: arrow; }
  .svc-row__name { grid-area: name; }
  .svc-row__points { grid-area: points; }
  .svc-row:hover { padding-left: 18px; padding-right: 18px; }
}

/* ---------- Energy band (solar+battery feature) ---------- */
.energy { position: relative; padding: var(--sec) 0; }
.energy__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.energy__list { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 30px; }
.energy__item { display: flex; align-items: baseline; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--rule-ink); }
.energy__item span { flex: none; color: var(--gold-bright); }
.energy__item b { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; }
.energy__fig { border: 1px solid var(--rule-ink); border-radius: var(--radius); padding: 20px; background: var(--ink-2); }
.energy__fig-h { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: var(--on-ink-2); margin-bottom: 16px; }
.energy__fig-h b { color: var(--gold-bright); }
.energy__cap { margin: 14px 0 0; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .04em; color: var(--on-ink-2); text-align: center; }
.energy__wire { stroke-dasharray: 5 5; animation: energy-flow 2.6s linear infinite; }
@media (prefers-reduced-motion: reduce) { .energy__wire { animation: none; } }
@keyframes energy-flow { to { stroke-dashoffset: -40; } }
@media (max-width: 860px) { .energy__grid { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process { position: relative; }
.process__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process__list::before { content: ""; position: absolute; top: 21px; left: 5%; right: 5%; height: 1px; background: var(--rule-strong); z-index: 0; }
.process__step { position: relative; z-index: 1; padding-right: 24px; }
.process__node {
  width: 42px; height: 42px; border-radius: 50%; background: var(--paper);
  border: 2px solid var(--fg); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 500; font-size: .95rem; margin-bottom: 22px;
}
.process__step h4 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -.01em; }
.process__step p { margin: 0; color: var(--text-2); font-size: .92rem; }
@media (max-width: 760px) {
  .process__list { grid-template-columns: 1fr; gap: 32px; }
  .process__list::before { display: none; }
}

/* ---------- Areas ---------- */
/* ---------- Reviews ---------- */
.review-feature { border-top: 3px solid var(--fg); padding-top: 36px; margin-bottom: 48px; }
.review-feature__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 18px; }
.review-feature blockquote { margin: 0 0 20px; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.3rem, 1rem + 1.4vw, 2.1rem); letter-spacing: -.01em; line-height: 1.28; max-width: 42ch; }
.review-feature cite { font-style: normal; font-family: var(--font-mono); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); }
.review { background: var(--paper); padding: 26px 24px; display: flex; flex-direction: column; gap: 12px; }
.review__stars { color: var(--gold); font-size: .82rem; letter-spacing: 1px; }
.review p { margin: 0; font-size: .92rem; color: var(--text-2); flex: 1; }
.review cite { font-style: normal; font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.reviews-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
@media (max-width: 860px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .review-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.faq-aside { position: sticky; top: 100px; }
.faq-list { display: flex; flex-direction: column; }
.faq-list details { border-top: 1px solid var(--rule); padding: 22px 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--rule); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  cursor: pointer; list-style: none; font-family: var(--font-head); font-weight: 700; font-size: 1.06rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .icon {
  flex: none; width: 30px; height: 30px; border: 1.5px solid var(--rule-strong); border-radius: 50%;
  position: relative; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.faq-list summary .icon::before, .faq-list summary .icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--ink);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.faq-list summary .icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-list summary .icon::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-list details[open] summary .icon { background: var(--fg); border-color: var(--fg); }
.faq-list details[open] summary .icon::before, .faq-list details[open] summary .icon::after { background: var(--paper); }
.faq-list details[open] summary .icon::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.faq-list .answer { margin-top: 14px; max-width: 62ch; color: var(--text-2); }
@media (max-width: 860px) { .faq-layout { grid-template-columns: 1fr; } .faq-aside { position: static; } }

/* ---------- Quote section ---------- */
.quote-sec { background: var(--ink); color: var(--on-ink); }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.quote-copy h2 { margin-top: 14px; }
.quote-copy .lead { margin-top: 20px; }
.quote-copy a { color: var(--gold-bright); }
.quote-panel { background: var(--card); color: var(--text); border-radius: var(--radius); padding: clamp(24px, 3vw, 40px); box-shadow: var(--shadow-card); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-2); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .96rem; color: var(--text);
  background: var(--paper); border: 1.5px solid var(--rule-strong); border-radius: var(--radius);
  padding: 13px 14px; min-height: 46px; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field textarea { min-height: 104px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--fg); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.field input:invalid:not(:placeholder-shown), .field select:invalid:not([value=""]):not(:focus) { border-color: var(--err); }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: .84rem; color: var(--text-2); cursor: pointer; }
.consent input { width: 18px; height: 18px; flex: none; margin-top: 2px; accent-color: var(--gold); }
.form-status { min-height: 1.2em; margin: 16px 0 0; font-family: var(--font-mono); font-size: .82rem; display: none; }
.form-status.show { display: block; }
.form-status.show:not(.err) { color: var(--ok); }
.form-status.err { color: var(--err); }
.form-note { margin: 14px 0 0; font-size: .78rem; color: var(--muted); }
@media (max-width: 860px) { .quote-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- QA refinements ---------- */
.mt-s { margin-top: 16px; }
@media (min-width: 981px) { .hero__grid { grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr); } }
.hero__title { font-size: clamp(2.8rem, 1rem + 5.1vw, 6rem); }
.docket-wrap { align-self: center; }

.review-feature__full { max-width: 70ch; margin: 0 0 18px; color: var(--text-2); font-size: .98rem; }
.review--more {
  background: var(--ink); color: var(--on-ink); text-decoration: none;
  justify-content: space-between; min-height: 180px;
  transition: background var(--dur) var(--ease);
}
.review--more .mono { color: var(--gold-bright); }
.review--more b { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; line-height: 1.15; letter-spacing: -.02em; max-width: 14ch; }
.review--more svg { width: 28px; height: 28px; color: var(--gold-bright); transition: transform var(--dur) var(--ease); }
.review--more:hover { background: var(--ink-3); }
.review--more:hover svg { transform: translate(4px, -4px); }
@media (max-width: 860px) { .review-grid .review--more { grid-column: 1 / -1; min-height: 0; } }

.quote-sec .lead { color: var(--on-ink-2); }
.quote-ticks { margin-top: 24px; }
.quote-sec .hero__ticks li { color: var(--on-ink-2); }
.quote-sec .hero__ticks svg { color: var(--gold-bright); }

.field input:invalid:not(:placeholder-shown), .field select:invalid:not([value=""]):not(:focus) { border-color: var(--rule-strong); }
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: var(--err); }
.field .consent { flex-direction: row; align-items: center; font-family: var(--font-body); font-size: .88rem; letter-spacing: 0; text-transform: none; color: var(--text-2); }
.field .consent input { min-height: 0; padding: 0; margin: 0; width: 20px; height: 20px; }

/* ---------- Polish pass: coverage list, stagger, tactile ---------- */
.hero__title { font-size: clamp(2.6rem, 1rem + 4.6vw, 5.4rem); max-width: 13ch; }

.coverage { border-top: 2px solid var(--fg); }
.coverage__row {
  display: grid; grid-template-columns: 120px minmax(0, 1.1fr) minmax(0, 1.4fr) minmax(0, .7fr);
  gap: 18px 36px; align-items: baseline;
  padding: 30px 0; border-bottom: 1px solid var(--rule-strong);
  position: relative;
}
.coverage__row--home::before {
  content: ""; position: absolute; left: 0; top: -2px; width: 120px; height: 4px; background: var(--gold);
}
.coverage__code { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-text); line-height: 1.5; }
.coverage__name { font-size: clamp(1.5rem, 1rem + 1.6vw, 2.4rem); font-weight: 900; letter-spacing: -.03em; }
.coverage__row--home .coverage__name { font-size: clamp(2rem, 1.2rem + 2.6vw, 3.4rem); }
.coverage__subs { margin: 0; color: var(--text-2); line-height: 1.8; word-spacing: .12em; }
.coverage__links { margin: 0; display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: flex-end; font-family: var(--font-mono); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.coverage__links a { color: var(--fg); text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 2px; transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.coverage__links a::after { content: " \2197"; color: var(--gold-text); }
.coverage__links a:hover { color: var(--gold-text); border-color: var(--fg); }
.coverage__links--note { color: var(--muted); text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-size: .9rem; }
@media (max-width: 980px) {
  .coverage__row { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }
  .coverage__links { justify-content: flex-start; }
}

/* Staggered reveal for lists (children cascade after the parent enters) */
.js .reveal > .svc-row, .js .reveal > .step, .js .reveal > .review, .js .reveal > .coverage__row, .js .reveal > details {
  opacity: 0; transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-in > * { opacity: 1; transform: none; }
.js .reveal.is-in > :nth-child(2) { transition-delay: 70ms; }
.js .reveal.is-in > :nth-child(3) { transition-delay: 140ms; }
.js .reveal.is-in > :nth-child(4) { transition-delay: 210ms; }
.js .reveal.is-in > :nth-child(5) { transition-delay: 280ms; }
.js .reveal.is-in > :nth-child(6) { transition-delay: 350ms; }
.js .reveal.is-in > :nth-child(n+7) { transition-delay: 420ms; }

/* Tactile press on every button */
.btn:active { transform: translateY(1px) scale(.985); transition-duration: 80ms; }
.js .process__list > .reveal:nth-child(2), .js .svc-list > .reveal:nth-child(2) { transition-delay: 90ms; }
.js .process__list > .reveal:nth-child(3), .js .svc-list > .reveal:nth-child(3) { transition-delay: 180ms; }
.js .process__list > .reveal:nth-child(4), .js .svc-list > .reveal:nth-child(4) { transition-delay: 270ms; }
.quote-grid > * { min-width: 0; }
@media (max-width: 860px) { .quote-grid { grid-template-columns: minmax(0, 1fr); } }
.form-grid > * { min-width: 0; }
.field input, .field select, .field textarea { width: 100%; min-width: 0; }
@media (max-width: 560px) { .form-grid { grid-template-columns: minmax(0, 1fr); } }


/* ==========================================================================
   Subpage templates: service, location, article, centred utility
   ========================================================================== */

.h1 { font-size: var(--t-h1); }
.mt-m { margin-top: 28px; }
.mt-l { margin-top: 48px; }

.crumbs {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.crumbs a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.crumbs a:hover { color: var(--gold-text); }

/* ---------- Service page hero ---------- */
.page-hero { padding: clamp(40px, 5vw, 76px) 0 clamp(56px, 5vw, 88px); }
.page-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.page-hero__title { margin: 16px 0 20px; }
.page-hero__lead { margin-bottom: 28px; }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

.credentials { background: var(--ink); color: var(--on-ink); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-card); }
.credentials h3 { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 18px; font-weight: 500; }
.credentials__row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-top: 1px dashed var(--rule-ink); font-size: .88rem; }
.credentials__row:first-of-type { border-top: none; }
.credentials__row dt { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; color: var(--on-ink-2); margin: 0; }
.credentials__row dd { margin: 0; font-weight: 600; text-align: right; }
.credentials .btn { width: 100%; margin-top: 18px; }
@media (max-width: 900px) { .page-hero__grid { grid-template-columns: 1fr; } }

/* ---------- Scope list (numbered service rundown) ---------- */
.scope-list { display: flex; flex-direction: column; }
.scope-item { display: flex; align-items: baseline; gap: 22px; padding: 18px 0; border-top: 1px solid var(--rule); }
.scope-list > .scope-item:last-child { border-bottom: 1px solid var(--rule); }
.scope-item__tag { flex: none; width: 148px; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .06em; color: var(--gold-text); }
.scope-item b { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; }
@media (max-width: 640px) { .scope-item { flex-direction: column; gap: 6px; } .scope-item__tag { width: auto; } }

/* ---------- Why / prose split with contact card ---------- */
.why-split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.prose { max-width: 62ch; }
.prose h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; margin: 28px 0 10px; }
.prose h3:first-child { margin-top: 0; }
.prose p { color: var(--text-2); }
.prose a { color: var(--gold-text); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--text); }

.contact-card { background: var(--ink); color: var(--on-ink); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-card); }
.contact-card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.contact-card p { color: var(--on-ink-2); margin-bottom: 20px; }
.contact-card__links { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.contact-card__links a { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--on-ink); }
.contact-card__links a svg { width: 18px; height: 18px; color: var(--gold-bright); flex: none; }
.contact-card__links a:hover { color: var(--gold-bright); }
.contact-card .btn { width: 100%; }
@media (max-width: 860px) { .why-split { grid-template-columns: minmax(0, 1fr); } }

/* ---------- End CTA band ---------- */
.endcta { background: var(--ink); color: var(--on-ink); padding: clamp(56px, 7vw, 100px) 0; text-align: center; }
.endcta__in { max-width: 640px; margin: 0 auto; padding: 0 var(--gutter); display: flex; flex-direction: column; align-items: center; gap: 20px; }
.endcta h2 { font-size: var(--t-h2); }
.endcta p { color: var(--on-ink-2); margin: 0; }
.endcta__links { font-family: var(--font-mono); font-size: .84rem; }
.endcta__links a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.endcta__links a:hover { color: var(--on-ink); }

/* ---------- Location page hero ---------- */
.place-hero { padding: clamp(40px, 5vw, 76px) 0 clamp(48px, 5vw, 72px); }
.place-hero__title { font-size: var(--t-display); margin: 16px 0 20px; }
.place-hero__lead { max-width: 66ch; margin-bottom: 28px; }
.place-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

.place-rows { display: flex; flex-direction: column; }
.place-row {
  display: grid; grid-template-columns: 140px 1fr; gap: 20px; align-items: baseline;
  padding: 18px 0; border-top: 1px solid var(--rule); text-decoration: none; color: var(--text);
  transition: color var(--dur) var(--ease);
}
.place-rows > .place-row:last-child { border-bottom: 1px solid var(--rule); }
.place-row__tag { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .06em; color: var(--gold-text); }
.place-row b { font-family: var(--font-head); font-weight: 700; }
.place-row span { display: block; color: var(--text-2); font-size: .92rem; font-weight: 400; }
.place-row:hover { color: var(--gold-text); }
.place-local { max-width: 70ch; color: var(--text-2); }

.place-faq h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; margin: 24px 0 8px; }
.place-faq h3:first-child { margin-top: 0; }
.place-faq p { color: var(--text-2); }
@media (max-width: 640px) { .place-row { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- Article template (guides, privacy) ---------- */
.article-hero { padding: clamp(40px, 5vw, 72px) 0 clamp(32px, 4vw, 56px); }
.article-hero__title { margin: 16px 0 18px; }
.article-layout { display: grid; grid-template-columns: 1fr .55fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.article-body { max-width: 68ch; }
.article-body h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; letter-spacing: -.01em; margin: 34px 0 12px; }
.article-body h3:first-child { margin-top: 0; }
.article-body p { color: var(--text-2); }
.article-body ul { margin: 0 0 1.2em; padding-left: 1.2em; color: var(--text-2); }
.article-body li { margin-bottom: .5em; }
.article-body li strong, .article-body p strong { color: var(--text); }
.article-body .fine { margin-top: 20px; }

.callout {
  position: sticky; top: 100px;
  background: var(--ink); color: var(--on-ink); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-card);
}
.callout__label { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-bright); }
.callout__fact { font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; letter-spacing: -.02em; margin: 10px 0 6px; line-height: 1.1; }
.callout__note { font-size: .82rem; color: var(--on-ink-2); margin-bottom: 22px; }
.callout .btn { width: 100%; }
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } .callout { position: static; } }

/* ---------- Centred utility template (404, thank-you, review) ---------- */
.utility { padding: clamp(64px, 9vw, 130px) 0; text-align: center; }
.utility__in { max-width: 560px; margin: 0 auto; padding: 0 var(--gutter); display: flex; flex-direction: column; align-items: center; gap: 22px; }
.utility h1 { font-size: var(--t-h1); }
.utility p { color: var(--text-2); margin: 0; }
.utility__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.utility__qr { width: 168px; height: 168px; background: var(--white); padding: 10px; border-radius: var(--radius); box-shadow: var(--shadow-card); }


.article-meta { margin: 18px 0 0; font-family: var(--font-mono); font-size: .76rem; letter-spacing: .05em; color: var(--muted); }
.contact-card__links a, .quote-copy a[href^="mailto"] { overflow-wrap: anywhere; }


/* ==========================================================================
   Motion + conversion layer
   Tokens: --dur, --ease (01-base). Everything here is transform/opacity only
   and collapses to static under prefers-reduced-motion.
   ========================================================================== */

:root {
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-slow: 900ms;
}

/* ---------- Pulse dot (live / urgent signal) ---------- */
.pulse {
  position: relative; display: inline-block; flex: none;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}
.pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: inherit;
  animation: pulse-ring 2.2s var(--ease) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* ---------- Hero: word-by-word rise ---------- */
.hero__title .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.hero__title .w > span { display: inline-block; transform: translateY(105%); animation: word-rise var(--dur-slow) var(--ease) forwards; animation-delay: calc(120ms + var(--i) * 70ms); }
@keyframes word-rise { to { transform: none; } }
.js .hero__lead, .js .hero__cta, .js .hero__urgent, .js .hero__ticks {
  opacity: 0; transform: translateY(14px);
  animation: fade-up .8s var(--ease) forwards;
}
.js .hero__lead { animation-delay: .55s; }
.js .hero__cta { animation-delay: .68s; }
.js .hero__urgent { animation-delay: .8s; }
.js .hero__ticks { animation-delay: .9s; }
@keyframes fade-up { to { opacity: 1; transform: none; } }

.hero__urgent { display: flex; align-items: center; gap: 12px; margin: -10px 0 26px; font-size: .92rem; color: var(--text-2); }
.hero__urgent a { color: var(--fg); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.hero__urgent a:hover { color: var(--gold-text); }

/* Docket: drop in, settle with a spring, stamp turns slowly */
.js .docket.reveal { opacity: 0; transform: translateY(40px) rotate(-4deg); transition: opacity .9s var(--ease), transform 1.1s var(--ease-spring); transition-delay: .35s; }
.js .docket.reveal.is-in { opacity: 1; transform: rotate(2.2deg); }
.docket:hover { transform: rotate(0deg) translateY(-4px) !important; transition: transform .5s var(--ease) !important; }
.docket__stamp text { transform-origin: 50px 50px; animation: stamp-spin 28s linear infinite; }
@keyframes stamp-spin { to { transform: rotate(360deg); } }
@media (max-width: 980px) { .js .docket.reveal.is-in { transform: rotate(1deg); } }

/* ---------- Ticker strip ---------- */
.ticker { background: var(--gold); color: var(--ink); overflow: hidden; border-block: 1px solid var(--gold-deep); }
.ticker__track { display: flex; width: max-content; animation: ticker 38s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker span {
  display: inline-flex; align-items: center; gap: 22px; padding: 15px 22px 15px 0;
  font-family: var(--font-head); font-weight: 800; font-size: clamp(.95rem, .8rem + .5vw, 1.2rem);
  letter-spacing: -.01em; white-space: nowrap;
}
.ticker svg { width: 16px; height: 16px; color: var(--ink); opacity: .55; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Job picker CTA band ---------- */
.jobpick { background: var(--ink); color: var(--on-ink); padding: clamp(56px, 6vw, 96px) 0; position: relative; overflow: hidden; }
.jobpick::before {
  content: ""; position: absolute; right: -6%; top: 50%; width: 520px; height: 520px; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(166, 121, 57, .22), transparent 62%);
  pointer-events: none;
}
.jobpick__in { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 32px 64px; align-items: center; }
.jobpick__title { font-size: var(--t-h2); margin: 14px 0 12px; color: var(--on-ink); }
.jobpick__copy p { margin: 0; color: var(--on-ink-2); max-width: 40ch; }
.jobpick__chips { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.jobpick__chip {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 60px; padding: 14px 18px;
  border: 1px solid var(--rule-ink); border-radius: var(--radius);
  color: var(--on-ink); text-decoration: none; font-weight: 600; font-size: .98rem;
  background: rgba(255, 255, 255, .02);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.jobpick__chip svg { width: 18px; height: 18px; flex: none; color: var(--gold-bright); transition: transform var(--dur) var(--ease); }
.jobpick__chip:hover, .jobpick__chip:focus-visible { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }
.jobpick__chip:hover svg, .jobpick__chip:focus-visible svg { color: var(--ink); transform: translateX(4px); }
.jobpick__chip:active { transform: translateY(0) scale(.985); }
.js .jobpick__in.reveal .jobpick__chip { opacity: 0; transform: translateY(12px); }
.js .jobpick__in.reveal.is-in .jobpick__chip { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease); }
.js .jobpick__in.is-in .jobpick__chip:nth-child(2) { transition-delay: 60ms; }
.js .jobpick__in.is-in .jobpick__chip:nth-child(3) { transition-delay: 120ms; }
.js .jobpick__in.is-in .jobpick__chip:nth-child(4) { transition-delay: 180ms; }
.js .jobpick__in.is-in .jobpick__chip:nth-child(5) { transition-delay: 240ms; }
.js .jobpick__in.is-in .jobpick__chip:nth-child(6) { transition-delay: 300ms; }
.js .jobpick__in.is-in .jobpick__chip:hover { transition-delay: 0ms; }
@media (max-width: 860px) { .jobpick__in { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 460px) { .jobpick__chips { grid-template-columns: minmax(0, 1fr); } }

/* Form field flashes gold when a job pick pre-fills it */
.field select.is-prefilled { animation: prefill 1.6s var(--ease); }
@keyframes prefill {
  0%, 30% { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(166, 121, 57, .25); }
  100% { box-shadow: 0 0 0 0 rgba(166, 121, 57, 0); }
}


/* ---------- Process wire draws itself ---------- */
.process__list::before { transform-origin: left center; }
.js .process .head.reveal:not(.is-in) ~ .process__list::before,
.js .process__list:not(.is-drawn)::before { transform: scaleX(0); }
.js .process__list.is-drawn::before { transform: scaleX(1); transition: transform 1.6s var(--ease) .15s; }
.process__node { transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease-spring); }
.process__step:hover .process__node { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: scale(1.12); }

/* ---------- Floating quote button (desktop) ---------- */
.fab-quote {
  position: fixed; right: 24px; bottom: 24px; z-index: 80;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: 999px;
  background: var(--ink); color: var(--on-ink); text-decoration: none;
  font-family: var(--font-mono); font-size: .8rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 18px 40px -16px rgba(27, 26, 27, .6), inset 0 1px 0 rgba(255, 255, 255, .08);
  opacity: 0; transform: translateY(20px) scale(.96); pointer-events: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease-spring), background var(--dur) var(--ease);
}
.fab-quote svg { width: 16px; height: 16px; color: var(--gold-bright); transition: transform var(--dur) var(--ease); }
.fab-quote.is-shown { opacity: 1; transform: none; pointer-events: auto; }
.fab-quote:hover { background: var(--ink-3); }
.fab-quote:hover svg { transform: translateX(4px); }
@media (max-width: 760px) { .fab-quote { display: none; } }

/* ---------- Reduced motion: everything static and visible ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero__title .w > span, .js .hero__lead, .js .hero__cta, .js .hero__urgent, .js .hero__ticks { animation: none; opacity: 1; transform: none; }
  .ticker__track { animation: none; flex-wrap: wrap; width: auto; }
  .ticker span:nth-child(n+11) { display: none; }
  .pulse::after, .docket__stamp text { animation: none; }
  .js .process__list::before { transform: none; }
  .js .docket.reveal { opacity: 1; transform: rotate(2.2deg); }
}

/* Hide the headline until JS has split it into words (no flash of unsplit text) */
.js .hero__title:not(.is-split) { opacity: 0; }

/* Job picker on paper so it doesn't merge with the black energy band below */
.jobpick { background: var(--paper-2); color: var(--text); border-top: 1px solid var(--rule); }
.jobpick::before { background: radial-gradient(circle, rgba(166, 121, 57, .16), transparent 62%); }
.jobpick__title { color: var(--fg); }
.jobpick__copy p { color: var(--text-2); }
.jobpick .eyebrow { color: var(--gold-text); }
.jobpick__chip { background: var(--ink); border-color: var(--ink); color: var(--on-ink); box-shadow: 0 10px 24px -18px rgba(27, 26, 27, .8); }
.jobpick__chip svg { color: var(--gold-bright); }


/* ==========================================================================
   Dark cinematic theme (2026 v3)
   Re-points the surface tokens to near-black with glowing brand gold.
   Brand black (--ink) stays the colour of raised dark bands and of text on gold.
   ========================================================================== */

:root {
  color-scheme: dark;

  --paper: #0D0C0D;     /* page */
  --paper-2: #131213;   /* tinted bands */
  --paper-3: #1C1A1B;   /* inputs, raised fills */
  --card: #161516;
  --ink: #1B1A1B;
  --ink-2: #211F20;
  --ink-3: #2A2829;

  --fg: #F6F3EE;
  --text: #EFEBE6;
  --text-2: #BCB6B0;    /* 10.4:1 on page */
  --muted: #8E8884;     /* 5.6:1 on page */
  --gold-text: #D4B274; /* 9.6:1 on page */
  --rule: rgba(242, 239, 236, 0.09);
  --rule-strong: rgba(242, 239, 236, 0.32);

  --glow: 0 0 0 1px rgba(212, 178, 116, .18), 0 24px 80px -24px rgba(166, 121, 57, .55);
  --shadow-card: 0 1px 0 rgba(255, 255, 255, .04) inset, 0 40px 80px -40px rgba(0, 0, 0, .9);
  --glass: linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
}

/* Grain reads as film noise on dark rather than paper fibre */
body::before { mix-blend-mode: screen; opacity: .22; }

h1 em, h2 em, h3 em { color: var(--gold-bright); }

/* Bands that used brand black now need a touch of separation from the page */
.sec--ink, .trust, .energy, .endcta, .quote-sec, .site-footer {
  background-color: var(--ink);
  background-image: radial-gradient(900px 420px at 85% 0%, rgba(166, 121, 57, .10), transparent 70%);
}

/* Buttons */
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--ink); box-shadow: 0 10px 40px -10px rgba(212, 178, 116, .6); }
.btn-outline { border-color: var(--rule-strong); }

/* Header on dark glass */
.site-header { background: rgba(13, 12, 13, .72); -webkit-backdrop-filter: saturate(140%) blur(14px); backdrop-filter: saturate(140%) blur(14px); }
.nav-links a { color: var(--text-2); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--fg); }

/* Glass surfaces */
.quote-panel, .contact-card, .callout, .credentials, .review--more {
  background: var(--glass), var(--card);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-card);
}
.review { background: transparent; }
.review-grid { background: var(--rule); }
.jobpick__chip { background: var(--glass), var(--card); border-color: var(--rule-strong); box-shadow: none; }

/* Forms */
.field input, .field select, .field textarea { background: var(--paper-3); color: var(--text); border-color: var(--rule-strong); }
.field input:focus, .field select:focus, .field textarea:focus { background: #221F20; border-color: var(--gold-bright); }
.field select option { background: var(--paper-3); color: var(--text); }
.form-status.show:not(.err) { color: #7FD39A; }
.form-status.err { color: #F0948A; }

/* Service rows invert to gold-edged glass instead of solid black */
.svc-row:hover { background: var(--glass), var(--ink-2); box-shadow: inset 3px 0 0 var(--gold); }

/* Ticker stays gold; hero urgent link underline glows */
.hero__urgent a { text-decoration-color: var(--gold-bright); }

@media (prefers-reduced-motion: reduce) {
  .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--paper); }
}

/* Fixes after first dark pass */
.faq-list summary .icon { border-color: var(--rule-strong); }
.faq-list summary .icon::before, .faq-list summary .icon::after { background: var(--fg); }
.faq-list details[open] summary .icon::before, .faq-list details[open] summary .icon::after { background: var(--paper); }
.review { background: var(--paper); }


/* ==========================================================================
   3D hero stage: giant split words around a live WebGL mark, glass instruments.
   Layering: back word (0) < fallback/canvas (1) < front word (2) < glass (3)
   ========================================================================== */

.hero3d { position: relative; overflow: clip; padding-bottom: clamp(48px, 6vw, 96px); }
.hero3d::before { /* contour-line atmosphere behind everything */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background:
    radial-gradient(60% 55% at 50% 42%, rgba(166, 121, 57, .20), transparent 70%),
    repeating-radial-gradient(circle at 50% 42%, transparent 0 34px, rgba(212, 178, 116, .06) 34px 35px);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 42%, #000 30%, transparent 75%);
  mask-image: radial-gradient(70% 60% at 50% 42%, #000 30%, transparent 75%);
}

.hero3d__stage {
  position: relative;
  height: clamp(460px, 78vh, 820px);
  max-width: 1500px; margin: 0 auto;
  cursor: pointer;
}

.hero3d__canvas, .hero3d__fallback { position: absolute; z-index: 1; }
.hero3d__canvas { inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero3d__stage.is-live .hero3d__canvas { opacity: 1; }
.hero3d__fallback {
  left: 50%; top: 50%; width: min(34vw, 300px); height: auto;
  transform: translate(-50%, -54%);
  filter: drop-shadow(0 0 40px rgba(212, 178, 116, .45)) drop-shadow(0 0 120px rgba(166, 121, 57, .35));
  transition: opacity .8s var(--ease);
  animation: float 6s ease-in-out infinite;
}
.hero3d__stage.is-live .hero3d__fallback { opacity: 0; transition-duration: 1.4s; transition-delay: .2s; }
@keyframes float { 50% { transform: translate(-50%, -58%); } }

/* Giant split words */
.hero3d__word {
  position: absolute; margin: 0; pointer-events: none;
  font-family: var(--font-head); font-weight: 900; letter-spacing: -.055em; line-height: .8;
  font-size: clamp(5rem, 1rem + 17vw, 17rem);
}
.hero3d__word--back {
  z-index: 0; left: 4%; top: 12%;
  color: transparent;
  background: linear-gradient(180deg, #F6F3EE 0%, rgba(246, 243, 238, .55) 60%, rgba(246, 243, 238, .12) 100%);
  -webkit-background-clip: text; background-clip: text;
}
.hero3d__word--front {
  z-index: 2; right: 4%; bottom: 10%;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(212, 178, 116, .85);
  text-shadow: 0 0 60px rgba(166, 121, 57, .35);
}

/* Glass instruments */
.glass {
  position: absolute; z-index: 3;
  padding: 14px 16px 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)), rgba(20, 19, 20, .55);
  border: 1px solid rgba(242, 239, 236, .12);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 30px 60px -30px rgba(0, 0, 0, .9);
  -webkit-backdrop-filter: blur(14px) saturate(140%); backdrop-filter: blur(14px) saturate(140%);
  font-family: var(--font-mono); color: var(--text-2);
}
.glass__bar { display: flex; align-items: center; gap: 10px; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-bright); }
.glass__bar span:last-child { margin-left: auto; color: var(--text-2); }
.glass__bar .pulse { width: 6px; height: 6px; }

.glass--wave { left: 5%; bottom: 20%; width: 250px; }
.wave { width: 100%; height: 60px; margin: 10px 0 4px; overflow: hidden; }
.wave__line {
  fill: none; stroke: var(--gold-bright); stroke-width: 1.6;
  filter: drop-shadow(0 0 4px rgba(212, 178, 116, .8));
  animation: wave-run 1.6s linear infinite;
}
@keyframes wave-run { to { transform: translateX(-60px); } }
.glass__scale { display: flex; justify-content: space-between; font-size: .58rem; color: var(--muted); border-top: 1px dashed rgba(242, 239, 236, .14); padding-top: 6px; }

.glass--docket { right: 5%; top: 8%; width: 270px; }
.glass__rows { margin: 12px 0 0; display: grid; gap: 7px; }
.glass__rows div { display: flex; justify-content: space-between; gap: 12px; font-size: .68rem; }
.glass__rows dt { color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.glass__rows dd { margin: 0; color: var(--fg); font-family: var(--font-body); font-weight: 600; font-size: .78rem; }

.hero3d__hint {
  position: absolute; z-index: 3; left: 50%; bottom: 3%; transform: translateX(-50%); margin: 0;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  opacity: 0; transition: opacity .8s var(--ease) 1.5s;
}
.hero3d__stage.is-live .hero3d__hint { opacity: 1; }

/* Copy + actions under the stage */
.hero3d__foot {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 32px 72px; align-items: end;
  margin-top: clamp(-40px, -3vw, -8px);
}
.hero3d__foot .hero__title { font-size: clamp(2rem, 1rem + 2.6vw, 3.4rem); max-width: 16ch; margin: 16px 0 18px; }
.hero3d__foot .hero__lead { margin: 0; }
.hero3d__foot .hero__cta { margin-bottom: 22px; }
.hero3d__foot .hero__urgent { margin: 0 0 18px; }

/* Entrance: glass cards and words slide into place */
.js .glass, .js .hero3d__word { opacity: 0; animation: glass-in 1.1s var(--ease) forwards; }
.js .hero3d__word--back { animation-delay: .1s; }
.js .hero3d__word--front { animation-delay: .35s; }
.js .glass--docket { animation-delay: .9s; }
.js .glass--wave { animation-delay: 1.05s; }
@keyframes glass-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (max-width: 1100px) {
  .glass--wave { display: none; }
  .glass--docket { top: auto; bottom: 4%; right: 4%; width: 240px; }
}
@media (max-width: 860px) {
  .hero3d__stage { height: clamp(380px, 62vh, 560px); }
  .hero3d__word--back { top: 6%; }
  .hero3d__word--front { bottom: 6%; }
  .glass--docket { position: relative; right: auto; bottom: auto; margin: 0 var(--gutter); width: auto; display: none; }
  .hero3d__foot { grid-template-columns: minmax(0, 1fr); margin-top: 0; }
  .hero3d__hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero3d__fallback, .wave__line { animation: none; }
  .js .glass, .js .hero3d__word { opacity: 1; animation: none; }
}
.hero__urgent a { white-space: nowrap; }
.hero3d__foot .hero__urgent { font-size: .88rem; flex-wrap: wrap; }


/* ==========================================================================
   Service renders: cursor-following preview on desktop, inline thumbs on touch
   ========================================================================== */

.services { position: relative; }
.svc-row__thumb { display: none; }

.svc-float {
  position: fixed; left: 0; top: 0; z-index: 60; margin: 0;
  width: 280px; aspect-ratio: 4 / 5; pointer-events: none;
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(242, 239, 236, .14);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .95), 0 0 60px -20px rgba(166, 121, 57, .45);
  opacity: 0; transform: translate3d(-50%, -50%, 0) scale(.85) rotate(-4deg);
  transition: opacity .35s var(--ease), transform .5s var(--ease);
  will-change: transform;
}
.svc-float img { width: 100%; height: 100%; object-fit: cover; transition: opacity .25s var(--ease); }
.svc-float figcaption {
  position: absolute; left: 10px; bottom: 8px;
  font-family: var(--font-mono); font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(242, 239, 236, .55);
}
.svc-float.is-on { opacity: 1; }

@media (hover: none), (max-width: 860px) {
  .svc-float { display: none; }
  .svc-row { grid-template-columns: 76px 1fr auto; grid-template-areas: "thumb num arrow" "thumb name name" "points points points"; }
  .svc-row__thumb {
    display: block; grid-area: thumb; width: 76px; height: 94px; object-fit: cover;
    border-radius: 8px; border: 1px solid var(--rule);
  }
}
@media (prefers-reduced-motion: reduce) { .svc-float { transition: opacity .2s linear; } }

/* ---------- Service page hero: render with the credentials card overlapping ---------- */
.page-hero__visual { position: relative; padding-bottom: 60px; }
.page-hero__render {
  position: relative; margin: 0; border-radius: 14px; overflow: hidden;
  aspect-ratio: 4 / 5; max-height: 640px;
  border: 1px solid var(--rule);
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, .95), 0 0 80px -30px rgba(166, 121, 57, .5);
}
.page-hero__render img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 1.6s var(--ease); }
.page-hero__visual:hover .page-hero__render img { transform: scale(1.08); }
.page-hero__render figcaption {
  position: absolute; right: 12px; top: 10px;
  font-family: var(--font-mono); font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(242, 239, 236, .5);
}
.page-hero__visual .credentials {
  position: absolute; left: -48px; bottom: 0; width: min(320px, 90%);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)), rgba(20, 19, 20, .72);
}
@media (max-width: 860px) {
  .page-hero__visual { padding-bottom: 0; margin-top: 12px; }
  .page-hero__render { aspect-ratio: 16 / 11; }
  .page-hero__visual .credentials { position: relative; left: auto; width: auto; margin: -60px 16px 0; }
}


/* ==========================================================================
   Energy node diagram: input chips -> glowing JRM core -> output chips.
   Wires are CSS lines; "current" is a travelling gradient (transform only).
   ========================================================================== */

.nodes {
  position: relative; margin: 0;
  display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 0 44px;
  padding: 40px 28px 28px;
  border: 1px solid var(--rule-ink); border-radius: 14px;
  background:
    radial-gradient(50% 60% at 50% 45%, rgba(166, 121, 57, .16), transparent 70%),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(242, 239, 236, .035) 23px 24px),
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(242, 239, 236, .035) 23px 24px),
    #121112;
}
.nodes__col { display: flex; flex-direction: column; gap: 10px; position: relative; }
.nodes__col--in { align-items: flex-end; }
.nodes__col--out { align-items: flex-start; }
.nodes__label { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 4px; }

.nodes__chip {
  position: relative;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-ink);
  padding: 8px 12px; border: 1px solid rgba(242, 239, 236, .16); border-radius: 4px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .01));
  white-space: nowrap;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nodes__chip:hover { border-color: var(--gold); color: var(--gold-bright); box-shadow: 0 0 24px -6px rgba(212, 178, 116, .6); }

/* wire from each chip toward the core, with a travelling spark */
.nodes__chip::after {
  content: ""; position: absolute; top: 50%; width: 44px; height: 1px;
  background: rgba(212, 178, 116, .35);
}
.nodes__col--in .nodes__chip::after { left: 100%; }
.nodes__col--out .nodes__chip::after { right: 100%; }
.nodes__chip::before {
  content: ""; position: absolute; top: calc(50% - 1px); width: 10px; height: 3px; border-radius: 2px;
  background: var(--gold-bright); box-shadow: 0 0 8px 1px rgba(212, 178, 116, .9);
  opacity: 0; animation: spark 2.4s var(--ease) infinite;
}
.nodes__col--in .nodes__chip::before { left: 100%; }
.nodes__col--out .nodes__chip::before { right: calc(100% + 34px); }
.nodes__chip:nth-of-type(2)::before { animation-delay: .4s; }
.nodes__chip:nth-of-type(3)::before { animation-delay: .8s; }
.nodes__chip:nth-of-type(4)::before { animation-delay: 1.2s; }
.nodes__chip:nth-of-type(5)::before { animation-delay: 1.6s; }
@keyframes spark {
  0% { opacity: 0; transform: translateX(0); }
  15% { opacity: 1; }
  60% { opacity: 1; transform: translateX(34px); }
  100% { opacity: 0; transform: translateX(34px); }
}

/* vertical bus on each side of the core */
.nodes__col--in::after, .nodes__col--out::after {
  content: ""; position: absolute; top: 34px; bottom: 14px; width: 1px; background: rgba(212, 178, 116, .35);
}
.nodes__col--in::after { right: -44px; }
.nodes__col--out::after { left: -44px; }

.nodes__core {
  position: relative; display: grid; place-items: center;
  width: 150px; height: 170px; border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .01)), #1a1819;
  border: 1px solid rgba(212, 178, 116, .45);
  box-shadow: 0 0 0 6px rgba(166, 121, 57, .06), 0 0 80px -10px rgba(166, 121, 57, .7), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.nodes__core img { width: 64px; height: auto; filter: drop-shadow(0 0 18px rgba(212, 178, 116, .7)); animation: core-hum 3s ease-in-out infinite; }
@keyframes core-hum { 50% { filter: drop-shadow(0 0 30px rgba(212, 178, 116, 1)); } }
.nodes__ring {
  position: absolute; inset: -1px; border-radius: 14px; border: 1px solid rgba(212, 178, 116, .6);
  animation: core-ring 3s var(--ease) infinite; pointer-events: none;
}
.nodes__ring + .nodes__ring { animation-delay: 1.5s; }
@keyframes core-ring { from { transform: scale(1); opacity: .8; } to { transform: scale(1.45); opacity: 0; } }

.nodes figcaption {
  grid-column: 1 / -1; margin-top: 26px; text-align: center;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-ink-2);
}

@media (max-width: 560px) {
  .nodes { grid-template-columns: minmax(0, 1fr); gap: 22px; justify-items: center; padding: 28px 18px; }
  .nodes__col--in, .nodes__col--out { align-items: center; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .nodes__label { width: 100%; text-align: center; }
  .nodes__chip::after, .nodes__chip::before, .nodes__col--in::after, .nodes__col--out::after { display: none; }
  .nodes__core { width: 120px; height: 136px; }
}
@media (prefers-reduced-motion: reduce) {
  .nodes__chip::before, .nodes__ring, .nodes__core img { animation: none; }
}

/* ---------- Footer contour wordmark ---------- */
.site-footer { overflow: hidden; }
.footer__wordmark {
  display: block; width: min(1400px, 100%); height: auto; margin: 24px auto -6px;
  opacity: .85;
  filter: drop-shadow(0 0 24px rgba(166, 121, 57, .35));
}

/* ---------- Contour atmosphere on the conversion bands ---------- */
.jobpick, .quote-sec { position: relative; isolation: isolate; overflow: hidden; }
.jobpick::after, .quote-sec::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  width: 900px; height: 900px; border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 28px, rgba(212, 178, 116, .07) 28px 29px);
  -webkit-mask-image: radial-gradient(circle, #000 20%, transparent 68%);
  mask-image: radial-gradient(circle, #000 20%, transparent 68%);
}
.jobpick::after { right: -300px; top: 50%; transform: translateY(-50%); }
.quote-sec::after { left: -380px; bottom: -420px; }


/* ==========================================================================
   Coverage map (homepage areas + location heroes)
   Two SVG layers (base coast, network) stacked in 3D; JS tilts with the pointer.
   ========================================================================== */

.areas-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); gap: 48px; align-items: center; }
.covmap-wrap {
  margin: 0; padding: 0; border-radius: 18px; position: relative;
  border: 1px solid var(--rule);
  background:
    radial-gradient(70% 55% at 45% 55%, rgba(166, 121, 57, .12), transparent 70%),
    #0f0e0f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 50px 100px -50px rgba(0, 0, 0, .95);
  perspective: 1100px;
  overflow: hidden;
}

.cov3d { position: relative; aspect-ratio: 320 / 452; transform-style: preserve-3d; transition: transform .6s var(--ease); will-change: transform; }
.cov3d__layer { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.cov3d__layer--base { transform: translateZ(-30px) scale(1.04); }
.cov3d__layer--net { transform: translateZ(40px) scale(.94); }

/* base: land, water, contours, graticule */
.cov3d__grat line { stroke: rgba(242, 239, 236, .05); stroke-width: .6; }
.cov3d__land { fill: rgba(242, 239, 236, .028); }
.cov3d__coast { fill: none; stroke: rgba(212, 178, 116, .75); stroke-width: 1.3; filter: drop-shadow(0 0 3px rgba(212, 178, 116, .6)); }
.cov3d__contour { fill: none; stroke: #D4B274; stroke-width: .7; }
.cov3d__water { fill: rgba(166, 121, 57, .10); stroke: rgba(212, 178, 116, .45); stroke-width: .8; }
.cov3d__sea { font-family: var(--font-mono); font-size: 8px; letter-spacing: .3em; text-transform: uppercase; fill: rgba(212, 178, 116, .45); }

/* network */
.cov3d__zone { fill: rgba(166, 121, 57, .07); stroke: rgba(212, 178, 116, .35); stroke-dasharray: 2 4; }
.cov3d__zone--inner { fill: rgba(166, 121, 57, .08); stroke-dasharray: none; stroke: rgba(212, 178, 116, .2); }
.cov3d__beam { stroke: rgba(212, 178, 116, .8); stroke-width: 1; }
.cov3d__region { font-family: var(--font-mono); font-size: 8px; letter-spacing: .22em; text-transform: uppercase; fill: var(--gold-bright); }

.cov3d__wire { fill: none; stroke: rgba(242, 239, 236, .35); stroke-width: 1.2; stroke-dasharray: 1 3; }
.cov3d__spark {
  fill: none; stroke: #FFE6B8; stroke-width: 2.6; stroke-linecap: round;
  stroke-dasharray: 5 95; filter: drop-shadow(0 0 6px rgba(212, 178, 116, 1));
  animation: cov-spark 3.6s linear infinite;
}
.cov3d__spark--back { animation-duration: 4.8s; animation-delay: -1.6s; stroke-width: 2; }
@keyframes cov-spark { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }

.cov3d__node { cursor: default; }
.cov3d__node.is-link { cursor: pointer; }
.cov3d__halo { fill: rgba(212, 178, 116, .0); transition: fill var(--dur) var(--ease); }
.cov3d__dot { fill: #141314; stroke: var(--gold-bright); stroke-width: 1.5; transition: fill var(--dur) var(--ease); }
.cov3d__label { font-family: var(--font-mono); font-size: 9.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; fill: var(--fg); paint-order: stroke; stroke: #0f0e0f; stroke-width: 3px; }
.cov3d__coord { font-family: var(--font-mono); font-size: 6.5px; letter-spacing: .08em; fill: var(--muted); opacity: .55; paint-order: stroke; stroke: #0f0e0f; stroke-width: 3px; transition: opacity var(--dur) var(--ease), fill var(--dur) var(--ease); }
.cov3d__node.is-link:hover .cov3d__halo, .cov3d__node.is-link:focus-visible .cov3d__halo { fill: rgba(212, 178, 116, .22); }
.cov3d__node.is-link:hover .cov3d__dot, .cov3d__node.is-link:focus-visible .cov3d__dot { fill: var(--gold-bright); }
.cov3d__node.is-link:hover .cov3d__coord, .cov3d__node.is-link:focus-visible .cov3d__coord { opacity: 1; fill: var(--gold-bright); }
.cov3d__node.is-link:hover .cov3d__label { fill: var(--gold-bright); }
.cov3d__node.is-link:focus-visible { outline: none; }
.cov3d__node.is-active .cov3d__dot { fill: var(--gold-bright); filter: drop-shadow(0 0 8px rgba(212, 178, 116, 1)); }
.cov3d__node.is-active .cov3d__label { font-size: 11px; fill: var(--gold-bright); }
.cov3d__node.is-active .cov3d__coord { opacity: 1; }
.cov3d__pulse { fill: none; stroke: var(--gold-bright); stroke-width: 1.4; transform-box: fill-box; transform-origin: center; animation: cov-pulse 2.2s var(--ease) infinite; }
@keyframes cov-pulse { from { transform: scale(1); opacity: .9; } to { transform: scale(3.6); opacity: 0; } }

.cov3d__legend {
  position: absolute; left: 16px; right: 16px; bottom: 16px; margin: 0; transform: translateZ(20px);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.cov3d__key { width: 16px; height: 0; border-top: 1.5px dotted rgba(242, 239, 236, .6); }
.cov3d__key--zone { width: 10px; height: 10px; border: 1px dashed rgba(212, 178, 116, .6); border-radius: 50%; margin-left: 10px; background: rgba(166, 121, 57, .12); }

/* Location heroes: copy left, map right */
.place-hero__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 56px; align-items: center; }
.covmap-wrap--hero { max-width: 400px; justify-self: end; width: 100%; }

@media (max-width: 860px) {
  .areas-layout, .place-hero__grid { grid-template-columns: minmax(0, 1fr); }
  .covmap-wrap { max-width: 420px; width: 100%; justify-self: center; }
}
@media (prefers-reduced-motion: reduce) {
  .cov3d { transition: none; }
  .cov3d__spark, .cov3d__pulse { animation: none; }
}

/* Coverage rows beside the map: name above suburbs */
.areas-layout .coverage__row { grid-template-columns: 96px minmax(0, 1fr) auto; grid-template-areas: "code name links" "code subs links"; row-gap: 8px; align-items: start; }
.areas-layout .coverage__code { grid-area: code; padding-top: 10px; }
.areas-layout .coverage__name { grid-area: name; font-size: clamp(1.5rem, 1rem + 1.4vw, 2.3rem); }
.areas-layout .coverage__row--home .coverage__name { font-size: clamp(1.9rem, 1.1rem + 2vw, 3rem); }
.areas-layout .coverage__subs { grid-area: subs; }
.areas-layout .coverage__links { grid-area: links; flex-direction: column; align-items: flex-end; padding-top: 10px; }
@media (max-width: 980px) {
  .areas-layout .coverage__row { grid-template-columns: minmax(0, 1fr); grid-template-areas: "code" "name" "subs" "links"; }
  .areas-layout .coverage__links { flex-direction: row; align-items: center; }
}


/* ==========================================================================
   Polish pass: bring every remaining section up to the hero's language.
   Glass surfaces, gold current, contour atmosphere, metallic display type.
   ========================================================================== */

/* Shared metallic display text (matches the hero's "Wired") */
.metal-text, .endcta h2 {
  color: transparent;
  background: linear-gradient(180deg, #FBF8F3 0%, #D9D4CD 45%, rgba(246, 243, 238, .45) 100%);
  -webkit-background-clip: text; background-clip: text;
}

/* ---------- Trust strip: instrument readouts ---------- */
.trust { border-block: 1px solid var(--rule); }
.trust__grid { gap: 0; }
.trust__item {
  position: relative; border-left: 0; padding: 30px 26px;
  border-right: 1px solid var(--rule-ink);
  transition: background var(--dur) var(--ease);
}
.trust__item:last-child { border-right: 0; }
.trust__item::before {
  content: ""; position: absolute; left: 26px; top: 0; width: 32px; height: 2px;
  background: var(--gold-bright); box-shadow: 0 0 12px rgba(212, 178, 116, .8);
}
.trust__item b { font-size: clamp(1.5rem, 1rem + 1.2vw, 2.2rem); }
.trust__item:hover { background: linear-gradient(180deg, rgba(212, 178, 116, .08), transparent); }
@media (max-width: 860px) { .trust__item:nth-child(2n) { border-right: 0; } .trust__item { border-bottom: 1px solid var(--rule-ink); } }

/* ---------- Process: glass step cards on a live wire ---------- */
.process__list { gap: 18px; }
.process__list::before { top: 44px; left: 4%; right: 4%; background: rgba(212, 178, 116, .3); }
.process__list::after { /* the charge travelling along the wire */
  content: ""; position: absolute; top: 43px; left: 4%; right: 4%; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, transparent 0, #FFE6B8 45px, transparent 90px) no-repeat;
  background-size: 90px 100%; background-position: -90px 0;
  filter: drop-shadow(0 0 6px rgba(212, 178, 116, .9));
}
.js .process__list.is-drawn::after { animation: charge 3.2s var(--ease) 1.6s infinite; }
@keyframes charge { to { background-position: calc(100% + 90px) 0; } }
.process__step {
  padding: 22px 22px 26px; border-radius: 12px;
  border: 1px solid var(--rule);
  background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01)), var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.process__step:hover { border-color: rgba(212, 178, 116, .45); transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .9), 0 0 40px -18px rgba(166, 121, 57, .6); }
.process__node {
  background: #141314; border: 1.5px solid var(--gold-bright); color: var(--gold-bright);
  box-shadow: 0 0 0 6px rgba(166, 121, 57, .08), 0 0 20px -4px rgba(212, 178, 116, .7);
}
@media (max-width: 760px) { .process__list::after { display: none; } }

/* ---------- Reviews ---------- */
.review-feature {
  position: relative; border-top: 0; padding: clamp(28px, 4vw, 48px);
  border-radius: 16px; border: 1px solid var(--rule);
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(166, 121, 57, .14), transparent 70%),
    linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01)), var(--paper);
  overflow: hidden;
}
.review-feature::before {
  content: "\201C"; position: absolute; right: 28px; top: -40px;
  font-family: var(--font-head); font-weight: 900; font-size: 16rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(212, 178, 116, .35);
  pointer-events: none;
}
.review-feature blockquote { position: relative; }
.review-grid { gap: 14px; background: none; margin-top: 14px; }
.review {
  border-radius: 12px; border: 1px solid var(--rule);
  background: linear-gradient(160deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .01)), var(--paper);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.review:hover { border-color: rgba(212, 178, 116, .4); transform: translateY(-3px); }
.review__stars, .review-feature__stars { color: var(--gold-bright); text-shadow: 0 0 10px rgba(212, 178, 116, .6); }
.review--more { border-radius: 12px; background: linear-gradient(135deg, rgba(166, 121, 57, .35), rgba(166, 121, 57, .08)), #141314; border-color: rgba(212, 178, 116, .4); }

/* ---------- FAQ: "Any question?" contour card ---------- */
.askcard {
  position: relative; margin-top: 32px; padding: 26px 24px 22px; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(212, 178, 116, .25);
  background:
    repeating-radial-gradient(ellipse at 120% 120%, transparent 0 14px, rgba(212, 178, 116, .10) 14px 15px),
    radial-gradient(80% 90% at 90% 100%, rgba(166, 121, 57, .35), transparent 70%),
    #161415;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .9);
}
.askcard__title {
  margin: 0 0 14px; font-family: var(--font-mono); font-size: 1.35rem; line-height: 1.15; letter-spacing: .06em; text-transform: uppercase;
  color: var(--fg); text-shadow: 0 0 18px rgba(212, 178, 116, .35);
}
.askcard__dot { position: absolute; width: 4px; height: 4px; background: var(--gold-bright); box-shadow: 0 0 8px var(--gold-bright); }
.askcard__dot:nth-of-type(1) { right: 24px; top: 24px; }
.askcard__dot:nth-of-type(2) { right: 90px; top: 24px; }
.askcard__dot:nth-of-type(3) { right: 24px; top: 84px; }
.askcard__dot:nth-of-type(4) { right: 90px; top: 84px; animation: blink 1.6s steps(2) infinite; }
@keyframes blink { 50% { opacity: .15; } }
.askcard__text { margin: 0 0 18px; color: var(--text-2); font-size: .92rem; max-width: 32ch; position: relative; }
.askcard__cta { display: flex; flex-wrap: wrap; gap: 10px; position: relative; }
.faq-aside { align-self: start; }

/* FAQ accordions on location + guide pages */
.place-faq .faq-list { margin-top: 26px; }
.faq-list--wide { max-width: 860px; }

/* ---------- Service scope list (service pages) ---------- */
.scope-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.scope-item, .scope-list > .scope-item:last-child {
  flex-direction: column; gap: 10px; padding: 20px 22px; border: 1px solid var(--rule); border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .01)), var(--paper);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.scope-item:hover { border-color: rgba(212, 178, 116, .45); transform: translateY(-3px); }
.scope-item__tag { width: auto; color: var(--gold-bright); }
.scope-item b { font-size: 1.08rem; }
@media (max-width: 640px) { .scope-list { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Location service rows with renders ---------- */
.place-rows { gap: 12px; }
.place-row, .place-rows > .place-row:last-child {
  grid-template-columns: 88px 140px minmax(0, 1fr); align-items: center; gap: 22px;
  padding: 12px 22px 12px 12px; border: 1px solid var(--rule); border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .01)), var(--paper);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.place-row__thumb { width: 88px; height: 88px; object-fit: cover; border-radius: 8px; transition: transform .8s var(--ease); }
.place-row:hover { border-color: rgba(212, 178, 116, .45); transform: translateX(6px); color: var(--fg); }
.place-row:hover .place-row__thumb { transform: scale(1.06); }
.place-row:hover b { color: var(--gold-bright); }
@media (max-width: 640px) {
  .place-row, .place-rows > .place-row:last-child { grid-template-columns: 72px minmax(0, 1fr); }
  .place-row__thumb { width: 72px; height: 72px; grid-row: span 2; }
}

/* ---------- End CTA band: contour rings, metallic headline, two actions ---------- */
.endcta { position: relative; overflow: hidden; isolation: isolate; padding: clamp(80px, 10vw, 150px) 0; }
.endcta::before {
  content: ""; position: absolute; z-index: -1; left: 50%; top: 50%; width: 1100px; height: 1100px; transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(166, 121, 57, .28), transparent 45%),
    repeating-radial-gradient(circle, transparent 0 30px, rgba(212, 178, 116, .08) 30px 31px);
  -webkit-mask-image: radial-gradient(circle, #000 20%, transparent 62%);
  mask-image: radial-gradient(circle, #000 20%, transparent 62%);
  animation: rings 14s linear infinite;
}
@keyframes rings { to { transform: translate(-50%, -50%) rotate(360deg); } }
.endcta__in { max-width: 820px; }
.endcta h2 { font-size: clamp(2.4rem, 1.2rem + 4.4vw, 5.2rem); letter-spacing: -.045em; line-height: .95; }
.endcta__eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(212, 178, 116, .35); background: rgba(166, 121, 57, .08);
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-bright);
}
.endcta__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.endcta .btn-outline { color: var(--on-ink); border-color: rgba(242, 239, 236, .3); }

/* ---------- Article hero: faint contour glow so guides aren't flat ---------- */
.article-hero, .place-hero, .page-hero { position: relative; isolation: isolate; }
.article-hero::after, .place-hero::after {
  content: ""; position: absolute; z-index: -1; right: -200px; top: -200px; width: 800px; height: 800px; pointer-events: none;
  background: repeating-radial-gradient(circle, transparent 0 26px, rgba(212, 178, 116, .06) 26px 27px);
  -webkit-mask-image: radial-gradient(circle, #000 15%, transparent 65%);
  mask-image: radial-gradient(circle, #000 15%, transparent 65%);
}
.article-hero, .place-hero { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .endcta::before, .askcard__dot, .js .process__list.is-drawn::after { animation: none; }
}
.scope-list > .scope-item:last-child:nth-child(odd) { grid-column: 1 / -1; }


/* ==========================================================================
   Craft pass: typography, rhythm, radius system, restraint, finishing detail.
   Loaded last; everything here refines, nothing adds new sections.
   ========================================================================== */

:root {
  --r-sm: 8px;    /* buttons, inputs, chips */
  --r-md: 14px;   /* cards */
  --r-lg: 20px;   /* panels, maps, feature cards */
  --hair: linear-gradient(90deg, transparent, rgba(212, 178, 116, .35) 20%, rgba(242, 239, 236, .12) 50%, rgba(212, 178, 116, .35) 80%, transparent);
}

/* ---------- 1. Typography: lighter, larger, calmer ---------- */
/* Poppins Black is reserved for the hero's giant words and the footer mark.
   Everything else steps down to SemiBold/Medium with tighter optical tracking. */
h1, h2, h3, h4, h5 { font-weight: 600; letter-spacing: -0.035em; line-height: 1.04; }
.h2, .jobpick__title, .endcta h2 { font-size: clamp(2.2rem, 1.1rem + 3.4vw, 4.4rem); font-weight: 500; letter-spacing: -0.045em; line-height: 1; }
.h3 { font-weight: 600; letter-spacing: -0.025em; }
h1 em, h2 em, h3 em { font-weight: inherit; }
.hero3d__foot .hero__title { font-weight: 600; font-size: clamp(2.1rem, 1rem + 2.8vw, 3.6rem); letter-spacing: -0.045em; line-height: 1.02; }
.page-hero__title, .place-hero__title, .article-hero__title { font-weight: 600; letter-spacing: -0.05em; line-height: .98; }
.svc-row__name b, .coverage__name { font-weight: 600; letter-spacing: -0.035em; }
.trust__item b { font-weight: 600; letter-spacing: -0.03em; }
.process__step h4, .review-feature blockquote { font-weight: 500; }
.review-feature blockquote { letter-spacing: -0.02em; line-height: 1.3; }
.endcta h2 { letter-spacing: -0.05em; }
.brand__lockup b { font-weight: 800; }

body { font-size: 1.0625rem; line-height: 1.7; text-rendering: optimizeLegibility; font-feature-settings: "ss01", "kern"; }
.lead { color: var(--text-2); font-weight: 400; line-height: 1.65; }
p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }

/* Mono labels: quieter, so fewer things compete */
.head__num { font-size: .7rem; letter-spacing: .16em; color: var(--muted); }
.head__num::after { background: var(--hair); opacity: .7; }
.eyebrow { font-size: .72rem; letter-spacing: .16em; }

/* ---------- 2. Restraint: tone down the loud bits ---------- */
/* Ticker: from a solid gold slab to a dark rail with gold type */
.ticker { background: #121112; color: var(--gold-bright); border-block: 1px solid rgba(212, 178, 116, .18); }
.ticker span { font-weight: 500; letter-spacing: -0.01em; padding-block: 18px; }
.ticker svg { color: var(--gold); opacity: .8; }

/* Section joins: gradient hairlines instead of hard colour steps */
.sec + .sec, .jobpick, .trust, .endcta, .site-footer { position: relative; }
.sec + .sec::before, .endcta + .site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--hair); opacity: .6; pointer-events: none;
}

/* ---------- 3. One radius system ---------- */
.btn, .field input, .field select, .field textarea, .nodes__chip, .jobpick__chip { border-radius: var(--r-sm); }
.process__step, .review, .scope-item, .place-row, .scope-list > .scope-item:last-child, .place-rows > .place-row:last-child,
.askcard, .contact-card, .credentials, .callout, .quote-panel, .glass { border-radius: var(--r-md); }
.review-feature, .covmap-wrap, .nodes, .page-hero__render, .svc-float { border-radius: var(--r-lg); }

/* ---------- 4. Buttons with a machined finish ---------- */
.btn { letter-spacing: .1em; padding-inline: 22px; }
.btn-gold {
  background: linear-gradient(180deg, #C39A5A 0%, #A67939 55%, #936A30 100%);
  border-color: #B88B48;
  box-shadow: inset 0 1px 0 rgba(255, 236, 200, .45), 0 10px 30px -12px rgba(166, 121, 57, .7);
}
.btn-outline { background: rgba(255, 255, 255, .02); border-color: rgba(242, 239, 236, .22); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06); }
.btn-outline:hover { background: rgba(255, 255, 255, .08); color: var(--fg); border-color: rgba(242, 239, 236, .45); }

/* ---------- 5. Hero foot: tidy alignment ---------- */
.hero3d__foot { align-items: center; padding-top: 12px; }
.hero3d__foot .hero__urgent { display: flex; align-items: baseline; gap: 10px; }
.hero3d__foot .hero__urgent .pulse { flex: none; transform: translateY(-1px); }
.hero__ticks { gap: 8px; }
.hero__ticks li {
  padding: 6px 10px; border: 1px solid var(--rule); border-radius: 999px; background: rgba(255, 255, 255, .02);
  font-size: .64rem;
}
.hero3d__actions .hero__cta .btn { min-width: 220px; }

/* ---------- 6. Spotlight: cards light up under the cursor ---------- */
.spot { position: relative; }
.spot::after {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(212, 178, 116, .16), transparent 60%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.spot:hover::after { opacity: 1; }

/* ---------- 7. Scroll progress hairline under the header ---------- */
.scroll-progress {
  position: fixed; left: 0; top: 0; z-index: 120; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform-origin: 0 50%; transform: scaleX(var(--progress, 0));
  box-shadow: 0 0 10px rgba(212, 178, 116, .8);
  pointer-events: none;
}

/* ---------- 8. Rhythm: more air around section intros ---------- */
.head { margin-bottom: clamp(48px, 6vw, 88px); }
.head p { font-size: 1.02rem; line-height: 1.7; }
.sec { padding: clamp(88px, 7vw + 40px, 168px) 0; }

@media (prefers-reduced-motion: reduce) { .scroll-progress { display: none; } }
.hero3d__foot .hero__urgent { flex-wrap: nowrap; }
.hero3d__foot .hero__urgent > span:last-child { flex: 1; min-width: 0; }


/* ==========================================================================
   Luxe direction (v5): quiet, editorial, architectural.
   Serif display + Poppins text, warm charcoal alternating with ivory,
   gold as hairline and detail only. No glows, no dashboards, no pulses.
   Loaded last: overrides the earlier layers on purpose.
   ========================================================================== */


:root {
  --font-display: "Instrument Serif", "Iowan Old Style", Georgia, serif;

  /* warm charcoal, not pure black */
  --paper: #11100F;
  --paper-2: #171513;
  --paper-3: #1E1B19;
  --card: #181614;
  --ink: #161412;
  --ink-2: #1C1A18;
  --ink-3: #24211E;

  --fg: #F2EDE4;
  --text: #EAE4DA;
  --text-2: #B7AFA4;
  --muted: #8A8278;
  --gold-text: #CDAE74;
  --rule: rgba(234, 228, 218, .10);
  --rule-strong: rgba(234, 228, 218, .26);
  --on-ink: #EAE4DA;
  --on-ink-2: #B7AFA4;
  --rule-ink: rgba(234, 228, 218, .10);

  --r-sm: 999px;
  --r-md: 4px;
  --r-lg: 4px;
  --shadow-card: none;
  --glass: none;
}

/* Ivory sections re-point the same tokens, so every component adapts */
.sec--ivory {
  --paper: #ECE6DC;
  --paper-2: #E5DED2;
  --paper-3: #F4EFE7;
  --card: #F4EFE7;
  --fg: #171514;
  --text: #1B1917;
  --text-2: #4B4640;
  --muted: #6F685F;
  --gold-text: #7F5C2B;
  --rule: rgba(23, 21, 20, .12);
  --rule-strong: rgba(23, 21, 20, .34);
  background: var(--paper) !important;
  background-image: none !important;
  color: var(--text);
}
.sec--ivory ::selection { background: #171514; color: #ECE6DC; }

body { background: var(--paper); }
body::before { opacity: .10; mix-blend-mode: soft-light; }

/* ---------- Typography ---------- */
h1, h2, h3, .h2, .h3, .jobpick__title, .endcta h2, .statement__text,
.spread__title, .coverage__name, .review-feature blockquote, .askcard__title {
  font-family: var(--font-display); font-weight: 400; letter-spacing: -0.012em;
}
h1, h2, h3 { line-height: 1.02; }
h1 em, h2 em, h3 em, .statement__text em { font-style: italic; color: inherit; }
.h2, .jobpick__title { font-size: clamp(2.8rem, 1.2rem + 4.2vw, 5.6rem); line-height: .98; }
.hero3d__foot .hero__title, .page-hero__title, .place-hero__title, .article-hero__title {
  font-family: var(--font-display); font-weight: 400; letter-spacing: -0.015em; line-height: .96;
}
.hero3d__foot .hero__title { font-size: clamp(2.6rem, 1.1rem + 3.6vw, 4.8rem); max-width: 14ch; }
.page-hero__title, .place-hero__title, .article-hero__title { font-size: clamp(3rem, 1.2rem + 5vw, 6.4rem); }

/* Labels: small tracked Poppins, not code-style mono */
.eyebrow, .head__num, .statement__kicker, .spread__tag, .glass__bar, .coverage__code, .nodes__label,
.review cite, .review-feature cite, .field label, .crumbs, .article-meta, .endcta__eyebrow, .credentials dt, .callout__label {
  font-family: var(--font-body); font-weight: 500; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
}
.eyebrow { color: var(--gold-text); }
.eyebrow::before { width: 18px; height: 1px; background: currentColor; }
.head__num { color: var(--muted); }
.head__num::after { background: var(--rule-strong); opacity: 1; }
.head p, .lead { color: var(--text-2); }

/* ---------- Buttons: two quiet styles ---------- */
.btn {
  font-family: var(--font-body); font-weight: 500; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  border-radius: 999px; padding: 15px 26px; min-height: 48px; box-shadow: none !important;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.btn-gold, .btn-dark { background: var(--fg); color: var(--paper); border: 1px solid var(--fg); }
.btn-gold:hover, .btn-dark:hover { background: transparent; color: var(--fg); border-color: var(--fg); transform: none; }
.btn-outline, .btn-ghost-ink { background: transparent; color: var(--fg); border: 1px solid var(--rule-strong); }
.btn-outline:hover, .btn-ghost-ink:hover { border-color: var(--fg); background: transparent; color: var(--fg); transform: none; }
.btn svg { width: 15px; height: 15px; }
.site-header .btn-gold { padding: 11px 20px; min-height: 40px; }
.mobile-bar .btn-gold { background: #F2EDE4; color: #11100F; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 500; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; text-decoration: none;
  color: var(--fg); padding-bottom: 6px; border-bottom: 1px solid var(--rule-strong);
  transition: border-color .3s ease, gap .3s ease;
}
.link-arrow::after { content: "\2192"; font-size: 1rem; letter-spacing: 0; transition: transform .3s ease; }
.link-arrow:hover { border-color: var(--fg); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ---------- Header ---------- */
.topbar { background: #0C0B0A; }
.site-header { background: rgba(17, 16, 15, .82); border-bottom-color: var(--rule); }
.nav-links a { font-family: var(--font-body); font-weight: 500; font-size: .72rem; letter-spacing: .14em; }
.nav-links a::after { background: var(--fg) !important; height: 1px !important; }

/* ---------- Kill the template tropes ---------- */
.pulse { width: 6px; height: 6px; background: var(--gold); }
.pulse::after { display: none; }
.spot::after, .scroll-progress, .fab-quote .pulse { display: none; }
.hero3d::before, .jobpick::before, .jobpick::after, .quote-sec::after, .article-hero::after, .place-hero::after { display: none !important; }
.sec--ink, .energy, .endcta, .site-footer, .quote-sec { background-image: none !important; }
.cov3d__radar { display: none; }
.cov3d__spark { filter: none; stroke-width: 1.6; stroke: #E6D2A8; }
.cov3d__coast { filter: none; }
.nodes__core { box-shadow: none; border-color: var(--rule-strong); }
.nodes__core img { filter: none; animation: none; }
.nodes__ring { display: none; }
.nodes__chip::before { box-shadow: none; }
.nodes { background: var(--paper-2); }
.footer__wordmark { filter: none; opacity: .5; }

/* ---------- Hero ---------- */
.hero3d__word { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.03em; line-height: .82; }
.hero3d__word--back {
  font-style: italic;
  background: linear-gradient(180deg, #F2EDE4 0%, rgba(242, 237, 228, .72) 70%, rgba(242, 237, 228, .35) 100%);
  -webkit-background-clip: text; background-clip: text;
}
.hero3d__word--front { -webkit-text-stroke: 0; color: rgba(242, 237, 228, .16); text-shadow: none; }
.hero__urgent { font-size: .9rem; color: var(--text-2); }
.hero__urgent a { color: var(--fg); text-decoration-color: var(--gold); text-decoration-thickness: 1px; }
.hero__ticks li { border: 0; padding: 0; background: none; font-family: var(--font-body); font-weight: 500; font-size: .66rem; letter-spacing: .16em; color: var(--muted); }
.hero__ticks svg { color: var(--gold); }

/* ---------- Statement ---------- */
.statement { padding: clamp(110px, 12vw, 200px) 0; }
.statement__kicker { color: var(--muted); margin: 0 0 32px; }
.statement__text {
  font-size: clamp(2.1rem, 1rem + 3vw, 4.2rem); line-height: 1.08; color: var(--fg);
  max-width: 24ch; margin: 0 0 clamp(64px, 7vw, 110px);
}
.statement__text em { color: var(--gold-text); }
.statement__creds { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 0; border-top: 1px solid var(--rule-strong); }
.statement__creds div { padding: 22px 20px 0 0; }
.statement__creds dt { font-weight: 500; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.statement__creds dd { margin: 0; font-family: var(--font-display); font-size: clamp(1.3rem, 1rem + .8vw, 1.8rem); color: var(--fg); }
@media (max-width: 900px) { .statement__creds { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 24px; } }

/* ---------- Services as editorial spreads ---------- */
.spreads { display: grid; gap: clamp(80px, 9vw, 160px); }
.spread { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(36px, 7vw, 120px); align-items: center; }
.spread:nth-child(even) .spread__media { order: 2; }
.spread__media { position: relative; margin: 0; aspect-ratio: 4 / 5; max-height: 720px; overflow: hidden; background: #0B0A09; }
.spread__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 1.8s cubic-bezier(.16, 1, .3, 1); }
.spread:hover .spread__media img { transform: scale(1.06); }
.spread__media figcaption { position: absolute; left: 16px; bottom: 14px; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(234, 228, 218, .5); }
.spread__num { display: block; font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--gold-text); margin-bottom: 22px; }
.spread__title { font-size: clamp(2.8rem, 1.4rem + 3.6vw, 5rem); line-height: .95; margin: 0 0 16px; color: var(--fg); }
.spread__tag { color: var(--muted); margin: 0 0 34px; }
.spread__list { list-style: none; margin: 0 0 40px; padding: 0; border-top: 1px solid var(--rule); max-width: 440px; }
.spread__list li { padding: 14px 0; border-bottom: 1px solid var(--rule); color: var(--text-2); font-size: .98rem; }
@media (max-width: 860px) {
  .spread { grid-template-columns: minmax(0, 1fr); }
  .spread:nth-child(even) .spread__media { order: 0; }
  .spread__media { aspect-ratio: 4 / 3; }
}

/* ---------- Job picker (ivory) ---------- */
.jobpick { padding: clamp(96px, 10vw, 160px) 0; border-top: 0; }
.jobpick__chip {
  background: transparent !important; border: 0 !important; border-bottom: 1px solid var(--rule-strong) !important;
  border-radius: 0 !important; color: var(--fg) !important; min-height: 64px; padding: 16px 0;
  font-family: var(--font-display); font-weight: 400; font-size: 1.45rem; letter-spacing: -0.01em;
}
.jobpick__chip svg { color: var(--fg) !important; }
.jobpick__chip:hover, .jobpick__chip:focus-visible { background: transparent !important; color: var(--gold-text) !important; transform: none; border-bottom-color: var(--fg) !important; }
.jobpick__chips { column-gap: 40px; row-gap: 0; }

/* ---------- Process (ivory): numerals, rules, no cards ---------- */
.process__list::before, .process__list::after { display: none; }
.process__list { gap: 32px; }
.process__step { background: none !important; border: 0 !important; border-top: 1px solid var(--rule-strong) !important; border-radius: 0 !important; padding: 26px 0 0 !important; box-shadow: none !important; transform: none !important; }
.process__node { background: none !important; border: 0 !important; box-shadow: none !important; width: auto; height: auto; margin-bottom: 26px; font-family: var(--font-display); font-style: italic; font-size: 2.6rem; color: var(--gold-text) !important; transform: none !important; }
.process__step h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.7rem; letter-spacing: -0.01em; }

/* ---------- Trust + coverage + nodes ---------- */
.coverage { border-top-color: var(--rule-strong); }
.coverage__row--home::before { background: var(--gold); height: 1px; top: -1px; }
.coverage__links a { border-bottom-width: 1px; }
.covmap-wrap { background: var(--paper-2); box-shadow: none; }

/* ---------- Reviews (ivory): a pull quote and plain testimonies ---------- */
.review-feature { background: none !important; border: 0 !important; padding: 0 0 clamp(56px, 6vw, 90px) !important; border-bottom: 1px solid var(--rule-strong) !important; }
.review-feature::before { content: "\201C"; font-family: var(--font-display); font-weight: 400; font-size: 9rem; line-height: .6; -webkit-text-stroke: 0; color: var(--gold); position: static; display: block; margin-bottom: 8px; opacity: .8; }
.review-feature blockquote { font-size: clamp(1.9rem, 1rem + 2.6vw, 3.6rem); line-height: 1.08; max-width: 26ch; color: var(--fg); }
.review-feature__stars, .review__stars { color: var(--gold-text) !important; text-shadow: none !important; letter-spacing: 3px; }
.review-feature__full { color: var(--text-2); }
.review-grid { gap: 0 48px; margin-top: 0; }
.review { background: none !important; border: 0 !important; border-bottom: 1px solid var(--rule) !important; border-radius: 0 !important; padding: 32px 0 !important; transform: none !important; }
.review p { color: var(--text); font-size: 1rem; }
.review--more { background: none !important; border: 0 !important; border-bottom: 1px solid var(--rule) !important; color: var(--fg) !important; min-height: 0; }
.review--more b { font-family: var(--font-display); font-weight: 400; font-size: 1.8rem; }
.review--more .mono { color: var(--muted); }
.review--more svg { color: var(--fg); }

/* ---------- FAQ ---------- */
.faq-list summary { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.3rem, 1rem + .7vw, 1.7rem); letter-spacing: -0.005em; }
.faq-list details { border-color: var(--rule); }
.faq-list summary .icon { border-color: var(--rule-strong); }
.askcard { background: var(--paper-2) !important; border: 1px solid var(--rule) !important; box-shadow: none !important; border-radius: 4px; }
.askcard__title { font-size: 2.2rem; line-height: 1; letter-spacing: -0.01em; text-transform: none; text-shadow: none; }
.askcard__title br { display: none; }

/* ---------- Quote (ivory) ---------- */
.quote-panel { background: transparent !important; border: 0 !important; box-shadow: none !important; padding: 0 !important; }
.field input, .field select, .field textarea {
  background: transparent !important; border: 0 !important; border-bottom: 1px solid var(--rule-strong) !important;
  border-radius: 0 !important; padding: 12px 0 !important; color: var(--text) !important; font-size: 1.02rem;
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--fg) !important; background: transparent !important; }
.field select option { background: #F4EFE7; color: #171514; }
.field textarea { min-height: 96px; }
.quote-copy a { color: var(--fg); text-decoration-color: var(--gold); }
.form-note { color: var(--muted); }

/* ---------- Glass/cards elsewhere become flat, ruled surfaces ---------- */
.credentials, .callout, .contact-card, .glass {
  background: var(--card) !important; border: 1px solid var(--rule) !important; box-shadow: none !important;
  -webkit-backdrop-filter: none !important; backdrop-filter: none !important; border-radius: 4px !important;
}
.page-hero__visual .credentials { background: rgba(17, 16, 15, .92) !important; }
.scope-item, .scope-list > .scope-item:last-child { background: none !important; border: 0 !important; border-top: 1px solid var(--rule-strong) !important; border-radius: 0 !important; padding: 22px 0 !important; transform: none !important; }
.scope-item b { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; letter-spacing: -0.01em; }
.place-row, .place-rows > .place-row:last-child { background: none !important; border: 0 !important; border-bottom: 1px solid var(--rule) !important; border-radius: 0 !important; padding: 16px 0 !important; transform: none !important; }
.place-row b { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; }
.place-row__thumb { border-radius: 2px; }

/* ---------- Closing band ---------- */
.endcta { background: var(--paper-2) !important; }
.endcta::before { display: none; }
.endcta h2 { font-size: clamp(3rem, 1.4rem + 4.6vw, 6.4rem); color: var(--fg); background: none; -webkit-background-clip: border-box; background-clip: border-box; letter-spacing: -0.02em; }
.endcta__eyebrow { border: 0; background: none; padding: 0; color: var(--gold-text); }

/* Metal gradient text is retired outside the hero */
.metal-text { color: var(--fg); background: none; }

/* ---------- Refinements after first luxe render ---------- */
/* Monospace retired: every label speaks in tracked Poppins */
:root { --font-mono: var(--font-body); }
.mono, .energy__item .mono, .nodes__chip, .footer__phone-label, .footer__legal, .cov3d text { letter-spacing: .14em; }
.nodes__chip { font-size: .64rem; font-weight: 500; }

/* Hero: a calmer fallback and a headline that sets in three lines, not five */
.hero3d__fallback { filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .6)); opacity: .9; }
.hero3d__foot .hero__title { max-width: 19ch; }
@media (min-width: 861px) { .hero3d__foot { grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); } }

/* Ivory sections: fix leftover dark-band colours */
.sec--ivory .lead, .sec--ivory .quote-copy .lead { color: var(--text-2); }
.sec--ivory .hero__ticks li { color: var(--muted); }
.sec--ivory .eyebrow { color: var(--gold-text); }
.sec--ivory .field .consent { color: var(--text-2); }
.sec--ivory .consent input { accent-color: #171514; }

/* Footer: serif phone number, quiet rules */
.footer__phone { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.02em; font-size: clamp(3.4rem, 1.6rem + 6vw, 7.5rem); line-height: .9; }
.footer__phone-label { color: var(--muted); font-size: .66rem; }
.site-footer h5, .footer__col h5 { font-weight: 500; letter-spacing: .2em; color: var(--muted); }
.site-footer a { transition: color .3s ease; }

/* Energy (solar) list: labels in the new voice */
.energy__item .mono { color: var(--gold-text); font-size: .64rem; }
.energy__item b { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; letter-spacing: -0.005em; }

/* Articles + callout on ivory */
.callout__fact { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.4rem, 1.4rem + 2vw, 3.4rem); letter-spacing: -0.01em; color: var(--fg) !important; background: none !important; -webkit-text-fill-color: currentColor; }
.callout__note { color: var(--text-2) !important; }
.callout__label { color: var(--gold-text) !important; }
.article-body h2, .article-body h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.7rem, 1.2rem + 1vw, 2.2rem); letter-spacing: -0.01em; margin: 1.6em 0 .5em; }
.article-body strong { font-weight: 600; color: var(--fg); }
.article-body li::marker { color: var(--gold-text); }
.article-body a { color: var(--fg); text-decoration-color: var(--gold); }
.callout { color: var(--text) !important; }
.scope-item__tag, .place-row__tag { color: var(--gold-text) !important; font-family: var(--font-body); font-weight: 500; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; }


/* ==========================================================================
   Steel direction (v6): engineered, architectural, confident.
   Keeps the editorial layout and restraint of v5, but swaps the soft signals
   (serif italics, warm ivory, pill buttons) for condensed grotesk type,
   graphite and concrete, square geometry and a sharp brand-gold accent.
   ========================================================================== */

@font-face {
  font-family: "Archivo"; font-style: normal; font-display: swap;
  font-weight: 100 900; font-stretch: 62% 125%;
  src: url("assets/fonts/archivo-latin-wdth-normal.woff2") format("woff2");
}

:root {
  --font-display: "Archivo", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-label: "Archivo", "Helvetica Neue", Arial, sans-serif;

  /* graphite + steel (cool, not warm) */
  --paper: #0E0F10;
  --paper-2: #141618;
  --paper-3: #1B1D20;
  --card: #16181B;
  --ink: #121416;
  --ink-2: #181A1D;
  --ink-3: #202326;
  --fg: #EEEFF0;
  --text: #E3E4E6;
  --text-2: #A5A9AE;
  --muted: #7B8086;
  --gold-text: #D4B274;
  --rule: rgba(227, 228, 230, .10);
  --rule-strong: rgba(227, 228, 230, .24);
  --on-ink: #E3E4E6;
  --on-ink-2: #A5A9AE;

  --r-sm: 2px;
  --r-md: 2px;
  --r-lg: 2px;
}

/* Light bands: concrete, not cream */
.sec--ivory {
  --paper: #D5D3CE;
  --paper-2: #CBC8C2;
  --paper-3: #DEDCD8;
  --card: #DEDCD8;
  --fg: #0E0F10;
  --text: #141618;
  --text-2: #41454A;
  --muted: #62666B;
  --gold-text: #6B4C21;
  --rule: rgba(14, 15, 16, .14);
  --rule-strong: rgba(14, 15, 16, .40);
}
.sec--ivory ::selection { background: #0E0F10; color: #D5D3CE; }

/* ---------- Display type: condensed grotesk, upright, no italics ---------- */
h1, h2, h3, .h2, .h3, .jobpick__title, .endcta h2, .spread__title, .coverage__name, .askcard__title,
.hero3d__foot .hero__title, .page-hero__title, .place-hero__title, .article-hero__title, .footer__phone,
.process__node, .spread__num, .callout__fact, .statement__creds dd {
  font-family: var(--font-display); font-style: normal;
}
h1 em, h2 em, h3 em, .statement__text em { font-style: normal; color: var(--gold-text); }

.h2, .jobpick__title, .endcta h2,
.hero3d__foot .hero__title, .page-hero__title, .place-hero__title, .article-hero__title {
  font-weight: 700; font-stretch: 72%; text-transform: uppercase; letter-spacing: -0.005em; line-height: .9;
}
.h2, .jobpick__title { font-size: clamp(2.8rem, 1.2rem + 4.4vw, 6rem); }
.hero3d__foot .hero__title { font-size: clamp(2.6rem, 1rem + 4vw, 5.2rem); max-width: 16ch; }
.page-hero__title, .place-hero__title, .article-hero__title { font-size: clamp(3rem, 1rem + 5.6vw, 7rem); }
.endcta h2 { font-size: clamp(3rem, 1.2rem + 5vw, 7rem); }

/* Secondary headings: sentence case, normal width, solid weight */
.spread__title { font-weight: 700; font-stretch: 72%; text-transform: uppercase; font-size: clamp(3rem, 1.4rem + 4vw, 5.6rem); line-height: .88; letter-spacing: 0; }
.coverage__name { font-weight: 700; font-stretch: 80%; text-transform: uppercase; letter-spacing: 0; }
.process__step h4, .faq-list summary, .review--more b, .askcard__title, .scope-item b, .place-row b, .energy__item b,
.article-body h2, .article-body h3 {
  font-family: var(--font-display); font-weight: 600; font-stretch: 100%; letter-spacing: -0.01em; text-transform: none;
}
.faq-list summary { font-size: clamp(1.1rem, .95rem + .45vw, 1.35rem); }
.process__step h4 { font-size: 1.35rem; }
.scope-item b, .place-row b { font-size: 1.2rem; }
.article-body h2, .article-body h3 { font-size: clamp(1.35rem, 1.1rem + .6vw, 1.7rem); }
.askcard__title { font-size: 1.7rem; font-weight: 700; font-stretch: 80%; text-transform: uppercase; }

/* Statement: a firm sentence, not a flourish */
.statement__text { font-family: var(--font-display); font-weight: 500; font-stretch: 100%; letter-spacing: -0.02em; line-height: 1.12; font-size: clamp(1.9rem, 1rem + 2.4vw, 3.4rem); max-width: 28ch; }
.statement__creds dd { font-weight: 700; font-stretch: 85%; text-transform: uppercase; letter-spacing: .01em; font-size: clamp(1.2rem, 1rem + .6vw, 1.6rem); }

/* Numerals: technical, upright, gold */
.spread__num, .process__node {
  font-weight: 700; font-stretch: 112%; font-style: normal !important; letter-spacing: .06em; color: var(--gold-text) !important;
}
.spread__num { font-size: .9rem; display: flex; align-items: center; gap: 14px; }
.process__node { font-size: 2.4rem; letter-spacing: 0; font-stretch: 80%; }

/* Labels: expanded technical caps (engineering drawing voice) */
.eyebrow, .head__num, .statement__kicker, .spread__tag, .coverage__code, .nodes__label, .review cite, .review-feature cite,
.field label, .crumbs, .article-meta, .endcta__eyebrow, .credentials dt, .callout__label, .statement__creds dt,
.hero__ticks li, .footer__phone-label, .site-footer h5, .scope-item__tag, .place-row__tag, .energy__item .mono, .nodes__chip,
.spread__media figcaption, .link-arrow, .btn, .nav-links a, .jobpick__chip {
  font-family: var(--font-label); font-stretch: 115%; font-weight: 600;
}
.eyebrow, .head__num, .statement__kicker, .spread__tag, .field label, .crumbs, .article-meta, .endcta__eyebrow,
.credentials dt, .callout__label, .statement__creds dt, .coverage__code, .scope-item__tag, .place-row__tag {
  font-size: .64rem; letter-spacing: .16em;
}
.eyebrow::before, .head__num::before, .head__num::after, .spread__num::after { display: none !important; content: none !important; }
.nav-links a { font-size: .68rem; letter-spacing: .14em; }

/* ---------- Buttons: rectangular, gold primary ---------- */
.btn { border-radius: 2px; font-size: .7rem; letter-spacing: .14em; padding: 16px 24px; min-height: 50px; }
.btn-gold, .btn-dark { background: var(--gold); color: #0E0F10; border: 1px solid var(--gold); }
.btn-gold:hover, .btn-dark:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: #0E0F10; }
.sec--ivory .btn-gold, .sec--ivory .btn-dark { background: #0E0F10; color: #EEEFF0; border-color: #0E0F10; }
.sec--ivory .btn-gold:hover, .sec--ivory .btn-dark:hover { background: var(--gold); border-color: var(--gold); color: #0E0F10; }
.btn-outline, .btn-ghost-ink { border-radius: 2px; }
.mobile-bar .btn-gold { background: var(--gold); color: #0E0F10; }
.site-header .btn-gold { min-height: 42px; padding: 12px 18px; }
.link-arrow { font-size: .68rem; letter-spacing: .14em; border-bottom-width: 2px; border-bottom-color: var(--gold); }
.link-arrow:hover { border-bottom-color: var(--fg); }
.field input, .field select, .field textarea { font-family: var(--font-body); }

/* ---------- Hero ---------- */
.hero3d__word { font-family: var(--font-display); font-weight: 800; font-stretch: 62%; text-transform: uppercase; letter-spacing: -0.01em; line-height: .8; font-style: normal !important; }
.hero3d__word--back {
  background: linear-gradient(180deg, #F4F5F6 0%, #B9BDC2 55%, rgba(185, 189, 194, .35) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero3d__word--front { color: transparent; -webkit-text-stroke: 1px rgba(238, 239, 240, .45); }
.hero__ticks li { font-size: .6rem; letter-spacing: .16em; }

/* ---------- Precision details ---------- */
/* Crop marks on the editorial images, like a technical drawing */
.spread__media::before, .spread__media::after, .page-hero__render::before, .page-hero__render::after {
  content: ""; position: absolute; z-index: 2; width: 18px; height: 18px; pointer-events: none;
  border-color: var(--gold); border-style: solid;
}
.spread__media::before, .page-hero__render::before { left: 12px; top: 12px; border-width: 2px 0 0 2px; }
.spread__media::after, .page-hero__render::after { right: 12px; bottom: 12px; border-width: 0 2px 2px 0; }
.page-hero__render { position: relative; }
.spread__media, .page-hero__render, .place-row__thumb, .covmap-wrap, .nodes, .credentials, .callout, .contact-card, .askcard, .glass { border-radius: 2px !important; }

/* Section heads: a gold tick at the start of the rule */
.head__num { position: relative; padding-left: 0; }

/* Pull quote: a hard gold bar instead of a curly quote */
.review-feature::before { content: ""; display: block; width: 64px; height: 3px; background: var(--gold); margin-bottom: 30px; font-size: 0; }
.review-feature blockquote { font-family: var(--font-display); font-weight: 500; font-stretch: 100%; letter-spacing: -0.02em; line-height: 1.12; font-size: clamp(1.7rem, 1rem + 2vw, 3rem); max-width: 30ch; }

/* Jobpick rows: bold condensed caps */
.jobpick__chip { font-stretch: 80% !important; font-weight: 700 !important; text-transform: uppercase; letter-spacing: .02em !important; font-size: 1.15rem !important; }

/* Footer */
.footer__phone { font-weight: 800; font-stretch: 70%; letter-spacing: 0; font-size: clamp(3.6rem, 1.4rem + 7vw, 8.4rem); line-height: .85; }
.footer__wordmark { opacity: .35; }

/* Callout figure */
.callout__fact { font-weight: 800; font-stretch: 72%; letter-spacing: 0; }

/* Header: expanded caps are too wide for the nav row */
.nav-links a { font-stretch: 100%; letter-spacing: .1em; white-space: nowrap; }
.nav-links { gap: 26px; }
@media (min-width: 901px) and (max-width: 1240px) { .nav-links { gap: 18px; } .nav-links a { letter-spacing: .06em; } }

/* Hero headline: three lines at desktop */
.hero3d__foot .hero__title { max-width: 21ch; }
.hero3d__foot .hero__title { font-size: clamp(2.5rem, 1rem + 3.6vw, 4.6rem); }

/* Wide label font needs room checks */
.nodes__chip { font-stretch: 100%; letter-spacing: .08em; }
@media (max-width: 1100px) { .nodes__chip { font-size: .58rem; padding: 7px 9px; } }
@media (max-width: 480px) {
  .hero3d__actions .hero__cta .btn { min-width: 0; width: 100%; }
  .hero3d__actions .hero__cta { flex-direction: column; }
  .hero__urgent a { white-space: normal; }
  .hero__ticks { flex-wrap: wrap; }
  .hero__ticks li { font-stretch: 100%; letter-spacing: .1em; white-space: normal; }
  .btn { font-stretch: 100%; }
}
@media (max-width: 480px) { .hero__ticks { gap: 6px 12px; } .hero__ticks li { min-width: 0; flex: 0 1 auto; } }
@media (max-width: 360px) { .hero__ticks li { font-size: .54rem; letter-spacing: .06em; } .hero__ticks { gap: 6px 10px; } }
/* Narrow phones: long single words and addresses must never push the page wide */
p, li, dd, dt, .answer { overflow-wrap: anywhere; }
.spread__title { font-size: clamp(2.1rem, .9rem + 6vw, 5.6rem); }
@media (max-width: 480px) {
  .statement__creds { grid-template-columns: minmax(0, 1fr); }
  .statement__creds dt { letter-spacing: .12em; }
}

/* ---------- Form feedback: legible on concrete and graphite ---------- */
.form-status { font-family: var(--font-body); font-size: .92rem; line-height: 1.5; padding: 14px 16px; border-left: 3px solid currentColor; }
.form-status a { color: inherit; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.form-status.ok { color: #7FD39A; background: rgba(127, 211, 154, .08); }
.form-status.err { color: #F0948A; background: rgba(240, 148, 138, .08); }
.sec--ivory .form-status.ok, .sec--ivory .form-status.show:not(.err) { color: #1D5E33; background: rgba(29, 94, 51, .08); }
.sec--ivory .form-status.err { color: #8E2418; background: rgba(142, 36, 24, .07); }
.field__err { display: block; margin-top: 6px; font-size: .8rem; font-weight: 600; color: #F0948A; }
.sec--ivory .field__err { color: #8E2418; }
.field--err input, .field--err select, .field--err textarea { border-color: #F0948A !important; box-shadow: 0 0 0 1px #F0948A; }
.sec--ivory .field--err input, .sec--ivory .field--err select, .sec--ivory .field--err textarea { border-color: #8E2418 !important; box-shadow: 0 0 0 1px #8E2418; }

/* 404: onward routes */
.utility__links { list-style: none; margin: 40px 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; }
.utility h1 { font-family: var(--font-display); font-weight: 700; font-stretch: 72%; text-transform: uppercase; letter-spacing: -0.005em; line-height: .9; font-size: clamp(3rem, 1rem + 5.6vw, 7rem); max-width: 14ch; margin-inline: auto; }


/* ==========================================================================
   Controls (v7): the final word on buttons. Earlier layers set colour and
   shape several times over; everything a button looks like now lives here.

   Idea: a switchgear label. A solid plate with a separate "terminal" cell on
   the right holding the arrow, split by a hairline. On hover a graphite fill
   wipes across from the left, like a breaker being thrown.
   ========================================================================== */

:root {
  --brass: #C8A064;
  --brass-hi: #DDBB82;
  --graphite: #0E0F10;
  --cell: 50px;
}

.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: flex-start; gap: 12px;
  min-height: 54px; padding: 0 calc(var(--cell) + 22px) 0 22px;
  font-family: var(--font-label); font-stretch: 100%; font-weight: 700; font-size: .76rem;
  letter-spacing: .1em; text-transform: uppercase; line-height: 1.2; text-align: left;
  border: 1px solid transparent; border-radius: 0 !important; box-shadow: none !important;
  transform: none; transition: color .35s var(--ease), border-color .35s var(--ease);
}
.btn-lg { min-height: 60px; font-size: .8rem; }

/* graphite wipe */
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--wipe, var(--graphite));
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .45s cubic-bezier(.7, 0, .2, 1);
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); }

/* terminal cell with arrow */
.btn::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: var(--cell);
  border-left: 1px solid color-mix(in srgb, currentColor 28%, transparent);
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='square'%3E%3Cpath d='M4 12h15M13 6l6 6-6 6'/%3E%3C/svg%3E") center / 16px 16px no-repeat,
                linear-gradient(#000 0 0) left / 1px 100% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='square'%3E%3Cpath d='M4 12h15M13 6l6 6-6 6'/%3E%3C/svg%3E") center / 16px 16px no-repeat,
                linear-gradient(#000 0 0) left / 1px 100% no-repeat;
  opacity: .9;
  transition: transform .45s cubic-bezier(.7, 0, .2, 1);
}
.btn:hover::after { transform: translateX(4px); }

/* Phone buttons lead with the handset icon and carry no arrow cell */
.btn[href^="tel:"] { padding-right: 22px; justify-content: center; }
.btn[href^="tel:"]::after { display: none; }
.btn svg { width: 16px; height: 16px; flex: none; }

/* ---------- Variants ---------- */
.btn-gold, .btn-dark { background: var(--brass); color: var(--graphite); border-color: var(--brass); --wipe: var(--graphite); }
.btn-gold:hover, .btn-dark:hover, .btn-gold:focus-visible, .btn-dark:focus-visible { background: var(--brass); color: var(--brass-hi); border-color: var(--graphite); }

.btn-outline, .btn-ghost-ink { background: transparent; color: var(--fg); border-color: color-mix(in srgb, var(--fg) 30%, transparent); --wipe: var(--fg); }
.btn-outline:hover, .btn-ghost-ink:hover, .btn-outline:focus-visible, .btn-ghost-ink:focus-visible { background: transparent; color: var(--paper); border-color: var(--fg); }

/* On concrete the primary plate turns graphite and wipes to brass */
.sec--ivory .btn-gold, .sec--ivory .btn-dark { background: var(--graphite); color: #EEEFF0; border-color: var(--graphite); --wipe: var(--brass); }
.sec--ivory .btn-gold:hover, .sec--ivory .btn-dark:hover, .sec--ivory .btn-gold:focus-visible { background: var(--graphite); color: var(--graphite); border-color: var(--brass); }

.btn:focus-visible { outline: 2px solid var(--brass-hi); outline-offset: 3px; }
.sec--ivory .btn:focus-visible { outline-color: var(--graphite); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .55; cursor: progress; }
.btn:disabled::before { transform: scaleX(0); }

/* ---------- Placements ---------- */
.site-header .btn-gold { min-height: 42px; padding: 0 calc(40px + 16px) 0 16px; font-size: .68rem; --cell: 40px; }
.mobile-bar .btn { min-height: 50px; justify-content: center; }
.mobile-bar .btn-gold { background: var(--brass); color: var(--graphite); }
.btn-block, .credentials .btn, .contact-card .btn, .callout .btn, .docket__cta .btn, .mobile-bar .btn { width: 100%; }
.hero3d__actions .hero__cta .btn { min-width: 240px; }
@media (max-width: 480px) {
  .btn { font-size: .72rem; letter-spacing: .08em; }
  .hero3d__actions .hero__cta .btn { min-width: 0; width: 100%; }
}
@media (prefers-reduced-motion: reduce) { .btn::before, .btn::after { transition: none; } }


/* ==========================================================================
   Scene layer: the fixed 3D canvas behind every page.
   Stacking: canvas (0) < page content (1). Dark sections turn see-through so
   the scene shows; concrete bands stay opaque and slide over it like slabs.
   In the hero the back word sits under the canvas (-1) and the outlined front
   word above it, so the metal mark still passes between them.
   ========================================================================== */

.bg3d {
  position: fixed; inset: 0; z-index: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.bg3d.is-live { opacity: var(--bg3d-o, 1); transition: opacity .25s linear; }

.topbar, main > *:not(.hero3d), .site-footer { position: relative; z-index: 1; }
.hero3d__foot { position: relative; z-index: 1; }
.hero3d__word--back { z-index: -1; }

html.bg3d-on main > section:not(.sec--ivory),
html.bg3d-on .site-footer { background: transparent !important; }

/* A soft shadow under body copy where text sits over moving geometry */
html.bg3d-on main > section:not(.sec--ivory):not(.hero3d) .wrap { text-shadow: 0 1px 18px rgba(14, 15, 16, .85); }

/* Floating quote button: square like the rest of the controls */
.fab-quote { border-radius: 0; }

@media (prefers-reduced-motion: reduce) { .bg3d { display: none; } }
@media print { .bg3d { display: none; } }
