:root {
    --orange: #F4821A;
    --charcoal: #191919;
    --black: #191919;
    --panel: #191919;
    --panel-soft: #191919;
    --white: #FFFFFF;
    --muted-light: rgba(255, 255, 255, 0.72);
    --line: rgba(255, 255, 255, 0.15);
    --orange-soft: rgba(244, 130, 26, 0.13);

    /* Compatibility aliases used by the existing public pages. */
    --amber: #F4821A;
    --amber-l: #F4821A;
    --amber-d: #F4821A;
    --crimson: #F4821A;
    --purple: #F4821A;
    --cobalt: #F4821A;
    --ink: #FFFFFF;
    --warm-50: rgba(255, 255, 255, 0.035);
    --warm-100: rgba(255, 255, 255, 0.06);
    --warm-200: rgba(255, 255, 255, 0.15);
    --muted: rgba(255, 255, 255, 0.72);
}

*, *::before, *::after { box-sizing: border-box; }

html { background: var(--charcoal); }

body {
    margin: 0;
    padding-top: 78px;
    overflow-x: hidden;
    background: var(--charcoal);
    color: var(--white);
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body::selection { background: var(--orange); color: var(--charcoal); }

a { color: inherit; }
img { max-width: 100%; }
section { scroll-margin-top: 78px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.brand { font-family: 'Poppins', Arial, sans-serif; font-weight: 700; }
.text-accent { color: var(--orange); }

.site-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 78px;
    background: var(--charcoal);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.site-nav__inner {
    width: min(1180px, calc(100% - 40px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img { width: 46px; height: 46px; object-fit: contain; }
.site-logo strong { display: block; font-size: 1rem; line-height: 1.1; letter-spacing: .01em; }
.site-logo small { display: block; margin-top: 4px; color: var(--orange); font-size: .54rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.site-nav__links { display: flex; align-items: center; gap: 24px; }
.nav-link, .nav-drop-btn {
    position: relative;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font: 600 .69rem/1 'Poppins', Arial, sans-serif;
    letter-spacing: .09em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .2s ease;
}
.nav-link::after, .nav-drop-btn::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}
.nav-link:hover, .nav-link.is-active, .nav-drop-btn:hover, .nav-drop-btn.is-active { color: var(--white); }
.nav-link:hover::after, .nav-link.is-active::after, .nav-drop-btn:hover::after, .nav-drop-btn.is-active::after { transform: scaleX(1); }

.nav-dropdown { position: relative; }
.nav-drop-btn { display: inline-flex; align-items: center; gap: 7px; }
.nav-drop-menu {
    position: absolute;
    top: calc(100% + 19px);
    left: -18px;
    display: none;
    width: 250px;
    padding: 10px;
    background: var(--charcoal);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(25, 25, 25, 0.36);
}
.nav-dropdown:hover .nav-drop-menu, .nav-dropdown:focus-within .nav-drop-menu { display: block; }
.nav-drop-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: .69rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-decoration: none;
    text-transform: uppercase;
}
.nav-drop-menu a:hover { background: var(--orange-soft); color: var(--white); }
.nav-drop-menu a.is-active { background: var(--orange-soft); color: var(--white); }

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}
#mob-menu { display: none; }
#mob-menu.open { display: block; }

.btn-primary, .btn-outline, .btn-crimson, .profile-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn-primary, .btn-crimson, .profile-button--solid { border: 1px solid var(--orange); background: var(--orange); color: var(--charcoal); }
.btn-primary:hover, .btn-primary.is-active, .btn-crimson:hover, .profile-button--solid:hover { background: var(--orange); box-shadow: 0 10px 28px rgba(244, 130, 26, 0.24); transform: translateY(-2px); }
.btn-outline, .profile-button--outline { border: 1px solid rgba(255,255,255,.55); background: transparent; color: var(--white); }
.btn-outline:hover, .profile-button--outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.section-label, .profile-eyebrow {
    color: var(--orange);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.arc-divider { height: 3px; background: var(--orange); }
.card-w {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--white);
}
.card-w-amber, .card-w-crimson, .card-w-purple, .card-w-cobalt { border-left: 3px solid var(--orange); }
.card-w-top-amber { border-top: 3px solid var(--orange); }
.icon-c {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(244,130,26,.35);
    border-radius: 50%;
    background: var(--orange-soft);
    color: var(--orange);
}
.ic-amber, .ic-crimson, .ic-purple, .ic-cobalt { background: var(--orange-soft); color: var(--orange); }

body input, body select, body textarea, .form-input {
    border: 1px solid var(--line) !important;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.04) !important;
    color: var(--white) !important;
    outline: none;
}
body input:focus, body select:focus, body textarea:focus, .form-input:focus { border-color: var(--orange) !important; box-shadow: 0 0 0 3px rgba(244,130,26,.12); }
body input::placeholder, body textarea::placeholder { color: rgba(255, 255, 255, 0.52); }
body .bg-white { background-color: var(--panel) !important; }
body .text-black { color: var(--white) !important; }
body .choice-card { background: var(--panel) !important; border-color: var(--line) !important; }
body .wizard-chip, body .wizard-input, body .tick-card { background: var(--panel) !important; border-color: var(--line) !important; color: var(--white) !important; }
body .wizard-chip.active { background: var(--orange) !important; border-color: var(--orange) !important; color: var(--charcoal) !important; }
body .choice-input:checked + .choice-card { background: var(--orange-soft) !important; border-color: var(--orange) !important; box-shadow: 0 12px 30px rgba(244, 130, 26, 0.12) !important; }
body .choice-card.is-disabled { background: rgba(255, 255, 255, 0.025) !important; }

body .bg-emerald-50, body .bg-rose-50, body .bg-amber-50 { background-color: var(--orange-soft) !important; }
body .border-emerald-200, body .border-rose-200, body .border-amber-200 { border-color: rgba(244, 130, 26, 0.55) !important; }
body .text-emerald-700, body .text-emerald-800, body .text-rose-700 { color: var(--white) !important; }

main:not(.profile-home) { min-height: 60vh; }
main:not(.profile-home) h1 { font-size: clamp(2.35rem, 5vw, 4.25rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.08; }
main:not(.profile-home) h1, main:not(.profile-home) h2, main:not(.profile-home) h3, main:not(.profile-home) h4 { color: var(--white); }
main:not(.profile-home) p { color: var(--muted); }

.profile-container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.profile-section { position: relative; padding: 104px 0; overflow: hidden; }
.profile-section--soft { background: var(--charcoal); }
.profile-section--black { background: var(--charcoal); }
.profile-kicker { margin: 0 0 14px; }
.profile-heading {
    max-width: 800px;
    margin: 0;
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 4.7rem);
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: 1.02;
}
.profile-heading .accent { color: var(--orange); }
.profile-lede { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: clamp(.98rem, 1.4vw, 1.12rem); line-height: 1.75; }

.profile-hero {
    position: relative;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--charcoal) url('../profile/hero-hands.png') center/cover no-repeat;
    isolation: isolate;
}
.profile-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(90deg, rgba(25,25,25,.97) 0%, rgba(25,25,25,.84) 47%, rgba(25,25,25,.37) 100%);
}
.profile-hero::after {
    content: '';
    position: absolute;
    right: -85px;
    bottom: -80px;
    z-index: -1;
    width: 360px;
    height: 360px;
    background: url('../profile/dot-pattern.png') center/contain no-repeat;
    opacity: .7;
}
.profile-hero__content { width: min(760px, 100%); padding: 92px 0 96px; }
.profile-hero__title { margin: 18px 0 24px; font-size: clamp(3.5rem, 8vw, 7.6rem); font-weight: 700; letter-spacing: -.065em; line-height: .92; }
.profile-hero__title span { display: block; color: var(--orange); }
.profile-hero__copy { max-width: 680px; color: rgba(255, 255, 255, 0.88); font-size: clamp(1rem, 1.6vw, 1.25rem); font-weight: 500; line-height: 1.65; }
.profile-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.profile-hero__facts { display: flex; flex-wrap: wrap; gap: 38px; margin-top: 54px; }
.profile-hero__fact strong { display: block; color: var(--orange); font-size: 1.3rem; }
.profile-hero__fact span { color: rgba(255, 255, 255, 0.72); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

.about-grid, .split-grid, .partnership-grid, .ahead-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
    gap: clamp(48px, 7vw, 96px);
    align-items: center;
}
.media-frame { position: relative; min-height: 520px; overflow: hidden; border-radius: 22px; background: var(--charcoal); }
.media-frame img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.media-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(25,25,25,.55)); }
.about-copy { display: grid; gap: 18px; color: var(--muted); font-size: .98rem; }
.about-copy strong { color: var(--white); }
.principle-list { display: grid; gap: 12px; margin-top: 30px; }
.principle-list span { display: flex; align-items: center; gap: 12px; color: var(--white); font-weight: 600; }
.principle-list span::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); flex: 0 0 auto; }

