/* Financier Display (Light) — licensed Klim cut, self-hosted.
   NOTE: licence was purchased for BankBuild. Using it on a second site/domain
   almost certainly needs the licence extending — see README before deploy. */
@font-face{
  font-family:"Financier Display";
  src:url("/assets/fonts/financier-display-light.woff2") format("woff2");
  font-weight:300;
  font-style:normal;
  font-display:swap;
}

/* ==========================================================================
   Bunker — design system
   Two typefaces, three colours, one rhythm. Nothing decorative.
   ========================================================================== */

:root{
  /* ink & paper */
  --ink:#191B18;
  --ink-70:#31352F;
  --ink-45:#5C615B;
  --paper:#F4F1EA;
  --paper-2:#E9E4D9;
  --paper-3:#DDD7C9;

  /* structure */
  --forest:#1E2A23;
  --forest-2:#263429;
  --clay:#A65C3A;

  --line:rgba(25,27,24,.14);
  --line-strong:rgba(25,27,24,.28);
  --line-dark:rgba(244,241,234,.18);

  /* type */
  --display:"Financier Display",Georgia,"Times New Roman",serif;
  --text:"Inter Tight",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;

  /* rhythm */
  --section-py:clamp(80px,9vw,140px);
  --gutter:clamp(20px,5vw,64px);
  --maxw:1320px;
  --prose:64ch;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--text);
  font-size:17px;
  line-height:1.6;
  font-weight:380;
  letter-spacing:-.005em;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}

/* ---------- type scale ---------- */
.display-xl,.display-l,.display-m,.display-s{
  text-wrap:balance;
  font-family:var(--display);
  font-weight:300;
  letter-spacing:-.015em;
  line-height:1;
  margin:0;
}
.display-xl{font-size:clamp(40px,5.8vw,82px)}
.display-l {font-size:clamp(32px,4vw,56px);line-height:1.04}
.display-m {font-size:clamp(26px,2.8vw,38px);line-height:1.08}
.display-s {font-size:clamp(22px,2.4vw,32px);line-height:1.12}

/* Operational headings. Sans, tight, plain-spoken. These carry the site;
   the serif is reserved for two brand moments per page at most. */
.op-xl,.op-l,.op-m,.op-s{font-family:var(--text);font-weight:500;margin:0;letter-spacing:-.03em;text-wrap:balance}
.op-xl{font-size:clamp(30px,3.7vw,52px);line-height:1.04}
.op-l {font-size:clamp(25px,2.7vw,37px);line-height:1.08}
.op-m {font-size:clamp(20px,1.85vw,25px);line-height:1.2;letter-spacing:-.022em}
.op-s {font-size:17px;line-height:1.35;letter-spacing:-.015em}

.eyebrow{
  font-size:12.5px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:500;
  color:var(--ink-70);
  margin:0 0 20px;
}
.eyebrow--light{color:rgba(244,241,234,.66)}

.lede{
  font-size:clamp(19px,1.5vw,23px);
  line-height:1.5;
  color:var(--ink-70);
  max-width:var(--prose);
  font-weight:360;
}
p{max-width:var(--prose)}
.muted{color:var(--ink-70)}

/* ---------- layout ---------- */
.wrap{max-width:var(--maxw);margin:0 auto;padding-inline:var(--gutter)}
.wrap--narrow{max-width:900px}
section{padding-block:var(--section-py)}
.rule{height:1px;background:var(--line);border:0;margin:0}
.pb-tight{padding-bottom:clamp(34px,4vw,60px)}
/* editorial pacing between the routes and the green chapter break —
   plain cream, no rule, no ornament */
.chapter-gap{height:48px;background:var(--paper)}
@media(max-width:700px){.chapter-gap{height:28px}}

.grid{display:grid;gap:clamp(28px,4vw,64px)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
@media(max-width:900px){.grid-2,.grid-3{grid-template-columns:1fr}}

/* section head: label left, content right */
.head{display:grid;grid-template-columns:200px 1fr;gap:clamp(24px,4vw,64px);align-items:start}
@media(max-width:900px){.head{grid-template-columns:1fr;gap:8px}}

/* ---------- nav ---------- */
.nav{
  position:sticky;top:0;z-index:50;
  background:var(--paper);
  border-bottom:1px solid var(--line);
}
.nav--over{
  position:fixed;left:0;right:0;
  background:transparent;border-bottom-color:transparent;
  color:var(--paper);
}
.nav__in{
  max-width:var(--maxw);margin:0 auto;padding:0 var(--gutter);
  height:74px;display:flex;align-items:center;justify-content:space-between;gap:32px;
}
.brand{display:block;line-height:0;text-decoration:none;color:inherit}
.brand .wordmark{height:20px;width:auto;display:block}
@media(max-width:520px){.brand .wordmark{height:16px}}
.wordmark{color:inherit}
.nav__links{display:flex;align-items:center;gap:clamp(16px,2.4vw,34px)}
.nav__links a{
  text-decoration:none;font-size:14px;font-weight:420;letter-spacing:-.01em;
  padding:6px 0;position:relative;opacity:.78;
}
.nav__links a:hover{opacity:1}
.nav__links a::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:1px;
  background:currentColor;transform:scaleX(0);transform-origin:left;
  transition:transform .28s cubic-bezier(.2,.7,.3,1);
}
.nav__links a:hover::after{transform:scaleX(1)}
body[data-page="private"] .nav a[data-nav="private"],
body[data-page="developments"] .nav a[data-nav="developments"],
body[data-page="how"] .nav a[data-nav="how"],
body[data-page="projects"] .nav a[data-nav="projects"],
body[data-page="about"] .nav a[data-nav="about"],
body[data-page="journal"] .nav a[data-nav="journal"]{opacity:1}
body[data-page="private"] .nav a[data-nav="private"]::after,
body[data-page="developments"] .nav a[data-nav="developments"]::after,
body[data-page="how"] .nav a[data-nav="how"]::after,
body[data-page="projects"] .nav a[data-nav="projects"]::after,
body[data-page="about"] .nav a[data-nav="about"]::after{transform:scaleX(1)}
.nav__cta{
  border:1px solid currentColor;border-radius:999px;padding:9px 20px!important;
  font-size:13px!important;opacity:1!important;
}
.nav__cta::after{display:none!important}
.nav__cta:hover{background:var(--ink);color:var(--paper);border-color:var(--ink)}
.nav--over .nav__cta:hover{background:var(--paper);color:var(--ink)}
.nav__burger{display:none;background:none;border:0;color:inherit;font-size:14px;cursor:pointer;font-family:var(--text)}
@media(max-width:860px){
  .nav__links{display:none}
  .nav__links.is-open{
    display:flex;flex-direction:column;align-items:flex-start;gap:4px;
    position:absolute;top:74px;left:0;right:0;background:var(--paper);color:var(--ink);
    padding:20px var(--gutter) 28px;border-bottom:1px solid var(--line);
  }
  .nav__links.is-open a{font-size:19px;padding:9px 0;opacity:1}
  .nav__burger{display:block}
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  font-size:14px;font-weight:450;letter-spacing:-.01em;
  text-decoration:none;padding:14px 26px;border-radius:999px;
  border:1px solid var(--ink);background:var(--ink);color:var(--paper);
  transition:background .2s,color .2s,border-color .2s;
}
.btn:hover{background:transparent;color:var(--ink)}
.btn--ghost{background:transparent;color:var(--ink)}
.btn--ghost:hover{background:var(--ink);color:var(--paper)}
.btn--light{background:var(--paper);color:var(--ink);border-color:var(--paper)}
.btn--light:hover{background:transparent;color:var(--paper)}
.btn--ghost-light{background:transparent;color:var(--paper);border-color:rgba(244,241,234,.5)}
.btn--ghost-light:hover{background:var(--paper);color:var(--ink);border-color:var(--paper)}
.btn-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:36px}

