/* jsurology.com, built from design 1 ("The first question") that Dr. Su chose on 2026-09-19.
   Marine-layer palette: fog, kelp and one poppy accent. Bricolage Grotesque for display,
   Atkinson Hyperlegible Next for reading (built for low-vision readers; many of her patients are over 55). */
:root {
  --fog: #f1f5f4;
  --paper: #ffffff;
  --ink: #0f2a30;
  --slate: #44605f;
  --kelp: #1c5a55;
  --kelp-deep: #12413e;
  --glass: #d6e7e3;
  --line: #c3d6d2;
  --poppy: #f2a33a;
  --poppy-soft: #fdf1dc;
  --display: "Bricolage Grotesque", "Atkinson Hyperlegible Next", system-ui, sans-serif;
  --body: "Atkinson Hyperlegible Next", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1240px;
  --gutter: clamp(16px, 3.4vw, 40px);
  --r-lg: 26px;
  --r-md: 16px;
}
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }
body { margin: 0; background: var(--fog); color: var(--ink); font: 400 1.125rem/1.6 var(--body); }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--kelp); text-underline-offset: 3px; }
a:hover { color: var(--kelp-deep); }
:focus-visible { outline: 3px solid var(--poppy); outline-offset: 3px; border-radius: 6px; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; z-index: 100; }
.skip:focus { left: 12px; color: #fff; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.display { font-family: var(--display); font-weight: 700; letter-spacing: -0.025em; line-height: 1.02; font-variation-settings: "opsz" 96; }
.h2 { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 1.35rem + 2.4vw, 3.1rem); letter-spacing: -0.022em; line-height: 1.06; max-width: 22ch; text-wrap: balance; }
.lede { font-size: 1.22rem; color: var(--slate); max-width: 56ch; }
.eyebrow { font: 700 .95rem/1.3 var(--body); color: var(--kelp); letter-spacing: .01em; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 24px; border-radius: 999px; border: 2px solid transparent; font: 700 1.05rem/1.1 var(--body); text-decoration: none; cursor: pointer; text-align: center; }
.btn-primary { background: var(--poppy); color: var(--ink); }
.btn-primary:hover { background: #f6b458; color: var(--ink); }
.btn-quiet { background: transparent; color: var(--kelp-deep); border-color: var(--kelp); }
.btn-quiet:hover { background: var(--glass); color: var(--kelp-deep); }
.btn-light { background: #fff; color: var(--kelp-deep); }
.btn-light:hover { background: var(--glass); color: var(--kelp-deep); }
.btn[disabled] { opacity: .6; cursor: progress; }
.actions { display: flex; flex-wrap: wrap; gap: 12px 16px; align-items: center; }

/* Header */
.site-head { background: rgba(241, 245, 244, .97); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; backdrop-filter: saturate(1.2) blur(6px); }
.site-head .wrap { display: flex; align-items: center; gap: 22px; min-height: 74px; }
.brand { display: grid; text-decoration: none; color: var(--ink); line-height: 1.15; margin-right: auto; white-space: nowrap; }
.brand b { font: 700 1.42rem/1.1 var(--display); letter-spacing: -0.02em; }
.brand span { font-size: .92rem; color: var(--slate); }
.brand:hover { color: var(--ink); }
.nav { display: flex; align-items: center; gap: 20px; }
.nav > a { white-space: nowrap; }
.nav > a:not(.btn) { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 1rem; }
.nav > a:not(.btn):hover, .nav > a[aria-current="page"] { color: var(--kelp); text-decoration: underline; text-decoration-thickness: 2px; }
.menu-btn { display: none; align-items: center; gap: 8px; min-height: 46px; padding: 0 16px; border-radius: 999px; border: 2px solid var(--kelp); background: transparent; color: var(--kelp-deep); font: 700 1rem/1 var(--body); cursor: pointer; }
.menu-btn svg { width: 18px; height: 18px; }
.mobile-nav { border-top: 1px solid var(--line); background: var(--paper); max-height: calc(100vh - 74px); max-height: calc(100dvh - 74px); overflow-y: auto; overscroll-behavior: contain; }
.mobile-nav[hidden] { display: none; }
.mobile-nav .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; padding: 18px 0 24px; }
.mobile-nav h2 { font: 700 .9rem/1.3 var(--body); color: var(--slate); margin: 10px 0 4px; grid-column: 1 / -1; }
.mobile-nav a { display: block; padding: 10px 0; font-weight: 600; text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--fog); }
.mobile-nav .btn { grid-column: 1 / -1; margin-top: 14px; border-bottom: 0; }

