/* Çağdaş Karsan — Bootstrap 5 theme.
   Accent: #00a2c3. All other interface colors are neutral or transparent
   variations of this accent. Responsive rules are grouped at the end. */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/inter/inter-latin-ext-wght-normal.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
        U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
        U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
        U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/inter/inter-latin-wght-normal.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC,
        U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
        U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
    --brand: #00a2c3;
    --brand-rgb: 0, 162, 195;
    --brand-soft: rgba(var(--brand-rgb), .065);
    --brand-section: rgba(var(--brand-rgb), .05);
    --brand-medium: rgba(var(--brand-rgb), .12);
    --brand-border: rgba(var(--brand-rgb), .25);
    --ink: #202020;
    --text: #484848;
    --muted: #686868;
    --white: #ffffff;
    --surface: #f7f7f7;
    --line: #e7e7e7;
    --line-strong: #d5d5d5;
    --radius-sm: 9px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 8px 30px rgba(0, 0, 0, .035);
    --shadow-md: 0 18px 50px rgba(0, 0, 0, .065);
    --font: "Inter", "Segoe UI", Arial, sans-serif;
    --section-space: clamp(64px, 5vw, 92px);
    --title-hero: clamp(48px, 3.8vw, 58px);
    --title-page: clamp(32px, 2.4vw, 36px);
    --title-section: clamp(28px, 2.2vw, 34px);
    --title-article: clamp(24px, 1.8vw, 28px);
    --title-card: clamp(20px, 1.5vw, 22px);
    --bs-primary: var(--brand);
    --bs-primary-rgb: var(--brand-rgb);
    --bs-body-bg: var(--white);
    --bs-body-color: var(--text);
    --bs-body-font-family: var(--font);
    --bs-border-color: var(--line);
    --bs-link-color: var(--ink);
    --bs-link-hover-color: var(--ink);
}

/* 01. Foundations, layout, accessibility */
html { scroll-padding-top: 120px; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background: var(--white);
    color: var(--text);
}
::selection { background: var(--brand-medium); color: var(--ink); }
h1, h2, h3, h4 {
    color: var(--ink);
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: -.03em;
}
h1 { font-size: var(--title-page); }
h2 { font-size: var(--title-section); }
h3 { font-size: var(--title-card); }
h4 { font-size: 18px; }
p { margin-bottom: 1.5rem; }
strong { font-weight: 650; }
a { color: inherit; text-decoration: none; text-underline-offset: 5px; }
a:hover { color: var(--ink); }
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button, input { font: inherit; }
img { max-width: 100%; height: auto; }
figure { margin: 0; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 5px; }
main:focus { outline: none; }
.container {
    width: calc(100% - clamp(40px, 8vw, 192px));
    max-width: 1760px;
    padding-inline: 0;
    margin-inline: auto;
}
.row > * { min-width: 0; }
.container > .row { --bs-gutter-x: 40px; }
.muted { color: var(--muted); }
.skip-link {
    position: fixed;
    inset: 12px auto auto 12px;
    padding: 12px 20px;
    z-index: 1100;
    transform: translateY(-150%);
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius-sm);
}
.skip-link:focus { transform: translateY(0); color: var(--white); }
.fa-solid, .fa-brands { flex-shrink: 0; }

/* Logo transition. Hidden by default, so disabling JavaScript never blocks content. */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}
.is-page-loading .page-loader { opacity: 1; visibility: visible; pointer-events: auto; }
.page-loader-content { text-align: center; max-width: 100%; }
.page-loader .loader-logo { margin-inline: auto; }
.loader-progress {
    display: block;
    width: 180px;
    height: 3px;
    margin: 28px auto 20px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--brand-medium);
}
.loader-progress > span {
    display: block;
    width: 40%;
    height: 100%;
    border-radius: inherit;
    background: var(--brand);
    animation: loader-slide 1s ease-in-out infinite;
}
.page-loader-content p { margin: 0; color: var(--muted); font-size: 12px; letter-spacing: .04em; }
@keyframes loader-slide {
    from { transform: translateX(-110%); }
    to { transform: translateX(360%); }
}

/* 02. Header and navigation */
.contact-topbar { background: var(--brand); color: var(--white); }
.contact-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 40px; }
.contact-topbar a { display: inline-flex; align-items: center; gap: 10px; min-height: 40px; padding-block: 6px; color: var(--white); font-size: 12px; line-height: 1.5; }
.contact-topbar a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.contact-topbar a:focus-visible { outline: 2px solid var(--white); outline-offset: -2px; border-radius: 3px; }
.contact-topbar i { font-size: 11px; }
.topbar-icon { display: grid; place-items: center; width: 27px; height: 27px; flex-shrink: 0; border-radius: 50%; background: rgba(255, 255, 255, .16); }
.topbar-location strong { font-weight: 550; }
.topbar-city { font-weight: 400; }
.topbar-contact { display: flex; align-items: center; gap: 18px; }
.topbar-label { padding-right: 18px; border-right: 1px solid rgba(255, 255, 255, .35); font-size: 12px; line-height: 1.5; }
.contact-topbar .topbar-phone { font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.navbar { min-height: 106px; padding-block: 17px; column-gap: 32px; }
.brand-crop {
    position: relative;
    display: block;
    width: 292px;
    height: 68px;
    flex-shrink: 0;
    overflow: hidden;
    margin: 0;
}
.brand-crop img {
    position: absolute;
    width: 300px;
    height: 300px;
    max-width: none;
    top: -110px;
    left: -4px;
}
.navbar-nav { gap: clamp(18px, 1.55vw, 32px); }
.navbar .nav-link {
    position: relative;
    color: var(--text);
    font-size: 15px;
    font-weight: 550;
    white-space: nowrap;
    padding: 12px 0 !important;
    transition: color .2s ease;
}
.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 3px;
    border-radius: 3px;
    background: var(--brand);
    transition: width .2s ease;
}
.navbar .nav-link:hover::after, .navbar .nav-link.active::after { width: 22px; }
.navbar .nav-link.active { color: var(--ink); font-weight: 650; }
.nav-contact-item { margin-left: 12px; }
.navbar-toggler {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--ink);
    font-size: 20px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px var(--brand-border); }

/* The drawer lives outside the sticky header so its backdrop stacks correctly. */
.mobile-menu {
    --bs-offcanvas-width: min(380px, calc(100vw - 24px));
    --bs-offcanvas-bg: var(--white);
    --bs-offcanvas-border-color: var(--line);
    --bs-offcanvas-transition: transform .3s cubic-bezier(.22, 1, .36, 1);
    box-shadow: -12px 0 40px rgba(0, 0, 0, .08);
}
.mobile-menu .offcanvas-header { gap: 12px; margin-inline: 22px; padding: max(20px, env(safe-area-inset-top)) 0 20px; border-bottom: 1px solid var(--line); }
.mobile-menu .brand-crop { width: 212px; height: 52px; }
.mobile-menu .brand-crop img { width: 220px; height: 220px; top: -80px; }
.mobile-menu-close { display: grid; place-items: center; width: 44px; height: 44px; margin-left: auto; flex-shrink: 0; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--ink); font-size: 19px; transition: border-color .2s ease, background .2s ease; }
.mobile-menu-close:hover { background: var(--brand-soft); border-color: var(--brand-border); }
.mobile-menu .offcanvas-body { display: flex; flex-direction: column; padding: 24px 22px max(24px, env(safe-area-inset-bottom)); overscroll-behavior: contain; }
.mobile-menu-nav, .mobile-menu-footer { flex-shrink: 0; }
.mobile-menu-label { margin: 0 0 14px 14px; color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .12em; }
.mobile-menu-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.mobile-menu-link { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 16px; min-height: 52px; border-radius: 10px; color: var(--text); font-size: 15px; font-weight: 500; line-height: 1.5; transition: background .2s ease; }
.mobile-menu-link > i { color: var(--brand); font-size: 11px; }
.mobile-menu-link:hover, .mobile-menu-link.active { background: var(--brand-soft); color: var(--ink); }
.mobile-menu-link.active { font-weight: 650; box-shadow: inset 3px 0 var(--brand); }
.mobile-menu .mobile-menu-contact { width: 100%; margin-top: 22px; justify-content: space-between; min-height: 52px; }
.mobile-menu-footer { margin-top: auto; padding-top: 32px; }
.mobile-menu-phone { display: flex; align-items: center; gap: 13px; padding: 16px; border-radius: 14px; background: var(--brand-soft); }
.mobile-menu-phone > i { display: grid; place-items: center; flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--white); color: var(--brand); font-size: 15px; }
.mobile-menu-phone small { display: block; margin-bottom: 3px; color: var(--muted); font-size: 11px; }
.mobile-menu-phone strong { display: block; color: var(--ink); font-size: 16px; font-weight: 600; }
.mobile-menu-location { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; margin-top: 10px; color: var(--muted); font-size: 12px; }
.mobile-menu-location > i { color: var(--brand); }

