:root {
  --paper: #f7f5ef;
  --paper-deep: #ece9e1;
  --white: #fffefa;
  --ink: #173332;
  --ink-soft: #435654;
  --green: #4f807b;
  --green-deep: #315f5b;
  --green-dark: #244a47;
  --green-pale: #dce8e4;
  --green-wash: #edf3f0;
  --coral: #c8755b;
  --coral-dark: #99513e;
  --line: #cbd5d0;
  --focus: #0d5d95;
  --shadow: 0 14px 40px rgba(23, 51, 50, 0.09);
  --content: 1160px;
  --reading: 720px;
  --radius: 6px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--green-deep);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--coral-dark);
}

button,
input,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3,
p,
ul,
ol,
blockquote,
figure {
  margin-top: 0;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.12;
}

h1 {
  margin-bottom: 24px;
  font-size: 58px;
}

h2 {
  margin-bottom: 22px;
  font-size: 42px;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.3;
}

p {
  margin-bottom: 22px;
}

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

.reading-width {
  max-width: var(--reading);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 84px;
  border-bottom: 1px solid rgba(49, 95, 91, 0.16);
  background: rgba(247, 245, 239, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 220px;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

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

.brand-mark {
  width: 47px;
  height: 47px;
  flex: 0 0 47px;
}

.brand-text {
  display: grid;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
}

.brand-text small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 11px;
  border-bottom: 2px solid transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--coral);
  color: var(--green-deep);
}

.site-nav .nav-contact {
  margin-left: 8px;
  padding-inline: 17px;
  border: 1px solid var(--green-deep);
  border-radius: var(--radius);
  background: var(--green-deep);
  color: var(--white);
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact[aria-current="page"] {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--white);
}

.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}

.menu-icon {
  display: grid;
  width: 20px;
  gap: 4px;
}

.menu-icon span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 630px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--green-pale);
  isolation: isolate;
}

.hero-photo-field {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  background-color: var(--green-pale);
}

.hero-photo-field::before {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 37%;
  height: 67%;
  border: 2px solid rgba(49, 95, 91, 0.24);
  border-bottom: 0;
  content: "";
}

.hero-photo-field::after {
  position: absolute;
  right: 4%;
  bottom: 15%;
  width: 49%;
  height: 2px;
  background: rgba(49, 95, 91, 0.24);
  box-shadow: -96px 28px 0 rgba(200, 117, 91, 0.44);
  content: "";
  transform: rotate(-5deg);
}

.hero-copy {
  width: min(660px, 68%);
  padding: 64px 54px 64px 0;
  background: rgba(247, 245, 239, 0.91);
  box-shadow: -60px 0 0 rgba(247, 245, 239, 0.91);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 700;
}

.hero-lead,
.page-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid var(--green-deep);
  border-radius: var(--radius);
  background: var(--green-deep);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

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

.button-secondary {
  background: transparent;
  color: var(--green-deep);
}

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

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

.button-light:hover {
  border-color: var(--green-pale);
  background: var(--green-pale);
  color: var(--green-dark);
}

.cta-band .button-secondary {
  border-color: var(--green-pale);
  color: var(--white);
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.64;
}

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

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 24px 0;
  list-style: none;
}

.trust-list li {
  min-height: 42px;
  padding: 4px 24px;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.trust-list li:first-child {
  padding-left: 0;
}

.trust-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.section {
  padding: 104px 0;
}

.section-compact {
  padding: 72px 0;
}

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

.section-green-wash {
  background: var(--green-wash);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 52px;
}

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

.section-heading p {
  color: var(--ink-soft);
}

.intro-grid,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: 80px;
}

.photo-slot {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(49, 95, 91, 0.25);
  border-radius: var(--radius);
  background: var(--green-pale);
}

.photo-slot::before {
  position: absolute;
  top: 11%;
  right: 13%;
  width: 58%;
  height: 61%;
  border: 2px solid rgba(49, 95, 91, 0.24);
  content: "";
}

