/* Shared design tokens. Keep primitive values in sync with docs/DESIGN.md. */
:root {
  --petrol: #004553;
  --action: #FFE56A;
  --action-hover: #FFE875;
  --action-active: #ebd05b;
  --ink: #182c32;
  --teal: #195362;
  --white: #ffffff;
  --muted: #405b61;
  --mist: #f1f5f4;
  --mist-deep: #e4ebe8;
  --line: #c6d6d3;
  --row-line: #d7e1de;
  --input-border: #9fb8b3;
  --input-hover: #8da9a5;
  --connector: #8aa6a6;
  --advantage-ink: #12343d;
  --advantage-muted: #244650;
  --footer-muted: #c1d7db;
  --marker-yellow: #FFF06A;
  --marker-blue: #8ec9dd;
  --marker-lavender: #cdb1e7;
  --send-light: #fff0a3;
  --send-dark: #efcf52;
  --error: #a12622;
  --success: #278044;
  --service-household: #f2ecf0;
  --service-mobility: #cee5f1;
  --service-social: #e5d9cd;
  --service-memory: #dad8d5;
  --service-organization: #dbd8e0;
  --service-digital: #d9dfe3;
  --image-placeholder: #f1f2ef;
  --font-family: Figtree, sans-serif;
  --type-body: 1.1875rem;
  --type-body-compact: 1.125rem;
  --type-support: 1rem;
  --type-metadata: .9375rem;
  --type-label: 1.0625rem;
  --type-large: 1.25rem;
  --radius-control: 3px;
  --radius-surface: 14px;
  --radius-billing: 12px;
  --space: clamp(48px, 5.6vw, 88px);
  --section-gap: 80px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --duration-action: .22s;
  --duration-field: .18s;
  --duration-send: .16s;
  --duration-pressed: .06s;
  --soft-section-background: linear-gradient(180deg, var(--mist) 0%, var(--mist-deep) 100%);
  --shadow-hero: inset 0 -28px 32px -24px #071f2bb3;
  --shadow-footer: inset 0 9px 12px -10px #001f2966;
  --shadow-action-hover: 0 0 14px #FFE56A26, 0 3px 28px #FFE56A1F;
  --shadow-action-active: 0 0 8px #FFE56A1A;
  --shadow-send: 0 2px 8px rgb(24 44 50 / 8%);
  --shadow-send-hover: 0 4px 12px rgb(89 65 12 / 14%);
  --shadow-send-active: 0 1px 2px rgb(89 65 12 / 12%);
  --hero-overlay: linear-gradient(90deg, var(--petrol) 0%, var(--petrol) 23%, #004553f5 34%, #004553d9 43%, #00455399 51%, #00455326 63%, #00455300 76%);
  --send-background: linear-gradient(180deg, var(--send-light) 0%, var(--action) 48%, var(--send-dark) 100%);
  --logo-filter: brightness(0) saturate(100%) invert(83%) sepia(22%) saturate(393%) hue-rotate(104deg) brightness(93%) contrast(88%);
}

@font-face { font-family: Figtree; src: url("../assets/fonts/figtree-latin.ttf") format("truetype"); font-weight: 300 900; font-style: normal; font-display: swap; }
@font-face { font-family: Figtree; src: url("../assets/fonts/figtree-italic-latin.ttf") format("truetype"); font-weight: 300 900; font-style: italic; font-display: swap; }
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0px;
  min-width: 0px;
  color: var(--ink);
  font: 400 var(--type-body) / 1.6 var(--font-family);
  -webkit-font-smoothing: antialiased;
  background: var(--white);
}
a {
  color: inherit;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
a:hover {
  text-decoration-thickness: 2px;
}
svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.5;
  flex: 0 0 auto;
}
h1 {
  margin: 0px;
  text-wrap: balance;
  font-weight: 500;
  line-height: 1.075;
  letter-spacing: -0.035em;
}
h2 {
  margin: 0px;
  text-wrap: balance;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
h3 {
  margin: 0px;
  text-wrap: balance;
  font-size: 1.625rem;
  font-weight: 550;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
p {
  margin: 0px;
  max-width: 72ch;
}
p + p {
  margin-top: 20px;
}
em {
  font-style: normal;
}
ul,
ol {
  margin: 0px;
  padding: 0px;
}

/* Keep backgrounds edge-to-edge while protecting content on notched screens.
   Use equal gutters so rotating the phone preserves centered alignment. */
:root {
  --safe-inline: max(env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
}

/* Shared shell and header */
.shell {
  width: calc(100% - max(var(--space), var(--safe-inline))*2);
  max-width: 1312px;
  margin-inline: auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  height: 96px;
  border-bottom: 0px;
}
.logo {
  width: 268px;
  height: auto;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.2vw, 34px);
}
nav a {
  font-size: var(--type-label);
  font-weight: 500;
  text-decoration: none;
  padding-block: 14px;
}
nav a:hover {
  color: var(--teal);
  text-decoration: underline;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--petrol);
  color: var(--white);
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 688px;
  padding-block: 64px;
  display: flex;
  align-items: center;
}
.hero-intro {
  margin-top: 27px;
  color: var(--white);
  max-width: 550px;
  margin: 24px 0px 0px;
  font-size: var(--type-body);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  align-items: center;
  margin-top: 32px;
  gap: 30px;
  justify-content: flex-start;
}

/* Actions and fields */
.button {
  min-height: 58px;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font: 550 var(--type-label) / 1.4 var(--font-family);
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--duration-action) var(--ease),color var(--duration-action) var(--ease);
}
.recognition {
  display: flex;
  align-items: center;
}
.section {
  padding-block: 100px;
  scroll-margin-top: 28px;
}
.section h2 {
  max-width: 850px;
  margin-bottom: 47px;
}
.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.advantage-grid h3 {
  margin-bottom: 17px;
  font-size: 1.5625rem;
  line-height: 1.28;
  max-width: 400px;
  margin: 0px 0px 14px;
  text-wrap: pretty;
}
.services {
  background: var(--white);
  --services-heading-gap: 48px;
  --services-close-gap: 56px;
  padding-bottom: 64px;
  padding-block: 64px 0px;
}
.services h2 {
  max-width: 620px;
  margin: 0px auto 50px;
  text-align: center;
  margin-bottom: var(--services-heading-gap);
  font-size: 2.25rem;
  line-height: 1.22;
  letter-spacing: -0.025em;
  font-weight: 500;
  -webkit-hyphens: manual;
  hyphens: manual;
  overflow-wrap: anywhere;
}