.arrow-link{
  display:inline-flex;align-items:center;gap:9px;text-decoration:none;
  font-size:14px;font-weight:450;border-bottom:1px solid var(--line-strong);
  padding-bottom:3px;transition:gap .2s,border-color .2s;
}
.arrow-link:hover{gap:15px;border-color:currentColor}

/* ---------- hero ---------- */
.hero{position:relative;min-height:clamp(520px,86svh,900px);display:flex;align-items:center;color:var(--paper);overflow:hidden}
.hero__img,.hero__video{
  position:absolute;top:0;left:0;width:116%;height:100%;object-fit:cover;z-index:0;
  filter:brightness(1.15) contrast(1.07) saturate(1.1);
}
/* Motion hero: the video plays, the still is the fallback. Swapped when the
   viewer has asked for reduced motion — no JS, no paused-on-a-bare-field frame. */
.hero__still{display:none}
@media(prefers-reduced-motion:reduce){
  .hero__video{display:none}
  .hero__still{display:block}
}
/* 16:9 footage cropped to a portrait viewport loses the house off the right —
   bias the crop toward it rather than the empty field. */
.hero::after{
  content:"";position:absolute;inset:0;z-index:1;
  background:
    linear-gradient(96deg,rgba(12,16,13,.74) 0%,rgba(12,16,13,.46) 26%,rgba(12,16,13,.06) 52%,rgba(12,16,13,0) 66%),
    linear-gradient(180deg,rgba(12,16,13,.40) 0%,rgba(12,16,13,.02) 30%,rgba(12,16,13,.03) 64%,rgba(12,16,13,.48) 100%);
}
.hero__in{position:relative;z-index:2;width:100%;max-width:var(--maxw);margin:0 auto;padding:clamp(92px,11vh,132px) var(--gutter) clamp(40px,5vh,84px)}
@media(min-width:1000px){.hero__in>*{max-width:46%}.hero__in .btn-row{max-width:none}}
.hero__title{
  /* Sized from measurement, not guesswork: the widest line is 5.88x the font
     size, and the space before the subject is ~416px at 960 rising to ~600px
     at 1440+. This clamp sits ~10% under that ceiling at every width.
     rem base keeps it honest when a user scales their text. */
  font-size:clamp(2.375rem,0.25rem + 4.8vw,4.5rem);
  max-width:min(18ch,46vw);
  text-shadow:0 1px 40px rgba(0,0,0,.3);
}
.hero__sub{max-width:min(52ch,34vw,470px);color:rgba(244,241,234,.92);font-size:clamp(1rem,0.9rem + 0.25vw,1.125rem);line-height:1.6;margin:28px 0 0}
.hero__eyebrow{margin:0 0 clamp(16px,1.8vh,26px);max-width:none}
.hero--page{min-height:clamp(400px,58svh,620px)}

@media(max-width:900px){
  .hero__video,.hero__still{object-position:64% center;width:100%}
  /* the vw caps exist to keep the copy clear of the subject in the desktop
     side-by-side; on a portrait viewport the copy owns the full width */
  .hero__title,.hero__sub{max-width:none}
  .hero__sub{font-size:1rem}
  /* portrait puts the copy straight over the bright elevation — carry more scrim */
  .hero::after{
    background:linear-gradient(180deg,rgba(12,16,13,.60) 0%,rgba(12,16,13,.44) 22%,rgba(12,16,13,.58) 46%,rgba(12,16,13,.74) 70%,rgba(12,16,13,.92) 100%);
  }
}

/* ---------- the two routes ----------
   Split panels, inset from the page edges, image always visible (not on hover).
   Asymmetric 56/44 so Private leads. */
.houses{
  display:grid;grid-template-columns:56fr 44fr;
  gap:clamp(10px,1.4vw,20px);align-items:end;
}
@media(max-width:820px){.houses{grid-template-columns:1fr;gap:14px}}

.house{
  position:relative;isolation:isolate;overflow:hidden;
  display:flex;flex-direction:column;justify-content:flex-end;
  min-height:clamp(360px,38vw,520px);
  padding:clamp(26px,2.8vw,42px);
  text-decoration:none;color:var(--paper);
}
.house__bg{
  position:absolute;inset:0;z-index:-2;width:100%;height:100%;object-fit:cover;
  transition:transform 1.2s cubic-bezier(.2,.7,.3,1);
}
.house:hover .house__bg{transform:scale(1.04)}
.house::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,
    rgba(14,19,15,0) 0%,
    rgba(14,19,15,0) 34%,
    rgba(14,19,15,.44) 62%,
    rgba(14,19,15,.80) 86%,
    rgba(14,19,15,.88) 100%);
}
.house:last-child{min-height:clamp(300px,31vw,428px)}
@media(max-width:820px){
  .house:last-child{min-height:clamp(300px,42vw,380px)}
  /* shorter panels put the copy over more of the image, so carry more scrim */
  .house::before{
    background:linear-gradient(180deg,
      rgba(14,19,15,0) 0%,
      rgba(14,19,15,.20) 24%,
      rgba(14,19,15,.62) 52%,
      rgba(14,19,15,.86) 82%,
      rgba(14,19,15,.90) 100%);
  }
}
.house__name{margin:0 0 8px}
.house__meta{margin:0;color:rgba(244,241,234,.88);font-size:clamp(15px,1.1vw,16.5px);max-width:38ch}
.house__go{
  display:inline-flex;align-self:flex-start;align-items:center;gap:9px;margin-top:20px;
  font-size:15px;font-weight:450;
  border-bottom:1px solid rgba(244,241,234,.45);padding-bottom:3px;
  transition:gap .2s,border-color .2s;
}
.house:hover .house__go{gap:15px;border-color:var(--paper)}

