:root {
  --ink: #17201c;
  --muted: #627067;
  --line: #dce2dc;
  --paper: #f7f3ea;
  --paper-strong: #efe7d8;
  --white: #fffdf8;
  --forest: #173f32;
  --forest-2: #0c2b22;
  --olive: #6e7d45;
  --clay: #b26a3c;
  --timber: #c3955d;
  --shadow: 0 24px 70px rgba(19, 32, 26, 0.14);
  --radius: 8px;
  --max: 1180px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 46px);
  color: #fffdf8;
  background: linear-gradient(180deg, rgba(12, 43, 34, 0.92), rgba(12, 43, 34, 0.52));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    min-height 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 12px 40px rgba(23, 32, 28, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: clamp(154px, 15vw, 220px);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(142px, 14vw, 206px);
  height: auto;
  max-height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.72)) drop-shadow(0 0 7px rgba(255, 255, 255, 0.32));
}

.site-header.is-scrolled .brand-logo {
  max-height: 46px;
}

.footer-brand .brand-logo {
  width: 178px;
  max-height: 58px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fffdf8;
  background: linear-gradient(135deg, var(--forest), var(--olive));
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  opacity: 0.68;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 22px);
  min-width: 0;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
  color: currentColor;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--timber);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.header-cta,
.button.primary {
  color: #fffdf8;
  background: var(--clay);
  border-color: var(--clay);
}

.header-cta:hover,
.button.primary:hover {
  background: #965936;
  border-color: #965936;
  transform: translateY(-1px);
}

.button.ghost {
  color: #fffdf8;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  color: #fffdf8;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 560px;
  color: #fffdf8;
  overflow: hidden;
  isolation: isolate;
}

.page-hero .hero-media {
  z-index: -2;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 23, 18, 0.9), rgba(8, 23, 18, 0.55) 48%, rgba(8, 23, 18, 0.18)),
    linear-gradient(0deg, rgba(8, 23, 18, 0.78), rgba(8, 23, 18, 0.06) 56%);
  content: "";
}

.page-hero-content {
  width: min(var(--max), calc(100% - 36px));
  align-self: end;
  margin: 0 auto;
  padding: 150px 0 78px;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.15vw, 4rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.04;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.65;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.content-stack {
  display: grid;
  gap: 26px;
}

.content-card {
  padding: clamp(24px, 3vw, 38px);
  background: var(--white);
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(23, 32, 28, 0.08);
}

.content-card h3 {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.content-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.content-card p + p,
.content-card ul {
  margin-top: 14px;
}

.content-card ul {
  color: var(--muted);
  line-height: 1.75;
}

.page-intro {
  max-width: 820px;
}

.page-intro p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mini-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 23, 18, 0.78), rgba(8, 23, 18, 0.34) 42%, rgba(8, 23, 18, 0.08)),
    linear-gradient(0deg, rgba(8, 23, 18, 0.78), rgba(8, 23, 18, 0.1) 46%, rgba(8, 23, 18, 0.02) 68%);
  content: "";
}

.hero-content {
  width: min(650px, calc(100% - 36px));
  align-self: end;
  justify-self: start;
  margin: 0 auto 0 max(20px, calc((100vw - 1180px) / 2));
  padding: clamp(180px, 30vh, 320px) 0 clamp(42px, 7vh, 82px);
  transform: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--timber);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 640px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.15vw, 3.8rem);
  font-weight: 650;
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-line {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.94rem;
  line-height: 1.5;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: -42px auto 0;
  padding: 0 18px;
  position: relative;
  z-index: 2;
}

.proof-strip div {
  min-height: 102px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(23, 32, 28, 0.08);
  box-shadow: 0 18px 50px rgba(23, 32, 28, 0.1);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--forest);
  font-size: 1rem;
}

.proof-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.42;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(74px, 9vw, 124px) 18px;
}

.split-section,
.locations,
.about,
.handover,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.kieran-profile {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  isolation: isolate;
}

.kieran-profile::before {
  position: absolute;
  top: 56px;
  left: 18px;
  z-index: -1;
  width: min(360px, 42vw);
  height: min(310px, 34vw);
  background-image:
    linear-gradient(rgba(23, 32, 28, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 28, 0.11) 1px, transparent 1px);
  background-size: 22px 22px;
  clip-path: polygon(0 0, 100% 0, 100% 74%, 72% 100%, 0 100%);
  content: "";
  opacity: 0.72;
}

.kieran-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  min-width: 0;
}

.kieran-logo {
  width: min(225px, 64vw);
  margin-bottom: clamp(52px, 8vw, 96px);
  padding: 8px 12px;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(23, 32, 28, 0.08);
}

