:root {
  --navy: #08283b;
  --navy-2: #123f56;
  --navy-3: #1d5b72;
  --gold: #c8a33c;
  --gold-light: #ecd986;
  --bone: #f5f1e9;
  --paper: #fffdf9;
  --white: #fff;
  --ink: #102f42;
  --body: #40535e;
  --muted: #6c7b83;
  --line: #d9dedb;
  --line-dark: rgba(255, 255, 255, .16);
  --shadow: 0 22px 60px rgba(8, 40, 59, .12);
  --shadow-soft: 0 4px 20px rgba(14, 42, 61, .08);
  --shadow-focal: 0 18px 50px rgba(14, 42, 61, .14);
  --card-radius: 16px;
  --focal-radius: 100px 16px 16px 16px;
  --header-navy: #0e2a3d;
  --header-action: #365574;
  --header-action-hover: #094366;
  --header-gold: #f2e49b;
  --container: 1440px;
  --wide: var(--container);
  --reading: 760px;
  --space-x: clamp(1rem, 2vw + .25rem, 3rem);
  --serif: "Roboto Slab", Georgia, serif;
  --sans: "Source Sans Pro", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--body);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button,
input,
textarea { font: inherit; }
button { cursor: pointer; }

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.08;
}

h1 {
  max-width: 16ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.65rem, 5.2vw, 5.4rem);
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 3.2vw, 3.55rem);
  letter-spacing: -.035em;
}

h3 {
  margin-bottom: .75rem;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
}

p { margin-bottom: 1.25rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-x);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  color: var(--navy);
  background: var(--gold-light);
  border-radius: 4px;
  font-weight: 700;
  transform: translateY(-160%);
}

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

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  color: var(--navy-3);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.25rem;
  height: 2px;
  content: "";
  background: var(--gold);
}

.eyebrow--light { color: var(--gold-light); }
.lede { max-width: 62ch; font-size: clamp(1.15rem, 1.7vw, 1.4rem); line-height: 1.55; }
.measure { max-width: var(--reading); }
.muted { color: var(--muted); }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border: 2px solid transparent;
  border-radius: 30px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn--gold { color: var(--navy); background: var(--gold-light); }
.btn--gold:hover { background: #f5e89f; }
.btn--navy { color: var(--white); background: var(--navy); }
.btn--navy:hover { background: var(--navy-2); }
.btn--outline { color: var(--navy); border-color: var(--navy); background: transparent; }
.btn--outline:hover { color: var(--white); background: var(--navy); }
.btn--outline-light { color: var(--white); border-color: rgba(255,255,255,.58); background: transparent; }
.btn--outline-light:hover { color: var(--navy); border-color: var(--white); background: var(--white); }
.btn--primary { color: var(--white); border-color: var(--header-action); background: var(--header-action); }
.btn--primary:hover { border-color: var(--header-action-hover); background: var(--header-action-hover); }
.btn--sm { min-height: 44px; padding: 10px 22px; font-size: .9375rem; }

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid rgba(242, 228, 155, .24);
  background: rgba(14, 42, 61, .94);
  backdrop-filter: blur(16px);
}
.site-header__inner { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 1.5rem; }

.site-logo {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  flex: 0 1 425px;
  align-items: center;
  gap: .85rem;
  min-width: 0;
  text-decoration: none;
}

.site-logo__crest { width: 58px; height: auto; }
.site-logo__wordmark { width: clamp(245px, 22vw, 320px); height: auto; padding-left: .8rem; border-left: 1px solid rgba(242, 228, 155, .42); }
.site-header__cta {
  display: none;
  min-height: 44px;
  flex: 0 0 auto;
  padding: 10px 22px;
  color: var(--white);
  border-color: var(--header-action);
  background: var(--header-action);
  font-size: .9375rem;
  white-space: nowrap;
}
.site-header__cta:hover { color: var(--white); border-color: var(--header-action-hover); background: var(--header-action-hover); }
.primary-nav { display: none; }
.primary-nav__list { display: flex; align-items: center; gap: 1.5rem; margin: 0; padding: 0; list-style: none; }
.primary-nav a,
.nav-menu__button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 0;
  color: rgba(255,255,255,.86);
  background: none;
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-decoration: none;
  white-space: nowrap;
}
.primary-nav a:hover,
.nav-menu__button:hover { color: var(--header-gold); }
.primary-nav a[aria-current="page"] { color: var(--header-gold); }
.nav-menu { position: relative; }
.nav-menu__button { gap: .35rem; }
.nav-menu__panel {
  position: absolute;
  z-index: 30;
  top: calc(100% + .35rem);
  left: 50%;
  width: 258px;
  margin: 0;
  padding: .5rem;
  border: 0;
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: var(--shadow-focal);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: 160ms ease;
}
.nav-menu.is-open .nav-menu__panel,
.nav-menu:focus-within .nav-menu__panel,
.nav-menu:hover .nav-menu__panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-menu__panel a { display: flex; padding: .6rem .8rem; color: var(--ink); border-radius: 8px; }
.nav-menu__panel a:hover { color: var(--navy); background: var(--bone); }

/* Full-width Services mega menu. Content grouping follows the current client
   site; the visual treatment stays within the redesigned MOFAS system. */
.services-mega { position: static; }
.services-mega__trigger { position: relative; }
.services-mega__trigger::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: clamp(24px, 3vw, 40px);
  content: "";
}
.services-mega__trigger.is-current { color: var(--header-gold); }
.services-mega__panel {
  position: absolute;
  z-index: 120;
  top: 100%;
  left: 0;
  width: 100%;
  padding-block: 1.25rem 1.5rem;
  color: var(--ink);
  border-top: 3px solid var(--gold);
  background: var(--bone);
  box-shadow: 0 22px 48px rgba(8,40,59,.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}
.services-mega:hover .services-mega__panel,
.services-mega:focus-within .services-mega__panel,
.services-mega.is-pointer-open .services-mega__panel,
.services-mega.is-open .services-mega__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.services-mega__inner {
  width: min(calc(100% - (2 * var(--space-x))), var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) repeat(3, minmax(180px, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: stretch;
}
.services-mega__intro {
  min-width: 0;
  padding: 1.35rem 1.5rem;
  border-radius: 48px 12px 12px 12px;
  color: rgba(255,255,255,.82);
  background: var(--navy);
  box-shadow: var(--shadow-soft);
}
.services-mega__eyebrow,
.services-mega__label {
  margin: 0 0 .7rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.services-mega__intro .services-mega__eyebrow { color: var(--gold-light); }
.primary-nav .services-mega__overview {
  min-height: 0;
  display: block;
  padding: 0;
  color: var(--white);
  text-decoration: none;
  white-space: normal;
}
.services-mega__overview strong {
  display: block;
  margin-bottom: .35rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.2;
}
.services-mega__overview span { display: block; max-width: 100%; color: rgba(255,255,255,.72); font-size: .9rem; font-weight: 400; line-height: 1.45; overflow-wrap: anywhere; white-space: normal; }
.services-mega__overview::after { display: block; margin-top: 1rem; color: var(--gold-light); content: "Explore all services  →"; font-size: .82rem; font-weight: 700; }
.services-mega__column { min-width: 0; }
.primary-nav .services-mega__column a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .55rem 0;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: .94rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}
.primary-nav .services-mega__column a::after { color: var(--gold); content: "→"; transition: transform 180ms ease; }
.primary-nav .services-mega__column a:hover,
.primary-nav .services-mega__column a:focus-visible { color: var(--navy); }
.primary-nav .services-mega__column a:hover::after,
.primary-nav .services-mega__column a:focus-visible::after { transform: translateX(4px); }

.menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  color: var(--white);
  background: transparent;
}
.menu-toggle span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--header-gold); transition: 180ms ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 1rem; padding: 1.25rem var(--space-x) 2rem; border-top: 1px solid var(--line-dark); }
.mobile-nav.is-open { display: flex; }
.mobile-nav ul { display: flex; flex-direction: column; margin: 0; padding: 0; list-style: none; }
.mobile-nav a { display: flex; min-height: 48px; align-items: center; border-bottom: 1px solid var(--line-dark); color: var(--white); font-weight: 600; text-decoration: none; }
.mobile-nav .mobile-menu__group-label { display: flex; min-height: 48px; align-items: center; color: var(--white); border-bottom: 1px solid var(--line-dark); font-weight: 600; }
.mobile-nav .mobile-services__subitem a,
.mobile-nav .mobile-resources__subitem a { min-height: 40px; padding-left: 1.1rem; color: rgba(255,255,255,.7); font-size: .9rem; }
.mobile-nav .mobile-services__subitem a::before,
.mobile-nav .mobile-resources__subitem a::before { margin-right: .55rem; color: var(--gold-light); content: "↳"; }
.mobile-nav .btn { display: inline-flex; align-self: flex-start; color: var(--white); border: 2px solid var(--header-action); background: var(--header-action); }

/* Inner page hero */
.page-hero { position: relative; min-height: clamp(380px, 34vw, 470px); color: var(--white); background: var(--navy); isolation: isolate; }
.page-hero__image,
.page-hero__wash { position: absolute; inset: 0; }
.page-hero__image { z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }
.page-hero__wash { z-index: -1; background: linear-gradient(90deg, rgba(6, 33, 49, .97) 0%, rgba(6, 33, 49, .86) 43%, rgba(6, 33, 49, .35) 73%, rgba(6, 33, 49, .06) 100%); }
.page-hero__inner { display: flex; min-height: inherit; align-items: center; padding-top: clamp(2.5rem, 4vw, 4rem); padding-bottom: clamp(2.5rem, 4vw, 4rem); }
.page-hero__content { width: min(720px, 58%); }
.page-hero h1 { color: var(--white); }
.page-hero .lede { color: rgba(255, 255, 255, .86); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .55rem; margin: 0 0 1.5rem; padding: 0; color: rgba(255, 255, 255, .72); font-size: .9rem; list-style: none; }
.breadcrumbs li + li::before { margin-right: .55rem; content: "/"; color: var(--gold-light); }
.breadcrumbs a { text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 3px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

.page-hero--compact { min-height: clamp(350px, 30vw, 420px); }
.page-hero--compact h1,
.page-hero h1 { max-width: 20ch; font-size: clamp(2.6rem, 4.1vw, 4.4rem); }
.page-hero--contact .page-hero__image { object-position: center 40%; }

/* Layout sections */
.section { padding-block: clamp(4.5rem, 8vw, 8rem); }
.section--tight { padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.section--bone { background: var(--bone); }
.section--navy { color: rgba(255,255,255,.8); background: var(--navy); }
.section--navy h2,
.section--navy h3 { color: var(--white); }

.intro-grid { display: grid; gap: clamp(2.5rem, 6vw, 7rem); }
.intro-grid__aside { border-top: 3px solid var(--navy); padding-top: 1.5rem; }
.intro-grid__aside p:last-child { margin-bottom: 0; }
.pullquote {
  margin: 2.5rem 0 0;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.45;
}

.specialty-list { display: flex; flex-wrap: wrap; gap: .65rem; margin: 1.75rem 0 0; padding: 0; list-style: none; }
.specialty-list li {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: .55rem .85rem;
  border: 1px solid rgba(8, 40, 59, .2);
  color: var(--ink);
  background: rgba(255, 255, 255, .55);
  font-weight: 700;
  line-height: 1.2;
}

.credential-band { display: grid; gap: 1px; background: var(--line-dark); }
.credential {
  padding: clamp(1.4rem, 3vw, 2.25rem);
  color: rgba(255,255,255,.76);
  background: var(--navy-2);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.4;
  text-transform: uppercase;
}
.credential::before { display: block; width: 2rem; height: 2px; margin-bottom: 1rem; content: ""; background: var(--gold-light); }

/* Service detail */
.service-layout { display: grid; gap: clamp(2.5rem, 5vw, 6rem); align-items: start; }
.service-index {
  padding: 1.5rem;
  border-top: 3px solid var(--gold);
  background: var(--bone);
}
.service-index h2 { font-size: 1.25rem; }
.service-index ol { margin: 0; padding-left: 1.2rem; }
.service-index a { display: inline-flex; min-height: 44px; align-items: center; color: var(--ink); font-weight: 700; text-underline-offset: 4px; }
.service-content { counter-reset: section; }
.service-block { position: relative; padding: 0 0 clamp(3rem, 6vw, 5.5rem); }
.service-block + .service-block { padding-top: clamp(3rem, 6vw, 5.5rem); border-top: 1px solid var(--line); }
.service-block:last-child { padding-bottom: 0; }
.service-block h2 { max-width: 16ch; }
.service-block__label { color: var(--gold); font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.service-block ul { padding-left: 1.25rem; }
.service-note { margin-top: 2rem; padding: 1.5rem; border-left: 3px solid var(--gold); color: var(--ink); background: var(--bone); }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-top: 2rem; }
.related-grid a { display: flex; min-height: 52px; align-items: center; padding: .75rem 1rem; border: 1px solid var(--line); border-radius: var(--card-radius); color: var(--ink); background: var(--white); box-shadow: var(--shadow-soft); font-weight: 700; text-decoration: none; }
.related-grid a:hover { border-color: var(--gold); background: var(--bone); }

/* About: practice identity + personal story */
.about-dual {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--focal-radius);
  background: var(--line);
  box-shadow: var(--shadow-focal);
}

.about-dual__panel {
  min-height: 100%;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--white);
}

.about-dual__panel--brand {
  color: rgba(255, 255, 255, .78);
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
}

.about-dual__panel--brand h2,
.about-dual__panel--brand h3 { color: var(--white); }
.about-dual__panel--brand .placeholder-label { color: var(--gold-light); }

.placeholder-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--navy-3);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.identity-points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.identity-point {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.18);
}

.identity-point h3 { margin-bottom: .35rem; font-size: 1.05rem; }
.identity-point p { margin-bottom: 0; font-size: .96rem; }

.doctor-summary {
  display: grid;
  gap: 1.5rem;
}

.doctor-summary__name {
  padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--navy);
}

.doctor-summary__name h2 { margin-bottom: .5rem; }
.doctor-summary__name p { margin-bottom: 0; color: var(--navy-3); font-weight: 700; }

.story-experience {
  display: grid;
  overflow: hidden;
  border-radius: var(--focal-radius);
  background: var(--white);
  box-shadow: var(--shadow-focal);
}

