@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("fonts/lora-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --paper: #f4f2ec;
  --white: #fbfaf6;
  --ink: #19312d;
  --muted: #5f6f69;
  --line: #d5ded7;
  --teal: #346b62;
  --teal-dark: #244d47;
  --sage: #b8c9b9;
  --sage-soft: #e6eee7;
  --amber: #a97d47;
  --amber-soft: #f3eadc;
  --graphite: #203e39;
  --shadow: 0 24px 70px rgba(32, 62, 57, 0.12);
  --radius: 8px;
  --max: 1520px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(230, 238, 231, 0.82), rgba(244, 242, 236, 0.62) 38%, var(--paper) 100%),
    var(--paper);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

p,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding-left: 1.15rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(213, 222, 215, 0.88);
  background: rgba(244, 242, 236, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark,
.brand-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.brand-mark {
  display: grid;
  place-items: center;
  border: 1px solid rgba(52, 107, 98, 0.24);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--teal);
  font-family: "Lora", Georgia, serif;
  font-size: 20px;
  box-shadow: 0 10px 22px rgba(52, 107, 98, 0.1);
}

.brand-logo {
  object-fit: contain;
}

.brand small {
  display: block;
  margin-top: -3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--graphite);
  font-size: 15px;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--sage-soft);
  color: var(--teal-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 16px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-cta,
.button.primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 16px 28px rgba(52, 107, 98, 0.2);
}

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

.button.ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
  font-weight: 800;
}