/* Services */
.service-grid {
  list-style: none;
  display: grid;
}

/* Funding */
.funding {
  position: relative;
  overflow: hidden;
  padding: 48px 0px;
  background: var(--white);
  color: var(--ink);
  --funding-frame-inset: 33px;
  --funding-copy-width: 980px;
  padding-block: var(--section-gap) 0;
}
.funding .shell {
  display: block;
  max-width: 1200px;
}

/* Mission */
.mission blockquote {
  position: relative;
}
.mission blockquote p {
  font-weight: 400;
}
.steps {
  background: var(--white);
}

/* Enquiry foundations */
.steps ol {
  list-style: none;
}
.steps li {
  position: relative;
  color: var(--muted);
}
.steps strong {
  display: block;
  color: var(--ink);
  font-weight: 550;
}
.contact {
  position: relative;
  isolation: isolate;
}
.fields {
  display: grid;
}
.fields label {
  font-weight: 550;
  display: grid;
}
input {
  width: 100%;
  height: 62px;
  padding: 14px 17px;
  border: 1px solid var(--input-border);
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--ink);
  font: 400 var(--type-large) var(--font-family);
  caret-color: var(--teal);
}
input:hover {
  border-color: var(--teal);
}
.contact button {
  width: 100%;
}
.privacy {
  color: var(--muted);
}
.privacy a:hover {
  color: var(--teal);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-contact a {
  text-decoration: none;
  font-weight: 500;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: var(--footer-detail-size);
  font-weight: 500;
  line-height: 1.5;
}
.footer-links a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
}
.footer-links a:hover {
  text-decoration: underline;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  ::before,
  ::after {
    animation: auto ease 0s 1 normal none running none !important;
    transition: none !important;
  }
}
.button.primary {
  background: var(--action);
  color: var(--ink);
  transition: background-color var(--duration-action) var(--ease),color var(--duration-action) var(--ease),box-shadow var(--duration-action) var(--ease);
}
@media (hover: hover) {
  .button.primary:hover {
    box-shadow: var(--shadow-action-hover);
  }
}
.button.primary:active {
  background: var(--action-active);
  box-shadow: var(--shadow-action-active);
}
.contact input {
  color: var(--ink);
  background: var(--white);
}
.contact .privacy a:hover {
  color: inherit;
}
.mission {
  background: var(--white);
}
.contact .privacy {
  color: var(--white);
}
.site-header {
  background: var(--petrol);
  color: var(--white);
}
.site-header nav a {
  color: var(--white);
}
.site-header nav a:hover {
  color: var(--action);
}
.hero .recognition {
  margin-inline: auto;
  justify-content: flex-start;
  margin: 20px 0px 0px;
  gap: 12px;
  font-size: var(--type-support);
  font-weight: 450;
  line-height: 1.6;
}
.site-header .logo {
  width: 236px;
  padding: 0px;
  background: transparent;
  border-radius: 0px;
  filter: var(--logo-filter);
}
.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 14px;
  color: var(--white);
  font-size: var(--type-label);
  font-weight: 550;
  text-decoration: underline 1px;
  text-underline-offset: 5px;
}
.hero-secondary-link:hover {
  color: var(--action);
  text-decoration-thickness: 2px;
}