/* ---------- statement ---------- */
.statement{background:var(--forest);color:var(--paper)}
/* the commercial counterweight: less air than the editorial sections, and the
   three text blocks held tight together so the argument lands as one unit */
.statement--tight{padding-block:clamp(62px,7.1vw,112px)}
.statement__claim{
  font-size:clamp(18px,1.5vw,21px);font-weight:450;letter-spacing:-.02em;
  color:var(--paper);margin:18px 0 0;
}
.statement__body{color:rgba(244,241,234,.88);margin-top:18px}
.statement .display-l{max-width:19ch}
.statement p{color:rgba(244,241,234,.78)}
.statement .rule{background:var(--line-dark)}

/* ---------- numbered process ---------- */
.steps{border-top:1px solid var(--line);margin-top:clamp(30px,4vw,56px)}
.step{
  display:grid;grid-template-columns:76px 1fr 1.15fr;gap:clamp(18px,3vw,52px);
  padding:clamp(24px,3vw,40px) 0;border-bottom:1px solid var(--line);align-items:baseline;
}
@media(max-width:820px){.step{grid-template-columns:44px 1fr;gap:14px}.step__body{grid-column:2}}
.step__no{font-weight:300;font-family:var(--display);font-size:clamp(24px,2.4vw,34px);color:var(--clay);line-height:1}
.step__t{font-size:clamp(19px,1.7vw,25px);font-weight:450;letter-spacing:-.015em;margin:0}
.step__body{color:var(--ink-70);margin:0;font-size:16px}

/* ---------- ledger: what the client actually receives ---------- */
.ledger{border-top:1px solid var(--line);margin-top:clamp(26px,3.4vw,44px)}
.ledger__row{
  display:grid;grid-template-columns:1.05fr 1.75fr .62fr;gap:clamp(14px,2.6vw,40px);
  padding:clamp(15px,1.7vw,21px) 0;border-bottom:1px solid var(--line);align-items:baseline;
}
.ledger__k{font-weight:500;font-size:16.5px;letter-spacing:-.015em;margin:0}
.ledger__v{color:var(--ink-70);font-size:15.5px;margin:0;max-width:none}
.ledger__c{
  font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-45);
  text-align:right;white-space:nowrap;
}
@media(max-width:800px){
  .ledger__row{grid-template-columns:1fr auto;gap:6px 16px}
  .ledger__v{grid-column:1/-1}
  .ledger__c{text-align:right}
}
.statement .ledger{border-color:var(--line-dark)}
.statement .ledger__row{border-color:var(--line-dark)}
.statement .ledger__v{color:rgba(244,241,234,.7)}
.statement .ledger__c{color:rgba(244,241,234,.45)}

/* ---------- composition variants ----------
   The page deliberately does NOT use one section template. Three shapes:
   .head      label column + content   (used once, to open)
   .lead      full-width text, eyebrow sits above the headline
   .split     heading left, content right
   ------------------------------------------------------------------ */
.lead{max-width:none}
/* ---------- the two routes ----------
   Split panels, inset from the page edges, image always visible (not on hover).
   Asymmetric 56/44 so Private leads. */
.houses{
  display:grid;grid-template-columns:56fr 44fr;
  gap:clamp(10px,1.4vw,20px);align-items:end;
}
@media(max-width:820px){.houses{grid-template-columns:1fr;gap:14px}}

.house{
  position:relative;isolation:isolate;overflow:hidden;
  display:flex;flex-direction:column;justify-content:flex-end;
  min-height:clamp(360px,38vw,520px);
  padding:clamp(26px,2.8vw,42px);
  text-decoration:none;color:var(--paper);
}
.house__bg{
  position:absolute;inset:0;z-index:-2;width:100%;height:100%;object-fit:cover;
  transition:transform 1.2s cubic-bezier(.2,.7,.3,1);
}
.house:hover .house__bg{transform:scale(1.04)}
.house::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,
    rgba(14,19,15,0) 0%,
    rgba(14,19,15,0) 34%,
    rgba(14,19,15,.44) 62%,
    rgba(14,19,15,.80) 86%,
    rgba(14,19,15,.88) 100%);
}
.house:last-child{min-height:clamp(300px,31vw,428px)}
@media(max-width:820px){
  .house:last-child{min-height:clamp(300px,42vw,380px)}
  /* shorter panels put the copy over more of the image, so carry more scrim */
  .house::before{
    background:linear-gradient(180deg,
      rgba(14,19,15,0) 0%,
      rgba(14,19,15,.20) 24%,
      rgba(14,19,15,.62) 52%,
      rgba(14,19,15,.86) 82%,
      rgba(14,19,15,.90) 100%);
  }
}
.house__name{margin:0 0 8px}
.house__meta{margin:0;color:rgba(244,241,234,.88);font-size:clamp(15px,1.1vw,16.5px);max-width:38ch}
.house__go{
  display:inline-flex;align-self:flex-start;align-items:center;gap:9px;margin-top:20px;
  font-size:15px;font-weight:450;
  border-bottom:1px solid rgba(244,241,234,.45);padding-bottom:3px;
  transition:gap .2s,border-color .2s;
}
.house:hover .house__go{gap:15px;border-color:var(--paper)}

/* ---------- statement ---------- */
.statement{background:var(--forest);color:var(--paper)}
/* the commercial counterweight: less air than the editorial sections, and the
   three text blocks held tight together so the argument lands as one unit */
.statement--tight{padding-block:clamp(62px,7.1vw,112px)}
.statement__claim{
  font-size:clamp(18px,1.5vw,21px);font-weight:450;letter-spacing:-.02em;
  color:var(--paper);margin:18px 0 0;
}
.statement__body{color:rgba(244,241,234,.88);margin-top:18px}
.statement .display-l{max-width:19ch}
.statement p{color:rgba(244,241,234,.78)}
.statement .rule{background:var(--line-dark)}

