:root {
  --ink: #193c42;
  --ink-deep: #102f35;
  --teal: #1e565c;
  --teal-mid: #487b77;
  --sage: #80a99d;
  --sage-soft: #e8f0ec;
  --cream: #f7f3e9;
  --sand: #eac8a7;
  --white: #fff;
  --paper: #fbfcfa;
  --muted: #617276;
  --line: #d9e3df;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(20, 62, 67, .12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
}

.skip-link:focus {
  top: 12px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 84px;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: height .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.scrolled {
  height: 74px;
  border-color: rgba(25, 60, 66, .1);
  box-shadow: 0 8px 30px rgba(16, 47, 53, .06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 188px;
  line-height: 1.1;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--sage);
}

.brand-mark svg {
  width: 100%;
  fill: currentColor;
}

.brand-mark .mark-line {
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .08em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.primary-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 650;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--sage);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.primary-nav .nav-cta {
  padding: 11px 17px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  transition: background .2s ease, transform .2s ease;
}

.primary-nav .nav-cta:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 158px 0 96px;
  overflow: hidden;
  background: linear-gradient(112deg, #fbfcfa 0%, #f8fbf9 52%, #eff5f2 100%);
}

.hero::after {
  position: absolute;
  bottom: -74px;
  left: -2%;
  width: 58%;
  height: 150px;
  content: "";
  background: rgba(128, 169, 157, .08);
  border-radius: 50%;
  transform: rotate(-4deg);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-orb-one {
  top: 86px;
  right: -100px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(128, 169, 157, .25);
}

.hero-orb-two {
  right: 16%;
  bottom: 24px;
  width: 120px;
  height: 120px;
  background: rgba(234, 200, 167, .15);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--teal-mid);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2 {
  margin: 0;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(48px, 5.4vw, 76px);
}

h2 {
  font-size: clamp(38px, 4.2vw, 57px);
}

h1 em,
h2 em {
  color: var(--teal-mid);
  font-weight: 400;
}

.hero-lead {
  max-width: 610px;
  margin: 27px 0 32px;
  color: #506a6e;
  font-size: 18px;
  line-height: 1.75;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 750;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button svg {
  width: 18px;
  margin-left: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 10px 25px rgba(16, 47, 53, .14);
}

.button-primary:hover {
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(16, 47, 53, .2);
  transform: translateY(-2px);
}

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

.button-secondary:hover {
  border-color: var(--sage);
  transform: translateY(-2px);
}

.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.hero-reassurance span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-reassurance svg {
  width: 17px;
  fill: none;
  stroke: var(--teal-mid);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-card-wrap {
  position: relative;
}

.hero-visual {
  padding: 18px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .96);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 4px 15px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
}

.visual-icon {
  display: grid;
  width: 31px;
  height: 31px;
  color: var(--white);
  background: var(--sage);
  border-radius: 50%;
  place-items: center;
}

.visual-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.visual-illustration {
  position: relative;
  aspect-ratio: 46 / 30;
  overflow: hidden;
  border-radius: 18px;
}

.visual-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 66%;
  filter: saturate(.82) contrast(.94);
}

.visual-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 4px 2px;
}

.visual-bottom div {
  padding-left: 10px;
  border-left: 2px solid var(--sage-soft);
}

.visual-bottom strong,
.visual-bottom span {
  display: block;
}

.visual-bottom strong {
  color: var(--ink);
  font-size: 11px;
  text-transform: uppercase;
}

.visual-bottom span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.floating-note {
  position: absolute;
  right: -25px;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  padding: 13px 16px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(19, 56, 61, .17);
}

.note-check {
  display: grid;
  width: 32px;
  height: 32px;
  background: var(--sage-soft);
  border-radius: 50%;
  place-items: center;
}

.note-check svg {
  width: 18px;
  fill: none;
  stroke: var(--teal-mid);
  stroke-width: 2;
  stroke-linecap: round;
}

.floating-note strong,
.floating-note small {
  display: block;
}

.floating-note strong {
  font-size: 12px;
}

.floating-note small {
  color: var(--muted);
  font-size: 9px;
}

.intro-strip {
  position: relative;
  z-index: 3;
  color: var(--white);
  background: var(--ink);
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
}

.intro-strip p {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
}

.intro-strip p strong {
  color: #b7d2c9;
  font-weight: 400;
  font-style: italic;
}

.intro-strip a {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
}

.intro-strip a span,
.service-card a span,
.text-link-light span {
  margin-left: 8px;
  transition: margin-left .2s ease;
}

.intro-strip a:hover span,
.service-card a:hover span,
.text-link-light:hover span {
  margin-left: 13px;
}

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

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: end;
}