.hero {
  width: min(var(--max), calc(100% - 40px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 58px 0 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(500px, 0.95fr);
  align-items: center;
  gap: 48px;
}

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

.hero h1,
.page-hero h1,
.section-head h2,
.split h2,
.article h2,
.contact-card h2 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  font-weight: 700;
  line-height: 1.06;
}

.hero-copy > p {
  max-width: 610px;
  margin-top: 26px;
  color: var(--graphite);
  font-size: 21px;
  line-height: 1.55;
}

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

.hero-proof {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-item {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.proof-item--quality {
  border-top: 2px solid var(--amber);
}

a.proof-item {
  transition: border-color 0.2s ease, color 0.2s ease;
}

a.proof-item:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.proof-item strong {
  display: block;
  font-family: "Lora", Georgia, serif;
  font-size: 26px;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.proof-item .proof-label {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.proof-item--quality .proof-label,
.proof-item--quality strong {
  color: #815a2d;
}

.hero-media {
  position: relative;
  min-height: 700px;
}

.portrait-stack {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 16px;
}

.portrait-main {
  position: relative;
  grid-row: 2;
  z-index: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption-panel {
  position: relative;
  grid-row: 1;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  width: auto;
  border-bottom: 1px solid var(--line);
  padding: 0 0 16px;
}

.caption-panel strong,
.method strong,
.team-card strong,
.timeline strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
}

.caption-panel span,
.method span,
.timeline span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.caption-panel strong {
  color: var(--teal-dark);
  font-family: "Lora", Georgia, serif;
  font-size: 21px;
}

.seal-strip {
  position: relative;
  grid-row: 3;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.seal {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(169, 125, 71, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 234, 220, 0.96)),
    var(--white);
  padding: 16px;
  box-shadow: 0 18px 46px rgba(91, 64, 29, 0.13);
}

.seal::after {
  content: "";
  position: absolute;
  top: -38px;
  right: -32px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(169, 125, 71, 0.18);
  border-radius: 50%;
}

.award-medallion {
  width: 62px;
  height: 62px;
  display: grid;
  place-content: center;
  border: 1px solid #9b723f;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #f8e8c8 0 18%, #d2ad72 54%, #9b6d34 100%);
  color: #3c2b16;
  box-shadow:
    inset 0 0 0 4px rgba(255, 250, 239, 0.72),
    0 8px 18px rgba(91, 64, 29, 0.2);
  text-align: center;
}

.award-medallion small,
.award-medallion strong {
  display: block;
  margin: 0;
  line-height: 1;
}

.award-medallion small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.award-medallion strong {
  margin-top: 3px;
  font-family: "Lora", Georgia, serif;
  font-size: 18px;
}

.seal-copy {
  min-width: 0;
  display: block;
}

.seal b {
  display: block;
  position: relative;
  z-index: 1;
  color: var(--teal-dark);
  font-family: "Lora", Georgia, serif;
  font-size: 16px;
  line-height: 1.16;
}

.seal-copy > span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.seal-copy .seal-eyebrow {
  display: block;
  margin: 0 0 5px;
  color: #815a2d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-transform: uppercase;
}

main > section,
.page-main > section {
  padding: 88px 0;
}

.section,
.page-main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

section[id],
article[id] {
  scroll-margin-top: 100px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 38px;
}

.hero > *,
.page-hero > *,
.section-head > *,
.split-layout > *,
.reimbursement-wrap > *,
.article-grid > *,
.team-grid > * {
  min-width: 0;
}

.article-stack,
.article,
.timeline,
.timeline-item,
.timeline-item > *,
.contact-card {
  min-width: 0;
}

.section-head--compact {
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  align-items: start;
}

.section-head h2,
.split h2,
.contact-card h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.section-head--compact h2 {
  font-size: clamp(2.4rem, 3.35vw, 3.6rem);
  line-height: 1.08;
}

.section-head p,
.split > p,
.article p,
.page-hero p {
  color: var(--muted);
  font-size: 19px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  padding: 26px;
}

.service-card img {
  width: 100%;
  height: clamp(144px, 11vw, 190px);
  margin-bottom: 24px;
  border-radius: var(--radius);
  object-fit: cover;
}

.service-card h3,
.article h3 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: 27px;
  line-height: 1.08;
}

.service-card p,
.team-card p,
.method p {
  margin-top: 13px;
  color: var(--muted);
}

.link-arrow {
  margin-top: 24px;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 800;
}

.band {
  background: var(--graphite);
  color: var(--white);
}

.band .section-head {
  width: 100%;
  max-width: 1312px;
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 72px;
}

.band .section-head p,
.band .split > p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.7);
}

.symptom-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.symptom-list a,
.symptom-list span {
  min-height: 72px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgba(230, 238, 231, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: center;
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 250px 190px;
  gap: 12px;
}

.image-mosaic img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(32, 62, 57, 0.12);
}

.image-mosaic img:first-child {
  grid-row: span 2;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
}

.timeline-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--sage-soft);
  color: var(--teal-dark);
  font-family: "Lora", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.reimbursement-section {
  padding: clamp(72px, 9vw, 120px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--graphite);
  color: var(--white);
}

.reimbursement-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.reimbursement-copy h2 {
  margin: 0;
  max-width: 760px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reimbursement-copy > p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.reimbursement-check {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: none;
}

.reimbursement-check > strong {
  display: block;
  font-family: "Lora", Georgia, serif;
  font-size: 24px;
  line-height: 1.15;
}

.reimbursement-check ul {
  margin: 22px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.reimbursement-check li {
  position: relative;
  padding-left: 27px;
  color: rgba(255, 255, 255, 0.9);
}

.reimbursement-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 900;
}

.reimbursement-cta {
  align-self: flex-start;
  margin-bottom: 22px;
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: none;
}

.reimbursement-check small {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.55;
}

.team-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.team-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
  box-shadow: 0 12px 35px rgba(32, 62, 57, 0.06);
}

.team-card img {
  width: 100%;
  height: 270px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 44% center;
}

.team-card.compact {
  display: block;
  padding: 26px;
}

.team-card.compact strong {
  margin-top: 0;
}

.quality-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quality-panel article {
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 14px 34px rgba(32, 62, 57, 0.07);
}

.quality-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.quality-panel strong {
  display: block;
  font-family: "Lora", Georgia, serif;
  font-size: 25px;
  line-height: 1.16;
}

.quality-panel article:first-child {
  background: var(--graphite);
  color: var(--white);
}

.quality-panel article:first-child span {
  color: var(--sage);
}

.hours {
  display: grid;
  gap: 8px;
}

.hour-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.hour-row:last-child {
  border-bottom: 0;
}

.hour-row b {
  font-weight: 800;
}

.contact-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

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

.contact-card p {
  color: var(--muted);
}

.contact-card a {
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #18342f;
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 24px;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  gap: 24px;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand p,
.footer-column p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.55;
}

.footer-column strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

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

.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 38px auto 0;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.page-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 520px);
  gap: 56px;
  align-items: center;
}

.page-hero h1 {
  max-width: 100%;
  font-size: clamp(2.8rem, 4vw, 4.1rem);
  line-height: 1.06;
  overflow-wrap: normal;
  hyphens: auto;
}

.page-hero p {
  margin-top: 22px;
  max-width: 670px;
}