/* Home hero: she stands beside the question. */
.hero { padding: clamp(28px, 4vw, 52px) 0 clamp(44px, 6vw, 84px); }
.hero-grid { display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: clamp(24px, 3.4vw, 52px); align-items: start; }
.doctor { position: sticky; top: 100px; }
.doctor-photo { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 2 / 3; background: var(--glass); }
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
.doctor-name { margin-top: 14px; font: 700 1.3rem/1.2 var(--display); letter-spacing: -0.015em; }
.doctor-role { color: var(--slate); font-size: 1rem; line-height: 1.45; margin-top: 4px; }
.doctor-cta { margin-top: 16px; }
.hero h1 { font: 600 1.06rem/1.4 var(--body); color: var(--kelp-deep); }
.hero .question { font-size: clamp(2.7rem, 1.4rem + 4.6vw, 5.1rem); margin-top: 10px; }
.hero .lede { margin-top: 16px; }

.reasons { margin-top: clamp(22px, 2.6vw, 34px); display: grid; grid-template-columns: minmax(300px, 400px) minmax(0, 1fr); column-gap: clamp(18px, 2.4vw, 34px); grid-auto-rows: min-content; }
.reason { grid-column: 1; display: flex; align-items: center; gap: 14px; width: 100%; min-height: 54px; padding: 9px 16px 9px 12px; margin: 0; text-align: left; border: 0; border-top: 1px solid var(--line); background: transparent; color: var(--ink); font: 600 1.1rem/1.3 var(--body); cursor: pointer; border-radius: 0; }
.reason:first-of-type { border-top-color: transparent; }
.reason:hover { background: rgba(214, 231, 227, .6); }
.reason .dot { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--kelp); background: var(--paper); display: grid; place-items: center; }
.reason[aria-expanded="true"] { background: var(--paper); border-radius: var(--r-md); border-top-color: transparent; box-shadow: 0 0 0 2px var(--kelp); position: relative; z-index: 1; }
.reason[aria-expanded="true"] + .answer + .reason { border-top-color: transparent; }
.reason[aria-expanded="true"] .dot { background: var(--poppy); border-color: var(--ink); }
.reason[aria-expanded="true"] .dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ink); }
.answer { grid-column: 2; grid-row: 1 / span 9; background: var(--paper); border-radius: var(--r-lg); padding: clamp(22px, 2.4vw, 36px); align-self: start; border-top: 6px solid var(--poppy); }
.answer[hidden] { display: none; }
.answer h2 { font: 700 clamp(1.5rem, 1.2rem + 1vw, 2rem)/1.14 var(--display); letter-spacing: -0.02em; }
.answer h3 { font: 700 1rem/1.3 var(--body); color: var(--kelp-deep); margin-top: 20px; }
.answer p { margin-top: 10px; max-width: 58ch; }
.answer h3 + p { margin-top: 4px; }
.answer-actions { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.answer-actions a:not(.btn) { font-weight: 700; }

/* Sections shared by the homepage and inner pages */
.band { padding: clamp(56px, 7vw, 104px) 0; }
.band-paper { background: var(--paper); }
.band-glass { background: var(--glass); }
.band-deep { background: var(--kelp-deep); color: #f3faf8; }
.band-head { display: grid; gap: 14px; margin-bottom: clamp(26px, 3vw, 40px); }

.visit-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(28px, 5vw, 76px); align-items: start; }
.visit-grid > .photo { margin-top: 8px; }
.photo { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3 / 2; background: var(--glass); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.steps { margin-top: 30px; counter-reset: step; display: grid; gap: 4px; }
.steps > li { counter-increment: step; display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.steps > li::before { content: counter(step); width: 40px; height: 40px; border-radius: 50%; background: var(--glass); color: var(--kelp-deep); display: grid; place-items: center; font: 700 1.15rem/1 var(--display); }
.steps h3 { font: 700 1.22rem/1.25 var(--display); letter-spacing: -0.01em; }
.prose .steps { margin-top: 20px; }
.prose .steps h3 { margin-top: 0; }
.prose .steps p { margin-top: 4px; }
.steps p { color: var(--slate); margin-top: 4px; max-width: 52ch; }

.care-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.care-card { background: var(--paper); border-radius: var(--r-lg); padding: 26px 26px 22px; display: grid; gap: 10px; align-content: start; border: 1px solid var(--line); }
.band-paper .care-card { background: var(--fog); }
.care-card h3 { font: 700 1.35rem/1.2 var(--display); letter-spacing: -0.015em; }
.care-card p { color: var(--slate); }
.care-card ul { display: grid; gap: 2px; margin-top: 4px; }
.care-card li a { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-top: 1px solid var(--line); font-weight: 600; text-decoration: none; color: var(--ink); }
.care-card li a::after { content: "\2192"; color: var(--kelp); }
.care-card li a:hover { color: var(--kelp); }

.about-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 76px); align-items: start; }
.about-copy p { margin-top: 18px; max-width: 60ch; }
.about-copy .btn { margin-top: 28px; }
.path { margin-top: 26px; border-left: 3px solid var(--kelp); padding-left: 22px; display: grid; gap: 16px; }
.path dt { font-weight: 700; line-height: 1.3; }
.path dd { color: var(--slate); font-size: 1.02rem; line-height: 1.45; }

.review blockquote { max-width: 30ch; font: 500 clamp(1.7rem, 1.1rem + 2.3vw, 3rem)/1.16 var(--display); letter-spacing: -0.02em; }
.review-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 72px); align-items: end; }
.review p { color: #cfe5e0; max-width: 46ch; }
.review cite { display: block; margin-top: 12px; font-style: normal; font-weight: 700; color: var(--poppy); }
.review a { color: #fff; }

/* Offices */
.office-list { border-top: 2px solid var(--ink); }
.office { display: grid; grid-template-columns: 1.1fr .9fr 1.3fr 214px; gap: 8px 28px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); }
.office h3 { font: 700 1.4rem/1.2 var(--display); letter-spacing: -0.015em; }
.office h3 a { color: inherit; text-decoration: none; }
.office h3 a:hover { color: var(--kelp); text-decoration: underline; }
.office .with { display: block; font: 400 .98rem/1.4 var(--body); color: var(--slate); letter-spacing: 0; margin-top: 2px; }
.office .days { font-weight: 600; }
.office address { font-style: normal; color: var(--slate); line-height: 1.45; }
.office address a { font-size: .95rem; font-weight: 600; }
.office .tel { justify-self: end; text-align: center; font: 700 1.3rem/1 var(--display); color: var(--ink); text-decoration: none; white-space: nowrap; padding: 12px 18px; border-radius: 999px; background: var(--glass); }
.band-glass .office .tel { background: var(--paper); }
.office .tel:hover { background: var(--poppy); color: var(--ink); }
.coverage { margin-top: 34px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 4vw, 56px); }
.coverage h3 { font: 700 1.15rem/1.3 var(--display); }
.coverage p { color: var(--slate); margin-top: 6px; max-width: 54ch; }