.impact-section { background: var(--charcoal) url('../profile/impact.jpeg') center 35%/cover no-repeat; }
.impact-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(25,25,25,.98) 0%, rgba(25,25,25,.8) 46%, rgba(25,25,25,.52) 100%); }
.impact-section .profile-container { position: relative; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 52px; }
.stat-card { min-height: 180px; padding: 28px; border: 1px solid rgba(244,130,26,.7); border-radius: 18px; background: rgba(25,25,25,.7); backdrop-filter: blur(10px); }
.stat-card strong { display: block; margin-bottom: 13px; color: var(--orange); font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1; }
.stat-card span { color: var(--white); font-size: .86rem; font-weight: 600; line-height: 1.45; }

.foundation-section { background: var(--charcoal) url('../profile/foundation.jpeg') center/cover no-repeat; }
.foundation-section::before { content: ''; position: absolute; inset: 0; background: rgba(25,25,25,.8); }
.foundation-section .profile-container { position: relative; }
.foundation-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 16px; margin-top: 50px; }
.foundation-card { padding: 30px; border: 1px solid rgba(244,130,26,.7); border-radius: 20px; background: rgba(25,25,25,.8); }
.foundation-card--vision { background: var(--orange); border-color: var(--orange); color: var(--charcoal); }
.foundation-card h3 { margin: 0 0 16px; font-size: 1.25rem; }
.foundation-card p, .foundation-card ul { margin: 0; font-size: .88rem; font-weight: 500; line-height: 1.65; }
.foundation-card ul { padding-left: 18px; }

