:root {
  --ink: #18231f;
  --green: #163f37;
  --green-2: #235f55;
  --teal: #4ecac2;
  --gold: #b58c58;
  --ivory: #f5f1ea;
  --linen: #fbf8f3;
  --mist: #e6f2ef;
  --clay: #8b352d;
  --muted: #65706c;
  --line: rgba(24, 35, 31, 0.14);
  --shadow: 0 22px 70px rgba(24, 35, 31, 0.16);
  --soft-shadow: 0 14px 38px rgba(24, 35, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--linen);
  font-family: Avenir Next, Inter, Segoe UI, system-ui, sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--green-2);
}

.topbar {
  background: var(--green);
  color: #f7fff9;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-inner,
.nav,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

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

.topbar span {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 248, 243, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  width: 230px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: 100%;
  height: auto;
}

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

.nav-group {
  position: relative;
}

.nav-group::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 34px;
}

.nav-link,
.mobile-menu summary {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 12px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-group:hover .nav-menu,
.nav-group.is-open .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  padding: 10px;
  background: #fffdf8;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 160ms ease;
}

.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 650;
}

.nav-menu a:hover {
  background: var(--mist);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
}

.phone-link {
  color: var(--green);
  font-weight: 800;
  white-space: nowrap;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--green);
  border-radius: 6px;
  background: var(--green);
  color: #fffdf8;
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(22, 63, 55, 0.18);
  cursor: pointer;
}

.button:hover {
  background: var(--green-2);
  color: #fffdf8;
}

.button.secondary {
  background: transparent;
  color: var(--green);
  box-shadow: none;
}

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

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--green);
  font-weight: 900;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  transition:
    background 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 0;
}

body.menu-open .menu-toggle {
  position: relative;
  z-index: 80;
  border-color: rgba(255, 253, 248, 0.24);
  background: rgba(255, 253, 248, 0.08);
  color: #fffdf8;
}

body.menu-open .menu-toggle span {
  transform: scale(1.14);
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  background:
    linear-gradient(90deg, rgba(24, 35, 31, 0.72), rgba(24, 35, 31, 0.2)),
    var(--hero-image) center / cover no-repeat;
  color: #fffdf8;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(251, 248, 243, 0.98));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  min-height: calc(100vh - 112px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 48px;
  padding: 70px 0 120px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 790px;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(3.1rem, 6.6vw, 6.9rem);
  line-height: 0.93;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy,
.page-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: 1.12rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero .button.secondary {
  color: #fffdf8;
  border-color: rgba(255, 253, 248, 0.62);
}

.hero .button.secondary:hover {
  background: rgba(255, 253, 248, 0.13);
}

.hero-panel {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 253, 248, 0.26);
  border-radius: 8px;
  background: rgba(22, 63, 55, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--teal);
  font-weight: 900;
}

.rating span:last-child {
  color: #fffdf8;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-quote {
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.35rem;
  line-height: 1.35;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-stat {
  background: var(--ivory);
  padding: 30px;
  text-align: center;
}

.quick-stat strong {
  display: block;
  color: var(--green);
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.quick-stat span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

section {
  position: relative;
}

.section-pad {
  padding: 92px 0;
}

.section-pad.tight {
  padding: 64px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.section-head h2,
.split h2,
.content-card h2,
.cta h2,
.article-body h2 {
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0;
}

.section-head p,
.split p,
.intro-text {
  color: var(--muted);
  font-size: 1.03rem;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
}

.detail-grid,
.feature-grid,
.service-grid,
.testimonial-grid,
.resource-grid,
.product-grid,
.doctor-grid,
.staff-grid,
.video-grid,
.post-grid {
  display: grid;
  gap: 18px;
}

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

.feature-grid,
.service-grid,
.resource-grid,
.post-grid {
  grid-template-columns: repeat(3, 1fr);
}

.doctor-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

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

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

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.detail-card,
.feature-card,
.service-card,
.testimonial-card,
.resource-card,
.doctor-card,
.staff-card,
.product-card,
.video-card,
.post-card,
.content-card,
.side-card,
.document-panel,
.toc-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--soft-shadow);
}

.detail-card,
.feature-card,
.service-card,
.testimonial-card,
.resource-card,
.post-card,
.side-card,
.toc-card,
.faq-card {
  padding: 22px;
}

.post-card-link {
  display: grid;
  align-content: start;
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.post-card-link:hover {
  border-color: rgba(181, 140, 88, 0.42);
  color: inherit;
  box-shadow: 0 18px 48px rgba(24, 35, 31, 0.16);
  transform: translateY(-3px);
}

.post-card-link:hover .card-link {
  color: var(--green);
}

.detail-card h3,
.feature-card h3,
.service-card h3,
.testimonial-card h3,
.resource-card h3,
.post-card h3,
.side-card h3,
.document-panel h3,
.product-card h3,
.video-card h3,
.faq-card h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.35rem;
  line-height: 1.12;
  font-weight: 500;
}

.detail-card p,
.feature-card p,
.service-card p,
.testimonial-card p,
.resource-card p,
.post-card p,
.side-card p,
.document-panel p,
.product-card p,
.video-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doctor-card,
.staff-card,
.product-card,
.video-card {
  overflow: hidden;
}

.product-image-link {
  display: block;
  background: var(--ivory);
}

.doctor-photo,
.staff-photo,
.product-card img,
.post-card img {
  aspect-ratio: 4 / 5;
  background: var(--mist);
  overflow: hidden;
}

.post-card img {
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
}

.doctor-photo img,
.staff-photo img,
.product-card img,
.post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-photo {
  position: relative;
  aspect-ratio: 16 / 10;
}

.staff-photo::after {
  position: absolute;
  inset: 40% 0 0;
  content: "";
  background: linear-gradient(180deg, rgba(23, 38, 34, 0), rgba(23, 38, 34, 0.8));
}

.staff-photo h3 {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  margin: 0;
  color: #fffdf8;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.42rem;
  line-height: 1.1;
  font-weight: 500;
  text-wrap: balance;
}

.doctor-info,
.staff-info,
.product-info,
.video-info {
  padding: 18px;
}

.doctor-info h3,
.product-info h3,
.video-info h3 {
  margin: 0 0 6px;
  color: var(--green);
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 500;
}

.doctor-info p,
.staff-info p,
.product-info p,
.video-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.experience {
  background: var(--green);
  color: #fffdf8;
}

.experience .section-kicker,
.experience .card-link {
  color: var(--teal);
}

.experience .split p {
  color: rgba(255, 253, 248, 0.78);
}

.experience-photo {
  min-height: 600px;
  border-radius: 8px;
  background: var(--experience-image) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.experience-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.experience-item {
  padding: 18px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.07);
}

.experience-item strong {
  display: block;
  color: #fffdf8;
  font-size: 1.02rem;
}

.experience-item span {
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.94rem;
}

.home-page {
  background: var(--linen);
}

.home-page .topbar {
  font-size: 0.66rem;
}

.home-page .topbar-inner {
  min-height: 25px;
}

.home-page .site-header {
  background: rgba(251, 248, 243, 0.97);
}

.home-page .nav {
  min-height: 88px;
}

.home-page .logo {
  width: 218px;
}

.home-page .nav-link {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-page .phone-link {
  color: var(--green);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.home-page .button {
  min-height: 38px;
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-page .hero {
  min-height: 760px;
  overflow: hidden;
  background: #fffdf8;
  color: var(--ink);
}

.home-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(251, 248, 243, 1) 0%, rgba(251, 248, 243, 0.98) 28%, rgba(251, 248, 243, 0.62) 48%, rgba(251, 248, 243, 0.13) 73%, rgba(251, 248, 243, 0) 100%);
  pointer-events: none;
}

.home-page .hero::after {
  height: 210px;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(251, 248, 243, 0.96));
}

.hero-video-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--hero-fallback-image, var(--hero-image)) center right / cover no-repeat;
  pointer-events: none;
}

