:root {
  --ink: #112b3c;
  --muted: #495f68;
  --teal: #15565d;
  --coral: #fa7954;
  --sand: #efd3a4;
  --mint: #d3ede4;
  --peach: #fff0e8;
  --line: #d5e0df;
  --wash: #f5faf7;
  --white: #fff;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 5px;
}
p {
  line-height: 1.65;
  margin: 0;
}
h1,
h2,
h3 {
  margin: 0;
  font-weight: 500;
}
h1,
h2 {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: 750;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1.07;
}
.keep-together { white-space: nowrap; }
h2 {
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1.12;
}
h3 {
  font-weight: 650;
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
em {
  font-weight: inherit;
  font-style: normal;
  color: var(--teal);
}
.container {
  max-width: 1240px;
  padding-inline: 40px;
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 24px;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 14px;
}
.skip-link:focus {
  top: 14px;
}
.site-header {
  border-bottom: 1px solid #edf0ed;
  background: #fff;
}
.header-inner {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  display: block;
  width: 220px;
  height: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
}
nav a:hover,
.text-link:hover,
.footer-inner a:hover {
  color: var(--teal);
}
.nav-contact {
  border: 1px solid var(--ink);
  border-radius: 100px;
  padding: 12px 20px;
  font-weight: 650;
}
.nav-contact span {
  margin-left: 18px;
}
.menu-toggle {
  display: none;
}
.analytics-consent {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
  display: flex;
  width: min(760px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  border: 1px solid #ffffff30;
  border-radius: 22px 22px 7px 22px;
  color: white;
  background: #112b3cf5;
  box-shadow: 0 18px 45px #112b3c40;
}
.analytics-consent strong { font-size: 15px; }
.analytics-consent p { max-width: 440px; margin-top: 5px; color: #d6e6e7; font-size: 12px; line-height: 1.5; }
.analytics-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 10px; }
.analytics-actions button { min-height: 42px; padding: 9px 13px; border: 1px solid #ffffff55; border-radius: 999px; color: white; background: transparent; font: inherit; font-size: 12px; font-weight: 750; cursor: pointer; }
.analytics-actions .analytics-allow { color: var(--ink); border-color: var(--coral); background: var(--coral); }
.analytics-actions a { color: white; font-size: 11px; text-decoration: underline; text-underline-offset: 3px; }
.hero {
  padding-block: 80px 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 1fr);
  gap: 64px;
  align-items: center;
}
.hero-copy > p {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin-top: 30px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid transparent;
  background: var(--coral);
  color: var(--ink);
  padding: 17px 22px;
  border-radius: 100px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  box-shadow: 0 5px 0 #112b3c;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover {
  background: #ff926f;
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #112b3c;
}
.button:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #112b3c;
}
.text-link {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.hero-note {
  position: relative;
  background: var(--peach);
  border: 1px solid #f5cfbb;
  border-radius: 72px 24px 72px 24px;
  padding: 34px;
  box-shadow: 12px 12px 0 var(--sand);
}
.connection-shapes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  width: 100%;
  height: 82px;
  margin-bottom: 30px;
}
.connection-shapes span {
  background: var(--teal);
  border-radius: 40px 40px 8px 40px;
  transition: transform 220ms ease;
}
.connection-shapes span:nth-child(2) {
  background: var(--coral);
  border-radius: 40px 8px 40px 8px;
  transform: translateY(10px);
}
.connection-shapes span:nth-child(3) {
  background: var(--sand);
  border-radius: 8px 40px 8px 40px;
}
.connection-shapes span:nth-child(4) {
  background: var(--ink);
  border-radius: 40px 8px 40px 40px;
  transform: translateY(10px);
}
.hero-note:hover .connection-shapes span:nth-child(even) {
  transform: translateY(0);
}
.note-label {
  display: block;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-note p {
  font-size: 17px;
  line-height: 1.55;
  margin-top: 15px;
}
.hero-note > p:first-of-type {
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.hero-note p + p {
  color: var(--muted);
}
.note-end {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 28px;
  border-top: 1px solid #dcbda9;
  padding-top: 18px;
}
.business-band {
  background: var(--teal);
  color: white;
}
.business-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-block: 30px;
}
.business-inner p {
  font-size: 14px;
  line-height: 1.5;
  flex: 0 0 215px;
}
.business-inner strong {
  font-weight: 600;
}
.business-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex: 1;
  color: #e5f6ef;
  font-size: 14px;
}
.business-inner li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 9px;
  background: var(--coral);
}
.business-inner li:nth-child(2)::before { background: var(--sand); }
.business-inner li:nth-child(3)::before { background: var(--mint); }
.business-inner a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-block: 8px;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}
.business-inner a:hover { color: white; border-color: currentColor; }
.business-inner a span { font-size: 11px; }
.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0 70px;
  margin-bottom: 55px;
  align-items: end;
}
.section-heading .eyebrow {
  grid-column: 1/-1;
}
.section-heading > p:last-child {
  color: var(--muted);
  max-width: 390px;
  font-size: 17px;
}
.service-row {
  border: 1px solid #efdbd0;
  border-radius: 24px;
  background: var(--peach);
  display: grid;
  grid-template-columns: 60px 1fr 1.2fr;
  gap: 30px;
  padding: 34px;
  margin-bottom: 18px;
}
.number {
  font-size: 12px;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
  line-height: 2.2;
}
.tier-label {
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  color: var(--ink);
  border-bottom: 3px solid var(--coral);
  align-self: start;
}
.service-name {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0;
  color: var(--muted);
}
.service-row > div {
  font-size: 15px;
  color: var(--muted);
}
.service-row ul {
  padding-left: 18px;
  margin: 14px 0 0;
  line-height: 1.9;
}
.service-row li::marker {
  color: var(--teal);
}
.additional {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 14px;
  color: var(--muted);
}
.work-section {
  background: var(--ink);
  color: white;
  padding-block: 94px;
  border-top: 8px solid var(--coral);
}
.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
}
.work-section .eyebrow,
.work-section em {
  color: var(--sand);
}
.work-intro {
  color: #d0dedc;
  font-size: 17px;
  max-width: 380px;
  margin-block: 28px;
}
.light-link {
  font-size: 14px;
  display: inline-block;
  border-bottom: 1px solid #8daea7;
  padding-bottom: 7px;
}
.light-link span {
  margin-left: 20px;
}
.work-details > div + div {
  border-top: 1px solid #426067;
  margin-top: 26px;
  padding-top: 26px;
}
.work-details h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--coral);
}
.work-details > div:nth-child(2) h3 { color: var(--sand); }
.work-details > div:nth-child(3) h3 { color: var(--mint); }
.work-details p {
  color: #d0dedc;
  font-size: 15px;
}
.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}
.additional-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.example-grid article {
  border-left: 5px solid var(--coral);
  padding: 4px 0 4px 28px;
}
.example-grid article:nth-child(2) { border-color: var(--teal); }
.example-context {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 22px;
}
.example-grid h3 {
  font-size: 25px;
  margin-bottom: 18px;
}
.example-grid article > p:last-child {
  font-size: 15px;
  color: var(--muted);
}
.start-section {
  background: var(--teal);
  color: white;
}
.start-section .eyebrow { color: var(--sand); }
.start-section .section-heading > p:last-child,
.start-section .steps p { color: #e0efeb; }
.start-section .text-link:hover { color: var(--sand); }
.steps {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.steps li {
  border-top: 1px solid #59858a;
  padding-top: 20px;
}
.steps .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--ink);
  background: var(--coral);
  border-radius: 18px 18px 18px 4px;
  font-size: 18px;
  font-weight: 700;
}
.steps li:nth-child(2) .number { background: var(--sand); border-radius: 50%; }
.steps li:nth-child(3) .number { background: var(--mint); border-radius: 18px 4px 18px 18px; }
.steps h3 {
  font-size: 21px;
  margin-block: 17px 14px;
}
.steps p {
  font-size: 15px;
  color: var(--muted);
}
.start-next {
  margin-top: 35px;
}
.pilot-section {
  border-bottom: 1px solid var(--line);
}
.pilot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 75px;
  align-items: start;
}
.pilot-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pilot-timeline li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-block: 25px;
}
.pilot-date {
  font-size: 13px;
  line-height: 1.9;
  color: var(--teal);
  font-weight: 700;
}
.pilot-timeline h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.pilot-timeline p,
.pilot-report > p:not(.eyebrow),
.pilot-report ul {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.pilot-report {
  background: #fff2d8;
  border-top: 6px solid var(--sand);
  border-radius: 8px 8px 36px 8px;
  padding: 32px;
}
.pilot-report h3 {
  font-size: 28px;
  margin-bottom: 18px;
}
.pilot-report ul {
  padding-left: 18px;
  margin-block: 20px 28px;
}
.pilot-report li + li {
  margin-top: 9px;
}
.pilot-report li::marker {
  color: var(--teal);
}
.pilot-report .text-link {
  line-height: 1.8;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.contact-section { background: var(--peach); }
.contact-copy::after {
  content: "";
  display: block;
  width: 110px;
  height: 52px;
  margin-top: 38px;
  border: 10px solid var(--coral);
  border-top: 0;
  border-radius: 0 0 80px 80px;
  transform: rotate(-8deg);
}
.contact-copy > p:not(.eyebrow) {
  max-width: 380px;
  color: var(--muted);
  margin-top: 25px;
}
.contact-email {
  display: inline-block;
  font-size: 18px;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 8px;
  margin-top: 27px;
}
.contact-email span {
  margin-left: 15px;
}
.contact-copy .contact-note {
  font-size: 13px;
}
form {
  padding: 32px;
  border: 1px solid #f0d8cd;
  border-radius: 24px;
  background: white;
  box-shadow: 0 12px 32px #112b3c09;
}
.contact-options { min-width: 0; }
.industry-section { background: #f5faf8; }
.industry-examples { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px; }
.industry-examples article { border-top: 5px solid var(--coral); padding-top: 25px; }
.industry-examples article:nth-child(2) { border-color: var(--teal); }
.industry-examples article:nth-child(3) { border-color: var(--sand); }
.industry-examples h3 { font-size: 24px; line-height: 1.2; margin-bottom: 20px; }
.industry-examples p { font-size: 16px; color: var(--muted); margin-top: 18px; line-height: 1.65; }
.industry-examples .industry-problem { color: var(--ink); font-weight: 650; }
.industry-outcome strong { color: var(--teal); }
.industry-next { margin-top: 36px; font-size: 16px; }
.scenario-share { margin-top: 24px; }
#scenario-review { margin-top: 22px; border-top: 1px solid var(--line); padding-top: 22px; }
#scenario-review h3 { font-size: 24px; margin-bottom: 20px; }
#scenario-text { font-size: 14px; line-height: 1.55; min-height: 220px; }
#scenario-review .button { margin-top: 20px; }
@media (max-width: 760px) { .industry-examples { grid-template-columns: 1fr; gap: 30px; } .industry-examples h3 { font-size: 23px; } }
.enquiry-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid #f0d8cd;
  border-top: 6px solid var(--teal);
  border-radius: 24px;
  background: white;
  box-shadow: 0 12px 32px #112b3c09;
}
.enquiry-card h3 { font-size: clamp(28px, 3vw, 38px); line-height: 1.12; letter-spacing: -.035em; margin-block: 16px 20px; }
.enquiry-card > p:not(.eyebrow):not(.form-help) { color: var(--muted); font-size: 16px; line-height: 1.65; }
.enquiry-card .button { margin-top: 24px; }
.enquiry-owner { padding-top: 22px; border-top: 1px solid var(--line); }
.enquiry-owner strong { color: var(--ink); }
.email-alternative { margin-top: 22px; }
.email-alternative > summary { padding: 14px 0; cursor: pointer; font-size: 16px; font-weight: 650; list-style: none; }
.email-alternative > summary::before { content: "+"; display: inline-block; width: 24px; color: var(--teal); }
.email-alternative[open] > summary::before { content: "−"; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  margin-bottom: 20px;
}
label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
label span {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}
input,
textarea {
  display: block;
  width: 100%;
  border: 1px solid #a6b7b6;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  padding: 12px;
  min-height: 46px;
}
textarea {
  resize: vertical;
  min-height: 120px;
}
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #a12824;
}
.field-error {
  font-size: 12px;
  color: #a12824;
  display: block;
  margin-top: 6px;
}
.field-error:empty {
  display: none;
}
.form-help {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin-block: 15px;
}
form .button {
  margin-top: 5px;
}
#form-status {
  font-size: 14px;
  margin-top: 16px;
}
#form-status:empty {
  display: none;
}
footer {
  border-top: 6px solid var(--coral);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 30px;
}
.footer-inner p,
.footer-inner > a:last-child {
  font-size: 13px;
  color: var(--muted);
}
.footer-inner .brand-motto { font-size: 16px; font-weight: 700; }
.brand-motto span:first-child { color: var(--ink); }
.brand-motto span:nth-child(2) { color: #b64022; }
.brand-motto span:nth-child(3) { color: var(--teal); }
@media (min-width: 1440px) {
  .hero {
    padding-block: 90px;
  }
  .hero-copy {
    padding-right: 5px;
  }
}
@media (max-width: 1000px) {
  .container {
    padding-inline: 28px;
  }
  .hero {
    gap: 35px;
  }
  .hero-note {
    padding: 25px;
  }
  .hero-note p {
    font-size: 15px;
  }
  nav {
    gap: 22px;
  }
  .section-heading,
  .work-grid,
  .contact-grid {
    column-gap: 50px;
  }
  .business-inner {
    gap: 20px;
  }
  .business-inner ul {
    gap: 20px;
  }
  .service-row {
    grid-template-columns: 40px 1fr 1.25fr;
    gap: 20px;
  }
}
@media (max-width: 760px) {
  .analytics-consent { right: 12px; bottom: 12px; width: calc(100% - 24px); display: grid; gap: 10px; padding: 14px; border-radius: 20px 20px 7px 20px; }
  .analytics-consent strong { font-size: 13px; }
  .analytics-consent p { max-width: none; margin-top: 3px; font-size: 11px; line-height: 1.4; }
  .analytics-actions { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.15fr) auto; width: 100%; gap: 8px; }
  .analytics-actions button { min-height: 44px; padding-inline: 10px; }
  .analytics-actions a { align-self: center; padding: 8px 2px; }
  html {
    scroll-padding-top: 24px;
  }
  .container {
    padding-inline: 24px;
  }
  .header-inner {
    height: auto;
    min-height: 80px;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
    padding-block: 12px;
  }
  .brand img {
    width: 185px;
  }
  .menu-toggle {
    display: block;
    min-width: 64px;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 100px;
    color: var(--ink);
    background: white;
    padding: 9px 13px;
    font-size: 13px;
  }
  nav {
    position: absolute;
    z-index: 12;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    border: 1px solid var(--line);
    border-radius: 0 0 20px 20px;
    background: white;
    box-shadow: 0 16px 30px #112b3c18;
  }
  #main-nav {
    display: flex;
    flex-direction: column;
  }
  #main-nav.nav-enhanced {
    display: none;
  }
  #main-nav.nav-enhanced.is-open {
    display: flex;
    flex-direction: column;
  }
  .menu-toggle:hover,
  .menu-toggle:focus-visible,
  #main-nav a:focus-visible {
    background: var(--mint);
  }
  nav a {
    padding: 15px 0;
    border-top: 1px solid var(--line);
  }
  nav .nav-contact {
    border: 0;
    border-radius: 0;
    padding-inline: 0;
  }
  .hero {
    padding-block: 58px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  h1 {
    font-size: clamp(38px, 9.5vw, 58px);
  }
  .hero-copy > p {
    font-size: 17px;
    margin-top: 24px;
  }
  .hero-actions {
    gap: 23px;
    margin-top: 27px;
  }
  .hero-note {
    padding: 28px;
    margin: 0;
    max-width: 520px;
    margin-right: 10px;
    border-radius: 48px 20px 48px 20px;
  }
  .note-label {
    margin-bottom: 13px;
  }
  .hero-note p {
    font-size: 16px;
    margin-top: 8px;
  }
  .note-end {
    margin-top: 14px;
  }
  .business-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding-block: 25px;
  }
  .business-inner p {
    flex: initial;
  }
  .business-inner p br {
    display: none;
  }
  .business-inner ul {
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
  }
  .section {
    padding-block: 62px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }
  .section-heading .eyebrow {
    margin: 0;
  }
  .section-heading > p:last-child {
    font-size: 16px;
  }
  .service-row {
    grid-template-columns: 30px 1fr;
    gap: 18px;
    padding: 24px;
  }
  .service-row > div {
    grid-column: 1 / -1;
  }
  .service-row h3 {
    font-size: 23px;
  }
  .service-row h3 br {
    display: none;
  }
  .service-row ul {
    line-height: 1.7;
  }
  .service-row li + li {
    margin-top: 6px;
  }
  .additional {
    font-size: 13px;
  }
  .work-section {
    padding-block: 62px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .work-details > div:first-child {
    border-top: 1px solid #426067;
    padding-top: 26px;
  }
  .example-grid,
  .pilot-grid,
  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-row {
    grid-template-columns: 40px 1fr;
  }
  .pilot-timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .pilot-report {
    padding: 24px;
  }
  .example-grid article {
    padding-top: 20px;
  }
  .example-context {
    margin-bottom: 14px;
  }
  .example-grid h3 {
    margin-bottom: 12px;
  }
  .steps h3 {
    margin-top: 12px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-copy > p:not(.eyebrow) {
    margin-top: 22px;
  }
  .form-row {
    gap: 14px;
  }
  .footer-inner {
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer-inner p {
    margin: 0;
  }
  .footer-inner > a:last-child {
    flex-basis: 100%;
  }
  form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .connection-shapes { max-width: 300px; height: 68px; }
  .contact-copy::after { margin-top: 28px; }
  h2 { font-size: clamp(32px, 8vw, 44px); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto;
    transition: none !important;
    animation: none !important;
  }
}

/* Conversion surfaces build on the original four-color brand system. */
[hidden] { display: none !important; }
html { scroll-padding-bottom: 120px; }
.hero-copy > .hero-reassurance {
  margin-top: 20px;
  max-width: 440px;
  font-size: 13px;
  line-height: 1.6;
}
.cta-reassurance {
  max-width: 560px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: .01em;
}
.hero-copy > .cta-reassurance { max-width: 520px; margin-top: 16px; font-size: 12px; line-height: 1.55; }
.sample-body > .cta-reassurance { margin-top: 12px; }
.package-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-bottom: 42px; }
.package-card { display: flex; flex-direction: column; padding: 28px; border: 1px solid #eed4c7; border-radius: 24px 24px 8px 24px; background: var(--peach); }
.package-card:nth-child(2) { background: #e8f5ef; border-color: #c7dfd5; border-radius: 24px 8px 24px 24px; }
.package-card:nth-child(3) { background: #fff5df; border-color: #eddbb8; border-radius: 8px 24px 24px 24px; }
.package-tier { font-size: 12px; font-weight: 700; margin-bottom: 22px; color: var(--teal); }
.package-card h3 { font-size: 28px; line-height: 1.15; letter-spacing: -.04em; margin-bottom: 20px; }
.package-card > p:not(.package-tier) { color: var(--muted); font-size: 15px; }
.package-card ul { padding-left: 18px; font-size: 14px; line-height: 1.6; margin: 24px 0 28px; }
.package-card li + li { margin-top: 10px; }
.package-card li::marker { color: var(--teal); }
.package-link { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: auto; border-top: 1px solid #112b3c30; padding-top: 18px; font-size: 14px; font-weight: 700; }
.package-link span { transition: transform 180ms ease; }
.package-link:hover span { transform: translate(3px,-3px); }
.scope-intro { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
details.service-row { display: block; padding: 0; margin: 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: white; }
.service-row summary { display: grid; grid-template-columns: 50px 1fr 28px; align-items: start; gap: 20px; padding: 24px 0; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
.service-row summary h3 { font-size: 21px; }
.service-row .service-name { margin-top: 6px; }
.service-row > div { padding: 0 0 30px 70px; max-width: 900px; }
.scope-toggle { font-size: 25px; line-height: 1; text-align: center; transition: transform 180ms ease; }
details[open] > summary .scope-toggle { transform: rotate(45deg); }
summary:focus-visible { outline: 3px solid var(--teal); outline-offset: 5px; border-radius: 4px; }
.faq-section { padding-top: 65px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; list-style: none; padding: 23px 40px 23px 0; font-size: 20px; font-weight: 650; cursor: pointer; letter-spacing: -.015em; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 20px; color: var(--teal); font-size: 26px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details > p { padding-bottom: 25px; max-width: 800px; color: var(--muted); font-size: 16px; }
.next-steps { list-style: none; margin: 34px 0 0; padding: 0; counter-reset: steps; }
.next-steps li { position: relative; padding: 0 0 25px 46px; counter-increment: steps; }
.next-steps li::before { content: counter(steps); position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px 10px 10px 3px; background: var(--coral); font-size: 13px; font-weight: 700; }
.next-steps li:nth-child(2)::before { background: var(--sand); }
.next-steps li:nth-child(3)::before { background: var(--mint); }
.next-steps strong { display: block; font-size: 16px; }
.next-steps span { display: block; margin-top: 8px; max-width: 350px; color: var(--muted); line-height: 1.65; font-size: 14px; }
.contact-copy::after { width: 75px; height: 35px; margin-top: 0; border-width: 7px; }
select { display: block; width: 100%; min-width: 0; max-width: 100%; min-height: 46px; padding: 10px; border: 1px solid #a6b7b6; border-radius: 9px; background: white; color: var(--ink); font: inherit; font-size: 14px; }
select:focus-visible { outline: 3px solid var(--teal); outline-offset: 5px; }
.field { min-width: 0; }
button:disabled { opacity: .6; cursor: not-allowed; }
#request-review { margin-top: 25px; padding-top: 25px; border-top: 2px solid var(--teal); }
#review-title { font-size: 24px; margin-bottom: 12px; }
#review-title:focus { outline: 3px solid var(--teal); outline-offset: 5px; }
#request-review > p { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
#request-text { font-size: 13px; line-height: 1.7; background: var(--wash); }
.review-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-block: 22px; }
.copy-button { border: 0; border-bottom: 1px solid var(--teal); padding: 8px 0; background: transparent; color: var(--teal); font-size: 14px; font-weight: 600; }
.conversion-bar { position: fixed; z-index: 8; bottom: 18px; left: 50%; transform: translateX(-50%); width: min(850px, calc(100% - 40px)); padding: 16px 22px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 1px solid #ffffff35; border-radius: 20px; color: white; background: var(--ink); box-shadow: 0 10px 35px #112b3c35; }
.conversion-bar strong { display: block; font-size: 16px; }
.conversion-bar p span { display: block; font-size: 12px; color: #d3e2e8; }
.conversion-bar .button { box-shadow: none; padding: 14px 20px; font-size: 14px; white-space: nowrap; }
.hero-note { isolation: isolate; overflow: hidden; }
.hero-note > * { position: relative; z-index: 1; }
.hero-note::after { content: ""; position: absolute; z-index: 0; width: 190px; height: 190px; right: -70px; bottom: -95px; border-radius: 44% 56% 62% 38%; background: radial-gradient(circle, #efd3a488 0 42%, transparent 70%); pointer-events: none; }
.business-band { background-image: linear-gradient(110deg, #15565d 0%, #15565d 38%, #1b6970 50%, #15565d 62%, #15565d 100%); }
.button span { display: inline-block; transition: translate 180ms ease, rotate 180ms ease; }
.text-link { display: inline-block; transition: transform 180ms ease, color 180ms ease; }
@keyframes arrive { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shape-float {
  0% { translate: 0 0; rotate: -2deg; }
  45% { translate: 0 -10px; rotate: 4deg; }
  100% { translate: 0 4px; rotate: -4deg; }
}
@keyframes band-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes status-breathe {
  0%, 100% { scale: .8; opacity: .55; box-shadow: 0 0 0 0 currentColor; }
  50% { scale: 1; opacity: 1; box-shadow: 0 0 0 6px transparent; }
}
@keyframes note-glow {
  0%, 100% { translate: -8% 5%; opacity: .38; }
  50% { translate: 12% -8%; opacity: .7; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy { animation: arrive 650ms ease-out both; }
  .hero-note { animation: arrive 750ms 120ms ease-out both; }
  .connection-shapes span { animation: shape-float 4.8s ease-in-out infinite alternate; }
  .connection-shapes span:nth-child(2) { animation-duration: 5.8s; animation-delay: -1.8s; }
  .connection-shapes span:nth-child(3) { animation-duration: 4.2s; animation-delay: -3.1s; }
  .connection-shapes span:nth-child(4) { animation-duration: 6.4s; animation-delay: -2.4s; }
  .hero-note::after { animation: note-glow 8s ease-in-out infinite; }
  .business-band { background-size: 220% 220%; animation: band-flow 12s ease-in-out infinite alternate; }
  .business-band a span { display: inline-block; transition: translate 180ms ease, rotate 180ms ease; }
  .business-band a:hover span { translate: 4px -3px; rotate: 8deg; }
  .motion-item { opacity: 0; transform: translate3d(-22px, 24px, 0); transition: opacity 620ms ease, transform 720ms cubic-bezier(.2,.75,.2,1); transition-delay: calc(var(--motion-order, 0) * 75ms); }
  .motion-item.motion-from-right { transform: translate3d(22px, 24px, 0); }
  .motion-item.motion-scale { transform: translate3d(0, 22px, 0) scale(.965); }
  .motion-item.motion-visible { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  .package-card { transition: translate 180ms ease, box-shadow 180ms ease; }
  .package-card:hover { translate: 0 -5px; box-shadow: 0 12px 22px #112b3c0c; }
  .sample-work article { transition: translate 200ms ease, box-shadow 200ms ease; }
  .sample-work article:hover { translate: 0 -5px; box-shadow: 0 12px 0 -9px #112b3c22; }
  .sample-status::before { animation: status-breathe 2.4s ease-in-out infinite; }
  .button:hover { transform: translateY(-3px) scale(1.015); box-shadow: 0 12px 22px #112b3c20; }
  .button:hover span { translate: 3px -3px; rotate: 8deg; }
  .text-link:hover { transform: translateX(4px); }
}
@media (max-width: 1000px) {
  .package-grid { gap: 14px; }
  .package-card { padding: 22px; }
  .package-card h3 { font-size: 24px; }
}
@media (max-width: 760px) {
  .package-grid { grid-template-columns: 1fr; gap: 18px; }
  .package-card { padding: 26px; }
  .package-card h3 { font-size: 28px; max-width: 320px; }
  .service-row summary { grid-template-columns: 40px 1fr 20px; gap: 12px; }
  .service-row summary h3 { font-size: 19px; }
  .service-row > div { padding-left: 0; }
  .service-row .service-name { font-size: 12px; }
  .faq-list summary { font-size: 18px; }
  .faq-section { padding-top: 45px; }
  .conversion-bar { width: calc(100% - 24px); bottom: 12px; padding: 10px; border-radius: 100px; }
  .conversion-bar p { display: none; }
  .conversion-bar .button { width: 100%; justify-content: center; }
  .hero-copy > .hero-reassurance { font-size: 12px; }
}

.value-section { background: #f5faf7; border-bottom: 1px solid var(--line); }
.value-preview { list-style: none; padding: 0; margin: 0 0 30px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.value-preview li { border-top: 4px solid var(--teal); padding-top: 18px; }
.value-preview li:nth-child(2) { border-color: var(--coral); }
.value-preview li:nth-child(3) { border-color: var(--sand); }
.value-preview li:nth-child(4) { border-color: var(--ink); }
.value-preview strong { display: block; font-size: 19px; line-height: 1.4; }
.value-preview span { display: block; margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.calculator-disclosure > summary { cursor: pointer; padding: 22px 26px; border: 1px solid #bddbd2; border-radius: 16px; background: var(--mint); font-weight: 700; font-size: 18px; }
.disclosure-hint { display: block; margin-top: 4px; padding-left: 20px; font-size: 13px; font-weight: 400; color: var(--teal); }
.calculator-disclosure[open] .disclosure-hint { display: none; }
.calculator-content { padding-top: 40px; }
.team-section { background: var(--peach); border-block: 1px solid #efd4c6; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.team-intro h2 { max-width: 560px; }
.team-intro > p:not(.eyebrow) { margin-top: 26px; color: var(--muted); }
.team-intro .team-principle { font-weight: 650; color: var(--ink); }
.team-person { padding: 25px 0; border-top: 1px solid #d8b9aa; }
.team-person:first-child { padding-top: 0; border: 0; }
.team-person .person-role { color: var(--teal); font-size: 12px; letter-spacing: .06em; font-weight: 700; text-transform: uppercase; }
.team-person h3 { margin: 8px 0 12px; font-size: 30px; }
.team-person > p:not(.person-role) { font-size: 15px; color: var(--muted); line-height: 1.7; }
.person-links { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 18px; }
.person-links a { color: var(--teal); font-size: 14px; font-weight: 650; text-decoration: underline; text-underline-offset: 5px; padding-block: 8px; }
.sample-report { margin-top: 48px; padding-block: 34px 38px; border-block: 1px solid var(--line); }
.sample-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr); align-items: end; gap: 32px; }
.sample-heading h3 { margin-top: 10px; font-size: clamp(28px, 3vw, 38px); letter-spacing: -.035em; }
.sample-heading > p { color: var(--muted); font-size: 16px; max-width: 420px; }
.sample-body { padding-top: 28px; }
.sample-disclaimer { padding: 18px 22px; background: var(--wash); color: var(--muted); font-size: 14px; border-left: 4px solid var(--teal); }
.sample-work { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 32px; margin-block: 32px; }
.sample-work article { border-top: 4px solid var(--teal); padding-top: 18px; }
.sample-work article:nth-child(2) { border-color: var(--sand); }
.sample-work article:nth-child(3) { border-color: var(--coral); }
.sample-status { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); margin-bottom: 12px; }
.sample-status::before { content: ""; width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: currentColor; }
.sample-work article:nth-child(2) .sample-status { color: #9b6e1f; }
.sample-work article:nth-child(3) .sample-status { color: #c64f31; }
.sample-work h3 { font-size: 22px; margin-bottom: 12px; }
.sample-work p:not(.sample-status) { font-size: 15px; color: var(--muted); }
.sample-next { margin-top: 16px; }
.sample-review { border-top: 1px solid var(--line); padding-top: 24px; margin-bottom: 24px; }
.sample-review h3 { font-size: 21px; margin-bottom: 12px; }
.sample-review p { max-width: 900px; font-size: 15px; color: var(--muted); }
@media (max-width: 760px) { .sample-heading { grid-template-columns: 1fr; gap: 14px; } .sample-work { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 1000px) { .team-grid { gap: 40px; } .value-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) { .team-grid { grid-template-columns: 1fr; } .team-person h3 { font-size: 28px; } .calculator-disclosure > summary { padding: 18px; font-size: 16px; } .value-preview strong { font-size: 17px; } .value-preview { gap: 22px 18px; } }
.scenario-intro { max-width: 880px; font-size: 16px; color: var(--muted); margin: -15px 0 36px; }
.scenario-intro strong { color: var(--ink); }
.value-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 32px; align-items: start; }
.value-form { padding: 28px; border-color: #d5e3df; box-shadow: none; }
.value-form fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.value-form legend { font-size: 22px; font-weight: 700; margin-bottom: 28px; }
.value-form h3 { font-size: 16px; color: var(--teal); margin-bottom: 20px; }
.value-form label { font-size: 13px; line-height: 1.5; }
.value-form input { font-size: 16px; }
.value-form small { display: block; margin-top: 8px; font-size: 12px; color: var(--muted); line-height: 1.6; }
.value-form .form-row { gap: 16px; }
.assumption-group + .assumption-group { border-top: 1px solid var(--line); padding-top: 22px; }
.scenario-label { font-size: 12px; color: var(--teal); font-weight: 700; margin-bottom: 14px; }
.result-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.value-result { border-radius: 20px; padding: 24px; border: 1px solid #bddbd2; background: var(--mint); }
.result-new { background: var(--peach); border-color: #efd4c6; }
.result-retained { background: #fff2d8; border-color: var(--sand); }
.result-cash { background: var(--ink); border-color: var(--ink); color: white; }
.value-result h3 { font-size: 15px; line-height: 1.4; min-height: 42px; }
.value-result output { display: block; margin: 14px 0 5px; font-size: clamp(27px, 2.5vw, 38px); font-weight: 750; letter-spacing: -.04em; line-height: 1.15; font-variant-numeric: tabular-nums; overflow-wrap: anywhere; }
.result-unit { display: block; font-size: 12px; line-height: 1.5; }
.value-result p { font-size: 13px; margin-top: 18px; font-weight: 650; }
.value-result small { display: block; font-size: 11px; line-height: 1.6; margin-top: 12px; color: var(--muted); }
.result-cash small { color: #c7dce1; }
.scenario-boundary { border-left: 3px solid var(--coral); padding-left: 18px; margin: 22px 0 28px; }
.scenario-boundary strong { font-size: 15px; }
.scenario-boundary p { margin-top: 7px; font-size: 13px; color: var(--muted); }
.value-results > .button { font-size: 14px; gap: 18px; line-height: 1.5; }
.value-method { margin-top: 32px; border-top: 1px solid var(--line); }
.value-method summary { padding: 22px 0; cursor: pointer; font-size: 15px; font-weight: 650; }
.value-method ul { padding-left: 20px; margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.value-method p { max-width: 900px; color: var(--muted); font-size: 14px; }
@media (max-width: 1000px) {
  .value-grid { grid-template-columns: 1fr; }
  .value-result h3 { min-height: 0; }
  .value-form .form-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .scenario-intro { font-size: 15px; margin-top: 0; }
  .value-form { padding: 24px; }
  .value-form .form-row { grid-template-columns: 1fr; }
  .value-form legend { font-size: 21px; }
  .result-grid { grid-template-columns: 1fr; }
  .value-result output { font-size: 38px; }
  .value-result h3 { font-size: 17px; }
  .value-result small { font-size: 12px; }
}
