@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/source-serif-4-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

:root {
  --navy: #123047;
  --navy-dark: #0a2234;
  --petrol: #2b7a78;
  --petrol-dark: #205d5b;
  --mint: #e5f0ed;
  --mint-strong: #d1e4df;
  --ivory: #faf8f4;
  --ink: #15232d;
  --ink-soft: #51606a;
  --white: #fff;
  --border: rgba(18, 48, 71, 0.14);
  --shadow: 0 24px 70px rgba(18, 48, 71, 0.12);
  --radius-sm: 0.75rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --sans: "Source Sans 3", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
  --header-height: 5rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
  top: 32px;
}

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

a {
  color: var(--petrol-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #efb64f;
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 18ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5.4vw, 4.65rem);
}

h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.35rem, 4.4vw, 4.15rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

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

.skip-link {
  position: fixed;
  z-index: 99999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-180%);
  border-radius: 0.5rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}

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

.shell {
  width: min(calc(100% - 2.5rem), 760px);
  margin-inline: auto;
}

.shell--wide {
  width: min(calc(100% - 2.5rem), 1180px);
}

.section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  color: var(--petrol-dark);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.eyebrow--light {
  color: #c9e4df;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(250, 248, 244, 0.91);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 30px rgba(18, 48, 71, 0.06);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  min-height: 2.75rem;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
  text-decoration: none;
}

.brand:hover {
  color: var(--petrol-dark);
}

.brand__mark {
  width: 2.7rem;
  height: 2.7rem;
}

.brand__text {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.brand__text strong {
  font-size: 0.94rem;
  font-weight: 700;
}

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

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--petrol);
  content: "";
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.header-phone:hover {
  transform: translateY(-2px);
  background: var(--petrol-dark);
  color: var(--white);
}

.hero {
  display: flex;
  overflow: hidden;
  min-height: calc(100vh - var(--header-height));
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--ivory);
  isolation: isolate;
}

.hero__shape {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.hero__shape--one {
  top: -14rem;
  right: -12rem;
  width: 39rem;
  height: 39rem;
  border: 1px solid rgba(43, 122, 120, 0.12);
}

.hero__shape--two {
  right: 18%;
  bottom: 4%;
  width: 14rem;
  height: 14rem;
  background: rgba(229, 240, 237, 0.72);
  filter: blur(2px);
}

.hero__grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.7fr);
}

.hero__lead {
  max-width: 39rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--petrol-dark);
  color: var(--white);
}

.button--primary:hover {
  background: var(--navy);
  color: var(--white);
}

.button--secondary {
  border-color: rgba(18, 48, 71, 0.28);
  color: var(--navy);
}

.button--secondary:hover {
  border-color: var(--navy);
  background: var(--white);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.4rem;
  padding: 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-list li::before {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--petrol);
  content: "";
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--navy);
  box-shadow: var(--shadow);
  color: var(--white);
}

.hero-card::after {
  position: absolute;
  top: -5rem;
  right: -4rem;
  width: 13rem;
  height: 13rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-card__topline {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 3rem;
  color: #c9e4df;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card__pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #78c2b8;
  box-shadow: 0 0 0 5px rgba(120, 194, 184, 0.12);
}

.hero-card__identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-card__portrait {
  position: relative;
  display: inline-block;
  width: 3.4rem;
  height: 3.4rem;
  min-width: 3.4rem;
  min-height: 3.4rem;
  max-width: 3.4rem;
  max-height: 3.4rem;
  flex: 0 0 3.4rem;
  align-self: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(120, 194, 184, 0.14);
  transform: translateZ(0);
}

.hero-card__portrait picture,
.hero-card__portrait img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
}

.hero-card__portrait img {
  object-fit: cover;
  object-position: 50% 22%;
}

.hero-card__identity strong,
.hero-card__identity span {
  display: block;
}

.hero-card__identity strong {
  margin-bottom: 0.2rem;
  font-family: var(--serif);
  font-size: 1.08rem;
}

.hero-card__identity span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.4;
}

.hero-card blockquote {
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  line-height: 1.35;
}