/* 03. Buttons and links */
.btn {
    --bs-btn-focus-box-shadow: 0 0 0 4px var(--brand-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    min-height: 58px;
    padding: 16px 26px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.5;
    white-space: normal;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn .fa-solid { font-size: 14px; transition: transform .2s ease; }
.btn:hover .fa-arrow-right, .btn:hover .fa-arrow-right-long { transform: translateX(3px); }
.btn-brand {
    --bs-btn-color: var(--white);
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-color: var(--white);
    --bs-btn-hover-bg: var(--brand);
    --bs-btn-hover-border-color: var(--brand);
    --bs-btn-active-color: var(--white);
    --bs-btn-active-bg: var(--brand);
    --bs-btn-active-border-color: var(--brand);
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}
.btn-brand:hover, .btn-brand:focus-visible, .btn-brand:active {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
    box-shadow: 0 7px 22px var(--brand-border);
    transform: translateY(-2px);
}
.btn-outline-brand {
    --bs-btn-color: var(--ink);
    --bs-btn-active-color: var(--ink);
    --bs-btn-active-bg: var(--brand-soft);
    --bs-btn-active-border-color: var(--brand);
    background: var(--white);
    border-color: var(--line-strong);
    color: var(--ink);
}
.btn-outline-brand:hover, .btn-outline-brand:focus-visible {
    background: var(--brand-soft);
    border-color: var(--brand);
    color: var(--ink);
}
.btn.nav-contact { min-height: 52px; padding: 13px 22px; font-size: 14px; gap: 22px; }
.btn-light-brand {
    --bs-btn-color: var(--ink);
    --bs-btn-active-color: var(--ink);
    --bs-btn-active-bg: var(--white);
    --bs-btn-active-border-color: var(--white);
    background: var(--white);
    border-color: var(--white);
    color: var(--ink);
}
.btn-light-brand:hover {
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    min-height: 44px;
    padding-block: 8px;
    border-bottom: 2px solid var(--brand);
    color: var(--ink);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.5;
}
.text-link i { color: var(--brand); font-size: 14px; transition: transform .2s ease; }
.text-link:hover i { transform: translateX(3px); }

/* 04. Homepage: identity, portrait, approach */
.hero { padding: clamp(40px, 4vw, 76px) 0 0; background: var(--white); }
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(36px, 4vw, 64px);
    max-width: 1440px;
    margin-inline: auto;
}
.hero-copy { min-width: 0; padding-block: 8px; }
.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--text);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.5;
    letter-spacing: .13em;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 3px;
    flex-shrink: 0;
    border-radius: 3px;
    background: var(--brand);
}
.hero h1 {
    margin: 0 0 14px;
    font-size: var(--title-hero);
    font-weight: 650;
    line-height: 1.12;
    letter-spacing: -.045em;
}
.hero-profession {
    margin-bottom: 9px;
    color: var(--ink);
    font-size: clamp(20px, 1.6vw, 24px);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -.02em;
}

.hero-role {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 550;
    line-height: 1.5;
    margin-bottom: 27px;
}
.hero-role > span { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }
.hero-description {
    max-width: 560px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.85;
    letter-spacing: -.015em;
}
.hero-description strong { font-weight: 550; color: var(--ink); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 28px; }
.hero-location {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 44px;
    margin-top: 23px;
    font-size: 13px;
    font-weight: 550;
    color: var(--text);
}
.hero-location i { color: var(--brand); font-size: 16px; }
.hero-location span {
    color: var(--muted);
    font-weight: 400;
    padding-left: 10px;
    border-left: 1px solid var(--line-strong);
}
.hero-visual { min-width: 0; background: transparent; }
.hero-image-wrap { overflow: hidden; border-radius: var(--radius-md); }
.hero-portrait {
    display: block;
    width: 100%;
    height: clamp(340px, 29vw, 460px);
    object-fit: cover;
    object-position: 40% 44%;
}
.hero-photo-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}
.hero-photo-caption > i { color: var(--brand); font-size: 16px; }
.hero-principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: clamp(45px, 4vw, 70px);
    padding: 32px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.hero-principles > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    border-right: 1px solid var(--line);
    padding-right: 20px;
}
.hero-principles > div:first-child { justify-content: flex-start; }
.hero-principles > div:last-child { border: 0; padding-right: 0; }
.hero-principles i { color: var(--brand); font-size: 27px; }
.hero-principles span { color: var(--muted); font-size: 14px; line-height: 1.7; }
.hero-principles strong { color: var(--ink); font-size: 15px; font-weight: 550; }

/* 05. Section typography and reading rhythm */
.section-pad { padding-block: var(--section-space); }
.section-bottom { padding-bottom: var(--section-space); }
.section-title {
    font-size: var(--title-section);
    font-weight: 650;
    line-height: 1.25;
    letter-spacing: -.03em;
    margin-bottom: 24px;
    text-wrap: balance;
}
.heading-accent { color: var(--ink); }
.section-description {
    max-width: 600px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    letter-spacing: -.012em;
    margin-bottom: 23px;
}
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.section-heading .section-title { margin-bottom: 16px; }
.section-heading .section-description { margin-bottom: 0; }
.section-heading > .text-link { flex-shrink: 0; }
.section-aside { max-width: 450px; }
.editorial-copy { color: var(--text); font-size: 18px; line-height: 1.95; letter-spacing: -.014em; }
.editorial-copy > p { max-width: 76ch; }
.editorial-copy p:first-child { color: var(--ink); }
.editorial-copy p:last-child { margin-bottom: 0; }
.editorial-copy strong { color: var(--ink); font-weight: 600; }
.introduction { padding-block: clamp(52px, 5vw, 80px); background: var(--brand-section); }
.introduction-grid {
    display: grid;
    grid-template-columns: minmax(240px, .8fr) minmax(0, 1.7fr);
    align-items: center;
    gap: clamp(56px, 4vw, 64px);
    max-width: 1360px;
    margin-inline: auto;
}
.introduction-heading { max-width: 340px; }
.introduction-heading .eyebrow { margin-bottom: 18px; }
.introduction-heading .section-title { margin-bottom: 18px; }
.introduction-heading .section-description { font-size: 16px; margin-bottom: 20px; }
.introduction-heading .text-link { font-size: 14px; }
.introduction-copy { max-width: 72ch; font-size: 17px; line-height: 1.85; letter-spacing: -.012em; }
.introduction-copy p { margin-bottom: 18px; }
.introduction-copy p:last-child { margin-bottom: 0; }
.introduction-biography { color: var(--text); }
.introduction-approach {
    margin-top: 28px;
    padding: 2px 0 2px 24px;
    border-left: 2px solid var(--brand);
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}
.introduction-approach h3 { margin: 0 0 14px; font-size: 18px; font-weight: 600; line-height: 1.5; letter-spacing: -.02em; }
.soft-section { background: var(--surface); }
.article-heading { font-size: var(--title-article); margin-bottom: 22px; letter-spacing: -.025em; }
.lead-copy { font-size: 21px; line-height: 1.85; }

