/* =============================================================================
   Cohen Medical Practice — main.css
   Luxury aesthetic-clinic design system. Mobile-first, fluid, accessible.
   Palette: light cream + greige + taupe accent, charcoal text. Type: Cormorant Garamond / Jost.
   ========================================================================== */

/* -----------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
	/* Brand palette — warm tan + espresso.
	   (Token names kept as navy/gold so the whole cascade re-skins from here.) */
	--ink:        #2b2823;   /* charcoal — headings & body text */
	--navy:       #9c8a70;   /* taupe accent — buttons & the one CTA band */
	--navy-deep:  #ece5d7;   /* light greige — footer/hero/section bands (now light) */
	--gold:       #a4906f;   /* tan accent — eyebrows, links, rules */
	--gold-soft:  #bfa980;
	--paper:      #f6f2ea;   /* cream page background */
	--bone:       #ece5d7;   /* light greige section bg */
	--mist:       #f1ebdf;   /* soft cream light bg */
	--band:       #e6dfce;   /* deeper greige band (home chapters) */
	--line:       #e2dac9;   /* hairline borders */
	--muted:      #6f6656;   /* secondary text */
	--muted-light:#6f6656;   /* secondary text (bands are light now, so dark) */

	/* Typography */
	--font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--font-sans:    "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

	/* Fluid type scale (clamp: min, vw, max) */
	--fs-eyebrow: 0.78rem;
	--fs-base:    clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
	--fs-lede:    clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
	--fs-h3:      clamp(1.25rem, 1.1rem + 0.7vw, 1.55rem);
	--fs-h2:      clamp(2rem, 1.5rem + 2.2vw, 3.25rem);
	--fs-h1:      clamp(2.6rem, 1.6rem + 4.6vw, 5.25rem);

	/* Spacing & layout */
	--wrap:       1400px;
	--wrap-narrow:780px;
	--gutter:     clamp(1.25rem, 4vw, 3rem);
	--section-y:  clamp(3.5rem, 6vw, 7rem);
	--radius:     2px;        /* restrained, editorial corners */
	--radius-lg:  4px;

	--shadow:     0 18px 50px -28px rgba(44, 36, 24, 0.45);
	--transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* -----------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
	font-family: var(--font-sans);
	font-size: var(--fs-base);
	font-weight: 300;
	line-height: 1.7;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.08;
	color: var(--ink);
	letter-spacing: 0.01em;
}

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

/* -----------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2rem, 3vw, 3rem); }
.section--bone { background: var(--bone); }
.section--navy { background: var(--navy-deep); color: var(--ink); }
.section--navy h2, .section--navy h3 { color: var(--ink); }
.section__action { margin-top: clamp(2rem, 4vw, 3rem); text-align: center; }

.eyebrow {
	font-family: var(--font-sans);
	font-size: var(--fs-eyebrow);
	font-weight: 500;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
}
.eyebrow--light { color: var(--gold-soft); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head__title { font-size: var(--fs-h2); }

.prose > * + * { margin-top: 1.25em; }
.prose h2 { font-size: var(--fs-h2); margin-top: 1.6em; }
.prose h3 { font-size: var(--fs-h3); margin-top: 1.4em; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

/* Accessibility helpers */
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0;
	margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
	position: fixed; top: -100px; left: 1rem; z-index: 1000;
	background: var(--navy); color: #fff; padding: 0.75rem 1.25rem; border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; color: #fff; }

/* -----------------------------------------------------------------------------
   4. Buttons & links
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	font-family: var(--font-sans); font-size: 0.82rem; font-weight: 500;
	letter-spacing: 0.16em; text-transform: uppercase;
	padding: 1rem 2rem; border: 1px solid transparent; border-radius: var(--radius);
	cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.btn--solid { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--solid:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--ghost-light { background: transparent; color: var(--ink); border-color: rgba(43,40,35,0.4); }
.btn--ghost-light:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.text-link {
	font-family: var(--font-sans); font-size: 0.82rem; font-weight: 500;
	letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
	display: inline-flex; align-items: center; gap: 0.5em;
}
.text-link::after { content: "\2192"; transition: transform var(--transition); }
.text-link:hover { color: var(--navy); }
.text-link:hover::after { transform: translateX(4px); }
.text-link--light { color: #fff; }

.phone-link {
	font-family: var(--font-sans); font-weight: 400; letter-spacing: 0.02em;
	color: inherit; display: inline-flex; align-items: center; gap: 0.45em; white-space: nowrap;
}
.phone-link__icon { width: 0.85em; height: 0.85em; border-radius: 50%; border: 1.5px solid currentColor; }
.phone-link:hover { color: var(--gold); }
.phone-link--light { color: #fff; }

/* -----------------------------------------------------------------------------
   5. Social icons
   -------------------------------------------------------------------------- */
.social { list-style: none; padding: 0; display: flex; gap: 0.65rem; align-items: center; }
.social__link {
	display: grid; place-items: center; width: 2rem; height: 2rem;
	border: 1px solid currentColor; border-radius: 50%; color: inherit; opacity: 0.7;
	transition: all var(--transition); font-size: 0.7rem; position: relative;
}
.social__link::before { font-family: var(--font-sans); font-weight: 600; }
.social__link--instagram::before { content: "ig"; }
.social__link--facebook::before { content: "f"; }
.social__link--youtube::before { content: "yt"; }
.social__link:hover { opacity: 1; color: var(--gold); }

/* -----------------------------------------------------------------------------
   6. Header & navigation
   -------------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--paper); transition: box-shadow var(--transition); }
.site-header.is-stuck { box-shadow: 0 6px 30px -18px rgba(44,36,24,0.4); }

/* Full-width header: the utility + nav bars span the viewport (gutter only),
   instead of being capped at the 1400px content wrap. */
.utility-bar__inner, .nav-bar__inner { max-width: none; }

