/* Elementor design-system lock */
.bda-site-root {
  --e-global-color-primary: #0b4052;
  --e-global-color-secondary: #176b87;
  --e-global-color-text: #18343d;
  --e-global-color-accent: #176b87;
  --e-global-typography-primary-font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --e-global-typography-primary-font-weight: 500;
  --e-global-typography-secondary-font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --e-global-typography-text-font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --e-global-typography-accent-font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  color: #18343d;
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: normal;
}
.bda-site-root h1,
.bda-site-root h2,
.bda-site-root h3 {
  color: #0b4052;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-transform: none;
}
.bda-site-root h1 { font-size: clamp(3rem, 5.4vw, 6rem); }
.bda-site-root h2 { font-size: clamp(2.15rem, 3.8vw, 4.2rem); }
.bda-site-root h3 { font-size: clamp(1.35rem, 1.7vw, 1.8rem); }
.bda-site-root p,
.bda-site-root a,
.bda-site-root button,
.bda-site-root input,
.bda-site-root textarea,
.bda-site-root select {
  font-family: inherit;
}
.bda-site-root .desktop-nav > div > button {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}


:root {
  --ink: #0b4052;
  --green: #176b87;
  --green-2: #0e5a73;
  --sage: #76a9b7;
  --sage-light: #e0eef2;
  --ivory: #f7f5f0;
  --paper: #ffffff;
  --sand: #e7eef0;
  --clay: #176b87;
  --clay-action: #176b87;
  --clay-dark: #0e5a73;
  --gold: #9acbd6;
  --text: #18343d;
  --muted: #52646a;
  --line: rgba(11, 64, 82, 0.18);
  --line-strong: rgba(11, 64, 82, 0.52);
  --white-line: rgba(255, 255, 255, 0.42);
  --shadow: 0 24px 70px rgba(11, 64, 82, 0.14);
  --bda-display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --bda-sans: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: 1360px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section: clamp(5.5rem, 10vw, 10rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ivory); }