/* 06. Therapy areas */
.area-grid { --bs-gutter-x: 24px; --bs-gutter-y: 24px; }
.area-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 325px;
    padding: clamp(26px, 2.2vw, 40px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--ink);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.area-card:hover, .area-card:focus-visible {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
}
.area-card-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 29px; }
.area-symbol {
    display: inline-grid;
    place-items: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--brand-soft);
    color: var(--brand);
    border-radius: 17px;
    font-size: 25px;
}
.circle-arrow {
    display: grid;
    place-items: center;
    width: 37px;
    height: 37px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--muted);
    font-size: 13px;
    transform: rotate(-35deg);
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.area-card:hover .circle-arrow { transform: rotate(0); background: var(--brand); color: var(--white); border-color: var(--brand); }
.area-card h3 { font-size: var(--title-card); font-weight: 600; letter-spacing: -.04em; margin-bottom: 15px; }
.area-card p { font-size: 16px; line-height: 1.8; color: var(--muted); margin-bottom: 28px; }
.area-more { display: inline-flex; align-items: center; gap: 13px; margin-top: auto; font-size: 13px; font-weight: 650; }
.area-more i { color: var(--brand); }

/* 07. Academic feature and resource links */
.academic-feature {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(36px, 4vw, 64px);
    max-width: 1360px;
    margin-inline: auto;
    padding-block: 15px;
}
.academic-feature-copy > p:not(.eyebrow) { max-width: 540px; color: var(--text); font-size: 17px; line-height: 1.85; }
.academic-resources { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.academic-intro .resource-link {
    padding: 24px;
    margin: 0 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: none;
    transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, translate .22s ease;
}
.academic-intro .resource-link:last-child { margin-bottom: 0; }
.academic-intro .resource-link:hover { border-color: var(--line); box-shadow: none; }
.academic-intro .resource-link:focus-visible { border-color: var(--brand); background: var(--brand-section); box-shadow: var(--shadow-sm); }
.academic-intro .resource-icon { transition: background-color .22s ease, color .22s ease; }
.academic-intro .resource-link > .fa-solid { transition: color .22s ease, translate .22s ease; }
.academic-intro .resource-link:focus-visible .resource-icon { background: var(--brand); color: var(--white); }
.academic-intro .resource-link:focus-visible > .fa-solid { color: var(--brand); }
@media (hover: hover) and (pointer: fine) {
    .academic-intro .resource-link:hover { border-color: var(--brand-border); background: var(--brand-section); box-shadow: var(--shadow-sm); translate: 0 -2px; }
    .academic-intro .resource-link:hover .resource-icon { background: var(--brand); color: var(--white); }
    .academic-intro .resource-link:hover > .fa-solid { color: var(--brand); translate: 2px -2px; }
}
.resource-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 27px;
    margin-bottom: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.academic-resources .resource-link { margin-bottom: 0; }
.resource-link:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.resource-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 14px;
    color: var(--brand);
    background: var(--brand-soft);
    font-size: 29px;
}
.resource-link > span:nth-child(2) { min-width: 0; }
.resource-link strong, .resource-link small { display: block; }
.resource-link strong { font-size: 19px; color: var(--ink); letter-spacing: -.03em; }
.resource-link small { margin-top: 5px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.resource-link > .fa-solid { color: var(--muted); font-size: 14px; margin-left: auto; }
.academic-feature .resource-link { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; height: 100%; margin: 0; padding: 26px; border: 1px solid var(--brand-border); border-radius: var(--radius-md); background: var(--brand-section); transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.academic-feature .resource-link:hover { border-color: var(--brand); background: var(--brand-medium); box-shadow: var(--shadow-sm); }
.academic-feature .resource-link strong { font-size: 18px; }
.academic-feature .resource-link small { margin-top: 8px; font-size: 13px; line-height: 1.75; }
.academic-feature .resource-link > .fa-solid { display: block; position: absolute; top: 28px; right: 24px; color: var(--brand); font-size: 12px; }
.academic-feature .resource-icon { width: 46px; height: 46px; font-size: 25px; border-radius: 12px; background: var(--white); }

/* 08. FAQ — works without JavaScript */
.faq-section { padding-block: var(--section-space); background: var(--brand-section); }
.home-faq { max-width: 1100px; margin-inline: auto; }
.home-faq .section-heading { margin-bottom: 28px; }
.home-faq .section-title { margin-bottom: 12px; }
.home-faq .eyebrow { margin-bottom: 16px; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .2s ease;
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item[open]:not([data-expanded="false"]) { border-color: var(--brand-border); }
.faq-item[open]:not([data-expanded="false"]) summary { background: var(--brand-soft); }
.faq-item summary { list-style: none; display: flex; align-items: center; gap: 20px; cursor: pointer; padding: 25px 28px; transition: background .28s ease; }
.faq-item summary:focus-visible { outline-offset: -4px; border-radius: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { margin: 0; font-size: 17px; font-weight: 600; letter-spacing: -.025em; line-height: 1.55; }
.faq-number { color: var(--muted); font-size: 12px; font-weight: 500; font-variant-numeric: tabular-nums; flex-shrink: 0; }
.faq-toggle {
    position: relative;
    margin-left: auto;
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    background: var(--surface);
    border-radius: 50%;
    transition: background .28s ease;
}
.faq-toggle::before, .faq-toggle::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 14px;
    height: 1.5px;
    width: 11px;
    background: var(--ink);
    transition: transform .28s ease, background .28s ease;
}
.faq-toggle::after { transform: rotate(90deg); }
.faq-item[open]:not([data-expanded="false"]) .faq-toggle { background: var(--brand); }
.faq-item[open]:not([data-expanded="false"]) .faq-toggle::before, .faq-item[open]:not([data-expanded="false"]) .faq-toggle::after { background: var(--white); }
.faq-item[open]:not([data-expanded="false"]) .faq-toggle::after { transform: rotate(0); }
.disclosure-body { overflow: hidden; }
.collapsing { transition: height .28s cubic-bezier(.22, 1, .36, 1); }
.faq-answer { padding: 22px 66px 28px; color: var(--text); font-size: 16px; line-height: 1.9; background: var(--white); }
.faq-answer p { margin: 0; }

/* 09. Light contact invitation */
.contact-banner { padding-bottom: var(--section-space); }
.contact-banner--inner { padding-top: clamp(20px, 2vw, 32px); }
.contact-banner:not(.contact-banner--inner) { padding-bottom: clamp(40px, 4vw, 64px); }
.contact-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    max-width: 1360px;
    margin-inline: auto;
    background: linear-gradient(115deg, var(--brand-section), var(--brand-medium));
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    padding: clamp(30px, 3.2vw, 48px);
}
.contact-banner-message { display: flex; align-items: flex-start; gap: 24px; min-width: 0; }
.contact-banner-icon { display: grid; place-items: center; flex-shrink: 0; width: 60px; height: 60px; border: 1px solid var(--brand-border); border-radius: 18px; background: var(--white); color: var(--brand); font-size: 26px; }
.contact-banner-copy { max-width: 610px; }
.contact-banner .eyebrow { color: var(--muted); margin-bottom: 12px; font-size: 10px; }
.contact-banner .eyebrow::before { background: var(--brand); }
.contact-banner h2 {
    color: var(--ink);
    font-size: clamp(26px, 2.1vw, 32px);
    font-weight: 650;
    line-height: 1.25;
    letter-spacing: -.03em;
    margin-bottom: 12px;
}
.contact-banner-copy > p:not(.eyebrow) { max-width: 580px; font-size: 16px; color: var(--muted); line-height: 1.8; margin: 0; }
.contact-banner-location { display: inline-flex; align-items: center; gap: 8px; margin-top: 17px; color: var(--muted); font-size: 12px; }
.contact-banner-location i { color: var(--brand); }
.contact-banner-actions { display: grid; justify-items: start; gap: 18px; flex-shrink: 0; padding-left: 32px; border-left: 1px solid var(--brand-border); }
.contact-banner-actions .btn { min-width: 210px; min-height: 52px; padding-block: 13px; }
.banner-phone { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; color: var(--text); font-size: 17px; font-weight: 600; line-height: 1.5; }
.banner-phone small { display: block; margin-bottom: 2px; color: var(--muted); font-size: 11px; font-weight: 400; }
.banner-phone:hover, .banner-phone:focus-visible { color: var(--ink); text-decoration: underline; text-decoration-color: var(--brand); }
.banner-phone i { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--white); font-size: 13px; color: var(--brand); }
/* 10. Footer */
.site-footer { border-top: 2px solid var(--brand); background: var(--white); }
.footer-main { padding-block: 48px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr 1fr; gap: clamp(35px, 5vw, 90px); align-items: start; }
.footer-grid > div { min-width: 0; }
.footer-links { padding-left: 15px; }
.footer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    padding-block: 12px;
}
.footer-updated { display: flex; align-items: baseline; gap: 8px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.footer-updated > i { color: var(--brand); font-size: 12px; }
.footer-updated time { color: var(--text); white-space: nowrap; }
.footer-editor { display: flex; align-items: baseline; gap: 8px; margin: 0 0 0 auto; color: var(--muted); font-size: 12px; line-height: 1.7; }
.footer-editor > i { color: var(--brand); font-size: 12px; }
.footer-editor a { color: var(--text); font-weight: 500; }
.footer-editor-title { color: var(--muted); font-weight: 400; }
.footer-editor a:hover { text-decoration: underline; text-decoration-color: var(--brand); }
.footer-brand { margin-bottom: 27px; }
.footer-intro { color: var(--muted); font-size: 16px; line-height: 1.9; margin-bottom: 25px; }
.social-links { display: flex; flex-wrap: wrap; gap: 14px; }
.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    font-size: 12px;
    font-weight: 600;
    transition: border-color .2s ease;
}
.social-links a:hover { border-color: var(--brand); }
.social-links .fa-brands { color: var(--brand); font-size: 18px; }
.social-links .fa-solid { color: var(--muted); font-size: 10px; }
.footer-heading { margin: 13px 0 25px; color: var(--ink); font-size: 17px; font-weight: 600; letter-spacing: -.025em; }
.footer-nav { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: 15px; color: var(--muted); }
.footer-nav a { display: inline-flex; align-items: center; min-height: 35px; }
.footer-nav a:hover { text-decoration: underline; text-decoration-color: var(--brand); }
.footer-phone {
    display: block;
    width: fit-content;
    color: var(--ink);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -.03em;
    margin-bottom: 9px;
}
.footer-email { display: inline-block; min-height: 34px; font-size: 15px; color: var(--text); }
.site-footer address { max-width: 400px; margin: 17px 0 12px; color: var(--muted); font-size: 15px; line-height: 1.9; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    border-top: 1px solid var(--line-strong);
    padding-block: 20px;
    font-size: 11px;
    color: var(--muted);
}