.utility-bar { background: var(--navy-deep); color: var(--muted-light); font-size: 0.8rem; }
.utility-bar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 2.6rem; }
.utility-bar__note { letter-spacing: 0.06em; }
.utility-bar__actions { display: flex; align-items: center; gap: 1.5rem; }
.utility-bar__phone { color: var(--ink); }

.nav-bar__inner { display: flex; align-items: center; gap: 2rem; min-height: 5rem; }
.site-brand { margin-right: auto; }
.site-brand__text { display: inline-flex; flex-direction: column; line-height: 1.1; }
.site-brand__name { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }
.site-brand__tag { font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-top: 0.2rem; }
.custom-logo { max-height: 60px; width: auto; }
.site-brand__logo { display: block; }
.site-brand__logo img { display: block; height: 4.75rem; width: auto; }
@media (max-width: 960px) { .site-brand__logo img { height: 3.5rem; } }

.primary-nav__menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.9rem; align-items: center; }
.primary-nav__menu a {
	font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500;
	letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
	padding-block: 0.5rem; position: relative;
}
.primary-nav__menu a::after {
	content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
	background: var(--gold); transition: width var(--transition);
}
.primary-nav__menu a:hover, .primary-nav__menu .current-menu-item > a { color: var(--gold); }
.primary-nav__menu a:hover::after, .primary-nav__menu .current-menu-item > a::after { width: 100%; }

/* Dropdown / mega submenus */
.primary-nav__menu .sub-menu {
	list-style: none; margin: 0; padding: 0.75rem 0; position: absolute; top: 100%; left: 0;
	min-width: 15rem; background: var(--paper); box-shadow: var(--shadow);
	border-top: 2px solid var(--gold); opacity: 0; visibility: hidden;
	transform: translateY(8px); transition: all var(--transition); z-index: 50;
}
.primary-nav__menu .menu-item-has-children { position: relative; }
.primary-nav__menu .menu-item-has-children:hover > .sub-menu,
.primary-nav__menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-nav__menu .sub-menu a { display: block; padding: 0.55rem 1.5rem; letter-spacing: 0.08em; }
.primary-nav__menu .sub-menu a::after { display: none; }

/* Nav sits on the right of the full-width header, so anchor top-level
   dropdowns to the right edge of their item (they extend leftward, on-screen). */
.primary-nav__menu > .menu-item > .sub-menu { left: auto; right: 0; }

/* Larger menus (Hysteroscopy, Conditions) use the same standard single-column
   dropdown as the rest — just allow their longer labels to wrap. */
.primary-nav__menu .mega > .sub-menu { min-width: 17rem; }
.primary-nav__menu .mega > .sub-menu a { white-space: normal; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem; }
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
	display: block; width: 26px; height: 2px; background: var(--ink); transition: all var(--transition);
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -8px; }
.nav-toggle__bars::after { top: 8px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

/* -----------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero { background: var(--paper); padding-block: clamp(2.5rem, 6vw, 5.5rem); overflow: hidden; }
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__title { font-size: var(--fs-h1); color: var(--ink); font-weight: 500; margin-top: 0.5rem; }
.hero__lede { font-size: var(--fs-lede); font-weight: 300; color: var(--muted); max-width: 42ch; margin-top: 1.5rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1.75rem; align-items: center; margin-top: 2.5rem; }
.hero__media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media-placeholder { display: block; aspect-ratio: 5/4; background: linear-gradient(150deg, var(--bone), var(--mist)); border-radius: var(--radius-lg); }
@media (min-width: 900px) {
	.hero__grid { grid-template-columns: 1.05fr 0.95fr; }
	.hero__media, .hero__media-placeholder { height: 100%; }
	.hero__media-placeholder { aspect-ratio: auto; min-height: 30rem; }
}
/* Video hero: full-bleed footage behind a cream gradient */
.hero--video { position: relative; isolation: isolate; display: flex; align-items: center; min-height: clamp(34rem, 78vh, 48rem); padding-block: clamp(4rem, 8vw, 7rem); }
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; background: var(--bone); }
.hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,26,20,0.42) 0%, rgba(30,26,20,0.22) 55%, rgba(30,26,20,0.12) 100%), rgba(30, 26, 20, 0.22); }
.hero--video .hero__grid { grid-template-columns: 1fr; width: 100%; }
.hero--video .hero__content { max-width: 38rem; }
.hero--video .hero__title { font-size: clamp(2.2rem, 1.4rem + 2.8vw, 3.6rem); line-height: 1.12; }
.hero--video .hero__title, .hero--video .hero__lede { color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.45), 0 8px 28px rgba(0,0,0,0.35); }
.hero--video .hero__lede { color: rgba(255,255,255,0.92); font-weight: 400; }
.hero--video .eyebrow { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.4); }
.hero--video .text-link { color: #fff; text-shadow: none; padding: calc(1rem - 1px) 1.75rem; border: 1px solid rgba(255,255,255,0.85); border-radius: var(--radius); letter-spacing: 0.16em; backdrop-filter: blur(2px); transition: all var(--transition); }
.hero--video .text-link:hover { color: var(--ink); background: #fff; border-color: #fff; }
.hero--video .btn--solid { box-shadow: 0 10px 30px -12px rgba(0,0,0,0.5); }


/* -----------------------------------------------------------------------------
   8. Intro
   -------------------------------------------------------------------------- */
.intro__inner { display: grid; gap: clamp(2.5rem, 5vw, 5rem); grid-template-columns: 1fr; }
.intro__body { font-size: var(--fs-lede); color: var(--muted); margin-bottom: 1.5rem; }
.intro__points { list-style: none; padding: 0; display: grid; gap: 2rem; }
.intro__point { padding-top: 1.5rem; border-top: 1px solid var(--line); }
.intro__point h3 { font-size: var(--fs-h3); margin-bottom: 0.5rem; }
.intro__point p { color: var(--muted); }

@media (min-width: 860px) {
	.intro__inner { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
	.intro__points { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------------------------
   9. Press strip
   -------------------------------------------------------------------------- */
.press { border-block: 1px solid var(--line); }
.press__title { text-align: center; font-family: var(--font-sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 2rem; }
.press__grid { list-style: none; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(1.5rem, 5vw, 4rem); }
.press__name { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--muted); opacity: 0.75; }
.press__item img { filter: grayscale(1); opacity: 0.65; transition: opacity var(--transition); }
.press__item img:hover { opacity: 1; }

/* -----------------------------------------------------------------------------
   10. Card grid (practice areas)
   -------------------------------------------------------------------------- */
.card-grid, .showcase-grid, .ba-grid, .archive-grid, .post-list {
	list-style: none; padding: 0; display: grid; gap: clamp(1.25rem, 2.5vw, 2rem);
}
.card-grid { grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); transition: all var(--transition); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card__body { padding: clamp(1.75rem, 3vw, 2.5rem); }
.card__title { font-size: var(--fs-h3); margin-bottom: 0.75rem; }
.card__desc { color: var(--muted); margin-bottom: 1.5rem; }

/* -----------------------------------------------------------------------------
   11. Doctor bio
   -------------------------------------------------------------------------- */
.doctor__inner { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: center; }
.doctor__portrait { border-radius: var(--radius-lg); overflow: hidden; }
.doctor__portrait img, .doctor__portrait-placeholder { display: block; width: 100%; height: clamp(18rem, 30vw, 26rem); object-fit: cover; }
.doctor__portrait-placeholder { background: linear-gradient(160deg, var(--mist), var(--bone)); }
.doctor__bio { color: var(--muted); font-size: 1.05rem; }
.doctor__credentials { list-style: none; padding: 0; margin: 1.75rem 0; display: grid; gap: 0.75rem; }
.doctor__credentials li { position: relative; padding-left: 1.6rem; color: var(--ink); }
.doctor__credentials li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 0.7rem; height: 0.7rem; border: 1px solid var(--gold); transform: rotate(45deg); }

@media (min-width: 860px) {
	.doctor__inner { grid-template-columns: 0.85fr 1.15fr; }
}

/* -----------------------------------------------------------------------------
   12. Before / After
   -------------------------------------------------------------------------- */
.ba-grid { grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); }
.ba-card__figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-lg); }
.ba-card__figure img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.6s var(--transition); }
.ba-card:hover img { transform: scale(1.05); }
.ba-card__caption {
	position: absolute; inset-inline: 0; bottom: 0; padding: 1.5rem 1.25rem 1rem;
	color: #fff; font-family: var(--font-sans); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
	background: linear-gradient(to top, rgba(42,35,24,0.85), transparent);
}