.hero-card > a {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: space-between;
  color: #d9eee9;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-heading > p:last-child {
  max-width: 39rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-heading--split {
  display: grid;
  max-width: none;
  align-items: end;
  gap: 3rem;
  grid-template-columns: 1.1fr 0.9fr;
}

.section-heading--split h2,
.section-heading--split p {
  margin-bottom: 0;
}

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

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

.section-heading--center > p:last-child {
  margin-inline: auto;
}

.benefit-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
  min-height: 18rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--ivory);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(43, 122, 120, 0.4);
  box-shadow: 0 18px 45px rgba(18, 48, 71, 0.08);
}

.benefit-card__number,
.service-card__number {
  display: block;
  margin-bottom: 3.8rem;
  color: var(--petrol-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.benefit-card h3 {
  margin-bottom: 0.8rem;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

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

.service-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(18, 48, 71, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.42);
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 21rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-right: 1px solid rgba(18, 48, 71, 0.12);
  border-bottom: 1px solid rgba(18, 48, 71, 0.12);
  transition: background 200ms ease;
}

.service-card:nth-child(3n) {
  border-right: 0;
}

.service-card:nth-child(n + 4) {
  border-bottom: 0;
}

.service-card:hover {
  background: var(--white);
}

.service-card__number {
  margin-bottom: 4rem;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.about__grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 7.5rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.about__portrait {
  position: relative;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.82;
  border-radius: 11rem 11rem 1.5rem 1.5rem;
  background: var(--mint);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(18, 48, 71, 0.12);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.portrait-frame picture,
.portrait-frame img {
  width: 100%;
  height: 100%;
}

.portrait-frame img {
  object-fit: cover;
  object-position: 50% 34%;
}

.portrait-caption {
  position: absolute;
  right: -1.5rem;
  bottom: 2rem;
  max-width: 16rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: var(--navy);
  box-shadow: var(--shadow);
  color: var(--white);
}

.portrait-caption strong,
.portrait-caption span {
  display: block;
}

.portrait-caption strong {
  font-family: var(--serif);
  font-size: 1rem;
}

.portrait-caption span {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
}

.about__intro {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.45;
}

.about__copy > p:not(.eyebrow):not(.about__intro) {
  color: var(--ink-soft);
}

.check-list {
  padding: 0;
  margin: 2rem 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-block: 0.6rem;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

.check-list span {
  display: inline-flex;
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--petrol-dark);
  font-size: 0.7rem;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 1rem;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.process {
  background: var(--navy);
  color: var(--white);
}

.process h2,
.process h3 {
  color: var(--white);
}

.process .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

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

.process-list li {
  min-height: 20rem;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.process-list li > span {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 5.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #c9e4df;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 0.75rem;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.94rem;
}

.faq__shell {
  width: min(calc(100% - 2.5rem), 900px);
}

.faq-list {
  border-top: 1px solid var(--border);
}

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

.faq-list summary {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1rem;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.13rem, 2.3vw, 1.35rem);
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 auto;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  transform: translate(-50%, -50%);
  background: var(--petrol-dark);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > div {
  max-width: 44rem;
  padding: 0 3rem 1.75rem 0;
  color: var(--ink-soft);
}

.faq-list details p {
  margin-bottom: 0;
}

.faq-scope-list {
  display: grid;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  gap: 0.45rem;
}

.faq-scope-list li::marker {
  color: var(--petrol-dark);
}

.contact {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--mint);
}

.contact__box {
  display: grid;
  overflow: hidden;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
  grid-template-columns: 1.1fr 0.9fr;
}

.contact h2 {
  color: var(--white);
  font-size: clamp(2.35rem, 4vw, 3.9rem);
}

.contact__box > div:first-child > p:last-child {
  max-width: 36rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact__actions > a {
  display: grid;
  min-height: 5rem;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  gap: 0 1rem;
  grid-template-columns: 1fr auto;
  text-decoration: none;
}

.contact__actions small,
.contact__actions strong {
  display: block;
  grid-column: 1;
}

.contact__actions small {
  color: #c9e4df;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact__actions strong {
  overflow-wrap: anywhere;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
}

.contact__actions > a > span {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 1.4rem;
}

.contact__actions > p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
}

.site-footer {
  padding: 4rem 0 1.2rem;
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.67);
}

.site-footer__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.45fr repeat(4, minmax(0, 0.72fr));
}

.brand--footer {
  margin-bottom: 1.25rem;
  color: var(--white);
}

.site-footer__brand p {
  max-width: 26rem;
  font-size: 0.9rem;
}

.footer-heading {
  margin-bottom: 1rem;
  color: #c9e4df;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.55rem;
}

.footer-links a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  text-decoration: none;
}

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

.site-footer__bottom {
  padding-top: 2.5rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.site-footer__bottom p {
  margin-bottom: 0;
}

.mobile-contact-bar {
  display: none;
}

.legal-page,
.content-page {
  min-height: 60vh;
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--white);
}

.legal-page__shell,
.content-page__shell {
  width: min(calc(100% - 2.5rem), 820px);
}

.legal-page h1,
.content-page h1 {
  max-width: none;
  margin-bottom: 3rem;
  font-size: clamp(3rem, 6vw, 5rem);
}

.legal-page section {
  padding-block: 2rem;
  border-top: 1px solid var(--border);
}

.legal-page h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.legal-page address {
  font-style: normal;
}

.legal-list {
  margin: 0;
}

.legal-list > div {
  display: grid;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  grid-template-columns: minmax(11rem, 0.7fr) 1.3fr;
}

.legal-list dt {
  color: var(--ink-soft);
  font-weight: 600;
}

.legal-list dd {
  margin: 0;
}

.legal-draft-notice,
.legal-disclaimer {
  padding: 1rem 1.2rem;
  border-left: 4px solid #a66600;
  background: #fff4dc;
  color: #513400;
  font-size: 0.88rem;
}

.legal-disclaimer {
  margin-top: 2rem;
}

.related-pages__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.related-pages__grid > a {
  display: flex;
  min-height: 12rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--navy);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.related-pages__grid > a:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 122, 120, 0.45);
  box-shadow: 0 18px 45px rgba(18, 48, 71, 0.08);
}