.hero-video-layer video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  transition: opacity 240ms ease;
}

.hero-video-layer.is-playing video {
  opacity: 1;
}

.hero-video-layer.is-fallback video {
  opacity: 0;
}

.home-page .hero-inner {
  z-index: 2;
  min-height: 760px;
  grid-template-columns: minmax(360px, 570px) 320px;
  align-items: end;
  gap: clamp(56px, 15vw, 220px);
  padding: 0 0 94px;
}

.home-page .hero-copy-block {
  padding-bottom: 8px;
}

.home-page .eyebrow {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.home-page .hero h1 {
  max-width: 570px;
  color: var(--ink);
  font-size: clamp(3.45rem, 5.1vw, 5.15rem);
  line-height: 0.9;
}

.home-page .hero-copy {
  max-width: 445px;
  margin-top: 18px;
  color: #40504b;
  font-size: 0.96rem;
}

.home-page .hero-buttons {
  margin-top: 24px;
}

.home-page .hero .button.secondary {
  color: var(--green);
  border-color: rgba(22, 63, 55, 0.24);
  background: rgba(255, 253, 248, 0.72);
}

.home-page .hero .button.secondary:hover {
  background: var(--mist);
}

.home-page .hero-panel {
  align-self: end;
  width: min(315px, 100%);
  margin-bottom: 12px;
  padding: 30px 28px;
  border: 0;
  border-radius: 0;
  background: #fffdf8;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(24, 35, 31, 0.18);
  backdrop-filter: none;
}

.home-page .rating {
  color: var(--ink);
}

.home-page .rating span:first-child {
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.7rem;
  line-height: 1;
  white-space: nowrap;
}

.home-page .rating span:last-child {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.home-page .hero-panel > p {
  margin: 5px 0 30px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-page .hero-quote {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.48;
}

.home-page .hero-panel strong {
  display: block;
  margin-top: 18px;
  color: var(--clay);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-google-review .hero-quote,
.hero-google-review .hero-reviewer {
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.hero-google-review.is-changing .hero-quote,
.hero-google-review.is-changing .hero-reviewer {
  opacity: 0;
  transform: translateY(8px);
}

.hero-google-review.is-changing.is-changing-next .hero-quote,
.hero-google-review.is-changing.is-changing-next .hero-reviewer {
  transform: translateX(-16px);
}

.hero-google-review.is-changing.is-changing-prev .hero-quote,
.hero-google-review.is-changing.is-changing-prev .hero-reviewer {
  transform: translateX(16px);
}

.hero-google-review.is-swiping .hero-quote,
.hero-google-review.is-swiping .hero-reviewer {
  transition:
    opacity 180ms ease,
    transform 120ms ease;
}

.hero-reviewer {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
}

.hero-reviewer img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-reviewer span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.home-page .quick-stats {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--green);
  border: 0;
}

.home-page .quick-stat {
  background: transparent;
  padding: 28px 24px;
  border-left: 1px solid rgba(255, 253, 248, 0.16);
  text-align: center;
}

.home-page .quick-stat:first-child {
  border-left: 0;
}

.home-page .quick-stat strong {
  color: #fffdf8;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
}

.home-page .quick-stat span {
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.64rem;
  letter-spacing: 0.13em;
}

.home-page .home-care-section,
.home-page .home-doctors,
.home-page .home-treatments,
.home-page .home-research {
  background: var(--linen);
}

.home-page .home-care-section {
  padding-bottom: 0;
}

.home-care-layout {
  display: block;
}

.home-two-col-head h2 {
  margin: 0;
  max-width: 560px;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  font-weight: 500;
}

.home-two-col-head p:not(.section-kicker) {
  color: var(--muted);
}

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

.home-care-row {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 18px;
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.54);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.home-care-row:hover {
  transform: translateY(-6px);
  border-color: rgba(181, 140, 88, 0.34);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 22px 54px rgba(24, 35, 31, 0.1);
}

.home-care-row span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--mist);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.home-care-row:hover span {
  background: var(--green);
  color: #fffdf8;
  transform: scale(1.08);
}

.home-care-row h3 {
  margin: 0;
  color: var(--green);
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(1.35rem, 1.6vw, 1.75rem);
  line-height: 1.02;
}

.home-care-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.home-two-col-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.72fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 36px;
}

.home-page .home-doctors .doctor-card,
.home-page .home-research .post-card {
  border-radius: 0;
  box-shadow: none;
}

.home-page .home-doctors .doctor-photo {
  aspect-ratio: 0.77 / 1;
}

.home-page .home-doctors .doctor-info h3 {
  font-size: 1.02rem;
}

.home-page .home-doctors .doctor-info p {
  font-size: 0.76rem;
}

.home-experience {
  display: grid;
  position: relative;
  grid-template-columns: 55% 45%;
  min-height: 720px;
  overflow: hidden;
  background: var(--green);
  --experience-cursor-x: 58%;
  --experience-cursor-y: 46%;
}

.home-experience::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      circle at var(--experience-cursor-x) var(--experience-cursor-y),
      rgba(78, 202, 194, 0.13),
      rgba(255, 253, 248, 0.04) 18%,
      rgba(255, 253, 248, 0) 46%
    );
  transition: opacity 900ms ease;
}