.kieran-copy h2 {
  max-width: 580px;
  margin: 0 0 22px;
  color: #30313a;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(4rem, 9.2vw, 8.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.kieran-copy .eyebrow {
  color: #55bf46;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.kieran-story {
  display: grid;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 44px);
  padding-left: clamp(18px, 3vw, 28px);
  border-left: 4px solid var(--ink);
}

.kieran-story p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.06rem, 1.45vw, 1.3rem);
  line-height: 1.72;
  overflow-wrap: break-word;
}

.kieran-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.kieran-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  color: var(--forest);
  background: rgba(85, 191, 70, 0.12);
  border: 1px solid rgba(85, 191, 70, 0.26);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 850;
}

.kieran-media {
  position: relative;
  min-height: clamp(520px, 62vw, 760px);
}

.kieran-shape {
  position: absolute;
  top: 5%;
  right: -9%;
  width: 78%;
  height: 28%;
  background: rgba(85, 191, 70, 0.96);
  border-radius: 26px 0 0 26px;
}

.kieran-shape::after {
  position: absolute;
  top: -44%;
  right: -14%;
  width: 46%;
  height: 98%;
  background: rgba(255, 255, 255, 0.66);
  border-radius: 34px;
  content: "";
}

.kieran-main,
.kieran-inset {
  position: relative;
  z-index: 2;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.kieran-main {
  height: clamp(500px, 58vw, 710px);
  margin-left: clamp(20px, 5vw, 72px);
  border-radius: 10px;
  object-position: center 28%;
}

.kieran-inset {
  position: absolute;
  bottom: 2%;
  left: 0;
  width: min(44%, 310px);
  aspect-ratio: 0.78;
  border: 10px solid var(--paper);
  border-radius: 18px;
  object-position: center top;
}

.kieran-media::after {
  position: absolute;
  right: -20px;
  bottom: -14px;
  z-index: 1;
  width: min(38%, 260px);
  height: min(45%, 330px);
  background: #55bf46;
  border-radius: 20px;
  content: "";
}

.section-copy h2,
.section-heading h2,
.handover-copy h2,
.final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.85vw, 3rem);
  font-weight: 620;
}

.section-copy p,
.section-heading p,
.handover-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.76;
}

.section-copy p:first-of-type,
.section-heading p {
  margin-top: 22px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--forest);
  font-weight: 850;
  text-decoration: none;
  border-bottom: 2px solid var(--timber);
}

.consult-panel,
.quote-box {
  padding: clamp(26px, 4vw, 44px);
  color: #fffdf8;
  background: var(--forest);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.consult-panel h3 {
  margin: 0 0 20px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.tick-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 253, 248, 0.82);
  line-height: 1.5;
}

.tick-list li::before {
  position: absolute;
  left: 0;
  color: var(--timber);
  content: "\2713";
  font-weight: 900;
}

.decision-map {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.decision-copy h2 {
  max-width: 650px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 4rem);
}

.decision-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.76;
}

.decision-tabs {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.decision-tabs button {
  min-height: 52px;
  padding: 0 18px;
  color: var(--forest);
  background: var(--white);
  border: 1px solid rgba(23, 32, 28, 0.12);
  border-radius: 7px;
  font: 850 0.94rem var(--sans);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.decision-tabs button:hover,
.decision-tabs button.is-active {
  color: #fffdf8;
  background: var(--forest);
  transform: translateX(4px);
}

.decision-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fffdf8;
  background: var(--forest);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.decision-stage article {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  display: grid;
  gap: 12px;
  max-width: 500px;
  padding: clamp(26px, 5vw, 58px);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
  pointer-events: none;
}

.decision-stage article.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.decision-stage article span {
  color: var(--timber);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.decision-stage article h3 {
  max-width: 420px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  line-height: 1.02;
}

.decision-stage article p {
  max-width: 460px;
  color: rgba(255, 253, 248, 0.78);
  line-height: 1.7;
}

.decision-stage article a {
  justify-self: start;
  min-height: 46px;
  padding: 12px 18px;
  color: #fffdf8;
  background: var(--clay);
  border-radius: 7px;
  font-weight: 900;
  text-decoration: none;
}

.decision-visual {
  position: absolute;
  inset: 0;
}

.decision-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.decision-visual::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 64%, rgba(85, 191, 70, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(12, 43, 34, 0.98), rgba(12, 43, 34, 0.54) 55%, rgba(12, 43, 34, 0.18));
  content: "";
}

.decision-visual div {
  position: absolute;
  right: clamp(20px, 5vw, 54px);
  bottom: clamp(20px, 5vw, 54px);
  z-index: 1;
  display: grid;
  gap: 6px;
  width: min(360px, calc(100% - 40px));
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.decision-visual strong {
  color: var(--forest);
}

.decision-visual span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 314px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(23, 32, 28, 0.1);
}

.service-card span {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 28px 0 10px;
  font-size: 1.38rem;
  line-height: 1.14;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.service-card a {
  margin-top: auto;
  color: var(--forest);
  font-weight: 850;
  text-decoration: none;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: stretch;
  color: #fffdf8;
  background: var(--forest-2);
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.image-band div {
  display: grid;
  align-content: center;
  max-width: 560px;
  padding: clamp(42px, 7vw, 92px);
}

.image-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1.04;
}

.image-band p {
  color: rgba(255, 253, 248, 0.78);
  line-height: 1.72;
}

.image-band .button {
  justify-self: start;
  margin-top: 14px;
}

.process {
  max-width: 1040px;
  scroll-margin-top: 128px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

.timeline::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 25px;
  width: 2px;
  background: var(--line);
  content: "";
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
}

.timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fffdf8;
  background: var(--forest);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.timeline h3 {
  grid-column: 2;
  margin: 2px 0 8px;
  font-size: 1.25rem;
}

.timeline p {
  grid-column: 2;
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.project-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest);
}

.project-card.large {
  grid-row: span 2;
  min-height: 738px;
}

.project-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 500ms ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 23, 18, 0.82), rgba(8, 23, 18, 0.06) 58%);
  content: "";
}