/* ---------- numbered process ---------- */
.steps{border-top:1px solid var(--line);margin-top:clamp(30px,4vw,56px)}
.step{
  display:grid;grid-template-columns:76px 1fr 1.15fr;gap:clamp(18px,3vw,52px);
  padding:clamp(24px,3vw,40px) 0;border-bottom:1px solid var(--line);align-items:baseline;
}
@media(max-width:820px){.step{grid-template-columns:44px 1fr;gap:14px}.step__body{grid-column:2}}
.step__no{font-weight:300;font-family:var(--display);font-size:clamp(24px,2.4vw,34px);color:var(--clay);line-height:1}
.step__t{font-size:clamp(19px,1.7vw,25px);font-weight:450;letter-spacing:-.015em;margin:0}
.step__body{color:var(--ink-70);margin:0;font-size:16px}

/* ---------- ledger: what the client actually receives ---------- */
.ledger{border-top:1px solid var(--line);margin-top:clamp(26px,3.4vw,44px)}
.ledger__row{
  display:grid;grid-template-columns:1.05fr 1.75fr .62fr;gap:clamp(14px,2.6vw,40px);
  padding:clamp(15px,1.7vw,21px) 0;border-bottom:1px solid var(--line);align-items:baseline;
}
.ledger__k{font-weight:500;font-size:16.5px;letter-spacing:-.015em;margin:0}
.ledger__v{color:var(--ink-70);font-size:15.5px;margin:0;max-width:none}
.ledger__c{
  font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-45);
  text-align:right;white-space:nowrap;
}
@media(max-width:800px){
  .ledger__row{grid-template-columns:1fr auto;gap:6px 16px}
  .ledger__v{grid-column:1/-1}
  .ledger__c{text-align:right}
}
.statement .ledger{border-color:var(--line-dark)}
.statement .ledger__row{border-color:var(--line-dark)}
.statement .ledger__v{color:rgba(244,241,234,.7)}
.statement .ledger__c{color:rgba(244,241,234,.45)}

/* ---------- composition variants ----------
   The page deliberately does NOT use one section template. Three shapes:
   .head      label column + content   (used once, to open)
   .lead      full-width text, eyebrow sits above the headline
   .split     heading left, content right
   ------------------------------------------------------------------ */
.lead{max-width:none}
/* ---------- the two routes ----------
   Split panels, inset from the page edges, image always visible (not on hover).
   Asymmetric 56/44 so Private leads. */
.houses{
  display:grid;grid-template-columns:56fr 44fr;
  gap:clamp(10px,1.4vw,20px);align-items:end;
}
@media(max-width:820px){.houses{grid-template-columns:1fr;gap:14px}}

.house{
  position:relative;isolation:isolate;overflow:hidden;
  display:flex;flex-direction:column;justify-content:flex-end;
  min-height:clamp(360px,38vw,520px);
  padding:clamp(26px,2.8vw,42px);
  text-decoration:none;color:var(--paper);
}
.house__bg{
  position:absolute;inset:0;z-index:-2;width:100%;height:100%;object-fit:cover;
  transition:transform 1.2s cubic-bezier(.2,.7,.3,1);
}
.house:hover .house__bg{transform:scale(1.04)}
.house::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,
    rgba(14,19,15,0) 0%,
    rgba(14,19,15,0) 34%,
    rgba(14,19,15,.44) 62%,
    rgba(14,19,15,.80) 86%,
    rgba(14,19,15,.88) 100%);
}
.house:last-child{min-height:clamp(300px,31vw,428px)}
@media(max-width:820px){
  .house:last-child{min-height:clamp(300px,42vw,380px)}
  /* shorter panels put the copy over more of the image, so carry more scrim */
  .house::before{
    background:linear-gradient(180deg,
      rgba(14,19,15,0) 0%,
      rgba(14,19,15,.20) 24%,
      rgba(14,19,15,.62) 52%,
      rgba(14,19,15,.86) 82%,
      rgba(14,19,15,.90) 100%);
  }
}
.house__name{margin:0 0 8px}
.house__meta{margin:0;color:rgba(244,241,234,.88);font-size:clamp(15px,1.1vw,16.5px);max-width:38ch}
.house__go{
  display:inline-flex;align-self:flex-start;align-items:center;gap:9px;margin-top:20px;
  font-size:15px;font-weight:450;
  border-bottom:1px solid rgba(244,241,234,.45);padding-bottom:3px;
  transition:gap .2s,border-color .2s;
}
.house:hover .house__go{gap:15px;border-color:var(--paper)}

/* ---------- statement ---------- */
.statement{background:var(--forest);color:var(--paper)}
/* the commercial counterweight: less air than the editorial sections, and the
   three text blocks held tight together so the argument lands as one unit */
.statement--tight{padding-block:clamp(62px,7.1vw,112px)}
.statement__claim{
  font-size:clamp(18px,1.5vw,21px);font-weight:450;letter-spacing:-.02em;
  color:var(--paper);margin:18px 0 0;
}
.statement__body{color:rgba(244,241,234,.88);margin-top:18px}
.statement .display-l{max-width:19ch}
.statement p{color:rgba(244,241,234,.78)}
.statement .rule{background:var(--line-dark)}

/* ---------- numbered process ---------- */
.steps{border-top:1px solid var(--line);margin-top:clamp(30px,4vw,56px)}
.step{
  display:grid;grid-template-columns:76px 1fr 1.15fr;gap:clamp(18px,3vw,52px);
  padding:clamp(24px,3vw,40px) 0;border-bottom:1px solid var(--line);align-items:baseline;
}
@media(max-width:820px){.step{grid-template-columns:44px 1fr;gap:14px}.step__body{grid-column:2}}
.step__no{font-weight:300;font-family:var(--display);font-size:clamp(24px,2.4vw,34px);color:var(--clay);line-height:1}
.step__t{font-size:clamp(19px,1.7vw,25px);font-weight:450;letter-spacing:-.015em;margin:0}
.step__body{color:var(--ink-70);margin:0;font-size:16px}

