:root {
  --bg: #f7f8f7;
  --surface: #ffffff;
  --warm-white: #fbfaf7;
  --ink: #172124;
  --muted: #667276;
  --line: #d8dedf;
  --medical-blue: #235c73;
  --deep-blue: #0f2b36;
  --surgical-blue: #6fa8bd;
  --sage: #9aa99a;
  --accent: #b7a06a;
  --shadow: 0 22px 60px rgba(18, 33, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(183, 160, 106, 0.7);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--surface);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.8rem clamp(1rem, 4vw, 4rem);
  background: rgba(247, 248, 247, 0.9);
  border-bottom: 1px solid rgba(216, 222, 223, 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.1;
  text-decoration: none;
}

.brand span {
  color: var(--medical-blue);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.8rem);
  color: #344347;
  font-size: 0.95rem;
}

.nav-mobile-cta {
  display: none;
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  border: 1px solid rgba(35, 92, 115, 0.28);
  border-radius: 50%;
  color: var(--deep-blue);
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
}

.menu-toggle span {
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: translateY(0.38rem) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.nav a,
.text-link,
.opinion-panel a {
  text-decoration-color: rgba(183, 160, 106, 0.55);
  text-underline-offset: 0.28em;
}

.header-cta {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.1rem;
  border: 1px solid var(--medical-blue);
  background: var(--medical-blue);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  min-height: 80svh;
  display: grid;
  align-items: start;
  padding: clamp(1.35rem, 3vw, 2.6rem) clamp(1.25rem, 5vw, 5rem) clamp(3rem, 7vw, 5rem);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 31, 37, 0.88) 0%, rgba(13, 31, 37, 0.68) 38%, rgba(13, 31, 37, 0.22) 72%, rgba(13, 31, 37, 0.08) 100%),
    url("assets/hero-shifted.jpg") center 38% / cover no-repeat;
}

.hero-content {
  width: min(780px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark,
.section-kicker {
  color: var(--medical-blue);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.hero-title {
  display: grid;
  gap: 0.08em;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title-prefix {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.08;
}

.hero-title-name {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.98;
}

.hero-title-role {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.45rem, 2.6vw, 2.45rem);
  line-height: 1.12;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.25;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions,
.location-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.86rem 1.18rem;
  border: 1px solid transparent;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--medical-blue);
  color: #fff;
}

.button.primary:hover {
  background: #17485d;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.button.secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button.compact {
  min-height: 2.8rem;
}

.button.light {
  background: #fff;
  color: var(--deep-blue);
}

.button.outline {
  border-color: var(--medical-blue);
  color: var(--medical-blue);
  background: transparent;
}

.button.outline:hover {
  border-color: var(--deep-blue);
  color: #fff;
  background: var(--deep-blue);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 2.5rem 0 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-facts div {
  min-width: 0;
  padding: 1rem;
  background: rgba(15, 43, 54, 0.34);
}

.hero-facts dt {
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-weight: 700;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
}

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

.muted {
  background: #eef2f1;
}

.intro-section {
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.two-col,
.doctor-grid,
.opinion-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.intro-grid h2 {
  max-width: 820px;
}

.intro-grid p,
.section-heading p,
.doctor-grid p,
.sticky-copy p,
.image-band-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 2.6rem;
}

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

.treatment-card {
  min-height: 16rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--surface);
}

.process-list span {
  display: inline-block;
  margin-bottom: 1.4rem;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.treatment-icon {
  display: inline-flex;
  width: 3.15rem;
  height: 3.15rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.55rem;
  border: 1px solid rgba(35, 92, 115, 0.24);
  border-radius: 50%;
  color: var(--medical-blue);
  background: rgba(111, 168, 189, 0.08);
}

.treatment-icon svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.treatment-card p,
.process-list p,
.location-card p,
.faq-list p,
.opinion-panel p {
  color: var(--muted);
}

.sticky-copy {
  position: sticky;
  top: 6rem;
}

.process-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.doctor-section {
  background: var(--surface);
}

.doctor-grid {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
}

.portrait-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 2rem 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.fact-list div {
  padding: 1rem;
  background: #fbfaf7;
}

.fact-list strong {
  display: block;
  color: var(--medical-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.fact-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.doctor-actions {
  margin-top: 1.8rem;
}

.image-band {
  position: relative;
  display: grid;
  min-height: 66svh;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--deep-blue);
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 43, 54, 0.92), rgba(15, 43, 54, 0.54), rgba(15, 43, 54, 0.1));
}

.image-band-copy {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 2.5rem));
  margin: 0 auto 0 clamp(1.25rem, 5vw, 5rem);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.image-band-copy p {
  color: rgba(255, 255, 255, 0.86);
}

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

.opinion-panel {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-left: 4px solid var(--accent);
  background: #fff;
  box-shadow: var(--shadow);
}

.rating {
  margin-bottom: 0.7rem;
  color: var(--medical-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
}

.visual-section {
  padding-top: 0;
  background: var(--warm-white);
}

.visual-section img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 6px;
}

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

.location-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--surface);
}