.photo-slot::after {
  position: absolute;
  right: -6%;
  bottom: 18%;
  width: 72%;
  height: 2px;
  background: var(--coral);
  content: "";
  opacity: 0.55;
  transform: rotate(-7deg);
}

.photo-slot-tall {
  min-height: 570px;
}

.photo-slot-wide {
  min-height: 360px;
}

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

.service-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  color: var(--ink);
  transform: translateY(-3px);
}

.service-number {
  margin-bottom: 46px;
  color: var(--coral-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.service-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
}

.service-card p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 16px;
}

.service-link {
  margin-top: auto;
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 700;
}

.quote-band {
  padding: 94px 0;
  background: var(--green-dark);
  color: var(--white);
}

.quote-band blockquote {
  max-width: 930px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.28;
  text-align: center;
}

.quote-band cite {
  display: block;
  margin-top: 26px;
  color: var(--green-pale);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  padding-top: 68px;
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green-deep);
  content: counter(steps);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.steps p {
  color: var(--ink-soft);
  font-size: 16px;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.values-list li {
  padding: 25px 12px;
  border-right: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  text-align: center;
}

.values-list li:last-child {
  border-right: 0;
}

.cta-band {
  padding: 76px 0;
  background: var(--green-deep);
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
}

.cta-inner h2 {
  margin-bottom: 12px;
  font-size: 38px;
}

.cta-inner p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--green-pale);
}

.page-hero {
  padding: 88px 0 80px;
  border-bottom: 1px solid var(--line);
  background: var(--green-wash);
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  align-items: end;
  gap: 70px;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero-mark {
  width: 190px;
  justify-self: end;
  opacity: 0.16;
}

.breadcrumb {
  margin-bottom: 23px;
  color: var(--ink-soft);
  font-size: 14px;
}

.breadcrumb a {
  color: inherit;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 90px;
}

.prose h2 {
  margin-top: 56px;
  font-size: 34px;
}

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

.prose h3 {
  margin-top: 36px;
}

.prose ul,
.check-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.prose li,
.check-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 29px;
}

.prose li::before,
.check-list li::before {
  position: absolute;
  top: 0.65em;
  left: 2px;
  width: 10px;
  height: 2px;
  background: var(--coral);
  content: "";
}

.aside-note {
  padding: 28px;
  border-left: 4px solid var(--coral);
  background: var(--white);
}