/* -----------------------------------------------------------------------------
   13. Testimonials carousel
   -------------------------------------------------------------------------- */
.testimonials__track {
	display: flex; gap: clamp(1.25rem, 3vw, 2.5rem); overflow-x: auto; scroll-snap-type: x mandatory;
	padding-bottom: 1rem; scrollbar-width: none;
}
.testimonials__track::-webkit-scrollbar { display: none; }
.testimonial { scroll-snap-align: start; flex: 0 0 min(100%, 28rem); border-left: 2px solid var(--gold); padding-left: 2rem; }
.testimonial__quote { font-family: var(--font-display); font-size: clamp(1.15rem, 0.9rem + 0.7vw, 1.45rem); font-style: italic; line-height: 1.45; color: var(--ink); }
.testimonial__quote p { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.testimonial__quote p::before { content: "\201C"; }
.testimonial__quote p::after { content: "\201D"; }
.testimonial__author { margin-top: 1.5rem; font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); }
.testimonials__controls { display: flex; gap: 0.75rem; margin-top: 2.5rem; }
.carousel-btn {
	width: 3rem; height: 3rem; border: 1px solid var(--line); background: transparent;
	color: var(--navy); border-radius: 50%; cursor: pointer; font-size: 1.1rem; transition: all var(--transition);
}
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* -----------------------------------------------------------------------------
   14. Services showcase
   -------------------------------------------------------------------------- */
