:root {
  --ink: #1d3431;
  --muted: #5c716d;
  --line: #dce9e4;
  --soft: #f5fbf8;
  --mint: #d9efe4;
  --green: #4c8f63;
  --rose: #e84f88;
  --rose-dark: #b92f64;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(29, 52, 49, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 104px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 233, 228, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

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

.brand span {
  display: grid;
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  line-height: 1.05;
}

.brand small {
  color: var(--green);
  font-size: 0.68em;
  font-weight: 700;
  text-transform: uppercase;
}

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

.site-nav a {
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--rose-dark);
  background: #fff2f7;
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--rose);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active {
  color: var(--white);
  background: var(--rose-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 104px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
  background: linear-gradient(90deg, rgba(17, 44, 40, 0.84), rgba(17, 44, 40, 0.4) 58%, rgba(17, 44, 40, 0.18));
}

.hero-media,
.page-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide,
.page-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  filter: saturate(0.95);
  transition: opacity 1400ms ease, transform 5600ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  animation: bloom 5600ms ease both;
}

@keyframes bloom {
  0% {
    transform: scale(1.06);
    filter: brightness(0.88) saturate(0.85);
  }
  48% {
    filter: brightness(1) saturate(1.03);
  }
  100% {
    transform: scale(1);
    filter: brightness(0.96) saturate(1);
  }
}

.hero-content {
  width: min(780px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: clamp(72px, 10vw, 124px) 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffd8e7;
  letter-spacing: 0.18em;
}

.hero .eyebrow::before,
.page-hero .eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.72;
}

h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
}

.hero h2 span,
.page-hero h2 span,
.hero h2 em,
.page-hero h2 em {
  display: inline;
}

.hero h2 em,
.page-hero h2 em {
  color: #ffd8e7;
  font-style: italic;
}

.hero h2 br,
.page-hero h2 br {
  display: block;
}

h3 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

h4 {
  font-size: 1.16rem;
}

.hero-content > p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.hero-facts,
.section-heading,
.cta-section,
.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button svg,
.site-nav svg,
.hero-facts svg,
.check-list svg,
.contact-info svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.button.primary {
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 12px 28px rgba(232, 79, 136, 0.28);
}

.button.primary:hover {
  background: var(--rose-dark);
}

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

.hero-facts {
  margin-top: 26px;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: clamp(64px, 9vw, 108px) clamp(18px, 5vw, 72px);
}

.section-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
}

.intro-band,
.expertise-section {
  background: var(--soft);
}

.intro-band p:last-child,
.story-copy p,
.founder-section p,
.service-detail-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.stat {
  min-height: 85px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px 24px;
  background: var(--white);
}

.stat strong {
  color: var(--green);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.who-section {
  display: grid;
  justify-items: center;
  background: #fbfaf8;
}

.who-panel {
  width: min(1160px, 100%);
  display: grid;
  gap: 22px;
}

.who-panel .eyebrow {
  color: var(--green);
  letter-spacing: 0.22em;
}

.who-panel h3 {
  color: #17152d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.12;
}

.who-panel h3 em {
  color: var(--rose);
  font-style: italic;
}

.who-panel > p {
  margin: 0;
  color: #70768a;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.who-list {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.who-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
}

.who-item > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--rose);
  background: #fff2f7;
}

.who-item svg {
  width: 21px;
  height: 21px;
}

.who-item h4 {
  margin: 0 0 2px;
  color: #363848;
  font-size: 1.08rem;
  font-weight: 900;
}

.who-item p {
  margin: 0;
  color: #70768a;
  line-height: 1.35;
}

.who-panel .button {
  width: fit-content;
  margin-top: 12px;
  padding-inline: 34px;
}

.section-heading {
  width: min(1160px, 100%);
  margin: 0 auto 28px;
  justify-content: space-between;
}

.section-heading h3 {
  max-width: 760px;
}