.page-hero img {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.page-hero .hero-image--treatment {
  object-position: 50% center;
}

.page-hero .hero-image--xray {
  object-position: 38% center;
}

.page-hero .hero-image--team {
  object-position: 68% center;
}

.page-hero .hero-image--contact {
  object-position: 47% center;
}

.article-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 46px;
}

.side-index {
  position: sticky;
  top: 108px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
}

.side-index strong {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.side-index a {
  display: block;
  border-top: 1px solid var(--line);
  padding: 11px 0;
  color: var(--graphite);
  font-weight: 700;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-stack {
  display: grid;
  gap: 18px;
}

.article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(24px, 4vw, 42px);
}

.article h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.article h3 {
  margin-top: 26px;
}

.article p + p,
.article p + ul,
.article ul + p,
.article .button {
  margin-top: 16px;
}

.article p + .method-grid,
.article h3 + .method-grid,
.article h3 + ul {
  margin-top: 16px;
}

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

.method-grid > * {
  min-width: 0;
}

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

.method strong {
  overflow-wrap: anywhere;
  hyphens: auto;
}

@media (max-width: 1240px) and (min-width: 1121px) {
  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.download-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.download-row a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sage-soft);
  padding: 18px;
  color: var(--teal-dark);
  font-weight: 800;
}

.map-frame {
  width: 100%;
  height: 430px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(0.15) saturate(0.9);
}

.route-panel {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sage-soft);
  padding: clamp(24px, 4vw, 42px);
}

.route-panel strong {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.article-actions .button {
  margin-top: 0;
}

.safety-note strong {
  display: block;
  margin-bottom: 6px;
}

.notice {
  border-left: 4px solid var(--amber);
  background: var(--amber-soft);
  padding: 18px;
  color: #5d4519;
}

@media (max-width: 1120px) {
  .band .section-head {
    max-width: none;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .page-hero,
  .section-head,
  .split-layout,
  .reimbursement-wrap,
  .article-grid,
  .team-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .quality-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-media {
    min-height: 680px;
  }

  .services-grid,
  .symptom-list,
  .method-grid,
  .contact-strip,
  .download-row {
    grid-template-columns: 1fr 1fr;
  }

  .side-index {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .section,
  .page-main,
  .page-hero,
  .hero,
  .reimbursement-wrap,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, var(--max));
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    gap: 28px;
  }

  .hero-copy {
    display: contents;
  }

  .hero h1 {
    order: 1;
  }

  .hero-copy > p {
    order: 3;
    margin-top: 0;
  }

  .hero-actions {
    order: 4;
    margin-top: 0;
  }

  .hero-media {
    order: 2;
  }

  .hero-proof {
    order: 5;
    margin-top: 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
    overflow-wrap: anywhere;
  }

  .article h2,
  .article h3,
  .method,
  .route-panel strong,
  .download-row a {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .article h2 {
    font-size: clamp(1.75rem, 8.5vw, 2.05rem);
    line-height: 1.08;
  }

  .article .button {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .hero-copy > p,
  .page-hero p,
  .section-head p,
  .split > p {
    font-size: 18px;
  }

  .hero-proof,
  .services-grid,
  .symptom-list,
  .method-grid,
  .contact-strip,
  .download-row {
    grid-template-columns: 1fr;
  }

  .proof-item--quality {
    border: 1px solid rgba(169, 125, 71, 0.36);
    border-left: 4px solid var(--amber);
    border-radius: var(--radius);
    background: var(--amber-soft);
    padding: 16px;
  }

  .hero-media {
    min-height: 0;
  }

  .portrait-stack {
    position: static;
    inset: auto;
    grid-template-rows: auto auto;
  }

  .portrait-main {
    position: relative;
    inset: auto;
    aspect-ratio: 3 / 2;
  }

  .portrait-main img {
    object-position: center;
  }

  .caption-panel {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-bottom: 12px;
  }

  .caption-panel strong {
    font-size: 18px;
  }

  .timeline-item {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .timeline-number {
    width: 44px;
    height: 44px;
  }

  .contact-card a,
  .footer-column a {
    overflow-wrap: anywhere;
  }

  .reimbursement-cta {
    width: 100%;
  }

  .seal-strip {
    display: none;
  }

  main > section,
  .page-main > section {
    padding: 62px 0;
  }

  .image-mosaic {
    grid-template-rows: 210px 170px 170px;
    grid-template-columns: 1fr;
  }

  .image-mosaic img:first-child {
    grid-row: auto;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: 290px;
  }

  .footer-bottom {
    display: grid;
  }

  .hour-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

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

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