@charset "UTF-8";

:root {
    --brand-primary: #2f7479;
    --brand-secondary: #70a9a4;
    --brand-accent: #d2a64b;
    --brand-light: #f3f8f7;
    --brand-dark: #26343a;
    --ink: #26343a;
    --muted: #68777b;
    --line: #dce7e5;
    --white: #fff;
    --danger: #9f3434;
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --shadow-sm: 0 14px 38px rgba(30, 61, 64, .08);
    --shadow-lg: 0 28px 80px rgba(26, 55, 58, .14);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 38px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body { color: var(--ink); background: #fff; font-family: var(--sans); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--brand-primary); text-underline-offset: 3px; }
a:hover { color: #235c60; }
h1, h2, h3, h4 { color: var(--ink); font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.7rem, 6vw, 5.9rem); }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { font-size: clamp(1.22rem, 2vw, 1.65rem); }
p { color: var(--muted); }
img { max-width: 100%; height: auto; }
.container { max-width: 1240px; }
.container.narrow { max-width: 900px; }
.container.narrow-wide { max-width: 1080px; }
.section-space { padding: clamp(4.5rem, 9vw, 8.5rem) 0; }
.bg-soft { background: var(--brand-light); }
.muted { color: var(--muted); }

.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; padding: .75rem 1rem; color: #fff; background: var(--brand-dark); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.emergency-strip { padding: .4rem 0; color: #fff; background: var(--brand-dark); font-size: .77rem; letter-spacing: .015em; }
.emergency-strip span { display: inline-grid; width: 27px; height: 27px; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-weight: 800; font-size: .65rem; }
.emergency-strip p { color: rgba(255,255,255,.86); }

.site-header { border-bottom: 1px solid rgba(47,116,121,.12); background: rgba(255,255,255,.94); backdrop-filter: blur(18px); }
.navbar { min-height: 86px; padding: .6rem 0; }
.navbar-brand { display: block; width: 126px; height: 65px; overflow: hidden; }
.navbar-brand img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.navbar-nav { gap: .15rem; }
.nav-link { position: relative; padding: .65rem .68rem !important; color: #45565a; font-size: .86rem; font-weight: 600; white-space: nowrap; }
.nav-link::after { position: absolute; right: .7rem; bottom: .35rem; left: .7rem; height: 1px; background: var(--brand-primary); content: ""; transform: scaleX(0); transition: transform .25s ease; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--brand-primary) !important; }
.header-actions { display: flex; align-items: center; gap: .85rem; }
.search-link { color: var(--ink); font-size: .85rem; font-weight: 700; text-decoration: none; }
.search-link::before { display: inline-block; width: 12px; height: 12px; margin-right: 7px; border: 1.8px solid currentColor; border-radius: 50%; content: ""; vertical-align: -1px; }
.search-link::after { display: inline-block; width: 5px; height: 1.5px; margin-left: -9px; background: currentColor; content: ""; transform: rotate(45deg) translate(4px, 4px); }

.btn { border-radius: 100px; font-weight: 700; letter-spacing: .01em; }
.btn-brand { border-color: var(--brand-primary); color: #fff; background: var(--brand-primary); box-shadow: 0 8px 22px rgba(47,116,121,.18); }
.btn-brand:hover, .btn-brand:focus { border-color: #255f63; color: #fff; background: #255f63; transform: translateY(-1px); }
.btn-outline-brand { border: 1px solid var(--brand-primary); color: var(--brand-primary); background: transparent; }
.btn-outline-brand:hover { color: #fff; background: var(--brand-primary); }
.btn-lg { padding: .9rem 1.45rem; font-size: .95rem; }
.eyebrow { display: inline-block; margin-bottom: .85rem; color: var(--brand-primary); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.text-link { display: inline-flex; align-items: center; gap: .45rem; color: var(--ink); font-size: .9rem; font-weight: 750; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.section-index { display: block; margin-bottom: 3.5rem; color: var(--brand-secondary); font-family: var(--serif); font-size: 1.1rem; }

.hero-section { position: relative; min-height: min(790px, calc(100vh - 118px)); overflow: hidden; background: linear-gradient(125deg, #f7faf9 0%, #fff 48%, #edf6f4 100%); }
.hero-section::before { position: absolute; top: -20%; right: 39%; width: 1px; height: 140%; background: linear-gradient(transparent, rgba(47,116,121,.19), transparent); content: ""; transform: rotate(18deg); }
.hero-grid { display: grid; min-height: min(790px, calc(100vh - 118px)); grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.hero-copy { position: relative; z-index: 2; padding: 5rem 0; }
.hero-copy h1 { max-width: 760px; margin: 0 0 1.5rem; }
.hero-lead { max-width: 650px; margin-bottom: 2rem; font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.hero-principles { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 3.5rem; color: #5d6c70; font-size: .77rem; font-weight: 650; }
.hero-principles span { position: relative; padding-left: 1.05rem; }
.hero-principles span::before { position: absolute; top: .55em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--brand-secondary); content: ""; }
.hero-visual { position: relative; z-index: 1; aspect-ratio: .92; padding: clamp(1rem, 3vw, 2.2rem); border: 1px solid rgba(47,116,121,.11); border-radius: 46% 46% 32% 32% / 34% 34% 28% 28%; background: rgba(255,255,255,.82); box-shadow: var(--shadow-lg); }
.hero-visual::after { position: absolute; inset: 13% -13% -12% 18%; z-index: -1; border-radius: 50%; background: radial-gradient(circle, rgba(112,169,164,.19), transparent 66%); content: ""; }
.hero-visual picture, .hero-visual img { display: block; width: 100%; height: 100%; }
.hero-visual img { object-fit: cover; object-position: center; border-radius: inherit; }
.hero-visual__caption { position: absolute; right: -2rem; bottom: 8%; display: flex; align-items: center; gap: .7rem; padding: .7rem 1rem; border: 1px solid rgba(47,116,121,.12); border-radius: 100px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); color: var(--ink); font-size: .72rem; font-weight: 700; }
.hero-visual__caption i { width: 22px; height: 1px; background: var(--brand-secondary); }
.orbit { position: absolute; z-index: -1; border: 1px solid rgba(47,116,121,.16); border-radius: 50%; }
.orbit-one { inset: -6% -9% 10% 9%; }
.orbit-two { inset: 10% 5% -9% -12%; }

.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 10vw, 9rem); }
.intro-grid h2 { max-width: 590px; }
.intro-copy { padding-top: 5.5rem; }
.intro-copy .lead { color: var(--ink); font-family: var(--serif); font-size: 1.45rem; line-height: 1.55; }
.intro-copy p { margin-bottom: 1.6rem; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3.2rem; }
.section-heading > div { max-width: 690px; }
.section-heading > p { max-width: 430px; margin: 0; }
.section-heading h2 { margin: 0; }
.section-heading.compact { margin-bottom: 2.2rem; }
.section-heading-center { max-width: 680px; margin: 0 auto 2.5rem; }

.approach-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.approach-card { position: relative; min-height: 290px; padding: clamp(2rem, 4vw, 3.4rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.68); transition: background .25s ease, transform .25s ease; }
.approach-card:hover { z-index: 1; background: #fff; box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.approach-card__number { color: var(--brand-secondary); font-family: var(--serif); }
.approach-card h3 { max-width: 420px; margin: 2.2rem 0 1rem; font-size: clamp(1.55rem, 2.5vw, 2.25rem); }
.approach-card p { max-width: 500px; }
.approach-card a { color: var(--ink); font-size: .84rem; font-weight: 750; text-decoration: none; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.info-panel { position: relative; min-height: 390px; padding: 2.5rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); color: var(--ink); background: #fff; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.info-panel::after { position: absolute; right: -30px; bottom: -40px; width: 170px; height: 170px; border: 28px solid rgba(112,169,164,.12); border-radius: 50%; content: ""; }
.info-panel:nth-child(2) { color: #fff; background: var(--brand-primary); }
.info-panel:nth-child(2) h3, .info-panel:nth-child(2) p, .info-panel:nth-child(2) b { color: #fff; }
.info-panel:nth-child(3) { background: var(--brand-light); }
.info-panel:hover { color: inherit; box-shadow: var(--shadow-lg); transform: translateY(-7px); }
.info-panel > span { color: var(--brand-secondary); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.info-panel h3 { margin: 2.3rem 0 1rem; font-size: 2rem; }
.info-panel p { position: relative; z-index: 1; }
.info-panel b { position: absolute; bottom: 2.4rem; color: var(--brand-primary); font-size: .85rem; }

.bg-dark-section { color: #fff; background: var(--brand-dark); }
.section-heading.light h2, .section-heading.light p { color: #fff; }
.section-heading.light .eyebrow { color: #8cc1bc; }
.light-link { color: #fff; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.article-card { overflow: hidden; border-radius: var(--radius-md); background: #fff; box-shadow: 0 18px 50px rgba(0,0,0,.11); }
.article-card__visual { display: grid; height: 210px; place-items: center; overflow: hidden; background: linear-gradient(145deg, #dfeeea, #f5faf9); text-decoration: none; }
.article-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.article-card:hover .article-card__visual img { transform: scale(1.025); }
.article-card__monogram { display: grid; width: 96px; height: 96px; place-items: center; border: 1px solid rgba(47,116,121,.2); border-radius: 50% 50% 50% 20%; color: var(--brand-primary); font-family: var(--serif); font-size: 3rem; transform: rotate(-10deg); }
.article-card__body { padding: 1.7rem; }
.article-meta { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 1.3rem; color: var(--brand-primary); font-size: .69rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.article-card h3 { margin-bottom: .9rem; }
.article-card h3 a { color: var(--ink); text-decoration: none; }
.article-card p { display: -webkit-box; min-height: 5.1em; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; font-size: .9rem; }
.article-card__footer { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .75rem; }
.article-card__footer time { color: var(--muted); }
.article-card__footer a { font-weight: 750; text-decoration: none; }
.light-cards .article-card { border: 1px solid var(--line); box-shadow: none; }

.clean-accordion { border-top: 1px solid var(--line); }
.clean-accordion .accordion-item { padding: 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; }
.clean-accordion .accordion-button { padding: 1.6rem .2rem; color: var(--ink); background: transparent; box-shadow: none; font-family: var(--serif); font-size: 1.2rem; }
.clean-accordion .accordion-button:not(.collapsed) { color: var(--brand-primary); }
.clean-accordion .accordion-button::after { border: 1px solid var(--line); border-radius: 50%; background-position: center; background-size: 14px; }
.clean-accordion .accordion-body { padding: 0 3rem 1.6rem .2rem; }
.faq-category { display: inline-block; margin-top: 1.2rem; color: var(--brand-secondary); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.faq-filter { margin-bottom: 2.5rem; }
.faq-filter label { display: block; margin-bottom: .5rem; font-size: .78rem; font-weight: 750; }
.faq-filter input { width: 100%; padding: 1rem 1.15rem; border: 1px solid var(--line); border-radius: 12px; }

.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(3rem, 9vw, 8rem); }
.contact-grid h2 { max-width: 650px; }
.contact-grid > div:first-child > p { max-width: 670px; margin: 1.5rem 0 2rem; }
.hours-card { padding: 1.6rem 2rem; border: 1px solid rgba(47,116,121,.13); border-radius: var(--radius-md); background: rgba(255,255,255,.78); box-shadow: var(--shadow-sm); }
.hours-card div { display: flex; justify-content: space-between; gap: 2rem; padding: .75rem 0; border-bottom: 1px solid var(--line); }
.hours-card div:last-child { border-bottom: 0; }
.hours-card span { color: var(--muted); font-size: .87rem; }
.hours-card strong { color: var(--ink); font-size: .86rem; }
.hours-card.flat { padding: 0; border: 0; box-shadow: none; }
.legal-band { padding: 2.5rem 0; border-top: 1px solid var(--line); background: #fff; }
.content-disclaimer { display: flex; align-items: flex-start; gap: 1rem; margin-top: 3rem; padding: 1.5rem; border: 1px solid #d7e4e2; border-radius: var(--radius-sm); background: #f7fbfa; }
.content-disclaimer__mark { display: grid; flex: 0 0 auto; width: 32px; height: 32px; place-items: center; border-radius: 50%; color: #fff; background: var(--brand-primary); font-family: var(--serif); }
.content-disclaimer strong { display: block; margin-bottom: .25rem; }
.content-disclaimer p { margin: 0; font-size: .86rem; }

.page-hero { position: relative; padding: clamp(5rem, 10vw, 9rem) 0; overflow: hidden; background: var(--brand-light); }
.page-hero::after { position: absolute; top: -190px; right: -150px; width: 540px; height: 540px; border: 1px solid rgba(47,116,121,.13); border-radius: 50%; box-shadow: 0 0 0 65px rgba(112,169,164,.05), 0 0 0 130px rgba(112,169,164,.035); content: ""; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 980px; margin-bottom: 1.5rem; font-size: clamp(2.75rem, 6vw, 5.5rem); }
.page-hero p { max-width: 760px; margin: 0; font-size: clamp(1rem, 1.5vw, 1.22rem); }
.compact-hero { padding: clamp(4rem, 7vw, 6rem) 0; }
.profile-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 9vw, 8rem); }
.profile-aside { position: sticky; top: 140px; align-self: start; padding: 2.2rem; border-radius: var(--radius-md); background: var(--brand-dark); }
.profile-aside h2, .profile-aside p { color: #fff; }
.profile-mark { display: grid; width: 92px; height: 92px; margin-bottom: 3rem; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50% 50% 20% 50%; color: #fff; font-family: var(--serif); font-size: 2rem; }
.credential-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.credential-card { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.credential-card h3 { min-height: 2.7em; }
.timeline { padding: 0; margin: 2rem 0 0; list-style: none; }
.timeline li { position: relative; padding: 0 0 1.5rem 1.25rem; border-left: 1px solid var(--line); }
.timeline li::before { position: absolute; top: .35rem; left: -4px; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-primary); content: ""; }
.timeline strong, .timeline span { display: block; }
.timeline strong { font-size: .9rem; }
.timeline span { color: var(--muted); font-size: .78rem; }
.empty-state { padding: 3rem; border: 1px dashed #bdcfcc; border-radius: var(--radius-md); text-align: center; background: #fbfdfd; }
.empty-state.large { padding: 5rem 2rem; }

.approach-list { border-top: 1px solid var(--line); }
.approach-detail { display: grid; grid-template-columns: 90px 1fr; gap: 2rem; padding: 4rem 0; border-bottom: 1px solid var(--line); }
.approach-detail__index { color: var(--brand-secondary); font-family: var(--serif); font-size: 1.3rem; }
.approach-detail .lead { max-width: 800px; color: var(--ink); font-family: var(--serif); font-size: 1.35rem; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.detail-grid > div { padding: 1.5rem; border-radius: var(--radius-sm); background: var(--brand-light); }
.detail-grid h3 { font-family: var(--sans); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.detail-grid p { margin: 0; font-size: .87rem; }
.doctor-note { margin: 1.2rem 0; padding: 1.4rem; border-left: 3px solid var(--brand-primary); background: #f8fbfa; }
.doctor-note p { margin: .4rem 0 0; }
.approach-detail details { padding: 1rem 0; }
.approach-detail summary { color: var(--brand-primary); font-weight: 750; cursor: pointer; }

.application-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.application-card { padding: 2.5rem; border: 1px solid var(--line); border-radius: var(--radius-md); }
.application-card h2 { margin: 2rem 0 1rem; }
.verified-label { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem .65rem; border: 1px solid #b9d4cf; border-radius: 100px; color: #27655e; background: #edf8f5; font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.verified-label::before { display: grid; width: 15px; height: 15px; place-items: center; border-radius: 50%; color: #fff; background: #347b70; content: "✓"; font-size: .57rem; }
.application-card__meta { display: flex; flex-wrap: wrap; gap: .7rem 1rem; margin: 2rem 0 1.5rem; color: var(--muted); font-size: .73rem; }

.article-hero { padding: clamp(5rem, 10vw, 8rem) 0; background: linear-gradient(145deg, var(--brand-light), #fff); }
.article-hero h1 { margin: 1rem 0 1.5rem; font-size: clamp(2.55rem, 6vw, 5.3rem); }
.article-hero > .container > p { max-width: 780px; font-family: var(--serif); font-size: 1.3rem; }
.back-link { display: inline-block; margin-bottom: 1.5rem; color: var(--muted); font-size: .8rem; font-weight: 700; text-decoration: none; }
.article-audit { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; margin-top: 2.2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.article-audit span, .article-audit strong { display: block; }
.article-audit span { color: var(--muted); font-size: .7rem; text-transform: uppercase; }
.article-audit strong { margin-top: .15rem; color: var(--ink); font-size: .82rem; text-transform: none; }
.article-review-box { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 3.5rem; padding: 1.3rem; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.article-review-box div { padding: .5rem 1rem; border-right: 1px solid var(--line); }
.article-review-box div:last-child { border-right: 0; }
.article-review-box span, .article-review-box strong { display: block; }
.article-review-box span { color: var(--muted); font-size: .67rem; text-transform: uppercase; }
.article-review-box strong { margin-top: .35rem; font-size: .79rem; }
.prose { color: var(--muted); }
.prose > *:first-child { margin-top: 0; }
.prose h2 { margin: 2.4em 0 .7em; font-size: 2rem; }
.prose h3 { margin: 1.8em 0 .6em; }
.prose p, .prose li { color: #506166; }
.prose a { overflow-wrap: anywhere; }
.prose-large { font-size: 1.03rem; }
.prose-large > p:first-child { color: var(--ink); font-family: var(--serif); font-size: 1.35rem; line-height: 1.6; }
.sources { margin-top: 4rem; padding: 2rem; border-radius: var(--radius-md); background: var(--brand-light); }
.sources h2 { font-size: 1.7rem; }
.sources li { margin-bottom: .75rem; color: var(--muted); font-size: .83rem; }
.share-row { display: flex; align-items: center; flex-wrap: wrap; gap: .75rem; margin: 2rem 0; }
.share-row > span { margin-right: .4rem; font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.share-row a, .share-row button { padding: .45rem .7rem; border: 1px solid var(--line); border-radius: 100px; color: var(--ink); background: #fff; font-size: .73rem; text-decoration: none; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-grid a { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius-md); color: var(--ink); background: #fff; text-decoration: none; }
.related-grid span { color: var(--brand-primary); font-size: .7rem; font-weight: 750; }
.related-grid h3 { margin: 1.1rem 0 .7rem; }
.related-grid p { font-size: .85rem; }

.category-filter { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 3rem; }
.category-filter a { padding: .55rem .8rem; border: 1px solid var(--line); border-radius: 100px; color: var(--ink); background: #fff; font-size: .72rem; font-weight: 700; text-decoration: none; }
.category-filter a.active, .category-filter a:hover { border-color: var(--brand-primary); color: #fff; background: var(--brand-primary); }
.category-filter span { opacity: .65; margin-left: .25rem; }
.hero-search { display: flex; max-width: 650px; margin-top: 2rem; padding: .35rem; border: 1px solid rgba(47,116,121,.22); border-radius: 100px; background: #fff; box-shadow: var(--shadow-sm); }
.hero-search input { flex: 1; min-width: 0; padding: .75rem 1rem; border: 0; outline: 0; background: transparent; }
.hero-search button { padding: .65rem 1.2rem; border: 0; border-radius: 100px; color: #fff; background: var(--brand-primary); font-weight: 750; }
.live-search-wrap { position: relative; max-width: 650px; }
.live-search-results { position: absolute; z-index: 20; top: calc(100% + .5rem); right: 0; left: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-lg); }
.live-search-results[hidden] { display: none; }
.live-search-results a { display: block; padding: .8rem 1rem; border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; }
.live-search-results a:last-child { border-bottom: 0; }
.live-search-results a:hover { background: var(--brand-light); }
.live-search-results small, .live-search-results strong { display: block; }
.live-search-results small { color: var(--brand-primary); font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.live-search-results strong { font-size: .82rem; }

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.video-card { padding: 1.3rem; border: 1px solid var(--line); border-radius: var(--radius-md); }
.video-cover { display: grid; height: 210px; margin-bottom: 1.5rem; place-items: center; overflow: hidden; border-radius: 16px; color: #fff; background: var(--brand-dark); font-size: 2rem; }
.video-cover img { width: 100%; height: 100%; object-fit: cover; }
.video-card h2 { font-size: 1.65rem; }
.video-card small { display: block; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); }
.publication-list article { display: grid; grid-template-columns: 100px 1fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.publication-list article > span { color: var(--brand-secondary); font-family: var(--serif); font-size: 1.4rem; }
.publication-list article h3, .publication-list article h2 { margin-bottom: .4rem; font-size: 1.5rem; }
.publication-list article p { margin: 0; }
.publication-list.detailed small { color: var(--brand-primary); font-weight: 700; text-transform: uppercase; }

.contact-page-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 9vw, 8rem); }
.contact-facts { display: grid; gap: .8rem; }
.contact-facts article { padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.contact-facts span { display: block; color: var(--brand-primary); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.contact-facts p { margin: .35rem 0 0; }
.contact-facts a { display: inline-block; margin-top: .35rem; color: var(--ink); font-family: var(--serif); font-size: 1.2rem; text-decoration: none; }
.transport-notes { margin-top: 2.5rem; }
.transport-notes h3 { font-family: var(--sans); font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.form-card { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.form-card > p { margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: .45rem; color: var(--ink); font-size: .75rem; font-weight: 750; }
.field input, .field textarea, .field select { width: 100%; padding: .85rem 1rem; border: 1px solid #cbdad8; border-radius: 10px; color: var(--ink); background: #fff; outline: 0; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brand-primary); box-shadow: 0 0 0 3px rgba(47,116,121,.11); }
.check-field label { display: flex; align-items: flex-start; gap: .7rem; font-weight: 500; }
.check-field input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--brand-primary); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.map-frame, .map-placeholder { height: 430px; margin-top: 5rem; overflow: hidden; border-radius: var(--radius-md); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder { display: grid; place-items: center; align-content: center; padding: 2rem; text-align: center; background: linear-gradient(135deg, #d9e9e6, #f2f7f6); }
.map-placeholder span { color: var(--ink); font-family: var(--serif); font-size: 2rem; }
.appointment-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 2rem; }
.notice-card { margin-bottom: 1rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--brand-light); }
.notice-card.emergency { border-color: #e4caca; background: #fff8f8; }
.notice-card.emergency strong { color: var(--danger); }
.notice-card p, .notice-card li { color: var(--muted); font-size: .84rem; }
.notice-card ul { padding-left: 1.2rem; margin: .8rem 0 0; }
.legal-document { padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.document-meta { padding-top: 1rem; color: var(--muted); font-size: .76rem; }

.search-summary { margin-bottom: 2rem; }
.search-results article { padding: 2rem 0; border-bottom: 1px solid var(--line); }
.search-results article > span { color: var(--brand-primary); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.search-results h2 { margin: .5rem 0 .7rem; font-size: 1.65rem; }
.search-results h2 a { color: var(--ink); text-decoration: none; }
.search-results p { margin: 0; }
.search-suggestions { padding: 3rem; border-radius: var(--radius-md); background: var(--brand-light); }
.search-suggestions div { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.search-suggestions a { padding: .5rem .8rem; border-radius: 100px; color: #fff; background: var(--brand-primary); font-size: .75rem; text-decoration: none; }

.error-page { display: grid; min-height: 65vh; padding: 5rem 0; place-items: center; }
.error-page .container > span { color: var(--brand-secondary); font-family: var(--serif); font-size: 7rem; line-height: 1; }
.error-page h1 { margin: 1rem auto; font-size: 3rem; }

.site-footer { padding: 5rem 0 1.5rem; color: #fff; background: #1d2b30; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 3rem; }
.footer-brand { margin-bottom: 1rem; font-family: var(--serif); font-size: 2rem; }
.site-footer p, .site-footer address { color: rgba(255,255,255,.63); font-size: .83rem; font-style: normal; }
.site-footer h2 { color: #fff; font-family: var(--sans); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.site-footer ul { padding: 0; margin: 1.3rem 0 0; list-style: none; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a, .link-button { color: rgba(255,255,255,.74); font-size: .82rem; text-decoration: none; }
.site-footer a:hover, .link-button:hover { color: #fff; }
.link-button { padding: 0; border: 0; background: transparent; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; font-size: .72rem; }

.cookie-panel { position: fixed; z-index: 2000; right: 1.25rem; bottom: 1.25rem; width: min(480px, calc(100% - 2.5rem)); padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 25px 80px rgba(14,36,38,.25); }
.cookie-panel[hidden] { display: none; }
.cookie-panel__head { display: flex; justify-content: space-between; gap: 2rem; }
.cookie-panel h2 { margin: 0; font-size: 1.65rem; }
.cookie-panel p { font-size: .82rem; }
.cookie-close { border: 0; color: var(--muted); background: transparent; font-size: 1.5rem; }
.cookie-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin: 1.2rem 0; }
.cookie-options label { display: flex; align-items: flex-start; gap: .5rem; padding: .75rem; border: 1px solid var(--line); border-radius: 10px; font-size: .72rem; }
.cookie-options input { margin-top: .2rem; accent-color: var(--brand-primary); }
.cookie-options span, .cookie-options strong, .cookie-options small { display: block; }
.cookie-options small { color: var(--muted); }
.cookie-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cookie-actions a { font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1199.98px) {
    .navbar-collapse { padding: 1.2rem 0; border-top: 1px solid var(--line); }
    .navbar-nav { align-items: stretch !important; }
    .nav-link { padding: .72rem 0 !important; }
    .nav-link::after { display: none; }
    .header-actions { margin-top: 1rem; }
}

@media (max-width: 991.98px) {
    .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-bottom: 4rem; }
    .hero-copy { padding: 5rem 0 1rem; }
    .hero-visual { max-width: 590px; margin: 0 auto; }
    .intro-grid, .contact-grid, .profile-grid, .contact-page-grid, .appointment-layout { grid-template-columns: 1fr; }
    .intro-copy { padding-top: 0; }
    .profile-aside { position: static; }
    .info-grid, .articles-grid, .credential-grid, .video-grid { grid-template-columns: repeat(2, 1fr); }
    .info-panel { min-height: 340px; }
    .article-review-box { grid-template-columns: repeat(2, 1fr); }
    .article-review-box div:nth-child(2) { border-right: 0; }
    .article-review-box div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 767.98px) {
    .emergency-strip p { max-width: 310px; line-height: 1.4; }
    .section-space { padding: 4.2rem 0; }
    h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
    h2 { font-size: clamp(1.9rem, 9vw, 2.8rem); }
    .hero-section, .hero-grid { min-height: 0; }
    .hero-copy { padding-top: 3.5rem; }
    .hero-actions { align-items: flex-start; flex-direction: column; }
    .hero-principles { gap: .7rem 1.1rem; margin-top: 2.5rem; }
    .hero-visual__caption { right: .5rem; }
    .section-heading { align-items: start; flex-direction: column; gap: 1rem; }
    .approach-grid, .info-grid, .articles-grid, .credential-grid, .application-grid, .detail-grid, .video-grid, .related-grid { grid-template-columns: 1fr; }
    .approach-card { min-height: 250px; }
    .info-panel { min-height: 330px; }
    .article-card__visual { height: 230px; }
    .approach-detail { grid-template-columns: 1fr; gap: 1rem; padding: 3rem 0; }
    .article-review-box { grid-template-columns: 1fr; }
    .article-review-box div { border-right: 0; border-bottom: 1px solid var(--line); }
    .article-review-box div:last-child { border-bottom: 0; }
    .form-grid { grid-template-columns: 1fr; }
    .field.full { grid-column: auto; }
    .publication-list article { grid-template-columns: 65px 1fr; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: .5rem; }
    .cookie-options { grid-template-columns: 1fr; }
    .cookie-actions { align-items: stretch; flex-direction: column; }
}

@media (max-width: 480px) {
    .container { padding-right: 1.15rem; padding-left: 1.15rem; }
    .navbar-brand { width: 105px; height: 55px; }
    .hero-visual { border-radius: 28px; }
    .hero-visual__caption { right: 0; bottom: 2%; font-size: .63rem; }
    .contact-page-grid { gap: 3rem; }
    .form-card { padding: 1.25rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div { grid-column: auto !important; }
    .cookie-panel { right: .6rem; bottom: .6rem; width: calc(100% - 1.2rem); max-height: calc(100vh - 1.2rem); overflow-y: auto; }
}

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