.location-card .city {
  margin-bottom: 0.55rem;
  color: var(--medical-blue);
  font-weight: 800;
  text-transform: uppercase;
}

address {
  margin: 1rem 0 1.4rem;
  color: var(--muted);
  font-style: normal;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.5rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-strip div {
  padding: 1.1rem;
  background: var(--surface);
}

.contact-strip span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-strip a,
.contact-strip strong {
  font-size: 1.12rem;
}

.faq-section {
  background: var(--surface);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

summary::marker {
  color: var(--accent);
}

details p {
  margin: 0.85rem 0 0;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 5vw, 5rem);
  color: #fff;
  background: var(--deep-blue);
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.final-actions {
  justify-content: flex-end;
}

.phone-link {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
}

.social-links {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  width: 2.55rem;
  height: 2.55rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(35, 92, 115, 0.26);
  border-radius: 50%;
  color: #31515b;
  background: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.social-icon:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  color: var(--medical-blue);
  background: #fff;
}

.social-icon svg {
  width: 1.12rem;
  height: 1.12rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon circle:last-child {
  fill: currentColor;
  stroke: none;
}

.social-icon .social-mark {
  fill: currentColor;
  stroke: none;
}

.social-links-light .social-icon {
  border-color: rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
}

.social-links-light .social-icon:hover {
  color: var(--medical-blue);
  background: #fff;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 5vw, 5rem);
  color: #536165;
  background: #e9eeee;
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}

.privacy-link {
  color: #344347;
  font-weight: 800;
  text-decoration-color: rgba(183, 160, 106, 0.55);
  text-underline-offset: 0.28em;
}

.privacy-link:hover {
  color: var(--medical-blue);
}

.subpage-hero {
  padding: clamp(5rem, 9vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
}

.simple-hero {
  padding-bottom: clamp(4rem, 7vw, 5.5rem);
}

.bio-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.62fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.bio-hero-grid h1 {
  color: var(--deep-blue);
}

.bio-lead {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.28rem);
}

.bio-hero-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.back-link {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--medical-blue);
  font-weight: 800;
  text-decoration-color: rgba(183, 160, 106, 0.55);
  text-underline-offset: 0.28em;
}

.bio-intro {
  background: var(--surface);
}

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

.bio-summary-grid div {
  padding: clamp(1rem, 2.4vw, 1.6rem);
  background: var(--surface);
}

.bio-summary-grid span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bio-summary-grid strong {
  font-size: 1.04rem;
}

.bio-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.bio-sidebar {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 0.85rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.bio-sidebar a {
  color: #344347;
  font-weight: 700;
  text-decoration-color: rgba(183, 160, 106, 0.45);
  text-underline-offset: 0.28em;
}

.bio-content {
  display: grid;
  gap: 1.25rem;
}

.bio-section {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  background: var(--surface);
}

.bio-section + .bio-section {
  margin-top: 0.5rem;
}

.bio-section > p {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline article {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1.4rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.timeline span {
  color: var(--medical-blue);
  font-weight: 800;
}

.timeline p,
.detail-grid p,
.publication-list p,
.scope-list p {
  color: var(--muted);
}

.bio-details {
  margin-top: 1rem;
  padding: 1rem 0;
}

.bio-details summary {
  color: var(--deep-blue);
  font-size: 1.05rem;
}

.compact-list,
.detail-grid ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.compact-list li,
.detail-grid li {
  margin-bottom: 0.5rem;
}

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

.detail-grid article,
.scope-list article {
  padding: clamp(1rem, 2.5vw, 1.5rem);
  background: var(--warm-white);
}

.publication-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.publication-list p {
  margin: 0;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.policy-content {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.policy-card {
  padding: clamp(1.3rem, 3vw, 2rem);
  background: var(--surface);
}

.policy-card h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.policy-card p {
  max-width: 850px;
  color: var(--muted);
}

.policy-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.75rem;
  }

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

  .header-cta {
    order: 2;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: clamp(1rem, 4vw, 4rem);
    right: clamp(1rem, 4vw, 4rem);
    z-index: 30;
    display: grid;
    gap: 0.2rem;
    justify-content: stretch;
    max-height: calc(100svh - 6rem);
    overflow-y: auto;
    padding: 0.75rem;
    border: 1px solid var(--line);
    color: var(--ink);
    background: rgba(251, 250, 247, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.4rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

  .site-header.menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav a {
    display: flex;
    min-height: 2.8rem;
    align-items: center;
    padding: 0.72rem 0.8rem;
    border-bottom: 1px solid rgba(216, 222, 223, 0.8);
    font-weight: 700;
    text-decoration: none;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav-mobile-cta {
    justify-content: center;
    margin-top: 0.35rem;
    border: 1px solid var(--medical-blue);
    background: var(--medical-blue);
    color: #fff;
  }

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

  .intro-grid,
  .two-col,
  .doctor-grid,
  .opinion-grid,
  .faq-grid,
  .bio-hero-grid,
  .bio-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .bio-sidebar {
    position: static;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 0.8rem;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-cta {
    display: none;
  }

  .brand {
    font-size: 1.02rem;
  }

  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .hero-title-prefix {
    font-size: 1.45rem;
  }

  .hero-title-role {
    font-size: 1.22rem;
  }

  .section,
  .subpage-hero,
  .final-cta {
    padding-inline: 1rem;
  }

  .hero {
    min-height: 82svh;
    padding: 1.25rem 1rem 2.2rem;
    background:
      linear-gradient(180deg, rgba(13, 31, 37, 0.86) 0%, rgba(13, 31, 37, 0.64) 58%, rgba(13, 31, 37, 0.82) 100%),
      url("assets/hero-shifted.jpg") center top / cover no-repeat;
  }

  .hero-facts,
  .treatment-grid,
  .location-grid,
  .contact-strip,
  .fact-list,
  .bio-summary-grid,
  .detail-grid,
  .scope-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .button,
  .hero-actions,
  .final-actions,
  .location-actions {
    width: 100%;
  }

  .button {
    padding-inline: 1rem;
  }

  .location-actions .text-link {
    padding-top: 0.2rem;
  }

  .visual-section img {
    aspect-ratio: 4 / 3;
  }

  .image-band-copy {
    width: calc(100% - 2.5rem);
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.36rem;
  }

  h2 {
    font-size: 1.88rem;
  }

  .hero-title-prefix {
    font-size: 1.22rem;
  }

  .hero-title-role {
    font-size: 0.96rem;
  }

  .hero-lead,
  .intro-grid p,
  .section-heading p,
  .doctor-grid p,
  .sticky-copy p,
  .image-band-copy p,
  .final-cta p {
    font-size: 1rem;
  }

  .hero-facts div,
  .contact-strip div,
  .fact-list div,
  .bio-summary-grid div {
    padding: 0.9rem;
  }

  .bio-section,
  .policy-card {
    padding: 1.1rem;
  }
}