/* Hero photograph and markers */
.hero-photo {
  position: absolute;
  inset: 0px 0px 0px auto;
  width: 80%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  z-index: -2;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0px;
  z-index: -1;
  background: var(--hero-overlay);
  pointer-events: none;
}
.hero-copy {
  width: 52%;
  max-width: 680px;
  margin-inline: 0px;
  text-align: left;
}
.hero h1 {
  font-size: clamp(3rem, 3.5vw, 3.5rem);
  max-width: 680px;
  margin-inline: 0px;
  text-wrap: balance;
}
.hero-service-emphasis {
  position: relative;
  display: inline;
  isolation: isolate;
  white-space: nowrap;
  font-style: italic;
  font-weight: 600;
}
.hero-service-emphasis::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.035em;
  right: -0.055em;
  bottom: 0px;
  height: 0.13em;
  background: var(--marker-yellow);
  transform: rotate(-0.8deg);
  clip-path: polygon(0px 20%, 5% 10%, 25% 15%, 47% 5%, 72% 10%, 94% 0px, 100% 13%, 99% 79%, 94% 93%, 70% 86%, 46% 100%, 22% 89%, 3% 97%);
  pointer-events: none;
}

/* Advantages */
.advantages {
  background: var(--soft-section-background);
  color: var(--advantage-ink);
  padding-block: 64px;
  position: relative;
  isolation: isolate;
}
.advantages .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0px;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0px;
}
.advantage-grid article {
  display: grid;
  grid-template-columns: 108px minmax(0px, 1fr);
  gap: 24px;
  align-items: start;
  max-width: none;
}
.advantage-illustration {
  display: block;
  width: 108px;
  height: 108px;
  object-fit: contain;
}
.advantage-grid p {
  font-size: var(--type-body-compact);
  line-height: 1.6;
  color: var(--advantage-muted);
  text-wrap: pretty;
}
@media (min-width: 1500px) {
  .advantage-grid article {
    grid-template-columns: 120px minmax(0px, 1fr);
    gap: 28px;
  }
  .advantage-illustration {
    width: 120px;
    height: 120px;
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0px;
  z-index: 0;
  box-shadow: var(--shadow-hero);
  pointer-events: none;
}
.services > .shell {
  max-width: 1200px;
}
.services .service-grid {
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  gap: 40px 28px;
}
.services .service-grid > li {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  row-gap: 0px;
  padding: 0px;
  border: 0px;
  min-width: 0px;
}
.services .service-copy {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  row-gap: 0px;
  min-width: 0px;
  padding: 24px 4px 0px;
}
.services .service-grid h3 {
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 12px;
  text-wrap: pretty;
  -webkit-hyphens: manual;
  hyphens: manual;
  overflow-wrap: anywhere;
}
.service-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-surface);
  box-shadow: none;
  background: var(--image-placeholder);
}

