/* BRAMMOND BUILDING SERVICES LTD — styles
   Palette: roofing slate / lime-wash / London stock brick / chalk-line blue
   Type:    Bricolage Grotesque (display) · Hanken Grotesk (text) · DM Mono (drawing labels) */

:root {
  --slate: #1E2529;
  --slate-2: #262D32;
  --slate-3: #313940;
  --slate-deep: #151A1D;
  --lime: #F1EFE8;
  --lime-2: #FAF9F5;
  --lime-3: #E4E1D8;
  --lime-4: #CFCBC0;
  --brick: #C39A5E;
  --brick-2: #D8B57A;
  --brick-3: #8C6A36;
  --chalk: #2F5FC4;
  --chalk-2: #7FA0EE;
  --ink: #1B1F22;
  --ink-2: #4A5057;
  --ink-3: #7B8188;
  --on-slate: #EDEBE4;
  --on-slate-2: #A9AEB3;
  --font-display: "Bricolage Grotesque", "Archivo Black", "Arial Black", Impact, sans-serif;
  --font-body: "Hanken Grotesk", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "DM Mono", "Cascadia Mono", Consolas, monospace;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-inout: cubic-bezier(.65, 0, .35, 1);
  --wrap: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--lime);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; }
p, ul, ol { margin: 0; }
:focus-visible { outline: 2px solid var(--chalk); outline-offset: 3px; }

.skip {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--chalk); color: #fff; padding: .6em 1em; font-size: .9rem; text-decoration: none;
}
.skip:focus { left: 8px; }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.mono { font-family: var(--font-mono); }
.nowrap { white-space: nowrap; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brick-3);
  margin: 0 0 1.1rem;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--chalk); flex: none; }
.eyebrow--light { color: var(--brick-2); }
.eyebrow--plain::before { display: none; }

/* ---------- display type ---------- */

.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-variation-settings: "opsz" 96, "wdth" 92;
  letter-spacing: -.02em;
  line-height: .96;
}
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-variation-settings: "opsz" 72, "wdth" 94;
  font-size: clamp(2rem, 3.8vw, 3.3rem); line-height: 1.02; letter-spacing: -.02em; color: var(--ink);
  max-width: 18ch;
}
.section-title--light { color: var(--lime-2); }
.lede { font-size: clamp(1.15rem, 1.6vw, 1.35rem); line-height: 1.5; color: var(--ink-2); margin-top: 1.2rem; max-width: 46ch; }
.lede--light { color: var(--on-slate-2); }
.body-text { color: var(--ink-2); margin-top: 1rem; max-width: 52ch; }
.body-text--light { color: var(--on-slate-2); }

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

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center;
  color: var(--hdr-fg, var(--on-slate));
  transition: background .35s var(--ease-out), color .35s, box-shadow .35s;
}
.site-header.is-scrolled {
  background: var(--hdr-bg, rgba(30, 37, 41, .86));
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(195, 154, 94, .18);
}
body.theme-light { --hdr-fg: var(--ink); --hdr-bg: rgba(241, 239, 232, .88); }

.header__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.mk-tile { fill: var(--slate); }
.mk-b { fill: var(--brick); }
.mk-line { stroke: var(--chalk); stroke-width: 1.6; stroke-linecap: round; transition: transform .6s var(--ease-out); }
.brand:hover .mk-line { transform: translateX(3px); }
body.theme-light .mk-tile { fill: var(--slate); }
.brand__text { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: -.01em; font-variation-settings: "opsz" 24, "wdth" 95; }
.brand__sub { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--brick-2); }
body.theme-light .brand__sub { color: var(--brick-3); }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 34px); }
.nav a {
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; position: relative; padding: .3em 0;
}
.nav a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--brick); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.nav a:not(.nav__cta):hover::after, .nav a:not(.nav__cta):focus-visible::after, .nav a[aria-current="page"]:not(.nav__cta)::after { transform: scaleX(1); }
.nav__cta {
  border: 1px solid var(--brick); padding: .6em 1.15em !important; color: var(--brick-2); border-radius: 3px;
  transition: background .25s, color .25s;
}
body.theme-light .nav__cta { color: var(--brick-3); border-color: var(--brick-3); }
.nav__cta:hover, .nav__cta[aria-current="page"] { background: var(--brick); color: var(--slate); border-color: var(--brick); }

/* spirit level: the one instrument in the header; bubble reacts to scroll velocity */
.level {
  position: relative; width: 74px; height: 14px; border: 1px solid rgba(195, 154, 94, .55); border-radius: 7px;
  flex: none; margin-right: 6px;
}
.level::before, .level::after { content: ""; position: absolute; top: -1px; bottom: -1px; width: 1px; background: rgba(195, 154, 94, .55); left: 27px; }
.level::after { left: 45px; }
.level__bubble {
  position: absolute; top: 2px; left: 26px; width: 20px; height: 8px; border-radius: 4px;
  background: var(--chalk-2); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25); will-change: transform;
}
body.theme-light .level { border-color: rgba(140, 106, 54, .5); }
body.theme-light .level::before, body.theme-light .level::after { background: rgba(140, 106, 54, .5); }
body.theme-light .level__bubble { background: var(--chalk); }

