@font-face {
  font-family: "Rubik";
  src: url("assets/fonts/Rubik-Regular/font.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("assets/fonts/Rubik-Bold/font.ttf") format("truetype");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --navy: #071f33;
  --navy-2: #0d3047;
  --navy-3: #24485d;
  --green: #5b8d2a;
  --green-dark: #3d681c;
  --green-soft: #e7efdf;
  --paper: #f4f6f3;
  --white: #ffffff;
  --mist: #e8ece8;
  --line: #cbd3ce;
  --ink: #081d2d;
  --ink-soft: #445763;
  --error: #a42929;
  --focus: #156c87;
  --radius-control: 6px;
  --radius-surface: 12px;
  --shell: min(1380px, calc(100% - 64px));
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-move: cubic-bezier(.77, 0, .175, 1);
  --shadow: 0 24px 70px rgba(7, 31, 51, .14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Rubik", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
blockquote,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

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

.site-header :focus-visible,
.hero :focus-visible,
.service-focus :focus-visible,
.review-large :focus-visible,
.contact :focus-visible,
.mobile-actions :focus-visible {
  outline-color: #a9d36b;
}

.shell,
.container {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--navy);
  transform: translateY(-160%);
  transition: transform 160ms var(--ease-out);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 74px;
  background: rgba(7, 31, 51, .97);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(7, 31, 51, .16);
}

.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: .96rem;
  letter-spacing: -.02em;
}

.brand small {
  margin-top: 5px;
  color: #b8c7cf;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

.navigation a {
  position: relative;
  padding: 11px 0;
  color: #d7e0e4;
  font-size: .78rem;
  font-weight: 700;
}

.navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: #87b751;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}

.navigation a[aria-current="location"]::after,
.navigation a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  align-self: stretch;
  min-width: 192px;
  display: grid;
  align-content: center;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.header-contact span {
  color: #a7bac4;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.header-contact strong {
  margin-top: 2px;
  font-size: .9rem;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: var(--radius-control);
  background: transparent;
  color: var(--white);
}

.menu-button i {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms var(--ease-out);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.82) contrast(1.04);
  animation: hero-image 1100ms var(--ease-out) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 31, 51, .18), rgba(7, 31, 51, 0) 60%, rgba(7, 31, 51, .2));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: flex;
  align-items: stretch;
}

.hero-panel {
  width: min(720px, 57%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 110px 80px 0;
  background: linear-gradient(135deg, var(--navy), #08253b);
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
  animation: hero-panel 760ms var(--ease-out) both;
}

.hero-kicker {
  margin-bottom: 22px;
  color: #9bc56b;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 590px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 5.8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .95;
}

.hero h1::after {
  content: "";
  display: block;
  width: 92px;
  height: 5px;
  margin-top: 28px;
  background: #7eaf48;
  transform-origin: left;
  animation: line-grow 700ms 420ms var(--ease-out) both;
}

.hero-lead {
  max-width: 500px;
  margin-bottom: 34px;
  color: #d2dee3;
  font-size: 1.12rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 140ms var(--ease-out), background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:active {
  transform: scale(.97);
}

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

.button-light {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(7, 31, 51, .3);
  color: var(--white);
}

.hero-person {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 360px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, .96);
  color: var(--navy);
  box-shadow: var(--shadow);
  animation: hero-contact 620ms 440ms var(--ease-out) both;
}

.hero-person span {
  display: block;
  color: var(--ink-soft);
  font-size: .65rem;
}

.hero-person strong {
  display: block;
  margin: 2px 0 6px;
  font-size: 1.15rem;
}

.hero-person a {
  color: var(--green-dark);
  font-size: .76rem;
  font-weight: 700;
}

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

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
}

.trust-grid > * {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 20px 26px;
  border-left: 1px solid var(--line);
}

.trust-grid > *:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid strong {
  font-size: .83rem;
}

.trust-grid span {
  color: var(--ink-soft);
  font-size: .7rem;
}

.trust-rating {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  background: var(--navy);
  color: var(--white);
}

.trust-rating > strong {
  font-size: 2.7rem;
  line-height: 1;
}

.trust-rating span {
  color: #c9d7dd;
}

.trust-rating b {
  display: block;
  color: #a9d36b;
  letter-spacing: .06em;
}

.section {
  padding: clamp(88px, 9vw, 132px) 0;
}

.kicker {
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 920px;
  margin-bottom: 56px;
}

.section-intro h2,
.process-heading h2,
.personal-copy h2,
.reviews-heading h2,
.faq-intro h2,
.contact-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .97;
}

