:root {
  --ink: #17251d;
  --ink-soft: #405047;
  --green-900: #223f2f;
  --green-800: #345846;
  --green-700: #52725e;
  --green-600: #668a74;
  --green-300: #afd0bf;
  --green-200: #d4e6dc;
  --green-100: #e9f1ec;
  --paper: #ffffff;
  --mist: #f5f7f6;
  --sand: #f0eee8;
  --line: #d6dfd9;
  --shadow: 0 20px 55px rgba(23, 37, 29, 0.1);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --shell: min(1180px, calc(100% - 40px));
  --font: "Atkinson Hyperlegible", "Open Sans", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #d08b3e;
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(82px, 10vw, 140px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(82, 114, 94, 0.13);
  backdrop-filter: blur(15px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--green-900);
  text-decoration: none;
}

.brand img {
  width: 37px;
  height: 44px;
  object-fit: contain;
}

.site-header .brand {
  gap: 13px;
}

.site-header .brand img {
  width: 52px;
  height: 62px;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--font);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-copy span {
  margin-top: 6px;
  color: var(--green-700);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 32px);
}

.primary-nav > a:not(.button) {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--green-700);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  color: var(--paper);
  background: var(--green-800);
  border: 2px solid var(--green-800);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-secondary {
  color: var(--green-900);
  background: transparent;
  border-color: var(--green-300);
}

.button-secondary:hover {
  color: var(--paper);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.88rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  background: transparent;
  border: 0;
  border-radius: 8px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(76px, 8vw, 112px);
  background: linear-gradient(138deg, #f8faf9 0%, #eef5f1 57%, #f7f8f4 100%);
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(82, 114, 94, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  top: -210px;
  right: -100px;
  width: 620px;
  height: 620px;
}

.hero-orb-two {
  right: 250px;
  bottom: -340px;
  width: 540px;
  height: 540px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(56px, 7vw, 104px);
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--green-300);
}

.hero h1,
.section-heading h2,
.framework-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3.2rem, 4.8vw, 4.8rem);
}

.hero h1 em {
  color: var(--green-700);
  font-style: normal;
}

.hero-intro {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 0;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-facts svg {
  width: 20px;
  height: 20px;
  padding: 4px;
  color: var(--green-900);
  background: var(--green-300);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.journey-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--green-800), #274533);
  border-radius: 46% 46% 42% 12% / 36% 28% 46% 22%;
  box-shadow: var(--shadow);
}

.journey-visual::before,
.journey-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.journey-visual::before {
  top: -160px;
  right: -120px;
  width: 460px;
  height: 460px;
}

.journey-visual::after {
  bottom: -110px;
  left: -110px;
  width: 320px;
  height: 320px;
}

.visual-label {
  position: absolute;
  z-index: 3;
  top: 42px;
  left: 52px;
  color: var(--green-200);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-line {
  position: absolute;
  z-index: 1;
  inset: 44px 26px 24px;
  width: calc(100% - 52px);
  height: calc(100% - 68px);
  fill: none;
  stroke: rgba(175, 208, 191, 0.35);
  stroke-width: 4;
}

.journey-line-dash {
  stroke: var(--green-300);
  stroke-dasharray: 3 13;
  stroke-linecap: round;
}

.journey-point {
  position: absolute;
  z-index: 2;
  width: 15px;
  height: 15px;
  background: var(--green-300);
  border: 4px solid var(--green-800);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--green-300);
}

.point-one { bottom: 94px; left: 67px; }
.point-two { bottom: 184px; left: 193px; }
.point-three { top: 194px; right: 214px; }
.point-four { top: 74px; right: 57px; }

.resource-card {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 175px;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(10, 24, 16, 0.2);
}

.resource-card span:last-child {
  display: grid;
  line-height: 1.25;
}

.resource-card small,
.confidence-badge small {
  color: var(--green-700);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-card strong {
  color: var(--ink);
  font-size: 0.91rem;
}

.resource-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 10px;
}

.resource-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.resource-assess { top: 83px; right: 62px; }
.resource-guide { top: 185px; left: 53px; }
.resource-map { top: 311px; right: 53px; }
.resource-tour { bottom: 55px; left: 45px; }

.confidence-badge {
  position: absolute;
  z-index: 5;
  right: 50px;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: var(--ink);
  background: var(--green-300);
  border-radius: 999px;
}

