:root {
  --ink: #173a62;
  --ink-soft: #203e5f;
  --graphite: #253142;
  --muted: #5f6b78;
  --porcelain: #f5f8fa;
  --paper: #ffffff;
  --line: #d6e2ec;
  --mint: #cfe3f3;
  --cobalt: #2e5079;
  --oak: #9db8cf;
  --shadow: 0 20px 60px rgba(23, 58, 98, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--porcelain);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
}

body::selection {
  color: var(--ink);
  background: var(--mint);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 16px;
  box-shadow: var(--shadow);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 84px;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 24, 39, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 260px;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(46, 80, 121, 0.18);
  border-radius: 999px;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  grid-column: 1;
  grid-row: 1;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

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

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.nav-links a,
.footer-grid a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-grid a:hover {
  color: var(--cobalt);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 13px 20px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta,
.button.primary {
  background: var(--cobalt);
  color: var(--paper);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--paper);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.03);
  animation: heroFade 32s infinite;
}

.hero-slide-1 {
  opacity: 1;
  animation-delay: 0s;
  object-position: 52% 45%;
}

.hero-slide-2 {
  animation-delay: 8s;
  object-position: 50% 42%;
}

.hero-slide-3 {
  animation-delay: 16s;
  object-position: 54% 45%;
}

.hero-slide-4 {
  animation-delay: 24s;
  object-position: 56% 48%;
}

.hero-shade {
  z-index: -2;
  background: rgba(10, 30, 52, 0.72);
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 58%;
  background: rgba(10, 30, 52, 0.38);
}

.hero-inner {
  padding: 80px 0 56px;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--cobalt);
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: 5rem;
}

h2 {
  font-size: 3.25rem;
}

h3 {
  font-size: 1.55rem;
}

.hero-lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(820px, 100%);
  margin: 68px 0 0;
  background: rgba(255, 255, 255, 0.24);
}

.hero-facts div {
  min-height: 118px;
  padding: 22px;
  background: rgba(16, 24, 39, 0.68);
}

.hero-facts dt {
  margin-bottom: 8px;
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.proof-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

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

.proof-grid article {
  min-height: 260px;
  padding: 34px 26px;
  background: var(--paper);
}

.proof-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(46, 80, 121, 0.18);
  border-radius: 999px;
  background: #f7fafc;
  color: var(--cobalt);
}

.proof-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.treatment-card span {
  display: block;
  margin-bottom: 26px;
  color: var(--cobalt);
  font-weight: 800;
}

.proof-grid h2 {
  margin-bottom: 16px;
  font-size: 1.55rem;
}

.proof-grid p,
.treatment-card p,
.doctor-card p,
.section-copy p,
.section-heading p,
.location-copy p,
.contact-copy p,
.footer-grid p {
  color: var(--muted);
}

.editorial-section,
.team-section,
.process-section {
  padding: 112px 0;
}

.split-layout,
.process-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2,
.location-copy h2 {
  margin-bottom: 28px;
  color: var(--ink);
}

.section-copy p,
.section-heading p,
.contact-copy p,
.location-copy p {
  max-width: 680px;
}

.editorial-image {
  margin: 0;
}

.editorial-image img,
.location-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.editorial-image figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.treatment-section {
  padding: 112px 0;
  background: #173a62;
  color: var(--paper);
}

.treatment-section .section-heading h2,
.treatment-section .section-heading p {
  color: var(--paper);
}

.treatment-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 0.72fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(330px, 1fr);
  gap: 18px;
}

.treatment-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(207, 227, 243, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.treatment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(207, 227, 243, 0.58);
  background: rgba(255, 255, 255, 0.1);
}

.treatment-card h3 {
  min-height: 84px;
  margin-bottom: 18px;
}

.treatment-card p {
  color: rgba(255, 255, 255, 0.74);
}

.treatment-card strong {
  margin-top: auto;
  color: var(--mint);
  font-weight: 800;
}

.treatment-card strong::after {
  content: " →";
}

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

.button.secondary.light {
  border-color: rgba(207, 227, 243, 0.72);
  color: var(--paper);
}

.procedure-hero {
  padding: 88px 0 72px;
  background: #173a62;
  color: var(--paper);
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--mint);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.procedure-hero h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: 4.2rem;
}

.procedure-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
}

.procedure-page {
  background: var(--porcelain);
}

.procedure-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  padding: 76px 0;
}

.procedure-content {
  display: grid;
  gap: 22px;
}

