/* Multi-page navigation: intentionally no underline hover effect. */
.utility-right { display: flex; align-items: center; gap: 24px; }
.multi-nav { gap: clamp(9px, 1.05vw, 19px); }
.desktop-nav.multi-nav .nav-item { position: relative; }
.desktop-nav.multi-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 33px 0 29px;
  white-space: nowrap;
}
.desktop-nav.multi-nav a::after { display: none !important; }
.contact-form select {
  width: 100%;
  height: 47px;
  border: 1px solid #d8dfde;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  padding: 0 13px;
  font: inherit;
  outline: none;
}

.contact-form select:focus { border-color: var(--teal); }

.desktop-nav.multi-nav .nav-link:hover,
.desktop-nav.multi-nav .nav-link.active { color: var(--teal); }
.desktop-nav.multi-nav .nav-link .dropdown-arrow {
  position: relative;
  top: -2px;
  color: var(--coral);
  font-size: 15px;
  line-height: 1;
}
.dropdown {
  position: absolute;
  z-index: 100;
  top: calc(100% - 10px);
  left: -18px;
  min-width: 235px;
  padding: 9px 0;
  border-top: 3px solid var(--coral);
  background: #fff;
  box-shadow: 0 14px 34px rgba(27, 55, 58, .17);
  opacity: 0;
  visibility: hidden;
  transform: translateY(9px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 11px 18px !important;
  color: #59676a;
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
  transition: color .2s, background .2s, padding-left .2s;
}
.dropdown a:hover {
  padding-left: 23px !important;
  background: #f2f7f6;
  color: var(--teal);
}
.multi-mobile-nav details { border-bottom: 1px solid var(--line); }
.multi-mobile-nav summary {
  padding: 17px 5px;
  color: var(--charcoal);
  cursor: pointer;
  font-family: var(--heading);
  font-size: 17px;
  list-style-position: inside;
}
.multi-mobile-nav details > a {
  margin-left: 20px;
  padding: 11px 8px;
  color: var(--gray);
  font-size: 14px;
}

.page-hero {
  position: relative;
  min-height: 350px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--page-image, url("assets/hero-back-pain.png")) center 45% / cover no-repeat;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 57, 61, .6);
}
.page-hero-content { position: relative; z-index: 1; width: min(850px, 88%); }
.breadcrumbs {
  margin: 0 0 13px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.breadcrumbs a { color: rgba(255,255,255,.72); }
.page-hero h1 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.12;
}
.page-hero p:last-child { margin: 13px auto 0; font-size: 17px; font-weight: 300; }

.page-content { max-width: 1180px; margin: 0 auto; }
.split-content { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: center; }
.split-content.reverse { grid-template-columns: .85fr 1.15fr; }
.content-copy h2,
.legal-content h2 {
  margin: 0 0 20px;
  font-family: var(--heading);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.25;
}
.content-copy h3,
.legal-content h3 {
  margin: 30px 0 10px;
  color: var(--teal);
  font-family: var(--heading);
  font-size: 19px;
  font-weight: 500;
}
.content-copy p,
.legal-content p,
.legal-content li { color: var(--gray); }
.content-image { min-height: 430px; overflow: hidden; }
.content-image img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.content-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.solid-button,
.secondary-button {
  display: inline-block;
  padding: 13px 23px;
  border: 1px solid var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.solid-button { background: var(--teal); color: white; }
.secondary-button { color: var(--teal); }
.solid-button:hover { background: var(--coral); border-color: var(--coral); }
.secondary-button:hover { background: var(--teal); color: white; }

.info-band { padding: 72px clamp(24px, 7vw, 115px); background: var(--teal-light); }
.info-band-inner { max-width: 1180px; margin: auto; text-align: center; }
.info-band h2 { margin: 0 0 12px; font-family: var(--heading); font-size: clamp(27px, 3vw, 42px); font-weight: 400; }
.info-band p { max-width: 760px; margin: 0 auto 24px; color: var(--gray); }

.link-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.link-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
  background: var(--teal-dark);
  color: white;
}
.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-image, url("assets/hero-back-pain.png")) center / cover no-repeat;
  opacity: .34;
  transition: transform .4s, opacity .4s;
}
.link-card:hover::before { opacity: .48; transform: scale(1.04); }
.link-card > * { position: relative; z-index: 1; }
.link-card span { color: var(--coral); font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.link-card h3 { margin: 7px 0; font-family: var(--heading); font-size: 23px; font-weight: 500; }
.link-card p { margin: 0; color: rgba(255,255,255,.75); font-size: 13px; }

.bullet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 35px; margin: 25px 0; padding: 0; list-style: none; }
.bullet-grid li { position: relative; padding-left: 20px; color: var(--gray); }
.bullet-grid li::before { content: "\2713"; position: absolute; left: 0; color: var(--coral); font-weight: 900; }