/* ---------- ledger: what the client actually receives ---------- */
.ledger{border-top:1px solid var(--line);margin-top:clamp(26px,3.4vw,44px)}
.ledger__row{
  display:grid;grid-template-columns:1.05fr 1.75fr .62fr;gap:clamp(14px,2.6vw,40px);
  padding:clamp(15px,1.7vw,21px) 0;border-bottom:1px solid var(--line);align-items:baseline;
}
.ledger__k{font-weight:500;font-size:16.5px;letter-spacing:-.015em;margin:0}
.ledger__v{color:var(--ink-70);font-size:15.5px;margin:0;max-width:none}
.ledger__c{
  font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-45);
  text-align:right;white-space:nowrap;
}
@media(max-width:800px){
  .ledger__row{grid-template-columns:1fr auto;gap:6px 16px}
  .ledger__v{grid-column:1/-1}
  .ledger__c{text-align:right}
}
.statement .ledger{border-color:var(--line-dark)}
.statement .ledger__row{border-color:var(--line-dark)}
.statement .ledger__v{color:rgba(244,241,234,.7)}
.statement .ledger__c{color:rgba(244,241,234,.45)}

/* ---------- composition variants ----------
   The page deliberately does NOT use one section template. Three shapes:
   .head      label column + content   (used once, to open)
   .lead      full-width text, eyebrow sits above the headline
   .split     heading left, content right
   ------------------------------------------------------------------ */
.lead{max-width:none}
/* ---------- the two routes ----------
   Split panels, inset from the page edges, image always visible (not on hover).
   Asymmetric 56/44 so Private leads. */
.houses{
  display:grid;grid-template-columns:56fr 44fr;
  gap:clamp(10px,1.4vw,20px);align-items:end;
}
@media(max-width:820px){.houses{grid-template-columns:1fr;gap:14px}}

.house{
  position:relative;isolation:isolate;overflow:hidden;
  display:flex;flex-direction:column;justify-content:flex-end;
  min-height:clamp(360px,38vw,520px);
  padding:clamp(26px,2.8vw,42px);
  text-decoration:none;color:var(--paper);
}
.house__bg{
  position:absolute;inset:0;z-index:-2;width:100%;height:100%;object-fit:cover;
  transition:transform 1.2s cubic-bezier(.2,.7,.3,1);
}
.house:hover .house__bg{transform:scale(1.04)}
.house::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,
    rgba(14,19,15,0) 0%,
    rgba(14,19,15,0) 34%,
    rgba(14,19,15,.44) 62%,
    rgba(14,19,15,.80) 86%,
    rgba(14,19,15,.88) 100%);
}
.house:last-child{min-height:clamp(300px,31vw,428px)}
@media(max-width:820px){
  .house:last-child{min-height:clamp(300px,42vw,380px)}
  /* shorter panels put the copy over more of the image, so carry more scrim */
  .house::before{
    background:linear-gradient(180deg,
      rgba(14,19,15,0) 0%,
      rgba(14,19,15,.20) 24%,
      rgba(14,19,15,.62) 52%,
      rgba(14,19,15,.86) 82%,
      rgba(14,19,15,.90) 100%);
  }
}
.house__name{margin:0 0 8px}
.house__meta{margin:0;color:rgba(244,241,234,.88);font-size:clamp(15px,1.1vw,16.5px);max-width:38ch}
.house__go{
  display:inline-flex;align-self:flex-start;align-items:center;gap:9px;margin-top:20px;
  font-size:15px;font-weight:450;
  border-bottom:1px solid rgba(244,241,234,.45);padding-bottom:3px;
  transition:gap .2s,border-color .2s;
}
.house:hover .house__go{gap:15px;border-color:var(--paper)}

/* ---------- statement ---------- */
.statement{background:var(--forest);color:var(--paper)}
/* the commercial counterweight: less air than the editorial sections, and the
   three text blocks held tight together so the argument lands as one unit */
.statement--tight{padding-block:clamp(62px,7.1vw,112px)}
.statement__claim{
  font-size:clamp(18px,1.5vw,21px);font-weight:450;letter-spacing:-.02em;
  color:var(--paper);margin:18px 0 0;
}
.statement__body{color:rgba(244,241,234,.88);margin-top:18px}
.statement .display-l{max-width:19ch}
.statement p{color:rgba(244,241,234,.78)}
.statement .rule{background:var(--line-dark)}

/* ---------- numbered process ---------- */
.steps{border-top:1px solid var(--line);margin-top:clamp(30px,4vw,56px)}
.step{
  display:grid;grid-template-columns:76px 1fr 1.15fr;gap:clamp(18px,3vw,52px);
  padding:clamp(24px,3vw,40px) 0;border-bottom:1px solid var(--line);align-items:baseline;
}
@media(max-width:820px){.step{grid-template-columns:44px 1fr;gap:14px}.step__body{grid-column:2}}
.step__no{font-weight:300;font-family:var(--display);font-size:clamp(24px,2.4vw,34px);color:var(--clay);line-height:1}
.step__t{font-size:clamp(19px,1.7vw,25px);font-weight:450;letter-spacing:-.015em;margin:0}
.step__body{color:var(--ink-70);margin:0;font-size:16px}

/* ---------- ledger: what the client actually receives ---------- */
.ledger{border-top:1px solid var(--line);margin-top:clamp(26px,3.4vw,44px)}
.ledger__row{
  display:grid;grid-template-columns:1.05fr 1.75fr .62fr;gap:clamp(14px,2.6vw,40px);
  padding:clamp(15px,1.7vw,21px) 0;border-bottom:1px solid var(--line);align-items:baseline;
}
.ledger__k{font-weight:500;font-size:16.5px;letter-spacing:-.015em;margin:0}
.ledger__v{color:var(--ink-70);font-size:15.5px;margin:0;max-width:none}
.ledger__c{
  font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-45);
  text-align:right;white-space:nowrap;
}
@media(max-width:800px){
  .ledger__row{grid-template-columns:1fr auto;gap:6px 16px}
  .ledger__v{grid-column:1/-1}
  .ledger__c{text-align:right}
}
.statement .ledger{border-color:var(--line-dark)}
.statement .ledger__row{border-color:var(--line-dark)}
.statement .ledger__v{color:rgba(244,241,234,.7)}
.statement .ledger__c{color:rgba(244,241,234,.45)}

/* ---------- composition variants ----------
   The page deliberately does NOT use one section template. Three shapes:
   .head      label column + content   (used once, to open)
   .lead      full-width text, eyebrow sits above the headline
   .split     heading left, content right
   ------------------------------------------------------------------ */
.lead{max-width:none}

/* ---------- the two routes ----------
   Split panels, inset from the page edges, image always visible (not on hover).
   Asymmetric 56/44 so Private leads. */