.section-heading > p:last-child {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

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

.service-card {
  position: relative;
  min-height: 326px;
  padding: 31px 28px 27px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e2e9e6;
  border-radius: 11px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.service-card::after {
  position: absolute;
  right: -26px;
  bottom: -60px;
  width: 120px;
  height: 120px;
  content: "";
  background: var(--sage-soft);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.service-card:hover {
  border-color: #bed2ca;
  box-shadow: 0 18px 42px rgba(18, 55, 60, .09);
  transform: translateY(-4px);
}

.service-card:hover::after {
  opacity: .65;
  transform: scale(1.18);
}

.service-number {
  position: absolute;
  top: 23px;
  right: 24px;
  color: #b6c6c1;
  font-family: var(--serif);
  font-size: 13px;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--teal-mid);
  background: var(--sage-soft);
  border-radius: 50%;
  place-items: center;
}

.service-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  max-width: 230px;
  margin: 20px 0 11px;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.service-card a {
  position: absolute;
  bottom: 26px;
  z-index: 2;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.about {
  overflow: hidden;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
  padding: 34px;
}

.about-panel {
  position: relative;
  min-height: 480px;
  padding: 36px;
  overflow: hidden;
  background: var(--cream);
  border-radius: 48% 48% 20px 20px;
}

.about-photo-panel {
  isolation: isolate;
  height: 480px;
  padding: 0;
  background: #dce8e3;
}

.about-photo-panel::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(to bottom, transparent 36%, rgba(9, 35, 39, .18) 68%, rgba(9, 35, 39, .76) 100%);
}

.about-photo-panel > img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(.78) contrast(.94);
}

.about-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 50px;
  background: var(--sand);
}

.about-quote {
  position: relative;
  z-index: 2;
  width: 78%;
  margin: 62px auto 0;
  text-align: center;
}

.about-photo-panel .about-quote {
  position: absolute;
  right: 28px;
  bottom: 55px;
  left: 28px;
  z-index: 3;
  width: auto;
  margin: 0;
  padding: 20px 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  border-radius: 10px;
  box-shadow: 0 12px 34px rgba(15, 47, 52, .18);
  backdrop-filter: blur(8px);
}

.about-photo-panel .about-quote p {
  font-size: 23px;
}

.about-quote svg {
  width: 30px;
  margin: auto;
  fill: var(--sage);
}

.about-quote p {
  margin: 13px 0 0;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.25;
}

.about-circles {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.about-circles span {
  width: 47px;
  height: 47px;
  margin-left: -9px;
  background: #769c91;
  border: 4px solid var(--cream);
  border-radius: 50%;
}

.about-circles span:nth-child(2) {
  background: #dab18d;
}

.about-circles span:nth-child(3) {
  background: #405e60;
}

.about-path {
  position: absolute;
  right: 24px;
  bottom: 40px;
  left: 24px;
}

.about-caption {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  margin: 0;
  color: var(--teal-mid);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-align: center;
  text-transform: uppercase;
}

.about-photo-panel .about-caption {
  z-index: 3;
  color: var(--white);
}

.about-badge {
  position: absolute;
  right: 0;
  bottom: 65px;
  display: grid;
  width: 108px;
  height: 108px;
  color: var(--white);
  background: var(--ink);
  border: 7px solid var(--white);
  border-radius: 50%;
  place-content: center;
  text-align: center;
}

.about-badge strong,
.about-badge span {
  display: block;
}

.about-badge strong {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.about-badge span {
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.about-copy .large-copy {
  margin: 27px 0 17px;
  color: #405d61;
  font-size: 17px;
  line-height: 1.75;
}

.about-copy > p:not(.eyebrow, .large-copy, .disclaimer) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.about-values > div {
  display: flex;
  gap: 12px;
}

.about-values span {
  color: var(--sage);
  font-family: var(--serif);
  font-size: 13px;
}

.about-values p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.about-values strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 13px;
}

.disclaimer {
  margin: 25px 0 0;
  padding: 12px 15px;
  color: #5f6d69;
  background: #f4f7f4;
  border-left: 3px solid var(--sage);
  font-size: 11px;
  line-height: 1.55;
}

.why-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.why-section::before {
  position: absolute;
  top: -220px;
  left: -130px;
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.why-section::after {
  position: absolute;
  right: -90px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  content: "";
  background: rgba(128, 169, 157, .08);
  border-radius: 50%;
}

.why-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  align-items: center;
}

.eyebrow-light {
  color: #a8c8bf;
}

.why-copy h2,
.contact-copy h2 {
  color: var(--white);
}

.why-copy h2 em,
.contact-copy h2 em {
  color: #b4d0c7;
}

.why-copy > p:not(.eyebrow) {
  max-width: 460px;
  margin: 24px 0;
  color: #b9cac8;
  font-size: 14px;
}

.section-photo {
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(10, 38, 42, .15);
}

.section-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .04), rgba(16, 47, 53, .12));
}