.nav-toggle {
  display: none; font: inherit; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  background: none; border: 1px solid currentColor; color: inherit; padding: .5em 1em; cursor: pointer; border-radius: 3px;
}

/* ---------- buttons & links ---------- */

.btn {
  display: inline-flex; align-items: center; gap: .7em;
  padding: .95em 1.5em;
  font-family: var(--font-body); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--brick); border-radius: 3px; cursor: pointer; background: none; color: inherit;
  transition: background .25s var(--ease-out), color .25s, border-color .25s, transform .16s var(--ease-out);
}
.btn:active { transform: scale(.97); }
.btn--brick { background: var(--brick); color: var(--slate); }
.btn--brick:hover { background: var(--brick-2); border-color: var(--brick-2); }
.btn--ghost { color: var(--on-slate); border-color: rgba(237, 235, 228, .35); }
.btn--ghost:hover { border-color: var(--on-slate); background: rgba(237, 235, 228, .08); }
.btn--ink { color: var(--ink); border-color: var(--ink); }
.btn--ink:hover { background: var(--ink); color: var(--lime-2); }
.btn--slate { background: var(--slate); color: var(--lime-2); border-color: var(--slate); }
.btn--slate:hover { background: var(--slate-3); border-color: var(--slate-3); }
.btn .arrow { width: 14px; height: 14px; transition: transform .3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.link-plain {
  font-family: var(--font-mono); font-size: .92rem; letter-spacing: .02em; text-decoration: none;
  border-bottom: 1px solid currentColor; padding-bottom: 2px; transition: color .25s, border-color .25s;
}
.link-plain:hover { color: var(--chalk); }
.hero .link-plain:hover { color: var(--brick-2); }

/* ---------- reveal states (JS-gated so no-JS shows everything) ---------- */

html.js [data-intro] { opacity: 0; }
html.io [data-intro] { opacity: 1; transition: opacity .9s var(--ease-out); }
html.js .reveal { opacity: 0; transform: translateY(24px); }
html.io .reveal { transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
html.js .reveal.is-visible { opacity: 1; transform: none; }
html.js .wipe { clip-path: inset(0 100% 0 0); }
html.io .wipe { transition: clip-path 1.1s var(--ease-inout); }
html.js .wipe.is-visible { clip-path: inset(0 0 0 0); }

/* ---------- house drawing ---------- */

.house { width: 100%; height: auto; overflow: visible; --art-bg: var(--slate); --art-top: #262D32; --art-x: #181D21; --art-roof: #232A2F; --art-ln: #EDEBE4; --art-glass: #2E3D4B; --art-dim: var(--chalk-2); }
.house .face { fill: var(--art-bg); stroke: none; }
.house .face--top { fill: var(--art-top); }
.house .face--x { fill: var(--art-x); }
.house .face--roof { fill: var(--art-roof); }
.house .face--board { fill: rgba(195, 154, 94, .35); }
.house .face--wheel { fill: #0F1315; }
.house .face--hub { fill: #3A4247; }
.house .slab { fill: var(--art-top); }
.house .old-face { fill: var(--art-x); }
.house .ln { fill: none; stroke: var(--art-ln); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.house .hatch { stroke-opacity: .26; stroke-width: 1; }
.house .soft { stroke-opacity: .5; }
.house .dash { stroke-dasharray: 4 5; stroke-opacity: .55; stroke-width: 1; }
.house .win { fill: var(--art-glass); }
.house .lit { fill: var(--brick); opacity: 0; }
.house .door { fill: #0F1315; }
.house .win-ln { stroke-width: 1; }
.house .sill { stroke-width: 1.6; }
.house .obk { fill: var(--brick); fill-opacity: .22; stroke: var(--art-ln); stroke-width: .7; stroke-opacity: .7; }
.house .scaf { stroke: var(--brick); stroke-width: 1.1; }
.house .tape { stroke: var(--brick); stroke-width: 1.6; }
.house .dim { stroke: var(--art-dim); stroke-width: .9; }
.house .dim-t { fill: var(--art-dim); font: 500 9px var(--font-mono); letter-spacing: .06em; }
/* light-section version */
.house--light { --art-bg: var(--lime); --art-top: #FAF9F5; --art-x: #E1DED4; --art-roof: #EAE7DE; --art-ln: #1B1F22; --art-glass: #C9D3DF; --art-dim: var(--chalk); }
.house--light .face--wheel { fill: #1B1F22; }
.house--light .face--hub { fill: #8C8A82; }
.house--light .door { fill: #2A3034; }
.house--light .obk { fill-opacity: .55; stroke-opacity: .6; }
.house--light .scaf { stroke: var(--brick-3); }
.house--light .tape { stroke: var(--brick-3); }
/* hidden until the choreography draws them (GSAP path); the static path shows everything */
html.js .house .ln, html.js .house .win, html.js .house .door, html.js .house .obk, html.js .house .face--board, html.js .house .dim-t, html.js .house .box, html.js .house .van { opacity: 0; }
html.io .house .ln, html.io .house .win, html.io .house .door, html.io .house .face--board, html.io .house .dim-t, html.io .house .box, html.io .house .van { opacity: 1; }
html.io .house--story [data-st="old"], html.io .house--story [data-st="scaf"] { display: none; }
html.io .house--story .lit { opacity: .85; }

/* ---------- hero (home) ---------- */

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100vh; min-height: 100svh;
  background: var(--slate); color: var(--on-slate);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 32px) 0 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 70% at 78% 40%, rgba(195, 154, 94, .10), transparent 70%),
    radial-gradient(40% 40% at 0% 100%, rgba(47, 95, 196, .14), transparent 70%);
}
.hero__grid {
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 64px); align-items: center; flex: 1;
  padding-bottom: clamp(24px, 4vw, 48px);
}
.hero__title {
  font-family: var(--font-display); font-weight: 750;
  font-variation-settings: "opsz" 96, "wdth" 90;
  font-size: clamp(2.9rem, 6.4vw, 5.9rem); line-height: .94; letter-spacing: -.03em;
  color: var(--lime-2);
}
.hero__title em { font-style: normal; color: var(--brick-2); }
.hline { display: block; clip-path: inset(-.25em -20% -.06em -20%); }
.hline__inner { display: block; }
html.js .hline__inner { transform: translateY(110%); }
html.io .hline__inner { transform: none; transition: transform 1s var(--ease-out); }
.hero__lead { color: var(--on-slate-2); font-size: clamp(1.02rem, 1.3vw, 1.15rem); line-height: 1.6; max-width: 46ch; margin: 1.6rem 0 0; }
.hero__lead strong { color: var(--on-slate); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem 1.8rem; margin-top: 2rem; }
.hero__art { position: relative; justify-self: center; width: min(100%, 640px); }
.hero__art .house { width: 100%; }
.art-cap {
  margin-top: 6px; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--on-slate-2); opacity: .8; display: flex; gap: 14px; align-items: center;
}
.art-cap::before { content: ""; width: 18px; height: 1px; background: var(--brick); }

/* the sequence strip: the three services in the order a job actually runs */
.seq {
  list-style: none; margin: 0; padding: 22px 0 26px;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
  border-top: 1px solid rgba(237, 235, 228, .14);
}
.seq li { display: flex; gap: 14px; align-items: baseline; min-width: 0; }
.seq a { text-decoration: none; display: flex; gap: 14px; align-items: baseline; }
.seq__n { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; color: var(--brick-2); flex: none; }
.seq__t { font-family: var(--font-display); font-weight: 600; font-size: clamp(1rem, 1.3vw, 1.2rem); font-variation-settings: "opsz" 24, "wdth" 95; color: var(--lime-2); }
.seq__s { display: block; font-size: .82rem; color: var(--on-slate-2); font-family: var(--font-body); font-weight: 400; margin-top: .15em; }
.seq li + li { position: relative; }
.seq li + li::before { content: "→"; position: absolute; left: -20px; top: .05em; color: rgba(237, 235, 228, .3); font-family: var(--font-mono); }
.seq a:hover .seq__t { color: var(--brick-2); }

/* ---------- story: the whole job, in order (sticky drawing, three stages) ---------- */

.story { background: var(--lime); padding: clamp(64px, 8vw, 112px) 0 0; }
.story__head { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(24px, 4vw, 64px); align-items: end; }
.story__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(24px, 4vw, 64px); margin-top: clamp(32px, 4vw, 56px); align-items: start; }
.story__art { position: sticky; top: calc(var(--header-h) + 8px); padding: 12px 0 24px; z-index: 2; background: var(--lime); }
.story__art .house { width: 100%; }
.story__stages { list-style: none; margin: 0; padding: 0; }
.stage { min-height: 88vh; display: flex; flex-direction: column; justify-content: center; padding: 6vh 0; transition: opacity .5s var(--ease-out); }
.stage--long { min-height: 118vh; }
.stage:not(.is-active) { opacity: .42; }
html:not(.js) .stage, html.io .stage { opacity: 1; }
.stage__n {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .22em; color: var(--brick-3);
  display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; text-transform: uppercase;
}
.stage__n i { display: block; width: 34px; height: 1px; background: var(--chalk); transition: width .6s var(--ease-out); }
.stage.is-active .stage__n i { width: 64px; }
.stage__title {
  font-family: var(--font-display); font-weight: 700; font-variation-settings: "opsz" 72, "wdth" 94;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem); line-height: 1.05; letter-spacing: -.02em; color: var(--ink);
}
.stage__sic { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; color: var(--ink-3); margin-top: .7rem; }
.stage__text { color: var(--ink-2); margin-top: 1.1rem; max-width: 44ch; }
.stage__list { list-style: none; padding: 0; margin: 1.3rem 0 0; display: grid; gap: .45rem; color: var(--ink-2); font-size: .98rem; }
.stage__list li { display: flex; gap: 12px; align-items: baseline; }
.stage__list li::before { content: ""; flex: none; width: 8px; height: 8px; background: var(--brick); transform: translateY(-1px); }
.stage__more { margin-top: 1.5rem; }

/* ---------- approach: how a job runs ---------- */

.approach { background: var(--slate); color: var(--on-slate); padding: clamp(72px, 9vw, 120px) 0; position: relative; overflow: hidden; }
.approach::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 45% at 100% 0%, rgba(195, 154, 94, .08), transparent 70%);
}
.approach__head { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(24px, 4vw, 64px); align-items: end; }
.steps { list-style: none; margin: clamp(40px, 5vw, 64px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; counter-reset: step; }
.step {
  position: relative; border: 1px solid rgba(237, 235, 228, .12); background: rgba(255, 255, 255, .02); border-radius: 4px;
  padding: clamp(20px, 2.2vw, 28px); display: flex; flex-direction: column; gap: 18px;
  transition: border-color .3s, transform .45s var(--ease-out);
}
.step:hover { border-color: rgba(195, 154, 94, .55); transform: translateY(-3px); }
.step__icon { width: 44px; height: 44px; color: var(--brick-2); }
.step__icon path, .step__icon circle, .step__icon rect { fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.step__icon .f { fill: currentColor; stroke: none; }
.step__n { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .2em; color: var(--brick-2); }
.step__title { font-family: var(--font-display); font-weight: 650; font-variation-settings: "opsz" 32, "wdth" 95; font-size: 1.25rem; line-height: 1.15; color: var(--lime-2); margin: .2rem 0 .5rem; }
.step__text { color: var(--on-slate-2); font-size: .95rem; }

/* programme: an illustrative Gantt */
.programme { margin-top: clamp(48px, 6vw, 80px); border-top: 1px solid rgba(237, 235, 228, .12); padding-top: clamp(32px, 4vw, 48px); }
.programme__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 12px 24px; margin-bottom: 22px; }
.programme__title { font-family: var(--font-display); font-weight: 650; font-variation-settings: "opsz" 32, "wdth" 95; font-size: clamp(1.2rem, 1.8vw, 1.5rem); color: var(--lime-2); }
.programme__note { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-slate-2); }
.gantt { --cols: 17; display: grid; grid-template-columns: minmax(150px, 220px) minmax(0, 1fr); row-gap: 8px; font-size: .86rem; }
.gantt__label { color: var(--on-slate-2); padding: 6px 12px 6px 0; display: flex; align-items: center; gap: 10px; }
.gantt__label b { font-family: var(--font-mono); font-weight: 500; font-size: .66rem; letter-spacing: .14em; color: var(--brick-2); }
.gantt__row { position: relative; display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr)); align-items: center; min-height: 32px; }
.gantt__row::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(237, 235, 228, .09) 1px, transparent 1px); background-size: calc(100% / var(--cols)) 100%; pointer-events: none; }
.gantt__bar { grid-column: var(--s) / span var(--l); height: 14px; border-radius: 2px; background: var(--brick); transform-origin: left; }
.gantt__bar--demo { background: var(--slate-3); box-shadow: inset 0 0 0 1px rgba(195, 154, 94, .6); }
.gantt__bar--move { background: var(--chalk-2); }
html.js .gantt__bar { transform: scaleX(0); }
html.io .gantt__bar { transform: none; transition: transform 1.2s var(--ease-out); }
.gantt__weeks { grid-column: 2; display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr)); margin-top: 6px; }
.gantt__weeks span { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .06em; color: var(--on-slate-2); opacity: .7; border-left: 1px solid rgba(237, 235, 228, .15); padding-left: 5px; }
.gantt__weeks span:nth-child(even) { visibility: hidden; }
@media (min-width: 900px) { .gantt__weeks span:nth-child(even) { visibility: visible; } }

