:root {
  --green: #29835c;
  --green-deep: #174b36;
  --green-dark: #0f3224;
  --mint: #b7d9c8;
  --ink: #0a0f0d;
  --ink-soft: #262d2a;
  --paper: #f4f2eb;
  --paper-deep: #e9e7df;
  --white: #ffffff;
  --muted: rgba(10, 15, 13, 0.62);
  --muted-light: rgba(255, 255, 255, 0.66);
  --line: rgba(10, 15, 13, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Lato", Arial, sans-serif;
  --max: 1380px;
  --reading: 760px;
  --gutter: clamp(1.15rem, 4.5vw, 5rem);
  --section: clamp(4.75rem, 7.25vw, 7.5rem);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 24px 80px rgba(7, 17, 12, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--green);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--reading {
  width: min(100%, var(--reading));
}

.section {
  position: relative;
  padding-block: var(--section);
}

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

.section--white {
  background: var(--white);
}

.section--ink {
  background: var(--ink);
  color: var(--white);
}

.section--green {
  background: var(--green-deep);
  color: var(--white);
}

.section--flush {
  padding-block: 0;
}

.section--tight {
  padding-block: clamp(3.5rem, 6vw, 6rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.7rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow--plain::before {
  display: none;
}

.display,
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.display {
  font-size: clamp(3rem, 6.1vw, 6.5rem);
  line-height: 0.93;
}

.display em,
h1 em,
h2 em {
  font-weight: 300;
}

.section-title {
  max-width: 13ch;
  margin-top: 1rem;
  font-size: clamp(2.6rem, 5.1vw, 5.5rem);
  line-height: 0.95;
}

.section-title--wide {
  max-width: 18ch;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.23rem);
  line-height: 1.7;
}

.section--ink .lead,
.section--green .lead {
  color: var(--muted-light);
}

.micro {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.section--ink .micro,
.section--green .micro {
  color: rgba(255, 255, 255, 0.55);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid currentColor;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
  transition: gap 0.3s var(--ease), opacity 0.3s ease;
}

.text-link:hover {
  gap: 1rem;
  opacity: 0.72;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 17, 12, 0.17);
}

.button:active {
  transform: translateY(0);
}

.button svg {
  width: 1rem;
  transition: transform 0.3s var(--ease);
}

.button:hover svg {
  transform: translateX(4px);
}

.button--green {
  border-color: var(--green);
  background: var(--green);
}

.button--green:hover {
  border-color: var(--green-deep);
  background: var(--green-deep);
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--outline {
  background: transparent;
  color: var(--ink);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--small {
  min-height: 2.75rem;
  padding: 0.72rem 1rem;
  font-size: 0.66rem;
}

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

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.38;
  transform: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Floating matte navigation */
.site-header {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  left: 0;
  padding: 1rem var(--gutter) 0;
  pointer-events: none;
}

.nav-shell {
  position: relative;
  display: flex;
  width: min(100%, 1320px);
  min-height: 4.65rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
  margin-inline: auto;
  padding: 0.65rem 0.7rem 0.65rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(8, 20, 14, 0.12);
  pointer-events: auto;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.is-scrolled .nav-shell {
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(8, 20, 14, 0.16);
}

.brand-mark {
  display: flex;
  width: clamp(9.5rem, 15vw, 12rem);
  align-items: center;
  flex: none;
}

.brand-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 0.72rem 0.82rem;
  border-radius: 0.35rem;
  color: rgba(10, 15, 13, 0.7);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  background: rgba(41, 131, 92, 0.1);
  color: var(--green-deep);
}

.nav-cta {
  flex: none;
}

.nav-toggle {
  position: relative;
  display: none;
  width: 3rem;
  height: 3rem;
  flex: none;
  border: 1px solid rgba(10, 15, 13, 0.1);
  border-radius: 0.45rem;
  background: var(--paper-deep);
}

.nav-toggle span {
  position: absolute;
  right: 0.85rem;
  left: 0.85rem;
  height: 1px;
  background: var(--ink);
  transition: top 0.35s var(--ease), transform 0.35s var(--ease), opacity 0.25s ease;
}

.nav-toggle span:first-child {
  top: 1.16rem;
}

.nav-toggle span:last-child {
  top: 1.78rem;
}

.menu-open .nav-toggle span:first-child {
  top: 1.47rem;
  transform: rotate(45deg);
}

.menu-open .nav-toggle span:last-child {
  top: 1.47rem;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 180;
  inset: 0;
  display: grid;
  overflow-y: auto;
  padding: 7.8rem var(--gutter) 3rem;
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s var(--ease);
}

.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__inner {
  display: flex;
  width: min(100%, 36rem);
  flex-direction: column;
  margin: auto;
}

.mobile-menu__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 3.35rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.mobile-menu__links a::after {
  color: var(--green);
  content: "↗";
  font-family: var(--sans);
  font-size: 1rem;
}

.mobile-menu__sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 2rem;
}

.mobile-menu__sub a {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mobile-menu__actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.4rem;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero--page {
  min-height: min(76svh, 48rem);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-settle 1.5s var(--ease-out) both;
  transform: scale(1.045);
}

.hero__media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 8, 0.82) 0%, rgba(5, 12, 8, 0.5) 43%, rgba(5, 12, 8, 0.08) 78%),
    linear-gradient(180deg, rgba(5, 12, 8, 0.2) 20%, rgba(5, 12, 8, 0.78) 100%);
  content: "";
}

.hero--light-media .hero__media::after {
  background:
    linear-gradient(90deg, rgba(5, 12, 8, 0.76) 0%, rgba(5, 12, 8, 0.3) 48%, rgba(5, 12, 8, 0.08) 78%),
    linear-gradient(180deg, rgba(5, 12, 8, 0.08) 18%, rgba(5, 12, 8, 0.62) 100%);
}

@keyframes hero-settle {
  to {
    transform: scale(1);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 10.5rem;
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.hero__grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.32fr);
  gap: clamp(2rem, 5vw, 6rem);
}

.hero h1 {
  max-width: 11ch;
  margin-top: 1.15rem;
  font-size: clamp(4rem, 8.8vw, 9.4rem);
  line-height: 0.84;
  text-wrap: balance;
}

.hero--page h1 {
  max-width: 12ch;
  font-size: clamp(3.8rem, 7.5vw, 7.8rem);
}

.hero__body {
  display: flex;
  max-width: 35rem;
  flex-direction: column;
  gap: clamp(1.35rem, 2vw, 1.75rem);
}

.hero__body p {
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__detail {
  display: grid;
  gap: 1.15rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: var(--ink-soft);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.hero__detail strong {
  display: block;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero__detail span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__detail a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

.hero__rail {
  position: relative;
  z-index: 3;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.proof-rail__item {
  min-height: 7.2rem;
  padding: 1.3rem clamp(1rem, 2vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-rail__item:first-child {
  padding-left: 0;
}

.proof-rail__item:last-child {
  border-right: 0;
}

.proof-rail__item strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.proof-rail__item span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero--graphic {
  min-height: min(76svh, 48rem);
  background:
    radial-gradient(circle at 78% 42%, rgba(183, 217, 200, 0.23), transparent 26%),
    radial-gradient(circle at 66% 30%, rgba(41, 131, 92, 0.25), transparent 38%),
    linear-gradient(135deg, #08120e, #102d21 62%, #08120e);
}

.hero--graphic::before,
.hero--graphic::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 48% 52% 62% 38% / 42% 56% 44% 58%;
  content: "";
  transform: rotate(22deg);
}

.hero--graphic::before {
  top: 18%;
  right: 9%;
  width: 24rem;
  height: 24rem;
  background: var(--green-dark);
  box-shadow: none;
}

.hero--graphic::after {
  right: 23%;
  bottom: 8%;
  width: 9rem;
  height: 9rem;
  background: rgba(255, 255, 255, 0.05);
}

/* Editorial layouts */
.section-head {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.45fr);
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-head__copy {
  max-width: 34rem;
}

.section-head__copy .text-link {
  margin-top: 1.5rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 3rem);
}

.editorial-grid__title {
  grid-column: 1 / span 7;
}

.editorial-grid__copy {
  grid-column: 9 / -1;
  align-self: end;
}

.editorial-grid__copy p + p {
  margin-top: 1rem;
}

.editorial-grid__copy .button-row,
.editorial-grid__copy .text-link {
  margin-top: 1.5rem;
}

.metric-grid {
  display: grid;
  margin-top: clamp(3rem, 6vw, 5.5rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  min-height: 12rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric strong {
  display: block;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.metric span {
  display: block;
  max-width: 18ch;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

/* Audience chooser */
.audience-grid {
  display: grid;
  border: 1px solid var(--ink);
  grid-template-columns: 1fr 1fr;
}

.audience-card {
  position: relative;
  display: flex;
  min-height: clamp(28rem, 46vw, 42rem);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 4.2rem);
  background: var(--ink);
  color: var(--white);
}

.audience-card + .audience-card {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.audience-card__media {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.audience-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}

.audience-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 11, 0.35), rgba(8, 16, 11, 0.86));
  content: "";
}

.audience-card:hover .audience-card__media img {
  transform: scale(1.045);
}

.audience-card__top,
.audience-card__bottom {
  position: relative;
  z-index: 1;
}

.audience-card__num {
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--display);
  font-size: 1.1rem;
}

.audience-card h3 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 4.4vw, 5rem);
  line-height: 0.93;
}

.audience-card p {
  max-width: 36rem;
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.68);
}

.audience-card .text-link {
  margin-top: 1.6rem;
  color: var(--white);
}

/* Service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.service-card {
  position: relative;
  display: flex;
  min-height: clamp(30rem, 45vw, 42rem);
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  grid-column: span 6;
}

.service-card--wide {
  min-height: clamp(29rem, 37vw, 36rem);
  grid-column: span 12;
}

.service-card__media {
  position: absolute;
  inset: 0;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.15s var(--ease-out);
}

.service-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 12, 9, 0.05) 25%, rgba(7, 12, 9, 0.88) 100%);
  content: "";
  transition: background 0.5s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.05);
}

.service-card:hover .service-card__media::after {
  background: linear-gradient(180deg, rgba(7, 12, 9, 0.12) 20%, rgba(7, 12, 9, 0.92) 100%);
}

.service-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: clamp(1.7rem, 3.3vw, 3.5rem);
}

.service-card__label {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 15ch;
  font-size: clamp(2.2rem, 3.7vw, 4.2rem);
  line-height: 0.96;
}

.service-card__arrow {
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  place-items: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}

.service-card:hover .service-card__arrow {
  background: var(--white);
  color: var(--ink);
  transform: translate(3px, -3px);
}

/* Splits and features */
.split {
  display: grid;
  min-height: min(48rem, 78svh);
  grid-template-columns: 1fr 1fr;
}

.split__media {
  min-height: 34rem;
  overflow: hidden;
  background: var(--paper-deep);
}

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

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 8rem);
  background: var(--white);
}

.split--ink .split__content {
  background: var(--ink);
  color: var(--white);
}

.split--green .split__content {
  background: var(--green-deep);
  color: var(--white);
}

.split__content h2 {
  max-width: 12ch;
  margin-top: 1rem;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.94;
}

.split__content .lead {
  max-width: 34rem;
  margin-top: 1.5rem;
}

.split--ink .split__content .lead,
.split--green .split__content .lead {
  color: var(--muted-light);
}

.split__content .button-row,
.split__content .text-link {
  margin-top: 1.8rem;
}

.feature-list {
  display: grid;
  gap: 0;
  margin-top: 2rem;
}

.feature-list li {
  display: grid;
  align-items: start;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1.4rem 1fr;
}

.feature-list li::before {
  color: var(--green);
  content: "◆";
  font-size: 0.62rem;
  transform: translateY(0.34rem);
}

.split--ink .feature-list li,
.split--green .feature-list li {
  border-color: var(--line-light);
}

.split--ink .feature-list li::before,
.split--green .feature-list li::before {
  color: var(--mint);
}

/* Process */
.process-grid {
  display: grid;
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  display: flex;
  min-height: 19rem;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background 0.35s ease;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.045);
}

.process-step__num {
  color: var(--mint);
  font-family: var(--display);
  font-size: 1.45rem;
}

.process-step h3 {
  margin-top: auto;
  font-size: clamp(1.65rem, 2.5vw, 2.6rem);
  line-height: 1;
}

.process-step p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

/* Work / gallery */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.work-card {
  position: relative;
  display: block;
  min-height: 30rem;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  grid-column: span 4;
  text-align: left;
}

.work-card--wide {
  grid-column: span 8;
}

.work-card--tall {
  min-height: 42rem;
}

.work-card[hidden] {
  display: none;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.work-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(5, 10, 7, 0.8));
  content: "";
}