.home-experience.is-experience-awake::after {
  opacity: 1;
}

.home-experience > * {
  position: relative;
  z-index: 2;
}

.home-experience-photo img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.home-experience-panel {
  display: grid;
  align-items: center;
  padding: clamp(48px, 6vw, 84px);
  color: #fffdf8;
}

.home-experience-panel h2 {
  max-width: 470px;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(3rem, 4.6vw, 4.6rem);
  line-height: 0.93;
  font-weight: 500;
}

.home-experience-panel p:not(.section-kicker) {
  max-width: 520px;
  color: rgba(255, 253, 248, 0.75);
}

.home-experience .experience-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.home-experience .experience-item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  transition:
    opacity 760ms ease,
    transform 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.home-experience .experience-item:hover {
  transform: translateY(-8px);
  border-color: rgba(78, 202, 194, 0.44);
  background: rgba(255, 253, 248, 0.11);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.home-experience .experience-item:hover strong {
  color: var(--teal);
}

.home-experience .experience-item:hover span {
  color: rgba(255, 253, 248, 0.88);
}

.home-experience.has-mouse-entrance .home-experience-photo,
.home-experience.has-mouse-entrance .home-experience-panel > div,
.home-experience.has-mouse-entrance .experience-item {
  opacity: 0.76;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 900ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms ease,
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.home-experience.has-mouse-entrance .home-experience-photo {
  filter: saturate(0.92);
}

.home-experience.has-mouse-entrance .home-experience-panel > div {
  opacity: 0.84;
  transform: translate3d(0, 18px, 0);
}

.home-experience.has-mouse-entrance.is-experience-awake .home-experience-photo,
.home-experience.has-mouse-entrance.is-experience-awake .home-experience-panel > div,
.home-experience.has-mouse-entrance.is-experience-awake .experience-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: none;
}

.home-experience.has-mouse-entrance.is-experience-awake .experience-item {
  transition-delay: calc(var(--experience-order, 0) * 70ms);
}

.home-experience.has-mouse-entrance.is-experience-awake .experience-item:hover {
  transform: translateY(-6px);
  transition-delay: 0ms;
}

.home-treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.home-treatment-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  background: #fffdf8;
}

.mini-kicker {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-treatment-card h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.45rem;
  line-height: 1.12;
  font-weight: 500;
}

.home-treatment-card p:last-child {
  margin: 0;
  color: var(--muted);
}

.home-testimonials {
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(230, 250, 247, 0.92), rgba(232, 247, 243, 0.94)),
    var(--cta-image) center / cover no-repeat;
}

.home-testimonial-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 42px;
  align-items: start;
}

.home-rating-card {
  position: sticky;
  top: clamp(180px, 19vh, 245px);
  padding: 38px;
  background: var(--green);
  color: #fffdf8;
  z-index: 2;
}