/* ---------- homes we work on ---------- */

.homes { background: var(--lime-2); padding: clamp(72px, 9vw, 120px) 0; border-top: 1px solid var(--lime-3); }
.homes__head { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(24px, 4vw, 64px); align-items: end; }
.homes__grid { list-style: none; margin: clamp(40px, 5vw, 56px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.home-card {
  border: 1px solid var(--lime-3); background: var(--lime); border-radius: 4px; padding: 20px 18px 18px;
  display: flex; flex-direction: column; gap: 14px; transition: border-color .3s, transform .45s var(--ease-out), background .3s;
}
.home-card:hover { border-color: var(--brick); transform: translateY(-3px); background: var(--lime-2); }
.home-card svg { width: 100%; height: auto; color: var(--ink); }
.home-card svg path, .home-card svg rect { fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linejoin: round; stroke-linecap: round; }
.home-card svg .g { fill: rgba(195, 154, 94, .35); stroke: none; }
.home-card svg .c { stroke: var(--chalk); }
.home-card h3 { font-family: var(--font-display); font-weight: 650; font-variation-settings: "opsz" 24, "wdth" 95; font-size: 1.05rem; line-height: 1.2; }
.home-card p { font-size: .88rem; color: var(--ink-2); }
.area { margin-top: clamp(40px, 5vw, 56px); display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(24px, 4vw, 64px); align-items: center; border-top: 1px solid var(--lime-3); padding-top: clamp(28px, 4vw, 44px); }
.area__title { font-family: var(--font-display); font-weight: 650; font-variation-settings: "opsz" 32, "wdth" 95; font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.15; }
.area__text { color: var(--ink-2); }
.area__text + .area__text { margin-top: .8rem; }

/* ---------- CTA band ---------- */

.cta-band { background: var(--brick); color: var(--slate); padding: clamp(56px, 7vw, 88px) 0; position: relative; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; right: -8%; top: -30%; width: 46%; height: 160%; pointer-events: none; opacity: .18;
  background-image:
    linear-gradient(0deg, var(--slate) 1px, transparent 1px),
    linear-gradient(90deg, var(--slate) 1px, transparent 1px);
  background-size: 100% 26px, 62px 52px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 45%);
  mask-image: linear-gradient(90deg, transparent, #000 45%);
  transform: skewX(-8deg);
}
.cta-band__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(24px, 4vw, 64px); align-items: center; position: relative; z-index: 1; }
.cta-band .section-title { color: var(--slate); }
.cta-band .lede { color: rgba(30, 37, 41, .78); }
.cta-band .eyebrow { color: var(--slate); }
.cta-band .eyebrow::before { background: var(--slate); }
.cta-band__contacts { display: grid; gap: 14px; justify-items: start; }
.cta-band__contacts a { text-decoration: none; }
.cta-big { font-family: var(--font-display); font-weight: 650; font-variation-settings: "opsz" 48, "wdth" 92; font-size: clamp(1.4rem, 2.6vw, 2.1rem); letter-spacing: -.01em; color: var(--slate); border-bottom: 2px solid rgba(30, 37, 41, .3); transition: border-color .25s; }
.cta-big:hover { border-color: var(--slate); }
.cta-band__note { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(30, 37, 41, .7); margin-top: 6px; }

/* ---------- footer (ends with a wall being laid) ---------- */

.site-footer { background: var(--slate-deep); color: var(--on-slate-2); padding: clamp(56px, 7vw, 80px) 0 0; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; align-items: start; }
.footer__brand { display: inline-flex; align-items: center; gap: 12px; color: var(--lime-2); text-decoration: none; }
.footer__brand svg { width: 30px; height: 30px; }
.footer__brand span { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; font-variation-settings: "opsz" 24, "wdth" 95; }
.footer__line { margin-top: .9rem; color: var(--on-slate-2); max-width: 36ch; }
.site-footer h4 { font-family: var(--font-mono); font-weight: 500; font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brick-2); margin: 0 0 .8rem; }
.site-footer address { font-style: normal; line-height: 1.7; }
.footer__nav { margin-top: 1.2rem; }
.footer__nav a { display: block; text-decoration: none; padding: .12em 0; transition: color .2s; }
.footer__nav a:hover { color: var(--brick-2); }
.footer__contact a { display: block; text-decoration: none; color: var(--lime-2); transition: color .2s; }
.footer__contact a:hover { color: var(--brick-2); }
.footer__legal {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; font-size: .74rem; color: #8A9096;
  font-family: var(--font-mono); letter-spacing: .04em;
}
.footer__courses { margin-top: 36px; overflow: hidden; line-height: 0; }
.courses-svg { width: 100%; height: auto; min-width: 900px; }
.crs { fill: var(--brick); }
.crs:nth-child(3n) { fill: var(--brick-3); }
.crs:nth-child(5n) { fill: var(--brick-2); }
html.js .crs { opacity: 0; }
html.io .crs { opacity: 1; }