.confidence-badge svg {
  width: 24px;
  height: 24px;
  padding: 5px;
  color: var(--paper);
  background: var(--green-800);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.confidence-badge span {
  display: grid;
  line-height: 1.05;
}

.confidence-badge small {
  color: var(--green-900);
}

.confidence-badge strong {
  font-size: 0.85rem;
}

.proof-strip {
  color: var(--paper);
  background: var(--green-900);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid p {
  display: grid;
  min-height: 118px;
  align-content: center;
  padding: 24px 30px;
  margin: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-grid p:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-grid strong {
  color: var(--green-200);
  font-family: var(--font);
  font-size: 1.08rem;
  font-weight: 700;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.why-section {
  background: var(--paper);
}

.heading-split {
  display: grid;
  align-items: end;
  gap: 80px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.section-heading h2,
.framework-copy h2,
.contact-copy h2 {
  font-size: clamp(2.5rem, 3.8vw, 3.75rem);
}

.heading-split > p,
.service-summary > p,
.framework-copy > p {
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.75;
}

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

.benefit-card {
  position: relative;
  min-height: 335px;
  padding: 34px;
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.benefit-card.featured {
  background: var(--green-100);
  transform: translateY(-18px);
}

.card-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--green-600);
  font-size: 0.8rem;
  font-weight: 800;
}

.line-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 48px;
  fill: none;
  stroke: var(--green-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.benefit-card h3,
.service-card h3,
.process-list h3,
.project-card h3,
.reason-grid h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.25;
}

.benefit-card p,
.service-card > p:last-child,
.process-list p,
.reason-grid p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.services-section {
  color: var(--paper);
  background: var(--green-900);
}

.service-intro {
  display: grid;
  align-items: end;
  gap: 80px;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
}

.services-section .section-heading h2 {
  color: var(--paper);
}

.service-summary > p {
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-800);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.light-link {
  margin-top: 22px;
  color: var(--green-200);
}

.service-grid {
  display: grid;
  gap: 16px;
  margin-top: 70px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 330px;
  padding: 32px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-md);
}

.service-card-large {
  grid-row: span 2;
}

.service-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 40px;
  place-items: center;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 16px;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-kicker,
.project-tag {
  margin: 0 0 10px;
  color: var(--green-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.check-list li::before {
  position: absolute;
  top: 0.45em;
  left: 2px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--green-700);
  border-left: 2px solid var(--green-700);
  content: "";
  transform: rotate(-45deg);
}

.service-note {
  display: grid;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  margin-top: 16px;
  color: var(--ink);
  background: var(--green-300);
  border-radius: var(--radius-sm);
  grid-template-columns: auto 1fr auto;
}

.service-note p {
  margin: 0;
  color: var(--green-900);
  font-size: 0.86rem;
}

.service-note a {
  font-weight: 800;
  white-space: nowrap;
  text-underline-offset: 4px;
}

.process-section {
  background: var(--mist);
}

.heading-centred {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.heading-centred .eyebrow {
  justify-content: center;
}

.process-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 72px 0 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.process-list li {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 0 38px;
  grid-template-columns: auto 1fr;
}

.process-list li + li {
  border-left: 1px solid var(--line);
}

.process-number {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--paper);
  background: var(--green-700);
  border-radius: 50%;
  font-family: var(--font);
  font-size: 1.15rem;
}

.process-list p {
  line-height: 1.65;
}

.framework-section {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.framework-section::after {
  position: absolute;
  top: -190px;
  right: -190px;
  width: 500px;
  height: 500px;
  border: 80px solid rgba(175, 208, 191, 0.22);
  border-radius: 50%;
  content: "";
}

.framework-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
  grid-template-columns: 0.8fr 1.2fr;
}

.framework-copy > p {
  margin-top: 25px;
}

.framework-copy .button {
  margin-top: 31px;
}

.pillar-list {
  padding: 0;
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  list-style: none;
}

.pillar-list li {
  display: grid;
  min-height: 66px;
  align-items: center;
  gap: 22px;
  padding: 13px 24px;
  grid-template-columns: 38px 1fr;
}

.pillar-list li + li {
  border-top: 1px solid var(--line);
}

.pillar-list span {
  color: var(--green-600);
  font-family: var(--font);
  font-size: 0.9rem;
}

.pillar-list strong {
  font-size: 0.95rem;
}

.work-section {
  color: var(--paper);
  background: var(--green-800);
}

.work-heading h2 {
  color: var(--paper);
}

.work-heading > p {
  color: rgba(255, 255, 255, 0.75);
}

.project-card {
  display: grid;
  min-height: 560px;
  margin-top: 72px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 60px rgba(16, 35, 24, 0.22);
  grid-template-columns: 1.05fr 0.95fr;
}

.project-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--green-100);
}

.plan-outline {
  position: absolute;
  border: 2px solid rgba(82, 114, 94, 0.27);
  border-radius: 32% 18% 22% 10%;
  transform: rotate(-8deg);
}

.plan-one {
  inset: 75px 78px 104px 54px;
}

.plan-two {
  inset: 126px 132px 160px 110px;
  border-radius: 12px 34% 8px 25%;
  transform: rotate(13deg);
}

.plan-route {
  position: absolute;
  top: 102px;
  right: 110px;
  bottom: 122px;
  left: 96px;
  border: 4px dashed rgba(52, 88, 70, 0.55);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(20deg);
}

.plan-pin {
  position: absolute;
  width: 21px;
  height: 21px;
  background: var(--green-800);
  border: 5px solid var(--green-300);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 0 0 2px var(--paper);
  transform: rotate(-45deg);
}

.pin-a { top: 114px; left: 133px; }
.pin-b { top: 244px; right: 118px; }
.pin-c { bottom: 116px; left: 210px; }

.project-resource {
  position: absolute;
  padding: 10px 15px;
  color: var(--green-900);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(23, 37, 29, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
}

.resource-a { top: 69px; left: 83px; }
.resource-b { top: 212px; right: 54px; }
.resource-c { bottom: 72px; left: 166px; }

.project-copy {
  align-self: center;
  padding: clamp(46px, 6vw, 78px);
}

.project-card h3 {
  font-size: clamp(2.3rem, 3.5vw, 3.6rem);
}

.project-copy > p:not(.project-tag) {
  margin: 23px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.project-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 27px 0 0;
  list-style: none;
}

.project-deliverables li {
  padding: 8px 12px;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.reasons-section {
  background: var(--paper);
}

.reason-grid {
  display: grid;
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.reason-grid article {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reason-grid span {
  display: block;
  margin-bottom: 55px;
  color: var(--green-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.support-section {
  padding-block: 76px;
  background: var(--mist);
}

.support-inner {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 0.34fr 1fr;
}

.support-copy h2 {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.support-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.support-grid article {
  display: grid;
  min-height: 190px;
  align-content: center;
  justify-items: center;
  padding: 25px 15px;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.support-grid img {
  width: auto;
  max-width: 130px;
  height: 64px;
  object-fit: contain;
}

.support-grid p {
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.4;
}

.text-mark {
  color: var(--green-900);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.85;
  text-transform: uppercase;
}

.contact-section {
  color: var(--paper);
  background: var(--green-900);
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-copy h2 {
  color: var(--paper);
}

.contact-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.contact-copy > a {
  display: inline-block;
  margin-top: 29px;
  color: var(--green-200);
  font-size: 1.05rem;
  font-weight: 800;
  text-underline-offset: 5px;
}

.enquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 48px);
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-md);
}

.prototype-note {
  padding: 10px 13px;
  margin: 0 0 3px;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 8px;
  font-size: 0.78rem;
}

.field-row {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
}

.enquiry-form label > span {
  font-size: 0.8rem;
  font-weight: 800;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid #bdc9c1;
  border-radius: 8px;
}

.enquiry-form textarea {
  min-height: 120px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--green-700);
  outline: 3px solid rgba(82, 114, 94, 0.22);
}

.form-button {
  justify-self: start;
  min-width: 160px;
  cursor: pointer;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--green-800);
  font-weight: 700;
}

.site-footer {
  color: rgba(255, 255, 255, 0.75);
  background: #132219;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding-block: 64px;
}

.footer-brand {
  color: var(--paper);
}

.footer-brand img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand .brand-copy span {
  color: var(--green-300);
}

.footer-links {
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(2, 140px);
}

.footer-links > div {
  display: grid;
  gap: 8px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: var(--paper);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--green-300);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.72rem;
}

@media (max-width: 1050px) {
  .primary-nav {
    gap: 17px;
  }

  .primary-nav > a:not(.button) {
    font-size: 0.83rem;
  }

  .hero-grid {
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
  }

  .journey-visual {
    min-height: 540px;
  }

  .resource-card {
    min-width: 160px;
  }

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

  .service-card-large {
    grid-row: span 1;
  }

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

  .support-inner {
    gap: 40px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: -1;
    top: 82px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    visibility: hidden;
    background: var(--paper);
    box-shadow: 0 20px 35px rgba(23, 37, 29, 0.1);
    opacity: 0;
    transition: max-height 240ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    max-height: calc(100vh - 82px);
    padding: 14px 20px 26px;
    overflow-y: auto;
    visibility: visible;
    opacity: 1;
  }

  .primary-nav > a:not(.button) {
    padding: 16px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .nav-button {
    margin-top: 18px;
  }

  .hero-grid,
  .heading-split,
  .service-intro,
  .framework-grid,
  .project-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  .journey-visual {
    width: min(100%, 590px);
    min-height: 560px;
    margin-inline: auto;
  }

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

  .proof-grid p:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-grid p:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .heading-split,
  .service-intro {
    gap: 30px;
  }

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

  .benefit-card,
  .benefit-card.featured {
    min-height: 280px;
    transform: none;
  }

  .line-icon {
    margin-bottom: 35px;
  }

  .service-note {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .process-list {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .process-list li {
    padding: 0;
  }

  .process-list li + li {
    padding-top: 30px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .framework-grid {
    gap: 60px;
  }

  .project-card {
    min-height: 0;
  }

  .project-visual {
    min-height: 460px;
  }

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

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .section-pad {
    padding-block: 76px;
  }

  .header-inner {
    min-height: 74px;
  }

  .primary-nav {
    top: 74px;
  }

  .brand-copy span {
    display: none;
  }

  .hero {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 15vw, 4.15rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-facts {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .journey-visual {
    min-height: 505px;
    border-radius: 88px 88px 88px 24px;
  }

  .visual-label {
    top: 28px;
    left: 30px;
  }

  .resource-card {
    min-width: 145px;
    padding: 10px;
  }

  .resource-card strong {
    font-size: 0.77rem;
  }

  .resource-icon {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }

  .resource-assess { top: 61px; right: 18px; }
  .resource-guide { top: 161px; left: 19px; }
  .resource-map { top: 268px; right: 18px; }
  .resource-tour { bottom: 82px; left: 19px; }

  .confidence-badge {
    right: 19px;
    bottom: 24px;
  }

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

  .proof-grid p {
    min-height: 94px;
    padding: 20px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-grid p + p {
    border-top: 0;
  }

  .section-heading h2,
  .framework-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .benefit-card,
  .service-card {
    padding: 28px;
  }

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

  .service-card {
    min-height: 0;
  }

  .project-visual {
    min-height: 380px;
  }

  .plan-one { inset: 66px 44px 80px 32px; }
  .plan-two { inset: 111px 82px 129px 69px; }
  .plan-route { top: 89px; right: 68px; bottom: 101px; left: 57px; }
  .pin-a { top: 94px; left: 85px; }
  .pin-b { top: 194px; right: 75px; }
  .pin-c { bottom: 87px; left: 139px; }
  .resource-a { top: 44px; left: 47px; }
  .resource-b { top: 178px; right: 18px; }
  .resource-c { bottom: 43px; left: 106px; }

  .project-copy {
    padding: 38px 28px 44px;
  }

  .project-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .reason-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .reason-grid article {
    min-height: 235px;
  }

  .support-grid article {
    min-height: 160px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .enquiry-form {
    padding: 25px 20px;
  }

  .form-button {
    width: 100%;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    gap: 35px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.journey-visual {
  display: grid;
  min-height: 580px;
  align-content: center;
  gap: 25px;
  padding: 42px 28px 30px;
  overflow: hidden;
  border-radius: 36px;
}

.journey-visual .visual-label {
  position: static;
  max-width: 350px;
  margin-inline: auto;
  text-align: center;
}

.journey-visual .resource-card {
  position: relative;
  inset: auto;
  min-width: 0;
}

.journey-foundation {
  width: min(100%, 340px);
  justify-self: center;
}

.journey-foundation::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 26px;
  background: var(--green-300);
  content: "";
}

.journey-resources {
  position: relative;
  display: grid;
  gap: 10px;
  padding-top: 15px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journey-resources::before {
  position: absolute;
  top: 0;
  right: 16.5%;
  left: 16.5%;
  height: 1px;
  background: var(--green-300);
  content: "";
}

.journey-resources::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 27px;
  background: var(--green-300);
  content: "";
}

.journey-resources .resource-card {
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
  padding: 15px 13px;
}

.journey-resources .resource-card::before {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 1px;
  height: 16px;
  background: var(--green-300);
  content: "";
}

.journey-resources .resource-icon {
  width: 37px;
  height: 37px;
  flex-basis: 37px;
}

.journey-resources .resource-card strong {
  font-size: 0.78rem;
}

.journey-visual .confidence-badge {
  position: relative;
  inset: auto;
  width: min(100%, 385px);
  justify-self: center;
  justify-content: center;
  margin-top: 2px;
  text-align: left;
}

.benefit-card,
.benefit-card.featured {
  min-height: 290px;
  padding: 30px;
}

.benefit-card.featured {
  transform: translateY(-10px);
}

.line-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 34px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card-large {
  display: grid;
  min-height: 190px;
  align-items: center;
  column-gap: 26px;
  grid-column: 1 / -1;
  grid-row: auto;
  grid-template-columns: auto 1fr;
}

.service-card-large .service-icon {
  grid-row: 1 / span 3;
  margin: 0;
}

.service-card-large .service-kicker {
  align-self: end;
}

.service-card-large > p:last-child {
  align-self: start;
  margin-top: 8px;
}

.process-list {
  position: relative;
  gap: 18px;
}

.process-list::before {
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 2px;
  background: var(--green-300);
  content: "";
}

.process-list li,
.process-list li + li {
  z-index: 1;
  display: block;
  min-height: 260px;
  padding: 32px;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 32px rgba(23, 37, 29, 0.07);
}

.process-number {
  width: 58px;
  height: 58px;
  margin: 0 auto 26px;
  border: 6px solid var(--green-100);
  outline: 1px dashed var(--green-600);
  outline-offset: 5px;
}

.process-outcome {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 28px;
  margin: 24px 0 0;
  color: var(--green-900);
  text-align: center;
  background: var(--green-100);
  border: 1px solid var(--green-300);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.process-outcome svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  flex: 0 0 28px;
  color: var(--paper);
  background: var(--green-700);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.pillar-list {
  overflow: hidden;
}

.pillar-item + .pillar-item {
  border-top: 1px solid var(--line);
}

.pillar-item h3 {
  margin: 0;
}

.pillar-item button {
  display: grid;
  width: 100%;
  min-height: 68px;
  align-items: center;
  gap: 18px;
  padding: 13px 19px;
  color: var(--ink);
  text-align: left;
  background: var(--paper);
  border: 0;
  cursor: pointer;
  grid-template-columns: 42px 1fr 34px;
}

.pillar-item button:hover {
  background: var(--mist);
}

.pillar-item button:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid var(--green-600);
  outline-offset: -3px;
}

.pillar-item button span {
  color: var(--green-700);
  font-family: var(--font);
  font-size: 0.88rem;
}

.pillar-item button strong {
  font-size: 0.95rem;
}

.pillar-item button i {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  background: var(--green-100);
  border-radius: 50%;
}

.pillar-item button i::before,
.pillar-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--green-900);
  content: "";
  transform: translate(-50%, -50%);
}

.pillar-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.pillar-item button[aria-expanded="true"] i {
  background: var(--green-700);
}

.pillar-item button[aria-expanded="true"] i::before,
.pillar-item button[aria-expanded="true"] i::after {
  background: var(--paper);
}

.pillar-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.pillar-panel {
  padding: 2px 64px 24px 79px;
  color: var(--ink-soft);
  background: var(--mist);
}

.pillar-panel p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
}

.reason-grid article {
  position: relative;
}

.reason-grid article::after {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  background: var(--green-100);
  border: 1px solid var(--green-300);
  border-radius: 50%;
  content: "";
}

.support-grid img {
  width: min(100%, 150px);
  max-width: 150px;
  height: 68px;
}

.support-grid article:nth-child(3) img {
  width: min(100%, 180px);
  max-width: 180px;
}

.support-grid article:nth-child(4) img {
  width: min(100%, 175px);
  max-width: 175px;
}

.project-links {
  row-gap: 15px;
}

@media (max-width: 1050px) {
  .journey-visual {
    min-height: 555px;
    padding-inline: 22px;
  }

  .journey-resources .resource-card {
    padding-inline: 10px;
  }

  .journey-resources .resource-card strong {
    font-size: 0.72rem;
  }
}

@media (max-width: 880px) {
  .journey-visual {
    width: min(100%, 650px);
    min-height: 560px;
  }

  .benefit-grid,
  .service-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .benefit-card.featured {
    min-height: 0;
    transform: none;
  }

  .service-card-large {
    display: block;
    grid-column: auto;
  }

  .service-card-large .service-icon {
    margin-bottom: 40px;
  }

  .service-card {
    min-height: 0;
  }

  .process-list::before {
    top: 8%;
    right: auto;
    bottom: 8%;
    left: 50%;
    width: 2px;
    height: auto;
  }

  .process-list li,
  .process-list li + li {
    min-height: 0;
    padding: 32px;
    border: 1px solid var(--line);
  }
}

@media (max-width: 600px) {
  .journey-visual {
    min-height: 0;
    gap: 18px;
    padding: 32px 18px 22px;
    border-radius: 28px;
  }

  .journey-visual .visual-label {
    margin-bottom: 4px;
    font-size: 0.65rem;
  }

  .journey-foundation {
    width: 100%;
  }

  .journey-foundation::after,
  .journey-resources::before,
  .journey-resources::after,
  .journey-resources .resource-card::before {
    display: none;
  }

  .journey-resources {
    gap: 9px;
    padding: 0;
    grid-template-columns: 1fr;
  }

  .journey-resources .resource-card {
    align-items: center;
    flex-direction: row;
    padding: 12px 14px;
  }

  .journey-resources .resource-card strong {
    font-size: 0.8rem;
  }

  .journey-visual .confidence-badge {
    width: 100%;
    justify-content: flex-start;
    border-radius: 14px;
  }

  .process-outcome {
    align-items: flex-start;
    padding: 20px;
    text-align: left;
  }

  .pillar-item button {
    gap: 11px;
    padding-inline: 14px;
    grid-template-columns: 34px 1fr 32px;
  }

  .pillar-item button strong {
    font-size: 0.86rem;
  }

  .pillar-panel {
    padding: 2px 18px 22px 59px;
  }
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 8vw, 116px);
  background: linear-gradient(138deg, #f8faf9 0%, #eef5f1 58%, #f7f8f4 100%);
}

.inner-hero::before,
.inner-hero::after {
  position: absolute;
  border: 1px solid rgba(82, 114, 94, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.inner-hero::before {
  top: -270px;
  right: -90px;
  width: 620px;
  height: 620px;
}

.inner-hero::after {
  right: 360px;
  bottom: -330px;
  width: 520px;
  height: 520px;
}

.inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.8fr);
}

.inner-hero-copy h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.inner-hero-copy h1 em {
  color: var(--green-700);
  font-style: normal;
}

.inner-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.inner-hero-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  color: var(--paper);
  background: linear-gradient(150deg, var(--green-800), var(--green-900));
  border-radius: 36px 36px 36px 10px;
  box-shadow: var(--shadow);
}

.inner-hero-card::before {
  position: absolute;
  top: -160px;
  right: -140px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-card-label {
  position: relative;
  margin: 0 0 28px;
  color: var(--green-300);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-card-list {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-card-list li {
  display: grid;
  min-height: 64px;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  grid-template-columns: 36px 1fr;
}

.hero-card-list span,
.sequence-list > li > span,
.mini-process li > span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--green-900);
  background: var(--green-300);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-card-list strong {
  font-size: 0.96rem;
}

.about-origin-card {
  display: grid;
  min-height: 470px;
  align-content: space-between;
  background:
    radial-gradient(circle at 82% 18%, rgba(175, 208, 191, 0.2) 0 18%, transparent 18.5%),
    linear-gradient(150deg, var(--green-800), var(--green-900));
}

.about-origin-card blockquote {
  position: relative;
  max-width: 440px;
  margin: 74px 0 0;
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.about-origin-card blockquote em {
  color: var(--green-300);
  font-style: normal;
}

.about-origin-footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.about-origin-footer span {
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.framework-hero-card,
.contact-hero-card {
  display: grid;
  align-content: space-between;
}

.framework-hero-number {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-block: 16px 28px;
}

.framework-hero-number strong {
  color: var(--green-300);
  font-size: clamp(6.5rem, 10vw, 9rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.framework-hero-number span {
  max-width: 130px;
  padding-bottom: 6px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.framework-pillar-cloud {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.framework-pillar-cloud li {
  padding: 9px 13px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.contact-hero-promise {
  position: relative;
  display: grid;
  gap: 8px;
  margin-block: 28px;
}

.contact-hero-promise span {
  color: var(--green-300);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-hero-promise strong {
  max-width: 420px;
  font-size: clamp(2.45rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.contact-hero-email {
  position: relative;
  width: fit-content;
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 800;
}

.contact-hero-region {
  position: relative;
  padding-top: 24px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

.work-hero-card {
  display: grid;
  align-content: start;
}

.work-hero-type {
  position: relative;
  width: fit-content;
  padding: 8px 12px;
  margin: 12px 0 22px;
  color: var(--green-900);
  background: var(--green-300);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}

.work-hero-card h2 {
  position: relative;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.work-hero-card ul {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.work-hero-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.work-hero-card li::before {
  position: absolute;
  left: 0;
  color: var(--green-300);
  content: "✓";
  font-weight: 900;
}

.work-hero-card > a {
  position: relative;
  width: fit-content;
  color: var(--green-300);
  font-weight: 800;
}

.case-hero-card {
  display: grid;
  align-content: start;
}

.case-hero-card dl {
  position: relative;
  display: grid;
  gap: 0;
  margin: 12px 0 0;
}

.case-hero-card dl div {
  display: grid;
  gap: 4px;
  padding-block: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: minmax(100px, 0.6fr) minmax(0, 1.4fr);
}

.case-hero-card dt {
  color: var(--green-300);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-hero-card dd {
  margin: 0;
  font-weight: 800;
}

.case-resource-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-resource-card {
  display: grid;
  min-height: 390px;
  align-content: start;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.case-resource-card:nth-child(2) {
  background: var(--green-100);
}

.case-resource-card .card-index {
  margin-bottom: 48px;
}

.case-resource-card h3 {
  margin: 2px 0 14px;
  font-size: 1.35rem;
}

.case-resource-card > p:not(.service-kicker) {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.case-resource-card .text-link {
  align-self: end;
  margin-top: 28px;
}

.funding-panel {
  display: grid;
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
  padding: clamp(32px, 6vw, 70px);
  background: var(--green-100);
  border: 1px solid var(--green-200);
  border-radius: 32px;
  grid-template-columns: minmax(0, 1.35fr) minmax(200px, 0.65fr);
}

.funding-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.funding-panel p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.funding-panel img {
  width: min(100%, 260px);
  max-height: 130px;
  justify-self: center;
  object-fit: contain;
}

.section-intro {
  max-width: 810px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-intro.centred {
  margin-inline: auto;
  text-align: center;
}

.section-intro.centred .eyebrow {
  justify-content: center;
}

.section-intro h2,
.split-copy h2,
.page-cta h2,
.contact-page-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.section-intro > p:not(.eyebrow),
.split-copy > p,
.contact-page-copy > p {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.8;
}

.principle-grid,
.evidence-grid,
.venue-grid,
.outcome-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.principle-card,
.evidence-card,
.venue-card,
.outcome-card {
  min-height: 100%;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.principle-card:nth-child(2),
.principle-card:nth-child(4),
.evidence-card:nth-child(2),
.evidence-card:nth-child(5) {
  background: var(--green-100);
}

.card-index {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 44px;
  place-items: center;
  color: var(--green-800);
  background: var(--green-100);
  border: 1px solid var(--green-300);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.principle-card:nth-child(2) .card-index,
.principle-card:nth-child(4) .card-index,
.evidence-card:nth-child(2) .card-index,
.evidence-card:nth-child(5) .card-index {
  background: var(--paper);
}

.principle-card h3,
.evidence-card h3,
.venue-card h3,
.outcome-card h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.principle-card p,
.evidence-card p,
.venue-card p,
.outcome-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.muted-section {
  background: var(--mist);
}

.green-section {
  color: var(--paper);
  background: var(--green-900);
}

.green-section .eyebrow {
  color: var(--green-300);
}

.green-section .section-intro > p:not(.eyebrow),
.green-section .split-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.split-layout {
  display: grid;
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.split-layout.reverse .split-copy {
  order: 2;
}

.split-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 58px);
  background: var(--green-100);
  border: 1px solid var(--green-200);
  border-radius: 34px 34px 12px 34px;
}

.split-panel.dark {
  color: var(--paper);
  background: var(--green-800);
  border-color: rgba(255, 255, 255, 0.12);
}

.split-panel h3 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.split-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.split-panel.dark p {
  color: rgba(255, 255, 255, 0.8);
}

.check-list,
.clean-list,
.service-includes {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li,
.clean-list li,
.service-includes li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
}

.check-list li::before,
.clean-list li::before,
.service-includes li::before {
  position: absolute;
  top: 0.43em;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--green-300);
  border-radius: 50%;
  content: "";
}

.check-list li::after,
.clean-list li::after,
.service-includes li::after {
  position: absolute;
  top: 0.69em;
  left: 5px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--green-900);
  border-left: 2px solid var(--green-900);
  content: "";
  transform: rotate(-45deg);
}

.green-section .check-list li,
.green-section .clean-list li {
  color: rgba(255, 255, 255, 0.82);
}

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

.pillar-static-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  grid-template-columns: 38px 1fr;
}

.pillar-static-card > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--paper);
  background: var(--green-700);
  border-radius: 50%;
  font-size: 0.73rem;
  font-weight: 900;
}

.pillar-static-card h3 {
  margin: 0 0 5px;
  font-size: 0.98rem;
}

.pillar-static-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.quote-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(70px, 9vw, 116px);
  color: var(--paper);
  background: var(--green-800);
}

.quote-band::after {
  position: absolute;
  top: -250px;
  right: -120px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.quote-band blockquote {
  position: relative;
  z-index: 1;
  max-width: 950px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.quote-band blockquote em {
  color: var(--green-300);
  font-style: normal;
}

.venue-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.venue-card {
  min-height: 150px;
  padding: 24px;
}

.venue-card h3 {
  margin: 0;
}

.page-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 82px);
  color: var(--paper);
  background: linear-gradient(145deg, var(--green-800), var(--green-900));
  border-radius: 36px 36px 36px 12px;
}

.page-cta::after {
  position: absolute;
  right: -130px;
  bottom: -260px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.page-cta > * {
  position: relative;
  z-index: 1;
}

.page-cta p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.page-cta .button {
  color: var(--green-900);
  background: var(--paper);
  border-color: var(--paper);
}

.page-cta .button:hover {
  color: var(--paper);
  background: transparent;
}

.page-cta .button-secondary {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

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

.service-overview article {
  position: relative;
  min-height: 220px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.service-overview article:first-child {
  color: var(--paper);
  background: var(--green-800);
  border-color: var(--green-800);
}

.service-overview span {
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-overview article:first-child span,
.service-overview article:first-child p {
  color: var(--green-300);
}

.service-overview h2 {
  margin: 42px 0 12px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.service-overview p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.service-detail {
  border-top: 1px solid var(--line);
}

.service-detail:first-of-type {
  border-top: 0;
}

.service-detail-grid {
  display: grid;
  align-items: start;
  gap: clamp(46px, 7vw, 92px);
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.service-detail-copy .service-number {
  margin: 0 0 24px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-detail-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.07;
}

.service-detail-copy > p {
  margin: 24px 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.resource-preview {
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.resource-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--paper);
  background: var(--green-800);
}

.resource-preview-header strong {
  font-size: 0.92rem;
}

.resource-preview-header a {
  color: var(--green-300);
  font-size: 0.82rem;
  font-weight: 800;
}

.resource-preview iframe {
  width: 100%;
  min-height: 470px;
  border: 0;
}

.assessment-visual {
  display: grid;
  min-height: 500px;
  align-content: center;
  gap: 12px;
  padding: clamp(28px, 5vw, 54px);
  color: var(--paper);
  background: linear-gradient(145deg, var(--green-800), var(--green-900));
  border-radius: 34px 34px 34px 10px;
}

.assessment-visual article {
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  grid-template-columns: 34px 1fr;
}

.assessment-visual span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--green-900);
  background: var(--green-300);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.assessment-visual strong {
  font-size: 0.9rem;
}

.connected-strip {
  padding: 28px;
  color: var(--paper);
  background: var(--green-800);
  border-radius: var(--radius-md);
}

.connected-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.connected-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.secondary-service-note {
  display: grid;
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(28px, 4vw, 44px);
  margin-top: 20px;
  background: var(--green-100);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-md);
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
}

.secondary-service-note .eyebrow {
  margin-bottom: 12px;
}

.secondary-service-note h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.secondary-service-note > p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.sequence-list,
.mini-process {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sequence-list > li,
.mini-process li {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 0 0 34px;
  grid-template-columns: 44px 1fr;
}

.sequence-list > li:not(:last-child)::before,
.mini-process li:not(:last-child)::before {
  position: absolute;
  top: 36px;
  bottom: 0;
  left: 18px;
  width: 1px;
  background: var(--green-300);
  content: "";
}

.sequence-list h3,
.mini-process h3 {
  margin: 4px 0 8px;
  font-size: 1.15rem;
}

.sequence-list p,
.mini-process p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.evidence-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outcome-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outcome-card {
  min-height: 0;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.outcome-card h3,
.outcome-card p {
  color: var(--paper);
}

.outcome-card p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-page-grid {
  display: grid;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.contact-page-copy {
  position: sticky;
  top: 118px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-details a {
  color: var(--green-800);
  font-weight: 800;
}

.contact-detail {
  padding: 18px 20px;
  background: var(--green-100);
  border: 1px solid var(--green-200);
  border-radius: 14px;
}

.contact-detail strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.82rem;
}

.contact-detail span {
  color: var(--ink-soft);
}

.contact-page-form {
  padding: clamp(28px, 5vw, 48px);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 30px;
}

.contact-page-form .enquiry-form {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 12px;
  margin-inline: auto;
}

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

.faq-list summary {
  position: relative;
  padding: 22px 60px 22px 24px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 24px;
  height: 24px;
  color: var(--green-800);
  content: "+";
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 21px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 24px 24px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

@media (max-width: 1050px) {
  .principle-grid,
  .service-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .venue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .inner-hero-grid,
  .split-layout,
  .split-layout.reverse,
  .service-detail-grid,
  .contact-page-grid,
  .secondary-service-note {
    grid-template-columns: 1fr;
  }

  .inner-hero-card {
    width: min(100%, 650px);
    min-height: 0;
  }

  .split-layout.reverse .split-copy {
    order: 0;
  }

  .evidence-grid,
  .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-resource-grid {
    grid-template-columns: 1fr;
  }

  .case-resource-card {
    min-height: 0;
  }

  .funding-panel {
    grid-template-columns: 1fr;
  }

  .contact-page-copy {
    position: static;
  }
}

@media (max-width: 600px) {
  .inner-hero {
    padding-block: 58px 72px;
  }

  .inner-hero-copy h1 {
    font-size: clamp(2.55rem, 13vw, 3.5rem);
  }

  .inner-hero-card {
    padding: 24px 18px;
    border-radius: 26px 26px 26px 9px;
  }

  .about-origin-card {
    min-height: 390px;
  }

  .about-origin-card blockquote {
    margin-top: 48px;
  }

  .case-hero-card dl div {
    grid-template-columns: 1fr;
  }

  .principle-grid,
  .evidence-grid,
  .venue-grid,
  .outcome-grid,
  .service-overview,
  .pillars-static {
    grid-template-columns: 1fr;
  }

  .principle-card,
  .evidence-card {
    padding: 24px;
  }

  .card-index {
    margin-bottom: 30px;
  }

  .page-cta {
    padding: 34px 24px;
    border-radius: 26px 26px 26px 9px;
  }

  .resource-preview iframe {
    min-height: 360px;
  }

  .contact-page-form {
    padding: 22px 18px;
  }
}