.houses{
  display:grid;grid-template-columns:56fr 44fr;
  gap:clamp(10px,1.4vw,20px);align-items:end;
}
@media(max-width:820px){.houses{grid-template-columns:1fr;gap:14px}}

.house{
  position:relative;isolation:isolate;overflow:hidden;
  display:flex;flex-direction:column;justify-content:flex-end;
  min-height:clamp(360px,38vw,520px);
  padding:clamp(26px,2.8vw,42px);
  text-decoration:none;color:var(--paper);
}
.house__bg{
  position:absolute;inset:0;z-index:-2;width:100%;height:100%;object-fit:cover;
  transition:transform 1.2s cubic-bezier(.2,.7,.3,1);
}
.house:hover .house__bg{transform:scale(1.04)}
.house::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,
    rgba(14,19,15,0) 0%,
    rgba(14,19,15,0) 34%,
    rgba(14,19,15,.44) 62%,
    rgba(14,19,15,.80) 86%,
    rgba(14,19,15,.88) 100%);
}
.house:last-child{min-height:clamp(300px,31vw,428px)}
@media(max-width:820px){
  .house:last-child{min-height:clamp(300px,42vw,380px)}
  /* shorter panels put the copy over more of the image, so carry more scrim */
  .house::before{
    background:linear-gradient(180deg,
      rgba(14,19,15,0) 0%,
      rgba(14,19,15,.20) 24%,
      rgba(14,19,15,.62) 52%,
      rgba(14,19,15,.86) 82%,
      rgba(14,19,15,.90) 100%);
  }
}
.house__name{margin:0 0 8px}
.house__meta{margin:0;color:rgba(244,241,234,.88);font-size:clamp(15px,1.1vw,16.5px);max-width:38ch}
.house__go{
  display:inline-flex;align-self:flex-start;align-items:center;gap:9px;margin-top:20px;
  font-size:15px;font-weight:450;
  border-bottom:1px solid rgba(244,241,234,.45);padding-bottom:3px;
  transition:gap .2s,border-color .2s;
}
.house:hover .house__go{gap:15px;border-color:var(--paper)}

/* ---------- statement ---------- */
.statement{background:var(--forest);color:var(--paper)}
/* the commercial counterweight: less air than the editorial sections, and the
   three text blocks held tight together so the argument lands as one unit */
.statement--tight{padding-block:clamp(62px,7.1vw,112px)}
.statement__claim{
  font-size:clamp(18px,1.5vw,21px);font-weight:450;letter-spacing:-.02em;
  color:var(--paper);margin:18px 0 0;
}
.statement__body{color:rgba(244,241,234,.88);margin-top:18px}
.statement .display-l{max-width:19ch}
.statement p{color:rgba(244,241,234,.78)}
.statement .rule{background:var(--line-dark)}

/* ---------- numbered process ---------- */
.steps{border-top:1px solid var(--line);margin-top:clamp(30px,4vw,56px)}
.step{
  display:grid;grid-template-columns:76px 1fr 1.15fr;gap:clamp(18px,3vw,52px);
  padding:clamp(24px,3vw,40px) 0;border-bottom:1px solid var(--line);align-items:baseline;
}
@media(max-width:820px){.step{grid-template-columns:44px 1fr;gap:14px}.step__body{grid-column:2}}
.step__no{font-weight:300;font-family:var(--display);font-size:clamp(24px,2.4vw,34px);color:var(--clay);line-height:1}
.step__t{font-size:clamp(19px,1.7vw,25px);font-weight:450;letter-spacing:-.015em;margin:0}
.step__body{color:var(--ink-70);margin:0;font-size:16px}

/* ---------- ledger: what the client actually receives ---------- */
.ledger{border-top:1px solid var(--line);margin-top:clamp(26px,3.4vw,44px)}
.ledger__row{
  display:grid;grid-template-columns:1.05fr 1.75fr .62fr;gap:clamp(14px,2.6vw,40px);
  padding:clamp(15px,1.7vw,21px) 0;border-bottom:1px solid var(--line);align-items:baseline;
}
.ledger__k{font-weight:500;font-size:16.5px;letter-spacing:-.015em;margin:0}
.ledger__v{color:var(--ink-70);font-size:15.5px;margin:0;max-width:none}
.ledger__c{
  font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-45);
  text-align:right;white-space:nowrap;
}
@media(max-width:800px){
  .ledger__row{grid-template-columns:1fr auto;gap:6px 16px}
  .ledger__v{grid-column:1/-1}
  .ledger__c{text-align:right}
}
.statement .ledger{border-color:var(--line-dark)}
.statement .ledger__row{border-color:var(--line-dark)}
.statement .ledger__v{color:rgba(244,241,234,.7)}
.statement .ledger__c{color:rgba(244,241,234,.45)}

/* ---------- composition variants ----------
   The page deliberately does NOT use one section template. Three shapes:
   .head      label column + content   (used once, to open)
   .lead      full-width text, eyebrow sits above the headline
   .split     heading left, content right
   ------------------------------------------------------------------ */
.lead{max-width:none}
.cols{
  display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(26px,5vw,96px);padding-top:clamp(22px,2.4vw,34px);
}
@media(max-width:820px){.cols{grid-template-columns:1fr;gap:18px}}
.cols>*{margin:0}
.cols .lede{max-width:22ch;font-size:clamp(21px,1.9vw,29px);line-height:1.32;color:var(--ink)}
@media(max-width:820px){.cols .lede{max-width:none}}

/* what the sentence used to enumerate, as something you can scan */
.spec{list-style:none;margin:0;padding:0}
.spec li{
  padding:11px 0;border-bottom:1px solid var(--line);
  font-size:clamp(15.5px,1.15vw,17px);color:var(--ink-70);
}
.spec li:last-child{border-bottom:0}
.lead h2{max-width:15ch}
.lead p{margin-top:clamp(20px,2.2vw,28px)}

.split{display:grid;grid-template-columns:47fr 53fr;gap:clamp(28px,5vw,90px);align-items:start}
.split--top>*+*{padding-top:6px}
/* the statement headline needs a wider column than the default split */
.split--wide{grid-template-columns:58fr 42fr}
@media(max-width:900px){.split--wide{grid-template-columns:1fr}}
@media(max-width:900px){.split{grid-template-columns:1fr;gap:28px}}

/* a section that resolves within one screen: label, headline, copy and imagery
   sized against the viewport rather than stacking past it */
.section--fit{
  min-height:100svh;display:flex;flex-direction:column;justify-content:center;
  padding-block:clamp(28px,4vh,72px);
}