.project-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 28px;
  color: #fffdf8;
}

.project-card span {
  color: var(--timber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 10px 0;
  font-size: 1.55rem;
}

.project-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  line-height: 1.5;
}

.locations {
  max-width: none;
  padding-right: max(18px, calc((100vw - var(--max)) / 2));
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--paper-strong);
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.location-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
}

.location-list a::after {
  content: "→";
  color: var(--clay);
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: end;
}

.about-images img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-images img:first-child {
  height: 520px;
}

.about-images img:last-child {
  height: 330px;
}

.handover {
  max-width: none;
  padding-right: max(18px, calc((100vw - var(--max)) / 2));
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--forest);
}

.handover h2,
.handover p {
  color: #fffdf8;
}

.handover .handover-copy p {
  color: rgba(255, 253, 248, 0.78);
}

.quote-box {
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.18);
  box-shadow: none;
}

.quote-box p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.faq-list {
  max-width: 900px;
  margin: 34px auto 0;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.faq-list details + details {
  margin-top: 10px;
}

.faq-list summary {
  padding: 20px 22px;
  font-weight: 850;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.62;
}

.final-cta {
  max-width: none;
  padding: clamp(74px, 9vw, 124px) max(18px, calc((100vw - var(--max)) / 2));
  color: #fffdf8;
  background:
    linear-gradient(90deg, rgba(12, 43, 34, 0.96), rgba(12, 43, 34, 0.82)),
    url("assets/site-images/team-site.jpg") center/cover;
}

.final-cta p {
  color: rgba(255, 253, 248, 0.78);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 253, 248, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
}

.lead-form .full,
.lead-form button,
.form-note {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd7d0;
  border-radius: 6px;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form button {
  width: 100%;
}

.lead-form .form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.consultation-lab {
  position: relative;
  overflow: hidden;
  align-items: start;
  background:
    radial-gradient(circle at 18% 24%, rgba(195, 149, 93, 0.28), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(85, 191, 70, 0.18), transparent 20%),
    linear-gradient(90deg, rgba(12, 43, 34, 0.98), rgba(12, 43, 34, 0.88)),
    url("assets/site-images/framing-build.jpg") center/cover;
}

.consultation-lab::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 253, 248, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
  content: "";
}

.consultation-board,
.serious-form {
  position: relative;
  z-index: 1;
}

.consultation-board h2 {
  max-width: 620px;
}

.consultation-board > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
}

.brief-radar {
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 1;
  margin-top: clamp(28px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 253, 248, 0.13) 0 2px, transparent 3px),
    repeating-radial-gradient(circle, transparent 0 23%, rgba(255, 253, 248, 0.1) 23.5% 24%, transparent 24.5% 47%),
    conic-gradient(from -40deg, rgba(85, 191, 70, 0.22), transparent 26%, rgba(195, 149, 93, 0.18), transparent 62%);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.26);
}

.brief-radar::before,
.brief-radar::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 48%;
  height: 1px;
  background: rgba(255, 253, 248, 0.18);
  content: "";
  transform-origin: left center;
}

.brief-radar::before {
  transform: rotate(0deg);
}