.section-intro > p {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.service-stage {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  grid-template-rows: repeat(2, minmax(340px, auto));
  gap: 18px;
}

.service-focus,
.service-media {
  overflow: hidden;
  border-radius: var(--radius-surface);
}

.service-focus {
  grid-row: 1 / 3;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  padding: clamp(38px, 5vw, 68px);
  background: var(--navy);
  color: var(--white);
}

.service-focus-copy > span,
.service-media > div > span {
  color: #a9bdc7;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.service-focus h3 {
  max-width: 590px;
  margin: 23px 0;
  font-size: clamp(2.7rem, 4.8vw, 5.2rem);
  letter-spacing: -.04em;
  line-height: .95;
}

.service-focus-copy > p {
  max-width: 610px;
  color: #cad8de;
  font-size: 1.05rem;
}

.service-focus ul {
  margin: auto 0 34px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .25);
}

.service-focus li {
  display: grid;
  grid-template-columns: minmax(150px, .72fr) 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.service-focus li strong {
  font-size: .84rem;
}

.service-focus li span {
  color: #b9cbd3;
  font-size: .78rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 700;
}

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

.service-media {
  min-height: 340px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(7, 31, 51, .08);
}

.service-media picture,
.service-media picture img {
  width: 100%;
  height: 100%;
}

.service-media img {
  object-fit: cover;
  filter: saturate(.72);
  transition: transform 700ms var(--ease-out), filter 300ms ease;
}

.service-media > div {
  align-self: center;
  padding: 30px;
}

.service-media > div > span {
  color: var(--green-dark);
}

.service-media h3 {
  margin: 14px 0;
  font-size: clamp(1.55rem, 2.5vw, 2.5rem);
  letter-spacing: -.035em;
  line-height: 1.02;
}

.service-media p {
  color: var(--ink-soft);
  font-size: .84rem;
}

.service-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-top: 18px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-surface);
  background: var(--white);
}

.service-extra p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.service-extra span {
  color: var(--ink-soft);
  font-size: .8rem;
}

.service-extra a {
  flex: none;
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 700;
}

.process {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.process-heading {
  max-width: 820px;
  margin-bottom: 66px;
}

.process-heading > p:last-child {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

.process-route::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 12.5%;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1100ms var(--ease-out);
}

.process-route.is-visible::before {
  transform: scaleX(1);
}

.process-route li {
  counter-increment: route;
  position: relative;
  min-height: 225px;
  padding: 28px 34px 0 0;
}

.process-route li::before {
  content: "0" counter(route);
  position: absolute;
  top: -46px;
  left: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: var(--white);
  color: var(--green-dark);
  font-size: .62rem;
  font-weight: 700;
}

.process-route span {
  color: var(--green-dark);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.process-route h3 {
  margin: 10px 0;
  font-size: 1.24rem;
}

.process-route p {
  max-width: 290px;
  color: var(--ink-soft);
  font-size: .84rem;
}

.personal {
  background: var(--mist);
}

.personal-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
}

.personal-statement {
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 4.5vw, 58px);
  border-radius: var(--radius-surface);
  background: var(--navy);
  color: var(--white);
}

.personal-statement p {
  font-size: clamp(2.35rem, 4.1vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.04;
}

.personal-statement span {
  color: #acc0ca;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.personal-copy {
  max-width: 760px;
}

.personal-lead {
  font-size: 1.12rem;
}

.personal-copy > p:not(.kicker) {
  color: var(--ink-soft);
}

.personal-facts {
  margin-top: 34px;
  border-top: 1px solid #b9c4be;
}

.personal-facts div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid #b9c4be;
}

.personal-facts dt {
  color: var(--green-dark);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.personal-facts dd {
  color: var(--ink-soft);
  font-size: .85rem;
}

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

.reviews-heading {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 60px;
  align-items: end;
  margin-bottom: 18px;
}

.reviews-heading h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.reviews-score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-surface);
  background: var(--navy);
  color: var(--white);
}

.reviews-score > strong {
  font-size: 3.3rem;
  line-height: 1;
}

.reviews-score span {
  color: #c7d5db;
  font-size: .7rem;
}