.programme-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 48px; }
.programme-card { position: relative; min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: var(--charcoal); }
.programme-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(25,25,25,.1), rgba(25,25,25,.93)); }
.programme-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.programme-card:first-child img { object-position: center bottom; }
.programme-card > *:not(img) { position: relative; }
.programme-card h3 { margin: 0 0 12px; color: var(--orange); font-size: clamp(1.35rem, 2.5vw, 2rem); }
.programme-card p { margin: 0; color: rgba(255, 255, 255, 0.94); font-size: .93rem; }
.programme-card--plain { min-height: auto; justify-content: flex-start; background: var(--charcoal); }
.programme-card--plain::before { display: none; }
.programme-card--plain h3, .programme-card--plain p { position: static; }

.continuum-section { background: var(--charcoal) url('../profile/continuum.png') center/cover no-repeat; }
.continuum-section::before { content: ''; position: absolute; inset: 0; background: rgba(25,25,25,.74); }
.continuum-section .profile-container { position: relative; }
.continuum-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 50px; counter-reset: stage; }
.continuum-step { position: relative; min-height: 145px; display: flex; align-items: flex-end; padding: 20px; border: 1px solid var(--orange); border-radius: 16px; background: rgba(25,25,25,.8); color: var(--white); font-size: .84rem; font-weight: 600; }
.continuum-step::before { counter-increment: stage; content: '0' counter(stage); position: absolute; top: 16px; left: 18px; color: var(--orange); font-size: .68rem; letter-spacing: .1em; }