.home-rating-card strong {
  display: block;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(2.45rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 500;
}

.home-rating-card span {
  display: block;
  margin: 14px 0;
  color: var(--gold);
  letter-spacing: 0.14em;
}

.home-rating-card p {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
}

.home-quote-list {
  display: grid;
  gap: 18px;
  max-height: 660px;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.home-quote-track {
  display: grid;
  gap: 18px;
  animation: reviewLift 34s linear infinite;
  will-change: transform;
}

.home-quote-list.is-paused .home-quote-track {
  animation-play-state: paused;
}

.home-quote-list.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.home-quote-list.is-manual .home-quote-track {
  animation: none;
}

.home-quote {
  padding: 28px 34px;
  border: 1px solid var(--line);
  background: #fffdf8;
}

.home-quote p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.25rem;
  line-height: 1.35;
}

.reviewer-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.reviewer-row img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-row span {
  display: block;
  color: var(--clay);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reviewer-row small {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes reviewLift {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.home-logo-strip {
  padding: 40px 0;
  background: #fffdf8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-logo-strip .section-inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.home-logo-strip p {
  margin: 0;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-logo-strip div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: center;
}

.home-logo-strip img {
  max-height: 55px;
  margin: 0 auto;
  object-fit: contain;
  opacity: 1;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-54px);
  transition:
    opacity 780ms ease,
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.home-page .home-research .post-card {
  padding: 0;
  overflow: hidden;
}

.home-page .home-research .post-card img {
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.home-page .home-research .post-card h3,
.home-page .home-research .post-card .card-link {
  margin-left: 20px;
  margin-right: 20px;
}

.home-page .home-research .post-card h3 {
  margin-top: 0;
  padding-bottom: 18px;
}

.home-page .cta {
  background: #98362f;
}

.home-page .cta .button {
  background: #fffdf8;
  color: var(--clay);
  border-color: #fffdf8;
  box-shadow: none;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(24, 35, 31, 0.8), rgba(24, 35, 31, 0.34)),
    var(--page-hero-image) var(--page-hero-position, center) / cover no-repeat;
  color: #fffdf8;
}

.page-hero.has-video {
  overflow: hidden;
  background: var(--hero-fallback-image, var(--page-hero-image)) var(--page-hero-position, center) / cover no-repeat;
}

.page-hero.has-video::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(24, 35, 31, 0.8), rgba(24, 35, 31, 0.34));
}

.page-hero.home-style {
  min-height: 560px;
  background: #fffdf8;
  color: var(--ink);
}

.page-hero.home-style.has-video::before {
  background: linear-gradient(90deg, rgba(251, 248, 243, 1) 0%, rgba(251, 248, 243, 0.96) 30%, rgba(251, 248, 243, 0.66) 52%, rgba(251, 248, 243, 0.16) 78%, rgba(251, 248, 243, 0) 100%);
}

.page-hero.home-style::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 150px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(251, 248, 243, 0.96));
  pointer-events: none;
}

.page-hero .section-inner {
  position: relative;
  z-index: 2;
  padding: 88px 0 76px;
}

.page-hero.home-style .section-inner {
  padding: 124px 0 96px;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
}

.page-hero.home-style h1 {
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(3.35rem, 5.2vw, 5.25rem);
  line-height: 0.91;
}

.page-hero.home-style p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 18px;
  color: #40504b;
  font-size: 0.98rem;
}

.page-hero.home-style .eyebrow {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.treatment-start-section {
  padding-bottom: 74px;
}

.treatment-start {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: 44px;
  align-items: center;
}

.treatment-video {
  min-width: 0;
}

.treatment-video .embed-frame {
  margin: 0;
}

.treatment-start-copy {
  padding: clamp(10px, 2vw, 24px) 0;
}

.treatment-start-copy h2,
.treatment-detail-head h2 {
  margin: 0;
  color: var(--green);
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0;
}

.treatment-start-copy p:not(.section-kicker) {
  max-width: 620px;
  margin: 18px 0 0;
  color: #46534f;
  font-size: 1.02rem;
}

.treatment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.treatment-model-section {
  padding-top: 0;
}

.treatment-model-section .section-head {
  align-items: center;
}

.treatment-video-cta {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  min-height: 48px;
  max-width: 100%;
  padding: 6px 16px 6px 8px;
  border: 1px solid rgba(22, 63, 55, 0.22);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--green);
  box-shadow: 0 10px 26px rgba(24, 35, 31, 0.09);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.treatment-video-cta:hover {
  border-color: var(--green);
  background: var(--green);
  color: #fffdf8;
  box-shadow: 0 16px 34px rgba(24, 35, 31, 0.16);
  transform: translateY(-1px);
}

.treatment-video-cta-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(78, 202, 194, 0.52);
  border-radius: 6px;
  background: var(--mist);
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.treatment-video-cta-icon::before {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--green);
  content: "";
  transition: border-left-color 180ms ease;
}

.treatment-video-cta:hover .treatment-video-cta-icon {
  border-color: rgba(255, 253, 248, 0.36);
  background: var(--teal);
}

.treatment-video-cta:hover .treatment-video-cta-icon::before {
  border-left-color: var(--green);
}

.treatment-detail-section {
  padding-bottom: 74px;
}

.treatment-page .home-testimonials {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.treatment-topic-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--soft-shadow);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.treatment-topic-card:hover {
  color: inherit;
  border-color: rgba(22, 63, 55, 0.34);
  box-shadow: 0 18px 44px rgba(24, 35, 31, 0.14);
  transform: translateY(-2px);
}

.treatment-topic-card span,
.treatment-label {
  display: block;
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.treatment-topic-card h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.42rem;
  line-height: 1.12;
  font-weight: 500;
}

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

.treatment-content-shell {
  grid-template-columns: minmax(0, 1fr) 300px;
}

.treatment-detail-card {
  max-width: none;
  overflow: hidden;
  padding: 0;
}

.treatment-detail-head {
  padding: clamp(28px, 4vw, 50px);
  border-bottom: 1px solid var(--line);
}

.treatment-detail-head h2 {
  max-width: 760px;
}

.treatment-detail-list {
  display: grid;
}

.treatment-detail-row {
  scroll-margin-top: 128px;
  padding: clamp(28px, 4vw, 46px) clamp(24px, 4vw, 50px);
  border-bottom: 1px solid var(--line);
}