.procedure-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  background: var(--paper);
}

.procedure-panel h2,
.procedure-side h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 2rem;
}

.procedure-panel p,
.procedure-panel li,
.procedure-side p,
.source-note {
  color: var(--muted);
}

.procedure-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.procedure-side {
  position: sticky;
  top: 110px;
  align-self: start;
  border-radius: 8px;
  padding: 28px;
  background: var(--ink);
  color: var(--paper);
}

.procedure-side h2,
.procedure-side p {
  color: var(--paper);
}

.procedure-side p {
  color: rgba(255, 255, 255, 0.76);
}

.procedure-side .button {
  width: 100%;
  margin-top: 12px;
}

.procedure-side .button.secondary {
  border-color: rgba(255, 255, 255, 0.54);
}

.source-note {
  margin-top: 20px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.image-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 420px;
  background: var(--ink);
}

.image-band div {
  min-height: 420px;
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.doctor-card {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.doctor-card:hover {
  transform: translateY(-4px);
  border-color: var(--oak);
  box-shadow: 0 18px 42px rgba(23, 58, 98, 0.13);
}

.doctor-card-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

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

.doctor-card-main > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.doctor-card h3 {
  margin-bottom: 16px;
  color: var(--ink);
}

.doctor-title {
  margin-bottom: 6px;
  color: var(--cobalt);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.doctor-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--graphite);
  font-size: 0.94rem;
}

.doctor-card-more {
  margin-top: auto;
  padding-top: 24px;
  color: var(--cobalt);
  font-weight: 900;
}

.doctor-card-more::after {
  content: " \2192";
}

.doctor-known-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0 28px 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 11px 14px;
  color: var(--ink);
  background: #f5f8fa;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.doctor-known-link:hover {
  border-color: var(--oak);
  background: var(--cobalt);
  color: var(--paper);
}

.doctor-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  padding: 76px 0;
}

.doctor-profile-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.doctor-profile-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.doctor-profile-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.doctor-profile-photo figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.doctor-full-bio h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 2rem;
}

.doctor-full-bio h4 {
  margin: 30px 0 12px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.doctor-full-bio p,
.doctor-full-bio li {
  color: var(--muted);
}

.doctor-full-bio ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 20px;
}

.doctor-bio {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.doctor-bio summary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 14px;
  color: var(--ink);
  background: #f5f8fa;
  font-weight: 800;
  cursor: pointer;
}

.doctor-bio summary::after {
  content: "+";
  margin-left: 16px;
  color: var(--cobalt);
  font-size: 1.25rem;
  line-height: 1;
}

.doctor-bio[open] summary::after {
  content: "-";
}

.doctor-bio-content {
  max-height: 440px;
  margin-top: 16px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fbfdfe;
}

.doctor-bio-content h4 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.doctor-bio-content h4:first-child {
  margin-top: 0;
}

.doctor-bio-content p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.doctor-bio-content ul {
  gap: 7px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.process-section {
  background: var(--paper);
}

.dark-button {
  margin-top: 18px;
}

.process-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  min-height: 112px;
  align-items: center;
  padding: 26px 28px;
  background: var(--paper);
}

.process-list strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.process-list span {
  color: var(--muted);
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: #eef4f2;
}

.location-media {
  min-height: 620px;
}

.location-media img {
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.location-team-image {
  object-position: center center;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.location-list span,
.location-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 9px 13px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.94rem;
  text-decoration: none;
}

.location-list a:hover,
.contact-note a:hover,
.footer-map-link:hover {
  color: var(--cobalt);
}

.route-link {
  gap: 8px;
  font-weight: 800;
}

.route-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--cobalt);
  color: var(--paper);
  font-size: 0.92rem;
  line-height: 1;
}

.contact-section {
  padding: 112px 0;
  background: #173a62;
  color: var(--paper);
}