.brief-radar::after {
  transform: rotate(90deg);
}

.radar-line {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 44%;
  height: 2px;
  background: linear-gradient(90deg, rgba(85, 191, 70, 0.96), transparent);
  border-radius: 999px;
  transform-origin: left center;
  animation: radarSweep 7s linear infinite;
}

.radar-point {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #55bf46;
  border: 2px solid rgba(255, 253, 248, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(85, 191, 70, 0.72);
}

.radar-point.land {
  top: 22%;
  left: 34%;
}

.radar-point.plans {
  top: 39%;
  right: 22%;
}

.radar-point.budget {
  right: 36%;
  bottom: 24%;
}

.radar-point.timing {
  bottom: 37%;
  left: 21%;
}

.brief-preview {
  display: grid;
  gap: 14px;
  width: min(520px, 100%);
  margin-top: -42px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(255, 253, 248, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.brief-preview div:first-child {
  display: grid;
  gap: 3px;
}

.brief-preview span {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-preview strong {
  color: var(--forest);
  font-size: 1.3rem;
  line-height: 1.14;
}

.readiness-meter {
  height: 9px;
  overflow: hidden;
  background: #dce7d8;
  border-radius: 999px;
}

.readiness-meter span {
  display: block;
  width: 18%;
  height: 100%;
  background: linear-gradient(90deg, var(--timber), #55bf46);
  border-radius: inherit;
  transition: width 280ms ease;
}

.brief-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.brief-preview ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.brief-preview li {
  padding: 9px 10px;
  color: var(--forest);
  background: rgba(85, 191, 70, 0.1);
  border: 1px solid rgba(85, 191, 70, 0.18);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 760;
}

.serious-form {
  border: 1px solid rgba(255, 253, 248, 0.55);
}

.serious-form input:focus,
.serious-form select:focus,
.serious-form textarea:focus {
  outline: 3px solid rgba(85, 191, 70, 0.24);
  border-color: #55bf46;
}

@keyframes radarSweep {
  to {
    transform: rotate(360deg);
  }
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.72fr);
  gap: 28px;
  padding: 54px max(18px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 253, 248, 0.78);
  background: #111713;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fffdf8;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 10px 0;
  line-height: 1.58;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  text-decoration: none;
}

.footer-brand {
  color: #fffdf8;
}

@media (prefers-reduced-motion: no-preference) {
  .section,
  .image-band > *,
  .proof-strip,
  .final-cta > * {
    animation: fadeUp 700ms ease both;
    animation-timeline: view();
    animation-range: entry 0% cover 24%;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(28px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .primary-nav {
    position: fixed;
    top: 74px;
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    padding: 18px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    min-height: 42px;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    justify-self: end;
    color: currentColor;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
  }

  .site-header.is-scrolled .nav-toggle {
    background: rgba(23, 32, 28, 0.06);
    border-color: rgba(23, 32, 28, 0.12);
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .header-cta {
    justify-self: end;
  }

  .hero-content {
    transform: none;
  }

  .proof-strip,
  .service-grid,
  .mini-grid,
  .mini-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip div:last-child {
    grid-column: 1 / -1;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card.large {
    min-height: 520px;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 66px;
    grid-template-columns: auto auto;
    gap: 12px;
  }

  .header-cta {
    display: none;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: min(100% - 32px, 720px);
    margin-left: 24px;
    padding-top: 220px;
    padding-bottom: 48px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 3.55rem);
    line-height: 1.06;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
  }

  .page-hero {
    min-height: 620px;
  }

  .page-hero-content {
    width: calc(100% - 40px);
    padding-top: 108px;
    padding-bottom: 58px;
  }

  .page-hero h1 {
    font-size: clamp(2.05rem, 9.2vw, 2.75rem);
    line-height: 1.08;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .page-actions {
    display: grid;
  }

  .proof-strip,
  .service-grid,
  .mini-grid,
  .mini-grid.two,
  .decision-map,
  .kieran-profile,
  .split-section,
  .image-band,
  .locations,
  .about,
  .handover,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-top: 0;
    padding-top: 18px;
  }

  .proof-strip div:last-child {
    grid-column: auto;
  }

  .section,
  .locations,
  .handover,
  .final-cta {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .image-band img {
    min-height: 360px;
  }

  .image-band div {
    padding: 42px 18px 56px;
  }

  .location-list,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .consultation-lab {
    gap: 34px;
  }

  .brief-radar {
    width: min(360px, 86vw);
    margin-right: auto;
    margin-left: auto;
  }

  .brief-preview {
    width: 100%;
    margin-top: -22px;
  }

  .serious-form {
    width: 100%;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-images img:first-child,
  .about-images img:last-child {
    height: auto;
    max-height: 460px;
  }

  .kieran-profile {
    width: 100%;
    max-width: 100%;
    gap: 36px;
    overflow: hidden;
  }

  .decision-stage {
    min-height: 560px;
  }

  .decision-stage article {
    padding: 28px;
  }

  .kieran-copy {
    width: 100%;
    max-width: min(100%, 320px);
  }

  .kieran-profile::before {
    top: 40px;
    width: min(300px, 82vw);
    height: 250px;
  }

  .kieran-logo {
    width: 190px;
    margin-bottom: 54px;
  }

  .kieran-copy h2 {
    font-size: clamp(3.3rem, 16vw, 5.4rem);
  }

  .kieran-story {
    width: 100%;
    max-width: 320px;
    margin-top: 26px;
    padding-left: 18px;
  }

  .kieran-media {
    min-height: auto;
    padding-top: 44px;
  }

  .kieran-shape {
    top: 0;
    right: -20px;
    width: 78%;
    height: 150px;
  }

  .kieran-main {
    height: auto;
    max-height: none;
    margin-left: 0;
    aspect-ratio: 0.88;
    object-position: center top;
  }

  .kieran-inset {
    position: relative;
    bottom: auto;
    left: auto;
    width: min(78%, 330px);
    margin: -92px auto 0;
  }

  .kieran-media::after {
    right: 12px;
    bottom: 28px;
    width: 42%;
    height: 220px;
  }
}

@media (max-width: 480px) {
  .brand strong {
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-actions {
    display: grid;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: calc(100% - 40px);
    max-width: 330px;
    margin-left: 20px;
    padding-top: 240px;
    padding-bottom: 42px;
  }

  .hero .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    line-height: 1.4;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.45vw, 2.35rem);
    line-height: 1.08;
  }

  .hero-copy,
  .trust-line {
    font-size: 0.94rem;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 260px;
  }

  .section {
    width: 100%;
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    overflow: hidden;
  }

  .mini-grid > *,
  .service-grid > *,
  .project-grid > * {
    min-width: 0;
  }

  .mini-grid,
  .mini-grid.two {
    width: 100%;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
  }

  .page-hero-content {
    max-width: 300px;
  }

  .page-hero .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    line-height: 1.4;
  }

  .page-hero p:not(.eyebrow),
  .content-card p {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .content-card {
    width: 100%;
    max-width: 300px;
    min-width: 0;
    margin-right: auto;
    margin-left: auto;
    padding-right: 22px;
    padding-left: 22px;
  }

  .page-actions .button {
    width: 100%;
  }

  .decision-map {
    overflow: hidden;
  }

  .decision-copy,
  .decision-stage {
    width: min(100%, 330px);
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
  }

  .decision-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .decision-copy p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .decision-tabs button {
    min-height: 48px;
    font-size: 0.86rem;
  }

  .decision-stage {
    min-height: 610px;
  }

  .decision-stage article {
    padding: 22px;
  }

  .decision-stage article h3 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .decision-visual div {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .consultation-lab {
    padding-right: 20px;
    padding-left: 20px;
    overflow: hidden;
  }

  .consultation-lab * {
    min-width: 0;
  }

  .consultation-board,
  .serious-form {
    width: min(100%, 330px);
    max-width: 330px;
    min-width: 0;
    margin-right: auto;
    margin-left: auto;
  }

  .consultation-board h2 {
    max-width: 320px;
    font-size: clamp(1.78rem, 8.4vw, 2.22rem);
    line-height: 1.08;
  }

  .consultation-board > p:not(.eyebrow) {
    max-width: 320px;
    font-size: 0.96rem;
  }

  .brief-radar {
    width: min(268px, 76vw);
  }

  .brief-preview {
    width: min(100%, 330px);
    max-width: 330px;
    padding: 18px;
  }

  .lead-form {
    width: min(100%, 330px);
    max-width: 330px;
    padding: 18px;
  }

  .kieran-logo {
    width: 166px;
    margin-bottom: 44px;
  }

  .kieran-copy h2 {
    max-width: 100%;
    font-size: clamp(2.4rem, 12.2vw, 3.25rem);
    line-height: 0.92;
  }

  .kieran-story p {
    width: min(calc(100vw - 92px), 270px);
    max-width: min(calc(100vw - 92px), 270px);
    min-width: 0;
    font-size: 1rem;
    line-height: 1.65;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .kieran-story p + p {
    margin-top: 14px;
  }

  .kieran-points {
    display: grid;
  }

  .kieran-inset {
    width: min(86%, 300px);
    margin-top: -68px;
  }
}