/* ---------- page veil: a hoarding panel rises ---------- */

.veil {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; display: none;
  background:
    linear-gradient(0deg, rgba(237, 235, 228, .06) 1px, transparent 1px) 0 0 / 100% 28px,
    linear-gradient(90deg, rgba(237, 235, 228, .06) 1px, transparent 1px) 0 0 / 68px 56px,
    var(--slate);
  clip-path: inset(100% 0 0 0);
}
.veil.is-on { display: block; pointer-events: auto; }

/* ---------- services page ---------- */

.svc-hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--slate); color: var(--on-slate);
  padding: calc(var(--header-h) + clamp(40px, 7vw, 88px)) 0 clamp(48px, 6vw, 80px);
}
.svc-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(50% 60% at 85% 20%, rgba(195, 154, 94, .12), transparent 70%);
}
.svc-hero__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(24px, 4vw, 64px); align-items: end; }
.svc-hero__title { position: relative; }
.page-title {
  font-family: var(--font-display); font-weight: 750; font-variation-settings: "opsz" 96, "wdth" 90;
  font-size: clamp(2.6rem, 5.6vw, 5rem); line-height: .96; letter-spacing: -.03em; color: var(--lime-2);
}
.page-title em { font-style: normal; color: var(--brick-2); }
.page-title--ink { color: var(--ink); }
.page-title--ink em { color: var(--brick-3); }
/* the brick curtain covers the title; bricks fall away on load */
.wall { position: absolute; inset: -6% -4% -10% -4%; z-index: 2; pointer-events: none; }
.wall-svg { width: 100%; height: 100%; }
.wall-svg .brk { fill: var(--brick); stroke: var(--slate); stroke-width: 1; }
.wall-svg .brk--1 { fill: var(--brick-3); }
.wall-svg .brk--2 { fill: var(--brick-2); }
html:not(.js) .wall, html.io .wall { display: none; }
.svc-hero__aside { color: var(--on-slate-2); max-width: 40ch; }
.svc-hero__aside .eyebrow { margin-bottom: .8rem; }
.svc-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 8px; }
.svc-list a { display: flex; align-items: baseline; gap: 14px; text-decoration: none; padding: 10px 0; border-top: 1px solid rgba(237, 235, 228, .12); color: var(--lime-2); transition: color .25s; }
.svc-list a:hover { color: var(--brick-2); }
.svc-list b { font-family: var(--font-mono); font-weight: 500; font-size: .7rem; letter-spacing: .14em; color: var(--brick-2); }
.svc-list span { font-family: var(--font-display); font-weight: 600; font-variation-settings: "opsz" 24, "wdth" 95; font-size: 1.05rem; }