.contact-copy h2 {
  color: var(--paper);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-note {
  display: grid;
  gap: 8px;
  max-width: 620px;
  margin-top: 28px;
  border-left: 4px solid var(--mint);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.contact-note strong {
  color: var(--paper);
}

.contact-note a {
  color: var(--paper);
}

.contact-route {
  width: fit-content;
  margin-top: 4px;
}

.contact-route .route-icon {
  background: var(--mint);
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 18px;
  border-radius: 8px;
  padding: 32px;
  background: var(--paper);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid #c9d3d1;
  border-radius: 4px;
  padding: 13px 14px;
  background: #fbfcfc;
  color: var(--ink);
  font-weight: 400;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
}

.form-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.site-footer {
  padding: 56px 0;
  background: #102f52;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  display: block;
  width: min(310px, 100%);
  height: auto;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-link {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(207, 227, 243, 0.34);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(207, 227, 243, 0.68);
  background: rgba(207, 227, 243, 0.12);
  color: var(--mint);
}

.social-link-muted {
  opacity: 0.78;
}

.social-icon {
  display: block;
  width: 22px;
  height: 22px;
}

.footer-grid span.social-link {
  display: inline-grid;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  text-transform: none;
  font-size: inherit;
  font-weight: inherit;
}

.footer-grid span.social-link:hover {
  color: var(--mint);
}

.footer-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--mint);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
}

.footer-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  margin-top: 42px;
  border-top: 1px solid rgba(207, 227, 243, 0.18);
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-legal-nav {
  justify-self: end;
}

.footer-legal-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal-link {
  display: inline-flex;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
}

.footer-legal-link:hover,
.footer-legal-link[aria-current="page"] {
  color: var(--mint);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  padding: 76px 0;
}

.privacy-content {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.privacy-intro-panel {
  border-left: 4px solid var(--cobalt);
}

.privacy-meta {
  margin-bottom: 14px;
  color: var(--cobalt);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.privacy-policy-section h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.privacy-policy-section a {
  color: var(--cobalt);
  font-weight: 800;
}

.privacy-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.privacy-summary-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #f8fbfd;
}

.privacy-summary-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.privacy-footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.privacy-modal[hidden],
.privacy-consent[hidden] {
  display: none;
}

.privacy-fingerprint {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 2000;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(207, 227, 243, 0.48);
  border-radius: 999px;
  background: #102f52;
  color: var(--paper);
  box-shadow: 0 14px 34px rgba(8, 17, 29, 0.22);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.privacy-fingerprint:hover,
.privacy-fingerprint[aria-expanded="true"] {
  transform: translateY(-2px);
  border-color: var(--mint);
  background: #173a62;
  color: var(--mint);
}

.privacy-fingerprint-icon {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.privacy-card,
.privacy-modal-card {
  border: 1px solid rgba(207, 227, 243, 0.36);
  border-radius: 8px;
  background: #102f52;
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 80px rgba(8, 17, 29, 0.32);
}

.privacy-card {
  position: relative;
  padding: 28px;
}

.privacy-kicker {
  margin: 0 0 8px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.privacy-card h2,
.privacy-modal-card h2 {
  margin-bottom: 12px;
  color: var(--paper);
  font-size: 1.35rem;
}

.privacy-card p,
.privacy-modal-card p {
  color: rgba(255, 255, 255, 0.72);
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.privacy-card .button.secondary,
.privacy-modal-card .button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--paper);
}

.privacy-text-button,
.privacy-close {
  border: 0;
  background: transparent;
  color: var(--mint);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.privacy-text-button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 6px;
}

.privacy-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 1.35rem;
  line-height: 1;
}

.privacy-close:hover {
  background: rgba(255, 255, 255, 0.08);
}

.privacy-policy-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--mint);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.privacy-policy-link:hover {
  color: var(--paper);
}

.privacy-modal {
  position: fixed;
  left: 20px;
  bottom: 78px;
  z-index: 2100;
  width: min(420px, calc(100vw - 40px));
}

.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 17, 29, 0.64);
}

.privacy-modal-card {
  position: relative;
  width: 100%;
  max-height: min(680px, calc(100svh - 110px));
  overflow: auto;
  padding: 22px;
}

.privacy-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(207, 227, 243, 0.2);
  padding-bottom: 14px;
}

.privacy-modal-header .privacy-close {
  position: static;
  flex: 0 0 auto;
}

.privacy-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(207, 227, 243, 0.16);
  padding: 13px 0;
}

.privacy-option strong {
  display: block;
  margin-bottom: 4px;
  color: var(--paper);
}

.privacy-option p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.privacy-toggle {
  position: relative;
  display: inline-flex;
  width: 58px;
  height: 32px;
  cursor: pointer;
}

.privacy-toggle input {
  position: absolute;
  opacity: 0;
}

.privacy-toggle span {
  position: relative;
  width: 100%;
  border: 1px solid rgba(207, 227, 243, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 180ms ease, border-color 180ms ease;
}

.privacy-toggle span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--paper);
  transition: transform 180ms ease;
}