.reviews-score b {
  display: block;
  color: #a9d36b;
}

.review-grid {
  display: grid;
  grid-template-columns: 1.32fr .68fr;
  grid-template-rows: repeat(2, minmax(240px, auto));
  gap: 14px;
}

.review {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-surface);
  background: var(--white);
}

.review-large {
  grid-row: 1 / 3;
  min-height: 494px;
  background: var(--navy);
  color: var(--white);
}

.review blockquote {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.38;
}

.review-large blockquote {
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  letter-spacing: -.04em;
  line-height: 1.03;
}

.review figcaption {
  margin-top: 26px;
  color: currentColor;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reviews-note {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 22px;
}

.reviews-note p {
  max-width: 670px;
  margin: 0;
  color: var(--ink-soft);
  font-size: .74rem;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: .56fr 1.44fr;
  gap: 8vw;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro > p:last-child {
  color: var(--ink-soft);
}

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

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

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  flex: none;
  color: var(--green-dark);
  font-size: 1.35rem;
  transition: transform 180ms var(--ease-out);
}

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

.faq-list details p {
  max-width: 740px;
  padding: 0 50px 25px 0;
  color: var(--ink-soft);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 7vw;
}

.contact .kicker {
  color: #9bc56b;
}

.contact-copy > p:not(.kicker) {
  max-width: 570px;
  color: #c1d0d7;
}

.contact-links {
  margin-top: 36px;
  border-top: 1px solid #476273;
}

.contact-links a {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #476273;
}

.contact-links span {
  color: #9db0ba;
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-links strong {
  overflow-wrap: anywhere;
  font-size: .88rem;
}

.contact-form {
  display: grid;
  gap: 17px;
  padding: clamp(30px, 4vw, 54px);
  border-radius: var(--radius-surface);
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label > span {
  font-size: .72rem;
  font-weight: 700;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid #aebbb4;
  border-radius: var(--radius-control);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--focus);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(21, 108, 135, .16);
}

.contact-form .invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(164, 41, 41, .12);
}

.privacy {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.privacy input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.privacy a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-requirement,
.form-hint {
  margin: -8px 0 0;
  color: var(--ink-soft);
  font-size: .72rem;
}

.form-status {
  min-height: 1.4em;
  margin: -7px 0 0;
  color: var(--error);
  font-size: .8rem;
  font-weight: 700;
}

.button-submit {
  justify-self: start;
  border: 0;
}

.footer {
  padding: 70px 0 28px;
  border-top: 5px solid var(--green);
  background: #e4e9e5;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 48px;
}

.footer .brand {
  color: var(--navy);
}

.footer .brand small {
  color: var(--ink-soft);
}

.footer-brand p {
  max-width: 280px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: .8rem;
}

.footer-top > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-soft);
  font-size: .78rem;
}

.footer-top > div > strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid #b8c3bd;
  color: var(--ink-soft);
  font-size: .71rem;
}

.mobile-actions {
  display: none;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(3px);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out), filter 650ms var(--ease-out);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes hero-image {
  from {
    transform: scale(1.035);
    filter: saturate(.65) contrast(1.08) blur(3px);
  }
  to {
    transform: scale(1);
    filter: saturate(.82) contrast(1.04) blur(0);
  }
}

@keyframes hero-panel {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-contact {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes line-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (hover: hover) and (pointer: fine) {
  .navigation a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

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

  .button-primary:hover {
    background: #315817;
  }

  .button-light:hover {
    background: rgba(255, 255, 255, .12);
  }

  .service-media:hover img {
    transform: scale(1.035);
    filter: saturate(.9);
  }

  .text-link:hover,
  .service-extra a:hover,
  .footer a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .trust-rating:hover,
  .reviews-score:hover {
    background: var(--navy-2);
  }
}

/* Legal pages use the same materials, typography and navigation. */
.legal-page {
  background: var(--paper);
  padding-bottom: 0;
}

.legal-page .site-header {
  position: sticky;
}

.legal-hero {
  min-height: 390px;
  display: grid;
  align-items: end;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.legal-grid {
  display: none;
}

.legal-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: end;
  padding-block: clamp(70px, 8vw, 110px);
}

.legal-hero .kicker span {
  display: none;
}

.legal-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(4.4rem, 8vw, 6rem);
  letter-spacing: -.04em;
  line-height: .94;
}

.legal-hero div > p:not(.kicker) {
  max-width: 640px;
  margin: 25px 0 0;
  color: var(--ink-soft);
}

.legal-stamp {
  width: 180px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius-surface);
  background: var(--white);
}