/* Service invitation */
.service-close {
  margin: var(--services-close-gap) auto 0;
  padding-top: 32px;
  display: grid;
  grid-template-columns: 260px minmax(0px, 1fr);
  column-gap: 40px;
  background: var(--mist);
  border-top: 0px;
  width: min(100%, 1040px);
  padding: 32px 40px 0px;
  border-radius: var(--radius-surface);
  overflow: hidden;
  align-items: stretch;
}
.service-close-portrait {
  display: block;
  width: 100%;
  height: auto;
  align-self: end;
}
.service-close-copy {
  min-width: 0px;
  padding-bottom: 32px;
  align-self: center;
}
.service-close-copy h3 {
  max-width: 48ch;
  margin-bottom: 16px;
  text-wrap: pretty;
}
.service-close-copy > p {
  font-size: var(--type-body-compact);
  line-height: 1.65;
  color: var(--muted);
  max-width: 72ch;
}
.service-close-action {
  justify-items: start;
  text-align: left;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.service-close-action p + p {
  margin-top: 0px;
  color: var(--muted);
  white-space: nowrap;
  font-size: var(--type-support);
  line-height: 1.5;
}
.service-close-action .button {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}
.enquiry .contact .button.primary {
  border: 0px;
  padding: 17px 25px;
  background: var(--send-background);
  color: var(--ink);
  transform: translateY(0px);
  box-shadow: var(--shadow-send);
  transition: box-shadow var(--duration-send) var(--ease),transform var(--duration-send) var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .enquiry .contact .button.primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: var(--shadow-send-hover);
  }
}
.enquiry .contact .button.primary:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow: var(--shadow-send-active);
  transition-duration: var(--duration-pressed);
}
.enquiry .contact .button.primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
@media (prefers-reduced-motion: reduce) {
  .enquiry .contact .button.primary {
    transform: none !important;
  }
}
@media (max-width: 1150px) {
  .services .service-grid {
    gap: 36px 24px;
  }
  .services .service-grid h3 {
    font-size: 1.375rem;
  }
  .services .service-close {
    grid-template-columns: 220px minmax(0px, 1fr);
    column-gap: 32px;
  }
}
.service-close-action p {
  margin: 0px;
}
.funding .funding-intro {
  margin: auto;
  width: calc(100% - 2 * var(--funding-frame-inset));
  max-width: var(--funding-copy-width);
}
.funding h2 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.025em;
  max-width: none;
  margin: 0px;
  text-wrap: balance;
  grid-row: auto;
}
.funding .shell > .funding-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--type-support);
  line-height: 1.6;
  color: var(--muted);
  margin: 32px auto 0px;
  margin-top: 40px;
  width: calc(100% - 2 * var(--funding-frame-inset));
  max-width: var(--funding-copy-width);
}
.funding .law {
  display: block;
  font-size: var(--type-support);
  font-weight: 400;
  letter-spacing: 0px;
  color: var(--muted);
  margin-top: 4px;
}
.funding dt {
  font-size: 1.3125rem;
  line-height: 1.3;
  font-weight: 550;
  letter-spacing: -0.015em;
}
.funding p {
  color: var(--muted);
}
.funding-rows {
  margin: 32px auto 0px;
  max-width: 980px;
}
.funding-rows > div {
  display: grid;
  grid-template-columns: 310px minmax(0px, 1fr);
  gap: 36px;
  align-items: start;
  padding: 24px 0px;
}
.funding-rows > div + div {
  border-top: 1px solid var(--row-line);
}
.funding-rows > div:first-child {
  padding-top: 0px;
}
.funding-rows > div:last-child {
  padding-bottom: 0px;
}
.funding-rows dd {
  margin: 0px;
  font-size: var(--type-body-compact);
  line-height: 1.6;
  color: var(--muted);
}