.section-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(.94);
}

.text-link-light {
  display: inline-block;
  margin-top: 10px;
  padding-bottom: 5px;
  font-size: 12px;
  font-weight: 750;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.why-list > div {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 20px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.why-list > div:first-child {
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.why-icon {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: #b7d2c9;
  background: rgba(183, 210, 201, .1);
  border-radius: 50%;
  place-items: center;
}

.why-icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-list p {
  margin: 0;
}

.why-list strong,
.why-list small {
  display: block;
}

.why-list strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.why-list small {
  margin-top: 2px;
  color: #9eb4b1;
  font-size: 11px;
}

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

.centered {
  max-width: 690px;
  margin: 0 auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered > p:last-child {
  max-width: 550px;
  margin: 20px auto 0;
}

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

.process-list::before {
  position: absolute;
  top: 50px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(to right, #afc6bf 0 7px, transparent 7px 13px);
}

.process-list li {
  position: relative;
  z-index: 2;
  padding: 0 22px;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -8px;
  left: calc(50% + 31px);
  display: grid;
  width: 24px;
  height: 24px;
  color: var(--white);
  background: var(--sage);
  border: 3px solid var(--paper);
  border-radius: 50%;
  place-items: center;
  font-size: 9px;
  font-weight: 800;
}

.step-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 12px auto 22px;
  color: var(--teal-mid);
  background: var(--white);
  border: 1px solid #d6e1dd;
  border-radius: 50%;
  box-shadow: 0 9px 20px rgba(20, 62, 67, .06);
  place-items: center;
}

.step-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-list h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #315f62;
}

.contact::before {
  position: absolute;
  top: -100px;
  left: -60px;
  width: 300px;
  height: 300px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 100px;
  align-items: center;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 25px 0 30px;
  color: #d0dedb;
  font-size: 15px;
}

.contact-photo {
  width: min(100%, 540px);
  aspect-ratio: 2.2 / 1;
  margin: 0 0 25px;
  border: 1px solid rgba(255, 255, 255, .14);
}

.contact-photo img {
  object-position: 57% 48%;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-methods a {
  display: grid;
  grid-template-columns: 38px auto;
  min-width: 220px;
  padding: 13px 17px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  transition: background .2s ease, transform .2s ease;
}

.contact-methods a:hover {
  background: rgba(255, 255, 255, .13);
  transform: translateY(-2px);
}

.contact-methods a > span {
  grid-row: 1 / 3;
  align-self: center;
}

.contact-methods svg {
  width: 23px;
  fill: none;
  stroke: #b9d5cd;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-methods small {
  color: #b8cbc7;
  font-size: 9px;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: 12px;
}

.contact-card {
  padding: 36px;
  color: var(--ink);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(11, 38, 42, .22);
}

.contact-card-heading {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-card-heading p {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
}

.contact-card-heading span {
  color: var(--muted);
  font-size: 11px;
}

address {
  padding: 7px 0 13px;
  font-style: normal;
}

address > div {
  display: flex;
  gap: 13px;
  padding: 12px 0;
}

.address-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--teal-mid);
  background: var(--sage-soft);
  border-radius: 50%;
  place-items: center;
}

.address-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

address p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

address small,
address strong,
address a {
  display: block;
}

address small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

address strong {
  font-weight: 650;
}

address a {
  color: var(--teal);
  font-weight: 700;
}

.button-full {
  width: 100%;
}

.contact-note {
  margin: 11px 0 0;
  color: #7c8b88;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  color: #bfd0cd;
  background: #0c292e;
}

.footer-main {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  padding-top: 65px;
  padding-bottom: 55px;
}

.brand-light {
  color: var(--white);
}

.brand-light .brand-mark {
  color: #779f94;
}

.brand-light small {
  color: #9eb4b1;
}

.footer-brand > p {
  max-width: 330px;
  margin: 20px 0 0;
  color: #8fa8a5;
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: .8fr 1.25fr 1fr;
  gap: 35px;
}

.footer-links h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links p {
  display: block;
  margin: 0 0 8px;
  color: #9eb4b1;
  font-size: 11px;
  line-height: 1.65;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 65px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #789390;
  font-size: 9px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

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

/* Legal pages */
.legal-main {
  min-height: 70vh;
  padding: 150px 0 90px;
  background: var(--paper);
}

.legal-shell {
  max-width: 820px;
}

.legal-shell h1 {
  font-size: clamp(42px, 5vw, 64px);
}

.legal-meta {
  margin: 15px 0 42px;
  color: var(--muted);
  font-size: 12px;
}

.legal-content {
  padding: 45px 50px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.legal-content h2 {
  margin: 32px 0 10px;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 14px;
}

.legal-content a {
  color: var(--teal);
  text-decoration: underline;
}

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

  .primary-nav a {
    font-size: 12px;
  }

  .hero-grid {
    gap: 40px;
  }

  .about-grid,
  .why-grid,
  .contact-grid {
    gap: 55px;
  }

  .about-visual {
    padding: 15px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 36px, 720px);
  }

  .section {
    padding: 86px 0;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: calc(100vh - 74px);
    height: calc(100dvh - 74px);
    padding: 20px 24px;
    overflow-y: auto;
    background: var(--white);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

  .primary-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

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

  .primary-nav > a::after {
    display: none;
  }

  .primary-nav .nav-cta {
    margin-top: 18px;
    padding: 14px 18px;
    text-align: center;
    border: 0;
  }

  .hero {
    min-height: auto;
    padding: 138px 0 90px;
  }

  .hero-grid,
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-card-wrap {
    max-width: 580px;
    margin: 15px auto 0;
  }

  .intro-strip-inner {
    gap: 30px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .split-heading > p:last-child {
    max-width: 620px;
  }

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

  .about-visual {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .about-copy {
    max-width: 650px;
  }

  .why-copy {
    max-width: 620px;
  }

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

  .process-list::before {
    display: none;
  }

  .contact-card {
    max-width: 560px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 30px, 520px);
  }

  .site-header,
  .site-header.scrolled {
    height: 72px;
  }

  .primary-nav {
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
  }

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

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 8px;
  }

  .hero {
    padding: 123px 0 76px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  h2 {
    font-size: 39px;
  }

  .hero-lead {
    font-size: 16px;
  }

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

  .hero-reassurance {
    display: grid;
    gap: 9px;
  }

  .hero-visual {
    padding: 11px;
    border-radius: 19px;
  }

  .visual-topline {
    font-size: 14px;
  }

  .visual-bottom {
    display: none;
  }

  .floating-note {
    right: -5px;
    bottom: -23px;
  }

  .intro-strip-inner {
    display: block;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .intro-strip p {
    font-size: 16px;
  }

  .intro-strip a {
    display: inline-block;
    margin-top: 11px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

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

  .about-grid {
    gap: 55px;
  }

  .about-visual {
    padding: 0;
  }

  .about-panel {
    min-height: 390px;
    padding: 25px;
  }

  .about-photo-panel {
    height: 390px;
    padding: 0;
  }

  .about-photo-panel > img {
    min-height: 390px;
  }

  .contact-photo {
    aspect-ratio: 4 / 3;
  }

  .about-quote {
    margin-top: 45px;
  }

  .about-quote p {
    font-size: 25px;
  }

  .about-badge {
    right: -4px;
    bottom: 35px;
    width: 96px;
    height: 96px;
  }

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

  .why-grid,
  .contact-grid {
    gap: 50px;
  }

  .why-list strong {
    font-size: 16px;
  }

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

  .process-list li {
    max-width: 300px;
    margin: auto;
  }

  .contact-methods {
    display: grid;
  }

  .contact-methods a {
    min-width: 0;
  }

  .contact-card {
    padding: 27px 22px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
    padding: 20px 0;
  }

  .footer-bottom div {
    margin-top: 7px;
  }

  .legal-main {
    padding: 120px 0 70px;
  }

  .legal-content {
    padding: 30px 22px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