.showcase-grid { grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.showcase { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 26rem; background: var(--navy); }
.showcase.has-image { background: var(--tile-image, var(--navy)) center/cover no-repeat; }
.showcase__link { display: flex; align-items: flex-end; height: 100%; }
.showcase__overlay {
	width: 100%; padding: clamp(1.75rem, 3vw, 2.5rem); color: #fff;
	background: linear-gradient(to top, rgba(42,35,24,0.9) 0%, rgba(42,35,24,0.25) 60%, transparent 100%);
	transition: background var(--transition);
}
.showcase:hover .showcase__overlay { background: linear-gradient(to top, rgba(42,35,24,0.95) 0%, rgba(42,35,24,0.5) 70%, rgba(42,35,24,0.2) 100%); }
.showcase__title { color: #fff; font-size: clamp(1.7rem, 1.3rem + 1.5vw, 2.4rem); }
.showcase__desc { color: #e0e7ef; margin: 0.5rem 0 1.25rem; font-size: 0.95rem; }

/* -----------------------------------------------------------------------------
   15. Men's split band
   -------------------------------------------------------------------------- */
.section--split { padding: 0; }
.mens__inner { display: grid; grid-template-columns: 1fr; }
.mens__content { padding: var(--section-y) var(--gutter); max-width: 38rem; margin-inline: auto; }
.mens__media-placeholder, .mens__media { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); min-height: 18rem; }
@media (min-width: 860px) {
	.mens__inner { grid-template-columns: 1fr 1fr; align-items: stretch; }
	.mens__content { margin: 0; padding-inline: clamp(2rem, 6vw, 6rem); display: flex; flex-direction: column; justify-content: center; }
}

/* -----------------------------------------------------------------------------
   16. Closing CTA band
   -------------------------------------------------------------------------- */
.cta-band { background: var(--navy); color: #fff; text-align: center; padding-block: clamp(3.5rem, 7vw, 6rem); }
.cta-band__title { color: #fff; font-size: var(--fs-h2); max-width: 24ch; margin-inline: auto; }
.cta-band .btn--solid { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta-band .btn--solid:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; align-items: center; margin-top: 2.5rem; }

/* -----------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: var(--muted-light); }
.site-footer__grid {
	display: grid; gap: clamp(2rem, 4vw, 3.5rem); padding-block: clamp(3rem, 5vw, 4.5rem);
	grid-template-columns: 1fr;
}
.site-footer__name { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); margin-bottom: 1rem; }
.site-footer__address { font-style: normal; line-height: 2; }
.site-footer__address a { color: var(--muted-light); }
.site-footer__address a:hover { color: var(--gold); }
.site-footer__social { margin-top: 1.5rem; }
.site-footer__heading { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); margin-bottom: 1.25rem; }
.site-footer__menu, .site-footer__hours, .site-footer__legal-menu { list-style: none; padding: 0; }
.site-footer__menu li, .site-footer__hours li { margin-bottom: 0.65rem; }
.site-footer__menu a { color: var(--muted-light); font-size: 0.92rem; }
.site-footer__menu a:hover { color: var(--gold); }
.site-footer__hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; border-bottom: 1px solid rgba(43,40,35,0.12); padding-bottom: 0.5rem; }
.site-footer__hours span { color: var(--ink); }

.site-footer__legal { border-top: 1px solid rgba(43,40,35,0.12); }
.site-footer__legal-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-block: 1.5rem; font-size: 0.82rem; }
.site-footer__legal-menu { display: flex; gap: 1.5rem; }
.site-footer__legal-menu a { color: var(--muted-light); }
.site-footer__legal-menu a:hover { color: var(--gold); }

@media (min-width: 720px) {
	.site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; }
}

/* -----------------------------------------------------------------------------
   18. Generic content templates (page / single / archive / blog)
   -------------------------------------------------------------------------- */
.page-shell { padding-block: var(--section-y); }
.page-header { max-width: var(--wrap-narrow); margin-bottom: clamp(2rem, 4vw, 3rem); }
.page-header__title { font-size: var(--fs-h1); }
.page-header__meta, .page-header__desc { color: var(--muted); margin-top: 0.75rem; }
.page-feature { margin-bottom: clamp(2rem, 4vw, 3rem); border-radius: var(--radius-lg); overflow: hidden; }
.entry-content { max-width: var(--wrap-narrow); }

.post-list { grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr)); }
.post-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.post-card__media img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.post-card__body { padding: 1.75rem; }
.post-card__title { font-size: var(--fs-h3); margin-bottom: 0.5rem; }
.post-card__meta { color: var(--muted); font-size: 0.82rem; margin-bottom: 1rem; }
.post-card__excerpt { color: var(--muted); margin-bottom: 1.25rem; }

.archive-grid { grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr)); }
.tile { border-radius: var(--radius-lg); overflow: hidden; }
.tile__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.6s var(--transition); }
.tile:hover .tile__media img { transform: scale(1.05); }
.tile__title { font-size: var(--fs-h3); margin-top: 1rem; }

.procedure-cta { max-width: var(--wrap-narrow); margin-top: 3rem; padding: clamp(2rem, 4vw, 3rem); background: var(--bone); border-radius: var(--radius-lg); text-align: center; }
.procedure-cta h2 { font-size: var(--fs-h3); margin-bottom: 0.75rem; }
.procedure-cta p { color: var(--muted); margin-bottom: 1.5rem; }

/* Pagination */
.pagination { margin-top: 3rem; display: flex; justify-content: center; }
.pagination .page-numbers { display: inline-grid; place-items: center; min-width: 2.75rem; height: 2.75rem; padding: 0 0.5rem; border: 1px solid var(--line); margin: 0 0.2rem; color: var(--ink); font-size: 0.85rem; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

/* Search form */
.search-form { display: flex; gap: 0.5rem; max-width: 32rem; }
.search-form__field { flex: 1; padding: 0.9rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius); font: inherit; }
.search-form__field:focus { outline: none; border-color: var(--gold); }

/* -----------------------------------------------------------------------------
   18b. Contact page
   -------------------------------------------------------------------------- */
.contact-hero__lede { max-width: 42rem; margin-top: 1.25rem; color: var(--muted); font-size: var(--fs-lede); font-weight: 300; }

.contact-body { padding-top: clamp(2rem, 4vw, 3.5rem); }
.contact-body__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

.contact-details__list { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.5rem; }
.contact-details__item { display: grid; gap: 0.35rem; }
.contact-details__label { font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.contact-details__value { color: var(--ink); font-style: normal; }
.contact-details__social { margin-top: 2rem; }

/* Form card */
.contact-form-card { background: var(--bone); border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 2.75rem); }
.contact-form-card__title { font-size: var(--fs-h3); margin-bottom: 1.5rem; }

/* Fields */
.field { margin-bottom: 1.4rem; }
.field__label { display: block; font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.5rem; }
.field__req { color: var(--gold); }
.field__input { width: 100%; padding: 0.9rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius); font: inherit; color: var(--ink); background: #fff; transition: border-color var(--transition); }
.field__input:focus { outline: none; border-color: var(--gold); }
.field__input::placeholder { color: var(--muted); }
.field__textarea { resize: vertical; min-height: 7rem; }
.field__select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 1.25rem) center, calc(100% - 0.9rem) center; background-size: 0.4rem 0.4rem, 0.4rem 0.4rem; background-repeat: no-repeat; padding-right: 2.5rem; }

.contact-form__row { display: grid; gap: 1.4rem; }