/* build sequence: one dominant image, two supporting. Unequal on purpose. */
.build-grid{
  --grid-h:clamp(230px,41svh,620px);
  display:grid;grid-template-columns:64fr 36fr;
  gap:clamp(10px,1.2vw,20px);margin-top:clamp(22px,3vh,44px);
}
@media(max-width:820px){.build-grid{grid-template-columns:1fr}}
.build-grid__side{display:grid;gap:clamp(10px,1.2vw,20px);grid-template-rows:1fr 1fr}
/* each figure is image + caption; the image flexes so the caption always has
   its own room and can never be overlapped by the tile below */
.shot{margin:0;position:relative;display:flex;flex-direction:column;min-height:0}
.shot img{width:100%;flex:1;min-height:0;object-fit:cover;display:block;background:var(--paper-2)}
.shot figcaption{flex:none}
.shot--lead,.build-grid__side{height:var(--grid-h)}
@media(max-width:820px){
  .build-grid{grid-template-columns:1fr;--grid-h:auto}
  .build-grid__side{grid-template-columns:1fr 1fr;grid-template-rows:none;height:auto}
  .shot--lead{height:auto}
  .shot--lead img,.shot--side img{aspect-ratio:3/2;flex:none}
}
.shot figcaption{
  margin-top:10px;font-size:11.5px;font-weight:500;letter-spacing:.14em;
  text-transform:uppercase;color:var(--ink-70);
}

/* stacked proof items, not an equal three-across card row */
.proof-list{border-top:1px solid var(--line-strong)}
.proof-list__item{padding:clamp(12px,1.6vh,18px) 0;border-bottom:1px solid var(--line)}
.proof-list__item:last-child{border-bottom:0}
.proof-list h3{margin:0 0 6px}
.proof-list p{margin:0;color:var(--ink-70);font-size:16px;max-width:46ch}

/* ---------- three proof blocks + one client view ---------- */
.proofs{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:clamp(22px,3vw,52px);margin-top:clamp(34px,4vw,58px);
}
@media(max-width:820px){.proofs{grid-template-columns:1fr;gap:22px}}
.proof{border-top:1px solid var(--line-strong);padding-top:18px}
.proof h3{margin:0 0 10px}
.proof p{margin:0;color:var(--ink-70);font-size:16px;max-width:34ch}

/* Proof section: copy in a left column, the product window bleeding off the
   right edge of the viewport. No fade — the crop is the viewport edge, which
   reads as deliberate rather than as an image that ran out. */
.proof-sec{
  min-height:100svh;display:flex;align-items:center;
  gap:clamp(24px,3.6vw,72px);
  padding-block:clamp(30px,4.4vh,80px);
  padding-left:max(var(--gutter),calc((100vw - var(--maxw))/2 + var(--gutter)));
  padding-right:0;overflow:hidden;
}
.proof-sec__text{flex:0 0 clamp(300px,34vw,470px);min-width:0}
.proof-sec__text .lede{margin-top:clamp(16px,2vh,24px);max-width:44ch}

.proof-sec__shot{flex:1 1 auto;min-width:0;margin:0}
.proof-sec__shot img{
  display:block;height:clamp(320px,58svh,660px);width:auto;max-width:none;
  border:1px solid var(--line);border-right:0;border-radius:10px 0 0 10px;
  box-shadow:0 36px 80px -40px rgba(25,27,24,.34);
  background:#fff;
}

@media(max-width:900px){
  .proof-sec{
    flex-direction:column;align-items:stretch;min-height:0;
    padding-right:0;padding-block:var(--section-py);
  }
  .proof-sec__text{
    flex:none;
    padding-right:max(var(--gutter),calc((100vw - var(--maxw))/2 + var(--gutter)));
  }
  /* keep the bleed on small screens too: squeezing the whole timeline into
     390px makes it unreadable, so show the legible left portion instead */
  .proof-sec__shot{margin-top:clamp(24px,4vw,40px)}
  .proof-sec__shot img{height:clamp(260px,34svh,360px);width:auto;max-width:none}
}

/* ---------- build stages: process, not portfolio ---------- */
.stages{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(10px,1.1vw,18px)}
@media(max-width:900px){.stages{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.stages{grid-template-columns:1fr}}
.stage{margin:0}
.stage img{width:100%;aspect-ratio:3/2;object-fit:cover;display:block;background:var(--paper-2)}
.stage figcaption{margin-top:13px;font-size:13px;color:var(--ink-70);line-height:1.4}
.stage b{display:block;font-weight:500;color:var(--ink);font-size:11.5px;letter-spacing:.14em;text-transform:uppercase;margin-bottom:6px}

/* ---------- selected works: one lead, two stacked ----------
   Lead is 5:4 with full metadata; the pair are 16:9 with a single line, which
   lands the two columns at close to the same height without forcing it. */
.works__head{
  display:flex;justify-content:space-between;align-items:baseline;gap:24px;
  border-bottom:1px solid var(--line-strong);padding-bottom:16px;
  margin-bottom:clamp(22px,2.6vw,38px);
}
.works{display:grid;grid-template-columns:58fr 42fr;gap:clamp(12px,1.6vw,26px)}
@media(max-width:860px){.works{grid-template-columns:1fr;gap:28px}}
.works__side{display:grid;gap:clamp(12px,1.6vw,26px);align-content:start}

.work{display:block;text-decoration:none;color:inherit}
.work__media{margin:0;overflow:hidden;background:var(--paper-2)}
.work__media img{width:100%;display:block;object-fit:cover;transition:transform 1.3s cubic-bezier(.2,.7,.3,1)}
.work:hover .work__media img{transform:scale(1.035)}
.work--lead .work__media img{aspect-ratio:5/4}
.works__side .work__media img{aspect-ratio:16/9}
@media(max-width:860px){
  .work--lead .work__media img,.works__side .work__media img{aspect-ratio:3/2}
}

.work__name{margin:clamp(14px,1.6vw,20px) 0 0}
.work__line{
  margin:8px 0 0;color:var(--ink-70);font-size:15px;
}
.work__facts{
  margin:clamp(14px,1.6vw,18px) 0 0;padding-top:14px;
  border-top:1px solid var(--line);
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;
}
@media(max-width:620px){.work__facts{grid-template-columns:1fr 1fr;gap:14px}}
.work__facts dt{
  font-size:11px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--ink-45);margin-bottom:5px;
}
.work__facts dd{margin:0;font-size:15.5px;color:var(--ink)}