.aside-note h2,
.aside-note h3 {
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.aside-note p,
.aside-note li {
  font-size: 15px;
}

.aside-note p:last-child {
  margin-bottom: 0;
}

.treatment-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.treatment-row {
  display: grid;
  grid-template-columns: 72px minmax(200px, 0.55fr) minmax(0, 1fr);
  gap: 30px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.treatment-row .service-number {
  margin: 0;
}

.treatment-row h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
}

.treatment-row p {
  margin-bottom: 14px;
  color: var(--ink-soft);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fact {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.fact p:last-child {
  margin-bottom: 0;
}

.rate-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 17px;
}

.rate-table th,
.rate-table td {
  padding: 22px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.rate-table th:last-child,
.rate-table td:last-child {
  width: 145px;
  color: var(--green-deep);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.fine-print {
  color: var(--ink-soft);
  font-size: 14px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 6px;
  color: var(--green-deep);
  content: "+";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 48px 21px 0;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1fr);
  gap: 90px;
}

.contact-methods {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.contact-method {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-method span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.contact-method a,
.contact-method strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.contact-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #91a6a1;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--focus);
  outline: 3px solid rgba(13, 93, 149, 0.2);
}

.field-hint {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 13px;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-bottom: 24px;
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  margin: 4px 0 0;
  accent-color: var(--green-deep);
}

.checkbox-field label {
  font-size: 14px;
}

.form-status {
  min-height: 28px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.legal-copy {
  max-width: 780px;
}

.legal-copy h2 {
  margin-top: 48px;
  font-size: 30px;
}

.legal-copy h3 {
  margin-top: 32px;
}

.site-footer {
  padding: 68px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
  color: var(--green-pale);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(270px, 1.3fr) repeat(3, minmax(150px, 0.7fr));
  gap: 50px;
}

.footer-brand {
  margin-bottom: 18px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.footer-intro {
  max-width: 370px;
  color: #b9cfca;
  font-size: 15px;
}

.footer-heading {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--green-pale);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  margin-top: 54px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  justify-content: space-between;
  gap: 30px;
  color: #9db8b3;
  font-size: 12px;
}

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

@media (max-width: 1020px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 84px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100svh - 84px);
    align-items: stretch;
    padding: 18px 24px 30px;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 50px;
    padding-inline: 4px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .site-nav .nav-contact {
    margin: 13px 0 0;
    padding-inline: 18px;
    border-bottom: 1px solid var(--green-deep);
    justify-content: center;
  }

  .intro-grid,
  .split-layout,
  .contact-layout {
    gap: 54px;
  }

  .section-heading {
    gap: 48px;
  }

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

  .values-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .values-list li:nth-child(3) {
    border-right: 0;
  }

  .values-list li:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 68px;
    font-size: 17px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .container {
    width: min(calc(100% - 32px), var(--content));
  }

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

  .site-nav {
    top: 74px;
    max-height: calc(100svh - 74px);
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    min-height: 660px;
    align-items: end;
  }

  .hero-photo-field::before {
    top: 6%;
    right: 12%;
    width: 58%;
    height: 41%;
  }

  .hero-photo-field::after {
    right: -8%;
    bottom: 49%;
    width: 84%;
  }

  .hero-copy {
    width: 100%;
    margin-top: 230px;
    padding: 40px 0 48px;
    background: rgba(247, 245, 239, 0.94);
    box-shadow: -30px 0 0 rgba(247, 245, 239, 0.94), 30px 0 0 rgba(247, 245, 239, 0.94);
  }

  .hero-lead,
  .page-lead {
    font-size: 19px;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .trust-list li {
    display: grid;
    min-height: 72px;
    place-items: center;
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }

  .trust-list li:nth-child(2) {
    border-right: 0;
  }

  .trust-list li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section,
  .section-compact {
    padding: 72px 0;
  }

  .section-heading,
  .intro-grid,
  .split-layout,
  .content-grid,
  .contact-layout,
  .cta-inner,
  .page-hero .container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 36px;
  }

  .photo-slot,
  .photo-slot-tall {
    min-height: 410px;
  }

  .photo-slot-wide {
    min-height: 270px;
  }

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

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

  .quote-band {
    padding: 72px 0;
  }

  .quote-band blockquote {
    font-size: 32px;
    text-align: left;
  }

  .steps {
    gap: 18px;
  }

  .steps li {
    padding: 4px 0 20px 62px;
  }

  .values-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .values-list li,
  .values-list li:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .values-list li:nth-child(2n) {
    border-right: 0;
  }

  .values-list li:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .cta-inner h2 {
    font-size: 32px;
  }

  .page-hero {
    padding: 62px 0 56px;
  }

  .page-hero-mark {
    display: none;
  }

  .content-grid {
    gap: 50px;
  }

  .treatment-row {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px 16px;
  }

  .treatment-row > div:last-child {
    grid-column: 2;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

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

  .footer-bottom {
    display: grid;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    padding: 8px;
    border-top: 1px solid var(--line);
    background: var(--paper);
  }

  .mobile-contact-bar a {
    display: grid;
    min-height: 50px;
    place-items: center;
    border-radius: 4px;
    background: var(--green-deep);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
  }
}

@media (max-width: 390px) {
  .brand-text {
    font-size: 14px;
  }

  .menu-toggle {
    min-width: 44px;
    padding-inline: 9px;
  }

  .menu-toggle > span:last-child {
    display: none;
  }

  h1 {
    font-size: 37px;
  }
}

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

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

@media print {
  .site-header,
  .mobile-contact-bar,
  .button-row,
  .cta-band {
    display: none;
  }

  body {
    padding: 0;
    background: white;
    color: black;
  }
}
