:root {
  --moorland: #20352f;
  --deep-moorland: #15251f;
  --moorland-soft: #5c655f;
  --york-stone: #f2ebdd;
  --paper: #fbf8f1;
  --white: #fffefa;
  --oxblood: #6a2f37;
  --oxblood-hover: #7a3942;
  --aged-brass: #a17c45;
  --ink: #1c2823;
  --pennine-slate: #5c655f;
  --line: rgba(32,53,47, .2);
  --line-light: rgba(242,235,221, .2);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1280px, calc(100vw - 40px));
  --header-height: 104px;
  --radius: 2px;
  --shadow: 0 28px 80px rgba(21,37,31, .13);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--york-stone);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .22em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--oxblood); outline-offset: 4px; }
::selection { color: var(--york-stone); background: var(--moorland); }

.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--oxblood);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.eyebrow,
.section-label,
.breadcrumb,
.micro-label {
  margin: 0 0 22px;
  font-size: .75rem;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before,
.section-label::before {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 12px;
  background: var(--aged-brass);
  content: "";
}
.display,
h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3.25rem, 7vw, 7.6rem); }
h2 { font-size: clamp(2.35rem, 4.5vw, 5.15rem); }
h3 { margin: 0; font-size: 1.1rem; line-height: 1.25; }
p { margin: 0 0 1.2em; }
.lede { max-width: 720px; font-size: clamp(1.13rem, 1.7vw, 1.45rem); line-height: 1.6; }
.quiet { color: var(--pennine-slate); }
.nowrap { white-space: nowrap; }
.space-top { margin-top: 34px; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--moorland);
  background: rgba(242,235,221, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  width: min(232px, 44vw);
  flex: 0 0 auto;
  padding: 5px 7px;
  background: var(--white);
  border: 1px solid rgba(32,53,47,.16);
  box-shadow: 0 8px 24px rgba(21,37,31,.06);
  text-decoration: none;
}
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(16px, 2.3vw, 36px); }
.site-nav a {
  position: relative;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--oxblood);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current]::after { transform: scaleX(1); }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--moorland);
  background: transparent;
}
.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--oxblood); border-color: var(--oxblood); }
.button-primary:hover { background: var(--oxblood-hover); border-color: var(--oxblood-hover); }
.button-secondary { color: var(--york-stone); background: transparent; border-color: rgba(242,235,221, .55); }
.button-secondary:hover { color: var(--moorland); background: var(--york-stone); }
.button-outline { color: var(--moorland); background: transparent; border-color: var(--moorland); }
.button-outline:hover { color: var(--york-stone); background: var(--moorland); }
.text-link { font-weight: 750; text-decoration: none; border-bottom: 1px solid currentColor; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--york-stone);
  background: var(--moorland);
}
.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(242,235,221,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(242,235,221,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to right, transparent, black 45%, black);
}
.hero-grid {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  padding-block: clamp(72px, 9vw, 138px);
}
.hero h1 { max-width: 800px; }
.hero h1 em {
  color: var(--york-stone);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--aged-brass);
  text-decoration-thickness: .06em;
  text-underline-offset: .12em;
}
.hero-copy .lede { max-width: 650px; margin-top: 30px; color: rgba(242,235,221, .8); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 28px; color: rgba(242,235,221,.68); font-size: .82rem; }
.hero-note span::before { color: var(--aged-brass); content: "•"; margin-right: 8px; }