/* Questions */
.faq-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.4fr); gap: clamp(24px, 5vw, 76px); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 18px; padding: 20px 4px; font: 700 1.18rem/1.3 var(--body); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font: 500 1.6rem/1 var(--display); color: var(--kelp); flex: none; }
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details > :not(summary) { padding: 0 4px; color: var(--slate); max-width: 64ch; }
.faq-list details > :last-child { padding-bottom: 22px; }
.faq-list details > p + p, .faq-list details > p + ul, .faq-list details > ul + p { margin-top: 10px; }
.faq-list details ul { list-style: disc; padding-left: 26px; }

/* Request / contact */
.request-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 76px); align-items: start; }
.request .lede { margin-top: 16px; color: var(--ink); }
.contact-lines { margin-top: 26px; display: grid; gap: 10px; }
.contact-lines a { font-weight: 700; }
.form { background: var(--paper); border-radius: var(--r-lg); padding: clamp(22px, 2.6vw, 38px); display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form h3 { grid-column: 1 / -1; font: 700 1.35rem/1.2 var(--display); }
.form label { display: grid; gap: 6px; font-weight: 600; font-size: 1rem; align-content: start; }
.form label small { font-weight: 400; color: var(--slate); font-size: .95rem; }
.form .full { grid-column: 1 / -1; }
.form input, .form select, .form textarea { font: 400 1.08rem/1.3 var(--body); color: var(--ink); background: var(--fog); border: 2px solid var(--line); border-radius: 12px; padding: 13px 14px; width: 100%; }
.form textarea { resize: vertical; min-height: 120px; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--kelp); background: var(--paper); }
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-fine { grid-column: 1 / -1; font-size: .95rem; color: var(--slate); }
.form-status { grid-column: 1 / -1; border-radius: 12px; padding: 14px 16px; font-size: 1rem; background: var(--fog); }
.form-status:empty { display: none; }
.form-status[data-tone="success"] { background: #e2f1ea; color: #0f4632; }
.form-status[data-tone="error"] { background: #fbe4dc; color: #7a2413; }
.form-status[data-tone="info"] { background: var(--poppy-soft); color: var(--ink); }
.form-choice { grid-column: 1 / -1; border: 0; padding: 0; margin: 0; display: grid; gap: 8px; }
.form-choice legend { font-weight: 600; font-size: 1rem; margin-bottom: 8px; }
.form-choice .choices { display: flex; flex-wrap: wrap; gap: 8px; }
.form-choice label { display: inline-flex; align-items: center; gap: 8px; min-height: 46px; padding: 0 16px; border: 2px solid var(--line); border-radius: 999px; cursor: pointer; font-weight: 600; background: var(--fog); }
.form-choice input { width: auto; accent-color: var(--kelp); margin: 0; }
.form-choice label:has(input:checked) { border-color: var(--kelp); background: var(--paper); box-shadow: 0 0 0 1px var(--kelp); }

/* Booking */
.booking-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); grid-template-areas: "intro frame" "call frame"; gap: 26px clamp(24px, 4vw, 60px); align-items: start; grid-template-rows: auto 1fr; }
.booking-intro { grid-area: intro; }
.booking-call { grid-area: call; }
.booking-frame { grid-area: frame; }
.booking-frame { background: var(--paper); border-radius: var(--r-lg); overflow: hidden; min-height: 560px; border: 1px solid var(--line); }
.booking-frame iframe { display: block; width: 100%; height: 760px; border: 0; }
.booking-frame .pending { padding: clamp(22px, 2.6vw, 38px); display: grid; gap: 14px; }
.booking-frame .pending h3 { font: 700 1.5rem/1.2 var(--display); }
.booking-frame .pending p { color: var(--slate); }
.booking-frame .pending .form { padding: 8px 0 0; }
.visit-choice { border: 0; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.visit-choice legend { font-weight: 700; margin-bottom: 10px; }
.visit-choice label { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: var(--r-md); border: 2px solid var(--line); background: var(--paper); cursor: pointer; }
.visit-choice label:has(input:checked) { border-color: var(--kelp); box-shadow: 0 0 0 1px var(--kelp); }
.visit-choice input { margin-top: 5px; accent-color: var(--kelp); }
.visit-choice strong { display: block; }
.visit-choice small { color: var(--slate); font-size: .98rem; }

/* Inner pages */
.page-hero { padding: clamp(30px, 4vw, 56px) 0 clamp(34px, 4.4vw, 60px); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(24px, 5vw, 70px); align-items: end; }
.page-hero.no-photo .page-hero-grid { grid-template-columns: minmax(0, 1fr); }
.crumbs { display: flex; flex-wrap: wrap; gap: 6px 10px; font-size: .95rem; color: var(--slate); margin-bottom: 18px; }
.crumbs li + li::before { content: "/"; margin-right: 10px; color: var(--line); }
.crumbs a { color: var(--slate); }
.page-hero h1 { font: 700 clamp(2.4rem, 1.4rem + 3.8vw, 4.3rem)/1.04 var(--display); letter-spacing: -0.025em; max-width: 18ch; text-wrap: balance; margin-top: 8px; }
.page-hero .lede { margin-top: 18px; }
.page-hero .actions { margin-top: 26px; }
.page-hero .photo { aspect-ratio: 4 / 3; }
.page-hero .byline { display: flex; align-items: center; gap: 14px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); max-width: 56ch; font-size: 1rem; }
.page-hero .byline img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: 50% 12%; flex: none; }
.page-hero .byline strong { display: block; }
.page-hero .byline span { color: var(--slate); }