.work-card:hover img {
  transform: scale(1.045);
}

.work-card__caption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.work-card__caption strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.work-card__caption span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-button {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.project-dialog {
  width: min(92vw, 1180px);
  max-height: 90svh;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.project-dialog::backdrop {
  background: #050a07;
}

.project-dialog__grid {
  display: grid;
  max-height: 90svh;
  grid-template-columns: minmax(0, 1.4fr) minmax(17rem, 0.6fr);
}

.project-dialog__media {
  min-height: min(76svh, 52rem);
  overflow: hidden;
}

.project-dialog__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-dialog__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 4vw, 4rem);
}

.project-dialog__body h2 {
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 0.95;
}

.project-dialog__body p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.64);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0.45rem;
  background: var(--ink-soft);
  color: var(--white);
  font-size: 1.3rem;
  place-items: center;
}

/* Comparison */
.comparison {
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.comparison table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.comparison th,
.comparison td {
  width: 33.33%;
  padding: clamp(1.2rem, 2vw, 2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison td:first-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison td:nth-child(2) {
  background: rgba(41, 131, 92, 0.07);
}

/* Capability and accreditation */
.capability-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.capability-card {
  min-height: 18rem;
  padding: clamp(1.7rem, 3.5vw, 3.2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.capability-card__num {
  color: var(--green);
  font-family: var(--display);
  font-size: 1.2rem;
}

.capability-card h3 {
  margin-top: 4.5rem;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  line-height: 1;
}

.capability-card p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.accreditation-band {
  display: grid;
  align-items: center;
  grid-template-columns: 0.7fr 1.3fr auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.accreditation-band__mark {
  color: var(--mint);
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.9;
}

.accreditation-band h3 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1;
}

.accreditation-band p {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.62);
}

/* FAQ */
.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  display: grid;
  min-height: 5.7rem;
  align-items: center;
  padding: 1.25rem 4rem 1.25rem 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  right: 0.5rem;
  color: var(--green);
  content: "+";
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform 0.28s var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq__answer {
  max-width: 48rem;
  padding: 0 3rem 1.8rem 0;
  color: var(--muted);
}

.section--ink .faq,
.section--ink .faq details,
.section--green .faq,
.section--green .faq details {
  border-color: var(--line-light);
}

.section--ink .faq__answer,
.section--green .faq__answer {
  color: rgba(255, 255, 255, 0.62);
}

.section--ink .faq summary::after,
.section--green .faq summary::after {
  color: var(--mint);
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--white);
}

.cta-band::after {
  position: absolute;
  top: -12rem;
  right: -8rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 46% 54% 62% 38%;
  background: rgba(255, 255, 255, 0.035);
  content: "";
  transform: rotate(24deg);
}

.cta-band__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
}

.cta-band h2 {
  max-width: 13ch;
  font-size: clamp(3rem, 6.4vw, 7rem);
  line-height: 0.92;
}

.cta-band p {
  max-width: 32rem;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.66);
}

/* Quote estimator */
.poc-note {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(41, 131, 92, 0.25);
  background: rgba(41, 131, 92, 0.07);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.poc-note::before {
  color: var(--green);
  content: "◆";
  flex: none;
  font-size: 0.62rem;
  transform: translateY(0.22rem);
}

.estimate-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.35fr) minmax(19rem, 0.65fr);
  gap: clamp(1.5rem, 4vw, 4rem);
}