.faq-list { max-width: 920px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  padding: 22px 42px 22px 0;
  color: var(--charcoal);
  cursor: pointer;
  font-family: var(--heading);
  font-size: 17px;
  font-weight: 500;
}
.faq-list details p { margin: -5px 0 22px; color: var(--gray); }

.team-grid,
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card,
.review-card { padding: 30px; border: 1px solid var(--line); background: white; }
.team-placeholder {
  height: 240px;
  display: grid;
  place-items: center;
  margin: -30px -30px 24px;
  background: linear-gradient(145deg, var(--teal-light), #eef3f1);
  color: var(--teal);
}
.team-placeholder svg { width: 78px; fill: none; stroke: currentColor; stroke-width: 1.3; }
.team-card h3,
.review-card h3 { margin: 0 0 8px; font-family: var(--heading); font-size: 20px; font-weight: 500; }
.team-card p,
.review-card p { margin: 0; color: var(--gray); font-size: 14px; }
.review-card .stars { margin-bottom: 15px; color: var(--coral); letter-spacing: 3px; }
.review-note { max-width: 760px; margin: 0 auto 40px; text-align: center; }

.schedule-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 7vw; align-items: start; }
.schedule-aside { padding: 32px; background: var(--teal); color: white; }
.schedule-aside h2 { margin: 0 0 15px; font-family: var(--heading); font-size: 26px; font-weight: 400; }
.schedule-aside p { color: rgba(255,255,255,.78); }
.schedule-aside address { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.25); font-style: normal; }

.legal-content { max-width: 900px; margin: 0 auto; }
.legal-content h2 { margin-top: 42px; font-size: 27px; }
.legal-meta { padding: 17px 20px; border-left: 3px solid var(--coral); background: var(--off-white); color: var(--gray); }
.download-box { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin: 35px 0; padding: 25px; background: var(--teal-light); }
.download-box p { margin: 0; }

@media (max-width: 1180px) {
  .multi-nav { display: none; }
  .utility-right > span { display: none; }
}
@media (max-width: 850px) {
  .split-content,
  .split-content.reverse,
  .schedule-layout { grid-template-columns: 1fr; }
  .link-card-grid,
  .team-grid,
  .review-grid { grid-template-columns: 1fr 1fr; }
  .content-image { min-height: 350px; }
  .download-box { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 600px) {
  .page-hero { min-height: 290px; }
  .link-card-grid,
  .team-grid,
  .review-grid,
  .bullet-grid { grid-template-columns: 1fr; }
  .page-hero p:last-child { font-size: 14px; }
}

@media print {
  .skip-link,
  [data-site-shell="header"],
  [data-site-shell="footer"],
  .sticky-schedule,
  .download-box,
  .content-actions { display: none !important; }
  .page-hero { min-height: auto; padding: 30px; background: white; color: #222; }
  .page-hero::before,
  .page-hero::after { display: none; }
  .page-hero h1 { color: #222; font-size: 32px; }
  .breadcrumbs { display: none; }
  .section { padding: 25px 40px; }
}



.team-card > img {
  width: calc(100% + 60px);
  height: 240px;
  margin: -30px -30px 24px;
  display: block;
  object-fit: cover;
}

.team-card strong {
  color: var(--teal);
  font-weight: 700;
}

.sitemap-hero {
  padding: 110px 24px 75px;
  background: linear-gradient(135deg, var(--off-white), var(--teal-light));
  text-align: center;
}
.sitemap-hero h1 {
  margin: 0;
  color: var(--teal);
  font-family: var(--heading);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -.04em;
}
.sitemap-hero > p:last-child {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--gray);
  font-size: 17px;
}
.sitemap-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.sitemap-card {
  padding: 34px;
  border-top: 3px solid var(--coral);
  background: white;
  box-shadow: 0 14px 45px rgba(20, 57, 61, .08);
}
.sitemap-card h2 {
  margin: 0 0 18px;
  color: var(--teal);
  font-family: var(--heading);
  font-size: 27px;
  font-weight: 500;
}
.sitemap-card a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(20, 57, 61, .1);
  color: var(--gray);
}
.sitemap-card a:hover { color: var(--coral); }
@media (max-width: 720px) {
  .sitemap-grid { grid-template-columns: 1fr; }
  .sitemap-hero { padding: 80px 22px 55px; }
}