.page-body { padding: clamp(40px, 5vw, 76px) 0 clamp(52px, 6vw, 92px); }
.page-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(28px, 5vw, 76px); align-items: start; }
.page-grid.single { grid-template-columns: minmax(0, 1fr); }

.prose { max-width: 72ch; }
.prose > * + * { margin-top: 16px; }
.prose h2 { font: 700 clamp(1.7rem, 1.25rem + 1.5vw, 2.35rem)/1.12 var(--display); letter-spacing: -0.02em; margin-top: 52px; text-wrap: balance; }
.prose > h2:first-child, .prose > .toc + h2 { margin-top: 0; }
.prose h3 { font: 700 1.3rem/1.25 var(--display); letter-spacing: -0.01em; margin-top: 32px; }
.prose h2 + *, .prose h3 + * { margin-top: 10px; }
.prose p, .prose li { color: #213f44; }
.prose ul { list-style: disc; padding-left: 26px; display: grid; gap: 6px; }
.prose ol { list-style: decimal; padding-left: 26px; display: grid; gap: 6px; }
.prose li::marker { color: var(--kelp); }
.prose strong { color: var(--ink); }
.prose .callout { background: var(--paper); border-left: 5px solid var(--poppy); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 18px 22px; margin-top: 26px; }
.prose .callout > * + * { margin-top: 8px; }
.prose .callout.urgent { border-left-color: #c2410c; background: #fff7f2; }
.prose .key-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; margin-top: 24px; }
.prose .key-facts div { background: var(--paper); border-radius: var(--r-md); padding: 16px 18px; border: 1px solid var(--line); }
.prose .key-facts dt { font: 700 .95rem/1.3 var(--body); color: var(--kelp); }
.prose .key-facts dd { margin-top: 4px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.prose .option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; margin-top: 24px; }
.prose .option { background: var(--paper); border-radius: var(--r-md); padding: 20px 22px; border: 1px solid var(--line); display: grid; gap: 8px; align-content: start; }
.prose .option h3 { margin: 0; font-size: 1.2rem; }
.prose .option p { font-size: 1.02rem; }
.prose .option ul { font-size: 1rem; gap: 2px; }
.prose .option .tag { justify-self: start; font: 700 .85rem/1 var(--body); background: var(--glass); color: var(--kelp-deep); padding: 6px 10px; border-radius: 999px; }
.prose .table-wrap { overflow-x: auto; margin-top: 24px; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--paper); }
.prose table { border-collapse: collapse; width: 100%; font-size: 1rem; }
.prose table:has(th:nth-child(3)) { min-width: 560px; }
.prose th, .prose td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose thead th { background: var(--glass); font-weight: 700; }
.prose tbody tr:last-child td { border-bottom: 0; }
.prose figure { margin-top: 28px; }
.prose figure img { border-radius: var(--r-lg); width: 100%; }
.prose figcaption { font-size: .95rem; color: var(--slate); margin-top: 8px; }
.prose .refs { font-size: .95rem; color: var(--slate); }
.prose .refs li { color: var(--slate); }
.prose .link-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0 24px; border-top: 1px solid var(--line); }
.prose .link-list li { border-bottom: 1px solid var(--line); }
.prose .link-list a { display: flex; justify-content: space-between; gap: 12px; padding: 13px 2px; font-weight: 700; text-decoration: none; }
.prose .link-list a::after { content: "\2192"; }
.prose .link-list a:hover { text-decoration: underline; }
.prose .faq-list { margin-top: 18px; }
.prose .faq-list summary { font-size: 1.1rem; }
.toc { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 22px; }
.toc h2 { font: 700 1rem/1.3 var(--body) !important; margin: 0 !important; color: var(--slate); }
.toc ol { margin-top: 8px; display: grid; gap: 4px; }