body { margin: 0; color: var(--text); background: var(--ivory); font-family: var(--bda-sans); font-size: 16px; line-height: 1.65; text-rendering: optimizeLegibility; }
body.menu-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, h4, ul, ol { margin-top: 0; }
h1, h2, h3 { font-family: var(--bda-display); font-weight: 500; line-height: 1.02; letter-spacing: -0.035em; color: var(--ink); }
h1 { font-size: clamp(3rem, 5.4vw, 6rem); }
h2 { font-size: clamp(2.15rem, 3.8vw, 4.2rem); }
h3 { font-size: clamp(1.35rem, 1.7vw, 1.8rem); }
::selection { color: var(--paper); background: var(--green-2); }
:target { scroll-margin-top: 9rem; }
:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #0b4052;
}
.shell { width: min(100%, var(--shell)); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.skip-link { position: fixed; z-index: 999; left: 1rem; top: -5rem; padding: .75rem 1rem; color: white; background: var(--ink); border-radius: .25rem; }
.skip-link:focus { top: 1rem; }
.eyebrow { display: inline-block; font-size: .69rem; line-height: 1.2; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--clay-dark); }
.button { min-height: 3.35rem; display: inline-flex; align-items: center; justify-content: center; gap: .65rem; padding: .8rem 1.35rem; border: 1px solid transparent; border-radius: 999px; font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-accent, .button-accent:visited { color: #fff; background: var(--clay-action); }
.button-accent:hover { color: #fff; background: var(--clay-dark); }
.button-accent:active { color: #fff; background: var(--ink); }
.button-dark, .button-dark:visited { color: #fff; background: var(--green); }
.button-dark:hover { color: #fff; background: var(--ink); }
.button-dark:active { color: #fff; background: #062d3a; }
.button-light, .button-light:visited { color: var(--ink); background: var(--paper); }
.button-light:hover { color: var(--ink); background: var(--sand); }
.button-light:active { color: var(--ink); background: #c8dfe5; }
.button-outline, .button-outline:visited { color: var(--green); border-color: currentColor; background: transparent; }
.button-outline:hover { color: var(--paper); border-color: var(--green); background: var(--green); }
.button-outline:active { color: #fff; border-color: var(--ink); background: var(--ink); }
.button-outline-dark, .button-outline-dark:visited { color: var(--ink); border-color: var(--ink); }
.button-outline-dark:hover { color: var(--paper); background: var(--ink); }
.button-outline-dark:active { color: #fff; background: #062d3a; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button-row.is-compact { margin-top: 1.6rem; }
.text-link { display: inline-flex; align-items: center; gap: .45rem; width: fit-content; padding-bottom: .15rem; border-bottom: 1px solid currentColor; font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(2px, -2px); }
.section-heading { max-width: 780px; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section-heading h2 { margin: .8rem 0 1.25rem; }
.section-heading p { max-width: 650px; margin-bottom: 0; font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--muted); }
.section-heading.is-centered { margin-inline: auto; text-align: center; }

/* Header */
.utility-bar { color: rgba(255,255,255,.83); background: var(--ink); font-size: .7rem; letter-spacing: .04em; }
.utility-inner { min-height: 2.15rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.utility-inner p { margin: 0; }
.utility-inner div { display: flex; gap: 2rem; }
.utility-inner a { color: white; font-weight: 800; }
.site-header { position: sticky; z-index: 100; top: 0; background: rgba(247,245,240,.96); border-bottom: 1px solid rgba(11,64,82,.12); backdrop-filter: blur(16px); }
.header-inner { min-height: 6.6rem; display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo { display: block; width: clamp(10rem, 14vw, 12rem); height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(.7rem, 1.3vw, 1.6rem); font-size: .75rem; font-weight: 500; letter-spacing: .025em; }
.desktop-nav > a, .desktop-nav > div > button { padding-block: 2rem; white-space: nowrap; }
.desktop-nav > div > button { display: inline-flex; align-items: center; gap: .35rem; line-height: 1; }
.nav-arrow { display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 400; line-height: 1; transform: translateY(-.02rem); transform-origin: center; }
.desktop-menu button[aria-expanded="true"] .nav-arrow { transform: translateY(-.02rem) rotate(180deg); }
.desktop-nav button { border: 0; cursor: pointer; background: transparent; }
.desktop-nav > a:hover, .desktop-nav > div > button:hover, .desktop-nav button[aria-expanded="true"], .desktop-nav button[data-current="true"] { color: var(--green-2); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: .45rem; }
.desktop-nav a[aria-current="page"] { color: var(--clay-dark); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: .45rem; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.phone-action { display: grid; line-height: 1.15; }
.phone-action span { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.phone-action strong { margin-top: .2rem; font-size: .76rem; }
.header-actions .button { min-height: 2.95rem; padding-inline: 1rem; }
.mega-wrap { position: static; }
.mega-menu { position: absolute; z-index: 2; top: 100%; left: 50%; width: min(calc(100vw - 3rem), 1240px); min-height: 390px; display: grid; grid-template-columns: .95fr 2fr .78fr; gap: 2.5rem; padding: 2.75rem; transform: translateX(-50%); background: var(--paper); border: 1px solid var(--line); border-radius: 0 0 1.4rem 1.4rem; box-shadow: var(--shadow); }
.mega-intro { display: flex; flex-direction: column; align-items: flex-start; }
.mega-intro h2 { margin: .8rem 0 1rem; font-size: 2.5rem; }
.mega-intro p { color: var(--muted); }
.mega-intro .text-link { margin-top: auto; }
.mega-links { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem 1.6rem; }
.mega-links a { display: block; padding: .7rem .65rem; border-bottom: 1px solid var(--line); border-radius: .35rem; }
.mega-links a:hover, .mega-links a:focus-visible { color: var(--ink); background: var(--sage-light); }
.mega-links strong, .mega-links span { display: block; }
.mega-links strong { margin-bottom: .25rem; font: 500 1.15rem/1.1 var(--bda-display); }
.mega-links span { font-size: .68rem; line-height: 1.35; font-weight: 500; color: var(--muted); }
.mega-urgent { align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding: 1.7rem; color: var(--paper); background: var(--green); border-radius: .75rem; }
.mega-urgent .eyebrow { color: #d9edf2; }
.mega-urgent strong { margin: .8rem 0; font: 500 2rem/1 var(--bda-display); }
.mega-urgent p { font-size: .85rem; color: rgba(255,255,255,.73); }
.mega-urgent a { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--white-line); font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.mega-urgent a:hover, .mega-urgent a:focus-visible { color: white; text-decoration: underline; text-underline-offset: .2rem; }
.nav-dropdown { position: relative; cursor: default; }
.nav-dropdown > div { position: absolute; visibility: hidden; opacity: 0; top: calc(100% - .65rem); left: -.8rem; min-width: 215px; display: grid; padding: .65rem; transform: translateY(8px); color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: .5rem; box-shadow: 0 18px 45px rgba(11,64,82,.13); transition: .2s ease; }
.nav-dropdown.is-open > div { visibility: visible; opacity: 1; transform: translateY(0); }
.nav-dropdown > div a { padding: .75rem; border-radius: .3rem; }
.nav-dropdown > div a:hover, .nav-dropdown > div a:focus-visible { color: var(--ink); background: var(--sage-light); text-decoration: underline; text-underline-offset: .2rem; }
.patient-dropdown > div { min-width: 250px; }
.menu-toggle { display: none; width: 3rem; height: 3rem; place-content: center; gap: .4rem; color: var(--ink); border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.menu-toggle span { width: 1.15rem; height: 1px; background: var(--ink); }
.menu-toggle:active { color: white; border-color: var(--ink); background: var(--ink); }
.menu-toggle:active span { background: white; }
.mobile-menu, .menu-scrim { display: none; }

/* Home hero */
.home-hero { position: relative; min-height: min(860px, calc(100svh - 7.7rem)); overflow: hidden; background: var(--ivory); }
.hero-texture { position: absolute; inset: 0; opacity: .04; background: url('images/texture.webp') center/cover; mix-blend-mode: multiply; pointer-events: none; }
.home-hero-grid { position: relative; min-height: inherit; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(2rem, 5vw, 6rem); padding-top: 3rem; padding-bottom: 5rem; }
.home-hero-copy { position: relative; z-index: 2; max-width: 650px; }
.home-hero-copy h1 { margin: 1.1rem 0 1.5rem; font-size: clamp(3.5rem, 5.6vw, 6.35rem); }
.home-hero-copy h1 em { display: block; color: var(--clay); font-weight: 400; }
.home-hero-copy > p { max-width: 570px; font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--muted); }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: clamp(2.5rem, 5vw, 4.5rem); padding-top: 1.3rem; border-top: 1px solid var(--line); }
.hero-trust div { display: grid; }
.hero-trust strong { font: 500 1.6rem/1 var(--bda-display); color: var(--green); }
.hero-trust span { margin-top: .35rem; font-size: .63rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.home-hero-visual { position: relative; height: min(690px, 72vh); }
.hero-photo { position: absolute; inset: 0 0 0 6%; overflow: hidden; border-radius: 50% 50% 1.2rem 1.2rem / 42% 42% 1.2rem 1.2rem; box-shadow: var(--shadow); }
.hero-photo:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,64,82,.22)); pointer-events: none; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-card { position: absolute; z-index: 2; left: -5%; bottom: 4%; width: min(280px, 45%); padding: 1.5rem; background: var(--paper); box-shadow: 0 20px 60px rgba(11,64,82,.18); }
.hero-card strong { display: block; margin: .55rem 0; font: 500 1.9rem/1 var(--bda-display); color: var(--ink); }
.hero-card p { margin-bottom: 1rem; font-size: .8rem; color: var(--muted); }
.hero-card a { font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.vertical-note { position: absolute; right: -2rem; top: 50%; transform: rotate(90deg) translateX(50%); transform-origin: right center; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.hero-scroll { position: absolute; left: var(--gutter); bottom: 1.5rem; display: flex; align-items: center; gap: .6rem; font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-scroll span { width: 2rem; height: 2rem; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }

/* Home sections */
.manifesto-section { color: white; background: var(--green); }
.manifesto-grid { display: grid; grid-template-columns: .6fr 2.1fr .8fr; align-items: end; gap: 3rem; padding-block: clamp(4rem, 8vw, 7rem); }
.manifesto-grid .eyebrow { align-self: start; color: #d9edf2; }
.manifesto-grid > p { margin: 0; font: 400 clamp(1.8rem, 3.2vw, 3.4rem)/1.12 var(--bda-display); letter-spacing: -.03em; }
.manifesto-grid > p em { color: #d9edf2; }
.manifesto-grid .text-link { justify-self: end; }
.services-section { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 2rem); }
.service-card { display: block; }
.service-card-image { position: relative; aspect-ratio: 1.12; overflow: hidden; background: var(--sand); }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.service-card:hover img { transform: scale(1.045); }
.service-card > div:last-child { padding: 1.25rem .2rem 1rem; }
.service-card h3 { margin-bottom: .55rem; }
.service-card p { min-height: 3.2em; margin-bottom: 1rem; font-size: .86rem; color: var(--muted); }
.doctors-section { color: white; background: var(--ink); }
.doctors-layout { display: grid; grid-template-columns: .75fr 1.5fr; gap: clamp(3rem, 7vw, 8rem); }
.doctors-section .eyebrow { color: #d9edf2; }
.doctors-section h2 { color: white; }
.doctors-section .section-heading p { color: rgba(255,255,255,.65); }
.doctor-quote { margin-top: clamp(4rem, 8vw, 8rem); padding-top: 1.5rem; border-top: 1px solid var(--white-line); }
.doctor-quote > span { font: 400 3rem/1 var(--bda-display); color: var(--gold); }
.doctor-quote p { font: 400 1.25rem/1.45 var(--bda-display); color: rgba(255,255,255,.75); }
.doctor-cards { display: grid; grid-template-columns: 1.06fr .94fr; align-items: end; gap: 1.5rem; }
.doctor-card { color: var(--ink); background: var(--paper); }
.doctor-card img { width: 100%; aspect-ratio: .94; object-fit: cover; object-position: center 18%; filter: saturate(.82); }
.doctor-card > div { padding: 1.4rem; }
.doctor-card > div > span:first-child { font-size: .64rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; color: var(--clay-dark); }
.doctor-card h3 { margin: .45rem 0; }
.doctor-card p { font-size: .82rem; color: var(--muted); }
.doctor-card-primary { transform: translateY(-1.25rem); }
.experience-section { min-height: 780px; display: grid; grid-template-columns: 1.15fr .85fr; background: var(--sand); }
.experience-image { position: relative; min-height: 720px; }
.experience-image img { width: 100%; height: 100%; object-fit: cover; }
.experience-label { position: absolute; right: 0; bottom: 0; padding: 1rem 2rem; color: white; background: var(--green); font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.experience-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(3rem, 7vw, 8rem); }
.experience-copy h2 { margin: .9rem 0 1.4rem; }
.experience-copy > p { font-size: 1.08rem; color: var(--muted); }
.feature-list { width: 100%; padding: 0; margin: 2rem 0; list-style: none; }
.feature-list li { padding: 1rem 0; border-top: 1px solid var(--line); }
.feature-list strong { font-family: var(--bda-display); font-size: 1.2rem; }
.feature-list p { margin: .25rem 0 0; font-size: .82rem; color: var(--muted); }
.journey-section { background: var(--paper); }
.journey-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.journey-grid li { min-height: 260px; padding: 2rem; border-right: 1px solid var(--line); }
.journey-grid li:last-child { border-right: 0; }
.journey-grid li > span { font: 500 1rem/1 var(--bda-display); color: var(--clay-dark); }
.journey-grid h3 { margin: 1rem 0 .6rem; }
.journey-grid p { font-size: .84rem; color: var(--muted); }
.review-section { padding-block: clamp(5rem, 9vw, 9rem); color: white; background: var(--clay-dark); overflow: hidden; }
.review-grid { display: grid; grid-template-columns: .8fr 1.4fr .9fr; align-items: center; gap: 4rem; }
.review-score { display: grid; text-align: center; }
.review-score strong { font: 400 clamp(5rem, 10vw, 9rem)/.8 var(--bda-display); }
.review-score span { margin-top: 1.5rem; color: #d9edf2; letter-spacing: .25em; }
.review-score p { margin: .5rem 0 0; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.review-copy .eyebrow { color: #d9edf2; }
.review-copy h2 { margin: .8rem 0 1rem; color: white; }
.review-copy p { color: rgba(255,255,255,.72); }
.review-orbit { position: relative; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.review-orbit:before, .review-orbit:after { content: ""; position: absolute; inset: 18%; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.review-orbit:after { inset: 36%; background: rgba(255,255,255,.08); }
.review-orbit span { position: absolute; padding: .4rem .7rem; color: var(--clay-dark); background: var(--paper); border-radius: 999px; font-size: .61rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.review-orbit span:nth-child(1) { left: 50%; top: 5%; transform: translateX(-50%); }
.review-orbit span:nth-child(2) { right: -3%; top: 55%; }
.review-orbit span:nth-child(3) { left: 4%; bottom: 9%; }
.financing-section { background: var(--sage-light); }
.financing-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(3rem, 8vw, 9rem); }
.finance-marks { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.finance-marks div { min-height: 170px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 1.5rem; border: 1px solid var(--line); background: rgba(255,255,255,.38); }
.finance-marks div:first-child { grid-column: span 2; }
.finance-marks img { width: auto; max-width: min(100%, 240px); max-height: 58px; object-fit: contain; object-position: left center; }
.finance-marks div:first-child img { max-width: min(100%, 280px); max-height: 52px; }
.finance-marks span { margin-top: .6rem; font-size: .67rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
.blog-section { background: var(--paper); }
.section-header-row { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.home-articles { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.home-articles .article-card.is-featured { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); align-items: stretch; background: var(--sage-light); border-top: 0; }
.home-articles .article-card.is-featured .article-image { min-height: 410px; margin: 0; }
.home-articles .article-card.is-featured > div { align-self: center; padding: clamp(2rem, 5vw, 4rem); }
.home-articles .article-card:not(.is-featured) .article-image { aspect-ratio: 1.6; }
.article-card { border-top: 1px solid var(--line); }
.article-image { display: block; aspect-ratio: 1.25; overflow: hidden; margin: 1rem 0 1.2rem; background: var(--sand); }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-card:hover img { transform: scale(1.035); }
.article-meta { display: flex; gap: .75rem; font-size: .62rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--clay-dark); }
.article-meta span + span:before { content: "•"; margin-right: .75rem; color: var(--muted); }
.featured-label { display: inline-block; margin-bottom: 1.25rem; padding: .45rem .7rem; color: white; background: var(--green); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-card h3 { margin: .6rem 0; }
.article-card p { font-size: .85rem; color: var(--muted); }
.article-card.is-featured .article-image { aspect-ratio: 1.5; }
.article-card.is-featured h3 { font-size: clamp(2rem, 3vw, 3rem); }
.location-section { padding-block: clamp(5rem, 10vw, 10rem); color: white; background: var(--green); }
.location-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(3rem, 10vw, 10rem); }
.location-copy .eyebrow { color: #d9edf2; }
.hours-card .eyebrow { color: var(--clay-dark); }
.location-copy h2 { margin: .8rem 0 2rem; color: white; }
.location-copy h2 em { color: #d9edf2; }
.location-copy address { font: 400 1.3rem/1.5 var(--bda-display); }
.location-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.location-section .button-outline { color: white; }
.location-section .button-outline:hover { color: var(--ink); border-color: white; background: white; }
.location-section .button-outline:active { color: var(--ink); border-color: var(--sand); background: var(--sand); }
.hours-card { align-self: center; padding: 2.2rem; color: var(--ink); background: var(--paper); }
.hours-card > p { display: flex; justify-content: space-between; gap: 1rem; margin: 0; padding: .75rem 0; border-bottom: 1px solid var(--line); font-size: .8rem; }
.hours-card small { display: block; margin-top: 1.2rem; line-height: 1.5; color: var(--muted); }
.conversion-band { padding-block: clamp(4.5rem, 8vw, 8rem); background: var(--sand); }
.conversion-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: clamp(3rem, 8vw, 8rem); }
.conversion-grid h2 { margin: .8rem 0 0; }
.conversion-grid p { max-width: 540px; color: var(--muted); }

/* Interior */
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0 0 2rem; list-style: none; font-size: .66rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.breadcrumbs li + li:before { content: "/"; margin-right: .5rem; opacity: .5; }
.breadcrumbs li:last-child { color: var(--ink); }
.interior-hero { padding-block: clamp(3rem, 6vw, 6rem); background: var(--paper); }
.interior-hero-grid { min-height: 650px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(3rem, 7vw, 8rem); }
.interior-hero-copy h1 { margin: .8rem 0 1.3rem; font-size: clamp(3.1rem, 4.8vw, 5.4rem); }
.interior-hero-copy > p { max-width: 630px; font-size: 1.08rem; color: var(--muted); }
.image-frame { position: relative; padding: 1rem 1rem 3.4rem; background: var(--ivory); border: 1px solid var(--line); }
.interior-hero-image img { width: 100%; height: 570px; object-fit: cover; }
.image-note { position: absolute; left: 1rem; bottom: 1rem; font-size: .63rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.service-options-section { background: var(--ivory); }
.service-options-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: clamp(3rem, 9vw, 10rem); }
.service-sticky-copy { position: sticky; top: 9rem; }
.service-sticky-copy h2 { margin: .8rem 0 1.2rem; }
.service-sticky-copy p { color: var(--muted); }
.option-list article { padding: 2rem 0; border-top: 1px solid var(--line); }
.option-list article:last-child { border-bottom: 1px solid var(--line); }
.option-list h3 { margin-bottom: .5rem; }
.option-list p { margin: 0; color: var(--muted); }
.benefits-band { padding-block: clamp(4rem, 8vw, 8rem); color: white; background: var(--green); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(3rem, 8vw, 9rem); }
.benefits-grid .eyebrow { color: #d9edf2; }
.benefits-grid h2 { margin: .8rem 0 0; color: white; }
.benefits-grid ul { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 0; margin: 0; list-style: none; }
.benefits-grid li { min-height: 85px; display: flex; align-items: center; gap: .8rem; padding: 1rem; border: 1px solid var(--white-line); }
.benefits-grid li span { color: #d9edf2; }
.process-section { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; margin: 0; list-style: none; }
.process-grid li { min-height: 310px; padding: 2rem; border: 1px solid var(--line); border-right: 0; }
.process-grid li:last-child { border-right: 1px solid var(--line); }
.process-grid h3 { margin: 2rem 0 .6rem; }
.process-grid p { font-size: .84rem; color: var(--muted); }
.faq-section { background: var(--sand); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 9vw, 10rem); }
.faq-grid h2 { margin: .8rem 0 1.2rem; }
.faq-grid > div:first-child p { color: var(--muted); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: grid; grid-template-columns: 1fr 2rem; gap: 1rem; align-items: center; padding: 1.6rem 0; cursor: pointer; list-style: none; font-family: var(--bda-display); font-size: 1.35rem; color: var(--ink); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary b { font: 400 1.5rem/1 var(--bda-sans); transition: transform .2s ease; }
.faq-list details[open] summary b { transform: rotate(45deg); }
.faq-list details > p { padding: 0 2rem 1.8rem 0; color: var(--muted); }
.related-section { background: var(--paper); }
.services-grid.is-related { grid-template-columns: repeat(3, 1fr); }

/* Doctors and office */
.doctor-hero { padding-block: clamp(3rem, 6vw, 6rem); color: white; background: var(--green); }
.doctor-hero-grid { min-height: 660px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(3rem, 9vw, 10rem); }
.doctor-portrait { position: relative; width: min(100%, 580px); justify-self: end; padding: 1rem 1rem 0; background: rgba(255,255,255,.08); border: 1px solid var(--white-line); }
.doctor-portrait img { width: 100%; height: 610px; object-fit: cover; object-position: top; }
.doctor-portrait > span { display: block; padding: 1rem 0; font-size: .65rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.doctor-hero .breadcrumbs, .doctor-hero .breadcrumbs li:last-child { color: rgba(255,255,255,.7); }
.doctor-bio-intro .eyebrow { color: #d9edf2; }
.doctor-bio-intro h1 { margin: .8rem 0 .6rem; color: white; }
.doctor-bio-intro > strong { font: 500 1.2rem/1 var(--bda-display); color: #d9edf2; }
.doctor-bio-intro > p { max-width: 670px; margin-top: 1.5rem; font-size: 1.1rem; color: rgba(255,255,255,.72); }
.doctor-bio-intro .button-outline { color: white; }
.doctor-bio-intro .button-outline:hover { color: var(--ink); border-color: white; background: white; }
.doctor-bio-intro .button-outline:active { color: var(--ink); border-color: var(--sand); background: var(--sand); }
.doctor-story { background: var(--paper); }
.doctor-story-grid, .two-column-copy { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 9vw, 10rem); }
.doctor-story-grid h2, .two-column-copy h2 { margin: .8rem 0 0; }
.prose { font-size: 1.05rem; color: var(--muted); }
.prose p { margin-bottom: 1.6rem; }
.credentials-section { padding-block: clamp(5rem, 9vw, 9rem); background: var(--sand); }
.credentials-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 9vw, 10rem); }
.credentials-grid h2 { margin: .8rem 0 0; }
.credentials-grid ul { padding: 0; margin: 0; list-style: none; }
.credentials-grid li { padding: 1.4rem 0; border-top: 1px solid var(--line); font-family: var(--bda-display); font-size: 1.25rem; }
.credentials-grid li:last-child { border-bottom: 1px solid var(--line); }
.interest-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.interest-grid a { min-height: 135px; display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font: 500 1.5rem/1.1 var(--bda-display); }
.interest-grid a:hover, .interest-grid a:focus-visible { color: white; background: var(--green); }
.interest-grid a:active { color: white; background: var(--ink); }
.office-manifesto { padding-block: clamp(4.5rem, 7vw, 6.5rem); color: white; background: var(--green); }
.office-manifesto-grid { display: grid; grid-template-columns: minmax(170px, .42fr) minmax(0, 1.58fr); align-items: start; gap: clamp(2.5rem, 7vw, 7rem); }
.office-manifesto-aside { display: grid; gap: 1.4rem; padding-top: .55rem; }
.office-manifesto-aside .eyebrow { color: #d9edf2; }
.office-manifesto-aside > span:last-child { width: 4.25rem; height: 1px; background: var(--white-line); }
.office-manifesto-copy > p { max-width: 960px; margin: 0; font: 400 clamp(2.1rem, 3.1vw, 3.35rem)/1.12 var(--bda-display); letter-spacing: -.03em; }
.office-manifesto-action { max-width: 960px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid var(--white-line); }
.office-manifesto-action > span { color: rgba(255,255,255,.72); font-size: .69rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.office-manifesto-action .text-link { flex-shrink: 0; color: white; }
.values-section { background: var(--paper); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.values-grid article { min-height: 300px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values-grid h3 { margin: 2rem 0 .7rem; }
.values-grid p { color: var(--muted); }
.office-photo-break { min-height: 680px; display: grid; grid-template-columns: 1.2fr .8fr; background: var(--sand); }
.office-photo-break > img { width: 100%; height: 100%; object-fit: cover; }
.office-photo-break > div { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(3rem, 7vw, 7rem); }
.office-photo-break h2 { margin: .8rem 0 1rem; }
.team-preview { background: var(--ivory); }
.doctor-cards.horizontal { grid-template-columns: 1fr 1fr; align-items: stretch; }
.doctor-cards.horizontal .doctor-card { display: grid; grid-template-columns: .75fr 1fr; }
.doctor-cards.horizontal .doctor-card img { height: 100%; }

/* Resources and finance */
.resources-section { background: var(--paper); }
.resource-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.resource-grid > a { min-height: 300px; display: flex; flex-direction: column; align-items: flex-start; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: .25s ease; }
.resource-grid > a:hover, .resource-grid > a:focus-visible { color: white; background: var(--green); }
.resource-grid > a:active { color: white; background: var(--ink); }
.resource-grid h2 { margin: 1rem 0 .6rem; font-size: clamp(2rem, 3vw, 3rem); }
.resource-grid a:hover h2, .resource-grid a:focus-visible h2, .resource-grid a:active h2 { color: white; }
.resource-grid p { max-width: 500px; color: var(--muted); }
.resource-grid a:hover p, .resource-grid a:focus-visible p, .resource-grid a:active p { color: rgba(255,255,255,.84); }
.resource-grid strong { margin-top: auto; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.patient-resource-grid > a:last-child:nth-child(odd) { grid-column: span 2; min-height: 240px; }
.mini-process { display: grid; gap: 1rem; padding: 0; margin: 0; list-style: none; }
.mini-process li { padding: 1rem 0; border-top: 1px solid var(--white-line); }
.finance-detail { background: var(--paper); }
.financing-providers { padding-block: var(--section); background: var(--sage-light); }
.provider-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.provider-grid article { min-height: 290px; display: flex; flex-direction: column; align-items: flex-start; padding: 2rem; background: rgba(255,255,255,.38); border: 1px solid var(--line); }
.provider-grid strong { font: 500 2rem/1 var(--bda-display); }
.provider-grid p { margin-top: 1rem; color: var(--muted); }
.provider-grid a, .provider-grid span { margin-top: auto; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cherry-widget-section { padding-block: clamp(4.5rem, 8vw, 7rem); background: var(--paper); }
.cherry-widget-heading { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.cherry-widget-heading h2 { margin: .8rem 0 1rem; }
.cherry-widget-heading p { max-width: 620px; margin: 0; color: var(--muted); }
.cherry-widget-shell { min-height: 560px; overflow: hidden; padding: clamp(1rem, 2vw, 2rem); background: white; border: 1px solid var(--line); border-radius: .85rem; box-shadow: 0 18px 55px rgba(11,64,82,.09); }
.cherry-widget-shell #all { min-height: 520px; }
.cherry-widget-shell noscript p { margin: 0; padding: 1rem; color: var(--muted); }

/* Blog */
.blog-archive { background: var(--paper); }
.blog-feature { max-width: 1050px; margin-bottom: 5rem; }
.blog-feature .article-card.is-featured { display: grid; grid-template-columns: 1.25fr .75fr; gap: 2rem; align-items: center; }
.blog-feature .article-image { margin: 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem 1.5rem; }
.blog-grid.is-related { grid-template-columns: repeat(3, 1fr); }
.article-hero { padding-block: clamp(3rem, 6vw, 6rem); background: var(--paper); }
.article-title-wrap { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.article-title-wrap h1 { margin: .8rem 0 1.2rem; font-size: clamp(3rem, 4.7vw, 5.2rem); }
.article-title-wrap > div > p { max-width: 720px; font-size: 1.12rem; color: var(--muted); }
.article-title-wrap > img { width: 100%; height: 540px; object-fit: cover; }
.article-byline { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.article-layout { display: grid; grid-template-columns: 250px minmax(0, 760px); justify-content: center; gap: clamp(3rem, 7vw, 8rem); padding-top: clamp(4rem, 8vw, 8rem); padding-bottom: clamp(5rem, 10vw, 10rem); }
.article-layout aside { position: sticky; top: 9rem; align-self: start; display: grid; border-top: 1px solid var(--line); }
.article-layout aside > span { padding: 1rem 0; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-layout aside > a { padding: .8rem 0; border-top: 1px solid var(--line); font-size: .78rem; line-height: 1.4; color: var(--muted); }
.article-layout aside .article-call { margin-top: 1rem; padding: 1rem; color: white; background: var(--green); border: 0; }
.article-prose { font-family: var(--bda-display); font-size: 1.25rem; line-height: 1.75; color: #334e58; }
.article-prose .article-lede { font-size: 1.65rem; line-height: 1.55; color: var(--ink); }
.article-prose section { padding-top: 3rem; }
.article-prose h2 { font-size: clamp(2.3rem, 4vw, 3.8rem); }
.medical-note { margin-top: 4rem; padding: 1.5rem; border-left: 4px solid var(--clay); background: var(--sand); font-family: var(--bda-sans); font-size: .9rem; }
.medical-note p { margin: .5rem 0 0; }

/* Contact, legal, 404 */
.contact-hero { padding-block: clamp(5rem, 10vw, 9rem); color: white; background: var(--green); }
.contact-hero .breadcrumbs, .contact-hero .breadcrumbs li:last-child { color: rgba(255,255,255,.7); }
.contact-hero .eyebrow { color: #d9edf2; }
.contact-hero h1 { max-width: 950px; margin: .8rem 0 1.5rem; color: white; }
.contact-hero > div > p { max-width: 680px; font-size: 1.12rem; color: rgba(255,255,255,.72); }
.contact-hero .button-outline { color: white; }
.contact-hero .button-outline:hover { color: var(--ink); border-color: white; background: white; }
.contact-hero .button-outline:active { color: var(--ink); border-color: var(--sand); background: var(--sand); }
.contact-section { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.contact-details h2 { margin: .8rem 0 2rem; }
.contact-card { padding: 1.2rem 0; border-top: 1px solid var(--line); }
.contact-card > span { display: block; margin-bottom: .35rem; font-size: .64rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; color: var(--clay-dark); }
.contact-card > a { font: 500 1.25rem/1.45 var(--bda-display); }
.contact-card p { margin: .4rem 0 0; font-size: .82rem; color: var(--muted); }
.contact-hours { margin-top: 2rem; }
.contact-hours p { display: flex; justify-content: space-between; gap: 1rem; margin: 0; padding: .65rem 0; border-bottom: 1px solid var(--line); font-size: .78rem; }
.contact-form-card { padding: clamp(1.5rem, 4vw, 3rem); background: var(--ivory); border: 1px solid var(--line); }
.contact-form-card h2 { margin: .8rem 0; }
.contact-form-card > p { color: var(--muted); }
.contact-form-card iframe { display: block; width: 100%; min-height: 900px; border: 0; background: white; overflow: hidden; }
.contact-map-band { padding-block: clamp(4rem, 7vw, 7rem); color: white; background: var(--clay-dark); }
.contact-map-band > div { display: grid; grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr); align-items: stretch; gap: clamp(2rem, 6vw, 6rem); }
.contact-map-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 3rem; }
.contact-map-band .eyebrow { color: #d9edf2; }
.contact-map-band h2 { margin: .8rem 0; color: white; }
.contact-map-band p { margin: 0; color: rgba(255,255,255,.72); }
.contact-map-embed { min-height: 430px; overflow: hidden; border: 1px solid var(--white-line); background: rgba(255,255,255,.08); }
.contact-map-embed iframe { display: block; width: 100%; height: 100%; min-height: 430px; border: 0; }
.legal-hero { padding-block: clamp(5rem, 9vw, 9rem); background: var(--sand); }
.legal-hero h1 { margin: .8rem 0 1rem; }
.legal-hero > div > p { max-width: 650px; font-size: 1.1rem; color: var(--muted); }
.legal-hero small { font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.legal-section { background: var(--paper); }
.legal-grid { display: grid; grid-template-columns: 250px minmax(0, 760px); justify-content: center; gap: clamp(3rem, 8vw, 8rem); }
.legal-grid aside { position: sticky; top: 9rem; align-self: start; display: grid; border-top: 1px solid var(--line); }
.legal-grid aside > * { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: .76rem; }
.legal-copy section { margin-bottom: 4rem; }
.legal-copy h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.legal-copy p { color: var(--muted); }
.legal-review-note { padding: 1.5rem; border-left: 4px solid var(--clay); background: var(--sand); }
.legal-review-note p { margin: .4rem 0 0; }
.not-found-page { min-height: 70vh; display: grid; place-items: center; padding-block: var(--section); color: white; background: var(--green); }
.not-found-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: clamp(3rem, 8vw, 9rem); }
.not-found-page .eyebrow { margin-top: 2rem; color: #d9edf2; }
.not-found-page h1 { max-width: 760px; margin: .8rem 0 1.2rem; color: white; }
.not-found-page p { max-width: 660px; color: rgba(255,255,255,.72); }
.not-found-page .button-outline { color: white; }
.not-found-page .button-outline:hover { color: var(--ink); border-color: white; background: white; }
.not-found-page .button-outline:active { color: var(--ink); border-color: var(--sand); background: var(--sand); }
.not-found-grid nav { display: grid; border-top: 1px solid var(--white-line); }
.not-found-grid nav a { display: flex; justify-content: space-between; padding: 1.2rem 0; border-bottom: 1px solid var(--white-line); font: 500 1.2rem/1 var(--bda-display); }

/* Footer */
.site-footer { padding-top: clamp(4rem, 8vw, 8rem); color: rgba(255,255,255,.72); background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1.35fr .75fr .75fr 1fr; gap: clamp(2rem, 5vw, 5rem); padding-bottom: 4rem; }
.brand-light .brand-logo { width: min(100%, 18rem); filter: brightness(0) invert(1); }
.footer-brand > p { max-width: 340px; margin: 1.5rem 0; }
.footer-links, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: .7rem; }
.footer-links h2, .footer-contact h2 { margin-bottom: 1rem; font: 500 1.35rem/1 var(--bda-display); color: white; }
.footer-links a, .footer-contact > a { font-size: .78rem; }
.footer-links a:hover, .footer-contact a:hover, .footer-links a:focus-visible, .footer-contact a:focus-visible { color: white; text-decoration: underline; text-underline-offset: .2rem; }
.hours-mini { width: 100%; margin-top: 1rem; }
.hours-mini p { display: flex; justify-content: space-between; gap: 1rem; margin: 0; padding: .4rem 0; border-bottom: 1px solid var(--white-line); font-size: .66rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-block: 1.6rem; border-top: 1px solid var(--white-line); font-size: .66rem; }
.footer-bottom p { margin: 0; }
.footer-meta-links { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.footer-meta-links .social-link { width: 1.9rem; height: 1.9rem; display: grid; flex: 0 0 auto; place-items: center; margin-block: -.55rem; color: white; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.footer-meta-links .social-link:hover { color: var(--ink); border-color: var(--paper); background: var(--paper); }
.footer-meta-links .social-link:active { color: var(--paper); border-color: var(--paper); background: var(--green); }
.social-icon-facebook { font: 700 1.08rem/1 Arial, Helvetica, sans-serif; transform: translateY(.05rem); }
.social-icon-instagram { position: relative; width: .88rem; height: .88rem; border: 1.4px solid currentColor; border-radius: .28rem; }
.social-icon-instagram::before { content: ""; position: absolute; width: .32rem; height: .32rem; top: 50%; left: 50%; border: 1.2px solid currentColor; border-radius: 50%; transform: translate(-50%, -50%); }
.social-icon-instagram::after { content: ""; position: absolute; width: .12rem; height: .12rem; top: .12rem; right: .12rem; border-radius: 50%; background: currentColor; }
.mobile-action-bar { display: none; }

@media (max-width: 1180px) {
  .desktop-nav, .phone-action { display: none; }
  .menu-toggle { display: grid; }
  .header-actions { margin-left: auto; }
  .mobile-menu { position: fixed; z-index: 300; inset: 0 0 0 auto; width: min(92vw, 520px); display: flex; flex-direction: column; padding: 1.4rem; color: white; background: var(--green); visibility: hidden; pointer-events: none; transform: translateX(105%); transition: transform .35s cubic-bezier(.2,.7,.2,1), visibility 0s linear .35s; overflow-y: auto; }
  .mobile-menu.is-open { visibility: visible; pointer-events: auto; transform: translateX(0); transition-delay: 0s; }
  .menu-scrim { position: fixed; z-index: 290; inset: 0; display: block; border: 0; background: rgba(6,45,58,.66); backdrop-filter: blur(4px); }
  .mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1.2rem; border-bottom: 1px solid var(--white-line); }
  .brand.compact .brand-logo { width: 10.5rem; filter: brightness(0) invert(1); }
  .mobile-menu-head > button { width: 3rem; height: 3rem; color: white; border: 1px solid var(--white-line); border-radius: 50%; background: transparent; font-size: 2rem; line-height: 1; }
  .mobile-menu-head > button:active { color: white; border-color: white; background: rgba(255,255,255,.18); }
  .mobile-menu nav { display: grid; margin: 1rem 0; }
  .mobile-menu nav > a, .mobile-menu nav > a:visited, .mobile-submenu-trigger { width: 100%; min-height: 3.8rem; display: flex; align-items: center; justify-content: space-between; padding-inline: .55rem; color: white; border: 0; border-bottom: 1px solid var(--white-line); background: transparent; font: 500 1.45rem/1 var(--bda-display); text-align: left; }
  .mobile-menu nav > a:active, .mobile-submenu-trigger:active, .mobile-submenu-trigger[aria-expanded="true"] { color: white; background: rgba(255,255,255,.14); }
  .mobile-submenu-icon { width: 2.5rem; min-width: 2.5rem; height: 2.5rem; display: grid; place-items: center; margin-left: 1rem; border: 1px solid var(--white-line); border-radius: 50%; font: 400 1.25rem/1 var(--bda-sans); }
  .mobile-service-links, .mobile-resource-links { display: grid; grid-template-columns: 1fr 1fr; padding: .8rem 0; border-bottom: 1px solid var(--white-line); }
  .mobile-service-links a, .mobile-service-links a:visited, .mobile-resource-links a, .mobile-resource-links a:visited { min-height: 2.75rem; display: flex; align-items: center; padding: .65rem .55rem; border-radius: .3rem; font-size: .78rem; color: rgba(255,255,255,.9); background: transparent; }
  .mobile-service-links a:active, .mobile-resource-links a:active, .mobile-service-links a[aria-current="page"], .mobile-resource-links a[aria-current="page"] { color: white; background: rgba(255,255,255,.16); }
  .mobile-menu-footer { margin-top: auto; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; padding-top: 1rem; }
  .mobile-menu-footer p { grid-column: span 2; margin: .7rem 0 0; font-size: .75rem; color: rgba(255,255,255,.67); }
  .mobile-menu-footer .button:hover { transform: none; }
  .mobile-menu-footer .button-light:hover { color: var(--ink); background: var(--paper); }
  .mobile-menu-footer .button-light:active { color: var(--ink); background: var(--sand); }
  .mobile-menu-footer .button-accent:hover { color: white; background: var(--clay-action); }
  .mobile-menu-footer .button-accent:active { color: white; background: var(--clay-dark); }
  .home-hero { min-height: 760px; }
  .home-hero-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-photo { left: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-image { aspect-ratio: 1.2; }
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 860px) {
  :root { --section: 5.5rem; }
  .utility-inner { justify-content: center; }
  .utility-inner > p, .utility-inner div span { display: none; }
  .header-actions .button { display: none; }
  .header-inner { min-height: 5.35rem; }
  .header-inner .brand-logo { width: 8.75rem; }
  .home-hero { min-height: auto; }
  .home-hero-grid { grid-template-columns: 1fr; padding-top: 4rem; }
  .home-hero-copy { max-width: none; }
  .home-hero-copy h1 { font-size: clamp(3.35rem, 11vw, 5.5rem); }
  .home-hero-visual { height: 620px; }
  .hero-photo { inset: 0 0 0 3%; }
  .hero-scroll { display: none; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 2rem; }
  .manifesto-grid .text-link { justify-self: start; }
  .office-manifesto-grid { grid-template-columns: 1fr; gap: 2rem; }
  .office-manifesto-aside { grid-template-columns: auto 1fr; align-items: center; gap: 1.25rem; padding-top: 0; }
  .office-manifesto-aside > span:last-child { width: 100%; }
  .doctors-layout, .experience-section, .financing-grid, .location-grid, .conversion-grid, .interior-hero-grid, .service-options-grid, .benefits-grid, .faq-grid, .doctor-hero-grid, .doctor-story-grid, .credentials-grid, .two-column-copy, .article-title-wrap, .contact-grid, .not-found-grid { grid-template-columns: 1fr; }
  .doctor-cards { grid-template-columns: 1fr 1fr; }
  .doctor-card-primary { transform: none; }
  .experience-image { min-height: 480px; }
  .experience-copy { padding: 4.5rem var(--gutter); }
  .journey-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .journey-grid li:nth-child(2), .process-grid li:nth-child(2) { border-right: 0; }
  .journey-grid li:nth-child(-n+2), .process-grid li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .review-grid { grid-template-columns: .6fr 1.4fr; }
  .review-orbit { display: none; }
  .home-articles, .blog-grid { grid-template-columns: 1fr 1fr; }
  .home-articles .article-card:first-child { grid-column: span 2; }
  .home-articles .article-card.is-featured { grid-template-columns: 1fr; }
  .home-articles .article-card.is-featured .article-image { min-height: 0; }
  .interior-hero-grid { min-height: auto; }
  .interior-hero-image { order: -1; }
  .interior-hero-image img { height: 460px; }
  .service-sticky-copy { position: static; }
  .office-photo-break { grid-template-columns: 1fr; }
  .office-photo-break > img { height: 480px; }
  .values-grid { grid-template-columns: 1fr; }
  .doctor-cards.horizontal .doctor-card { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .patient-resource-grid > a:last-child:nth-child(odd) { grid-column: span 1; min-height: 300px; }
  .provider-grid { grid-template-columns: 1fr; }
  .blog-feature .article-card.is-featured { grid-template-columns: 1fr; }
  .article-layout, .legal-grid { grid-template-columns: 1fr; }
  .article-layout aside, .legal-grid aside { position: static; }
  .article-layout aside { display: none; }
  .contact-map-band > div { grid-template-columns: 1fr; }
  .contact-map-embed, .contact-map-embed iframe { min-height: 380px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-contact { grid-column: span 2; }
}

@media (max-width: 580px) {
  body { padding-bottom: calc(4.3rem + env(safe-area-inset-bottom)); }
  .header-inner .brand-logo { width: 8.2rem; }
  .home-hero-grid { padding-top: 3rem; }
  .home-hero-copy h1 { font-size: clamp(3rem, 14vw, 4.35rem); }
  .hero-trust { gap: .5rem; }
  .hero-trust strong { font-size: 1.3rem; }
  .hero-trust span { font-size: .52rem; }
  .home-hero-visual { height: 470px; }
  .hero-photo { inset: 0; border-radius: 50% 50% .8rem .8rem / 35% 35% .8rem .8rem; }
  .hero-card { left: .8rem; bottom: .8rem; width: min(240px, 70%); padding: 1rem; }
  .vertical-note { display: none; }
  .manifesto-grid > p { font-size: 2rem; }
  .office-manifesto-copy > p { font-size: 2rem; }
  .office-manifesto-action { align-items: flex-start; flex-direction: column; gap: 1.25rem; }
  .cherry-widget-shell { min-height: 480px; padding: .6rem; border-radius: .55rem; }
  .cherry-widget-shell #all { min-height: 440px; }
  .services-grid, .services-grid.is-related, .doctor-cards, .journey-grid, .process-grid, .home-articles, .blog-grid, .blog-grid.is-related, .benefits-grid ul, .finance-marks, .interest-grid { grid-template-columns: 1fr; }
  .service-card-image { aspect-ratio: 1.28; }
  .doctor-cards { gap: 1rem; }
  .doctor-card-primary { transform: none; }
  .journey-grid li, .process-grid li { min-height: 210px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .journey-grid h3, .process-grid h3 { margin-top: 1rem; }
  .review-grid { grid-template-columns: 1fr; text-align: center; }
  .review-copy .text-link { margin-inline: auto; }
  .finance-marks div:first-child { grid-column: span 1; }
  .section-header-row { display: block; }
  .section-header-row .text-link { margin-bottom: 2rem; }
  .home-articles .article-card:first-child { grid-column: span 1; }
  .interior-hero-image img { height: 340px; }
  .interior-hero-copy h1 { font-size: clamp(2.75rem, 12vw, 4rem); }
  .doctor-portrait img { height: 500px; }
  .doctor-bio-intro h1 { font-size: 3.35rem; }
  .office-photo-break > img { height: 380px; }
  .doctor-cards.horizontal { grid-template-columns: 1fr; }
  .article-title-wrap > img { height: 360px; }
  .article-title-wrap h1 { font-size: 2.85rem; }
  .article-prose { font-size: 1.1rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand, .footer-contact { grid-column: span 1; }
  .footer-bottom { flex-direction: column; }
  .mobile-action-bar { position: fixed; z-index: 180; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; padding-bottom: env(safe-area-inset-bottom); color: white; background: var(--ink); box-shadow: 0 -8px 30px rgba(11,64,82,.2); }
  .mobile-action-bar a { min-height: 4.3rem; display: grid; place-items: center; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-action-bar a:hover { color: white; background: var(--ink); }
  .mobile-action-bar a:active { color: var(--ink); background: white; }
  .mobile-action-bar a + a { color: white; background: var(--clay-action); }
  .mobile-action-bar a + a:hover { color: white; background: var(--clay-action); }
  .mobile-action-bar a + a:active { color: white; background: var(--clay-dark); }
  .mobile-service-links, .mobile-resource-links { grid-template-columns: 1fr; }
  .mobile-menu-footer { grid-template-columns: 1fr; }
  .mobile-menu-footer p { grid-column: span 1; }
}

@media (max-width: 1180px) and (hover: hover) and (pointer: fine) {
  .menu-toggle:hover { color: white; border-color: var(--green); background: var(--green); }
  .menu-toggle:hover span { background: white; }
  .mobile-menu-head > button:hover { color: white; border-color: white; background: rgba(255,255,255,.14); }
  .mobile-menu nav > a:hover, .mobile-submenu-trigger:hover, .mobile-service-links a:hover, .mobile-resource-links a:hover { color: white; background: rgba(255,255,255,.12); }
  .mobile-menu-footer .button-light:hover { color: var(--ink); background: var(--sand); }
  .mobile-menu-footer .button-accent:hover { color: white; background: var(--clay-dark); }
}

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

@media (forced-colors: active) {
  .button, .menu-toggle, .mobile-menu-head > button, .mobile-submenu-trigger, .mobile-submenu-icon, .social-link { border: 2px solid ButtonText; }
  .button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid Highlight; box-shadow: none; }
  .nav-arrow, .menu-toggle span { forced-color-adjust: auto; }
}


/* WordPress and Elementor canvas integration */
body.elementor-page { margin: 0; }
.elementor-page .elementor { width: 100%; max-width: none; }
.elementor-page .elementor-element { --widgets-spacing: 0px 0px; --kit-widget-spacing: 0px; }
.elementor-page .elementor > .elementor-element.e-con,
.elementor-page .elementor > .elementor-element.e-con > .e-con-inner {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
  gap: 0;
}
.elementor-page .elementor-widget:not(:last-child) { margin-block-end: 0; }
.elementor-page .elementor-widget-html, .elementor-page .elementor-widget-html > .elementor-widget-container { width: 100%; }
.bda-site-root { min-width: 0; overflow: clip; }
.mega-menu[hidden], .mobile-service-links[hidden], .mobile-resource-links[hidden] { display: none !important; }
/* Keep Elementor's global link and button states from overriding the audited site palette. */
body.elementor-page .bda-site-root :focus-visible {
  outline: 3px solid #fff !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 6px #0b4052 !important;
}
body.elementor-page .bda-site-root a.button.button-accent,
body.elementor-page .bda-site-root a.button.button-accent:visited { color: #fff !important; background: #176b87 !important; }
body.elementor-page .bda-site-root a.button.button-accent:hover { color: #fff !important; background: #0e5a73 !important; }
body.elementor-page .bda-site-root a.button.button-accent:active { color: #fff !important; background: #0b4052 !important; }
body.elementor-page .bda-site-root a.button.button-dark,
body.elementor-page .bda-site-root a.button.button-dark:visited { color: #fff !important; background: #176b87 !important; }
body.elementor-page .bda-site-root a.button.button-dark:hover { color: #fff !important; background: #0b4052 !important; }
body.elementor-page .bda-site-root a.button.button-dark:active { color: #fff !important; background: #062d3a !important; }
body.elementor-page .bda-site-root a.button.button-light,
body.elementor-page .bda-site-root a.button.button-light:visited { color: #0b4052 !important; background: #fff !important; }
body.elementor-page .bda-site-root a.button.button-light:hover { color: #0b4052 !important; background: #e7eef0 !important; }
body.elementor-page .bda-site-root a.button.button-light:active { color: #0b4052 !important; background: #c8dfe5 !important; }
body.elementor-page .bda-site-root a.button.button-outline,
body.elementor-page .bda-site-root a.button.button-outline:visited { color: #176b87 !important; border-color: #176b87 !important; background: transparent !important; }
body.elementor-page .bda-site-root a.button.button-outline:hover { color: #fff !important; border-color: #176b87 !important; background: #176b87 !important; }
body.elementor-page .bda-site-root a.button.button-outline:active { color: #fff !important; border-color: #0b4052 !important; background: #0b4052 !important; }
body.elementor-page .bda-site-root .location-section a.button.button-outline,
body.elementor-page .bda-site-root .doctor-bio-intro a.button.button-outline,
body.elementor-page .bda-site-root .contact-hero a.button.button-outline,
body.elementor-page .bda-site-root .not-found-page a.button.button-outline { color: #fff !important; border-color: #fff !important; background: transparent !important; }
body.elementor-page .bda-site-root .location-section a.button.button-outline:hover,
body.elementor-page .bda-site-root .doctor-bio-intro a.button.button-outline:hover,
body.elementor-page .bda-site-root .contact-hero a.button.button-outline:hover,
body.elementor-page .bda-site-root .not-found-page a.button.button-outline:hover { color: #0b4052 !important; border-color: #fff !important; background: #fff !important; }
body.elementor-page .bda-site-root a.button.button-outline-dark,
body.elementor-page .bda-site-root a.button.button-outline-dark:visited { color: #0b4052 !important; border-color: #0b4052 !important; background: transparent !important; }
body.elementor-page .bda-site-root a.button.button-outline-dark:hover { color: #fff !important; background: #0b4052 !important; }
body.elementor-page .bda-site-root .desktop-nav button { color: inherit !important; background: transparent !important; }
body.elementor-page .bda-site-root .desktop-nav > a:hover,
body.elementor-page .bda-site-root .desktop-nav > div > button:hover,
body.elementor-page .bda-site-root .desktop-nav button[aria-expanded="true"],
body.elementor-page .bda-site-root .desktop-nav button[data-current="true"] { color: #0e5a73 !important; }
body.elementor-page .bda-site-root .nav-dropdown > div a:hover,
body.elementor-page .bda-site-root .nav-dropdown > div a:focus-visible,
body.elementor-page .bda-site-root .mega-links a:hover,
body.elementor-page .bda-site-root .mega-links a:focus-visible { color: #0b4052 !important; background: #e0eef2 !important; }
body.elementor-page .bda-site-root .mobile-menu-head > button,
body.elementor-page .bda-site-root .mobile-submenu-trigger { color: #fff !important; background: transparent !important; }
body.elementor-page .bda-site-root button.menu-toggle { color: #0b4052 !important; border-color: rgba(11,64,82,.18) !important; background: transparent !important; }
body.elementor-page .bda-site-root button.menu-toggle:hover { color: #fff !important; border-color: #176b87 !important; background: #176b87 !important; }
body.elementor-page .bda-site-root button.menu-toggle:active { color: #fff !important; border-color: #0b4052 !important; background: #0b4052 !important; }
body.elementor-page .bda-site-root button.menu-toggle:hover span,
body.elementor-page .bda-site-root button.menu-toggle:active span { background: #fff !important; }
body.elementor-page .bda-site-root .mobile-menu { color: #fff !important; background: #176b87 !important; }
body.elementor-page .bda-site-root .mobile-menu nav > a,
body.elementor-page .bda-site-root .mobile-menu nav > a:visited { color: #fff !important; background: transparent !important; }
body.elementor-page .bda-site-root .mobile-service-links a,
body.elementor-page .bda-site-root .mobile-service-links a:visited,
body.elementor-page .bda-site-root .mobile-resource-links a,
body.elementor-page .bda-site-root .mobile-resource-links a:visited { color: rgba(255,255,255,.9) !important; background: transparent !important; }
body.elementor-page .bda-site-root .mobile-menu-head > button:hover,
body.elementor-page .bda-site-root .mobile-menu-head > button:active,
body.elementor-page .bda-site-root .mobile-submenu-trigger:hover,
body.elementor-page .bda-site-root .mobile-submenu-trigger:active,
body.elementor-page .bda-site-root .mobile-submenu-trigger[aria-expanded="true"] { color: #fff !important; border-color: rgba(255,255,255,.42) !important; background: rgba(255,255,255,.14) !important; }
body.elementor-page .bda-site-root .mobile-menu nav > a:hover,
body.elementor-page .bda-site-root .mobile-menu nav > a:active { color: #fff !important; background: rgba(255,255,255,.12) !important; }
body.elementor-page .bda-site-root .mobile-service-links a:hover,
body.elementor-page .bda-site-root .mobile-service-links a:active,
body.elementor-page .bda-site-root .mobile-resource-links a:hover,
body.elementor-page .bda-site-root .mobile-resource-links a:active,
body.elementor-page .bda-site-root .mobile-service-links a[aria-current="page"],
body.elementor-page .bda-site-root .mobile-resource-links a[aria-current="page"] { color: #fff !important; background: rgba(255,255,255,.16) !important; }
body.elementor-page .bda-site-root .resource-grid > a:hover,
body.elementor-page .bda-site-root .resource-grid > a:focus-visible,
body.elementor-page .bda-site-root .interest-grid a:hover,
body.elementor-page .bda-site-root .interest-grid a:focus-visible { color: #fff !important; background: #176b87 !important; }
body.elementor-page .bda-site-root .resource-grid > a:hover h2,
body.elementor-page .bda-site-root .resource-grid > a:focus-visible h2 { color: #fff !important; }
body.elementor-page .bda-site-root .resource-grid > a:hover p,
body.elementor-page .bda-site-root .resource-grid > a:focus-visible p { color: rgba(255,255,255,.84) !important; }
body.elementor-page .bda-site-root .text-link:hover,
body.elementor-page .bda-site-root .text-link:focus-visible { color: inherit !important; }
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