/* Direct billing */
.funding .billing {
  display: grid;
  grid-template-columns: 310px minmax(0px, 1fr);
  gap: 36px;
  max-width: 1046px;
  margin: 48px auto 0px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-billing);
  scroll-margin-top: 28px;
}
.billing h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 290px;
  margin: 0px;
}
.billing ol {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  list-style: none;
}
.billing li {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0px, 1fr);
  gap: 18px;
  align-items: center;
  font-size: var(--type-body-compact);
  line-height: 1.6;
  color: var(--muted);
}
.billing li::before,
.billing li::after {
  content: "";
  position: absolute;
  left: 23.5px;
  width: 1px;
  background: var(--connector);
  z-index: -1;
}
.billing li:not(:first-child)::before {
  top: 0px;
  bottom: 50%;
}
.billing li:not(:last-child)::after {
  top: 50%;
  bottom: -22px;
}
.billing-number {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.funding-note .funding-info {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--teal);
}
.billing-plane {
  display: block;
  width: 180px;
  height: auto;
  margin: 8px 0px 0px;
}
.mission.about-approved .shell {
  max-width: 1200px;
}
.mission.about-approved .about-main {
  display: grid;
  grid-template-columns: minmax(0px, 32%) minmax(0px, 1fr);
  align-items: start;
  column-gap: clamp(32px, 4.44444vw, 64px);
}
.mission.about-approved .about-copy {
  min-width: 0px;
  grid-column: 2;
}
.mission.about-approved h2 {
  font-size: 2.25rem;
  line-height: 1.22;
  letter-spacing: -0.025em;
  font-weight: 500;
  max-width: none;
  margin-bottom: 48px;
  text-align: center;
  overflow-wrap: anywhere;
  -webkit-hyphens: auto;
  hyphens: auto;
  hyphenate-limit-chars: 10 4 4;
}
.mission.about-approved .about-copy p {
  font-size: var(--type-body);
  line-height: 1.6;
}
.mission.about-approved blockquote {
  margin: 24px 0px 16px;
  padding: 2px 0px 2px 20px;
  border-left: 1px solid var(--line);
  max-width: none;
}
.mission.about-approved .about-copy blockquote p {
  font-size: 1.3125rem;
  line-height: 1.6;
  font-style: italic;
  letter-spacing: normal;
  color: var(--teal);
  max-width: 62ch;
  text-wrap: balance;
}
.mission.about-approved .local-photo {
  grid-row: 1 / 3;
  margin: -16px 0px 0px;
  aspect-ratio: 3 / 4;
  overflow: visible;
}
.mission.about-approved .local-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center center;
  border-radius: 0px;
  transform: translateY(-1%) scale(1.1);
  transform-origin: center center;
}
.mission.about-approved .qualifications {
  grid-column: 2;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 24px;
  margin-top: clamp(28px, 2.77778vw, 40px);
  padding: 0px;
  border: 0px;
}
.mission.about-approved .qualifications li {
  display: grid;
  grid-template-columns: 36px minmax(0px, 1fr);
  gap: 12px;
  align-items: start;
  padding: 0px;
  font-size: var(--type-support);
  line-height: 1.5;
}
.mission.about-approved .qualifications li::before {
  display: none;
}
.mission.about-approved .qualifications img {
  display: block;
  width: 36px;
  height: 36px;
}
.mission.about-approved .qualifications li > span {
  padding-top: 4px;
  -webkit-hyphens: auto;
  hyphens: auto;
  hyphenate-limit-chars: 10 4 4;
  overflow-wrap: anywhere;
}
.mission.about-approved .qualifications li:last-child {
  grid-column: 1 / -1;
}
.mission-marker {
  position: relative;
  display: inline-block;
  isolation: isolate;
  white-space: nowrap;
}
.mission-marker::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.06em;
  right: -0.055em;
  bottom: 0.075em;
  height: 0.3em;
  transform: rotate(-0.8deg);
  clip-path: polygon(0px 20%, 5% 10%, 25% 15%, 47% 5%, 72% 10%, 94% 0px, 100% 13%, 99% 79%, 94% 93%, 70% 86%, 46% 100%, 22% 89%, 3% 97%);
  pointer-events: none;
}