.footer-bottom p { margin: 0; }
.agency-credit { display: flex; align-items: center; gap: 12px; max-width: 580px; text-align: right; }
.agency-logo { display: inline-flex; align-items: center; flex-shrink: 0; padding: 9px 10px; border-radius: 6px; background: var(--brand); }
.agency-logo img { display: block; width: 82px; height: auto; }
.agency-credit > p { min-width: 0; }
.agency-credit a { color: var(--text); }
.agency-credit a:hover { text-decoration: underline; text-decoration-color: var(--brand); }

/* 11. Unified inner-page heading and breadcrumb */
.page-header {
    position: relative;
    margin-bottom: clamp(36px, 3.5vw, 52px);
    padding: 24px 0 36px;
    background: var(--brand-soft);
    border-bottom: 1px solid var(--brand-border);
}
.page-header-content { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.page-header-content > div:first-child { min-width: 0; }
.page-header h1 {
    max-width: 1120px;
    margin: 0 0 17px;
    color: var(--ink);
    font-size: var(--title-page);
    line-height: 1.15;
    font-weight: 650;
    letter-spacing: -.03em;
    overflow-wrap: break-word;
}
.page-header p { max-width: 810px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.8; }
.page-header-mark { display: grid; place-items: center; width: 80px; color: var(--brand); font-size: 60px; line-height: 1; opacity: .3; flex-shrink: 0; }
.breadcrumb-wrap { padding: 0; margin-bottom: 26px; }
.breadcrumb {
    --bs-breadcrumb-divider: "›";
    --bs-breadcrumb-divider-color: var(--brand);
    --bs-breadcrumb-item-active-color: var(--ink);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}
.breadcrumb-item { max-width: 100%; overflow-wrap: anywhere; }
.breadcrumb-item a { display: inline-block; min-height: 30px; padding-block: 4px; color: var(--muted); }
.breadcrumb-item a:hover { color: var(--ink); text-decoration: underline; text-decoration-color: var(--brand); }
.breadcrumb-item.active { font-weight: 550; }
.breadcrumb-item + .breadcrumb-item { padding-left: 12px; }
.breadcrumb-item + .breadcrumb-item::before { padding-right: 12px; font-weight: 500; }
/* 12. Biography and credentials */
.about-overview-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); align-items: center; gap: clamp(40px, 5vw, 80px); max-width: 1360px; margin-inline: auto; }
.about-biography { max-width: 72ch; font-size: 17px; line-height: 1.85; color: var(--text); }
.about-biography section + section { margin-top: 30px; }
.about-biography h2 { margin-bottom: 16px; font-size: 23px; font-weight: 600; line-height: 1.35; letter-spacing: -.025em; }
.about-biography p { margin-bottom: 18px; }
.about-biography p:last-child { margin-bottom: 0; }
.about-biography strong { color: var(--ink); font-weight: 600; }
.about-profile { width: 100%; max-width: 460px; justify-self: end; }
.about-portrait {
    display: block;
    width: 100%;
    height: clamp(320px, 27vw, 400px);
    object-fit: cover;
    object-position: 40% 40%;
    border-radius: var(--radius-md);
}
.about-profile figcaption { padding-top: 18px; }
.about-profile figcaption strong { display: block; color: var(--ink); font-size: 20px; font-weight: 600; letter-spacing: -.025em; }
.about-profile figcaption span { display: block; margin-top: 5px; font-size: 13px; color: var(--muted); line-height: 1.7; }
.about-credentials { max-width: 1360px; margin: clamp(40px, 4vw, 60px) auto 0; padding: clamp(26px, 3vw, 40px); border-radius: var(--radius-md); background: var(--brand-section); }
.credentials-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.credentials-heading .eyebrow { margin-bottom: 10px; font-size: 10px; }
.credentials-heading h2 { margin: 0; font-size: 22px; font-weight: 600; letter-spacing: -.025em; }
.credentials-location { display: inline-flex; align-items: center; gap: 8px; margin: 0; color: var(--muted); font-size: 12px; }
.credentials-location i { color: var(--brand); }
.credentials-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; margin: 0; }
.credentials-grid > div { min-width: 0; padding-left: 24px; border-left: 1px solid var(--brand-border); }
.credentials-grid > div:first-child { padding-left: 0; border-left: 0; }
.credentials-grid dt { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; color: var(--text); font-size: 12px; font-weight: 500; }
.credentials-grid dt i { color: var(--brand); font-size: 15px; }
.credentials-grid dt > span { margin-left: auto; color: var(--muted); font-size: 11px; }
.credentials-grid dd { margin: 0; }
.credentials-grid dd strong { display: block; color: var(--ink); font-size: 16px; font-weight: 600; line-height: 1.5; }
.credentials-grid dd > span { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; line-height: 1.7; }