.privacy-toggle input:checked + span {
  border-color: var(--mint);
  background: var(--cobalt);
}

.privacy-toggle input:checked + span::after {
  transform: translateX(26px);
}

.privacy-toggle input:disabled + span {
  opacity: 0.72;
  cursor: not-allowed;
}

.privacy-toggle input:focus-visible + span {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.privacy-modal-footer {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.privacy-modal-actions {
  display: grid;
  gap: 8px;
}

.privacy-modal-actions .button,
.privacy-modal-actions .privacy-text-button {
  width: 100%;
  justify-content: center;
  min-height: 42px;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }
  4% {
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    transform: scale(1.08);
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 24px;
  }

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .header-cta {
    justify-self: start;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .proof-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .treatment-card {
    min-height: 310px;
  }

  .procedure-layout {
    grid-template-columns: 1fr;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .doctor-profile-layout {
    grid-template-columns: 1fr;
  }

  .procedure-side {
    position: static;
  }

  .doctor-profile-side {
    position: static;
  }

  .split-layout,
  .process-layout,
  .contact-layout,
  .section-heading,
  .location-section {
    grid-template-columns: 1fr;
  }

  .location-media {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 14px;
    min-height: 74px;
    padding: 12px 16px;
  }

  .brand img {
    width: min(218px, 100%);
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .site-header.nav-open {
    box-shadow: 0 18px 46px rgba(23, 58, 98, 0.12);
  }

  .site-header.nav-open .nav-links {
    display: grid;
    grid-column: 1 / -1;
    gap: 0;
    width: 100%;
    margin-top: 8px;
    border-top: 1px solid rgba(46, 80, 121, 0.12);
    padding-top: 8px;
    color: var(--ink-soft);
    font-size: 0.98rem;
  }

  .site-header.nav-open .nav-links a {
    display: flex;
    align-items: center;
    min-height: 46px;
    border-bottom: 1px solid rgba(46, 80, 121, 0.08);
    font-weight: 800;
  }

  .site-header.nav-open .header-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 4px;
  }

  .header-cta,
  .button {
    width: 100%;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-inner {
    padding: 58px 0 38px;
  }

  .hero-shade {
    background: rgba(8, 17, 29, 0.78);
  }

  .hero-shade::after {
    width: 100%;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-facts,
  .proof-grid,
  .team-grid,
  .treatment-grid,
  .image-band,
  .privacy-summary-grid,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-legal-nav,
  .footer-legal-list {
    justify-self: start;
    justify-content: flex-start;
  }

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

  .hero-facts div {
    min-height: 96px;
  }

  .proof-grid article {
    min-height: 0;
  }

  .editorial-section,
  .team-section,
  .process-section,
  .treatment-section,
  .contact-section,
  .procedure-layout,
  .doctor-profile-layout {
    padding: 72px 0;
  }

  .procedure-hero {
    padding: 62px 0 54px;
  }

  .procedure-hero h1 {
    font-size: 2.9rem;
  }

  .procedure-panel,
  .procedure-side {
    padding: 24px;
  }

  .privacy-layout {
    padding: 72px 0;
  }

  .privacy-fingerprint {
    left: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }

  .privacy-modal {
    left: 16px;
    bottom: 70px;
    width: calc(100vw - 32px);
  }

  .privacy-card,
  .privacy-modal-card {
    padding: 20px;
  }

  .privacy-actions,
  .privacy-modal-footer,
  .privacy-modal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .privacy-actions .button,
  .privacy-actions .privacy-text-button,
  .privacy-modal-actions .button,
  .privacy-modal-actions .privacy-text-button {
    width: 100%;
    justify-content: center;
  }

  .privacy-option {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .procedure-panel h2,
  .procedure-side h2 {
    font-size: 1.7rem;
  }

  .doctor-profile-photo img {
    aspect-ratio: 4 / 3;
  }

  .split-layout,
  .process-layout,
  .contact-layout {
    gap: 42px;
  }

  .treatment-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .treatment-card h3 {
    min-height: 0;
  }

  .image-band div {
    min-height: 300px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .location-copy {
    padding: 56px 24px;
  }

  .location-media {
    min-height: 340px;
  }

  .contact-form {
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 14px 16px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .procedure-hero h1 {
    font-size: 2.35rem;
  }

  .procedure-panel,
  .procedure-side {
    padding: 20px;
  }

  .hero-actions {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-slide {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero-slide-1 {
    opacity: 1;
  }
}