.matter-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 32px; }
.matter-item { padding: 19px 0; border-top: 1px solid var(--line); }
.matter-item h3 { margin: 0 0 6px; color: var(--orange); font-size: 1rem; }
.matter-item p { margin: 0; color: var(--muted); font-size: .82rem; }
.why-media { min-height: 620px; }

.story-section { background: var(--charcoal) url('../profile/story-of-hope.jpeg') center/cover no-repeat; }
.story-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(25,25,25,.97), rgba(25,25,25,.52)); }
.story-section .profile-container { position: relative; }
.story-quote { max-width: 940px; margin: 44px 0 0; padding: 34px; border: 1px solid var(--orange); border-radius: 18px; background: rgba(25,25,25,.78); font-size: clamp(1.2rem, 2.3vw, 1.8rem); font-style: italic; font-weight: 600; line-height: 1.6; }
.story-credit { display: block; margin-top: 18px; color: var(--orange); font-size: .85rem; font-style: normal; }
.story-note { margin-top: 14px; color: var(--muted); font-size: .75rem; }

.approach-section { background: var(--charcoal) url('../profile/approach.jpeg') center/cover no-repeat; }
.approach-section::before { content: ''; position: absolute; inset: 0; background: rgba(25,25,25,.74); }
.approach-section .profile-container { position: relative; }
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 48px; }
.approach-card { padding: 27px; border: 1px solid var(--orange); border-radius: 18px; background: rgba(25,25,25,.8); }
.approach-card h3 { margin: 0 0 12px; color: var(--orange); font-size: 1.1rem; }
.approach-card p { margin: 0; color: rgba(255, 255, 255, 0.9); font-size: .82rem; }

.governance-grid, .leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 46px; }
.governance-item, .leadership-item { padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--charcoal); }
.governance-item h3, .leadership-item h3 { margin: 0 0 10px; color: var(--orange); font-size: 1rem; }
.governance-item p, .leadership-item p { margin: 0; color: var(--muted); font-size: .82rem; }
.leadership-section { background: linear-gradient(90deg, rgba(25,25,25,.96), rgba(25,25,25,.84)), url('../profile/leadership.png') center/cover no-repeat; }
.leadership-item:first-child { background: var(--orange); border-color: var(--orange); }
.leadership-item:first-child h3, .leadership-item:first-child p { color: var(--charcoal); }
.leadership-item:last-child:nth-child(3n + 1) { grid-column: 2; }

.partnership-visual { min-height: 600px; }
.partner-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; margin-top: 30px; padding: 0; list-style: none; }
.partner-list li { position: relative; padding-left: 18px; color: var(--white); font-size: .88rem; font-weight: 600; }
.partner-list li::before { content: ''; position: absolute; top: .72em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

.ahead-section { background: linear-gradient(90deg, rgba(25,25,25,.96) 0%, rgba(25,25,25,.74) 48%, rgba(25,25,25,.22)), url('../profile/looking-ahead.jpeg') center/cover no-repeat; }
.priority-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 36px; }
.priority-item { padding: 15px 20px; border: 1px solid var(--orange); border-radius: 999px; background: rgba(25, 25, 25, 0.78); color: var(--white); font-size: .82rem; font-weight: 600; text-align: center; }
.priority-item:first-child { background: var(--orange); color: var(--charcoal); }