.field--choice { border: 0; padding: 0; margin: 0 0 1.4rem; }
.choice-group { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; }
.choice { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--ink); cursor: pointer; }
.choice input { accent-color: var(--gold); width: 1.05rem; height: 1.05rem; }
.field--consent .choice { align-items: flex-start; gap: 0.65rem; }
.field--consent .choice span { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

.contact-form__disclaimer { font-size: 0.8rem; color: var(--muted); margin: 0 0 1.5rem; }
.contact-form__actions { margin: 0; }
.contact-form__actions .btn { width: 100%; }

/* Honeypot — keep out of the layout and off-screen for AT. */
.contact-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Notices */
.form-notice { border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: 0.92rem; }
.form-notice--ok { background: #eaf3ec; border: 1px solid #b9d6c1; color: #1f5132; }
.form-notice--error { background: #f9ecec; border: 1px solid #e0b9b9; color: #7a2222; }

/* Map */
.contact-map { margin-top: clamp(2rem, 5vw, 4rem); }
.contact-map__frame { display: block; width: 100%; height: clamp(20rem, 40vw, 30rem); border: 0; filter: grayscale(0.2); }

@media (min-width: 720px) {
	.contact-form__row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
	.contact-body__grid { grid-template-columns: 0.85fr 1.15fr; }
}

/* -----------------------------------------------------------------------------
   18c. Procedure / team / reviews / locations templates
   -------------------------------------------------------------------------- */
/* Breadcrumbs */
.breadcrumbs { font-size: 0.78rem; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--gold); }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs span[aria-hidden] { margin: 0 0.5rem; color: var(--line); }

/* Archive headers */
.archive-header__desc { max-width: 46rem; margin-top: 1rem; color: var(--muted); font-size: var(--fs-lede); font-weight: 300; }

/* Procedure single — content + aside */
.procedure-header__title { font-size: var(--fs-h1); }
.procedure-header__lede { max-width: 46rem; margin-top: 1rem; color: var(--muted); font-size: var(--fs-lede); font-weight: 300; }
.entry-layout { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.entry-main { max-width: 100%; }
.entry-main .entry-content { max-width: none; }
.aside-card { background: var(--bone); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1.5rem; }
.aside-card--soft { background: transparent; border: 1px solid var(--line); }
.aside-card__title { font-size: var(--fs-h3); margin-bottom: 0.75rem; }
.aside-card__text { color: var(--muted); margin-bottom: 1.25rem; }
.aside-card .btn { width: 100%; }
.aside-card__phone { margin-top: 1rem; text-align: center; }
.aside-locations { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.aside-locations li { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.aside-locations strong { color: var(--ink); }

/* Archive groups (all procedures) */
.archive-group { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.archive-group__head { border-bottom: 1px solid var(--line); padding-bottom: 0.75rem; margin-bottom: 1.75rem; }
.archive-group__title { font-size: var(--fs-h2); }
.archive-group__title a { color: var(--navy); }
.archive-group__title a:hover { color: var(--gold); }

/* Team grid + single */
.team-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); gap: clamp(1.5rem, 4vw, 2.5rem); }
.team-card__link { display: block; color: inherit; }
.team-card__link:hover { color: var(--gold); }
.team-card__portrait { margin: 0 0 1rem; border-radius: var(--radius-lg); overflow: hidden; }
.team-card__portrait img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 0.6s var(--transition); }
.team-card__link:hover .team-card__portrait img { transform: scale(1.04); }
.team-card__placeholder { display: block; aspect-ratio: 3/4; background: linear-gradient(160deg, var(--mist, #ece3d4), var(--bone)); }
.team-card__name { font-size: 1.25rem; margin-bottom: 0.25rem; }
.team-card__role { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

.team-single__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.team-single__portrait { margin: 0; border-radius: var(--radius-lg); overflow: hidden; }
.team-single__portrait img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.team-single__name { font-size: var(--fs-h1); margin-top: 0.5rem; }
.team-single__role { font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.team-single__actions { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; margin-top: 2rem; }

/* Reviews */
.reviews-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr)); gap: 1.5rem; }
.review-card { background: var(--bone); border-radius: var(--radius-lg); padding: 1.75rem; }
.review-card figure { margin: 0; }
.review-card__stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.review-card__quote { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.5; color: var(--ink); margin: 0 0 1rem; }
.review-card__author { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); }

/* Locations */
.locations-list { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(2rem, 4vw, 3rem); }
.location-card { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: center; padding-bottom: clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--line); }
.location-card:last-child { border-bottom: 0; }
.location-card__name { font-size: var(--fs-h2); margin-bottom: 0.75rem; }
.location-card__address { font-style: normal; color: var(--ink); margin-bottom: 1rem; line-height: 1.6; }
.location-card__hours { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.location-card__actions { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }
.location-card__map iframe { display: block; width: 100%; height: clamp(16rem, 30vw, 22rem); border: 0; border-radius: var(--radius-lg); filter: grayscale(0.2); }

@media (min-width: 900px) {
	.entry-layout { grid-template-columns: 1.6fr 0.9fr; }
	.entry-aside { position: sticky; top: 7rem; }
	.team-single__grid { grid-template-columns: 0.8fr 1.2fr; }
	.location-card { grid-template-columns: 1fr 1fr; }
}

/* -----------------------------------------------------------------------------
   18d. About page
   -------------------------------------------------------------------------- */
.about-intro__lead { max-width: 54rem; }
.about-intro__lead p { font-size: var(--fs-lede); font-weight: 300; color: var(--muted); margin-bottom: 1rem; }
.about-stats { list-style: none; margin: 2.75rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.about-stat { display: flex; flex-direction: column; gap: 0.3rem; padding: 1.5rem 1.5rem 1.5rem 0; border-top: 2px solid var(--gold); }
.about-stat__num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.9rem); color: var(--navy); line-height: 1; }
.about-stat__label { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.about-lead { max-width: 54rem; color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; }
.about-subhead { font-size: 1.1rem; margin: 1.75rem 0 0.75rem; }
.about-team__grid { margin-bottom: 2rem; }
.section__action { margin-top: 2.5rem; }
.about-extra { margin-top: 3rem; }
@media (min-width: 760px) {
	.about-stats { grid-template-columns: repeat(4, 1fr); }
}

/* -----------------------------------------------------------------------------
   18e. Location single page
   -------------------------------------------------------------------------- */
.location-hero__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.location-hero__title { font-size: var(--fs-h1); margin: 0.5rem 0 1.5rem; }
.location-meta { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: 1.25rem; }
.location-meta li { display: grid; gap: 0.25rem; }
.location-meta__label { font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.location-meta address { font-style: normal; color: var(--ink); line-height: 1.6; }
.location-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 0; }
.location-hero__map iframe { display: block; width: 100%; height: clamp(18rem, 36vw, 28rem); border: 0; border-radius: var(--radius-lg); filter: grayscale(0.15); }
.location-content .entry-content { margin-inline: auto; }

@media (min-width: 880px) {
	.location-hero__grid { grid-template-columns: 1fr 1.1fr; align-items: stretch; }
	.location-hero__info { align-self: center; }
	.location-hero__map { display: flex; }
	.location-hero__map iframe { height: 100%; min-height: 24rem; }
}

/* -----------------------------------------------------------------------------
   18f. Home page sections (HCNY)
   -------------------------------------------------------------------------- */
/* Three-column intro */
.home-intro__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
.home-intro__title { font-size: var(--fs-h3); margin-bottom: 1rem; letter-spacing: 0.01em; }
.home-intro__col > p { color: var(--muted); margin-bottom: 1.5rem; }
.home-intro__list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0.6rem; }
.home-intro__list a { color: var(--ink); }
.home-intro__list a:hover { color: var(--gold); }
.home-intro__list li { position: relative; padding-left: 1.3rem; }
.home-intro__list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 0.5rem; height: 0.5rem; border: 1px solid var(--gold); transform: rotate(45deg); }
@media (min-width: 820px) {
	.home-intro__grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
	.home-intro__col { padding: 0 clamp(1.5rem, 3vw, 2.75rem); }
	.home-intro__col:first-child { padding-left: 0; }
	.home-intro__col:last-child { padding-right: 0; }
	.home-intro__col--divider { border-left: 1px solid var(--line); }
}

/* Feature icons strip */
.home-features__grid { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1.75rem, 4vw, 2.5rem); text-align: center; }
.home-feature__icon { display: inline-grid; place-items: center; color: var(--gold); margin-bottom: 1rem; }
.home-feature__title { font-family: var(--font-sans); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.6rem; }
.home-feature__text { color: var(--muted); font-size: 0.92rem; max-width: 20rem; margin-inline: auto; }
@media (min-width: 720px) {
	.home-features__grid { grid-template-columns: repeat(4, 1fr); }
	.home-feature { padding: 0 1.25rem; border-left: 1px solid var(--line); }
	.home-feature:first-child { border-left: 0; }
}

/* Technology split */
.home-tech__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.home-tech__title { font-size: var(--fs-h2); margin-bottom: 1.25rem; }
.home-tech__content > p { color: var(--muted); margin-bottom: 1.5rem; max-width: 46ch; }
.home-tech__media { margin: 0; }
.home-tech__media-placeholder { display: block; aspect-ratio: 4/3; border-radius: var(--radius-lg); background: linear-gradient(150deg, var(--bone), var(--mist)); }
@media (min-width: 900px) {
	.home-tech__grid { grid-template-columns: 1fr 1.1fr; }
}

/* Closing 3-column CTA */
.home-cta { background: var(--bone); }
.home-cta__grid { display: grid; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.home-cta__col { padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem); }
.home-cta__col--pad { background: var(--bone); display: grid; align-content: center; }
.home-cta__col--pad > * { max-width: 26rem; }
.home-cta__col--pad:first-child { padding-left: 0; }
.home-cta__col--pad:last-child { padding-right: 0; }
.home-cta__col > p { color: var(--muted); margin-bottom: 1.25rem; }
.home-cta__col--accent { background: var(--navy); color: #fff; text-align: center; display: grid; align-content: center; gap: 1rem; }
.home-cta__title { color: #fff; font-size: var(--fs-h2); }
.home-cta__col--accent > p { color: rgba(255,255,255,0.85); margin: 0 auto; max-width: 26ch; }
.home-cta__col--accent .btn--solid { background: var(--paper); color: var(--ink); border-color: var(--paper); justify-self: center; }
.home-cta__col--accent .btn--solid:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.home-cta__address { font-style: normal; color: var(--ink); line-height: 1.7; margin-bottom: 1rem; }
.home-cta__contact { color: var(--muted); margin-bottom: 1.25rem; }
.home-cta__contact a { color: var(--gold); }
.home-content .entry-content { margin-inline: auto; }
@media (min-width: 820px) {
	.home-cta__grid { grid-template-columns: 1fr 1.1fr 1fr; }
	.home-cta__col--pad:first-child { justify-items: end; text-align: right; }
}

/* -----------------------------------------------------------------------------
   19. Mobile navigation (≤960px)
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
	.nav-toggle { display: block; }
	.nav-bar__cta { display: none; }
	.primary-nav {
		position: fixed; inset: 0 0 0 auto; width: min(88vw, 26rem); background: var(--paper);
		transform: translateX(100%); transition: transform var(--transition);
		padding: 6rem 2rem 2rem; overflow-y: auto; box-shadow: var(--shadow); z-index: 90;
	}
	.primary-nav.is-open { transform: translateX(0); }
	.primary-nav__menu { flex-direction: column; align-items: stretch; gap: 0; }
	.primary-nav__menu > .menu-item { border-bottom: 1px solid var(--line); }
	.primary-nav__menu a { display: block; padding: 1rem 0; font-size: 0.95rem; }
	.primary-nav__menu a::after { display: none; }
	.primary-nav__menu .sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
		border-top: 0; padding: 0 0 0.5rem 1rem; min-width: 0;
	}
	.utility-bar__note { display: none; }
	.utility-bar__inner { justify-content: flex-end; }
	body.nav-open { overflow: hidden; }
}

/* -----------------------------------------------------------------------------
   20. Long-form content layout (inner pages + home copy)
   -------------------------------------------------------------------------- */
/* Page hero */
.page-hero { background: var(--bone); border-bottom: 1px solid var(--line); padding-block: clamp(2.75rem, 5vw, 4.5rem) clamp(2.5rem, 4.5vw, 4rem); }
.page-hero__grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.page-hero .wrap, .page-body .wrap { max-width: 1240px; }
.crumbs { list-style: none; margin: 0 0 1.25rem; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.crumbs li + li::before { content: "/"; margin-right: 0.6rem; color: var(--gold-soft); }
.crumbs a { color: var(--gold); }
.crumbs a:hover { color: var(--ink); }
.page-hero__title { font-size: clamp(2.4rem, 1.6rem + 3.2vw, 4.1rem); max-width: 17ch; }
.page-hero__lede { font-size: var(--fs-lede); font-weight: 300; line-height: 1.6; color: var(--muted); max-width: 50ch; }
.page-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 1.6rem; }
@media (min-width: 940px) {
	.page-hero__grid { grid-template-columns: 1.1fr 1fr; }
}

/* Body: readable column + sticky aside */
.page-body { padding-block: clamp(2.75rem, 5vw, 4.5rem) clamp(3.5rem, 6vw, 6rem); }
.page-body__grid { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); }
.page-body .entry-content { max-width: 44rem; }
@media (min-width: 1040px) {
	.page-body__grid { grid-template-columns: minmax(0, 1fr) 19rem; }
	.page-aside { position: sticky; top: 6.5rem; align-self: start; }
}

/* Prose refinements */
.prose { font-size: clamp(1.02rem, 1rem + 0.2vw, 1.1rem); line-height: 1.75; }
.prose > * + * { margin-top: 1.2em; }
.prose h2 { font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.35rem); line-height: 1.15; margin-top: 2.4em; }
.prose h2::before { content: ""; display: block; width: 2.5rem; height: 2px; background: var(--gold); margin-bottom: 1.1rem; }
.prose h2 + * { margin-top: 1rem; }
.prose h3 { font-family: var(--font-sans); font-weight: 500; font-size: 1.05rem; letter-spacing: 0.01em; margin-top: 2em; }
.prose h3 + * { margin-top: 0.6em; }
.prose a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold); }
.prose ul { list-style: none; margin: 1.2em 0; padding: 0; display: grid; gap: 0.6rem; }
.prose li { position: relative; padding-left: 1.5rem; }
.prose li::before { content: ""; position: absolute; left: 0.1rem; top: 0.68em; width: 0.45rem; height: 0.45rem; border: 1px solid var(--gold); transform: rotate(45deg); }