.story-experience__visual {
  min-height: 340px;
  position: relative;
}

.story-experience__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-experience__quote {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  margin: 0;
  padding: 1.35rem;
  color: var(--white);
  background: rgba(8,40,59,.9);
  border-left: 3px solid var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.45;
}

.story-experience__content { padding: clamp(2rem, 5vw, 4rem); }

.story-tabs {
  display: grid;
  gap: .5rem;
  margin: 1.75rem 0;
}

.story-tab {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  min-height: 56px;
  align-items: center;
  gap: .65rem;
  padding: .65rem .8rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 700;
}

.story-tab span {
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .1em;
}

.story-tab:hover,
.story-tab[aria-selected="true"] {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.story-tab[aria-selected="true"] span { color: var(--gold-light); }
.story-panel[hidden] { display: none; }
.story-panel h3 { font-size: clamp(1.45rem, 2.5vw, 2.2rem); }

.brand-spectrum {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.13);
}

.brand-spectrum__item {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: rgba(255,255,255,.75);
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
}

.brand-spectrum__item:nth-child(2) { background: linear-gradient(135deg, #174a61, #226c80); }
.brand-spectrum__item:nth-child(3) { background: linear-gradient(135deg, #1c576d, #2b7d8c); }
.brand-spectrum__item h3 { color: var(--white); }
.brand-spectrum__item p { margin-bottom: 0; }

/* Ankle pain: guided path */
.hero-paths {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-paths a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: .5rem;
  padding: .55rem .8rem;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  background: rgba(8,40,59,.25);
  font-weight: 700;
  text-decoration: none;
}

.hero-paths a::after { content: "↓"; color: var(--gold-light); }
.hero-paths a:hover { border-color: var(--gold-light); background: rgba(8,40,59,.7); }

.service-index--guided { padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--card-radius); background: var(--white); box-shadow: 0 12px 32px rgba(8,40,59,.08); }
.service-index--guided h2 { margin: 0; padding: 1.25rem 1.4rem; color: var(--white); background: var(--navy); }
.service-index__label { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.service-index--guided ol { margin: 0; padding: 0; list-style: none; counter-reset: nav-item; }
.service-index--guided li { counter-increment: nav-item; }
.service-index--guided a {
  width: 100%;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .45rem;
  padding: .85rem 1.2rem;
  border-left: 3px solid transparent;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.service-index--guided a::before { content: "0" counter(nav-item); color: var(--gold); font-size: .78rem; letter-spacing: .08em; }
.service-index--guided a.is-active { border-left-color: var(--gold); color: var(--white); background: var(--navy-2); }

.choice-grid {
  display: grid;
  gap: .75rem;
  margin-top: 2rem;
}

.choice-card {
  min-height: 110px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.choice-card small { display: block; margin-bottom: .4rem; color: var(--gold); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.choice-card strong { display: block; font-family: var(--serif); font-size: 1.15rem; line-height: 1.25; }
.choice-card:hover,
.choice-card[aria-selected="true"] { color: var(--white); border-color: var(--navy); background: var(--navy); transform: translateY(-2px); }
.choice-card[aria-selected="true"] small { color: var(--gold-light); }

.choice-detail {
  margin-top: 1rem;
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  background: var(--bone);
}
.choice-detail[hidden] { display: none; }
.choice-detail p:last-child { margin-bottom: 0; }

.diagnostic-ui {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.diagnostic-tabs { display: flex; flex-wrap: wrap; gap: .5rem; }
.diagnostic-tab {
  min-height: 48px;
  padding: .65rem 1rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font-weight: 700;
}
.diagnostic-tab:hover,
.diagnostic-tab[aria-selected="true"] { color: var(--white); border-color: var(--navy); background: var(--navy); }
.diagnostic-panel {
  min-height: 180px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 3px solid var(--gold);
  background: var(--bone);
}
.diagnostic-panel[hidden] { display: none; }
.diagnostic-panel h3 { font-size: clamp(1.4rem, 2vw, 2rem); }

.treatment-grid { display: grid; gap: 1rem; margin-top: 2rem; }
.treatment-card { padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid var(--line); border-radius: var(--card-radius); background: var(--white); box-shadow: var(--shadow-soft); }
.treatment-card--accent { color: rgba(255,255,255,.8); border-color: var(--navy); background: var(--navy); }
.treatment-card--accent h3 { color: var(--white); }
.treatment-card__number { display: block; margin-bottom: 1.2rem; color: var(--gold); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.treatment-card--accent .treatment-card__number { color: var(--gold-light); }

.inline-cta {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  color: rgba(255,255,255,.78);
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
}
.inline-cta h2 { margin-bottom: .7rem; color: var(--white); }
.inline-cta p { margin-bottom: 0; }
.inline-cta .btn { justify-self: start; }

/* Editorial inner-page refinements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.company-editorial,
.about-profile {
  display: grid;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.company-editorial__copy h2,
.about-profile__copy h2 { max-width: 14ch; }

.facility-placeholder {
  position: relative;
  min-height: 430px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px dashed rgba(8,40,59,.35);
  border-radius: var(--focal-radius);
  color: var(--ink);
  background:
    linear-gradient(135deg, transparent 0 49.7%, rgba(8,40,59,.07) 50%, transparent 50.3%),
    linear-gradient(45deg, transparent 0 49.7%, rgba(8,40,59,.07) 50%, transparent 50.3%),
    #e9e8e3;
  box-shadow: var(--shadow-focal);
}

.facility-placeholder::before,
.facility-placeholder::after {
  position: absolute;
  width: 42px;
  height: 42px;
  content: "";
}
.facility-placeholder::before { top: 1.2rem; left: 1.2rem; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.facility-placeholder::after { right: 1.2rem; bottom: 1.2rem; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }
.facility-placeholder span { margin-bottom: .75rem; color: var(--navy-3); font-size: .76rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.facility-placeholder strong { max-width: 18ch; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.1; }
.facility-placeholder small { max-width: 50ch; margin-top: 1rem; color: var(--muted); font-size: .95rem; }

.doctor-portrait {
  position: relative;
  margin: 0;
  padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem) 0 0;
}
.doctor-portrait::before { position: absolute; z-index: -1; top: 0; right: 0; width: 62%; height: 68%; content: ""; background: var(--gold-light); }
.doctor-portrait img { width: min(100%, 520px); aspect-ratio: 1; border-radius: var(--focal-radius); object-fit: cover; object-position: center; box-shadow: var(--shadow-focal); }
.doctor-portrait figcaption { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1rem; padding-top: .9rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.doctor-portrait figcaption strong { color: var(--ink); }

.doctor-highlights { display: grid; gap: .75rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.doctor-highlights li { display: grid; grid-template-columns: 2rem 1fr; gap: .75rem; align-items: start; }
.doctor-highlights li::before { content: "—"; color: var(--gold); font-weight: 700; }

.story-flow {
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.story-flow > * { min-width: 0; }
.story-flow__quote {
  margin: 0;
  color: var(--ink);
}
.story-flow__quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.3vw, 3.4rem);
  line-height: 1.2;
}
.story-flow__quote::before { display: block; width: 3rem; height: 3px; margin-bottom: 1.5rem; content: ""; background: var(--gold); }
.story-flow__quote cite { display: block; margin-top: 1.25rem; color: var(--muted); font-family: var(--sans); font-size: .82rem; font-style: normal; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.story-flow__quote cite::before { margin-right: .5rem; color: var(--gold); content: "—"; }
.story-flow .story-tabs { grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.story-flow .story-tab {
  min-height: 52px;
  display: block;
  padding: .7rem .25rem;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  text-align: left;
}
.story-flow .story-tab span { display: block; margin-bottom: .25rem; }
.story-flow .story-tab:hover,
.story-flow .story-tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--gold); background: transparent; transform: none; }
.story-flow .story-tab[aria-selected="true"] span { color: var(--gold); }
.story-flow .story-panel { padding-top: 1rem; }

.director-credentials { margin-top: clamp(2rem, 4vw, 3rem); padding-top: 1.5rem; border-top: 3px solid var(--navy); }
.director-credentials h3 { margin-bottom: .5rem; font-size: clamp(1.2rem, 1.8vw, 1.55rem); }

.about-specialties__inner { display: grid; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.about-specialties__heading h2 { max-width: 13ch; }
.specialty-lines {
  counter-reset: specialty;
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.specialty-lines li { counter-increment: specialty; border-bottom: 1px solid var(--line); }
.specialty-lines a { min-height: 72px; display: grid; grid-template-columns: 2.4rem minmax(0, 1fr) auto; gap: .75rem; align-items: center; padding: .9rem 0; color: var(--ink); font-family: var(--serif); font-size: clamp(1.1rem, 1.6vw, 1.35rem); text-decoration: none; }
.specialty-lines a::before { color: var(--gold); content: counter(specialty, decimal-leading-zero); font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.specialty-lines a::after { color: var(--gold); content: "→"; font-family: var(--sans); font-size: 1rem; transition: transform 180ms ease; }
.specialty-lines a:hover,
.specialty-lines a:focus-visible { color: var(--navy); }
.specialty-lines a:hover::after,
.specialty-lines a:focus-visible::after { transform: translateX(4px); }

.credentials-flow {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.credentials-flow li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.credentials-flow li::before { margin-right: .75rem; content: "•"; color: var(--gold); }

/* Compact guide rail and flowing ankle content */
.service-layout--flow {
  max-width: var(--container);
  display: block;
}

/*
 * Inner-page composition system:
 * Keep roughly 70% of each page as open editorial flow. Reserve contained
 * surfaces for the roughly 30% that asks visitors to choose, compare or act.
 */

.service-layout--flow .service-index--guided {
  position: sticky;
  z-index: 8;
  top: .75rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
  overflow: visible;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255,253,249,.95);
  box-shadow: none;
  backdrop-filter: blur(12px);
}
.service-layout--flow .service-index--guided h2 { padding: 0; color: var(--muted); background: transparent; white-space: nowrap; }
.service-layout--flow .service-index--guided ol { display: flex; justify-content: center; gap: clamp(1.25rem, 4vw, 4rem); }
.service-layout--flow .service-index--guided li { flex: 0 0 auto; }
.service-layout--flow .service-index--guided a {
  width: auto;
  min-height: 52px;
  display: flex;
  grid-template-columns: none;
  gap: .6rem;
  padding: .7rem .1rem;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  background: transparent;
  font-size: .9rem;
}
.service-layout--flow .service-index--guided a::before {
  width: 1.6rem;
  height: 1.6rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(184,148,45,.35);
  border-radius: 50%;
  color: var(--gold);
  line-height: 1;
}
.service-layout--flow .service-index--guided a.is-active::before { color: var(--navy); border-color: var(--gold-light); background: var(--gold-light); }
.service-layout--flow .service-index--guided a.is-active { color: var(--ink); border-bottom-color: var(--gold); background: transparent; }
.service-layout--flow .service-content { width: min(100%, 1240px); margin-inline: auto; }
.service-layout--flow .service-block { scroll-margin-top: 82px; }
.service-layout--flow .service-block { padding-bottom: clamp(4rem, 8vw, 7rem); }
.service-layout--flow .service-block + .service-block { padding-top: clamp(4rem, 8vw, 7rem); }
.service-layout--flow .service-block h2 { max-width: 19ch; }
.service-layout--flow .service-block > .lede,
.service-layout--flow .diagnostic-panel,
.service-layout--flow .service-note { max-width: 820px; }

.ankle-photo-row {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: 2rem;
}
.ankle-photo-row figure { margin: 0; }
.ankle-photo-row img { width: 100%; height: auto; border-radius: var(--focal-radius); box-shadow: var(--shadow-focal); }
.ankle-photo-row figcaption { margin-top: .7rem; color: var(--muted); font-size: .85rem; }

.interaction-island {
  position: relative;
  margin-top: clamp(2.25rem, 5vw, 4rem);
  padding: clamp(1.5rem, 4vw, 3.25rem);
  overflow: hidden;
  border: 1px solid rgba(8,40,59,.1);
  border-radius: var(--card-radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(247,242,230,.92)),
    var(--bone);
  box-shadow: 0 22px 55px rgba(8,40,59,.08);
}
.interaction-island::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(var(--gold-light), var(--gold));
}
.interaction-island__intro { max-width: 680px; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.interaction-island__intro h3 { margin-bottom: .55rem; font-size: clamp(1.5rem, 2.4vw, 2.2rem); }
.interaction-island__intro p:last-child { margin-bottom: 0; color: var(--muted); }
.interaction-island__eyebrow {
  margin-bottom: .55rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.interaction-island__controls { border: 1px solid rgba(8,40,59,.14); background: rgba(255,255,255,.7); }
.interaction-island .choice-grid,
.interaction-island .diagnostic-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
}
.interaction-island .diagnostic-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.interaction-island .choice-card,
.interaction-island .diagnostic-tab {
  position: relative;
  min-height: 88px;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .7rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 0;
  border-right: 1px solid rgba(8,40,59,.14);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  text-align: left;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}
.interaction-island .choice-card:last-child,
.interaction-island .diagnostic-tab:last-child { border-right: 0; }
.interaction-island .choice-card small,
.interaction-island .diagnostic-tab small {
  display: block;
  margin: 0;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.interaction-island .choice-card strong,
.interaction-island .diagnostic-tab strong { display: block; font-family: var(--sans); font-size: .94rem; line-height: 1.25; }
.interaction-island .choice-card > span,
.interaction-island .diagnostic-tab > span { color: var(--gold); font-size: 1.25rem; transition: transform .2s ease; }
.interaction-island .choice-card:hover,
.interaction-island .diagnostic-tab:hover { background: rgba(8,40,59,.07); transform: none; }
.interaction-island .choice-card[aria-selected="true"],
.interaction-island .diagnostic-tab[aria-selected="true"] { color: var(--white); background: var(--navy); }
.interaction-island .choice-card[aria-selected="true"] small,
.interaction-island .diagnostic-tab[aria-selected="true"] small,
.interaction-island .choice-card[aria-selected="true"] > span,
.interaction-island .diagnostic-tab[aria-selected="true"] > span { color: var(--gold-light); }
.interaction-island .choice-card[aria-selected="true"] > span,
.interaction-island .diagnostic-tab[aria-selected="true"] > span { transform: rotate(45deg); }
.interaction-island .choice-card:focus-visible,
.interaction-island .diagnostic-tab:focus-visible { position: relative; z-index: 2; outline: 3px solid var(--gold); outline-offset: -4px; }
.interaction-island__panels {
  min-height: 190px;
  display: grid;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3.25rem) clamp(.5rem, 2vw, 1.5rem) .25rem;
}
.interaction-island .choice-detail,
.interaction-island .diagnostic-panel {
  max-width: 900px;
  min-height: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  animation: innerPanelIn .22s ease both;
}
.interaction-island .choice-detail[hidden],
.interaction-island .diagnostic-panel[hidden] { display: none; }
.interaction-panel__number {
  color: rgba(8,40,59,.16);
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: .8;
}
.interaction-panel h3 { margin-bottom: .65rem; font-size: clamp(1.45rem, 2.3vw, 2rem); }
.interaction-panel p { max-width: 680px; margin-bottom: 0; font-size: clamp(1rem, 1.5vw, 1.12rem); }
@keyframes innerPanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-layout--flow .service-block.treatment-feature {
  position: relative;
  width: 100vw;
  min-height: clamp(700px, 70vw, 860px);
  margin-left: calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
  border-top: 0;
  color: rgba(255,255,255,.8);
  background: var(--navy);
}
.treatment-feature__image {
  position: absolute;
  inset: 0 0 0 48%;
  width: 52%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.treatment-feature__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy) 0%, var(--navy) 43%, rgba(8,40,59,.98) 50%, rgba(8,40,59,.68) 66%, rgba(8,40,59,.16) 100%),
    linear-gradient(0deg, rgba(8,40,59,.55), transparent 45%);
}
.treatment-feature__inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 700px) 1fr;
  align-items: center;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.treatment-feature__content { position: relative; z-index: 2; }
.service-layout--flow .treatment-feature h2 {
  max-width: 13ch;
  color: var(--white);
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
}
.service-layout--flow .treatment-feature > .lede,
.service-layout--flow .treatment-feature .lede { max-width: 620px; color: rgba(255,255,255,.78); }
.service-layout--flow .treatment-feature__options {
  position: relative;
  z-index: 1;
  gap: 0;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.service-layout--flow .treatment-card,
.service-layout--flow .treatment-card--accent { padding: 0; border: 0; color: rgba(255,255,255,.76); background: transparent; }
.service-layout--flow .treatment-card h3,
.service-layout--flow .treatment-card--accent h3 { color: var(--white); }
.service-layout--flow .treatment-card + .treatment-card { padding-left: clamp(2rem, 5vw, 3.5rem); border-left: 1px solid rgba(255,255,255,.2); }
.service-layout--flow .treatment-card .treatment-card__number,
.service-layout--flow .treatment-card--accent .treatment-card__number { color: var(--gold-light); }
.treatment-card__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: .6rem;
  margin-top: .75rem;
  color: var(--gold-light);
  font-weight: 700;
  text-decoration-color: rgba(242,228,155,.55);
  text-underline-offset: 5px;
}
.treatment-card__link span { transition: transform .2s ease; }
.treatment-card__link:hover span { transform: translateX(4px); }
.service-layout--flow .treatment-feature__note {
  max-width: 680px;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding: 1rem 0 1rem 1.25rem;
  border-left-color: var(--gold-light);
  color: rgba(255,255,255,.72);
  background: transparent;
  font-size: .9rem;
}
.treatment-feature__actions { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; margin-top: 2rem; }
.treatment-feature__text-link { min-height: 44px; display: inline-flex; align-items: center; color: var(--white); font-weight: 700; text-underline-offset: 5px; }
.treatment-feature__caption {
  position: absolute;
  right: var(--space-x);
  bottom: clamp(2rem, 5vw, 4rem);
  width: min(380px, 30vw);
  margin: 0;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold-light);
  color: var(--white);
  background: rgba(8,40,59,.76);
  font-size: .92rem;
  backdrop-filter: blur(8px);
}

.ankle-final-cta {
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold);
  color: rgba(255,255,255,.78);
  background: #061f2f;
}
.ankle-final-cta::after { display: none; }
.ankle-final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-top: clamp(3.5rem, 7vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 6.5rem);
}
.ankle-final-cta h2 { max-width: 16ch; margin-bottom: .65rem; color: var(--white); }
.ankle-final-cta p { max-width: 650px; margin-bottom: 0; }
.ankle-final-cta__actions { display: grid; gap: .7rem; justify-items: start; }
.ankle-final-cta__actions > a:not(.btn) { min-height: 36px; display: inline-flex; align-items: center; color: var(--white); font-weight: 700; text-underline-offset: 5px; }

.service-layout--flow .service-block.related-reference {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}
.related-reference__intro { max-width: 420px; }
.related-reference__intro h2 { max-width: 12ch; margin-bottom: .8rem; }
.related-reference__intro > p:last-child { margin-bottom: 0; color: var(--muted); }
.service-layout--flow .related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
}
.service-layout--flow .related-grid a {
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .8rem;
  align-items: center;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.related-grid__number { color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .08em; }
.related-grid__arrow { color: var(--gold); font-size: 1.15rem; transition: transform .2s ease; }
.service-layout--flow .related-grid a:hover,
.service-layout--flow .related-grid a:focus-visible { color: var(--white); border-color: var(--navy); background: var(--navy); transform: translateY(-2px); }
.service-layout--flow .related-grid a:hover .related-grid__number,
.service-layout--flow .related-grid a:hover .related-grid__arrow,
.service-layout--flow .related-grid a:focus-visible .related-grid__number,
.service-layout--flow .related-grid a:focus-visible .related-grid__arrow { color: var(--gold-light); }
.service-layout--flow .related-grid a:hover .related-grid__arrow,
.service-layout--flow .related-grid a:focus-visible .related-grid__arrow { transform: translateX(4px); }

/* Achilles tendonitis */
.achilles-hero .page-hero__image { object-position: center 52%; transform: scaleX(-1); }
.achilles-hero .page-hero__wash { background: linear-gradient(90deg, rgba(6,33,49,.98) 0%, rgba(6,33,49,.9) 43%, rgba(6,33,49,.42) 68%, rgba(6,33,49,.08) 100%); }
.achilles-page .service-block h2 { max-width: 22ch; }
.achilles-story { display: grid; gap: clamp(2.25rem, 5vw, 5rem); align-items: center; }
.achilles-story__copy > p:not(.service-block__label) { max-width: 700px; }
.achilles-story__visual { margin: 0; }
.achilles-story__visual img {
  width: 100%;
  height: clamp(280px, 34vw, 440px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--focal-radius);
  box-shadow: var(--shadow-focal);
}
.achilles-story__visual figcaption { margin-top: .75rem; color: var(--muted); font-size: .86rem; }
.achilles-activity-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.achilles-activity-line li { padding: .9rem 0 .9rem 1rem; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 700; }
.achilles-activity-line li::before { margin-left: -1rem; margin-right: .6rem; content: "•"; color: var(--gold); }
.achilles-location .interaction-island__intro { max-width: 780px; }
.achilles-evaluation__intro { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.achilles-evaluation__intro > div > p:last-child { max-width: 760px; }
.achilles-provider {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 1.1rem;
  align-items: center;
  margin: 0;
  padding-top: 1.25rem;
  border-top: 3px solid var(--navy);
}
.achilles-provider img {
  width: 112px;
  min-width: 112px;
  max-width: 112px;
  height: 112px;
  display: block;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}
.achilles-provider figcaption { display: grid; gap: .2rem; color: var(--muted); font-size: .84rem; }
.achilles-provider strong { color: var(--ink); font-family: var(--serif); font-size: 1.05rem; }
.service-layout--flow .achilles-treatment { min-height: clamp(720px, 68vw, 850px); }
.achilles-treatment .treatment-feature__image { object-position: center; }
.achilles-recovery__heading { display: grid; gap: 1.5rem; align-items: end; }
.achilles-recovery__heading > p { max-width: 680px; margin-bottom: 0; color: var(--muted); }
.achilles-recovery__timeline {
  display: grid;
  gap: 1.5rem;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: recovery-step;
}
.achilles-recovery__timeline li {
  position: relative;
  padding: 1.5rem 0 0;
  border-top: 3px solid var(--gold);
  counter-increment: recovery-step;
}
.achilles-recovery__timeline li::after {
  position: absolute;
  top: .45rem;
  right: 0;
  color: rgba(8,40,59,.09);
  content: "0" counter(recovery-step);
  font-family: var(--serif);
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
}
.achilles-recovery__timeline span { position: relative; z-index: 1; display: block; margin-bottom: .5rem; color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.achilles-recovery__timeline strong { position: relative; z-index: 1; display: block; margin-bottom: .65rem; color: var(--ink); font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.65rem); }
.achilles-recovery__timeline p { position: relative; z-index: 1; margin: 0; }

/* Fungal nail laser */
.fungal-hero .page-hero__image { object-position: center 62%; }
.fungal-hero .page-hero__wash { background: linear-gradient(90deg, rgba(6,33,49,.98) 0%, rgba(6,33,49,.92) 44%, rgba(6,33,49,.5) 70%, rgba(6,33,49,.12) 100%); }
.fungal-page .service-block h2 { max-width: 22ch; }
.fungal-causes__heading,
.fungal-treatment__heading,
.fungal-growth__heading { display: grid; gap: 1.5rem; align-items: end; }
.fungal-causes__heading > p,
.fungal-treatment__heading > p,
.fungal-growth__heading > p { max-width: 700px; margin-bottom: 0; }
.fungal-cause-lines { margin-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line); }
.fungal-cause-lines article {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  border-bottom: 1px solid var(--line);
}
.fungal-cause-lines article > span { color: var(--gold); font-size: .76rem; font-weight: 700; letter-spacing: .12em; }
.fungal-cause-lines h3 { margin-bottom: .4rem; font-size: clamp(1.25rem, 2vw, 1.7rem); }
.fungal-cause-lines p { max-width: 780px; margin-bottom: 0; }
.fungal-pullquote {
  max-width: 26ch;
  margin: clamp(2.5rem, 6vw, 5rem) 0 0 auto;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.16;
}
.fungal-pullquote::before { display: block; width: 4rem; height: 4px; margin-bottom: 1.25rem; content: ""; background: var(--gold); }
.fungal-diagnosis__grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.fungal-diagnosis__grid > div > p { max-width: 720px; }
.fungal-diagnosis__visual { margin: 0; }
.fungal-diagnosis__visual img { width: 100%; height: clamp(300px, 38vw, 500px); object-fit: cover; object-position: center; border-radius: var(--focal-radius); box-shadow: var(--shadow-focal); }
.fungal-diagnosis__visual figcaption { margin-top: .75rem; color: var(--muted); font-size: .86rem; }
.fungal-signs { display: grid; margin-top: clamp(2rem, 4vw, 3.5rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fungal-signs span { padding: 1rem .9rem; color: var(--ink); font-weight: 700; }
.service-layout--flow .service-block.fungal-treatment {
  position: relative;
  width: 100vw;
  min-height: 900px;
  margin-left: calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
  border: 0;
  color: rgba(255,255,255,.8);
  background: var(--navy);
  isolation: isolate;
}
.fungal-treatment__backdrop { position: absolute; z-index: -2; inset: 0; margin: 0; }
.fungal-treatment__backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.fungal-treatment::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8,40,59,.99) 0%, rgba(8,40,59,.97) 44%, rgba(8,40,59,.78) 70%, rgba(8,40,59,.45) 100%);
}
.fungal-treatment__inner { padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.service-layout--flow .fungal-treatment h2 { max-width: 15ch; color: var(--white); font-size: clamp(2.5rem, 4.6vw, 4.6rem); }
.fungal-treatment__heading > p { color: rgba(255,255,255,.78); }
.fungal-program {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  border-top: 1px solid rgba(255,255,255,.24);
  border-bottom: 1px solid rgba(255,255,255,.24);
}
.fungal-program__metric,
.fungal-program__duration { display: grid; align-content: center; margin: 0; }
.fungal-program__metric strong { color: var(--gold-light); font-family: var(--serif); font-size: clamp(4rem, 8vw, 7.5rem); line-height: .8; }
.fungal-program__metric span,
.fungal-program__duration span { color: rgba(255,255,255,.72); font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.fungal-program ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.fungal-program li { display: grid; grid-template-columns: minmax(100px, .32fr) 1fr; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.fungal-program li:last-child { border-bottom: 0; }
.fungal-program li span { color: var(--gold-light); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.fungal-program li strong { color: var(--white); }
.fungal-program__duration strong { color: var(--white); font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
.fungal-treatment__island { max-width: 980px; margin-top: clamp(2.5rem, 5vw, 4rem); color: var(--body); }
.fungal-treatment__island h3 { color: var(--ink); }
.fungal-treatment__actions { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; margin-top: 2rem; }
.fungal-treatment__actions > a:not(.btn) { min-height: 44px; display: inline-flex; align-items: center; color: var(--white); font-weight: 700; text-underline-offset: 5px; }
.fungal-growth__heading > p { color: var(--muted); }
.fungal-growth__fact {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 4px solid var(--gold);
}
.fungal-growth__fact strong { color: var(--navy); font-family: var(--serif); font-size: clamp(3rem, 7vw, 6.5rem); line-height: .9; }
.fungal-growth__fact p { max-width: 720px; margin-bottom: 0; }

/* Swift wart treatment */
.swift-hero .page-hero__image { object-position: center 58%; }
.swift-hero .page-hero__wash { background: linear-gradient(90deg, rgba(6,33,49,.98) 0%, rgba(6,33,49,.92) 45%, rgba(6,33,49,.48) 72%, rgba(6,33,49,.12) 100%); }

/* Condition family pages --------------------------------------------------
   These pages keep most copy in an editorial flow and reserve elevation,
   borders and stronger contrast for the moments that require interaction. */
.condition-hero .page-hero__image { object-position: center 55%; }
.condition-hero .page-hero__wash { background: linear-gradient(90deg, rgba(6,33,49,.98) 0%, rgba(6,33,49,.91) 44%, rgba(6,33,49,.44) 72%, rgba(6,33,49,.08) 100%); }
.condition-hero--reverse .page-hero__image { transform: scaleX(-1); }
.condition-page .service-block__label,
.condition-feature .service-block__label { color: var(--gold); }
.condition-intro__heading,
.condition-signals__heading,
.condition-process__heading {
  display: grid;
  gap: clamp(1.25rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 3.75rem);
}
.condition-intro__heading > p,
.condition-signals__heading > p,
.condition-process__heading > p { max-width: 660px; margin-bottom: .2rem; color: var(--muted); }
.condition-intro__split {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.condition-intro__visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--focal-radius);
  box-shadow: var(--shadow-focal);
}
.condition-intro__visual img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.condition-intro__visual figcaption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 330px;
  padding: 1rem 1.15rem;
  color: rgba(255,255,255,.88);
  border-left: 3px solid var(--gold-light);
  background: rgba(8,40,59,.9);
  font-size: .92rem;
  line-height: 1.45;
}
.condition-points { display: grid; gap: 1.25rem; }
.condition-points > div { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.condition-points span { color: var(--gold); font-size: .74rem; font-weight: 700; letter-spacing: .12em; }
.condition-points h3 { margin-bottom: .4rem; }
.condition-points p { margin-bottom: 0; color: var(--muted); }
.condition-feature {
  position: relative;
  width: 100vw;
  min-height: 650px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  color: rgba(255,255,255,.84);
  background: var(--navy);
  isolation: isolate;
}
.condition-feature__image,
.condition-feature__wash { position: absolute; inset: 0; }
.condition-feature__image { z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.condition-feature__wash { z-index: -1; background: linear-gradient(90deg, rgba(8,40,59,.98) 0%, rgba(8,40,59,.94) 44%, rgba(8,40,59,.55) 72%, rgba(8,40,59,.28) 100%); }
.condition-feature__inner {
  display: grid;
  min-height: inherit;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.condition-feature__story { max-width: 700px; }
.condition-feature h2 { max-width: 15ch !important; color: var(--white); font-size: clamp(2.55rem, 4.8vw, 4.8rem); }
.condition-feature__story > p:not(.service-block__label) { max-width: 58ch; }
.condition-feature__steps { display: grid; align-self: stretch; background: rgba(8,40,59,.84); backdrop-filter: blur(8px); }
.condition-feature__steps > div { display: grid; grid-template-columns: 56px 1fr; gap: 1rem; align-content: center; padding: 1.5rem; border-top: 1px solid rgba(255,255,255,.18); }
.condition-feature__steps > div:first-child { border-top: 0; }
.condition-feature__steps span { color: var(--gold-light); font-weight: 700; letter-spacing: .12em; }
.condition-feature__steps h3 { margin-bottom: .35rem; color: var(--white); }
.condition-feature__steps p { margin-bottom: 0; color: rgba(255,255,255,.72); }
.condition-process__timeline { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: condition-step; }
.condition-process__timeline li { position: relative; display: grid; grid-template-columns: 68px 1fr; gap: clamp(1rem, 3vw, 2rem); padding: 1.65rem 0; border-top: 1px solid var(--line); counter-increment: condition-step; }
.condition-process__timeline li::before { content: counter(condition-step, decimal-leading-zero); color: var(--gold); font-weight: 700; letter-spacing: .12em; }
.condition-process__timeline h3 { margin-bottom: .45rem; }
.condition-process__timeline p { max-width: 780px; margin-bottom: 0; color: var(--muted); }

/* Regenerative treatment detail pages */
.treatment-detail__intro { display: grid; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.treatment-detail__copy > p:not(.service-block__label) { max-width: 62ch; }
.treatment-detail__visual { position: relative; overflow: hidden; min-height: 500px; border-radius: var(--focal-radius); box-shadow: var(--shadow-focal); }
.treatment-detail__visual img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.treatment-detail__visual figcaption { position: absolute; right: 0; bottom: 0; max-width: 420px; padding: 1.2rem 1.4rem; color: rgba(255,255,255,.86); border-left: 3px solid var(--gold-light); background: rgba(8,40,59,.94); }
.treatment-detail__facts { display: grid; gap: 0; margin-top: 2rem; border-top: 1px solid var(--line); }
.treatment-detail__facts p { display: grid; grid-template-columns: 42px 1fr; gap: 1rem; margin: 0; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.treatment-detail__facts span { color: var(--gold); font-size: .74rem; font-weight: 700; }
.treatment-detail__facts strong { color: var(--ink); }
.treatment-journey { position: relative; width: 100vw; margin-left: calc(50% - 50vw); color: rgba(255,255,255,.82); background: var(--navy); }
.treatment-journey__inner { padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.treatment-journey h2 { max-width: 16ch !important; color: var(--white); }
.treatment-journey__grid { display: grid; gap: 0; margin-top: clamp(2rem, 5vw, 4rem); border-top: 1px solid rgba(255,255,255,.2); }
.treatment-journey__grid article { position: relative; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.treatment-journey__grid small { color: var(--gold-light); font-weight: 700; letter-spacing: .14em; }
.treatment-journey__grid h3 { margin-top: .75rem; color: var(--white); }
.treatment-journey__grid p { margin-bottom: 0; color: rgba(255,255,255,.72); }
.candidate-layout { display: grid; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.candidate-layout__questions { border-top: 4px solid var(--navy); }
.candidate-layout__questions p { display: grid; grid-template-columns: 34px 1fr; gap: 1rem; margin: 0; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.candidate-layout__questions span { display: grid; width: 28px; height: 28px; place-items: center; color: var(--navy); border-radius: 50%; background: var(--gold-light); font-weight: 700; }
.coverage-note { padding: clamp(2rem, 5vw, 4rem); color: rgba(255,255,255,.8); border-radius: var(--focal-radius); background: var(--navy); box-shadow: var(--shadow-focal); }
.coverage-note h2 { color: var(--white); }
.coverage-note p:last-child { margin-bottom: 0; }

/* Resource pages */
.resource-hero .page-hero__image { object-position: center 45%; }
.resource-intro { display: grid; gap: clamp(1.5rem, 5vw, 5rem); align-items: end; }
.resource-intro > p { max-width: 700px; color: var(--muted); }
.review-reel { overflow: hidden; margin-top: clamp(2rem, 5vw, 4rem); }
.review-reel__controls { display: flex; justify-content: flex-end; gap: .5rem; margin-bottom: 1rem; }
.review-reel__controls button { width: 52px; height: 52px; color: var(--navy); border: 1px solid var(--line); border-radius: 50%; background: var(--paper); font-size: 1.25rem; }
.review-reel__controls button:hover { color: var(--white); background: var(--navy); }
.review-reel__track { display: grid; grid-auto-columns: minmax(320px, 44%); grid-auto-flow: column; gap: 1rem; overflow-x: auto; padding: 1.25rem 1.25rem 2rem; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.review-card { position: relative; min-height: 390px; padding: clamp(2rem, 4vw, 3rem); color: rgba(255,255,255,.82); border-radius: var(--card-radius); background: var(--navy); box-shadow: var(--shadow-soft); scroll-snap-align: start; }
.review-card:first-child { border-radius: var(--focal-radius); }
.review-card::before { content: "“"; position: absolute; top: .5rem; right: 1.5rem; color: rgba(236,217,134,.22); font-family: var(--serif); font-size: 8rem; line-height: 1; }
.review-card__stars { color: var(--gold-light); letter-spacing: .2em; }
.review-card blockquote { position: relative; margin: 2rem 0; color: var(--white); font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.45; }
.review-card footer { color: rgba(255,255,255,.58); font-size: .9rem; }
.gallery-grid { display: grid; gap: 1rem; margin-top: clamp(2rem, 5vw, 4rem); }
.gallery-grid figure { position: relative; min-height: 320px; margin: 0; overflow: hidden; border-radius: var(--card-radius); background: var(--bone); box-shadow: var(--shadow-soft); }
.gallery-grid figure:first-child { border-radius: var(--focal-radius); }
.gallery-grid img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.gallery-grid figcaption { position: absolute; right: .9rem; bottom: .9rem; left: .9rem; padding: .85rem 1rem; color: rgba(255,255,255,.88); border-left: 3px solid var(--gold-light); background: rgba(8,40,59,.88); font-weight: 600; }
.gallery-grid .gallery-placeholder { display: grid; place-items: center; padding: clamp(2rem, 5vw, 4rem); background: linear-gradient(145deg, #f4efdf, #e8dfc5); }
.gallery-placeholder > div { max-width: 18rem; padding-bottom: 4.5rem; text-align: center; }
.gallery-placeholder span { display: block; margin-bottom: .55rem; color: var(--gold-dark); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.gallery-placeholder strong { display: block; color: var(--navy); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.85rem); }
.gallery-placeholder p { margin: .65rem 0 2.5rem; color: var(--slate); line-height: 1.55; }
.payment-paths { display: grid; gap: 1rem; margin-top: clamp(2rem, 5vw, 4rem); }
.payment-path { position: relative; display: grid; min-height: 320px; align-content: space-between; padding: clamp(2rem, 4vw, 3rem); overflow: hidden; border: 1px solid var(--line); border-radius: var(--card-radius); background: var(--paper); box-shadow: var(--shadow-soft); }
.payment-path:first-child { color: rgba(255,255,255,.82); border: 0; border-radius: var(--focal-radius); background: var(--navy); }
.payment-path:first-child h2 { color: var(--white); }
.payment-path__number { color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .15em; }
.payment-path p { max-width: 48ch; }
.payment-path .btn { justify-self: start; }
.payment-path--featured { border-color: rgba(196,153,45,.4); background: linear-gradient(145deg, #fffdf7, #f6f1e5); }
.payment-facts { display: grid; gap: .65rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.payment-facts li { display: grid; grid-template-columns: 84px 1fr; gap: .75rem; align-items: baseline; padding-top: .65rem; border-top: 1px solid rgba(8,40,59,.12); }
.payment-facts strong { color: var(--navy); font-family: var(--serif); font-size: 1.2rem; }
.payment-facts span { color: var(--text-soft); font-size: .92rem; }
.payment-path__actions { display: flex; flex-wrap: wrap; gap: .75rem 1rem; align-items: center; }
.payment-path__actions > a:not(.btn) { color: var(--navy); font-weight: 700; }
.payment-disclosure { display: grid; gap: 2rem; align-items: center; padding: clamp(2rem, 5vw, 4rem); color: rgba(255,255,255,.8); border-radius: var(--focal-radius); background: var(--navy); box-shadow: var(--shadow-focal); }
.payment-disclosure h2 { color: var(--white); }
.payment-disclosure__fine { max-width: 90ch !important; color: rgba(255,255,255,.58); font-size: .82rem; line-height: 1.6; }

.form-privacy-note { max-width: 62ch; padding-left: 1rem; color: var(--text-soft); border-left: 2px solid var(--gold); font-size: .9rem; }
.form-field--honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; }
[data-submit-button]:disabled { cursor: wait; opacity: .65; }

.practice-reported-claim { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1rem; align-items: center; max-width: 620px; margin-block: 2rem; padding: 1.25rem 1.5rem; border-left: 3px solid var(--gold); border-radius: 0 var(--card-radius) var(--card-radius) 0; background: rgba(236,217,134,.14); }
.practice-reported-claim strong { color: var(--navy); font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1; }
.practice-reported-claim span { color: var(--text-soft); line-height: 1.45; }

.source-figures { color: rgba(255,255,255,.76); background: #0b3348; }
.source-figures__inner { display: grid; gap: clamp(2rem, 4vw, 4rem); padding-block: clamp(3rem, 6vw, 5.5rem); }
.source-figures__inner > * { min-width: 0; }
.source-figures__heading h2 { max-width: 18ch; color: var(--white); }
.source-figures__heading p:last-child { max-width: 60ch; }
.source-figures ul { width: 100%; min-width: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 0; padding: 1px; background: rgba(255,255,255,.12); list-style: none; }
.source-figures li { min-width: 0; display: grid; align-content: start; min-height: 150px; padding: clamp(1.25rem, 3vw, 2rem); background: #0b3348; }
.source-figures li strong { color: var(--gold-light); font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3.2rem); line-height: 1; }
.source-figures li span { max-width: 30ch; margin-top: .75rem; overflow-wrap: anywhere; color: rgba(255,255,255,.72); line-height: 1.45; }
.source-figures--light { color: var(--body); border-block: 1px solid var(--line); background: var(--white); }
.source-figures--light .source-figures__inner { padding-block: clamp(2.75rem, 5vw, 4.75rem); }
.source-figures--light .source-figures__heading h2 { color: var(--ink); }
.source-figures--light .source-figures__heading p:last-child { color: var(--muted); }
.source-figures--light ul { grid-template-columns: 1fr; background: var(--line); }
.source-figures--light li { min-height: 130px; background: var(--bone); }
.source-figures--light li strong { color: var(--navy); }
.source-figures--light li span { color: var(--text-soft); }

@media (min-width: 860px) {
  .source-figures__inner { grid-template-columns: minmax(280px, .42fr) minmax(0, .58fr); align-items: start; }
  .source-figures ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 780px) {
  .resource-intro { grid-template-columns: minmax(0, .7fr) minmax(360px, .3fr); }
  .gallery-grid { grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: repeat(2, 320px); }
  .gallery-grid figure:first-child { grid-row: 1 / 3; }
  .gallery-grid img { min-height: 100%; }
  .payment-paths { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .payment-disclosure { grid-template-columns: minmax(0, 1fr) auto; }
}

@media (min-width: 780px) {
  .treatment-detail__intro { grid-template-columns: minmax(0, .88fr) minmax(380px, 1.12fr); }
  .treatment-journey__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .treatment-journey__grid article { padding: 2rem; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 0; }
  .treatment-journey__grid article:first-child { padding-left: 0; }
  .treatment-journey__grid article:last-child { padding-right: 0; border-right: 0; }
  .candidate-layout { grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr); }
}

@media (min-width: 780px) {
  .condition-intro__heading,
  .condition-signals__heading,
  .condition-process__heading { grid-template-columns: minmax(0, .62fr) minmax(320px, .38fr); }
  .condition-intro__split { grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr); }
  .condition-feature__inner { grid-template-columns: minmax(0, 1.15fr) minmax(330px, .65fr); }
}
.swift-page .service-block h2 { max-width: 22ch; }
.swift-recognize__heading,
.swift-diagnosis__intro,
.swift-expect__heading { display: grid; gap: 1.5rem; align-items: end; }
.swift-recognize__heading > p,
.swift-diagnosis__intro > p,
.swift-expect__heading > p { max-width: 720px; margin-bottom: 0; }
.swift-recognize__composition { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; margin-top: clamp(2.5rem, 6vw, 5rem); }
.swift-recognize__composition figure { margin: 0; }
.swift-recognize__composition figure img {
  width: 100%;
  height: clamp(330px, 42vw, 570px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--focal-radius);
  box-shadow: var(--shadow-focal);
}
.swift-recognize__composition figcaption { max-width: 62ch; margin-top: .8rem; color: var(--muted); font-size: .86rem; }
.swift-recognize__signals { border-top: 1px solid var(--line); }
.swift-recognize__signals p { display: grid; grid-template-columns: 3rem minmax(0, 1fr); gap: .3rem 1rem; margin: 0; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.swift-recognize__signals span { grid-row: 1 / 3; color: var(--gold); font-size: .76rem; font-weight: 700; letter-spacing: .12em; }
.swift-recognize__signals strong { color: var(--ink); font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.45rem); }
.swift-recognize__signals small { max-width: 54ch; color: var(--body); font-size: .98rem; line-height: 1.6; }
.swift-diagnosis__island { margin-top: clamp(2.5rem, 5vw, 4rem); }
.service-layout--flow .service-block.swift-treatment {
  position: relative;
  width: 100vw;
  min-height: 690px;
  margin-left: calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
  border: 0;
  color: rgba(255,255,255,.82);
  background: var(--navy);
  isolation: isolate;
}
.swift-treatment__backdrop { position: absolute; z-index: -2; inset: 0; margin: 0; }
.swift-treatment__backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.swift-treatment::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8,40,59,.98) 0%, rgba(8,40,59,.95) 47%, rgba(8,40,59,.72) 74%, rgba(8,40,59,.38) 100%);
}
.swift-treatment__inner { min-height: 690px; display: grid; gap: clamp(3rem, 8vw, 8rem); align-items: center; padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.service-layout--flow .swift-treatment h2 { max-width: 15ch; color: var(--white); font-size: clamp(2.6rem, 4.8vw, 4.8rem); }
.swift-treatment__story > p:not(.service-block__label) { max-width: 680px; }
.swift-treatment__story .btn { margin-top: .75rem; }
.swift-treatment__metrics { display: grid; border-top: 1px solid rgba(255,255,255,.24); }
.swift-treatment__metrics p { display: grid; gap: .4rem; margin: 0; padding: clamp(1.25rem, 3vw, 2rem) 0; border-bottom: 1px solid rgba(255,255,255,.24); }
.swift-treatment__metrics strong { color: var(--gold-light); font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; }
.swift-treatment__metrics span { max-width: 30ch; color: rgba(255,255,255,.76); font-size: .82rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.swift-expect__timeline { display: grid; gap: 0; margin: clamp(2.5rem, 5vw, 4.5rem) 0 0; padding: 0; border-top: 4px solid var(--gold); list-style: none; counter-reset: swift-step; }
.swift-expect__timeline li { position: relative; padding: clamp(1.5rem, 4vw, 2.5rem) 0; border-bottom: 1px solid var(--line); counter-increment: swift-step; }
.swift-expect__timeline li::after { position: absolute; z-index: 0; top: 1.1rem; right: .15rem; color: rgba(8,40,59,.06); content: counter(swift-step, decimal-leading-zero); font-family: var(--serif); font-size: clamp(4rem, 8vw, 7rem); font-weight: 700; line-height: 1; }
.swift-expect__timeline span,
.swift-expect__timeline h3,
.swift-expect__timeline p { position: relative; z-index: 1; }
.swift-expect__timeline span { display: block; margin-bottom: .6rem; color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.swift-expect__timeline h3 { margin-bottom: .7rem; font-size: clamp(1.25rem, 2vw, 1.65rem); }
.swift-expect__timeline p { max-width: 54ch; margin-bottom: 0; }

/* Services overview */
.services-hero .page-hero__image { object-position: center 42%; }
.services-pathways { background: var(--bone); }
.services-pathways__heading { max-width: 760px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.services-pathway-grid { display: grid; gap: .8rem; }
.services-pathway-grid a {
  position: relative;
  min-height: 170px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr;
  gap: .3rem 1rem;
  align-items: start;
  padding: clamp(1.3rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  color: var(--ink);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: color .25s ease, border-color .25s ease, background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.services-pathway-grid a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.services-pathway-grid a > span { color: var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: .1em; }
.services-pathway-grid strong { max-width: 19ch; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.25; }
.services-pathway-grid small { grid-column: 2; color: var(--muted); font-size: .92rem; }
.services-pathway-grid b { grid-row: 1 / 3; grid-column: 3; align-self: center; color: var(--gold); font-size: 1.5rem; transition: transform .25s ease; }
.services-pathway-grid a:hover,
.services-pathway-grid a:focus-visible { color: var(--white); border-color: var(--navy); background: var(--navy); transform: translateY(-4px); box-shadow: 0 18px 35px rgba(8,40,59,.13); }
.services-pathway-grid a:hover::after,
.services-pathway-grid a:focus-visible::after { transform: scaleX(1); }
.services-pathway-grid a:hover > span,
.services-pathway-grid a:hover small,
.services-pathway-grid a:hover b,
.services-pathway-grid a:focus-visible > span,
.services-pathway-grid a:focus-visible small,
.services-pathway-grid a:focus-visible b { color: var(--gold-light); }
.services-pathway-grid a:hover b,
.services-pathway-grid a:focus-visible b { transform: translateX(5px); }

.services-explorer { color: rgba(255,255,255,.76); background: var(--navy); }
.services-explorer__inner { padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.services-explorer__intro { max-width: none; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.services-explorer__intro h2 { max-width: none; color: var(--white); }
.services-explorer__stage {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--focal-radius);
  background: rgba(255,255,255,.035);
  box-shadow: 0 24px 58px rgba(0,0,0,.24);
}
.services-explorer__controls { display: grid; align-content: stretch; border-bottom: 1px solid rgba(255,255,255,.16); }
.services-explorer__controls button {
  min-height: 64px;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.35rem;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.72);
  background: linear-gradient(135deg, #0e2a3d, #15384b);
  font-weight: 700;
  text-align: left;
  transition: color .2s ease, box-shadow .2s ease, filter .2s ease, padding-left .2s ease;
}
.services-explorer__controls button:nth-child(2) { background: linear-gradient(135deg, #15384b, #1b4255); }
.services-explorer__controls button:nth-child(3) { background: linear-gradient(135deg, #1b4255, #254f64); }
.services-explorer__controls button:nth-child(4) { background: linear-gradient(135deg, #254f64, #305e72); }
.services-explorer__controls button:nth-child(5) { background: linear-gradient(135deg, #305e72, #3d6b7d); }
.services-explorer__controls button:last-child { border-bottom: 0; }
.services-explorer__controls button span { color: var(--gold-light); font-size: 1.125rem; font-weight: 700; letter-spacing: .08em; }
.services-explorer__controls button:hover { color: var(--white); box-shadow: inset 0 0 0 999px rgba(255,255,255,.06); }
.services-explorer__controls button[aria-selected="true"] {
  color: var(--white);
  box-shadow: inset 6px 0 0 var(--gold-light), inset 0 0 0 999px rgba(255,255,255,.1);
}
.services-explorer__controls button[aria-selected="true"] span { color: var(--gold-light); }
.services-explorer__panels { min-width: 0; min-height: 540px; display: grid; }
.services-explorer__panel {
  position: relative;
  min-height: inherit;
  display: flex;
  overflow: hidden;
  align-items: flex-end;
  animation: servicePanelIn .32s ease both;
  isolation: isolate;
}
.services-explorer__panel[hidden] { display: none; }
.services-explorer__panel::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8,40,59,.2) 0%, rgba(8,40,59,.72) 46%, rgba(8,40,59,1) 76%);
}
.services-explorer__panel img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.88) contrast(1.04);
}
.services-explorer__panel > div {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(8.5rem, 28vw, 14rem) clamp(1.75rem, 4vw, 3.5rem) clamp(2rem, 5vw, 3.5rem);
  color: rgba(255,255,255,.9);
  text-shadow: 0 1px 18px rgba(0,0,0,.28);
}
.services-explorer__panel h3 { max-width: 14ch; color: var(--white); font-size: clamp(2rem, 4vw, 3.4rem); }
.services-explorer__panel p { max-width: 580px; color: rgba(255,255,255,.9); }
.services-explorer__index { margin-bottom: .55rem; color: var(--gold-light); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
@keyframes servicePanelIn {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

.condition-library__heading { display: grid; gap: 1.5rem; align-items: end; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.condition-library__heading > p { max-width: 620px; color: var(--muted); }
.condition-library__grid { display: grid; gap: .65rem; }
.condition-library__grid a {
  min-height: 110px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: .2rem .8rem;
  align-items: center;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}
.condition-library__grid a > span { color: var(--gold); font-size: .72rem; font-weight: 700; }
.condition-library__grid a strong { font-family: var(--serif); font-size: 1.12rem; }
.condition-library__grid a small { grid-column: 2; color: var(--muted); }
.condition-library__grid a b { grid-row: 1 / 3; grid-column: 3; color: var(--gold); font-size: 1.2rem; transition: transform .2s ease; }
.condition-library__grid a:hover,
.condition-library__grid a:focus-visible { color: var(--white); background: var(--navy); transform: translateY(-3px); }
.condition-library__grid a:hover > span,
.condition-library__grid a:hover small,
.condition-library__grid a:hover b,
.condition-library__grid a:focus-visible > span,
.condition-library__grid a:focus-visible small,
.condition-library__grid a:focus-visible b { color: var(--gold-light); }
.condition-library__grid a:hover b,
.condition-library__grid a:focus-visible b { transform: translateX(4px); }
.condition-library__grid a.is-live { border-top: 4px solid var(--gold); }

.services-decision { color: rgba(255,255,255,.76); background: #061f2f; border-top: 4px solid var(--gold); }
.services-decision__inner { display: grid; gap: 2rem; align-items: center; padding-top: clamp(3.5rem, 7vw, 6rem); padding-bottom: clamp(3.5rem, 7vw, 6rem); }
.services-decision h2 { max-width: 19ch; color: var(--white); }
.services-decision p { max-width: 700px; }
.services-decision__actions { display: grid; gap: .75rem; justify-items: start; }
.services-decision__actions > a:not(.btn) { color: var(--white); font-weight: 700; text-underline-offset: 5px; }

/* Heel Pain / Orthotripsy */
.heel-detail-hero .page-hero__image { object-position: center 42%; }
.heel-intro__grid,
.regen-intro__grid { display: grid; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.heel-intro__grid h2,
.regen-intro__grid h2 { max-width: 16ch; }
.text-link-arrow { min-height: 44px; display: inline-flex; align-items: center; gap: .65rem; color: var(--navy); font-weight: 700; text-underline-offset: 5px; }
.text-link-arrow span { color: var(--gold); transition: transform .2s ease; }
.text-link-arrow:hover span { transform: translateX(4px); }
.heel-procedure__heading,
.regen-options__heading { display: grid; gap: 1.5rem; align-items: end; }
.heel-procedure__heading > p,
.regen-options__heading > p { max-width: 560px; color: var(--muted); }
.heel-procedure__island,
.regen-options__island { margin-top: clamp(2rem, 5vw, 3.5rem); border-radius: var(--focal-radius); box-shadow: var(--shadow-focal); }

.heel-device-story { position: relative; overflow: hidden; color: rgba(255,255,255,.76); background: var(--navy); }
.heel-device-story__inner { display: grid; align-items: stretch; }
.heel-device-story__copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: clamp(3.5rem, 7vw, 6rem); padding-bottom: clamp(3.5rem, 7vw, 6rem); }
.heel-device-story h2 { max-width: 14ch; color: var(--white); }
.heel-device-story__copy p { max-width: 620px; }
.heel-device-story figure { position: relative; min-height: 440px; margin: 0; overflow: hidden; border-radius: var(--focal-radius); background: var(--bone); box-shadow: var(--shadow-focal); }
.heel-device-story figure img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.heel-device-story figcaption { position: absolute; inset: auto 1rem 1rem; max-width: 420px; padding: .9rem 1rem; color: var(--white); background: rgba(8,40,59,.88); font-size: .88rem; }

.heel-comparison__heading { max-width: 860px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.heel-comparison__grid { display: grid; gap: 1rem; }
.heel-comparison__grid article { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: var(--card-radius); background: var(--bone); box-shadow: var(--shadow-soft); }
.heel-comparison__grid article h3 { max-width: 18ch; }
.heel-comparison__grid ul { margin: 1.5rem 0 0; padding: 0; list-style: none; }
.heel-comparison__grid li { position: relative; padding: .7rem 0 .7rem 1.5rem; border-top: 1px solid var(--line); }
.heel-comparison__grid li::before { position: absolute; left: 0; content: "—"; color: var(--gold); }
.heel-comparison__featured { color: rgba(255,255,255,.78); border-color: var(--navy) !important; border-radius: var(--focal-radius) !important; background: var(--navy) !important; box-shadow: var(--shadow-focal) !important; }
.heel-comparison__featured h3 { color: var(--white); }
.heel-comparison__featured li { border-top-color: rgba(255,255,255,.16); }
.heel-comparison__label { color: var(--gold); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.heel-comparison__featured .heel-comparison__label { color: var(--gold-light); }
.heel-comparison__featured .btn { margin-top: 1.5rem; }
.heel-conditions__inner { display: grid; gap: 2rem; align-items: start; }
.heel-conditions__inner h2 { max-width: 17ch; }
.heel-conditions__inner ul { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .7rem; margin: 0; padding: 0; list-style: none; }
.heel-conditions__inner li { min-height: 58px; display: flex; align-items: center; padding: .8rem 1rem; border-left: 3px solid var(--gold); background: var(--white); font-weight: 700; }
.heel-faq__grid { display: grid; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.heel-faq__list { border-top: 1px solid var(--line); }
.heel-faq details { border-bottom: 1px solid var(--line); }
.heel-faq summary { min-height: 72px; display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; color: var(--ink); font-family: var(--serif); font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 700; cursor: pointer; list-style: none; }
.heel-faq summary::-webkit-details-marker { display: none; }
.heel-faq summary span { color: var(--gold); font-family: var(--sans); font-size: 1.3rem; transition: transform .2s ease; }
.heel-faq details[open] summary span { transform: rotate(45deg); }
.heel-faq details p { max-width: 720px; padding: 0 2rem 1.5rem 0; }

/* Regenerative Medicine */
.regen-hero .page-hero__image { object-position: center 42%; }
.regen-honesty { color: rgba(255,255,255,.78); background: var(--navy); }
.regen-honesty__inner { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-top: clamp(3.5rem, 7vw, 6rem); padding-bottom: clamp(3.5rem, 7vw, 6rem); }
.regen-honesty__number { color: rgba(255,255,255,.09); font-family: var(--serif); font-size: clamp(6rem, 16vw, 12rem); font-weight: 700; line-height: .8; }
.regen-honesty h2 { max-width: 20ch; color: var(--white); }
.regen-honesty p { max-width: 740px; }
.regen-applications__grid { display: grid; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.regen-applications__copy h2 { max-width: 16ch; }
.regen-applications__list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 1px solid var(--line); }
.regen-applications__list span { min-height: 74px; display: flex; align-items: center; padding: 1rem; border-bottom: 1px solid var(--line); border-left: 3px solid transparent; font-family: var(--serif); font-size: 1.05rem; font-weight: 700; transition: border-color .2s ease, background-color .2s ease; }
.regen-applications__list span:hover { border-left-color: var(--gold); background: var(--bone); }
.regen-evaluation { position: relative; min-height: 650px; display: grid; overflow: hidden; color: rgba(255,255,255,.78); background: var(--navy); }
.regen-evaluation > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.regen-evaluation__wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,40,59,.98) 0%, rgba(8,40,59,.94) 45%, rgba(8,40,59,.56) 78%, rgba(8,40,59,.2)); }
.regen-evaluation__inner { position: relative; z-index: 1; display: grid; gap: clamp(2rem, 6vw, 6rem); align-items: center; padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.regen-evaluation h2 { max-width: 19ch; color: var(--white); }
.regen-evaluation__inner > div:first-child p { max-width: 720px; }
.regen-evaluation__steps { display: grid; border-top: 1px solid rgba(255,255,255,.2); }
.regen-evaluation__steps span { min-height: 70px; display: grid; grid-template-columns: 2rem 1fr; gap: 1rem; align-items: center; border-bottom: 1px solid rgba(255,255,255,.2); font-weight: 700; }
.regen-evaluation__steps b { color: var(--gold-light); font-size: .75rem; letter-spacing: .08em; }
.regen-next__grid { display: grid; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.regen-next__grid h2 { max-width: 18ch; }
.regen-next__links { display: grid; gap: .65rem; }
.regen-next__links a { min-height: 72px; display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; padding: 1rem 1.2rem; border: 1px solid var(--line); border-radius: var(--card-radius); color: var(--ink); background: var(--white); box-shadow: var(--shadow-soft); text-decoration: none; transition: color .2s ease, background-color .2s ease, transform .2s ease; }
.regen-next__links a span { color: var(--gold); font-size: .74rem; font-weight: 700; }
.regen-next__links a b { color: var(--gold); font-size: 1.2rem; transition: transform .2s ease; }
.regen-next__links a:hover,
.regen-next__links a:focus-visible { color: var(--white); background: var(--navy); transform: translateX(5px); }
.regen-next__links a:hover span,
.regen-next__links a:hover b,
.regen-next__links a:focus-visible span,
.regen-next__links a:focus-visible b { color: var(--gold-light); }

.reveal-enabled [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.8,.2,1); }
.reveal-enabled [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Contact */
.contact-layout { display: grid; gap: clamp(2.5rem, 6vw, 7rem); align-items: start; }
.contact-card { padding: clamp(1.5rem, 4vw, 3rem); color: rgba(255,255,255,.78); border-radius: var(--focal-radius); background: var(--navy); box-shadow: var(--shadow-focal); }
.contact-card h2,
.contact-card h3 { color: var(--white); }
.contact-card a { color: var(--gold-light); text-underline-offset: 4px; }
.contact-card address { font-style: normal; }
.contact-detail + .contact-detail { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line-dark); }

.form-grid { display: grid; gap: 1.15rem; }
.form-field { display: grid; gap: .4rem; }
.form-field label { color: var(--ink); font-size: .95rem; font-weight: 700; }
.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: .8rem .9rem;
  border: 1px solid #aeb8bc;
  border-radius: 3px;
  color: var(--ink);
  background: var(--white);
}
.form-field textarea { min-height: 165px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--navy); outline: 3px solid rgba(200, 163, 60, .32); }
.form-row { display: grid; gap: 1.15rem; }
.form-status { min-height: 1.5rem; margin: .8rem 0 0; color: var(--navy-3); font-weight: 700; }

/* Blog */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin: 2rem 0 3rem; }
.filter-button {
  min-height: 44px;
  padding: .55rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 700;
}
.filter-button:hover,
.filter-button.is-active { border-color: var(--navy); color: var(--white); background: var(--navy); }
.post-grid { display: grid; gap: 1.25rem; }
.post-card { display: flex; min-height: 100%; flex-direction: column; padding: clamp(1.4rem, 3vw, 2.15rem); border-top: 3px solid var(--gold); border-radius: var(--card-radius); background: var(--white); box-shadow: 0 12px 34px rgba(8, 40, 59, .08); }
.post-card[hidden] { display: none; }
.post-card__meta { margin-bottom: 1.1rem; color: var(--navy-3); font-size: .78rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.post-card h2 { margin-bottom: 1rem; font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.2; }
.post-card p { color: var(--body); }
.post-card__link { display: inline-flex; min-height: 44px; align-items: center; margin-top: auto; color: var(--navy); font-weight: 700; text-underline-offset: 4px; }
.post-card--archive { border-top-color: var(--navy-3); }

.article-shell { display: grid; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.article-toc { padding: 1.5rem; border-top: 3px solid var(--gold); background: var(--bone); }
.article-toc h2 { font-size: 1.2rem; }
.article-toc ol { margin: 0; padding-left: 1.25rem; }
.article-toc a { display: inline-flex; min-height: 44px; align-items: center; color: var(--ink); font-weight: 600; text-underline-offset: 4px; }
.article-body { max-width: var(--reading); }
.article-body h2 { max-width: 18ch; margin-top: clamp(3rem, 6vw, 5.5rem); }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin-top: 2rem; }
.article-body li + li { margin-top: .6rem; }
.article-meta { margin-bottom: 1.4rem; color: var(--gold-light); font-weight: 700; }

/* Products */
.products-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.products-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 83% 18%, rgba(242,228,155,.16), transparent 28%),
    linear-gradient(115deg, rgba(255,255,255,.04), transparent 46%);
}
.products-hero__inner {
  position: relative;
  min-height: clamp(430px, 37vw, 540px);
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  padding-block: clamp(2.75rem, 4vw, 4rem);
}
.products-hero__copy { max-width: 650px; }
.products-hero__copy h1 { max-width: 11ch; margin-bottom: 1rem; color: var(--white); font-size: clamp(3rem, 5vw, 4.25rem); }
.products-hero__copy .lede { max-width: 50ch; margin-bottom: 1.75rem; color: rgba(255,255,255,.78); }
.products-hero__visual { position: relative; min-height: 350px; margin: 0; overflow: hidden; border-radius: var(--focal-radius); box-shadow: var(--shadow-focal); }
.products-hero__visual::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 35%, rgba(8,40,59,.9)); }
.products-hero__visual img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center; }
.products-hero__visual figcaption { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; padding: 1.5rem; }
.products-hero__visual figcaption span { display: block; margin-bottom: .35rem; color: var(--gold-light); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.products-hero__visual figcaption strong { display: block; max-width: 22ch; color: var(--white); font-family: var(--serif); font-size: 1.2rem; line-height: 1.25; }

.products-library { background: var(--bone); }
.products-library__heading { display: grid; gap: 1.5rem; align-items: end; margin-bottom: 2rem; }
.products-library__heading h2 { max-width: 16ch; }
.products-library__heading > p { max-width: 58ch; color: var(--body); }
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.product-filters button {
  min-height: 44px;
  padding: .65rem 1rem;
  border: 1px solid rgba(8,40,59,.22);
  border-radius: 999px;
  color: var(--navy);
  background: transparent;
  font-weight: 700;
  transition: 180ms ease;
}
.product-filters button:hover,
.product-filters button.is-active { color: var(--white); border-color: var(--navy); background: var(--navy); }
.product-grid { display: grid; gap: 1.25rem; counter-reset: product; }
.product-card {
  position: relative;
  min-width: 0;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
  counter-increment: product;
}
.product-card::before { position: absolute; z-index: 2; top: .75rem; right: 1rem; color: rgba(8,40,59,.12); content: counter(product, decimal-leading-zero); font-family: var(--serif); font-size: clamp(4rem, 6vw, 5.75rem); font-weight: 700; line-height: 1; pointer-events: none; }

/* Full source-copy migration */
.source-page-layout,
.article-layout { display: grid; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.article-hero .page-hero__content { width: min(100%, 1060px); max-width: none; }
.article-hero h1 { max-width: none; font-size: clamp(2.8rem, 4.25vw, 4rem); }
.source-page-rail,
.article-rail { padding-top: 1rem; border-top: 4px solid var(--navy); color: var(--slate); }
.source-page-rail p,
.article-rail p { line-height: 1.65; }
.article-rail a { color: var(--navy); font-weight: 800; text-decoration-color: var(--gold); text-underline-offset: .3em; }
.source-copy { max-width: var(--reading); color: var(--slate); font-size: clamp(1rem, 1.25vw, 1.12rem); line-height: 1.75; }
.source-copy > :first-child { margin-top: 0; }
.source-copy h2,
.source-copy h3 { max-width: 24ch; margin: clamp(2.5rem, 5vw, 4.5rem) 0 1rem; color: var(--navy); font-family: var(--serif); line-height: 1.08; }
.source-copy h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
.source-copy h3 { font-size: clamp(1.35rem, 2.3vw, 2rem); }
.source-copy p,
.source-copy ul,
.source-copy ol,
.source-copy blockquote { margin: 0 0 1.25rem; }
.source-copy ul,
.source-copy ol { padding-left: 1.35rem; }
.source-copy li + li { margin-top: .65rem; }
.source-copy a { color: var(--navy); font-weight: 700; text-decoration-color: var(--gold); text-underline-offset: .2em; }
.source-copy img { width: 100%; height: auto; margin: 1.5rem 0; border-radius: var(--card-radius); box-shadow: var(--shadow-soft); }
.source-copy blockquote { padding: 1.25rem 1.5rem; border-left: 4px solid var(--gold); background: var(--bone); color: var(--navy); font-family: var(--serif); font-size: 1.2em; }
.source-table-wrap { width: 100%; margin: 1.75rem 0; overflow-x: auto; }
.source-table-wrap table { width: 100%; min-width: 620px; border-collapse: collapse; }
.source-table-wrap th,
.source-table-wrap td { padding: .85rem; border: 1px solid rgba(8,40,59,.16); text-align: left; vertical-align: top; }
.source-table-wrap th { color: var(--navy); background: var(--gold-light); }
.legal-page .source-copy { max-width: var(--reading); }
.legal-page .source-copy h2 { max-width: none; padding-top: 1.5rem; border-top: 1px solid rgba(8,40,59,.15); font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
.legal-bullet { position: relative; padding-left: 1.25rem; }
.legal-bullet::before { position: absolute; left: 0; color: var(--gold-dark); content: "•"; }

.source-guide-list { display: grid; gap: .75rem; margin-top: 2rem; }
.source-guide { overflow: clip; border: 1px solid rgba(8,40,59,.16); border-radius: var(--card-radius); background: #fff; box-shadow: 0 14px 38px rgba(8,40,59,.07); }
.source-guide:first-child { border-top-left-radius: var(--focal-radius); }
.source-guide summary { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; padding: 1.25rem clamp(1rem, 3vw, 2rem); color: var(--navy); cursor: pointer; list-style: none; }
.source-guide summary::-webkit-details-marker { display: none; }
.source-guide summary > span:first-child { color: var(--gold-dark); font-weight: 800; letter-spacing: .12em; }
.source-guide summary strong { font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.75rem); }
.source-guide__toggle { font-size: 1.5rem; transition: transform .2s ease; }
.source-guide[open] .source-guide__toggle { transform: rotate(45deg); }
.source-guide[open] summary { color: #fff; background: var(--navy); }
.source-guide[open] summary > span:first-child { color: var(--gold-light); }
.source-guide .source-copy { max-width: none; padding: clamp(1.5rem, 4vw, 3rem); }
.condition-source-guide { padding-top: clamp(3rem, 7vw, 6rem); }

.fracture-guide { padding-top: clamp(3rem, 7vw, 6rem); }
.fracture-guide__heading { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.fracture-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--line);
}
.fracture-guide__grid article {
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.75rem);
}
.fracture-guide__grid article + article { border-left: 1px solid var(--line); }
.fracture-guide__grid article > span {
  display: block;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  color: rgba(8,40,59,.16);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.75rem);
  font-weight: 700;
  line-height: .8;
}
.fracture-guide__eyebrow {
  margin: 0 0 .65rem;
  color: var(--gold-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.fracture-guide__grid h3,
.fracture-guide__action h3 {
  margin-bottom: .75rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.18;
}
.fracture-guide__grid p:last-child,
.fracture-guide__action p:last-child { margin-bottom: 0; color: var(--muted); }
.fracture-guide__action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: var(--focal-radius) var(--card-radius) var(--card-radius) var(--card-radius);
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow-soft);
}
.fracture-guide__action .fracture-guide__eyebrow { color: var(--gold-light); }
.fracture-guide__action h3 { color: #fff; }
.fracture-guide__action p:last-child { max-width: 48rem; color: rgba(255,255,255,.76); }
.fracture-guide__action .btn { justify-self: end; white-space: nowrap; }

.article-page { background: linear-gradient(180deg, #fff 0, #fbfaf6 100%); }
.article-copy { font-size: clamp(1.03rem, 1.3vw, 1.16rem); }
.article-copy figure { margin: 2rem 0; }
.article-meta { color: rgba(255,255,255,.8); font-weight: 700; }

.blog-library-tools { display: grid; gap: 1.25rem; margin-bottom: clamp(2rem, 5vw, 4rem); padding: clamp(1.25rem, 3vw, 2rem); border-radius: var(--card-radius); background: var(--bone); box-shadow: var(--shadow-soft); }
.blog-library-tools label { display: grid; gap: .5rem; color: var(--navy); font-weight: 800; }
.blog-library-tools input { width: 100%; padding: .9rem 1rem; border: 1px solid rgba(8,40,59,.22); border-radius: .35rem; background: #fff; color: var(--navy); font: inherit; }
.blog-filter-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.blog-filter-list button { padding: .65rem .9rem; border: 1px solid rgba(8,40,59,.2); border-radius: 0; background: #fff; color: var(--navy); font: inherit; font-weight: 750; cursor: pointer; }
.blog-filter-list button.is-active { border-color: var(--navy); color: #fff; background: var(--navy); }
.blog-library-tools > p { margin: 0; color: var(--slate); font-weight: 700; }
.post-grid--library { display: grid; gap: 1.25rem; }
.post-grid--library .post-card { display: grid; overflow: hidden; border: 0; border-radius: var(--card-radius); background: #fff; box-shadow: var(--shadow-soft); }
.post-grid--library .post-card:nth-child(9n + 1) { border-top-left-radius: var(--focal-radius); }
.post-grid--library .post-card > img { width: 100%; height: 220px; object-fit: cover; }
.post-grid--library .post-card__body { display: flex; flex-direction: column; padding: 1.25rem; }
.post-grid--library .post-card h2 { margin: .45rem 0 .75rem; color: var(--navy); font-size: clamp(1.25rem, 2vw, 1.65rem); }
.post-grid--library .post-card p { color: var(--slate); }
.post-grid--library .post-card__meta { margin: 0; color: var(--gold-dark); font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.post-grid--library .post-card__link { margin-top: auto; color: var(--navy); font-weight: 800; }
.blog-load-more { display: block; margin: 2rem auto 0; }
.blog-empty { padding: 3rem; color: var(--slate); text-align: center; }

@media (min-width: 900px) {
  .source-page-layout,
  .article-layout { grid-template-columns: minmax(180px, .3fr) minmax(0, 1fr); }
  .source-page-rail,
  .article-rail { position: sticky; top: 2rem; }
  .post-grid--library { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 899px) {
  .source-page-rail,
  .article-rail { max-width: 34rem; }
  .source-copy h2 { max-width: 18ch; }
  .post-grid--library { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .post-grid--library { grid-template-columns: 1fr; }
  .source-guide summary { gap: .65rem; }
  .source-guide .source-copy { padding: 1.25rem; }
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-focal); }
.product-card[hidden] { display: none; }
.product-card__image { min-height: 205px; display: grid; place-items: center; padding: 1rem; background: linear-gradient(145deg, #f7f5ef, #fff); }
.product-card__image img { width: 100%; height: 185px; object-fit: contain; mix-blend-mode: multiply; }
.product-card__body { min-height: 175px; display: flex; flex-direction: column; padding: 1.25rem; border-top: 1px solid var(--line); }
.product-card__body > p { margin-bottom: .55rem; color: var(--navy-3); font-size: .72rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.product-card h3 { margin-bottom: 1.1rem; font-size: clamp(1.15rem, 1.6vw, 1.45rem); line-height: 1.2; }
.product-card a { display: inline-flex; min-height: 38px; align-items: center; justify-content: space-between; gap: .75rem; margin-top: auto; color: var(--navy); font-weight: 700; text-decoration: none; }
.product-card a span { color: var(--gold); font-size: 1.2rem; transition: transform 180ms ease; }
.product-card a:hover span { transform: translate(3px, -3px); }
.product-card--featured { color: var(--white); border-radius: var(--focal-radius); background: var(--navy); }
.product-card--featured::before { color: rgba(242,228,155,.13); }
.product-card--featured .product-card__image { min-height: 240px; background: linear-gradient(145deg, #f5f1e5, #fff); }
.product-card--featured .product-card__image img { height: 215px; }
.product-card--featured .product-card__body { border-top-color: rgba(255,255,255,.14); }
.product-card--featured .product-card__body > p { color: var(--gold-light); }
.product-card--featured h3,
.product-card--featured a { color: var(--white); }
.product-card--text { position: relative; min-height: 300px; justify-content: flex-end; isolation: isolate; color: var(--white); background: linear-gradient(145deg, rgba(255,255,255,.06), transparent 55%), var(--navy); }
.product-card--text::before { color: rgba(242,228,155,.13); }
.product-card__number { display: none; }
.product-card--text .product-card__body { min-height: 190px; border-top-color: rgba(255,255,255,.15); }
.product-card--text .product-card__body > p { color: var(--gold-light); }
.product-card--text h3 { color: var(--white); }
.product-card--text a { color: var(--white); }
.products-note { color: rgba(255,255,255,.78); background: #061f2f; }
.products-note__inner { display: grid; gap: 2rem; align-items: center; padding-block: clamp(3.5rem, 7vw, 6rem); }
.products-note h2 { max-width: 20ch; color: var(--white); }
.products-note p { max-width: 55ch; }

/* CTA + footer */
.cta-band { position: relative; overflow: hidden; isolation: isolate; }
.cta-band::before { position: absolute; z-index: -2; inset: 0; content: ""; background: url("assets/mobility-generations.webp") center 46% / cover no-repeat; }
.cta-band::after { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(90deg, rgba(8,40,59,.98), rgba(8,40,59,.84) 54%, rgba(8,40,59,.28)); }
.cta-band__inner { min-height: 370px; display: flex; align-items: center; padding-block: 4.5rem; }
.cta-band__content { width: min(700px, 65%); }
.cta-band h2 { max-width: 16ch; color: var(--white); }
.cta-band p { max-width: 55ch; color: rgba(255,255,255,.8); }

.site-footer { color: rgba(255,255,255,.72); background: #061f2f; }
.site-footer__inner { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: 3rem; }
.site-footer__brand { display: flex; justify-content: center; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-dark); }
.site-footer__brand img { width: 245px; height: auto; }
.site-footer__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; padding-top: 2.5rem; }
.site-footer h2 { margin-bottom: 1rem; color: var(--gold-light); font-family: var(--sans); font-size: .8rem; letter-spacing: .13em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li + li { margin-top: .45rem; }
.site-footer a { display: inline-flex; min-height: 36px; align-items: center; color: rgba(255,255,255,.82); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer address { font-style: normal; }
.site-footer__bottom { padding-block: 1.35rem; border-top: 1px solid var(--line-dark); font-size: .82rem; }
.site-footer__bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 2rem; }
.site-footer__bottom p { margin: 0; }

@media (min-width: 700px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .credential-band { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: repeat(4, 1fr); }
  .brand-spectrum { grid-template-columns: repeat(3, 1fr); }
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .inline-cta { grid-template-columns: 1fr auto; }
  .inline-cta .btn { justify-self: end; }
  .ankle-final-cta__inner { grid-template-columns: minmax(0, 1fr) auto; }
  .ankle-final-cta__actions { justify-items: end; }
  .service-layout--flow .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-pathway-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .condition-library__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-decision__inner { grid-template-columns: minmax(0, 1fr) auto; }
  .services-decision__actions { justify-items: end; }
  .heel-comparison__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products-note__inner { grid-template-columns: minmax(0, 1fr) auto; }
  .credentials-flow { grid-template-columns: repeat(2, 1fr); column-gap: 2.5rem; }
  .specialty-lines { grid-template-columns: repeat(2, 1fr); column-gap: 2.5rem; }
  .ankle-photo-row { grid-template-columns: minmax(280px, 360px) 1fr; }
  .achilles-recovery__timeline { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fungal-signs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .fungal-signs span + span { border-left: 1px solid var(--line); }
  .fungal-program { grid-template-columns: minmax(120px, .2fr) minmax(0, .52fr) minmax(180px, .28fr); }
  .fungal-growth__fact { grid-template-columns: minmax(320px, .7fr) minmax(0, 1.3fr); }
  .swift-expect__timeline { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .swift-expect__timeline li { padding-right: clamp(1.25rem, 3vw, 2.5rem); }
  .swift-expect__timeline li + li { padding-left: clamp(1.25rem, 3vw, 2.5rem); border-left: 1px solid var(--line); }
}

@media (min-width: 900px) {
  .about-specialties__inner { grid-template-columns: minmax(300px, .36fr) minmax(0, .64fr); }
}

@media (min-width: 700px) {
  .source-figures--light ul { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 860px) {
  .source-figures--light .source-figures__inner { grid-template-columns: minmax(260px, .34fr) minmax(0, .66fr); }
}

@media (min-width: 1020px) {
  .intro-grid { grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); }
  .credential-band { grid-template-columns: repeat(5, 1fr); }
  .service-layout { grid-template-columns: 260px minmax(0, 1fr); }
  .service-index { position: sticky; top: 2rem; }
  .contact-layout { grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); }
  .post-grid { grid-template-columns: repeat(3, 1fr); }
  .article-shell { grid-template-columns: 260px minmax(0, 1fr); }
  .article-toc { position: sticky; top: 2rem; }
  .about-dual { grid-template-columns: repeat(2, 1fr); }
  .story-experience { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
  .choice-grid { grid-template-columns: repeat(4, 1fr); }
  .company-editorial { grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr); }
  .about-profile { grid-template-columns: minmax(360px, .8fr) minmax(0, 1.2fr); }
  .story-flow { grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr); }
  .service-layout--flow .service-block.related-reference { grid-template-columns: minmax(260px, .34fr) minmax(0, .66fr); }
  .service-layout--flow .related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .services-explorer__stage { grid-template-columns: minmax(280px, .34fr) minmax(0, .66fr); }
  .services-explorer__intro h2 { white-space: nowrap; }
  .services-explorer__controls { border-right: 1px solid rgba(255,255,255,.16); border-bottom: 0; }
  .services-explorer__controls button { min-height: 82px; padding-right: clamp(2rem, 3vw, 3.5rem); padding-left: clamp(2.5rem, 3.5vw, 4rem); }
  .services-explorer__panel { min-height: 540px; align-items: stretch; justify-content: flex-end; }
  .services-explorer__panel::after {
    background: linear-gradient(90deg, rgba(8,40,59,0) 0%, rgba(8,40,59,0) 40%, rgba(8,40,59,.9) 100%);
  }
  .services-explorer__panel > div { width: 56%; min-height: 540px; padding: clamp(2.5rem, 4vw, 4rem); text-shadow: none; }
  .condition-library__heading { grid-template-columns: minmax(0, .7fr) minmax(380px, .3fr); }
  .condition-library__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .heel-intro__grid,
  .regen-intro__grid { grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr); }
  .heel-procedure__heading,
  .regen-options__heading { grid-template-columns: minmax(0, .72fr) minmax(380px, .28fr); }
  .heel-device-story__inner { grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); }
  .heel-device-story figure { min-height: 680px; }
  .heel-conditions__inner { grid-template-columns: minmax(320px, .7fr) minmax(0, 1.3fr); }
  .heel-faq__grid { grid-template-columns: minmax(300px, .65fr) minmax(0, 1.35fr); }
  .regen-honesty__inner { grid-template-columns: minmax(180px, .25fr) minmax(0, .75fr); }
  .regen-applications__grid { grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr); }
  .regen-evaluation__inner { grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr); }
  .regen-next__grid { grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr); }
  .achilles-story { grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); }
  .achilles-evaluation__intro { grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr); }
  .achilles-recovery__heading { grid-template-columns: minmax(360px, .8fr) minmax(0, 1.2fr); }
  .fungal-causes__heading,
  .fungal-treatment__heading,
  .fungal-growth__heading { grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr); }
  .fungal-diagnosis__grid { grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); }
  .swift-recognize__heading,
  .swift-diagnosis__intro,
  .swift-expect__heading { grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr); }
  .swift-recognize__composition { grid-template-columns: minmax(460px, 1.15fr) minmax(300px, .85fr); }
  .swift-treatment__inner { grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); }
  .products-hero__inner { grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); }
  .products-library__heading { grid-template-columns: minmax(0, 1fr) minmax(380px, .55fr); }
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .product-card--featured { grid-column: span 2; }
}

@media (min-width: 1080px) {
  .primary-nav { display: block; }
  .site-header__cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

@media (max-width: 1360px) and (min-width: 1080px) {
  .site-logo { flex-basis: 290px; }
  .site-logo__wordmark { width: 225px; }
  .primary-nav__list { gap: 1rem; }
  .primary-nav a,
  .nav-menu__button { font-size: .82rem; }
  .site-header__cta { padding-inline: 1rem; font-size: .86rem; }
  .services-mega__inner { grid-template-columns: minmax(220px, 1.05fr) repeat(3, minmax(160px, 1fr)); gap: 1.4rem; }
  .services-mega__intro { padding: 1.15rem 1.25rem; }
  .primary-nav .services-mega__column a { font-size: .86rem; }
}

@media (max-width: 779px) {
  body { font-size: 1rem; }
  h1 { max-width: 14ch; }
  .site-header__inner { min-height: 82px; }
  .site-logo__crest { width: 45px; }
  .site-logo__wordmark { width: min(190px, 51vw); padding-left: .55rem; }
  .page-hero { min-height: 440px; }
  .page-hero__wash { background: linear-gradient(180deg, rgba(6,33,49,.87), rgba(6,33,49,.95) 65%, rgba(6,33,49,.99)); }
  .page-hero__image { object-position: 62% center; opacity: .72; }
  .page-hero__inner { align-items: flex-end; }
  .page-hero__content { width: 100%; }
  .page-hero--compact { min-height: 420px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .related-grid { grid-template-columns: 1fr; }
  .cta-band__content { width: 100%; }
  .cta-band::after { background: rgba(8,40,59,.86); }
  .hero-paths { display: grid; grid-template-columns: 1fr; }
  .hero-paths a { justify-content: space-between; }
  .story-experience__visual { min-height: 390px; }
  .service-index--guided ol { display: grid; grid-template-columns: repeat(2, 1fr); }
  .service-index--guided a { min-height: 62px; border-right: 1px solid var(--line); }
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
  .choice-card { min-height: 104px; }
  .facility-placeholder { min-height: 340px; }
  .story-flow .story-tabs { display: flex; overflow-x: auto; }
  .story-flow .story-tab { min-width: 140px; }
  .service-layout--flow .service-index--guided { top: 0; grid-template-columns: 1fr; gap: 0; margin-inline: calc(var(--space-x) * -1); padding-inline: var(--space-x); }
  .service-layout--flow .service-index--guided h2 { display: none; }
  .service-layout--flow .service-index--guided ol {
    display: flex;
    justify-content: flex-start;
    gap: 1.4rem;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .service-layout--flow .service-index--guided ol::-webkit-scrollbar { display: none; }
  .service-layout--flow .service-index--guided li { scroll-snap-align: center; }
  .service-layout--flow .service-index--guided a { min-height: 50px; white-space: nowrap; border-right: 0; }
  .interaction-island .choice-grid,
  .interaction-island .diagnostic-tabs { grid-template-columns: 1fr; }
  .interaction-island .choice-card,
  .interaction-island .diagnostic-tab { min-height: 68px; border-right: 0; border-bottom: 1px solid rgba(8,40,59,.14); }
  .interaction-island .choice-card:last-child,
  .interaction-island .diagnostic-tab:last-child { border-bottom: 0; }
  .fracture-guide__grid { grid-template-columns: 1fr; }
  .fracture-guide__grid article + article { border-top: 1px solid var(--line); border-left: 0; }
  .fracture-guide__action { grid-template-columns: 1fr; }
  .fracture-guide__action .btn { justify-self: start; }
  .interaction-island { padding: 1.25rem; }
  .about-dual,
  .story-experience,
  .facility-placeholder,
  .doctor-portrait img,
  .ankle-photo-row img,
  .services-explorer__stage,
  .heel-device-story figure,
  .heel-comparison__featured,
  .contact-card { border-radius: 64px 12px 12px 12px !important; }
  .interaction-island__panels { min-height: 220px; padding-inline: 0; }
  .interaction-island .choice-detail,
  .interaction-island .diagnostic-panel { grid-template-columns: 1fr; }
  .interaction-panel__number { font-size: 3rem; }
  .services-pathway-grid a { min-height: 140px; }
  .services-explorer__panels { min-height: 0; }
  .condition-library__grid { grid-template-columns: 1fr; }
  .heel-conditions__inner ul,
  .regen-applications__list { grid-template-columns: 1fr; }
  .regen-evaluation { min-height: 620px; }
  .regen-evaluation__wash { background: rgba(8,40,59,.88); }
  .service-layout--flow .service-block.treatment-feature { min-height: auto; }
  .treatment-feature__image { inset: 0; width: 100%; opacity: .42; }
  .treatment-feature__wash {
    background:
      linear-gradient(180deg, rgba(8,40,59,.97) 0%, rgba(8,40,59,.92) 66%, rgba(8,40,59,.75) 100%),
      linear-gradient(0deg, rgba(8,40,59,.75), transparent);
  }
  .treatment-feature__inner { grid-template-columns: 1fr; padding-top: 4rem; padding-bottom: 3rem; }
  .treatment-feature__options { grid-template-columns: 1fr; }
  .service-layout--flow .treatment-card + .treatment-card { padding-top: 2rem; padding-left: 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .treatment-feature__caption { position: static; width: 100%; margin-top: 2rem; }
  .products-hero__visual { min-height: 280px; }
  .achilles-hero .page-hero__image { object-position: 68% center; }
  .achilles-story__visual img { border-radius: 64px 12px 12px 12px; }
  .achilles-activity-line { grid-template-columns: 1fr; }
  .achilles-provider { grid-template-columns: 84px 1fr; }
  .achilles-provider img { width: 84px; min-width: 84px; max-width: 84px; height: 84px; }
  .fungal-hero .page-hero__image { object-position: 63% center; }
  .fungal-diagnosis__visual img { border-radius: 64px 12px 12px 12px; }
  .fungal-signs span + span { border-top: 1px solid var(--line); }
  .service-layout--flow .service-block.fungal-treatment { min-height: auto; }
  .fungal-treatment::after { background: rgba(8,40,59,.92); }
  .fungal-program li { grid-template-columns: 1fr; gap: .25rem; }
  .swift-hero.page-hero--compact { min-height: 390px; }
  .swift-hero .page-hero__image { object-position: 72% center; }
  .swift-hero h1 { max-width: none; font-size: clamp(2.05rem, 8.6vw, 2.35rem); line-height: 1.04; letter-spacing: -.02em; }
  .swift-hero .hero-paths { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem; }
  .swift-hero .hero-paths li:last-child { grid-column: 1 / -1; }
  .swift-hero .hero-paths a { min-height: 44px; padding: .65rem .75rem; font-size: .86rem; }
  .swift-recognize__composition figure img { border-radius: 64px 12px 12px 12px; }
  .service-layout--flow .service-block.swift-treatment { min-height: auto; }
  .swift-treatment::after { background: rgba(8,40,59,.92); }
  .swift-treatment__inner { min-height: auto; }
  .service-layout--flow .service-block.condition-feature {
    width: auto;
    min-height: auto;
    margin-inline: calc(var(--space-x) * -1);
  }
  .condition-feature__inner { padding-inline: var(--space-x); }
  .condition-feature h2 { max-width: 12ch !important; font-size: clamp(2.25rem, 11vw, 3.2rem); }
  .condition-intro__visual,
  .condition-intro__visual img { min-height: 400px; }
  .service-layout--flow .service-block.treatment-journey {
    width: auto;
    margin-inline: calc(var(--space-x) * -1);
  }
  .treatment-journey__inner { padding-inline: var(--space-x); }
  .treatment-detail__visual,
  .treatment-detail__visual img { min-height: 420px; }
  .product-filters { flex-wrap: nowrap; overflow-x: auto; }
  .product-filters button { flex: 0 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Searchable video library */
.video-hero .page-hero__image { object-position: center 48%; }
.video-hero .page-hero__wash { background: linear-gradient(90deg, rgba(8,40,59,.96) 0%, rgba(8,40,59,.82) 44%, rgba(8,40,59,.18) 80%); }
.video-library-section { position: relative; overflow: hidden; }
.video-library-section::before {
  position: absolute;
  z-index: -1;
  top: 8rem;
  right: -12rem;
  width: 36rem;
  height: 36rem;
  content: "";
  border: 1px solid rgba(200,163,60,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(200,163,60,.035), 0 0 0 10rem rgba(200,163,60,.025);
}
.video-library-intro {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.video-library-intro > div:first-child { max-width: 760px; }
.video-library-intro h2 { max-width: 19ch; }
.video-library-intro > div:first-child > p:last-child { max-width: 62ch; color: var(--muted); }
.video-index-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  overflow: hidden;
  border-radius: var(--focal-radius);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow-focal);
}
.video-index-summary div { display: flex; min-height: 124px; flex-direction: column-reverse; align-items: center; justify-content: center; padding: 1.25rem; text-align: center; }
.video-index-summary div + div { border-left: 1px solid rgba(255,255,255,.15); }
.video-index-summary dt { color: rgba(255,255,255,.72); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.video-index-summary dd { margin: 0 0 .1rem; color: var(--gold-light); font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.6rem); font-weight: 700; line-height: 1; }
.video-library-tools {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-top: 3px solid var(--gold);
  border-radius: 16px;
  background: var(--bone);
  box-shadow: var(--shadow-soft);
}
.video-search-label { display: grid; gap: .45rem; color: var(--navy); font-weight: 800; }
.video-search-label input { width: 100%; min-height: 54px; padding: .85rem 1rem; border: 1px solid rgba(8,40,59,.22); border-radius: 5px; color: var(--navy); background: var(--white); }
.video-search-label input::placeholder { color: #6a7981; }
.video-filter-list { display: flex; flex-wrap: wrap; border: 1px solid rgba(8,40,59,.16); }
.video-filter-list button {
  flex: 1 1 auto;
  min-height: 48px;
  padding: .7rem 1rem;
  border: 0;
  border-right: 1px solid rgba(8,40,59,.16);
  color: var(--navy);
  background: var(--white);
  font-size: .9rem;
  font-weight: 800;
}
.video-filter-list button:last-child { border-right: 0; }
.video-filter-list button:hover { background: #f0eadc; }
.video-filter-list button.is-active { color: var(--white); background: var(--navy); }
.video-result-count { margin: 0; color: var(--navy-3); font-size: .85rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 2vw, 2rem); }
.video-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.video-card:nth-child(7n + 1) { border-top-left-radius: 76px; }
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-focal); }
.video-card[hidden] { display: none; }
.video-card__media { position: relative; display: block; min-height: 220px; overflow: hidden; background: var(--navy); }
.video-card__media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 42%, rgba(8,40,59,.6)); transition: background .25s ease; }
.video-card__media:hover::after { background: linear-gradient(180deg, rgba(8,40,59,.06), rgba(8,40,59,.72)); }
.video-card__media img { width: 100%; height: 220px; object-fit: cover; transition: transform .45s ease; }
.video-card:hover .video-card__media img { transform: scale(1.035); }
.video-card__play {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding-left: 3px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(8,40,59,.24);
}
.video-card__body { display: flex; min-height: 250px; flex: 1; flex-direction: column; padding: 1.35rem; }
.video-card__meta { margin: 0 0 .6rem; color: var(--gold-dark, #9a7620); font-size: .73rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.video-card h2 { margin-bottom: .65rem; font-size: clamp(1.35rem, 1.8vw, 1.75rem); line-height: 1.18; letter-spacing: -.025em; }
.video-card__topic { margin-bottom: 1.25rem; color: var(--muted); font-size: .95rem; }
.video-card__action { display: inline-flex; min-height: 44px; align-items: center; gap: .5rem; margin-top: auto; color: var(--navy); font-weight: 800; text-underline-offset: 5px; }
.video-card__action span { color: var(--gold); font-size: 1.25rem; transition: transform .2s ease; }
.video-card__action:hover span { transform: translateX(4px); }
.video-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(360px, .55fr); border-top-left-radius: 100px; color: var(--white); background: var(--navy); box-shadow: var(--shadow-focal); }
.video-card--featured .video-card__media { min-height: 420px; }
.video-card--featured .video-card__media img { height: 100%; min-height: 420px; }
.video-card--featured .video-card__body { min-height: 420px; justify-content: center; padding: clamp(1.75rem, 4vw, 3.25rem); }
.video-card--featured h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.7rem); }
.video-card--featured .video-card__topic { color: rgba(255,255,255,.7); }
.video-card--featured .video-card__action { color: var(--gold-light); }
.video-empty { padding: 3rem 1.5rem; border: 1px solid var(--line); text-align: center; color: var(--navy); background: var(--bone); }
.video-final-cta { margin-top: 0; }
.video-modal {
  width: min(1080px, calc(100% - 2rem));
  max-width: none;
  max-height: calc(100vh - 2rem);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 70px 14px 14px 14px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 35px 100px rgba(0,0,0,.45);
}
.video-modal::backdrop { background: rgba(4,20,30,.84); backdrop-filter: blur(5px); }
.video-modal__panel { position: relative; padding: clamp(1rem, 2.5vw, 1.5rem); }
.video-modal__close { position: absolute; z-index: 3; top: -16px; right: -16px; display: grid; width: 46px; height: 46px; place-items: center; border: 2px solid var(--white); border-radius: 50%; color: var(--navy); background: var(--gold-light); font-size: 1.75rem; line-height: 1; }
.video-modal__frame { position: relative; width: 100%; overflow: hidden; aspect-ratio: 16 / 9; border-radius: 56px 8px 8px 8px; background: #000; }
.video-modal__frame iframe,
.video-modal__frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: contain; }
.video-modal h2 { margin: 1rem .5rem .25rem; color: var(--white); font-size: clamp(1.3rem, 2vw, 1.8rem); }
.has-video-modal { overflow: hidden; }

@media (min-width: 900px) {
  .video-library-intro { grid-template-columns: minmax(0, 1fr) minmax(440px, .7fr); }
}

@media (max-width: 1100px) {
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .video-card--featured { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .video-hero .page-hero__wash { background: rgba(8,40,59,.84); }
  .video-index-summary { border-radius: 58px 12px 12px 12px; }
  .video-index-summary div { min-height: 102px; padding: .9rem; }
  .video-index-summary dt { font-size: .62rem; letter-spacing: .08em; }
  .video-filter-list { flex-wrap: nowrap; overflow-x: auto; }
  .video-filter-list button { flex: 0 0 auto; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card--featured { display: flex; grid-column: auto; }
  .video-card--featured .video-card__media,
  .video-card--featured .video-card__media img { min-height: 260px; height: 260px; }
  .video-card--featured .video-card__body { min-height: 260px; }
  .video-modal { border-radius: 46px 10px 10px 10px; }
  .video-modal__frame { border-radius: 36px 6px 6px 6px; }
  .video-modal__close { top: -12px; right: -8px; }
}

/* Shared editorial heading system
   Keeps short explanatory copy visually connected to its section title. */
.section-heading-anchored {
  display: block !important;
  margin-bottom: clamp(2rem, 5vw, 3.75rem);
}
.section-heading-anchored > .service-block__label,
.section-heading-anchored > .eyebrow { margin-bottom: 1rem; }
.section-heading-anchored__row {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}
.section-heading-anchored__row > h2 { margin-bottom: 0; }
.section-heading-anchored__description {
  position: relative;
  max-width: 52ch !important;
  margin: .2rem 0 0 !important;
  padding-left: clamp(1.25rem, 2vw, 2rem);
  color: var(--muted);
}
.section-heading-anchored__description::before {
  position: absolute;
  top: .28rem;
  bottom: .28rem;
  left: 0;
  width: 2px;
  content: "";
  background: var(--gold);
}
.section-heading-anchored--light .section-heading-anchored__row > h2 { color: var(--white); }
.section-heading-anchored--light .section-heading-anchored__description { color: rgba(255,255,255,.78); }

@media (min-width: 780px) {
  .section-heading-anchored__row { grid-template-columns: minmax(0, .52fr) minmax(320px, .48fr); }
}

@media (max-width: 779px) {
  .section-heading-anchored__description {
    margin-top: 0 !important;
    padding-top: 1.25rem;
    padding-left: 0;
  }
  .section-heading-anchored__description::before {
    top: 0;
    right: auto;
    bottom: auto;
    width: 3rem;
    height: 2px;
  }
}