.estimate-form {
  border: 1px solid var(--line);
  background: var(--white);
}

.estimate-progress {
  display: grid;
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(6, 1fr);
}

.estimate-progress__step {
  position: relative;
  min-height: 4.2rem;
  padding: 1rem 0.75rem;
  border-right: 1px solid var(--line);
  color: rgba(10, 15, 13, 0.38);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.estimate-progress__step:last-child {
  border-right: 0;
}

.estimate-progress__step[aria-current="step"] {
  background: rgba(41, 131, 92, 0.08);
  color: var(--green-deep);
}

.estimate-progress__step.is-complete {
  color: var(--ink);
}

.estimate-progress__step.is-complete::after {
  position: absolute;
  right: 0.5rem;
  bottom: 0.45rem;
  color: var(--green);
  content: "✓";
}

.estimate-progress__step.is-skipped {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.estimate-panel {
  padding: clamp(1.6rem, 4vw, 3.6rem);
}

.estimate-panel[hidden] {
  display: none;
}

.step-kicker {
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.estimate-panel legend,
.estimate-panel__title {
  width: 100%;
  max-width: 16ch;
  padding-top: 0.8rem;
  font-family: var(--display);
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.estimate-panel__intro {
  max-width: 43rem;
  margin-top: 1rem;
  color: var(--muted);
}

.choice-grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

.choice-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.choice-card {
  position: relative;
  display: block;
  min-height: 8.5rem;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-card__surface {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s var(--ease);
}

.choice-card:hover .choice-card__surface {
  border-color: rgba(10, 15, 13, 0.4);
  transform: translateY(-2px);
}

.choice-card input:focus-visible + .choice-card__surface {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.choice-card input:checked + .choice-card__surface {
  border-color: var(--green-deep);
  background: var(--green-deep);
  color: var(--white);
}

.choice-card__surface strong {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.choice-card__surface span {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.choice-card input:checked + .choice-card__surface span {
  color: rgba(255, 255, 255, 0.64);
}

.field-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: 1fr 1fr;
}

.field-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.45rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  outline: 0;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(41, 131, 92, 0.12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #a33e35;
}

.field-help,
.field-error {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.4;
}

.field-error {
  color: #8f2f27;
  font-weight: 700;
}

.panel-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.panel-row {
  position: relative;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.panel-row__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.panel-row__head strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.remove-panel {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.remove-panel:hover {
  color: #8f2f27;
}

.edge-fieldset {
  margin-top: 1rem;
  border: 0;
}

.edge-help {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.edge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.estimator-fallback {
  margin-top: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background: var(--white);
}

.estimator-fallback h2 {
  max-width: 20ch;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.estimator-fallback p {
  max-width: 46rem;
  margin-top: 1rem;
  color: var(--muted);
}

.estimator-fallback a {
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.edge-choice {
  position: relative;
}

.edge-choice input {
  position: absolute;
  opacity: 0;
}

.edge-choice span {
  display: inline-flex;
  min-height: 2.6rem;
  align-items: center;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.edge-choice input:checked + span {
  border-color: var(--green);
  background: rgba(41, 131, 92, 0.1);
  color: var(--green-deep);
}

.edge-choice input:focus-visible + span {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

.add-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  color: var(--green-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.add-row::before {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid var(--green);
  border-radius: 999px;
  content: "+";
  place-items: center;
}

.error-summary {
  margin-top: 1.5rem;
  padding: 1rem;
  border-left: 3px solid #8f2f27;
  background: rgba(163, 62, 53, 0.08);
  color: #6f211b;
  font-size: 0.8rem;
}

.error-summary[hidden] {
  display: none;
}

.estimate-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.estimate-back {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.estimate-back:hover {
  color: var(--ink);
}

.estimate-summary {
  position: sticky;
  top: 7rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.estimate-summary__top {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line-light);
}

.estimate-summary__label {
  color: var(--mint);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.estimate-summary__range {
  margin-top: 0.75rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.estimate-summary__status {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.estimate-summary__body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.estimate-summary__facts {
  display: grid;
  gap: 0.85rem;
}

.estimate-summary__fact {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.73rem;
}

.estimate-summary__fact strong {
  color: var(--white);
  font-weight: 700;
  text-align: right;
}

.estimate-summary__notice {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  line-height: 1.55;
}

.estimate-breakdown {
  margin-top: 1rem;
  border-top: 1px solid var(--line-light);
}

.estimate-breakdown summary {
  padding-block: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  list-style: none;
  text-transform: uppercase;
}

.estimate-breakdown summary::-webkit-details-marker {
  display: none;
}

.estimate-breakdown ul {
  display: grid;
  gap: 0.55rem;
  padding-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
}

.estimate-result-card {
  margin-top: 2rem;
  padding: clamp(1.5rem, 3vw, 2.7rem);
  border: 1px solid rgba(41, 131, 92, 0.35);
  background: rgba(41, 131, 92, 0.07);
}

.estimate-result-card h3 {
  margin-top: 0.5rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.96;
}

.estimate-result-card p {
  margin-top: 0.85rem;
  color: var(--muted);
}

.estimate-result-card .estimate-breakdown {
  border-top-color: var(--line);
}

.estimate-result-card .estimate-breakdown summary {
  color: var(--green-deep);
}

.estimate-result-card .estimate-breakdown ul {
  color: var(--muted);
}

.estimate-reference {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.45rem 0.6rem;
  background: var(--white);
  color: var(--green-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 700;
}

.submission-success {
  text-align: left;
}

.submission-success[hidden] {
  display: none;
}

.submission-success__mark {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 1.7rem;
  place-items: center;
}

.submission-success h2 {
  max-width: 15ch;
  margin-top: 1.3rem;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
}

.submission-success p {
  max-width: 45rem;
  margin-top: 1rem;
  color: var(--muted);
}

.upload-note {
  padding: 1rem;
  border: 1px dashed rgba(10, 15, 13, 0.28);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.75rem;
}

/* Contact */
.contact-enquiry {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: 1px;
}

.contact-enquiry__intro {
  display: flex;
  min-height: 43rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--green-deep);
  color: var(--white);
}

.contact-enquiry__intro h2 {
  max-width: 10ch;
  margin-top: 1rem;
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: 0.94;
}

.contact-enquiry__intro > div:first-child > p:last-child {
  max-width: 31rem;
  margin-top: 1.25rem;
  color: var(--muted-light);
}

.contact-enquiry__paths {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.contact-enquiry__paths > div {
  display: grid;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: minmax(8rem, 0.75fr) minmax(0, 1fr);
  gap: 1rem;
}

.contact-enquiry__paths span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-enquiry__paths a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-enquiry__paths a svg {
  width: 1rem;
  height: 1rem;
  flex: none;
}

.contact-enquiry__paths a:hover {
  color: var(--mint);
}

.contact-form-panel {
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--white);
}

.contact-form h2,
.contact-form__success h2 {
  max-width: 14ch;
  margin-top: 0.75rem;
  font-size: clamp(2.6rem, 4.5vw, 4.75rem);
  line-height: 0.95;
}

.contact-form__intro,
.contact-form__success > p:not(.eyebrow) {
  max-width: 42rem;
  margin-top: 1rem;
  color: var(--muted);
}

.contact-form .field-grid {
  margin-top: 2rem;
}

.contact-form .field textarea {
  min-height: 10rem;
}

.contact-consent {
  margin-top: 0.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.contact-consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.contact-consent input {
  width: 1.1rem;
  height: 1.1rem;
  min-height: 0;
  flex: none;
  margin-top: 0.16rem;
  padding: 0;
  accent-color: var(--green);
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.contact-form__actions p {
  max-width: 21rem;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
  text-align: right;
}

.contact-form__status {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-form__status:empty {
  display: none;
}

.contact-form__success {
  display: grid;
  min-height: 100%;
  align-content: center;
  padding-block: clamp(1rem, 4vw, 3rem);
}

.contact-form__success[hidden] {
  display: none;
}

.contact-form__success .button-row {
  margin-top: 2rem;
}

.contact-form__noscript {
  margin-top: 1.5rem;
  padding: 1rem;
  border-left: 3px solid var(--green);
  background: var(--paper);
  color: var(--muted);
}

.contact-form__noscript a {
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

#contact-enquiry + .section--paper {
  padding-top: 0;
}

.contact-grid {
  display: grid;
  border: 1px solid var(--ink);
  background: var(--ink);
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1px;
}

.contact-panel {
  display: flex;
  min-height: 38rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--ink);
  color: var(--white);
}

.contact-panel h2 {
  max-width: 12ch;
  margin-top: 1rem;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.94;
}

.contact-list {
  display: grid;
  margin-top: 2rem;
  border-top: 1px solid var(--line-light);
}

.contact-list a,
.contact-list div {
  display: grid;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
}

.contact-list span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list strong {
  font-weight: 400;
}

.contact-map {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  background: var(--paper-deep);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 38rem;
  border: 0;
  filter: grayscale(1) contrast(0.93);
}

.contact-map__card {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(7, 17, 12, 0.16);
}

.contact-map__card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.contact-map__card span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.72rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer__top {
  display: grid;
  padding-block: clamp(4.5rem, 8vw, 8rem);
  grid-template-columns: 1.25fr repeat(3, 0.55fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.footer__brand {
  max-width: 27rem;
}

.footer__logo-panel {
  display: inline-flex;
  width: min(100%, 18rem);
  padding: 1rem 1.1rem;
  border-radius: 0.6rem;
  background: var(--paper);
}

.footer__brand p {
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.58);
}

.footer__column h2 {
  color: var(--mint);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__column ul {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.footer__column a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer__column a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__bottom a:hover {
  color: var(--white);
}

.mobile-quote-dock {
  position: fixed;
  z-index: 120;
  right: 0.8rem;
  bottom: calc(0.8rem + env(safe-area-inset-bottom));
  left: 0.8rem;
  display: none;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(7, 17, 12, 0.2);
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}

.mobile-quote-dock.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}

.mobile-quote-dock .button {
  width: 100%;
}

/* Reveal motion */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

/* Responsive */
@media (min-width: 1121px) {
  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero__grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: clamp(1.5rem, 3.5vw, 2.5rem);
  }

  .hero__detail {
    display: grid;
    max-width: 34rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-enquiry {
    grid-template-columns: 1fr;
  }

  .contact-enquiry__intro {
    min-height: auto;
  }

  .editorial-grid__title {
    grid-column: 1 / span 8;
  }

  .editorial-grid__copy {
    grid-column: 9 / -1;
  }

  .work-card {
    grid-column: span 6;
  }

  .work-card--wide {
    grid-column: span 12;
  }

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

  .estimate-layout {
    grid-template-columns: 1fr;
  }

  .estimate-summary {
    position: relative;
    top: auto;
    grid-row: 1;
  }

  .estimate-summary__body {
    display: grid;
    align-items: start;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer__top {
    grid-template-columns: 1.1fr repeat(2, 0.7fr);
  }

  .footer__column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --section: 4.5rem;
  }

  .site-header {
    padding: 0.7rem 0.7rem 0;
  }

  .nav-shell {
    min-height: 4.25rem;
    padding: 0.55rem 0.55rem 0.55rem 1.1rem;
  }

  .brand-mark {
    width: 9.3rem;
  }

  .nav-cta {
    display: none;
  }

  .hero__content {
    padding-top: 8.5rem;
    padding-bottom: 3rem;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.35rem, 8.8vw, 6rem);
    line-height: 0.88;
  }

  .hero--page h1 {
    max-width: 12ch;
    font-size: clamp(3.35rem, 7.5vw, 6rem);
  }

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

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

  .proof-rail__item,
  .proof-rail__item:first-child {
    min-height: 6.3rem;
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .proof-rail__item:nth-child(2n) {
    border-right: 0;
  }

  .proof-rail__item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section-head,
  .editorial-grid {
    display: block;
  }

  .editorial-grid__copy {
    margin-top: 2rem;
  }

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

  .audience-grid,
  .split,
  .contact-grid,
  .contact-enquiry {
    grid-template-columns: 1fr;
  }

  .contact-enquiry__intro {
    min-height: auto;
  }

  .audience-card {
    min-height: 33rem;
  }

  .audience-card + .audience-card {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .service-card,
  .service-card--wide {
    min-height: 32rem;
    grid-column: span 12;
  }

  .split__media {
    min-height: 28rem;
  }

  .split__content {
    padding: var(--section) var(--gutter);
  }

  .work-card,
  .work-card--wide {
    min-height: 38rem;
    grid-column: span 12;
  }

  .work-card--tall {
    min-height: 48rem;
  }

  .project-dialog__grid {
    overflow-y: auto;
    grid-template-columns: 1fr;
  }

  .project-dialog__media {
    min-height: 56svh;
  }

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

  .accreditation-band {
    grid-template-columns: 1fr;
  }

  .cta-band__grid {
    grid-template-columns: 1fr;
  }

  .choice-grid--three,
  .field-grid--three {
    grid-template-columns: 1fr 1fr;
  }

  .estimate-progress__step {
    overflow: hidden;
    min-height: 0.35rem;
    padding: 0;
    border-right: 2px solid var(--white);
    color: transparent;
    font-size: 0;
  }

  .estimate-progress__step[aria-current="step"],
  .estimate-progress__step.is-complete {
    background: var(--green);
  }

  .estimate-progress__step.is-complete::after {
    display: none;
  }

  .contact-panel,
  .contact-map,
  .contact-map iframe {
    min-height: 34rem;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__column:last-child {
    grid-column: auto;
  }

  .mobile-quote-dock {
    display: block;
  }

  body[data-route$="/quote/"] .mobile-quote-dock,
  body[data-route$="/contact/"] .mobile-quote-dock {
    display: none;
  }

  .site-footer {
    padding-bottom: 5.4rem;
  }
}

@media (max-width: 560px) {
  .button-row,
  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 92svh;
  }

  .hero--page,
  .hero--graphic {
    min-height: 72svh;
  }

  .hero--graphic::before {
    top: 20%;
    right: -50%;
    width: 20rem;
    height: 20rem;
  }

  .hero__media::after {
    background: linear-gradient(180deg, rgba(5, 12, 8, 0.2) 18%, rgba(5, 12, 8, 0.87) 78%, rgba(5, 12, 8, 0.94) 100%);
  }

  .hero__media img {
    object-position: 58% center;
  }

  .metric-grid,
  .process-grid,
  .capability-grid,
  .choice-grid,
  .choice-grid--three,
  .field-grid,
  .field-grid--three,
  .estimate-summary__body,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 10rem;
  }

  .audience-card {
    min-height: 30rem;
    padding: 1.6rem;
  }

  .service-card,
  .service-card--wide {
    min-height: 28rem;
  }

  .service-card__body {
    padding: 1.4rem;
  }

  .service-card__arrow {
    width: 3rem;
    height: 3rem;
  }

  .split__media {
    min-height: 75vw;
  }

  .work-card,
  .work-card--wide {
    min-height: 118vw;
  }

  .work-card--tall {
    min-height: 140vw;
  }

  .project-dialog {
    width: 100vw;
    max-height: 100svh;
  }

  .project-dialog__grid {
    max-height: 100svh;
  }

  .project-dialog__media {
    min-height: 58svh;
  }

  .estimate-panel {
    padding: 1.35rem;
  }

  .choice-card {
    min-height: 7.6rem;
  }

  .panel-row {
    padding: 1rem;
  }

  .estimate-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

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

  .estimate-back {
    min-height: 2.75rem;
  }

  .contact-list a,
  .contact-list div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .contact-enquiry__intro,
  .contact-form-panel {
    padding: 1.5rem;
  }

  .contact-enquiry__paths > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .contact-form__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form__actions .button {
    width: 100%;
  }

  .contact-form__actions p {
    max-width: none;
    text-align: left;
  }

  .contact-map__card {
    align-items: stretch;
    flex-direction: column;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