.treatment-detail-row h3 {
  margin: 0;
  color: var(--green);
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  line-height: 1.13;
  font-weight: 500;
}

.treatment-detail-row p:not(.treatment-label) {
  max-width: 780px;
  margin: 10px 0 0;
  color: #35423e;
  font-size: 1.02rem;
}

.treatment-contact-link {
  display: inline-flex;
  margin: 28px clamp(24px, 4vw, 50px) clamp(28px, 4vw, 46px);
  color: var(--clay);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.treatment-rail {
  gap: 16px;
}

.treatment-toc-card a {
  display: block;
  padding: 7px 0;
  border-bottom: 1px solid rgba(24, 35, 31, 0.1);
}

.treatment-toc-card li:last-child a {
  border-bottom: 0;
}

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

.content-card {
  padding: clamp(24px, 4vw, 50px);
}

.article-body {
  max-width: 900px;
}

.article-body > *:first-child {
  margin-top: 0;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  color: var(--green);
  font-family: Georgia, Times New Roman, serif;
  font-weight: 500;
  line-height: 1.13;
}

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

.article-body h3 {
  margin-top: 34px;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
}

.article-body h4 {
  margin-top: 26px;
  font-size: 1.28rem;
}

.article-body p,
.article-body li {
  color: #35423e;
  font-size: 1.02rem;
}

.article-body a {
  color: var(--clay);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body a.post-card-link {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.article-body a.button {
  text-decoration: none;
}

.article-body a.button:not(.secondary) {
  color: #fffdf8;
}

.article-body a.button:not(.secondary):hover {
  color: #fffdf8;
}

.article-body a.button.secondary {
  color: var(--green);
}

.article-body a.button.secondary:hover {
  color: var(--green);
}

.article-body ul,
.article-body ol {
  padding-left: 1.25rem;
}

.article-body blockquote {
  margin: 34px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  background: var(--ivory);
  color: var(--green);
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.25rem;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-body th,
.article-body td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-body th {
  background: var(--mist);
}

.media-figure {
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
}

.media-figure img {
  width: 100%;
  height: auto;
}

.media-figure figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 0.85rem;
}

.embed-frame {
  position: relative;
  overflow: hidden;
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: var(--soft-shadow);
}

.embed-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.pdf-embed-panel {
  display: grid;
  gap: 22px;
}

.pdf-embed-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.pdf-embed-head h2 {
  margin: 4px 0 0;
}

.pdf-viewer {
  overflow: hidden;
  min-height: 760px;
  height: min(82vh, 980px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--soft-shadow);
}

.pdf-viewer iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fffdf8;
}

.audio-panel {
  margin: 28px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
}

.audio-panel audio {
  width: 100%;
}

.document-panel {
  margin: 28px 0;
  padding: 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.doc-badge {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #fffdf8;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.rail {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.side-card ul,
.toc-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-card a,
.toc-card a {
  color: var(--green);
  font-weight: 800;
}

.side-card small,
.toc-card small {
  display: block;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-card {
  padding: 0;
  overflow: hidden;
}

.faq-card summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--green);
  font-weight: 900;
}

.faq-card summary::marker {
  color: var(--gold);
}

.faq-card div {
  padding: 0 22px 20px;
  color: var(--muted);
}

.product-card img {
  aspect-ratio: 1.08 / 0.87;
  object-fit: contain;
  padding: 12px;
  background: var(--ivory);
  transition: transform 180ms ease;
}

.product-image-link:hover img {
  transform: scale(1.03);
}

.product-title-link:hover {
  color: var(--green-2);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.video-card .embed-frame {
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.cta {
  background:
    linear-gradient(90deg, rgba(22, 63, 55, 0.95), rgba(22, 63, 55, 0.72)),
    var(--cta-image) center / cover no-repeat;
  color: #fffdf8;
}

.cta .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta h2 {
  max-width: 780px;
  color: #fffdf8;
}

.cta p {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.78);
}

.site-footer {
  padding: 64px 0 34px;
  background: #102c27;
  color: rgba(255, 253, 248, 0.78);
}

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

.footer-grid h3 {
  margin: 0 0 14px;
  color: #fffdf8;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.footer-grid a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 253, 248, 0.78);
}

.footer-grid a:hover {
  color: var(--teal);
}

.footer-brand img {
  width: 230px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  font-size: 0.84rem;
}

.footer-credit {
  color: rgba(255, 253, 248, 0.78);
  text-align: right;
}

.footer-credit:hover {
  color: var(--teal);
}

.site-map-links a {
  break-inside: avoid;
}

@media (max-width: 1120px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

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

  body.menu-open .site-header {
    z-index: 90;
    border-bottom-color: transparent;
    background: transparent;
    backdrop-filter: none;
  }

  body.menu-open .site-header .logo {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: block;
    height: 100vh;
    min-height: 100dvh;
    overflow: auto;
    padding: 72px 24px 30px;
    background:
      linear-gradient(145deg, rgba(16, 44, 39, 0.98), rgba(22, 63, 55, 0.95) 56%, rgba(152, 54, 47, 0.92)),
      var(--cta-image) center / cover no-repeat;
    color: #fffdf8;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .mobile-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-panel-inner {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .mobile-panel-logo {
    display: block;
    width: min(260px, 62vw);
    margin: 0 auto 30px;
    text-align: center;
  }

  .mobile-panel-logo img {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
  }

  .mobile-panel-head {
    display: grid;
    gap: 6px;
    padding-bottom: 22px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 253, 248, 0.16);
  }

  .mobile-panel-head span,
  .mobile-panel-head strong {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-panel-head span {
    color: var(--teal);
  }

  .mobile-panel-head strong {
    color: rgba(255, 253, 248, 0.86);
  }

  .mobile-panel-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
  }

  .mobile-primary-action,
  .mobile-phone-action {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid rgba(255, 253, 248, 0.2);
    color: #fffdf8;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-primary-action {
    border-color: var(--teal);
    background: var(--teal);
    color: var(--green);
  }

  .mobile-panel-nav {
    display: grid;
    gap: 10px;
  }

  .mobile-panel-nav > a,
  .mobile-menu {
    border: 1px solid rgba(255, 253, 248, 0.16);
    background: rgba(255, 253, 248, 0.055);
    backdrop-filter: blur(12px);
  }

  .mobile-panel-nav > a,
  .mobile-menu summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-height: auto;
    padding: 18px 20px;
    color: #fffdf8;
    font-family: Georgia, Times New Roman, serif;
    font-size: clamp(1.65rem, 6vw, 2.75rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
  }

  .mobile-menu summary {
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary::after {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 11px;
    height: 11px;
    margin-left: auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-3px);
    transition: transform 180ms ease;
  }

  .mobile-menu[open] summary::after {
    transform: rotate(225deg) translate(-2px, -1px);
  }

  .mobile-menu a {
    display: block;
    padding: 12px 20px;
    border-top: 1px solid rgba(255, 253, 248, 0.12);
    color: rgba(255, 253, 248, 0.78);
    font-size: 0.98rem;
    font-weight: 750;
  }

  .mobile-menu a:last-child {
    padding-bottom: 18px;
  }

  .mobile-panel-foot {
    display: grid;
    gap: 10px;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 253, 248, 0.16);
  }

  .mobile-panel-foot a {
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-panel-foot span {
    color: rgba(255, 253, 248, 0.7);
    font-size: 0.9rem;
  }
}

@media (max-width: 980px) {
  .hero-inner,
  .split,
  .content-shell {
    grid-template-columns: 1fr;
  }

  .treatment-start {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: end;
    padding-top: 80px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .feature-grid,
  .treatment-topic-grid,
  .service-grid,
  .resource-grid,
  .doctor-grid,
  .testimonial-grid,
  .product-grid,
  .video-grid,
  .post-grid,
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rail {
    position: static;
  }

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

  .cta .section-inner,
  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .treatment-model-section .section-head {
    align-items: start;
  }

  .home-page .hero {
    min-height: 720px;
    background: #fffdf8;
  }

  .home-page .hero::before {
    background: linear-gradient(90deg, rgba(251, 248, 243, 1) 0%, rgba(251, 248, 243, 0.93) 38%, rgba(251, 248, 243, 0.35) 82%);
  }

  .home-page .hero-inner {
    min-height: 720px;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 70px;
  }

  .home-page .hero-panel {
    max-width: 360px;
    margin-left: 0;
  }

  .home-care-layout,
  .home-two-col-head,
  .home-testimonial-layout,
  .home-logo-strip .section-inner {
    grid-template-columns: 1fr;
  }

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

  .home-experience {
    grid-template-columns: 1fr;
  }

  .home-experience-photo img {
    min-height: 460px;
  }

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

  .home-logo-strip div {
    grid-template-columns: repeat(5, minmax(70px, 1fr));
  }
}

@media (max-width: 720px) {
  .topbar-inner,
  .nav,
  .section-inner,
  .footer-inner {
    width: min(100% - 30px, 1180px);
  }

  .topbar-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 16px;
    padding: 7px 0;
  }

  .logo {
    width: 188px;
  }

  .nav {
    min-height: 68px;
  }

  .mobile-panel {
    padding: 64px 15px 24px;
  }

  .mobile-panel-logo {
    width: min(228px, 64vw);
    margin-bottom: 28px;
  }

  .hero,
  .hero-inner {
    min-height: calc(100vh - 104px);
  }

  .hero-inner {
    width: min(100% - 30px, 1180px);
    padding: 56px 0 92px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .page-hero.home-style {
    min-height: 620px;
  }

  .page-hero.home-style.has-video::before {
    background: linear-gradient(180deg, rgba(251, 248, 243, 0.2) 0%, rgba(251, 248, 243, 1) 48%);
  }

  .page-hero.home-style .section-inner {
    padding: 310px 0 70px;
  }

  .page-hero.home-style h1 {
    font-size: clamp(2.95rem, 13vw, 4.3rem);
  }

  .home-page .hero {
    min-height: auto;
    background: #fffdf8;
  }

  .home-page .hero::before {
    background: linear-gradient(180deg, rgba(251, 248, 243, 0.3) 0%, rgba(251, 248, 243, 1) 47%);
  }

  .hero-video-layer {
    background:
      var(--hero-mobile-fallback-image, var(--hero-fallback-image, var(--hero-image))) 34% 28% / cover
      no-repeat;
  }

  .hero-video-layer video {
    object-position: 34% 28%;
  }

  .home-page .hero-inner {
    min-height: 820px;
    padding: 360px 0 58px;
  }

  .treatment-start-section {
    padding: 58px 0;
  }

  .treatment-start {
    gap: 24px;
  }

  .treatment-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .treatment-topic-grid {
    grid-template-columns: 1fr;
  }

  .treatment-topic-card {
    padding: 22px;
  }

  .treatment-detail-section {
    padding-top: 48px;
  }

  .treatment-content-shell {
    gap: 22px;
  }

  .treatment-detail-head,
  .treatment-detail-row {
    padding: 24px 20px;
  }

  .treatment-contact-link {
    margin: 24px 20px 28px;
  }

  .home-page .hero h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .home-page .hero-panel {
    width: 100%;
    max-width: none;
    margin-right: 0;
    box-sizing: border-box;
  }

  .home-page .hero-google-review {
    overflow: hidden;
    touch-action: pan-y;
    transform: translateX(var(--review-card-x, 0px));
    transition:
      transform 360ms cubic-bezier(0.2, 0.82, 0.2, 1),
      opacity 260ms ease,
      box-shadow 260ms ease;
    user-select: none;
    will-change: transform;
    -webkit-user-select: none;
  }

  .home-page .hero-google-review.is-swiping {
    box-shadow: 0 30px 80px rgba(24, 35, 31, 0.2);
    transition: transform 80ms linear;
  }

  .home-page .hero-google-review.is-card-sliding .hero-quote,
  .home-page .hero-google-review.is-card-sliding .hero-reviewer {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .home-page .hero-google-review.is-card-exit-next {
    opacity: 0.38;
    transform: translateX(-118%);
  }

  .home-page .hero-google-review.is-card-exit-prev {
    opacity: 0.38;
    transform: translateX(118%);
  }

  .home-page .hero-google-review.is-card-enter-next {
    opacity: 0.38;
    transform: translateX(118%);
    transition: none;
  }

  .home-page .hero-google-review.is-card-enter-prev {
    opacity: 0.38;
    transform: translateX(-118%);
    transition: none;
  }

  .home-page .hero-google-review.is-card-enter-active {
    opacity: 1;
    transform: translateX(0);
    transition:
      transform 380ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 300ms ease;
  }

  .home-page .hero-google-review .hero-quote {
    min-height: 8.9em;
  }

  .home-care-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-care-row {
    min-height: 0;
    padding: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .quick-stats,
  .detail-grid,
  .feature-grid,
  .service-grid,
  .resource-grid,
  .doctor-grid,
  .doctor-grid.profile-grid,
  .testimonial-grid,
  .product-grid,
  .video-grid,
  .post-grid,
  .staff-grid {
    grid-template-columns: 1fr;
  }

  .home-page .quick-stats {
    grid-template-columns: 1fr;
  }

  .home-page .home-doctors {
    min-height: 0;
    overflow: visible;
  }

  .home-page .home-doctors .section-inner {
    position: relative;
    top: auto;
    min-height: 0;
    overflow: visible;
    display: block;
  }

  .home-page .home-doctors .home-two-col-head {
    margin-bottom: 24px;
  }

  .home-page .home-doctors .doctor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    width: 100%;
    transform: none !important;
    will-change: auto;
  }

  .home-page .home-doctors .doctor-card {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .home-page .home-doctors .doctor-info {
    padding: 18px 18px 30px;
  }

  .home-page .home-doctors .doctor-card:last-child .doctor-info {
    padding-bottom: 30px;
  }

  .home-page .home-doctors .doctor-photo {
    min-height: 0;
    aspect-ratio: 0.77 / 1;
  }

  .home-page .home-research .post-grid {
    display: none;
  }

  .section-pad {
    padding: 68px 0;
  }

  .experience-photo {
    min-height: 360px;
  }

  .home-experience-photo img {
    min-height: 360px;
  }

  .home-experience-panel {
    padding: 42px 20px;
  }

  .home-experience .experience-list,
  .home-treatment-grid,
  .home-logo-strip div {
    grid-template-columns: 1fr;
  }

  .home-testimonial-layout {
    gap: 18px;
  }

  .home-rating-card {
    top: 108px;
    padding: 28px;
  }

  .content-card {
    padding: 22px;
  }

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

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .site-map-links {
    columns: 1;
  }
}

.new-patient-page .page-hero.new-patient-style {
  min-height: 640px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 248, 243, 1) 0%, rgba(251, 248, 243, 0.94) 34%, rgba(251, 248, 243, 0.5) 62%, rgba(251, 248, 243, 0.08) 100%),
    var(--page-hero-image) var(--page-hero-position, center) / cover no-repeat;
  color: var(--ink);
}

.new-patient-page .page-hero.new-patient-style::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 170px;
  content: "";
  background: linear-gradient(180deg, rgba(251, 248, 243, 0), var(--linen));
  pointer-events: none;
}

.new-patient-page .page-hero.new-patient-style .section-inner {
  padding: 94px 0 140px;
}

.new-patient-page .page-hero.new-patient-style h1 {
  max-width: 610px;
  color: var(--green);
  font-size: clamp(3.6rem, 5.6vw, 5.45rem);
  line-height: 0.92;
}

.new-patient-page .page-hero.new-patient-style p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 24px;
  color: #35423e;
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  line-height: 1.58;
}

.new-patient-page .page-hero.new-patient-style .eyebrow {
  color: var(--gold);
}

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

.new-patient-quick-strip {
  position: relative;
  z-index: 4;
  margin-top: -72px;
}

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

.new-patient-step,
.new-patient-timeline-item,
.new-patient-plan-card,
.new-patient-link-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.new-patient-step {
  min-height: 142px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  box-shadow: var(--soft-shadow);
}

.new-patient-step-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 63, 55, 0.12);
  border-radius: 50%;
  background: var(--mist);
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
}