.home-services-section {
  background: linear-gradient(135deg, #fff2f7 0%, #fffafa 48%, #ffffff 100%);
}

.home-services-heading {
  width: min(1160px, 100%);
  display: grid;
  gap: 14px;
  margin: 0 auto 34px;
}

.home-services-heading .ruled {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 2px;
  color: var(--rose);
  letter-spacing: 0.18em;
}

.home-services-heading .ruled::before {
  width: 28px;
  height: 1px;
  content: "";
  background: var(--rose);
}

.home-services-heading h3 {
  color: #1f1b1d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 6vw, 4.65rem);
  font-weight: 400;
  line-height: 1;
}

.home-services-heading h3 em {
  color: var(--rose);
  font-style: italic;
}

.home-services-heading > p:not(.eyebrow) {
  max-width: 860px;
  margin: 0;
  color: #6f6870;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.home-services-heading .text-link {
  width: fit-content;
}

.text-link {
  color: var(--rose-dark);
  font-weight: 800;
  text-decoration: none;
}

.service-grid {
  width: min(1160px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0 auto;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(29, 52, 49, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

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

.insurance-heading {
  width: min(1160px, 100%);
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 0 auto 34px;
  text-align: center;
}

.insurance-heading h3 {
  color: #143a67;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
}

.insurance-heading p {
  margin: 0;
  color: #5f6f80;
  font-size: 1.08rem;
}

.insurance-grid {
  width: min(1160px, 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 auto;
  justify-content: center;
}

.insurance-logo {
  width: min(170px, 100%);
  min-height: 78px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  padding: 16px 22px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(34, 48, 61, 0.08);
}

.insurance-logo img {
  max-height: 45px;
  filter: grayscale(1) saturate(0) opacity(0.58);
  object-fit: contain;
}

.text-logo {
  color: #8f9aa9;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.cta-section {
  position: relative;
  justify-content: center;
  gap: 26px;
  padding: clamp(52px, 7vw, 76px) clamp(18px, 5vw, 72px);
  color: var(--ink);
  background: #f0faf6;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.cta-section::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: clamp(18px, 9vw, 110px);
  width: 1px;
  content: "";
  background: rgba(76, 143, 99, 0.52);
}

.cta-section > div {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(840px, 100%);
}

.cta-section h3 {
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
}

.cta-section h3 em {
  color: var(--green);
  font-style: italic;
}

.cta-section p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
}

.cta-button {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
  padding-inline: 34px;
}

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

.page-hero {
  position: relative;
  min-height: 460px;
  display: grid;
  align-items: center;
  padding: clamp(72px, 10vw, 124px) clamp(18px, 7vw, 96px);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.page-hero h2 {
  max-width: 13ch;
}

.services-overview-section {
  background: #fbfaf8;
}

.services-overview-heading {
  width: min(980px, 100%);
  display: grid;
  justify-items: center;
  gap: 20px;
  margin: 0 auto 42px;
  text-align: center;
}

.services-overview-heading .eyebrow {
  margin: 0;
  color: var(--green);
  letter-spacing: 0.28em;
}

.services-overview-heading h3 {
  color: #071b45;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.55rem);
  font-weight: 400;
  line-height: 1.08;
}

.services-overview-heading h3 em {
  color: var(--rose);
  font-style: italic;
}

.services-overview-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #63718b;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.story-section,
.founder-section,
.contact-layout,
.contact-feature,
.appointment-layout,
.service-detail-section {
  width: min(1160px, calc(100% - 36px));
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.story-section,
.contact-layout,
.contact-feature,
.appointment-layout,
.service-detail-section {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.service-detail-section {
  grid-template-columns: minmax(0, 1fr);
  width: min(980px, calc(100% - 36px));
  gap: 30px;
}

.story-copy {
  display: grid;
  gap: 12px;
}

.values-panel,
.booking-rules,
.form-panel,
.service-side-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.check-list svg {
  color: var(--green);
  margin-top: 3px;
}

.founder-section {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
}

.founder-section > img,
.service-detail-section > img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.credentials {
  margin-top: 8px;
  color: var(--rose-dark);
  font-weight: 900;
}

.expertise-tags {
  width: min(1160px, 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto;
}

.expertise-tags span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted);
  background: var(--white);
  font-weight: 700;
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 14px;
}

.contact-showcase {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: #102b27;
  box-shadow: var(--shadow);
}

.contact-showcase > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.contact-showcase::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(16, 43, 39, 0.18), rgba(16, 43, 39, 0.92));
}

.contact-showcase-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 460px;
  padding: clamp(24px, 5vw, 42px);
}

.contact-showcase-content h3 {
  max-width: 12ch;
}

.contact-showcase-content p {
  max-width: 520px;
}

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

.contact-method {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  color: var(--muted);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.92);
}

.contact-method i,
.contact-method svg {
  width: 22px;
  height: 22px;
}

.contact-method .icon-box {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: var(--rose-dark);
  background: #fff2f7;
}

.contact-method strong {
  display: block;
  color: var(--ink);
  line-height: 1.2;
}

.contact-method span {
  font-weight: 700;
}

.contact-aside {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-note-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--soft);
}

.contact-note-panel p {
  margin: 0;
  color: var(--muted);
}

.contact-form-section {
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.contact-form-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
}

.contact-form-shell .section-heading {
  width: 100%;
}

.contact-form-shell .form-panel {
  border-color: transparent;
  box-shadow: 0 22px 60px rgba(29, 52, 49, 0.13);
}

.contact-info a,
.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  text-decoration: none;
}