/* Enquiry */
.enquiry {
  position: relative;
  isolation: isolate;
  background: var(--white);
  overflow: hidden;
  padding-block: var(--section-gap);
}
.enquiry-grid {
  --enquiry-inset: clamp(32px,2.78vw,40px);
  position: relative;
  isolation: isolate;
  background: var(--white);
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(0px, 0.48fr) minmax(0px, 0.52fr);
  gap: clamp(40px, 4.44vw, 64px);
  align-items: stretch;
}
.enquiry .steps {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-width: 0px;
  background: transparent;
  padding: var(--enquiry-inset) 0;
  scroll-margin-top: 40px;
}
.enquiry h2 {
  font-size: 2.25rem;
  line-height: 1.15;
  max-width: none;
}
.enquiry .steps h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 40px;
  max-width: 440px;
}
.enquiry .steps ol {
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
  gap: 32px;
}
.enquiry .steps li {
  flex: 1 1 0%;
  padding: 0px 0px 0px 66px;
  font-size: var(--type-body-compact);
  line-height: 1.6;
  text-wrap: pretty;
}
.enquiry .steps li:last-child {
  flex: 0 1 0%;
}
.enquiry-step-number {
  position: absolute;
  left: 0px;
  top: -4px;
  z-index: 1;
  border-radius: 50%;
}
.enquiry .steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 23.5px;
  top: 44px;
  bottom: -28px;
  width: 1px;
  background: var(--connector);
  pointer-events: none;
}
.enquiry .steps strong {
  font-size: 1.375rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  text-wrap: balance;
}
.enquiry .contact {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0px;
  max-width: none;
  margin: 0px;
  padding: var(--enquiry-inset);
  background: var(--mist);
  color: var(--ink);
  border-radius: 0px;
  scroll-margin-top: 40px;
}
.enquiry .contact .privacy {
  color: var(--muted);
}
.enquiry .contact input {
  transition: border-color var(--duration-field) var(--ease),box-shadow var(--duration-field) var(--ease);
}
.enquiry .contact input:hover {
  border-color: var(--input-hover);
}
.enquiry .contact h2 {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.enquiry .contact h2 em {
  font-weight: 600;
}
.enquiry-marker-free::before {
  background: var(--marker-blue);
}
.enquiry-marker-unbound::before {
  background: var(--marker-lavender);
  transform: rotate(0.6deg);
}
.enquiry .contact form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  gap: 0px;
}
.enquiry .fields {
  gap: 20px;
}
.enquiry .fields label {
  font-size: var(--type-body-compact);
  line-height: 1.4;
  gap: 8px;
}
.enquiry .contact button {
  margin-top: 32px;
  justify-content: center;
  text-align: center;
}
@media (hover: hover) {
  a.button.primary:hover {
    background: var(--action-hover);
  }
}
.enquiry .privacy {
  display: grid;
  grid-template-columns: 28px minmax(0px, 1fr);
  align-items: start;
  gap: 12px;
  margin-top: 20px;
  font-size: var(--type-support);
  line-height: 1.5;
  text-wrap: pretty;
}
.enquiry .privacy-icon {
  display: block;
  width: 28px;
  height: 36px;
  object-fit: contain;
  margin-top: 2px;
}

/* Footer */
.site-footer {
  --footer-contact-size: var(--type-support);
  --footer-detail-size: var(--type-metadata);
  background: var(--petrol);
  color: var(--white);
  padding-block: 24px max(24px, env(safe-area-inset-bottom, 0px));
  letter-spacing: 0.005em;
  box-shadow: var(--shadow-footer);
  container: footer / inline-size;
}
.site-footer .footer-inner {
  max-width: 1200px;
  border: 0px;
  padding: 0px;
  display: grid;
  grid-template-columns: 26px minmax(0px, 1fr);
  align-items: start;
  gap: 32px;
}
@media (max-width: 1150px) {
  .enquiry h2 {
    font-size: 2rem;
  }
  .enquiry .steps li {
    padding-left: 66px;
  }
}
.hero .recognition-icon {
  display: block;
  width: 28px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 auto;
}
.footer-brand {
  padding-top: calc(0.25rem + max(0px, 22px - 0.75rem));
}
.footer-information {
  max-width: 650px;
}
.footer-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-logo {
  display: block;
  width: 26px;
  max-width: 100%;
  height: auto;
  filter: var(--logo-filter);
}
.footer-contact p {
  font-size: var(--footer-contact-size);
  line-height: 1.5;
}
.footer-detail {
  font-variant-numeric: lining-nums tabular-nums;
}
.footer-contact p + p {
  margin-top: 4px;
}
.footer-contact .footer-detail,
.footer-whatsapp {
  font-size: var(--footer-detail-size);
  font-weight: 400;
  color: var(--footer-muted);
  line-height: 1.6;
}
.footer-bottom {
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 28px;
}
.footer-disclaimer {
  flex-basis: 100%;
  margin: 0px;
  font-size: var(--footer-detail-size);
  font-weight: 400;
  color: var(--footer-muted);
  text-wrap: pretty;
  line-height: 1.6;
}
@container footer (width <= 43.75rem) {
  .footer-contacts {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .footer-logo {
    width: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-top: 10px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 12px 24px;
  }
}
/* ResizeObserver applies these classes only without container queries. */
@supports not (container-type: inline-size) {
  :where(.cq-footer-contacts) .footer-contacts {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  :where(.cq-footer-contacts) .footer-logo {
    width: 24px;
  }
  :where(.cq-footer-contacts) .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-top: 10px;
  }
  :where(.cq-footer-contacts) .footer-links {
    flex-wrap: wrap;
    gap: 12px 24px;
  }
}

@container footer (width < 28rem) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-brand {
    padding-top: 0px;
  }
}
/* ResizeObserver applies these classes only without container queries. */
@supports not (container-type: inline-size) {
  .site-footer:where(.cq-footer-brand) .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  :where(.cq-footer-brand) .footer-brand {
    padding-top: 0px;
  }
}