.legal-stamp span,
.legal-stamp small {
  color: var(--ink-soft);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-stamp strong {
  margin: 7px 0 22px;
  color: var(--green-dark);
  font-size: 1.2rem;
}

.legal-content {
  padding: clamp(72px, 8vw, 120px) 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 880px);
  justify-content: center;
  align-items: start;
  gap: clamp(52px, 8vw, 116px);
}

.legal-aside {
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 23px 0;
  border-top: 2px solid var(--navy);
  border-bottom: 1px solid var(--line);
}

.legal-aside p {
  margin: 0 0 12px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-aside a {
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 700;
}

.legal-document {
  min-width: 0;
}

.legal-block {
  scroll-margin-top: 105px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.legal-block-lead {
  padding-top: 0;
  border-top: 0;
}

.legal-eyebrow {
  margin: 0 0 13px !important;
  color: var(--green-dark) !important;
  font-size: .7rem !important;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.legal-block h2 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(2.05rem, 3.8vw, 3.4rem);
  letter-spacing: -.035em;
  line-height: 1.02;
}

.legal-block h3 {
  margin: 32px 0 10px;
  font-size: 1.06rem;
}

.legal-block p {
  max-width: 75ch;
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.legal-intro {
  color: var(--ink) !important;
  font-size: 1.1rem;
  font-weight: 700;
}

.legal-address,
.authority-card {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 26px 28px;
  border-radius: var(--radius-surface);
  background: var(--mist);
  font-style: normal;
}

.legal-address strong,
.authority-card strong {
  margin-bottom: 7px;
}

.legal-address span,
.legal-address a,
.authority-card span {
  color: var(--ink-soft);
}

.authority-card a {
  color: var(--green-dark);
  font-weight: 700;
}

.legal-contact-cards {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 14px;
}

.legal-contact-cards a {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius-surface);
  background: var(--white);
}

.legal-contact-cards small {
  grid-column: 1 / -1;
  margin-bottom: 9px;
  color: var(--ink-soft);
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-contact-cards strong {
  overflow-wrap: anywhere;
  font-size: .83rem;
}

.legal-contact-cards span {
  color: var(--green-dark);
}

.legal-note {
  max-width: 760px !important;
  margin-top: 24px !important;
  padding: 19px 21px;
  border-radius: var(--radius-surface);
  background: var(--mist);
  color: var(--ink-soft) !important;
  font-size: .88rem;
}

.privacy-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.privacy-facts div {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-surface);
  background: var(--white);
}

.privacy-facts span {
  color: var(--green-dark);
  font-size: .66rem;
  font-weight: 700;
}

.privacy-facts strong {
  margin: auto 0 5px;
}

.privacy-facts small {
  color: var(--ink-soft);
  line-height: 1.5;
}

.legal-finish {
  margin-top: 28px;
  padding: 27px 29px;
  border-radius: var(--radius-surface);
  background: var(--green-dark);
  color: var(--white);
}

.legal-finish p {
  margin: 8px 0 0;
  color: var(--white);
  font-size: .84rem;
}

@media (max-width: 1180px) {
  .navigation {
    gap: 18px;
  }

  .navigation a {
    font-size: .72rem;
  }

  .header-contact {
    min-width: 174px;
    padding-left: 18px;
  }

  .hero-panel {
    width: 62%;
  }

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

  .service-focus {
    grid-row: auto;
    min-height: 650px;
  }

  .service-media {
    min-height: 360px;
  }
}

@media (max-width: 940px) {
  :root {
    --shell: min(100% - 36px, 780px);
  }

  .site-header,
  .header-inner {
    height: 70px;
  }

  .menu-button {
    display: block;
  }

  .header-contact {
    min-width: 0;
    align-self: auto;
    display: block;
    padding-left: 0;
    border: 0;
  }

  .header-contact span {
    display: none;
  }

  .header-contact strong {
    font-size: .78rem;
  }

  .navigation {
    position: fixed;
    z-index: 110;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 16px 18px 24px;
    background: var(--navy);
    box-shadow: 0 26px 55px rgba(7, 31, 51, .28);
    opacity: 0;
    transform: translateY(-14px);
    transform-origin: top;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), visibility 0s linear 180ms;
  }

  .navigation.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .navigation a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    font-size: .88rem;
  }

  .menu-button[aria-expanded="true"] i:first-of-type {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] i:last-of-type {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-panel {
    width: 74%;
    padding-right: 105px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 7vw, 4.7rem);
  }

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

  .trust-grid > *:nth-child(odd) {
    border-right: 0;
  }

  .trust-grid > *:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .process-route {
    grid-template-columns: 1fr 1fr;
    gap: 56px 30px;
  }

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

  .process-route li {
    min-height: 180px;
    padding-top: 20px;
    border-top: 2px solid var(--green);
  }

  .process-route li::before {
    top: -18px;
  }

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

  .personal-statement {
    min-height: 440px;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
  }

  .reviews-score {
    max-width: 330px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-intro {
    position: static;
  }

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

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

  .legal-aside {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 9px 22px;
  }

  .legal-aside p {
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    padding-bottom: 62px;
  }

  .header-inner {
    gap: 12px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: .86rem;
  }

  .brand small {
    font-size: .56rem;
  }

  .header-contact {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    inset: 0 0 0 24%;
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-shade {
    background: rgba(7, 31, 51, .2);
  }

  .hero-inner {
    min-height: 720px;
    align-items: flex-end;
  }

  .hero-panel {
    width: calc(100% + 14px);
    min-height: 520px;
    justify-content: flex-end;
    margin-left: -14px;
    padding: 52px 34px 160px 28px;
    clip-path: polygon(0 0, 100% 9%, 100% 100%, 0 100%);
  }

  .hero-kicker {
    margin-bottom: 16px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .hero h1::after {
    margin-top: 20px;
  }

  .hero-lead {
    margin-bottom: 26px;
    font-size: .98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-person {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
    padding: 16px 18px;
  }

  .trust-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .trust-grid > * {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .trust-grid > *:nth-child(n+3) {
    border-top: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-intro h2,
  .process-heading h2,
  .personal-copy h2,
  .reviews-heading h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(2.55rem, 12vw, 3.45rem);
  }

  .service-focus {
    min-height: 0;
    padding: 32px 24px;
  }

  .service-focus h3 {
    font-size: 2.65rem;
  }

  .service-focus-copy > p {
    font-size: .95rem;
  }

  .service-focus ul {
    margin-top: 38px;
  }

  .service-focus li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .service-media {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .service-media picture {
    aspect-ratio: 4 / 3;
  }

  .service-media > div {
    padding: 27px 24px 31px;
  }

  .service-extra {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-route {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 20px;
  }

  .process-route li {
    min-height: 0;
    padding: 32px 0 0 52px;
    border-top: 0;
    border-left: 2px solid var(--green);
  }

  .process-route li::before {
    top: 28px;
    left: -18px;
  }

  .personal-statement {
    min-height: 390px;
  }

  .personal-statement p {
    font-size: 2.65rem;
  }

  .personal-facts div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .review-large {
    grid-row: auto;
    min-height: 410px;
  }

  .review-large blockquote {
    font-size: 2.55rem;
  }

  .reviews-note {
    flex-direction: column;
  }

  .faq-list summary {
    padding: 21px 0;
  }

  .contact-links a {
    grid-template-columns: 72px 1fr auto;
  }

  .field-pair {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .footer {
    padding-bottom: 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    height: 62px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    border-top: 1px solid rgba(255, 255, 255, .2);
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 -10px 30px rgba(7, 31, 51, .22);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    font-size: .78rem;
    font-weight: 700;
  }

  .mobile-actions a:last-child {
    background: var(--green-dark);
  }

  .legal-hero {
    min-height: 360px;
  }

  .legal-hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 58px;
  }

  .legal-hero h1 {
    font-size: clamp(3.8rem, 18vw, 5.5rem);
  }

  .legal-stamp {
    width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    align-items: center;
  }

  .legal-stamp strong {
    margin: 0;
  }

  .legal-block {
    padding: 40px 0;
  }

  .privacy-facts,
  .legal-contact-cards {
    grid-template-columns: 1fr;
  }

  .privacy-facts div {
    min-height: 145px;
  }
}

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

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .hero-person {
    background: var(--navy);
  }

  .hero-person {
    color: var(--white);
  }

  .hero-person span {
    color: #c1d0d7;
  }

  .hero-person a {
    color: #a9d36b;
  }
}