.related-pages__grid > a > span {
  color: var(--petrol-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-pages__grid strong {
  margin-block: auto;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.15;
}

.related-pages__grid small {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

/* Consolidated service-area overview: cities, on-site work and practice option. */
.service-area__panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--ivory);
}

.service-area__places,
.aml-place-list {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 0.65rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.service-area__places li,
.aml-place-list li {
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(43, 122, 120, 0.14);
  border-radius: 0.6rem;
  background: var(--white);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.3;
}

.service-area__modes {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  border-top: 1px solid var(--border);
}

.service-area__modes > div {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius);
  background: var(--white);
}

.service-area__mode-label {
  color: var(--petrol-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-area__modes h3 {
  margin: 0.45rem 0 0.75rem;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

.service-area__modes p {
  margin: 0;
  color: var(--ink-soft);
}

.service-area__panel > .text-link {
  margin-top: 1.75rem;
}

.seo-landing {
  background: var(--white);
}

.seo-landing__hero {
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 6rem);
  background: var(--ivory);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.breadcrumbs a {
  color: var(--petrol-dark);
}

.seo-landing__hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 1.3fr) minmax(17rem, 0.7fr);
}

.seo-landing__hero h1 {
  max-width: 16ch;
}

.seo-landing__lead {
  max-width: 46rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.seo-landing__trust {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: var(--navy);
  box-shadow: var(--shadow);
  color: var(--white);
}

.seo-landing__trust > strong,
.seo-landing__trust > span {
  display: block;
}

.seo-landing__trust > strong {
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.seo-landing__trust > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.seo-landing__trust ul {
  padding: 1.5rem 0 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.seo-landing__trust li {
  position: relative;
  padding-left: 1.25rem;
  color: #d9eee9;
  font-size: 0.88rem;
}

.seo-landing__trust li + li {
  margin-top: 0.7rem;
}

.seo-landing__trust li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #78c2b8;
  content: "";
}

.seo-landing__article {
  padding-block: clamp(4rem, 9vw, 8rem);
}

.seo-landing__content {
  width: min(calc(100% - 2.5rem), 820px);
}

.aml-content-section + .aml-content-section {
  padding-top: clamp(3rem, 7vw, 5rem);
  margin-top: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid var(--border);
}

.aml-content-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.aml-content-section > p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.aml-content-list {
  margin-top: 2rem;
}

.aml-place-list {
  margin-top: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.aml-content-faq .faq-list {
  margin-top: 2.5rem;
}

.aml-source-note {
  padding: 1rem 1.2rem;
  margin-top: 4rem;
  border-left: 4px solid var(--petrol);
  background: var(--mint);
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.content-review {
  padding-top: 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.content-review p {
  margin-bottom: 0.3rem;
}

.related-pages {
  background: var(--mint);
}

.related-pages__grid > a {
  background: var(--white);
}

.error-page {
  display: flex;
  align-items: center;
}

.error-page p:not(.eyebrow) {
  max-width: 36rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal--delay {
  transition-delay: 100ms;
}

.reveal--delay-2 {
  transition-delay: 200ms;
}

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

@media (max-width: 1024px) {
  .hero__grid {
    gap: 3rem;
    grid-template-columns: 1fr 0.72fr;
  }

  .desktop-nav {
    gap: 1.2rem;
  }

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

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

  .service-card:nth-child(3n) {
    border-right: 1px solid rgba(18, 48, 71, 0.12);
  }

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .service-card:nth-child(n + 4) {
    border-bottom: 1px solid rgba(18, 48, 71, 0.12);
  }

  .service-card:nth-child(n + 5) {
    border-bottom: 0;
  }
}

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

  body.admin-bar .site-header {
    top: 46px;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .section-heading--split,
  .about__grid,
  .contact__box,
  .seo-landing__hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 34rem;
  }

  .section-heading--split {
    align-items: start;
    gap: 1rem;
  }

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

  .benefit-card,
  .process-list li {
    min-height: auto;
  }

  .benefit-card__number,
  .process-list li > span {
    margin-bottom: 2rem;
  }

  .about__portrait {
    width: min(100%, 34rem);
    margin-inline: auto;
  }

  .about__copy {
    max-width: 40rem;
  }

  .service-area__places,
  .aml-place-list,
  .related-pages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 4rem;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .shell,
  .shell--wide,
  .faq__shell,
  .legal-page__shell,
  .content-page__shell,
  .seo-landing__content {
    width: min(calc(100% - 2rem), 100%);
  }

  .section {
    padding-block: 5rem;
  }

  .brand__mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .brand__text {
    font-size: 0.73rem;
  }

  .brand__text strong {
    font-size: 0.82rem;
  }

  .header-phone {
    width: 2.85rem;
    padding: 0;
    justify-content: center;
  }

  .header-phone__label {
    display: none;
  }

  .hero {
    padding-block: 3.5rem 5rem;
  }

  .hero__grid {
    gap: 2.5rem;
  }

  .hero__lead {
    font-size: 1.08rem;
  }

  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-card__topline {
    margin-bottom: 2rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .service-grid {
    display: block;
  }

  .service-card,
  .service-card:nth-child(2n),
  .service-card:nth-child(3n),
  .service-card:nth-child(n + 4),
  .service-card:nth-child(n + 5) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 48, 71, 0.12);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-card__number {
    margin-bottom: 2rem;
  }

  .portrait-caption {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .process-list li {
    padding: 1.5rem;
  }

  .faq-list summary {
    min-height: 4.5rem;
    gap: 1rem;
  }

  .contact__box {
    padding: 2rem 1.25rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .service-area__places,
  .service-area__modes,
  .aml-place-list,
  .related-pages__grid {
    grid-template-columns: 1fr;
  }

  .related-pages__grid > a {
    min-height: 10rem;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: var(--navy);
    box-shadow: 0 -10px 30px rgba(18, 48, 71, 0.18);
    grid-template-columns: 1fr 1fr;
  }

  .mobile-contact-bar a {
    display: flex;
    min-height: 4rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
  }

  .legal-list > div {
    gap: 0.25rem;
    grid-template-columns: 1fr;
  }
}

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

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

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

@media print {
  .site-header,
  .site-footer,
  .mobile-contact-bar,
  .button-row {
    display: none !important;
  }

  body {
    padding: 0;
    background: #fff;
    color: #000;
  }

  a {
    color: #000;
  }
}