/* ---------- homepage projects: one feature, one secondary ---------- */
.feature{display:block;text-decoration:none;color:inherit;margin-top:clamp(34px,4.4vh,60px)}
.feature__media{margin:0;overflow:hidden}
.feature__media img{width:100%;aspect-ratio:16/7;object-fit:cover;display:block;transition:transform 1.1s cubic-bezier(.2,.7,.3,1)}
.feature:hover .feature__media img{transform:scale(1.03)}
.feature__meta{
  margin:22px 0 0;font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-45);
}
.feature__name{margin:10px 0 0}
.feature p{margin-top:14px;max-width:660px}

.mini{
  display:grid;grid-template-columns:230px 1fr;gap:clamp(20px,2.6vw,40px);
  align-items:center;text-decoration:none;color:inherit;
  border-top:1px solid var(--line);margin-top:clamp(30px,4vh,56px);padding-top:clamp(20px,2.4vh,32px);
}
@media(max-width:640px){.mini{grid-template-columns:1fr;gap:16px}}
.mini__media{margin:0;overflow:hidden}
.mini__media img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;transition:transform 1.1s cubic-bezier(.2,.7,.3,1)}
.mini:hover .mini__media img{transform:scale(1.04)}
.mini__meta{font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-45);margin:0 0 8px}
.mini h3{margin:0 0 10px}
.mini p{margin:0;color:var(--ink-70);font-size:16px;max-width:56ch}

/* ---------- projects ---------- */
.proj-list{border-top:1px solid var(--line)}
.proj{
  display:grid;grid-template-columns:1fr 1fr;gap:clamp(24px,4vw,64px);
  align-items:center;padding:clamp(28px,4vw,56px) 0;border-bottom:1px solid var(--line);
  text-decoration:none;color:inherit;
}
@media(max-width:860px){.proj{grid-template-columns:1fr;gap:20px}}
.proj__media{position:relative;aspect-ratio:4/3;overflow:hidden;background:var(--paper-2)}
.proj:nth-child(even) .proj__media{order:2}
@media(max-width:860px){.proj:nth-child(even) .proj__media{order:0}}
.proj__media img{width:100%;height:100%;object-fit:cover;transition:transform 1.1s cubic-bezier(.2,.7,.3,1)}
.proj:hover .proj__media img{transform:scale(1.045)}
.proj__meta{display:flex;gap:22px;flex-wrap:wrap;font-size:12.5px;letter-spacing:.06em;text-transform:uppercase;color:var(--ink-45);margin-bottom:18px}
.proj__name{margin:0 0 14px}
.proj p{font-size:16px;color:var(--ink-70)}

.tag{
  display:inline-block;font-size:11px;letter-spacing:.14em;text-transform:uppercase;
  border:1px solid var(--line-strong);border-radius:999px;padding:4px 11px;color:var(--ink-70);
}
.tag--live{border-color:var(--clay);color:var(--clay)}

/* ---------- image blocks ---------- */
.figure figcaption{font-size:13px;color:var(--ink-45);margin-top:12px}
.img-duo{display:grid;grid-template-columns:1fr 1fr;gap:clamp(12px,2vw,24px)}
@media(max-width:760px){.img-duo{grid-template-columns:1fr}}
.img-duo img,.img-full img{width:100%;object-fit:cover}
.img-tall{aspect-ratio:3/4}
.img-wide{aspect-ratio:16/10}
.bleed{max-width:none;width:100%}

/* ---------- fact rows ---------- */
.facts{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line)}
@media(max-width:760px){.facts{grid-template-columns:repeat(2,1fr)}}
.fact{padding:22px 0;border-bottom:1px solid var(--line)}
.fact dt{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-45);margin-bottom:8px}
.fact dd{font-weight:300;margin:0;font-size:19px;font-family:var(--display)}

/* ---------- form ---------- */
.form{display:grid;gap:20px;max-width:600px}
.field label{display:block;font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--ink-45);margin-bottom:8px}
.field input,.field textarea,.field select{
  width:100%;background:transparent;border:0;border-bottom:1px solid var(--line-strong);
  padding:11px 0;font-family:var(--text);font-size:17px;color:var(--ink);border-radius:0;
}
.field input:focus,.field textarea:focus,.field select:focus{outline:0;border-bottom-color:var(--clay)}
.field textarea{resize:vertical;min-height:110px}
.field-2{display:grid;grid-template-columns:1fr 1fr;gap:20px}
@media(max-width:620px){.field-2{grid-template-columns:1fr}}


/* ---------- footer ---------- */
.footer{background:var(--forest);color:var(--paper);padding-block:clamp(56px,6vw,88px) 34px}
.footer a{color:rgba(244,241,234,.78);text-decoration:none;font-size:15px}
.footer a:hover{color:var(--paper)}
.footer__grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:clamp(28px,4vw,56px)}
@media(max-width:900px){.footer__grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.footer__grid{grid-template-columns:1fr}}
.footer h4{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:rgba(244,241,234,.45);margin:0 0 18px;font-weight:500}
.footer ul{list-style:none;margin:0;padding:0;display:grid;gap:11px}
.footer__brand{line-height:0}
.footer__brand .wordmark{height:22px;width:auto;display:block}
.footer__note{color:rgba(244,241,234,.55);font-size:14px;max-width:34ch;margin-top:18px}
/* Companies Act trading disclosures — registered name, number, place of
   registration and registered office must all appear. */
.footer__legal{
  margin:14px 0 0;max-width:none;
  font-size:12px;line-height:1.5;color:rgba(244,241,234,.42);
}
.footer__base{
  margin-top:clamp(40px,5vw,68px);padding-top:24px;border-top:1px solid var(--line-dark);
  display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;
  font-size:13px;color:rgba(244,241,234,.5);
}

/* ---------- motion ---------- */
.houses.reveal{opacity:1;transform:none}
.houses.reveal .house{clip-path:inset(0 0 100% 0);transition:clip-path 1.05s cubic-bezier(.22,.7,.25,1)}
.houses.reveal.in .house{clip-path:inset(0 0 0 0)}
.houses.reveal.in .house:last-child{transition-delay:.14s}
@media(prefers-reduced-motion:reduce){.houses.reveal .house{clip-path:none}}

.reveal{opacity:0;transform:translateY(18px);transition:opacity .8s cubic-bezier(.2,.7,.3,1),transform .8s cubic-bezier(.2,.7,.3,1)}
.reveal.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
  .reveal{opacity:1;transform:none}
}