.svc { padding: clamp(72px, 9vw, 120px) 0; background: var(--lime); }
.svc--alt { background: var(--lime-2); }
.svc + .svc { border-top: 1px solid var(--lime-3); }
.svc__grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.svc--flip .svc__grid > .svc__art { order: -1; }
.svc__n { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .22em; color: var(--brick-3); text-transform: uppercase; display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.svc__n::before { content: ""; width: 22px; height: 1px; background: var(--chalk); }
.svc__sic { color: var(--ink-3); letter-spacing: .1em; margin-left: auto; }
.svc__title { font-family: var(--font-display); font-weight: 700; font-variation-settings: "opsz" 72, "wdth" 94; font-size: clamp(1.9rem, 3.2vw, 2.8rem); line-height: 1.02; letter-spacing: -.02em; }
.svc__intro { color: var(--ink-2); margin-top: 1.1rem; max-width: 48ch; font-size: 1.05rem; }
.svc__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 1.8rem; }
.svc h3 { font-family: var(--font-mono); font-weight: 500; font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brick-3); margin-bottom: .7rem; }
.svc__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; color: var(--ink-2); font-size: .95rem; }
.svc__list li { display: flex; gap: 10px; align-items: baseline; }
.svc__list li::before { content: ""; flex: none; width: 7px; height: 7px; background: var(--brick); transform: translateY(-1px); }
.svc__get { background: var(--slate); color: var(--on-slate-2); padding: 18px 20px; border-radius: 4px; font-size: .92rem; }
.svc__get h3 { color: var(--brick-2); }
.svc__get p { color: var(--on-slate); }
.svc__art { position: relative; }
.art-frame { border: 1px solid var(--lime-3); background: var(--lime-2); border-radius: 4px; padding: clamp(16px, 2.4vw, 32px); }
.art-frame--slate { background: var(--slate); border-color: var(--slate); }
.art-frame svg { width: 100%; height: auto; }
.art-frame__cap { margin-top: 10px; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); display: flex; gap: 12px; align-items: center; }
.art-frame__cap::before { content: ""; width: 16px; height: 1px; background: var(--chalk); }