.diagnostic {
  position: relative;
  isolation: isolate;
  color: var(--moorland);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.diagnostic::after {
  position: absolute;
  z-index: -1;
  top: 76px;
  right: 28px;
  width: clamp(128px, 15vw, 190px);
  aspect-ratio: 57 / 56;
  pointer-events: none;
  background: url("/assets/winders-rose-exact-v26.png") center / contain no-repeat;
  content: "";
  opacity: .055;
}
.diagnostic__top,
.diagnostic__foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  border: 1px solid rgba(32,53,47,.45);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.diagnostic__top { border-bottom: 0; }
.diagnostic__foot { border-top: 0; color: var(--pennine-slate); }
.diagnostic__frame { padding: clamp(24px, 4vw, 44px); border: 1px solid rgba(32,53,47,.45); }
.diagnostic__kicker { margin: 0 0 7px; color: var(--oxblood); font-size: .73rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.diagnostic h2 { max-width: 520px; font-size: clamp(2.3rem, 4vw, 4.2rem); }
.diagnostic__prompt { max-width: 520px; margin: 15px 0 26px; color: var(--pennine-slate); font-size: .94rem; }
.diagnostic__stage { display: grid; grid-template-columns: minmax(180px, .86fr) minmax(220px, 1.14fr); gap: 24px; align-items: stretch; }
.building-map {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  color: var(--york-stone);
  background: var(--deep-moorland);
  border: 1px solid var(--deep-moorland);
}
.building-map svg { position: absolute; inset: 22px; width: calc(100% - 44px); height: calc(100% - 44px); opacity: .42; }
.building-map__hint { position: absolute; top: 14px; left: 15px; font-size: .62rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.building-map__teaser { display: none; }
.signal {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--york-stone);
  background: var(--moorland);
  border: 2px solid var(--aged-brass);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(106,47,55,.6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.signal:hover,
.signal[aria-pressed="true"] { transform: scale(1.13); box-shadow: 0 0 0 8px rgba(106,47,55,.18); }
.signal[data-visited="true"] { color: var(--white); background: var(--oxblood); border-color: var(--aged-brass); }
.signal[data-signal="0"] { left: 22%; bottom: 16%; }
.signal[data-signal="1"] { right: 20%; bottom: 39%; }
.signal[data-signal="2"] { left: 30%; top: 29%; }
.signal[data-signal="3"] { right: 23%; top: 12%; }
.diagnostic__readout {
  scroll-margin-top: calc(var(--header-height) + 6px);
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
}
.readout-index { margin-bottom: 42px; color: var(--oxblood); font-size: .73rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.diagnostic__readout h3 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; }
.diagnostic__readout p { margin: 12px 0 0; color: var(--pennine-slate); font-size: .92rem; }
.diagnostic__question { padding-top: 15px; border-top: 1px solid var(--line); font-weight: 750; }
.diagnostic__progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; margin-top: 23px; }
.diagnostic__progress i { height: 3px; background: rgba(32,53,47,.15); }
.diagnostic__progress i.is-seen { background: var(--oxblood); }
.diagnostic__progress-label { min-height: 1.4em; font-size: .73rem !important; font-weight: 750; }
.diagnostic__unlock {
  margin-top: 18px;
  padding: 17px 18px;
  color: var(--york-stone);
  background: var(--moorland);
  border-left: 3px solid var(--aged-brass);
}
.diagnostic__unlock[hidden] { display: none; }
.diagnostic__unlock span { color: var(--york-stone); font-size: .68rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.diagnostic__unlock p { margin: 5px 0 0; color: rgba(242,235,221,.82); font-size: .86rem; line-height: 1.5; }
.diagnostic__cta { width: 100%; margin-top: 18px; }
.diagnostic__cta[data-complete="true"] { box-shadow: 0 0 0 4px rgba(106,47,55,.2); }

.proof-strip { color: var(--york-stone); background: var(--deep-moorland); border-top: 1px solid var(--line-light); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid div { min-height: 112px; padding: 25px 26px; border-right: 1px solid var(--line-light); }
.proof-grid div:first-child { border-left: 1px solid var(--line-light); }
.proof-grid strong { display: block; margin-bottom: 3px; color: var(--york-stone); font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.proof-grid span { color: rgba(242,235,221,.7); font-size: .8rem; line-height: 1.4; }

.agent-proof-strip {
  color: var(--york-stone);
  background: var(--deep-moorland);
  border-block: 1px solid var(--line-light);
}
.agent-proof-strip__grid {
  display: grid;
  grid-template-columns: 92px repeat(3, 1fr);
  align-items: stretch;
}
.agent-proof-strip__mark,
.agent-proof-strip__item {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 25px;
  border-right: 1px solid var(--line-light);
}
.agent-proof-strip__mark { align-items: center; border-left: 1px solid var(--line-light); }
.agent-proof-strip__mark img { width: 42px; height: auto; }
.agent-proof-strip__item strong {
  color: var(--york-stone);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.15;
}
.agent-proof-strip__item span {
  margin-top: 5px;
  color: rgba(242,235,221,.68);
  font-size: .75rem;
  line-height: 1.4;
}

.section { padding-block: clamp(84px, 11vw, 150px); }
.section--paper { background: var(--paper); }
.section--navy { color: var(--york-stone); background: var(--moorland); }
.section--paper .section-label {
  display: inline-flex;
  align-items: center;
}
.section--paper .section-label::after {
  width: 22px;
  aspect-ratio: 57 / 56;
  display: inline-block;
  flex: 0 0 auto;
  margin-left: 13px;
  background: url("/assets/winders-rose-exact-v26.png") center / contain no-repeat;
  content: "";
}
.section-intro { display: grid; grid-template-columns: minmax(180px, .32fr) minmax(0, .68fr); gap: 40px; margin-bottom: clamp(50px, 7vw, 86px); }
.section-intro h2 { max-width: 870px; }
.section-intro__copy { max-width: 750px; margin-top: 25px; color: var(--pennine-slate); font-size: 1.12rem; }
.section--navy .section-intro__copy { color: rgba(242,235,221,.72); }

.criteria-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.criterion { min-height: 330px; padding: clamp(26px, 3.2vw, 48px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.criterion__number { display: block; margin-bottom: 58px; color: var(--oxblood); font-weight: 850; letter-spacing: .13em; }
.criterion h3 { max-width: 260px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.criterion p { margin-top: 18px; color: var(--pennine-slate); }
.criteria-note { display: flex; justify-content: space-between; gap: 30px; align-items: center; margin-top: 35px; padding-top: 25px; border-top: 1px solid var(--line); }
.criteria-note p { max-width: 800px; margin: 0; color: var(--pennine-slate); }

.process { display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.process article { position: relative; padding: 34px 28px 42px; border-top: 1px solid var(--line-light); border-right: 1px solid var(--line-light); }
.process article:first-child { border-left: 1px solid var(--line-light); }
.process article::before { display: block; margin-bottom: 70px; color: var(--york-stone); font-weight: 850; letter-spacing: .12em; counter-increment: step; content: "0" counter(step); }
.process h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.process p { margin-top: 14px; color: rgba(242,235,221,.68); font-size: .94rem; }

.project-feature { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); min-height: 620px; background: var(--moorland); box-shadow: var(--shadow); }
.project-visual { position: relative; overflow: hidden; min-height: 480px; background: var(--york-stone); }
.project-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.58) contrast(1.05); }
.project-visual::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(21,37,31,.72)); content: ""; }
.project-visual__tag { position: absolute; z-index: 2; top: 22px; left: 22px; padding: 8px 11px; color: var(--white); background: var(--oxblood); font-size: .67rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.project-copy { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(38px, 5vw, 72px); color: var(--york-stone); }
.project-copy h3 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.8rem); font-weight: 400; line-height: 1; }
.project-copy > div > p { color: rgba(242,235,221,.72); }
.project-facts { display: grid; grid-template-columns: repeat(2, 1fr); margin: 25px 0 34px; border-top: 1px solid var(--line-light); }
.project-facts div { padding: 17px 10px 17px 0; border-bottom: 1px solid var(--line-light); }
.project-facts dt { color: var(--york-stone); font-size: .67rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.project-facts dd { margin: 3px 0 0; font-size: .86rem; }

.commitment-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(50px, 8vw, 110px); }
.commitment-grid h2 { position: sticky; top: 130px; }
.commitment-list { border-top: 1px solid var(--line); }
.commitment-list article { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.commitment-list span { color: var(--oxblood); font-size: .78rem; font-weight: 850; }
.commitment-list p { margin: 7px 0 0; color: var(--pennine-slate); }

.feed-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 38px; }
.feed-head h2 { max-width: 680px; }
.social-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(320px, 43%); gap: 18px; overflow-x: auto; padding: 3px 3px 22px; scroll-snap-type: x mandatory; scrollbar-color: var(--oxblood) rgba(32,53,47,.15); }
.social-card { min-height: 370px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; background: var(--paper); border: 1px solid var(--line); scroll-snap-align: start; }
.social-card__meta { display: flex; justify-content: space-between; gap: 20px; color: var(--oxblood); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.social-card p { margin: 34px 0; display: -webkit-box; overflow: hidden; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.35; -webkit-line-clamp: 7; -webkit-box-orient: vertical; }
.social-card a { font-size: .76rem; font-weight: 850; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.social-card a::after { content: " ↗"; }
.social-status { min-height: 370px; display: grid; place-items: center; padding: 30px; text-align: center; background: var(--paper); border: 1px solid var(--line); }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 8vw, 110px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 26px 55px 26px 0; font-family: var(--serif); font-size: 1.4rem; line-height: 1.3; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 25px; right: 7px; color: var(--oxblood); font-family: var(--sans); font-size: 1.2rem; content: "+"; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 780px; padding: 0 50px 25px 0; color: var(--pennine-slate); }

.partner-strip { color: var(--york-stone); background: var(--deep-moorland); }
.partner-grid { display: grid; grid-template-columns: 230px 1fr auto; gap: 45px; align-items: center; padding-block: 45px; }
.partner-mark { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.partner-mark img { width: 54px; height: 54px; }
.partner-mark strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }
.partner-grid p { max-width: 690px; margin: 0; color: rgba(242,235,221,.68); font-size: .9rem; }

.conversion { color: var(--york-stone); background: var(--moorland); }
.conversion-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; padding-block: clamp(76px, 10vw, 130px); }
.conversion h2 { max-width: 820px; }
.conversion p { color: rgba(242,235,221,.72); }
.conversion-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }

.page-hero { padding-block: clamp(70px, 9vw, 125px); color: var(--york-stone); background: var(--moorland); }
.page-hero .breadcrumb { color: rgba(242,235,221,.58); }
.breadcrumb a { color: inherit; }
.page-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 55px; align-items: end; }
.page-hero h1 { max-width: 850px; font-size: clamp(3.2rem, 7vw, 7rem); }
.page-hero__copy { max-width: 600px; color: rgba(242,235,221,.75); font-size: 1.12rem; }
.page-hero__copy p:last-child { margin-bottom: 0; }
.page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.content-grid { display: grid; grid-template-columns: minmax(190px, .32fr) minmax(0, .68fr); gap: clamp(40px, 8vw, 110px); }
.content-grid__aside { color: var(--pennine-slate); }
.content-grid__aside > * { position: sticky; top: 130px; }
.content-grid__main { max-width: 820px; }
.content-grid__main h2 { margin: 1.4em 0 .45em; font-size: clamp(2.1rem, 4vw, 3.65rem); }
.content-grid__main h2:first-child { margin-top: 0; }
.content-grid__main h3 { margin: 2em 0 .5em; font-size: 1.35rem; }
.content-grid__main ul { margin: 1em 0 2em; padding-left: 1.2em; }
.content-grid__main li { margin-bottom: .55em; }
.callout { margin: 35px 0; padding: 28px; background: rgba(106,47,55,.13); border-left: 3px solid var(--aged-brass); }
.callout p:last-child { margin-bottom: 0; }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card { padding: 35px; background: var(--paper); border: 1px solid var(--line); }
.card h3 { margin-bottom: 15px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.card p { color: var(--pennine-slate); }
.card p:last-child { margin-bottom: 0; }
.card--navy { color: var(--york-stone); background: var(--moorland); }
.card--navy p { color: rgba(242,235,221,.72); }

.mandate-banner { display: grid; grid-template-columns: 1fr auto; gap: 35px; align-items: center; padding: clamp(30px, 5vw, 58px); color: var(--york-stone); background: var(--moorland); }
.mandate-banner h2 { margin-bottom: 14px; font-size: clamp(2.25rem, 4vw, 4rem); }
.mandate-banner p { max-width: 680px; margin: 0; color: rgba(242,235,221,.7); }

.form-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(45px, 7vw, 90px); align-items: start; }
.form-aside { position: sticky; top: 125px; }
.form-aside h2 { margin-bottom: 22px; font-size: clamp(2.3rem, 4vw, 3.8rem); }
.form-aside ul { margin: 28px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.form-aside li { padding: 13px 0; border-bottom: 1px solid var(--line); }
.opportunity-form { padding: clamp(28px, 5vw, 55px); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.field--wide { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; font-size: .77rem; font-weight: 800; letter-spacing: .05em; }
.field label span { color: var(--pennine-slate); font-weight: 500; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(32,53,47,.35);
  border-radius: 0;
}
.field textarea { min-height: 105px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--oxblood); outline: 2px solid rgba(106,47,55,.26); }
.field [aria-invalid="true"] { border-color: var(--oxblood); }
.form-optional { margin: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.form-optional summary { padding: 17px 0; font-weight: 800; cursor: pointer; }
.form-optional .form-grid { padding-bottom: 24px; }
.checkbox-field { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; margin: 24px 0; font-size: .84rem; }
.checkbox-field input { width: 19px; height: 19px; margin: 3px 0 0; accent-color: var(--moorland); }
.turnstile-wrap { width: 100%; min-height: 70px; overflow: hidden; margin-bottom: 16px; }
.turnstile-wrap > div,
.turnstile-wrap iframe { max-width: 100% !important; }
.form-status { min-height: 26px; margin: 10px 0; font-size: .88rem; }
.form-status[data-kind="error"] { color: var(--oxblood); }
.form-status[data-kind="success"] { color: var(--moorland); }
.opportunity-form > .button { width: 100%; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-success { padding: 45px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-success h2 { margin-bottom: 22px; }
.reference { display: inline-block; padding: 10px 13px; font-weight: 850; background: rgba(106,47,55,.18); }
.legal-note { margin-top: 20px; color: var(--pennine-slate); font-size: .78rem; }

.project-status { display: grid; grid-template-columns: repeat(3, 1fr); margin: 38px 0 50px; border: 1px solid var(--line); }
.project-status div { padding: 22px; border-right: 1px solid var(--line); }
.project-status div:last-child { border-right: 0; }
.project-status strong { display: block; color: var(--oxblood); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.project-status span { font-size: .9rem; }
.project-plan { margin: 40px 0; padding: 10px; background: var(--paper); border: 1px solid var(--line); }
.project-plan img { width: 100%; height: auto; }
.source-note { padding-top: 25px; border-top: 1px solid var(--line); color: var(--pennine-slate); font-size: .8rem; }

.site-footer { color: var(--york-stone); background: var(--deep-moorland); }
.footer-main { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; padding-block: 65px; }
.footer-brand {
  width: min(390px, 86vw);
  height: auto;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid rgba(161,124,69,.72);
  box-shadow: 0 18px 48px rgba(0,0,0,.16);
}
.footer-copy { max-width: 520px; margin-top: 25px; color: rgba(242,235,221,.62); }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 30px; align-content: start; }
.footer-links a { color: rgba(242,235,221,.82); text-decoration: none; }
.footer-links a:hover { color: var(--white); text-decoration: underline; text-decoration-color: var(--aged-brass); }
.footer-legal { padding-block: 20px 32px; border-top: 1px solid var(--line-light); color: rgba(242,235,221,.52); font-size: .72rem; }
.footer-legal p { margin: 0 0 5px; }
.contact-dock {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 6px;
  padding: 6px;
  background: rgba(21,37,31,.96);
  box-shadow: 0 14px 45px rgba(21,37,31,.28);
}
.contact-dock a { min-width: 45px; height: 45px; display: grid; place-items: center; color: var(--york-stone); text-decoration: none; border: 1px solid rgba(242,235,221,.22); }
.contact-dock a:hover { color: var(--white); background: var(--oxblood); }
.contact-dock svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.not-found { min-height: calc(100vh - var(--header-height)); display: grid; place-items: center; text-align: center; }
.not-found h1 { font-size: clamp(6rem, 20vw, 14rem); color: var(--oxblood); }

@media (max-width: 1020px) {
  :root { --shell: min(100% - 32px, 900px); }
  .menu-button { display: block; }
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    min-height: calc(100svh - var(--header-height));
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px 80px;
    background: var(--york-stone);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 18px 0; font-size: .95rem; border-bottom: 1px solid var(--line); }
  .site-nav a::after { display: none; }
  .site-nav .button { margin-top: 22px; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .diagnostic { max-width: 720px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .agent-proof-strip__grid { grid-template-columns: 76px repeat(3, 1fr); }
  .agent-proof-strip__mark,
  .agent-proof-strip__item { padding: 18px 16px; }
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .project-feature { grid-template-columns: 1fr; }
  .commitment-grid,
  .faq-layout,
  .form-layout { grid-template-columns: 1fr; }
  .commitment-grid h2,
  .form-aside,
  .content-grid__aside > * { position: static; }
  .partner-grid { grid-template-columns: 220px 1fr; }
  .partner-grid .button { grid-column: 1 / -1; justify-self: start; }
  .social-rail { grid-auto-columns: minmax(320px, 65%); }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 26px); --header-height: 94px; }
  body { font-size: 15.5px; }
  .site-nav { inset-block-start: var(--header-height); min-height: calc(100svh - var(--header-height)); max-height: calc(100svh - var(--header-height)); }
  .brand { width: 205px; max-width: calc(100vw - 92px); }
  .menu-button { width: 42px; height: 42px; }
  h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.65rem); }
  .hero-grid { padding-block: 60px 72px; gap: 58px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .diagnostic__frame { padding: 22px 17px; }
  .diagnostic__stage { grid-template-columns: 1fr; }
  .building-map { min-height: 280px; }
  .building-map__teaser {
    position: absolute;
    z-index: 3;
    inset: auto 0 0;
    display: grid;
    gap: 3px;
    padding: 13px 15px 14px;
    color: var(--york-stone);
    background: rgba(21,37,31,.94);
    border-top: 1px solid rgba(161,124,69,.65);
    pointer-events: none;
  }
  .building-map__teaser strong { color: var(--york-stone); font-family: var(--serif); font-size: 1.12rem; font-weight: 400; }
  .building-map__teaser span { color: rgba(242,235,221,.78); font-size: .72rem; line-height: 1.35; }
  .signal[data-signal="0"] { bottom: 35%; }
  .signal[data-signal="1"] { bottom: 50%; }
  .diagnostic__readout { min-height: 285px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid div { min-height: 100px; padding: 18px 15px; }
  .proof-grid strong { font-size: 1.35rem; }
  .agent-proof-strip__grid { grid-template-columns: 70px 1fr; }
  .agent-proof-strip__mark { grid-row: 1 / 4; }
  .agent-proof-strip__item { min-height: 84px; border-bottom: 1px solid var(--line-light); }
  .agent-proof-strip__item:last-child { border-bottom: 0; }
  .section { padding-block: 72px; }
  .section-intro,
  .page-hero__grid,
  .content-grid,
  .conversion-grid,
  .footer-main { grid-template-columns: 1fr; }
  .section-intro { gap: 12px; }
  .criteria-grid,
  .process,
  .cards,
  .form-grid,
  .project-status { grid-template-columns: 1fr; }
  .criterion { min-height: auto; }
  .criterion__number { margin-bottom: 32px; }
  .criteria-note,
  .feed-head { align-items: flex-start; flex-direction: column; }
  .process article { border-left: 1px solid var(--line-light); }
  .project-status div { border-right: 0; border-bottom: 1px solid var(--line); }
  .project-status div:last-child { border-bottom: 0; }
  .project-facts { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; gap: 20px; }
  .partner-grid .button { grid-column: auto; }
  .mandate-banner { grid-template-columns: 1fr; }
  .social-rail { grid-auto-columns: 88%; }
  .footer-links { margin-top: 10px; }
  .contact-dock { right: 10px; bottom: 10px; }
}

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

@media print {
  .site-header, .contact-dock, .conversion { display: none !important; }
  body { color: #000; background: #fff; }
  .section, .page-hero { padding: 30px 0; color: #000; background: #fff; }
}