.form-panel {
  display: grid;
  gap: 18px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbded8;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(76, 143, 99, 0.22);
  border-color: var(--green);
}

.checkbox-line {
  grid-template-columns: 22px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 700;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-status.success {
  color: var(--green);
  font-weight: 900;
}

.form-status.error {
  color: var(--rose-dark);
  font-weight: 900;
}

.service-detail-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.service-side-panel {
  align-self: start;
}

.service-info-card {
  display: grid;
  gap: 18px;
  border: 1px solid #ffd8e7;
  border-radius: 8px;
  padding: clamp(26px, 5vw, 48px);
  background: linear-gradient(135deg, #fff7fa, #ffffff);
  box-shadow: 0 22px 56px rgba(232, 79, 136, 0.12);
}

.service-info-card h3 {
  color: #1f1b1d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 400;
}

.service-info-card h3 em {
  color: var(--rose);
  font-style: italic;
}

.service-info-card p {
  max-width: 820px;
  margin: 0;
  color: #6f6870;
  font-size: 1.06rem;
}

.service-info-card .button {
  width: fit-content;
}

.service-info-card .ruled {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  letter-spacing: 0.16em;
}

.service-info-card .ruled::before {
  width: 28px;
  height: 1px;
  content: "";
  background: var(--rose);
}

.service-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 8px;
  padding: clamp(28px, 5vw, 46px);
  color: var(--ink);
  background: #f0faf6;
}

.service-cta-card > div {
  display: grid;
  gap: 10px;
}

.service-cta-card .eyebrow {
  margin: 0;
  color: var(--green);
}

.service-cta-card h3 {
  color: #17152d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
}

.service-cta-card p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.symptoms-card {
  border-color: transparent;
  background: var(--white);
}

.symptoms-list {
  display: grid;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.symptoms-list li {
  position: relative;
  padding: 13px 0 13px 38px;
  border-bottom: 1px solid #edf2ef;
  color: #6f6870;
  font-weight: 700;
}

.symptoms-list li::before {
  position: absolute;
  left: 10px;
  content: "+";
  color: var(--rose);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) minmax(140px, 0.55fr) minmax(210px, 0.85fr) minmax(220px, 0.85fr);
  gap: 34px;
  padding: 40px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #102b27;
}

.site-footer,
.site-footer a {
  color: #d9efe4;
}

.site-footer img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
}

.site-footer p {
  max-width: 440px;
  margin: 0;
}

.site-footer address {
  font-style: normal;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3,
.footer-service-links h3,
.site-footer address strong {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.2;
}

.footer-links a {
  width: fit-content;
  color: #d9efe4;
  font-weight: 700;
  text-decoration: none;
}

.footer-service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 8px;
}

.footer-service-links h3 {
  grid-column: 1 / -1;
}

.footer-service-links a {
  width: fit-content;
  color: #d9efe4;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-service-links a:hover,
.site-footer a:hover {
  color: #ffd8e7;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    width: 100%;
  }

  .two-col,
  .stats-section,
  .service-grid,
  .story-section,
  .founder-section,
  .contact-layout,
  .contact-feature,
  .appointment-layout,
  .service-detail-section {
    grid-template-columns: 1fr;
  }

  .insurance-grid {
    gap: 18px;
  }

  .founder-section > img {
    max-height: 520px;
    object-fit: cover;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 86px;
  }

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

  .brand span {
    font-size: 0.96rem;
  }

  .hero {
    min-height: 740px;
  }

  .hero-content {
    margin: 0 auto;
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 4.15rem);
  }

  .hero::after,
  .page-hero::after {
    background: linear-gradient(180deg, rgba(17, 44, 40, 0.46), rgba(17, 44, 40, 0.9));
  }

  .form-grid,
  .insurance-grid {
    grid-template-columns: 1fr;
  }

  .insurance-logo {
    width: 100%;
  }

  .cta-section,
  .service-cta-card,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .cta-section::before {
    display: none;
  }

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