/* demolition drawing */
.demo-svg .ln { fill: none; stroke: var(--ink); stroke-width: 1.2; stroke-linecap: round; }
.demo-svg .soft { stroke-opacity: .35; }
.demo-svg .tool { stroke-width: 2.4; stroke: var(--chalk); }
.demo-svg .dust { stroke-width: 1; stroke-opacity: .35; }
.demo-svg .brk3 { fill: var(--brick); stroke: var(--ink); stroke-width: .8; }
.demo-svg .brk3--1 { fill: #B58E55; }
.demo-svg .brk3--2 { fill: #D1AB6F; }
.demo-svg .brk3--x { fill: var(--brick-3); }
.demo-svg .tool-head { stroke: var(--ink); }

/* floor plan */
.plan-svg .grid { stroke: var(--ink); stroke-opacity: .07; stroke-width: 1; fill: none; }
.plan-svg .room { fill: var(--ink); fill-opacity: .035; }
.plan-svg .room--d { fill: var(--chalk); fill-opacity: .08; }
.plan-svg .wall { fill: none; stroke: var(--ink); stroke-width: 7; stroke-linejoin: miter; }
.plan-svg .wall--in { stroke-width: 4; }
.plan-svg .open { stroke: var(--lime-2); stroke-width: 9; fill: none; }
.plan-svg .glass { stroke: var(--chalk); stroke-width: 1.4; fill: none; }
.plan-svg .door-leaf { stroke: var(--ink); stroke-width: 2; fill: none; }
.plan-svg .swing { stroke: var(--ink); stroke-width: .8; fill: none; stroke-dasharray: 2 3; }
.plan-svg .stair { stroke: var(--ink); stroke-width: 1; fill: none; stroke-opacity: .7; }
.plan-svg .stair-arrow { stroke: var(--ink); stroke-width: 1.2; fill: none; }
.plan-svg .lbl { fill: var(--ink); font: 500 11px var(--font-mono); letter-spacing: .14em; }
.plan-svg .lbl--s { font-size: 9px; }
.plan-svg .dim { stroke: var(--chalk); stroke-width: .9; fill: none; }
.plan-svg .dim-t { fill: var(--chalk); font: 500 9.5px var(--font-mono); letter-spacing: .08em; }
.plan-svg .tb-box { fill: none; stroke: var(--ink); stroke-width: 1; }
.plan-svg .tb-t { fill: var(--ink); font: 500 9px var(--font-mono); letter-spacing: .1em; }
.plan-svg .tb-t--s { fill-opacity: .6; }
.plan-svg .ln { fill: none; stroke: var(--ink); stroke-width: 1; }
.plan-svg .north-a { fill: var(--ink); }

/* van */
.van-svg { overflow: visible; }
.van-svg .face { fill: var(--lime-2); stroke: none; }
.van-svg .face--top { fill: #fff; }
.van-svg .face--x { fill: var(--lime-3); }
.van-svg .face--wheel { fill: var(--ink); }
.van-svg .face--hub { fill: #8C8A82; }
.van-svg .ln { fill: none; stroke: var(--ink); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.van-svg .soft { stroke-opacity: .4; }
.van-svg .win { fill: #2E3D4B; fill-opacity: .35; }
.van-svg .tape { stroke: var(--brick-3); stroke-width: 1.6; }

/* on every job */
.includes { background: var(--slate); color: var(--on-slate); padding: clamp(72px, 9vw, 120px) 0; }
.includes__grid { list-style: none; margin: clamp(36px, 4vw, 56px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.inc {
  border: 1px solid rgba(237, 235, 228, .12); border-radius: 4px; padding: 22px; display: flex; gap: 16px; align-items: flex-start;
  transition: border-color .3s, transform .45s var(--ease-out);
}
.inc:hover { border-color: rgba(195, 154, 94, .55); transform: translateY(-3px); }
.inc__mark { flex: none; width: 28px; height: 28px; border: 1px solid var(--brick); border-radius: 50%; display: grid; place-items: center; color: var(--brick-2); }
.inc__mark svg { width: 12px; height: 12px; }
.inc h3 { font-family: var(--font-display); font-weight: 650; font-variation-settings: "opsz" 24, "wdth" 95; font-size: 1.08rem; color: var(--lime-2); margin-bottom: .35rem; }
.inc p { color: var(--on-slate-2); font-size: .92rem; }

/* ---------- contact page ---------- */

.contact-hero { background: var(--lime); padding: calc(var(--header-h) + clamp(48px, 8vw, 96px)) 0 clamp(48px, 6vw, 80px); }
.contact-hero__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.contact-lead { color: var(--ink-2); max-width: 44ch; margin: 1.4rem 0 1.6rem; font-size: 1.08rem; }
.contact-lines { display: grid; gap: 14px; justify-items: start; }
.contact-lines a { text-decoration: none; }
.contact-big { font-family: var(--font-display); font-weight: 650; font-variation-settings: "opsz" 48, "wdth" 92; font-size: clamp(1.4rem, 2.8vw, 2.3rem); letter-spacing: -.01em; color: var(--chalk); border-bottom: 2px solid rgba(47, 95, 196, .25); transition: border-color .25s; }
.contact-big:hover { border-color: var(--chalk); }
.contact-hours { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }
/* job sheet: what makes a quick quote possible */
.sheet { background: var(--lime-2); border: 1px solid var(--lime-3); border-radius: 4px; padding: clamp(20px, 2.6vw, 32px); position: relative; }
.sheet::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--chalk); border-radius: 4px 4px 0 0; }
.sheet__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.sheet h2 { font-family: var(--font-display); font-weight: 650; font-variation-settings: "opsz" 32, "wdth" 95; font-size: 1.35rem; line-height: 1.15; margin-bottom: 14px; }
.sheet ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.sheet li { display: flex; gap: 12px; align-items: baseline; color: var(--ink-2); font-size: .95rem; padding: 8px 0; border-top: 1px solid var(--lime-3); }
.sheet li::before { content: ""; flex: none; width: 14px; height: 14px; border: 1px solid var(--ink-3); border-radius: 2px; transform: translateY(2px); }
.sheet li.is-tick::before { border-color: var(--chalk); background: var(--chalk); box-shadow: inset 0 0 0 3px var(--lime-2); }
.sheet__foot { margin-top: 14px; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; color: var(--ink-3); }

.enquiry-section { background: var(--lime-2); padding: clamp(56px, 7vw, 96px) 0; border-top: 1px solid var(--lime-3); }
.enquiry-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 96px); }
.enquiry-intro h2 { font-family: var(--font-display); font-weight: 700; font-variation-settings: "opsz" 72, "wdth" 94; font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -.02em; line-height: 1.05; margin: 0 0 1rem; }
.enquiry-intro p { color: var(--ink-2); max-width: 36ch; }
.enquiry { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.6rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.field input, .field textarea, .field select {
  font: inherit; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--lime-4);
  padding: .6em 0; border-radius: 0; transition: border-color .25s; width: 100%;
}
.field select { cursor: pointer; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--chalk); }
.field textarea { min-height: 140px; resize: vertical; }
.enquiry__actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; margin-top: .4rem; }
.form-hint { font-size: .82rem; color: var(--ink-3); max-width: 42ch; transition: color .3s; }
.enquiry[data-sent-live] .form-hint { color: var(--chalk); }

.where { background: var(--slate); color: var(--on-slate); padding: clamp(72px, 9vw, 120px) 0; overflow: hidden; }
.where__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.where__address { font-style: normal; margin-top: 1.6rem; font-family: var(--font-mono); font-size: .86rem; line-height: 1.75; color: var(--on-slate-2); padding-left: 1.1rem; border-left: 1px solid var(--brick); }
.where__address b { color: var(--lime-2); font-weight: 500; display: block; margin-bottom: .2rem; }
.where__reg { margin-top: 1.4rem; display: grid; gap: 6px; font-size: .92rem; color: var(--on-slate-2); }
.where__reg span b { color: var(--lime-2); font-weight: 500; font-family: var(--font-mono); font-size: .84rem; margin-right: .5em; }
.map { width: 100%; height: auto; }
.map .st { fill: none; stroke: var(--on-slate); stroke-opacity: .28; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.map .st--main { stroke-opacity: .55; stroke-width: 4; }
.map .st--hay { stroke: var(--brick); stroke-opacity: .95; stroke-width: 5; }
.map .sq { fill: rgba(237, 235, 228, .06); stroke: rgba(237, 235, 228, .35); stroke-width: 1; }
.map .grn { fill: rgba(127, 160, 238, .12); stroke: rgba(127, 160, 238, .45); stroke-width: 1; }
.map .lbl { fill: var(--on-slate-2); font: 500 10px var(--font-mono); letter-spacing: .16em; text-transform: uppercase; }
.map .lbl--big { font-size: 11px; fill: var(--lime-2); }
.map .lbl--hay { fill: var(--brick-2); font-size: 12px; letter-spacing: .3em; }
.map .pin { fill: var(--chalk-2); }
.map .pin-ring { fill: none; stroke: var(--chalk-2); stroke-width: 1.4; transform-origin: center; transform-box: fill-box; }
.map .pin-t { fill: var(--slate); font: 700 10px var(--font-display); }
.map .bld { fill: rgba(195, 154, 94, .18); stroke: var(--brick); stroke-width: 1; }
.map .north path { fill: none; stroke: var(--on-slate-2); stroke-width: 1; }
.map .north .f { fill: var(--on-slate-2); stroke: none; }
@keyframes ring { 0% { transform: scale(.5); opacity: .9; } 100% { transform: scale(2.4); opacity: 0; } }
html.js .map .pin-ring { animation: ring 2.6s var(--ease-out) infinite; }
.where__cap { margin-top: 10px; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-slate-2); opacity: .8; }

/* ---------- 404 ---------- */

.notfound {
  min-height: 100vh; display: grid; place-items: center; text-align: center;
  background: var(--slate); color: var(--on-slate); padding: calc(var(--header-h) + 40px) var(--gutter) 60px;
}
.notfound svg { width: 72px; height: 72px; margin: 0 auto 28px; }
.notfound h1 { font-family: var(--font-display); font-weight: 750; font-variation-settings: "opsz" 96, "wdth" 90; font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -.03em; line-height: 1; margin: 0 0 1rem; color: var(--lime-2); }
.notfound p { color: var(--on-slate-2); max-width: 40ch; margin: 0 auto 2rem; }
.notfound .eyebrow { justify-content: center; }

/* ---------- responsive ---------- */

@media (max-width: 1100px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .homes__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .level { display: none; }
}

@media (max-width: 900px) {
  .hero { min-height: 0; padding-bottom: 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 28px; padding-top: 12px; }
  .hero__art { width: min(100%, 520px); justify-self: start; }
  .seq { grid-template-columns: 1fr; gap: 12px; }
  .seq li + li::before { display: none; }
  .story__head, .story__grid, .approach__head, .homes__head, .cta-band__grid, .footer__grid, .contact-hero__grid, .enquiry-grid, .where__grid, .svc-hero__grid, .svc__grid { grid-template-columns: 1fr; }
  .story__art { order: -1; top: var(--header-h); padding: 8px 0 10px; border-bottom: 1px solid var(--lime-3); }
  .story__art .house { width: min(100%, 520px); margin-inline: auto; max-height: 40vh; }
  .stage { min-height: 62vh; padding: 5vh 0; }
  .stage--long { min-height: 82vh; }
  .svc--flip .svc__grid > .svc__art { order: 0; }
  .gantt { grid-template-columns: minmax(110px, 150px) minmax(0, 1fr); font-size: .8rem; }
  .includes__grid { grid-template-columns: 1fr 1fr; }
  .area { grid-template-columns: 1fr; }
  .enquiry { grid-template-columns: 1fr; }
  .svc__cols { grid-template-columns: 1fr; }

  .nav-toggle { display: inline-block; position: relative; z-index: 71; }
  .nav {
    position: fixed; inset: 0; z-index: 70; background: var(--slate); color: var(--on-slate);
    flex-direction: column; justify-content: center; gap: 28px;
    transform: translateY(-8px); opacity: 0; pointer-events: none; visibility: hidden;
    transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), visibility 0s .35s;
  }
  .nav a { font-family: var(--font-display); font-weight: 650; font-size: 1.6rem; letter-spacing: -.01em; text-transform: none; font-variation-settings: "opsz" 48, "wdth" 94; }
  .nav a:not(.nav__cta)::after { height: 2px; }
  .nav__cta { padding: .5em 1.2em !important; font-size: 1.1rem !important; }
  body.menu-open .nav { opacity: 1; transform: none; pointer-events: auto; visibility: visible; transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), visibility 0s; }
  body.menu-open { overflow: hidden; }
  body.menu-open .site-header { color: var(--on-slate); }
}

@media (max-width: 600px) {
  .steps, .homes__grid, .includes__grid { grid-template-columns: 1fr; }
  .brand__sub { display: none; }
  .hero__title { font-size: clamp(2.5rem, 12vw, 3.4rem); }
  .gantt { grid-template-columns: 1fr; row-gap: 2px; }
  .gantt__label { padding: 8px 0 2px; }
  .gantt__weeks { grid-column: 1; }
  .footer__legal { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn .arrow, .btn, .step, .home-card, .inc { transition: none; }
  html.js .map .pin-ring { animation: none; opacity: .6; }
}