/* Photography between sections */
.content-figure { margin: 2.5rem 0; border-radius: var(--radius-lg); overflow: hidden; }
.prose > .content-figure + h2 { margin-top: 2.5rem; }
.content-figure img { display: block; width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.content-figure figcaption { font-size: 0.82rem; color: var(--muted); padding-top: 0.6rem; }
.content-figure__placeholder { display: block; aspect-ratio: 16/9; background: linear-gradient(150deg, var(--bone), var(--mist)); }
.section--bone .content-figure__placeholder, .home-band--band .content-figure__placeholder { background: linear-gradient(150deg, var(--mist), var(--paper)); }

/* Pull quotes (Dr. Cohen) */
.pullquote { margin: 2.2em 0; padding: 1.6rem 1.9rem; border-left: 2px solid var(--gold); background: var(--mist); }
.pullquote p { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem); line-height: 1.45; color: var(--ink); }

/* FAQ accordion */
.faq { margin-top: 1.25rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: baseline; gap: 1.25rem; padding: 1.05rem 0; font-family: var(--font-sans); font-weight: 500; font-size: 1rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; font-family: var(--font-display); font-size: 1.6rem; line-height: 1; color: var(--gold); transition: transform var(--transition); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > :not(summary) { padding: 0 0 1.25rem; color: var(--muted); max-width: 62ch; margin: 0; }
.faq details > * + :not(summary) { margin-top: 0.75rem; }

/* Link-led lists → card grid */
.link-grid { list-style: none; margin: 1.4em 0; padding: 0; display: grid; gap: 0.75rem; }
.prose .link-grid li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.2rem 1.35rem; margin: 0; }
.prose .link-grid li::before { display: none; }
.link-grid__title { display: block; font-family: var(--font-display); font-size: 1.25rem; line-height: 1.25; color: var(--ink); text-decoration: none !important; margin-bottom: 0.25rem; }
.link-grid__title:hover { color: var(--gold); }
.link-grid__desc { display: block; font-size: 0.9rem; line-height: 1.6; color: var(--muted); }
.section--bone .prose .link-grid li, .home-content .prose .link-grid li { background: var(--paper); }
@media (min-width: 640px) {
	.link-grid { grid-template-columns: 1fr 1fr; }
}