/* 13. Branching career timeline */
.text-center > .eyebrow { justify-content: center; }
.journey-tree { position: relative; list-style: none; padding: 0; max-width: 1280px; margin: 60px auto 0; }
.journey-tree::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 20px;
    bottom: 30px;
    width: 2px;
    background: var(--brand-border);
}
.journey-tree li { position: relative; display: flex; width: 50%; padding-right: 55px; padding-bottom: 25px; }
.journey-tree li:nth-child(even) { margin-left: 50%; padding-right: 0; padding-left: 55px; }
.journey-tree li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 37px;
    width: 55px;
    height: 2px;
    background: var(--brand-border);
}
.journey-tree li:nth-child(even)::before { right: auto; left: 0; }
.journey-tree li::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--brand);
    border: 4px solid var(--surface);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--brand-border);
}
.journey-tree li:nth-child(even)::after { right: auto; left: -7px; }
.journey-branch {
    width: 100%;
    padding: 28px 32px;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 3px solid var(--brand);
    border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
}
.journey-tree li:nth-child(even) .journey-branch { border-radius: var(--radius-md) 0 var(--radius-md) var(--radius-md); }
.journey-date {
    display: inline-block;
    padding: 5px 10px;
    background: var(--brand-soft);
    color: var(--ink);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
}
.journey-branch h3 { margin: 19px 0 12px; font-size: var(--title-card); letter-spacing: -.035em; line-height: 1.35; }
.journey-branch p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.85; }