.profile-contact {
    position: relative;
    padding: 120px 0;
    background: var(--charcoal) url('../profile/contact-hands.jpeg') center/cover no-repeat;
}
.profile-contact::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(25,25,25,.94) 0%, rgba(25,25,25,.64) 58%, rgba(25,25,25,.3)); }
.profile-contact .profile-container { position: relative; }
.profile-contact h2 { max-width: 900px; margin: 0 0 30px; font-size: clamp(2.5rem, 6vw, 5.6rem); line-height: .98; letter-spacing: -.05em; }
.profile-contact h2 { font-weight: 600; }
.profile-contact h2 span { display: block; color: var(--orange); }

.explore-strip { border-top: 1px solid var(--line); background: var(--charcoal); }
.explore-strip__inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 26px 0; }
.explore-strip__links { display: flex; flex-wrap: wrap; gap: 8px; }
.explore-strip__links a { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.explore-strip__links a:hover { border-color: var(--orange); color: var(--white); }

.site-footer { padding: 66px 0 26px; border-top: 1px solid rgba(244, 130, 26, 0.4); background: var(--charcoal); }
.site-footer__inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr; gap: 60px; }
.site-footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.site-footer__logo img { width: 48px; height: 48px; object-fit: contain; }
.site-footer__summary { max-width: 450px; color: var(--muted); font-size: .82rem; }
.site-footer h3 { margin: 0 0 18px; color: var(--white); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 0 0 9px; color: var(--muted); font-size: .78rem; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: var(--orange); }
.site-footer__social { display: flex; gap: 10px; margin-top: 22px; }
.site-footer__social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.site-footer__social a:hover { border-color: var(--orange); background: var(--orange); color: var(--charcoal); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 22px; border-top: 1px solid var(--line); color: rgba(255, 255, 255, 0.48); font-size: .68rem; }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { border-radius: 7px; background: var(--orange); }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

@media (max-width: 1120px) {
    .site-nav__links { display: none; }
    .mobile-toggle { display: inline-grid; place-items: center; }
    #mob-menu { position: absolute; top: 78px; left: 0; width: 100%; max-height: calc(100vh - 78px); overflow-y: auto; padding: 22px 20px; border-top: 1px solid var(--line); background: var(--charcoal); box-shadow: 0 25px 40px rgba(25,25,25,.35); }
    #mob-menu a { display: block; padding: 11px 0; color: rgba(255, 255, 255, 0.88); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
    #mob-menu a.is-active { color: var(--orange); }
    .stat-grid, .approach-grid { grid-template-columns: repeat(2, 1fr); }
    .continuum-steps { grid-template-columns: repeat(3, 1fr); }
    .governance-grid, .leadership-grid { grid-template-columns: repeat(2, 1fr); }
    .leadership-item:last-child:nth-child(3n + 1) { grid-column: auto; }
}

@media (max-width: 760px) {
    body { padding-top: 70px; }
    .site-nav { height: 70px; }
    .site-logo img { width: 40px; height: 40px; }
    .site-logo small { display: none; }
    #mob-menu { top: 70px; max-height: calc(100vh - 70px); }
    .profile-container, .site-nav__inner, .site-footer__inner, .explore-strip__inner { width: min(100% - 28px, 1180px); }
    .profile-section { padding: 78px 0; }
    .profile-hero { min-height: calc(100svh - 70px); background-position: 58% center; }
    .profile-hero__content { padding: 80px 0 74px; }
    .profile-hero__title { font-size: clamp(3.2rem, 17vw, 5.2rem); }
    .profile-hero__facts { gap: 22px; }
    .about-grid, .split-grid, .partnership-grid, .ahead-grid { grid-template-columns: 1fr; gap: 40px; }
    .media-frame, .why-media, .partnership-visual { min-height: 420px; }
    .stat-grid, .programme-grid, .approach-grid, .foundation-grid, .matter-list, .governance-grid, .leadership-grid, .priority-grid { grid-template-columns: 1fr; }
    .continuum-steps { grid-template-columns: repeat(2, 1fr); }
    .stat-card { min-height: 150px; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 38px; }
    .site-footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