.side { position: sticky; top: 100px; display: grid; gap: 16px; }
.side-card { background: var(--paper); border-radius: var(--r-lg); padding: 24px; border: 1px solid var(--line); display: grid; gap: 12px; }
.side-card h2 { font: 700 1.3rem/1.2 var(--display); letter-spacing: -0.01em; }
.side-card p { color: var(--slate); font-size: 1rem; }
.side-doc { display: flex; gap: 14px; align-items: center; }
.side-doc img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: 50% 12%; flex: none; }
.side-doc strong { display: block; line-height: 1.25; }
.side-doc span { color: var(--slate); font-size: .95rem; line-height: 1.35; display: block; }
.side-phones { display: grid; gap: 2px; }
.side-phones a { display: flex; justify-content: space-between; gap: 10px; padding: 9px 0; border-top: 1px solid var(--line); text-decoration: none; color: var(--ink); font-weight: 600; font-size: 1rem; }
.side-phones a span { color: var(--kelp); white-space: nowrap; }
.side-card .btn { width: 100%; }
.side-links { display: grid; }
.side-links a { padding: 9px 0; border-top: 1px solid var(--line); font-weight: 600; text-decoration: none; font-size: 1rem; }
.side-links a:hover { text-decoration: underline; }

/* Closing CTA on inner pages */
.cta-band { background: var(--kelp-deep); color: #f3faf8; padding: clamp(44px, 5vw, 72px) 0; }
.cta-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 24px 60px; align-items: center; }
.cta-band h2 { font: 700 clamp(1.8rem, 1.2rem + 2vw, 2.7rem)/1.1 var(--display); letter-spacing: -0.02em; max-width: 20ch; }
.cta-band p { color: #cfe5e0; margin-top: 10px; max-width: 52ch; }
.cta-band .actions { justify-content: flex-end; }
.cta-band .btn-quiet { color: #fff; border-color: #8fb9b1; }
.cta-band .btn-quiet:hover { background: rgba(255,255,255,.08); color: #fff; }

/* Blog */
.post-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.post-card { background: var(--paper); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); display: grid; grid-template-rows: auto 1fr; text-decoration: none; color: var(--ink); }
.post-card:hover { color: var(--ink); box-shadow: 0 0 0 2px var(--kelp); }
.post-card .photo { border-radius: 0; aspect-ratio: 16 / 9; }
.post-card div.text { padding: 22px 24px 26px; display: grid; gap: 10px; align-content: start; }
.post-card .meta { font-size: .95rem; color: var(--slate); }
.post-card h2, .post-card h3 { font: 700 1.4rem/1.2 var(--display); letter-spacing: -0.015em; }
.post-card p { color: var(--slate); font-size: 1.02rem; }
.post-note { margin-top: 36px; color: var(--slate); font-size: .98rem; max-width: 70ch; }

/* Footer */
.site-foot { background: var(--ink); color: #d5e3e1; padding: clamp(44px, 5vw, 72px) 0 28px; font-size: 1rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)); gap: 28px clamp(20px, 4vw, 56px); }
.site-foot b.name { font: 700 1.5rem/1.1 var(--display); color: #fff; display: block; }
.site-foot .foot-about { margin-top: 10px; max-width: 34ch; }
.site-foot h2 { font: 700 1rem/1.3 var(--body); color: #fff; margin-bottom: 10px; }
.site-foot li { margin-top: 6px; }
.site-foot a { color: #d5e3e1; text-decoration: none; }
.site-foot a:hover { color: #fff; text-decoration: underline; }
.foot-base { margin-top: 40px; padding-top: 20px; border-top: 1px solid #2c4a4f; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; color: #a9c0bd; font-size: .95rem; }
.foot-base nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.foot-base a { color: #a9c0bd; }
.powered { display: inline-flex; align-items: center; gap: 8px; }
.powered img { width: 22px; height: 22px; }
.foot-emergency { margin-top: 18px; color: #a9c0bd; font-size: .95rem; }

.callbar { display: none; }

@media (max-width: 1319px) {
  .nav > a:not(.btn) { display: none; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .doctor { position: static; display: grid; grid-template-columns: 132px 1fr; gap: 18px; align-items: center; order: -1; }
  .doctor-photo { aspect-ratio: 4 / 5; border-radius: 20px; }
  .doctor-name { margin-top: 0; }
  .doctor-cta { display: none; }
  .page-grid { grid-template-columns: minmax(0, 1fr); }
  .side { position: static; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .care-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .reasons { grid-template-columns: minmax(0, 1fr); }
  .reason { grid-column: 1; }
  .answer { grid-column: 1; grid-row: auto; margin: 8px 0 14px; border-radius: 20px; }
  .visit-grid, .about-grid, .review-grid, .faq-grid, .request-grid, .booking-grid, .page-hero-grid, .cta-grid { grid-template-columns: minmax(0, 1fr); }
  .booking-grid { grid-template-areas: "intro" "frame" "call"; grid-template-rows: auto; }
  .page-hero .photo { max-width: 520px; }
  .cta-band .actions { justify-content: flex-start; }
  .office { grid-template-columns: 1fr 1fr; }
  .office .tel { justify-self: start; }
  .coverage { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: minmax(0, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .callbar { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: sticky; bottom: 0; z-index: 45; padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom)); background: rgba(241, 245, 244, .97); border-top: 1px solid var(--line); }
  .callbar .btn { min-height: 48px; padding: 0 12px; font-size: 1rem; }
}
@media (max-width: 560px) {
  body { font-size: 1.06rem; }
  .site-head .wrap { gap: 12px; min-height: 66px; }
  .brand b { font-size: 1.25rem; }
  .brand span { font-size: .85rem; }
  .site-head .nav > .btn { display: none; }
  .mobile-nav .wrap { grid-template-columns: 1fr; }
  .office { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .doctor { grid-template-columns: 104px 1fr; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
@media print {
  .site-head, .callbar, .site-foot, .cta-band, .side { display: none !important; }
  body { background: #fff; }
}