/* 14. Service detail and contextual notes */
.approach-note {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-top: 42px;
    padding: 30px;
    border-radius: var(--radius-md);
    background: var(--brand-soft);
}
.note-icon {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    color: var(--brand);
    background: var(--white);
    border-radius: 12px;
    font-size: 20px;
}
.approach-note p { max-width: 1100px; margin: 0; font-size: 16px; line-height: 1.9; color: var(--text); }
.side-note { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.side-note .area-symbol { margin-bottom: 27px; background: var(--white); }
.side-note h2 { margin-bottom: 20px; font-size: var(--title-article); letter-spacing: -.04em; }
.side-note p { color: var(--muted); font-size: 16px; line-height: 1.85; }

/* 15. Academic program filters and records */
.record-count {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 9px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 50px;
    color: var(--text);
    font-size: 13px;
    margin-bottom: 9px;
}
.course-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter-button {
    min-height: 47px;
    padding: 11px 22px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: var(--white);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: background .2s ease, border-color .2s ease;
}
.filter-button:hover { border-color: var(--brand); }
.filter-button.active { color: var(--white); background: var(--brand); border-color: var(--brand); font-weight: 650; }
.filter-button span { margin-left: 10px; font-size: 12px; }
.course-list {
    padding: 0;
    margin: 0;
    list-style: none;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
}
.course-list li { display: flex; align-items: flex-start; gap: 28px; padding: 30px 34px; border-bottom: 1px solid var(--line); }
.course-list li:last-child { border-bottom: 0; }
.course-list li[hidden] { display: none; }
.course-number {
    display: grid;
    place-items: center;
    height: 42px;
    width: 42px;
    flex-shrink: 0;
    margin-top: 3px;
    border-radius: 12px;
    background: var(--surface);
    color: var(--muted);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}
.course-category { display: inline-block; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.course-list h3 { margin: 7px 0 10px; font-size: var(--title-card); line-height: 1.5; font-weight: 600; letter-spacing: -.03em; }
.course-list p { max-width: 1000px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.85; }
.course-mark { margin-left: auto; margin-top: 7px; color: var(--brand); font-size: 20px; }

/* 16. Contact: direct channels and a clear address panel */
.contact-layout { display: grid; grid-template-columns: 1.05fr 1fr; align-items: start; gap: clamp(45px, 7vw, 130px); }
.contact-information { padding-block: 8px; }
.contact-information > h2 { font-size: var(--title-section); letter-spacing: -.045em; line-height: 1.15; margin-bottom: 22px; }
.contact-intro { max-width: 560px; color: var(--muted); font-size: 17px; line-height: 1.85; margin-bottom: 30px; }
.contact-channel {
    display: flex;
    align-items: center;
    gap: 21px;
    padding: 25px 0;
    border-top: 1px solid var(--line);
    color: var(--ink);
}
.contact-channel-icon {
    display: grid;
    place-items: center;
    width: 53px;
    height: 53px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 21px;
    transition: background .2s ease, color .2s ease;
}
.contact-channel-copy { display: grid; min-width: 0; gap: 4px; }
.contact-channel-copy > span { font-size: 12px; color: var(--muted); }
.contact-channel-copy strong { font-size: clamp(20px, 1.6vw, 26px); line-height: 1.4; letter-spacing: -.04em; overflow-wrap: anywhere; }
.contact-channel-copy small { font-size: 12px; color: var(--muted); }
.contact-channel > .fa-solid { margin-left: auto; color: var(--brand); font-size: 15px; transition: transform .2s ease; }
.contact-channel:hover .contact-channel-icon { background: var(--brand); color: var(--white); }
.contact-channel:hover > .fa-solid { transform: translateX(4px); }
.contact-professional { display: flex; align-items: center; gap: 15px; border-top: 1px solid var(--line); padding-top: 27px; margin-top: 8px; }
.contact-professional-icon { color: var(--brand); font-size: 26px; width: 53px; text-align: center; flex-shrink: 0; }
.contact-professional strong, .contact-professional div > span { display: block; }
.contact-professional strong { color: var(--ink); font-size: 15px; font-weight: 600; }
.contact-professional div > span { color: var(--muted); font-size: 13px; margin-top: 3px; }
.contact-visit { padding: clamp(30px, 3.2vw, 54px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.visit-heading { display: flex; align-items: center; gap: 19px; padding-bottom: 27px; border-bottom: 1px solid var(--line-strong); }
.visit-location-icon { color: var(--brand); font-size: 30px; }
.visit-heading p { font-size: 10px; letter-spacing: .11em; font-weight: 600; color: var(--muted); margin-bottom: 9px; }
.visit-heading h2 { font-size: var(--title-article); margin: 0; letter-spacing: -.045em; }
.visit-address { padding-block: 29px 27px; }
.visit-label { display: block; max-width: 360px; color: var(--muted); font-size: 13px; line-height: 1.8; margin-bottom: 17px; }
.visit-address address { margin: 0; color: var(--ink); font-size: clamp(19px, 1.55vw, 25px); line-height: 1.9; letter-spacing: -.025em; }
.visit-address strong { font-weight: 600; }
.visit-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.visit-actions .btn { width: 100%; gap: 18px; }
.visit-copy { display: inline-flex; align-items: center; gap: 9px; padding: 9px 0; min-height: 42px; border: 0; border-bottom: 1px solid var(--line-strong); background: transparent; color: var(--text); font-size: 13px; }
.visit-copy i { color: var(--brand); }
.visit-copy:hover { border-color: var(--brand); }
.copy-status { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.copy-status:empty { display: none; }
.visit-note { display: flex; align-items: flex-start; gap: 14px; padding-top: 22px; margin-top: 22px; border-top: 1px solid var(--line-strong); }
.visit-note i { color: var(--brand); margin-top: 5px; }
.visit-note p { color: var(--muted); font-size: 13px; line-height: 1.85; margin: 0; }
.contact-social-row { display: flex; align-items: center; justify-content: space-between; gap: 36px; margin-top: 65px; padding-top: 36px; border-top: 1px solid var(--line); }
.contact-social-row .eyebrow { margin-bottom: 15px; font-size: 10px; }
.contact-social-row h2 { margin: 0; font-size: var(--title-article); }
.contact-social-links { display: flex; gap: 28px; }
.contact-social-links a { display: flex; align-items: center; gap: 15px; padding: 12px 0; }
.contact-social-links .fa-brands { color: var(--brand); font-size: 29px; }
.contact-social-links span { color: var(--ink); font-size: 15px; font-weight: 600; }
.contact-social-links small { display: block; color: var(--muted); font-size: 12px; font-weight: 400; margin-top: 2px; }
.contact-social-links .fa-solid { margin-left: 6px; font-size: 12px; color: var(--muted); }
.contact-social-links a:hover span { text-decoration: underline; text-decoration-color: var(--brand); }
/* 17. Error pages */
.error-page { max-width: 920px; padding-block: 75px var(--section-space); text-align: center; }
.error-code {
    display: block;
    font-size: clamp(100px, 12vw, 170px);
    font-weight: 750;
    letter-spacing: -.08em;
    color: var(--brand);
    line-height: 1.2;
    margin-bottom: 25px;
}
.error-page .eyebrow { justify-content: center; }
.error-page h1 { font-size: var(--title-page); letter-spacing: -.045em; }
.error-page > p:not(.eyebrow) { max-width: 560px; margin: 24px auto 30px; color: var(--muted); font-size: 17px; }


/* 18. Fixed social follow control — native disclosure, keyboard accessible */
.follow-widget {
    position: fixed;
    width: fit-content;
    left: max(24px, env(safe-area-inset-left));
    bottom: max(22px, env(safe-area-inset-bottom));
    z-index: 150;
}
.follow-disclosure { position: relative; }
.follow-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    cursor: pointer;
    min-height: 52px;
    padding: 8px 16px 8px 8px;
    border: 1px solid var(--brand-border);
    border-radius: 100px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    user-select: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.follow-toggle::-webkit-details-marker { display: none; }
.follow-toggle-icon { display: grid; place-items: center; width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; background: var(--brand); color: var(--white); font-size: 14px; }
.follow-toggle:hover, .follow-disclosure[open]:not([data-expanded="false"]) .follow-toggle { border-color: var(--brand); background: linear-gradient(var(--brand-soft), var(--brand-soft)), var(--white); box-shadow: 0 6px 24px rgba(var(--brand-rgb), .12); }
.follow-chevron { margin-left: 4px; color: var(--brand); font-size: 10px; transition: transform .2s ease; }
.follow-disclosure[open]:not([data-expanded="false"]) .follow-chevron { transform: rotate(180deg); }
.follow-panel {
    position: absolute;
    left: 0;
    bottom: calc(100% + 14px);
    width: min(340px, calc(100vw - 56px));
    max-height: calc(100dvh - 110px);
    overflow-y: auto;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 12px 42px rgba(0, 0, 0, .1);
}
.follow-disclosure:not([open]) .follow-panel { display: none; }
.follow-panel-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding-bottom: 20px; }
.follow-panel-label { display: block; color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .1em; margin-bottom: 8px; }
.follow-panel-heading strong { display: block; color: var(--ink); font-size: 18px; font-weight: 600; letter-spacing: -.025em; }
.follow-panel-heading p { color: var(--muted); font-size: 12px; margin: 5px 0 0; line-height: 1.6; }
.follow-close { display: grid; place-items: center; width: 34px; height: 34px; flex-shrink: 0; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--muted); font-size: 14px; }
.follow-close:hover { color: var(--ink); border-color: var(--brand); }
.follow-panel > a { display: flex; align-items: center; gap: 12px; padding: 13px 12px; border: 1px solid var(--line); border-radius: 12px; transition: background .2s ease, border-color .2s ease; }
.follow-panel > a + a { margin-top: 9px; }
.follow-panel > a > .fa-brands { display: grid; place-items: center; width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; background: var(--brand-soft); color: var(--brand); font-size: 22px; }
.follow-panel > a > span { color: var(--ink); font-size: 14px; font-weight: 600; }
.follow-panel small { display: block; font-size: 11px; font-weight: 400; color: var(--muted); margin-top: 3px; }
.follow-panel > a > .fa-solid { margin-left: auto; font-size: 11px; color: var(--muted); }
.follow-panel > a:hover { background: var(--brand-soft); border-color: var(--brand-border); }
.follow-panel > a:hover > .fa-solid { color: var(--brand); }

/* 19. Wide desktop */
@media (min-width: 1800px) {
    body { font-size: 18px; }
    .navbar .nav-link { font-size: 16px; }
    .hero-description { max-width: 600px; }
    .btn { font-size: 16px; padding-inline: 30px; }
    .hero-principles { padding-block: 34px; }
    .hero-principles span { font-size: 16px; }
    .hero-principles strong { font-size: 17px; }
    .editorial-copy { font-size: 19px; }
}

/* 20. Laptop and drawer navigation */
@media (min-width: 1400px) and (max-width: 1799.98px) {
    .navbar { column-gap: 24px; }
    .navbar-nav { gap: 14px; }
    .navbar .nav-link { font-size: 13px; }
    .navbar .nav-contact { padding-inline: 18px; font-size: 13px; }
}
@media (max-width: 1199.98px) {
    .navbar { min-height: 94px; }
    .hero-grid { gap: 35px; }
    .hero-portrait { height: 410px; }
    .hero-role { gap: 9px; font-size: 14px; }
    .hero-description { font-size: 17px; }
    .hero-actions { gap: 12px; }
    .hero-actions .btn { font-size: 13px; padding-inline: 19px; gap: 15px; }
    .hero-principles { gap: 20px; }
    .hero-principles > div { gap: 16px; padding-right: 12px; }
    .hero-principles span { font-size: 12px; }
    .hero-principles strong { font-size: 13px; }
    .hero-principles i { font-size: 23px; }
    .academic-feature { gap: 35px; }
    .resource-link { padding: 21px; gap: 15px; }
    .resource-icon { width: 45px; height: 45px; font-size: 25px; }
    .resource-link strong { font-size: 17px; }
    .resource-link small { font-size: 12px; }
    .contact-banner-inner { gap: 35px; }
    .contact-banner-actions .btn { min-width: 200px; }
    .side-note { padding: 28px; }
    .side-note .btn { gap: 12px; padding-inline: 18px; }
    .contact-layout { gap: 40px; }
    .contact-channel { gap: 16px; }
    .contact-channel-copy strong { font-size: clamp(20px, 1.6vw, 26px); }
    .contact-visit { padding: 32px; }
    .footer-grid { grid-template-columns: 1.1fr .7fr 1fr; gap: 36px; }
    .footer-brand { width: 247px; height: 59px; }
    .footer-brand img { width: 255px; height: 255px; top: -93px; }
}

/* 21. Tablet */
@media (max-width: 991.98px) {
    :root { --section-space: 72px; }
    .container { width: calc(100% - 64px); }
    .hero { padding-top: 40px; }
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-copy { padding-block: 0; }
    .hero-role { font-size: 17px; margin-bottom: 20px; }
    .hero-description { max-width: 660px; font-size: 19px; }
    .hero-actions .btn { font-size: 15px; padding-inline: 25px; gap: 25px; }
    .hero-location { margin-top: 19px; }
    .hero-portrait { height: 410px; object-position: center 40%; }
    .hero-principles { margin-top: 35px; }
    .hero-principles > div { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero-principles span { font-size: 13px; }
    .hero-principles strong { font-size: 14px; }
    .section-aside { max-width: 660px; }
    .introduction-grid { grid-template-columns: 1fr; align-items: start; gap: 30px; max-width: 760px; }
    .introduction-heading { max-width: 540px; }
    .introduction-copy { max-width: 72ch; }
    .section-heading { align-items: flex-start; }
    .section-heading > .text-link { margin-top: 26px; }
    .section-description { font-size: 16px; }
    .academic-feature { grid-template-columns: 1fr; gap: 35px; padding: 0; }
    .academic-feature-copy > p:not(.eyebrow) { max-width: 650px; }
    .academic-resources { gap: 18px; }
    .resource-link { padding: 22px; gap: 14px; }
    .resource-icon { width: 40px; height: 40px; font-size: 24px; }
    .resource-link > .fa-solid { display: none; }
    .contact-banner-inner { padding: 40px; gap: 35px; }
    .contact-banner-copy > p:not(.eyebrow) { font-size: 15px; }
    .contact-banner-message { gap: 18px; }
    .contact-banner-icon { width: 48px; height: 48px; border-radius: 14px; font-size: 22px; }
    .contact-banner-actions { padding-left: 24px; }
    .contact-banner-actions .btn { min-width: 190px; padding-inline: 20px; gap: 15px; }
    .about-overview-grid { grid-template-columns: 1fr; gap: 32px; max-width: 760px; }
    .about-profile { justify-self: center; max-width: 460px; }
    .about-portrait { height: 350px; }
    .about-credentials { max-width: 760px; }
    .credentials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
    .credentials-grid > div:nth-child(odd) { padding-left: 0; border-left: 0; }
    .journey-tree li { padding-right: 32px; }
    .journey-tree li:nth-child(even) { padding-left: 32px; }
    .journey-tree li::before { width: 32px; }
    .journey-branch { padding: 25px; }
    .journey-branch p { font-size: 15px; }
    .page-header { padding-bottom: 38px; }
    .page-header p { font-size: 17px; }
    .page-header-mark { width: 64px; font-size: 48px; }
    .contact-layout { grid-template-columns: 1fr; gap: 38px; }
    .contact-information { max-width: 760px; }
    .contact-channel-copy strong { font-size: clamp(20px, 1.6vw, 26px); }
    .contact-visit { padding: 36px; }
    .visit-address address { font-size: 24px; }
    .visit-actions { align-items: flex-start; }
    .visit-actions .btn { width: auto; }
    .contact-social-row { align-items: flex-start; flex-direction: column; gap: 23px; margin-top: 45px; }
    .contact-social-links { gap: 35px; }
    .footer-main { padding-block: 48px 36px; }
    .footer-grid { grid-template-columns: .8fr 1fr; gap: 34px 50px; }
    .footer-about { grid-column: 1 / -1; }
    .footer-links { padding-left: 0; }
    .footer-heading { margin-top: 0; }
    .footer-bottom { align-items: flex-start; }
    .agency-credit { max-width: 390px; }
}

/* 22. Small tablet and landscape phone */
@media (max-width: 767.98px) {
    .contact-topbar-inner { justify-content: center; }
    .contact-topbar .topbar-location { display: none; }
    .topbar-label { display: none; }
    :root { --section-space: 56px; --title-hero: 44px; --title-page: 32px; --title-section: 28px; --title-article: 24px; --title-card: 20px; }
    .container { width: calc(100% - 40px); }
    .navbar { min-height: 88px; padding-block: 12px; column-gap: 16px; }
    .brand-crop { width: 247px; height: 59px; }
    .brand-crop img { width: 255px; height: 255px; top: -93px; }
    .hero-role { font-size: 15px; }
    .hero-description { font-size: 18px; max-width: 550px; }
    .hero-portrait { height: 380px; object-position: 40% 40%; }
    .hero-principles { gap: 15px; padding-block: 27px; }
    .hero-principles span { font-size: 12px; }
    .hero-principles strong { font-size: 13px; }
    .hero-principles i { font-size: 23px; }
    .section-heading { flex-direction: column; gap: 18px; margin-bottom: 32px; }
    .section-heading > .text-link { margin-top: 0; }
    .editorial-copy { font-size: 17px; line-height: 1.9; }
    .area-card { min-height: 300px; }
    .resource-link > .fa-solid { display: block; }
    .contact-banner-inner { flex-direction: column; align-items: stretch; padding: 32px; gap: 28px; border-radius: 22px; }
    .contact-banner-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-start; gap: 18px 25px; padding: 24px 0 0; border-left: 0; border-top: 1px solid var(--brand-border); }
    .contact-banner-actions .btn { min-width: 0; }
    .banner-phone { font-size: 16px; }
    .page-header { padding: 19px 0 34px; margin-bottom: 40px; }
    .page-header-content { gap: 20px; }
    .page-header p { font-size: 16px; }
    .page-header-mark { display: none; }
    .breadcrumb-wrap { margin-bottom: 20px; }
    .breadcrumb { font-size: 12px; }
    .journey-tree { padding-left: 9px; margin-top: 35px; }
    .journey-tree::before { left: 9px; }
    .journey-tree li, .journey-tree li:nth-child(even) { width: 100%; margin: 0; padding: 0 0 23px 30px; }
    .journey-tree li::before { right: auto; left: 0; width: 30px; }
    .journey-tree li::after { right: auto; left: -7px; }
    .journey-branch, .journey-tree li:nth-child(even) .journey-branch { border-radius: 0 16px 16px 16px; }
    .course-list li { padding: 25px; gap: 20px; }
    .course-list p { font-size: 14px; }
    .course-mark { display: none; }
    .record-count { margin-bottom: 0; }
    .approach-note { padding: 25px; gap: 18px; }
    .approach-note p { font-size: 15px; }
    .footer-bottom { flex-direction: column; gap: 14px; padding-block: 20px; }
    .agency-credit { max-width: none; text-align: left; }
}

/* 23. Phone — compact layouts, comfortable reading and tap targets */
@media (max-width: 575.98px) {
    :root { --radius-lg: 20px; --radius-md: 14px; --title-hero: clamp(34px, 9.2vw, 40px); --title-page: 28px; --title-section: 26px; --title-article: 23px; --title-card: 19px; }
    body { font-size: 16px; }
    .container > .row { --bs-gutter-x: 24px; }
    .navbar { min-height: 81px; }
    .brand-crop { width: 224px; height: 55px; }
    .brand-crop img { width: 232px; height: 232px; top: -84px; }
    .navbar-toggler { width: 43px; height: 43px; font-size: 18px; }
    .hero { padding-top: 30px; }
    .hero-grid { gap: 28px; }
    .hero h1 { font-size: var(--title-hero); margin-bottom: 12px; }
    .hero-role { font-size: 13px; gap: 9px; margin-bottom: 20px; }
    .hero-profession { font-size: 20px; margin-bottom: 8px; }
    .hero-description { font-size: 17px; line-height: 1.8; margin-bottom: 23px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 16px 24px; }
    .hero-actions .btn { min-height: 50px; font-size: 14px; padding: 13px 18px; gap: 15px; }
    .hero-actions .btn i { font-size: 11px; }
    .hero-location { font-size: 12px; margin-top: 15px; gap: 8px; }
    .hero-portrait { height: 330px; object-position: 39% 40%; }
    .hero-principles { grid-template-columns: 1fr; margin-top: 27px; gap: 18px; padding-block: 24px; }
    .hero-principles > div { flex-direction: row; justify-content: flex-start; align-items: center; gap: 20px; padding-right: 0; border: 0; }
    .hero-principles i { width: 31px; text-align: center; font-size: 23px; }
    .hero-principles span { font-size: 13px; }
    .hero-principles strong { font-size: 14px; font-weight: 600; }
    .eyebrow { font-size: 11px; letter-spacing: .11em; margin-bottom: 19px; }
    .eyebrow::before { width: 20px; }
    .section-title { font-size: var(--title-section); letter-spacing: -.045em; }
    .section-description { font-size: 16px; }
    .text-link { font-size: 14px; gap: 18px; }
    .introduction { padding-block: 44px; }
    .introduction-copy { font-size: 16px; line-height: 1.85; }
    .introduction-approach { padding-left: 18px; margin-top: 24px; font-size: 15px; }
    .introduction-approach h3 { font-size: 17px; }
    .editorial-copy { font-size: 16px; }
    .area-card { min-height: 290px; padding: 26px; }
    .area-card-top { margin-bottom: 24px; }
    .area-symbol { width: 54px; height: 54px; font-size: 23px; border-radius: 12px; }
    .area-card p { font-size: 15px; }
    .academic-feature-copy > p:not(.eyebrow) { font-size: 16px; }
    .resource-link { padding: 19px 17px; gap: 13px; border-radius: 14px; }
    .resource-link strong { font-size: 16px; }
    .resource-link small { font-size: 12px; }
    .resource-link > .fa-solid { font-size: 11px; }
    .resource-icon { width: 37px; height: 42px; font-size: 23px; border-radius: 10px; }
    .faq-list { gap: 11px; }
    .faq-item summary { padding: 21px 18px; gap: 12px; }
    .faq-item summary h3 { font-size: 15px; line-height: 1.65; letter-spacing: -.02em; }
    .faq-number { font-size: 11px; }
    .faq-toggle { width: 26px; height: 26px; flex-basis: 26px; }
    .faq-toggle::before, .faq-toggle::after { left: 8px; top: 12px; width: 10px; }
    .academic-resources { grid-template-columns: 1fr; gap: 12px; }
    .academic-feature .resource-link { flex-direction: row; align-items: center; gap: 16px; padding: 22px; padding-right: 48px; }
    .academic-feature .resource-link > .fa-solid { top: 50%; right: 20px; transform: translateY(-50%); }
    .academic-feature .resource-link small { margin-top: 4px; }
    .faq-answer { padding: 18px 22px 23px 43px; font-size: 15px; line-height: 1.9; }
    .contact-banner-inner { padding: 28px 24px; border-radius: 20px; }
    .contact-banner-copy > p:not(.eyebrow) { font-size: 15px; }
    .contact-banner-icon { display: none; }
    .contact-banner h2 { font-size: 26px; }
    .contact-banner-actions { gap: 12px; }
    .contact-banner-actions .btn { width: 100%; min-height: 54px; font-size: 14px; }
    .banner-phone { margin-inline: auto; }
    .page-header h1 { font-size: var(--title-page); line-height: 1.2; margin-bottom: 14px; }
    .page-header p { font-size: 15px; }
    .breadcrumb-wrap { margin-bottom: 17px; }
    .breadcrumb-item + .breadcrumb-item { padding-left: 8px; }
    .breadcrumb-item + .breadcrumb-item::before { padding-right: 8px; }
    .lead-copy { font-size: 18px; }
    .about-biography { font-size: 16px; }
    .about-biography h2 { font-size: 21px; }
    .about-portrait { height: 285px; }
    .about-credentials { padding: 24px; }
    .credentials-heading { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
    .credentials-heading h2 { font-size: 20px; }
    .credentials-grid { grid-template-columns: 1fr; gap: 0; }
    .credentials-grid > div { padding: 20px 0; border-left: 0; border-bottom: 1px solid var(--brand-border); }
    .credentials-grid > div:first-child { padding-top: 0; }
    .credentials-grid > div:last-child { padding-bottom: 0; border-bottom: 0; }
    .credentials-grid dt { margin-bottom: 10px; }
    .journey-tree { margin-top: 30px; }
    .journey-branch { padding: 22px; }
    .journey-date { font-size: 12px; }
    .journey-branch p { font-size: 14px; }
    .side-note { padding: 27px; }
    .side-note p { font-size: 15px; }
    .approach-note { flex-direction: column; padding: 24px; gap: 17px; }
    .course-filters { gap: 8px; }
    .filter-button { padding: 10px 14px; font-size: 12px; }
    .course-list li { padding: 22px 17px; gap: 13px; }
    .course-number { width: 29px; height: 33px; border-radius: 8px; font-size: 11px; }
    .course-category { font-size: 10px; letter-spacing: .04em; }
    .course-list p { font-size: 14px; }
    .contact-intro { font-size: 16px; }
    .contact-channel { gap: 13px; padding-block: 23px; }
    .contact-channel-icon { width: 41px; height: 45px; font-size: 18px; border-radius: 10px; }
    .contact-channel-copy strong { font-size: clamp(20px, 1.6vw, 26px); }
    .contact-channel-copy > span, .contact-channel-copy small { font-size: 11px; }
    .contact-channel > .fa-solid { font-size: 12px; }
    .contact-professional { gap: 13px; }
    .contact-professional-icon { width: 41px; font-size: 23px; }
    .contact-professional strong { font-size: 14px; }
    .contact-professional div > span { font-size: 12px; }
    .contact-visit { padding: 27px 23px; }
    .visit-heading { gap: 14px; padding-bottom: 23px; }
    .visit-location-icon { font-size: 25px; }
    .visit-heading p { font-size: 9px; }
    .visit-address { padding-block: 23px; }
    .visit-address address { font-size: 20px; }
    .visit-label { font-size: 12px; }
    .visit-actions .btn { width: 100%; padding-inline: 15px; font-size: 13px; gap: 13px; }
    .visit-note p { font-size: 12px; }
    .contact-social-row { padding-top: 29px; margin-top: 40px; }
    .contact-social-links { flex-direction: column; gap: 6px; width: 100%; }
    .contact-social-links a { padding-block: 15px; border-bottom: 1px solid var(--line); }
    .contact-social-links .fa-solid { margin-left: auto; }
    .footer-main { padding-block: 38px 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-about { grid-column: auto; }
    .footer-brand { margin-bottom: 23px; }
    .footer-intro { font-size: 15px; }
    .footer-heading { font-size: 16px; margin-bottom: 18px; }
    .footer-nav { grid-template-columns: 1fr 1fr; column-gap: 20px; font-size: 14px; gap: 5px 20px; }
    .footer-phone { font-size: 24px; }
    .site-footer address { font-size: 14px; }
    .footer-meta { flex-wrap: wrap; gap: 10px; padding-block: 12px; }
    .footer-editor { flex-basis: 100%; margin-left: 0; font-size: 11px; }
    .footer-bottom { font-size: 11px; gap: 9px; }
    .follow-widget { left: max(16px, env(safe-area-inset-left)); bottom: max(16px, env(safe-area-inset-bottom)); }
    .follow-toggle { min-height: 50px; padding: 7px 15px 7px 7px; font-size: 13px; gap: 11px; }
    .follow-panel { width: min(328px, calc(100vw - 40px)); padding: 18px; }
    .error-page { padding-top: 50px; }
    .error-page > p:not(.eyebrow) { font-size: 16px; }
}

/* 24. Narrow phones */
@media (max-width: 359.98px) {
    .mobile-menu .brand-crop { width: 188px; height: 47px; }
    .mobile-menu .brand-crop img { width: 196px; height: 196px; top: -71px; }
    .mobile-menu .offcanvas-header { margin-inline: 18px; }
    .mobile-menu .offcanvas-body { padding-inline: 18px; }
    .container { width: calc(100% - 32px); }
    .brand-crop { width: 195px; height: 49px; }
    .brand-crop img { width: 203px; height: 203px; top: -74px; }
    .hero-role { font-size: 12px; gap: 7px; }
    .hero-actions { gap: 12px 20px; }
    .hero-actions .btn { font-size: 14px; }
    .hero-portrait { height: 310px; }
    .contact-channel > .fa-solid { display: none; }
    .contact-channel-copy strong { font-size: clamp(20px, 1.6vw, 26px); }
}

/* 25. Motion and print preferences */
@media (prefers-reduced-motion: reduce) {
    .academic-intro .resource-link:hover, .academic-intro .resource-link:hover > .fa-solid { translate: none; }
    .loader-progress > span { width: 100%; transform: none; }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }
}
@media print {
    .contact-topbar, .site-header, .mobile-menu, .offcanvas-backdrop, .site-footer, .contact-banner, .page-loader, .follow-widget,
    .course-filters, .skip-link, .hero-actions { display: none !important; }
    body { background: white; color: black; font-size: 12pt; }
    .container { width: 100%; max-width: none; }
    .section-pad { padding-block: 25px; }
    .section-bottom { padding-bottom: 25px; }
    .page-header { padding-block: 20px; margin-bottom: 25px; }
    .page-header-mark { display: none; }
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .hero-portrait { height: 280px; }
    .hero-principles { margin-top: 25px; }
    .area-card, .journey-tree li, .course-list li, .contact-visit { break-inside: avoid; }
    .faq-item .faq-answer { content-visibility: visible; }
    .faq-item::details-content { content-visibility: visible; height: auto; }
    a { color: black; }
}