@container footer (width > 62.5rem) {
  .footer-information {
    max-width: none;
    min-width: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 40px;
    align-items: start;
  }
  .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    align-items: start;
  }
  .footer-bottom {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 0 1 auto;
    margin-left: auto;
    text-align: left;
  }
  .footer-links a {
    min-height: 1.5rem;
  }
  .footer-disclaimer {
    flex-basis: auto;
  }
}
/* ResizeObserver applies these classes only without container queries. */
@supports not (container-type: inline-size) {
  :where(.cq-footer-wide) .footer-information {
    max-width: none;
    min-width: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 40px;
    align-items: start;
  }
  :where(.cq-footer-wide) .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    align-items: start;
  }
  :where(.cq-footer-wide) .footer-bottom {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 0 1 auto;
    margin-left: auto;
    text-align: left;
  }
  :where(.cq-footer-wide) .footer-links a {
    min-height: 1.5rem;
  }
  :where(.cq-footer-wide) .footer-disclaimer {
    flex-basis: auto;
  }
}

.footer-contact {
  min-width: 0px;
}
.footer-contact a[href^="tel:"] {
  white-space: nowrap;
  font-variant-numeric: normal;
  letter-spacing: normal;
}
.footer-contact a[href^="mailto:"] {
  overflow-wrap: anywhere;
}
.funding .funding-rows {
  width: calc(100% - 2 * var(--funding-frame-inset));
  max-width: var(--funding-copy-width);
}
@media (max-width: 1150px) {
  .advantage-grid {
    gap: 40px;
  }
  .advantage-grid article {
    grid-template-columns: 88px minmax(0px, 1fr);
    gap: 20px;
  }
  .advantage-illustration {
    width: 88px;
    height: 88px;
  }
}
.about-copy > p {
  text-wrap: pretty;
}
.funding-note > span {
  max-width: 72ch;
}

/* About layout */
.mission.about-approved {
  padding-block: var(--section-gap) 0;
}
.services .service-details {
  list-style: disc;
  padding-left: 1.05em;
  color: var(--muted);
  font-size: var(--type-body-compact);
  line-height: 1.6;
  align-self: start;
  -webkit-hyphens: auto;
  hyphens: auto;
  hyphenate-limit-chars: 10 4 4;
  overflow-wrap: anywhere;
}
.services .service-details > li {
  display: list-item;
  padding: 0px 0px 0px 0.15em;
  border: 0px;
  text-wrap: pretty;
}
.services .service-details > li + li {
  margin-top: 8px;
}
.services .service-details > li::marker {
  color: var(--teal);
  font-size: 0.7em;
}
.services .service-close-copy {
  -webkit-hyphens: auto;
  hyphens: auto;
  hyphenate-limit-chars: 10 4 4;
  overflow-wrap: anywhere;
}
.services .service-close-action p {
  min-width: 0px;
  max-width: 100%;
  white-space: normal;
}
.enquiry .contact [hidden] {
  display: none;
}

/* Submission feedback */
.enquiry .form-error {
  margin-top: 20px;
  color: var(--error);
  font-size: var(--type-support);
}
.enquiry .form-success {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 280px;
  text-align: center;
}
.enquiry .form-success svg {
  width: 56px;
  height: 56px;
  color: var(--success);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.enquiry .form-success p {
  font-size: var(--type-large);
  line-height: 1.6;
}

/* Picture supplies formats without introducing a layout box. */
.asset-picture { display: contents; }
/* Source nodes must not become grid items when the picture has no layout box. */
.asset-picture > source { display: none; }
/* Preserve the approved intrinsic ratio across rounded raster dimensions. */
.service-close-portrait { aspect-ratio: 600 / 549; }