/* Aside cards */
.aside-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; }
.aside-card + .aside-card { margin-top: 1.25rem; }
.aside-card__title { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.aside-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; font-size: 0.92rem; line-height: 1.45; }
.aside-list a { color: var(--muted); }
.aside-list a:hover, .aside-list a[aria-current] { color: var(--ink); }
.aside-card--contact { background: var(--bone); border-color: transparent; }
.aside-card__phone { display: inline-block; font-family: var(--font-display); font-size: 1.65rem; color: var(--ink); line-height: 1.1; }
.aside-card__note { font-size: 0.88rem; color: var(--muted); margin: 0.5rem 0 1rem; }
.aside-card__locs { list-style: none; margin: 0 0 1.35rem; padding: 0; display: grid; gap: 0.4rem; font-size: 0.9rem; color: var(--muted); }
.aside-card__locs a { color: var(--ink); }
.aside-card__locs a:hover { color: var(--gold); }
.aside-card .btn { width: 100%; }

/* Home — copy as numbered chapters on contrasting bands */
.home-band { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.home-band--paper { background: var(--paper); }
.home-band--bone { background: var(--bone); }
.home-band--band { background: var(--band); }
.home-band--dark { background: var(--navy); color: #fff; }
.home-band__inner { max-width: 46rem; }
.home-band__eyebrow { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.25rem; }
.home-band__num { font-family: var(--font-display); font-size: clamp(2rem, 1.6rem + 1.4vw, 2.8rem); line-height: 1; color: var(--gold); }
.home-band__eyebrow .eyebrow { margin: 0; }
.home-band__title { font-size: clamp(1.9rem, 1.4rem + 2vw, 2.9rem); line-height: 1.12; margin-bottom: 1.5rem; max-width: 22ch; }
.home-band__body.prose > :first-child { margin-top: 0; }
.home-band__body.prose > .link-strip, .home-band__body.prose > .link-grid, .home-band__body.prose > .steps { margin-block: clamp(2rem, 4vw, 3rem); }
.home-band--lede { text-align: center; padding-block: clamp(3rem, 6vw, 5rem); }
.home-band--lede .home-band__inner { max-width: 54rem; margin-inline: auto; }
.home-band--lede p { font-size: var(--fs-lede); font-weight: 300; line-height: 1.6; color: var(--muted); }
/* Dark chapter */
.home-band--dark .home-band__title, .home-band--dark .prose, .home-band--dark .prose p { color: #fff; }
.home-band--dark .home-band__num, .home-band--dark .eyebrow { color: rgba(255,255,255,0.8); }
.home-band--dark .prose a { color: #fff; text-decoration-color: rgba(255,255,255,0.6); }
.home-band--dark .prose a:hover { color: var(--paper); }
.home-band--dark .pullquote { background: rgba(255,255,255,0.12); border-left-color: #fff; }
.home-band--dark .pullquote p { color: #fff; font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem); }
.home-band--dark .prose li::before { border-color: rgba(255,255,255,0.7); }
/* Chapter text + image */
.home-band__grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.home-band__media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; }
.home-band__media img { display: block; width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; }
.home-band__media-placeholder { display: block; aspect-ratio: 4/3; background: linear-gradient(150deg, var(--bone), var(--mist)); }
.home-band--band .home-band__media-placeholder { background: linear-gradient(150deg, var(--mist), var(--paper)); }
.home-band--dark .home-band__media-placeholder { background: linear-gradient(150deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06)); }
@media (min-width: 900px) {
	.home-band__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
	.home-band__media img, .home-band__media-placeholder { aspect-ratio: 4/5; }
}
@media (max-width: 899px) {
	.home-band__media { max-width: 36rem; }
}
/* Lists break out of the text column */
.home-band__wide { margin-top: clamp(2rem, 4vw, 3rem); }
/* Copy that follows a full-width list: centred closing block */
.home-band__close { max-width: 60ch; margin: clamp(2.5rem, 5vw, 4rem) auto 0; text-align: center; }
.home-band__close .pullquote { border-left: 0; border-top: 2px solid var(--gold); background: transparent; padding: 1.75rem 0 0; margin: 0; }
.home-band__close .pullquote p { font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.7rem); }
.home-band__close .pullquote + p, .home-band__close p + .pullquote { margin-top: 2rem; }
.home-band__close ul { text-align: left; }
.home-band--dark .home-band__close .pullquote { border-top-color: #fff; }
/* Feature strip (short linked lists) */
.link-strip { list-style: none; margin: 0; padding: 0; display: grid; gap: 2rem 1.5rem; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }
.prose .link-strip li, .home-band__wide .link-strip li { padding: 1.1rem 0 0; border-top: 2px solid var(--gold); margin: 0; }
.prose .link-strip li::before { display: none; }
.link-strip .link-grid__title { font-size: 1.3rem; }
.link-strip .link-grid__desc { margin-top: 0.35rem; }
/* Card grid on home: 3-up, orphans centred */
.home-band__wide .link-grid { display: flex; flex-wrap: wrap; justify-content: center; margin: 0; }
.home-band__wide .link-grid li { flex: 1 1 100%; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem 1.6rem; transition: border-color var(--transition), transform var(--transition); }
.home-band__wide .link-grid li:hover { border-color: var(--gold); transform: translateY(-2px); }
.home-band__wide .link-grid__title { font-size: 1.35rem; }
.home-band__wide .link-grid__desc { margin-top: 0.35rem; }
@media (min-width: 640px) { .home-band__wide .link-grid li { flex: 0 1 calc((100% - 0.75rem) / 2); } }
@media (min-width: 960px) { .home-band__wide .link-grid--wide li { flex-basis: calc((100% - 1.5rem) / 3); } }
/* Numbered steps */
.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; gap: 0 clamp(2rem, 4vw, 4rem); }
.prose .steps li, .home-band__wide .steps li { counter-increment: step; position: relative; display: block; padding: 1.25rem 0 1.25rem 3.5rem; border-top: 1px solid var(--line); margin: 0; line-height: 1.65; }
.prose .steps li::before, .home-band__wide .steps li::before { content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 1.15rem; width: auto; height: auto; border: 0; transform: none; font-family: var(--font-display); font-size: 1.9rem; line-height: 1; color: var(--gold); }
.steps a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.steps a:hover { color: var(--gold); }
@media (min-width: 820px) { .steps { grid-template-columns: 1fr 1fr; } }

.page-shell--long { padding-block: 0; }