.new-patient-step h3,
.new-patient-timeline-item h3,
.new-patient-plan-card h3,
.new-patient-link-card h3,
.new-patient-call-panel h2 {
  margin: 0;
  color: var(--green);
  font-family: Georgia, Times New Roman, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.new-patient-step h3 {
  font-size: 1.55rem;
}

.new-patient-step p,
.new-patient-timeline-item p,
.new-patient-plan-card p,
.new-patient-section-copy p,
.new-patient-planning-head > p {
  margin: 0;
  color: #4e5b56;
}

.new-patient-step p {
  font-size: 0.98rem;
  line-height: 1.54;
}

.new-patient-visit-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.new-patient-section-copy {
  position: sticky;
  top: 120px;
}

.new-patient-section-copy h2,
.new-patient-planning-head h2 {
  margin: 0;
  max-width: 560px;
  color: var(--green);
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(3.15rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.new-patient-section-copy p:not(.section-kicker) {
  max-width: 520px;
  margin-top: 24px;
  font-size: 1.05rem;
  line-height: 1.62;
}

.new-patient-timeline {
  display: grid;
  gap: 18px;
}

.new-patient-timeline-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.new-patient-timeline-item:hover {
  border-color: rgba(181, 140, 88, 0.5);
  box-shadow: 0 18px 42px rgba(24, 35, 31, 0.1);
  transform: translateY(-3px);
}

.new-patient-timeline-item > span,
.new-patient-card-kicker {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.new-patient-timeline-item h3 {
  font-size: 1.72rem;
}

.new-patient-timeline-item p {
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .new-patient-timeline-item {
    transition: none;
  }

  .new-patient-timeline-item:hover {
    transform: none;
  }
}

.new-patient-planning {
  padding: 102px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.new-patient-planning-head {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}

.new-patient-planning-head > p {
  max-width: 650px;
  font-size: 1.08rem;
  line-height: 1.7;
}

.new-patient-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.new-patient-plan-card {
  min-height: 246px;
  padding: 26px;
}

.new-patient-card-kicker {
  margin: 0 0 16px;
}

.new-patient-plan-card h3 {
  font-size: 1.55rem;
}

.new-patient-plan-card p:not(.new-patient-card-kicker) {
  margin-top: 14px;
  font-size: 0.96rem;
  line-height: 1.62;
}

.new-patient-action-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

.new-patient-call-panel {
  position: sticky;
  top: 120px;
  align-self: start;
  min-height: 340px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 54px);
  border-radius: 8px;
  background: var(--green);
  color: #fffdf8;
  box-shadow: var(--soft-shadow);
}

.new-patient-call-panel::after {
  position: absolute;
  inset: 0 0 0 auto;
  width: 48%;
  content: "";
  background:
    linear-gradient(90deg, var(--green), rgba(22, 63, 55, 0.62)),
    var(--experience-image) center / cover no-repeat;
  opacity: 0.82;
}

.new-patient-call-panel > * {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.new-patient-call-panel .section-kicker {
  color: #dfb77f;
}

.new-patient-call-panel h2 {
  color: #fffdf8;
  font-size: clamp(3rem, 4.7vw, 4.8rem);
}

.new-patient-call-panel p:not(.section-kicker) {
  margin: 18px 0 0;
  max-width: 620px;
  color: rgba(255, 253, 248, 0.84);
  font-size: 1.08rem;
}

.new-patient-call-panel .button {
  margin-top: 30px;
  border-color: #fffdf8;
  background: #fffdf8;
  color: var(--green);
  box-shadow: none;
}

.new-patient-link-stack {
  display: grid;
  gap: 18px;
}

.new-patient-link-card {
  padding: 28px;
}

.new-patient-link-card h3 {
  font-size: 1.55rem;
}

.new-patient-link-list {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.new-patient-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 12px;
  align-items: center;
  color: var(--green);
  font-weight: 900;
  line-height: 1.2;
}

.new-patient-link-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.35;
}

.new-patient-link-arrow {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .new-patient-page .page-hero.new-patient-style h1 {
    max-width: 540px;
    font-size: clamp(3.6rem, 8vw, 5.4rem);
  }

  .new-patient-step-grid,
  .new-patient-visit-layout,
  .new-patient-planning-head,
  .new-patient-action-layout {
    grid-template-columns: 1fr;
  }

  .new-patient-section-copy {
    position: static;
  }

  .new-patient-call-panel {
    position: relative;
    top: auto;
  }

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

@media (max-width: 720px) {
  .new-patient-page .page-hero.new-patient-style {
    min-height: 700px;
    background:
      linear-gradient(180deg, rgba(251, 248, 243, 0.24) 0%, rgba(251, 248, 243, 0.96) 47%, var(--linen) 100%),
      var(--page-hero-image) center top / auto 48% no-repeat;
  }

  .new-patient-page .page-hero.new-patient-style .section-inner {
    padding: 270px 0 86px;
  }

  .new-patient-page .page-hero.new-patient-style h1 {
    font-size: clamp(2.65rem, 10.8vw, 3.85rem);
    line-height: 0.94;
  }

  .new-patient-page .page-hero.new-patient-style p:not(.eyebrow) {
    font-size: 1rem;
  }

  .page-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .new-patient-quick-strip {
    margin-top: -54px;
  }

  .new-patient-step-grid,
  .new-patient-plan-grid {
    grid-template-columns: 1fr;
  }

  .new-patient-step,
  .new-patient-timeline-item {
    grid-template-columns: 1fr;
  }

  .new-patient-step {
    min-height: 0;
  }

  .new-patient-section-copy h2,
  .new-patient-planning-head h2,
  .new-patient-call-panel h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .new-patient-planning {
    padding: 70px 0;
  }

  .new-patient-call-panel {
    min-height: 0;
  }

  .new-patient-call-panel::after {
    display: none;
  }
}
