:root {
    --navy: #102a43;
    --navy-deep: #071e33;
    --navy-soft: #173d5d;
    --saffron: #d97706;
    --saffron-light: #fff0d5;
    --green: #087a55;
    --green-light: #e3f5ed;
    --red: #c62532;
    --cream: #fffaf2;
    --paper: #fffdf9;
    --white: #ffffff;
    --ink: #25384a;
    --muted: #647586;
    --line: #e5e2da;
    --shadow: 0 20px 55px rgba(16, 42, 67, 0.11);
    --radius: 22px;
    --container: 1180px;
}

/* Source-complete home and about sections */
.program-card-text {
    min-height: 520px;
    color: #d7e3ea;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 208, 138, 0.16), transparent 32%),
        var(--navy-deep);
}

.program-card-text::after {
    display: none;
}

.program-card-text .program-card-content {
    display: flex;
    height: 100%;
    padding: 38px;
    flex-direction: column;
}

.program-card-text h3 {
    margin-top: 55px;
    color: var(--white);
}

.program-card-text p {
    color: #aebfca;
}

.program-card-text .card-link {
    margin-top: auto;
    color: #ffd08a;
}

.home-initiatives {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    background: var(--cream);
}

.home-initiatives::before {
    position: absolute;
    top: -180px;
    right: -130px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(8, 122, 85, 0.1);
    border-radius: 50%;
    content: "";
}

.initiatives-heading {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.75fr;
    gap: 90px;
    align-items: end;
}

.initiatives-heading h2 {
    max-width: 720px;
    margin-bottom: 0;
}

.initiatives-heading > div:last-child p {
    color: var(--muted);
}

.initiative-tags {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 42px 0 55px;
}

.initiative-tags span {
    padding: 9px 14px;
    border: 1px solid rgba(8, 122, 85, 0.16);
    border-radius: 999px;
    color: var(--green);
    background: var(--green-light);
    font-size: 0.75rem;
    font-weight: 700;
}

.initiative-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.initiative-card {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 26px;
    min-height: 330px;
    padding: 38px;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 16px 45px rgba(16, 42, 67, 0.07);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.initiative-card:hover {
    border-color: rgba(217, 119, 6, 0.34);
    box-shadow: 0 24px 55px rgba(16, 42, 67, 0.11);
    transform: translateY(-6px);
}

.initiative-icon {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border-radius: 22px;
    color: var(--green);
    background: var(--green-light);
}

.initiative-card-schools .initiative-icon {
    color: var(--saffron);
    background: var(--saffron-light);
}

.initiative-icon svg {
    width: 37px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.initiative-card-copy {
    display: flex;
    min-height: 252px;
    flex-direction: column;
}

.initiative-card-copy > span {
    color: var(--saffron);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.initiative-card-copy h3 {
    max-width: 410px;
    margin: 21px 0 13px;
    font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.initiative-card-copy p {
    max-width: 440px;
    color: var(--muted);
    font-size: 0.92rem;
}

.initiative-card-copy .text-link {
    margin-top: auto;
}

.association-intent {
    padding: 20px 24px;
    margin: 28px 0;
    border-left: 4px solid var(--saffron);
    color: var(--navy);
    background: var(--saffron-light);
    font-size: 0.95rem;
    font-weight: 700;
}

.mission-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 55px;
}

.mission-detail-grid article {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
}

.mission-detail-grid ul,
.mission-detail-grid ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mission-detail-grid li {
    position: relative;
    padding: 12px 0 12px 23px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #b8cad5;
    font-size: 0.88rem;
}

.mission-detail-grid li::before {
    position: absolute;
    top: 18px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--saffron);
    content: "";
}

.healthy-india {
    color: #d6e5df;
    background: var(--green);
}

.healthy-india-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 85px;
    align-items: start;
}

.healthy-india-grid > div:first-child {
    position: sticky;
    top: 120px;
}

.healthy-india h2,
.healthy-card-grid h3 {
    color: var(--white);
}

.healthy-disclaimer {
    padding: 17px 20px;
    margin-top: 28px;
    border-left: 3px solid #ffd08a;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
}

.healthy-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.healthy-card-grid article {
    min-height: 230px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.075);
}

.healthy-card-grid article > span {
    display: block;
    margin-bottom: 40px;
    color: #ffd08a;
    font-size: 0.7rem;
    font-weight: 800;
}

.healthy-card-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
}

.school-delivery-note {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 22px;
    padding: 27px;
    margin-top: 45px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    color: #bfd0db;
    background: rgba(255, 255, 255, 0.055);
}

.school-delivery-note h3 {
    margin-bottom: 5px;
    color: var(--white);
}

.school-delivery-note p {
    margin: 0;
}

@media (max-width: 820px) {
    .initiatives-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .initiative-grid {
        grid-template-columns: 1fr;
    }

    .healthy-india-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .healthy-india-grid > div:first-child {
        position: static;
    }
}

@media (max-width: 560px) {
    .mission-detail-grid,
    .healthy-card-grid {
        grid-template-columns: 1fr;
    }

    .initiative-tags {
        margin: 32px 0 38px;
    }

    .initiative-card {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 27px;
    }

    .initiative-icon {
        width: 66px;
        height: 66px;
        border-radius: 18px;
    }

    .initiative-card-copy {
        min-height: 0;
    }

    .initiative-card-copy .text-link {
        margin-top: 18px;
    }

    .healthy-card-grid article {
        min-height: 0;
    }

    .school-delivery-note {
        grid-template-columns: 1fr;
    }
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

.brand img,
.hero-emblem img,
.page-hero-mark img {
    clip-path: circle(48% at 50% 50%);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    letter-spacing: -0.035em;
    line-height: 1.13;
}

h1 {
    font-size: clamp(2.75rem, 5.7vw, 5.25rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.75rem);
}

h3 {
    font-size: 1.2rem;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 120px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 200;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--white);
    background: var(--navy);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid #eea933;
    outline-offset: 4px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--saffron);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 28px;
    height: 2px;
    background: currentColor;
}

.eyebrow-light {
    color: #ffd58e;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 25px;
    border: 1px solid var(--saffron);
    border-radius: 999px;
    color: var(--white);
    background: var(--saffron);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.2);
    font-weight: 700;
    line-height: 1;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    border-color: #b65f02;
    background: #b65f02;
    box-shadow: 0 14px 30px rgba(217, 119, 6, 0.27);
    transform: translateY(-2px);
}

.button-secondary {
    border-color: #c9d1d6;
    color: var(--navy);
    background: transparent;
    box-shadow: none;
}

.button-secondary:hover {
    border-color: var(--navy);
    color: var(--white);
    background: var(--navy);
    box-shadow: none;
}

.button-white {
    border-color: var(--white);
    color: var(--navy);
    background: var(--white);
    box-shadow: none;
}

.button-white:hover {
    border-color: var(--saffron-light);
    color: var(--navy);
    background: var(--saffron-light);
}

.button-small {
    min-height: 44px;
    padding-inline: 20px;
    font-size: 0.9rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--saffron);
    font-weight: 700;
}

.text-link span,
.card-link span {
    transition: transform 180ms ease;
}

.text-link:hover span,
.card-link:hover span {
    transform: translateX(4px);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    background: rgba(255, 250, 242, 0.9);
    backdrop-filter: blur(16px);
    transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
    border-color: rgba(16, 42, 67, 0.08);
    box-shadow: 0 8px 28px rgba(16, 42, 67, 0.07);
}

.header-inner {
    display: flex;
    align-items: center;
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.brand img {
    width: 55px;
    height: 53px;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    color: var(--navy);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    line-height: 1.15;
}

.brand-copy strong {
    font-size: 0.98rem;
    letter-spacing: -0.025em;
}

.brand-copy span {
    color: var(--green);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-right: 30px;
}

.primary-nav a {
    position: relative;
    color: #42586b;
    font-size: 0.91rem;
    font-weight: 600;
    transition: color 180ms ease;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--saffron);
    content: "";
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
    color: var(--navy);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.program-nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-program-nav {
    position: absolute;
    z-index: 10;
    top: calc(100% + 14px);
    right: -18px;
    display: grid;
    width: 285px;
    padding: 10px;
    margin: 0;
    gap: 2px;
    list-style: none;
    border: 1px solid rgba(16, 42, 67, 0.1);
    border-radius: 14px;
    background: var(--cream);
    box-shadow: 0 18px 45px rgba(16, 42, 67, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.mobile-program-nav::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 15px;
    content: "";
}

.program-nav-item:hover .mobile-program-nav,
.program-nav-item:focus-within .mobile-program-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-program-nav a {
    display: block;
    padding: 9px 11px;
    border-radius: 8px;
    font-size: 0.84rem;
    line-height: 1.35;
}

.mobile-program-nav a::after {
    display: none;
}

.mobile-program-nav a:hover,
.mobile-program-nav a[aria-current="page"] {
    color: var(--saffron);
    background: var(--saffron-light);
}

.menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    padding: 11px;
    border: 0;
    border-radius: 50%;
    background: transparent;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--navy);
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    height: 100svh;
    min-height: 700px;
    max-height: 920px;
    overflow: hidden;
    background: var(--navy);
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 850ms ease,
        visibility 850ms;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
}

.hero-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
    transform: none;
}

.hero-slide:nth-child(2) .hero-backdrop img {
    object-position: center 52%;
}

.hero-slide:nth-child(3) .hero-backdrop img {
    object-position: center 42%;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 24, 42, 0.92) 0%, rgba(5, 24, 42, 0.78) 38%, rgba(5, 24, 42, 0.2) 70%, rgba(5, 24, 42, 0.1) 100%),
        linear-gradient(180deg, rgba(5, 24, 42, 0.24) 0%, transparent 42%, rgba(5, 24, 42, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    padding-top: 132px;
    padding-bottom: 100px;
    align-items: center;
    justify-content: space-between;
}

.hero-copy {
    width: min(690px, 62%);
}

.hero-slide .hero-copy > *,
.hero-slide-badge {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 650ms ease,
        transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active .hero-copy > *,
.hero-slide.is-active .hero-slide-badge {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.is-active .hero-copy > :nth-child(2) {
    transition-delay: 70ms;
}

.hero-slide.is-active .hero-copy > :nth-child(3) {
    transition-delay: 120ms;
}

.hero-slide.is-active .hero-copy > :nth-child(4) {
    transition-delay: 170ms;
}

.hero-slide.is-active .hero-copy > :nth-child(5),
.hero-slide.is-active .hero-slide-badge {
    transition-delay: 220ms;
}

.hero-copy h1,
.hero-copy h2 {
    max-width: 680px;
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(3.5rem, 5.4vw, 5.45rem);
    letter-spacing: -0.06em;
    line-height: 0.96;
    text-wrap: balance;
}

.hero-lead {
    max-width: 610px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
    line-height: 1.75;
}

.hero-eyebrow {
    color: #ffd08a;
}

.hero-eyebrow span {
    background: var(--saffron);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero .button {
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.hero .button-secondary {
    border-color: rgba(255, 255, 255, 0.58);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero .button-secondary:hover {
    border-color: var(--white);
    color: var(--navy);
    background: var(--white);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 25px;
}

.hero-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.hero-note p strong {
    color: var(--white);
}

.hero-note-icon {
    display: grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.8rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.hero-slide-badge {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr;
    width: 320px;
    padding: 17px;
    align-items: center;
    gap: 13px;
    align-self: flex-end;
    margin-bottom: 4px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    background: rgba(5, 24, 42, 0.55);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
}

.hero-slide-badge > img {
    grid-row: 1 / 3;
    flex: 0 0 52px;
    width: 52px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
}

.hero-slide-badge p,
.hero-slide-badge > span {
    margin: 0;
    color: var(--white);
    font-size: 0.82rem;
    line-height: 1.3;
}

.hero-slide-badge p {
    flex: 1;
}

.hero-slide-badge p strong,
.hero-slide-badge > span strong {
    display: block;
    font-size: 0.9rem;
}

.hero-slide-badge > span {
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.68);
}

.hero-slider-controls {
    position: absolute;
    z-index: 8;
    right: 0;
    bottom: 28px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    pointer-events: none;
}

.hero-slider-buttons,
.hero-slider-dots {
    pointer-events: auto;
}

.hero-slider-buttons {
    display: flex;
    gap: 8px;
}

.hero-arrow {
    display: inline-grid;
    min-width: 42px;
    height: 42px;
    padding: 0 13px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    color: var(--white);
    background: rgba(5, 24, 42, 0.42);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hero-arrow:hover {
    border-color: var(--saffron);
    color: var(--white);
    background: var(--saffron);
    transform: translateY(-2px);
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(5, 24, 42, 0.42);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: width 240ms ease, background 240ms ease;
}

.hero-dot span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: var(--saffron);
    transform: scaleX(0);
    transform-origin: left;
}

.hero-dot.is-active {
    width: 34px;
    background: rgba(217, 119, 6, 0.2);
}

.hero-slider.is-playing .hero-dot.is-active span {
    animation: hero-progress 6.5s linear forwards;
}

@keyframes hero-progress {
    to {
        transform: scaleX(1);
    }
}

.credibility {
    position: relative;
    z-index: 4;
    border-top: 1px solid rgba(16, 42, 67, 0.06);
    border-bottom: 1px solid rgba(16, 42, 67, 0.06);
    background: var(--white);
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.credibility-grid > div {
    display: flex;
    min-height: 120px;
    padding: 24px 32px;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.credibility-grid > div:first-child {
    border-left: 1px solid var(--line);
}

.credibility-grid strong {
    color: var(--navy);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
}

.credibility-grid span {
    color: var(--muted);
    font-size: 0.82rem;
}

.purpose {
    background: var(--paper);
}

.purpose-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 58px 80px;
}

.section-intro > p {
    max-width: 610px;
    color: var(--muted);
    font-size: 1.05rem;
}

.section-intro blockquote {
    margin: 45px 0 0;
    padding: 22px 0 22px 28px;
    border-left: 3px solid var(--saffron);
    color: var(--navy);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-intro blockquote span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.purpose-photo {
    position: relative;
    grid-column: 1 / -1;
    height: 430px;
    min-height: 420px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.purpose-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 52%;
}

.purpose-photo figcaption {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: auto;
    display: flex;
    max-width: 430px;
    padding: 17px 20px;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    color: var(--white);
    background: rgba(7, 30, 51, 0.76);
    backdrop-filter: blur(8px);
    font-size: 0.78rem;
}

.purpose-photo figcaption strong {
    color: var(--white);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 1.05rem;
}

.purpose-photo figcaption span {
    color: rgba(255, 255, 255, 0.72);
}

.principles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.principle-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 25px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.principle-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.principle-number {
    color: var(--saffron);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 0.77rem;
    font-weight: 800;
}

.principle-card h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.principle-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.programs-section {
    background: var(--navy-deep);
}

.section-heading {
    display: grid;
    grid-template-columns: 1.15fr 0.55fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 58px;
}

.section-heading h2 {
    max-width: 720px;
    margin: 0;
    color: var(--white);
}

.section-heading > p {
    margin: 0 0 8px;
    color: #9fb0bf;
}

.section-heading-dark h2 {
    color: var(--navy);
}

.section-heading-dark > p {
    color: var(--muted);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.program-card {
    position: relative;
    display: flex;
    min-height: 500px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.program-card::after {
    position: absolute;
    right: -55px;
    bottom: -60px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
}

.program-card:hover {
    border-color: rgba(255, 213, 142, 0.6);
    background: rgba(255, 255, 255, 0.075);
    transform: translateY(-4px);
}

.program-image {
    height: 205px;
    overflow: hidden;
    background: #17344d;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.program-card:hover .program-image img {
    transform: scale(1.04);
}

.program-card-content {
    display: flex;
    flex: 1;
    padding: 25px 28px 28px;
    flex-direction: column;
}

.program-meta {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 13px;
    margin-bottom: 17px;
}

.program-icon {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    color: #ffd58e;
    background: rgba(217, 119, 6, 0.16);
}

.program-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.program-age {
    margin: 0;
    color: #77d5b5;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.program-card h3 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 1.45rem;
}

.program-card p {
    margin-bottom: 28px;
    color: #aab8c3;
    font-size: 0.92rem;
}

.card-link {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    color: #ffd58e;
    font-size: 0.82rem;
    font-weight: 700;
}

.training {
    background: var(--paper);
}

.training-list {
    border-top: 1px solid var(--line);
}

.training-item {
    display: grid;
    grid-template-columns: 55px 1fr 1.2fr 36px;
    align-items: center;
    gap: 24px;
    min-height: 112px;
    border-bottom: 1px solid var(--line);
    transition: padding 180ms ease, background 180ms ease;
}

.training-item:hover {
    padding-inline: 16px;
    background: var(--cream);
}

.training-number {
    color: var(--saffron);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
}

.training-title h3 {
    margin: 0;
    font-size: 1.25rem;
}

.training-title span {
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 700;
}

.training-item > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.training-arrow {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--navy);
}

.training-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    padding: 25px 30px;
    border-radius: 16px;
    background: var(--saffron-light);
}

.training-note > div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.training-note p {
    margin: 0;
    color: #76501d;
    font-size: 0.9rem;
}

.training-note-icon {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--saffron);
    font-weight: 800;
}

.why-us {
    position: relative;
    overflow: hidden;
    background: #f3f7f4;
}

.why-us::before {
    position: absolute;
    z-index: 0;
    inset: 0 auto 0 0;
    width: 48%;
    background: var(--green);
    clip-path: polygon(0 0, 100% 0, 73% 100%, 0 100%);
    content: "";
}

.why-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.62fr 1fr;
    gap: 76px;
}

.why-panel {
    max-width: 470px;
}

.why-panel h2 {
    max-width: 460px;
    color: var(--white);
    font-size: clamp(2.2rem, 3.2vw, 3.15rem);
}

.why-panel p {
    margin-bottom: 32px;
    color: #c7e8dc;
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.benefit-card {
    position: relative;
    display: flex;
    min-height: 220px;
    padding: 28px;
    flex-direction: column;
    border: 1px solid #dce8e1;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 0 0 rgba(16, 42, 67, 0);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.benefit-card:last-child {
    grid-column: 1 / -1;
    min-height: 180px;
}

.benefit-number {
    display: inline-block;
    margin-bottom: 45px;
    color: var(--saffron);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    transition: transform 220ms ease;
}

.benefit-grid h3 {
    margin-bottom: 10px;
    transition: color 220ms ease;
}

.benefit-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.87rem;
}

.benefit-card:hover {
    border-color: rgba(8, 122, 85, 0.48);
    background: #fffefa;
    box-shadow: 0 18px 42px rgba(16, 42, 67, 0.12);
    transform: translateY(-6px);
}

.benefit-card:hover .benefit-number {
    transform: translateX(4px);
}

.activity-gallery {
    background: #f4f8f5;
}

.gallery-heading-action {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
}

.gallery-heading-action p {
    margin: 0;
    color: var(--muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gallery-grid figure {
    position: relative;
    min-width: 0;
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--navy);
}

.gallery-grid figure::after {
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(180deg, transparent, rgba(7, 30, 51, 0.88));
    content: "";
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.gallery-grid figure:hover img {
    transform: scale(1.035);
}

.gallery-grid figcaption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 30px;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
}

.gallery-grid figcaption strong {
    color: var(--white);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 1.35rem;
}

.gallery-disclaimer {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 0.76rem;
    text-align: right;
}

.impact {
    background: var(--paper);
}

.impact-intro {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 70px;
    margin-bottom: 52px;
}

.impact-heading {
    max-width: 620px;
}

.impact-heading h2 {
    margin-bottom: 18px;
}

.impact-heading p {
    max-width: 620px;
    color: var(--muted);
}

.impact-photo {
    position: relative;
    min-height: 370px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.impact-photo img {
    width: 100%;
    height: 100%;
    min-height: 370px;
    object-fit: cover;
}

.impact-photo figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 10px 15px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(7, 30, 51, 0.78);
    backdrop-filter: blur(8px);
    font-size: 0.75rem;
    font-weight: 700;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.impact-card {
    display: flex;
    min-height: 110px;
    padding: 20px;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    transition: border-color 180ms ease, transform 180ms ease;
}

.impact-card:hover {
    border-color: var(--saffron);
    transform: translateY(-3px);
}

.impact-symbol {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: var(--green-light);
    font-size: 1.25rem;
    font-weight: 800;
}

.closing-cta {
    padding: 95px 0;
    overflow: hidden;
    background: var(--navy);
}

.closing-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.65fr;
    align-items: end;
    gap: 100px;
}

.closing-inner::after {
    position: absolute;
    top: -250px;
    right: -180px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.closing-inner h2 {
    max-width: 700px;
    margin: 0;
    color: var(--white);
}

.closing-inner > div:last-child {
    position: relative;
    z-index: 1;
}

.closing-inner p {
    margin-bottom: 25px;
    color: #aec0ce;
}

.site-footer {
    padding-top: 70px;
    color: #9db0bf;
    background: var(--navy-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.58fr 1.15fr 0.8fr;
    gap: 48px;
    padding-bottom: 55px;
}

.brand-footer {
    margin-bottom: 20px;
}

.brand-footer .brand-copy strong {
    color: var(--white);
}

.footer-brand > p {
    max-width: 340px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-motto {
    color: #ffd58e;
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
}

.footer-heading {
    margin: 8px 0 20px;
    color: var(--white);
    font-size: 0.84rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-program-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
}

.footer-program-links li:last-child {
    grid-column: 1 / -1;
}

.footer-connect > .footer-links {
    gap: 10px;
}

.footer-contact-block {
    padding-top: 24px;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-block .footer-heading {
    margin-top: 0;
    margin-bottom: 12px;
}

.footer-links a,
.text-link-light {
    font-size: 0.87rem;
    transition: color 180ms ease;
}

.footer-links a:hover,
.text-link-light:hover {
    color: var(--white);
}

.footer-contact {
    display: grid;
    gap: 10px;
    font-style: normal;
}

.contact-pending {
    margin-bottom: 12px;
    font-size: 0.86rem;
}

.text-link-light {
    color: #ffd58e;
}

.footer-bottom {
    display: flex;
    min-height: 80px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
}

.footer-bottom p {
    margin: 0;
}

.page-hero {
    padding: 175px 0 90px;
    background: var(--cream);
}

.page-hero-inner {
    display: grid;
    grid-template-columns: 1fr 260px;
    align-items: center;
    gap: 60px;
}

.page-hero h1 {
    max-width: 850px;
    margin-bottom: 24px;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.page-hero p {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.1rem;
}

.page-hero-mark {
    display: grid;
    width: 240px;
    height: 240px;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow);
}

.page-hero-mark img {
    width: 185px;
}

.page-hero-compact .page-hero-inner {
    grid-template-columns: 1fr;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 100px;
}

.contact-grid > div > h2 {
    max-width: 650px;
    font-size: clamp(2.1rem, 3.7vw, 3.2rem);
}

.contact-options {
    display: grid;
    gap: 14px;
    margin-top: 40px;
}

.contact-options article {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 20px;
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
}

.contact-options article > span {
    color: var(--saffron);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
}

.contact-options h3 {
    margin-bottom: 5px;
}

.contact-options p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-card {
    align-self: start;
    padding: 42px;
    border-radius: var(--radius);
    color: #c1d0da;
    background: var(--navy);
    box-shadow: var(--shadow);
}

.contact-card h2 {
    margin: 15px 0;
    color: var(--white);
    font-size: 2rem;
}

.contact-card-label {
    color: #ffd58e;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.selected-program {
    display: flex;
    padding: 18px 0;
    margin: 28px 0;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.selected-program span {
    color: #8da4b5;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.selected-program strong {
    color: var(--white);
}

.contact-card .button {
    margin-top: 20px;
}

.prose-inner {
    max-width: 760px;
}

.prose-inner h2 {
    margin-top: 40px;
    font-size: 1.5rem;
}

.prose-inner h2:first-child {
    margin-top: 0;
}

.prose-inner p {
    color: var(--muted);
}

.reveal-enabled [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-enabled [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-enabled .benefit-card.is-visible:hover {
    transform: translateY(-6px);
}

@media (max-width: 1080px) {
    .primary-nav {
        gap: 18px;
        margin-right: 20px;
    }

    .header-cta {
        display: none;
    }

    .hero-copy {
        width: min(640px, 61%);
    }

    .purpose-grid,
    .why-grid,
    .contact-grid {
        gap: 60px;
    }

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.1fr 0.65fr 1.1fr;
    }

    .footer-connect {
        grid-column: auto;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand > p {
        max-width: 520px;
    }
}

@media (max-width: 820px) {
    .section {
        padding: 90px 0;
    }

    .header-inner {
        min-height: 72px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-open .menu-toggle > span:nth-child(2) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-open .menu-toggle > span:nth-child(3) {
        opacity: 0;
    }

    .menu-open .menu-toggle > span:nth-child(4) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .primary-nav {
        position: fixed;
        top: 72px;
        right: 0;
        left: 0;
        display: flex;
        height: calc(100vh - 72px);
        padding: 36px 20px;
        overflow-y: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin: 0;
        background: var(--cream);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .menu-open .primary-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-nav a {
        width: 100%;
        padding: 14px 8px;
        border-bottom: 1px solid var(--line);
        font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
        font-size: 1.2rem;
    }

    .primary-nav a::after {
        display: none;
    }

    .program-nav-item {
        display: block;
        width: 100%;
    }

    .mobile-program-nav {
        position: static;
        display: grid;
        width: 100%;
        padding: 4px 0 14px 18px;
        margin: -4px 0 8px;
        gap: 0;
        list-style: none;
        border-bottom: 1px solid var(--line);
        border-top: 0;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .mobile-program-nav::before {
        display: none;
    }

    .mobile-program-nav a {
        padding: 9px 8px;
        border-bottom: 0;
        border-radius: 0;
        color: #607486;
        font-size: 0.92rem;
        font-weight: 600;
        line-height: 1.35;
    }

    .mobile-program-nav a:hover,
    .mobile-program-nav a[aria-current="page"] {
        color: var(--saffron);
        background: transparent;
    }

    .hero {
        height: 100svh;
        min-height: 680px;
        max-height: 900px;
    }

    .hero-content {
        padding-top: 120px;
        padding-bottom: 105px;
    }

    .purpose-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        width: min(660px, 88%);
    }

    .hero-slider-controls {
        bottom: 25px;
        justify-content: center;
    }

    .hero-slide-badge {
        display: none;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(5, 24, 42, 0.9) 0%, rgba(5, 24, 42, 0.68) 68%, rgba(5, 24, 42, 0.25) 100%),
            linear-gradient(180deg, rgba(5, 24, 42, 0.18) 0%, transparent 36%, rgba(5, 24, 42, 0.66) 100%);
    }

    .credibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .credibility-grid > div:nth-child(3) {
        border-left: 1px solid var(--line);
    }

    .purpose-grid {
        gap: 55px;
    }

    .purpose-photo {
        grid-column: auto;
        height: 390px;
        min-height: 390px;
    }

    .purpose-photo img {
        min-height: 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .training-item {
        grid-template-columns: 45px 0.8fr 1.2fr 30px;
    }

    .why-us {
        background: #f3f7f4;
    }

    .why-us::before {
        width: 100%;
        height: 42%;
        clip-path: none;
    }

    .why-grid {
        gap: 100px;
    }

    .why-panel {
        max-width: 650px;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-intro {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .closing-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-connect {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 35px;
    }

    .footer-contact-block {
        padding-top: 0;
        margin-top: 0;
        border-top: 0;
    }

    .page-hero-inner {
        grid-template-columns: 1fr;
    }

    .page-hero-mark {
        display: none;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section {
        padding: 72px 0;
    }

    .brand img {
        width: 47px;
        height: 46px;
    }

    .brand-copy strong {
        font-size: 0.86rem;
    }

    .brand-copy span {
        font-size: 0.63rem;
    }

    .hero {
        height: 100svh;
        min-height: 680px;
        max-height: 820px;
    }

    .hero-content {
        padding-top: 112px;
        padding-bottom: 48px;
        align-items: flex-end;
    }

    .hero-copy {
        width: 100%;
    }

    .hero h1,
    .hero h2 {
        margin-bottom: 18px;
        font-size: clamp(2.65rem, 12vw, 3.45rem);
        line-height: 0.98;
    }

    .hero-lead {
        margin-bottom: 22px;
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .button {
        width: auto;
        padding: 13px 17px;
        font-size: 0.78rem;
    }

    .hero-note {
        display: none;
    }

    .hero-backdrop img {
        object-position: 61% center;
        transform: none;
        transition: none;
    }

    .hero-slide:nth-child(2) .hero-backdrop img {
        object-position: 58% center;
    }

    .hero-slide:nth-child(3) .hero-backdrop img {
        object-position: 60% center;
    }

    .hero-shade {
        background:
            linear-gradient(180deg, rgba(5, 24, 42, 0.12) 0%, rgba(5, 24, 42, 0.18) 32%, rgba(5, 24, 42, 0.94) 82%, rgba(5, 24, 42, 0.98) 100%);
    }

    .hero-slider-controls {
        top: 90px;
        right: 16px;
        bottom: auto;
        left: 16px;
        justify-content: flex-end;
    }

    .hero-slider-buttons {
        display: none;
    }

    .hero-slider-dots {
        padding: 7px 9px;
        background: rgba(5, 24, 42, 0.48);
    }

    .credibility-grid {
        grid-template-columns: 1fr;
    }

    .credibility-grid > div {
        min-height: 90px;
        border-left: 1px solid var(--line);
    }

    .program-grid,
    .benefit-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .program-card {
        min-height: 500px;
    }

    .purpose-photo {
        height: 330px;
        min-height: 330px;
    }

    .purpose-photo img {
        min-height: 0;
    }

    .purpose-photo figcaption {
        right: 14px;
        bottom: 14px;
        left: 14px;
        max-width: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid figcaption {
        padding: 22px;
    }

    .gallery-disclaimer {
        text-align: left;
    }

    .impact-photo,
    .impact-photo img {
        min-height: 290px;
    }

    .training-item {
        grid-template-columns: 35px 1fr 30px;
        gap: 15px;
        padding: 22px 0;
    }

    .training-item > p {
        grid-column: 2 / -1;
    }

    .training-arrow {
        grid-column: 3;
        grid-row: 1;
    }

    .training-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .why-us {
        background: #f3f7f4;
    }

    .why-us::before {
        height: 38%;
    }

    .benefit-card:last-child {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-brand,
    .footer-connect {
        grid-column: auto;
    }

    .footer-connect {
        display: block;
    }

    .footer-contact-block {
        padding-top: 24px;
        margin-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-program-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 18px;
    }

    .footer-program-links li:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        padding: 24px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .page-hero {
        padding: 135px 0 70px;
    }

    .contact-card {
        padding: 30px;
    }
}

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

/* Program detail pages */
.program-page-hero {
    position: relative;
    display: flex;
    height: min(860px, 100svh);
    min-height: 720px;
    overflow: hidden;
    background: var(--navy-deep);
}

.program-page-hero-image,
.program-page-hero-shade {
    position: absolute;
    inset: 0;
}

.program-page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.program-page-hero-shade {
    background:
        linear-gradient(90deg, rgba(5, 24, 42, 0.94) 0%, rgba(5, 24, 42, 0.82) 42%, rgba(5, 24, 42, 0.25) 75%, rgba(5, 24, 42, 0.12) 100%),
        linear-gradient(180deg, rgba(5, 24, 42, 0.2), transparent 48%, rgba(5, 24, 42, 0.66));
}

.program-page-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    padding-top: 135px;
    padding-bottom: 80px;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.program-page-hero-content > div {
    width: min(720px, 67%);
}

.program-back-link {
    display: block;
    width: max-content;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
    transition: color 180ms ease, transform 180ms ease;
}

.program-back-link:hover {
    color: var(--white);
    transform: translateX(-3px);
}

.program-page-hero h1 {
    max-width: 760px;
    margin-bottom: 25px;
    color: var(--white);
    font-size: clamp(3.6rem, 7vw, 6.8rem);
    letter-spacing: -0.065em;
    line-height: 0.92;
}

.program-page-hero-content > div > p {
    max-width: 650px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.program-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.program-page-actions .button-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.program-page-actions .button-secondary:hover {
    border-color: var(--white);
    color: var(--navy);
    background: var(--white);
}

.program-hero-fact {
    width: 270px;
    padding: 24px;
    align-self: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(5, 24, 42, 0.55);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
}

.program-hero-fact > span {
    display: block;
    color: #ffd08a;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.program-hero-fact strong {
    display: block;
    margin: 4px 0 8px;
    color: var(--white);
    font-size: 1.65rem;
}

.program-hero-fact p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
}

.program-overview {
    background: var(--paper);
}

.program-overview-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.program-overview-grid h2 {
    max-width: 560px;
}

.program-overview-copy p {
    color: var(--muted);
}

.program-overview-copy .program-intro {
    color: var(--ink);
    font-size: 1.25rem;
    line-height: 1.7;
}

.program-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 75px;
}

.program-highlight-card {
    min-height: 265px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.program-highlight-card:hover {
    border-color: rgba(217, 119, 6, 0.35);
    box-shadow: 0 20px 40px rgba(16, 42, 67, 0.09);
    transform: translateY(-6px);
}

.program-highlight-card > span {
    display: inline-grid;
    width: 38px;
    height: 38px;
    margin-bottom: 45px;
    place-items: center;
    border-radius: 50%;
    color: var(--saffron);
    background: var(--saffron-light);
    font-size: 0.7rem;
    font-weight: 800;
}

.program-highlight-card h3 {
    margin-bottom: 10px;
}

.program-highlight-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.program-age-section {
    color: #bfd0dc;
    background: var(--navy-deep);
}

.program-age-section .section-heading {
    margin-bottom: 55px;
}

.program-age-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.program-age-grid article {
    min-height: 225px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.program-age-grid article:hover {
    border-color: rgba(255, 208, 138, 0.5);
    background: rgba(255, 255, 255, 0.075);
    transform: translateY(-5px);
}

.program-age-grid article > span {
    display: block;
    margin-bottom: 38px;
    color: #ffd08a;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.program-age-grid h3 {
    margin-bottom: 9px;
    color: var(--white);
}

.program-age-grid p {
    margin: 0;
    color: #9eb2c1;
    font-size: 0.88rem;
}

.program-method {
    background: #f3f7f4;
}

.program-method-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 110px;
    align-items: start;
}

.program-method-intro {
    position: sticky;
    top: 125px;
}

.program-method-intro p {
    color: var(--muted);
}

.program-module-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.program-module-list li {
    display: grid;
    grid-template-columns: 60px 1fr;
    min-height: 92px;
    padding: 20px 0;
    align-items: center;
    border-bottom: 1px solid rgba(16, 42, 67, 0.14);
}

.program-module-list li:first-child {
    border-top: 1px solid rgba(16, 42, 67, 0.14);
}

.program-module-list span {
    color: var(--saffron);
    font-size: 0.74rem;
    font-weight: 800;
}

.program-module-list strong {
    color: var(--navy);
    font-size: 1.18rem;
}

.program-availability-note {
    padding: 22px 26px;
    margin: 70px 0 0;
    border-left: 4px solid var(--green);
    border-radius: 0 14px 14px 0;
    color: var(--muted);
    background: var(--white);
}

.program-availability-note strong {
    color: var(--navy);
}

.related-programs {
    background: var(--paper);
}

.related-program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 55px;
}

.related-program-grid article {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    transition: box-shadow 220ms ease, transform 220ms ease;
}

.related-program-grid article:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.related-program-grid img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 500ms ease;
}

.related-program-grid article:hover img {
    transform: scale(1.035);
}

.related-program-grid article > div {
    padding: 25px;
}

.related-program-grid article > div > span {
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.related-program-grid h3 {
    margin: 6px 0 16px;
}

.program-closing {
    border-top: 0;
}

.program-progression {
    color: #b9cad6;
    background: var(--navy-deep);
}

.progression-grid,
.belt-rank-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 55px;
}

.progression-card,
.belt-rank-grid > article {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
}

.progression-card h3,
.belt-rank-grid h3 {
    margin-bottom: 7px;
    color: var(--white);
}

.progression-card > p {
    min-height: 50px;
    color: #94aaba;
    font-size: 0.82rem;
}

.responsive-table {
    width: 100%;
    overflow-x: auto;
}

.responsive-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
}

.responsive-table th,
.responsive-table td {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    vertical-align: top;
}

.responsive-table th {
    color: #ffd08a;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.responsive-table td:first-child {
    color: var(--white);
}

.leader-progression,
.program-subjects {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 65px;
    padding-top: 70px;
    margin-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.leader-progression h2,
.program-subjects h2 {
    color: var(--white);
    font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.leader-progression p {
    color: #94aaba;
}

.program-subjects .subject-list {
    margin: 0;
    align-content: flex-start;
    align-items: flex-start;
}

.program-subjects .subject-list span {
    line-height: 1.35;
}

.program-delivery {
    color: #d4e0e7;
    background: var(--green);
}

.program-delivery-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 90px;
    align-items: start;
}

.program-delivery-grid > div:first-child {
    position: sticky;
    top: 120px;
}

.program-delivery h2 {
    color: var(--white);
}

.delivery-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.delivery-card-grid article {
    min-height: 245px;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.delivery-card-grid article > span {
    display: block;
    margin-bottom: 45px;
    color: #ffd08a;
    font-size: 0.72rem;
    font-weight: 800;
}

.delivery-card-grid h3 {
    color: var(--white);
}

.delivery-card-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.86rem;
}

@media (max-width: 1080px) {
    .program-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-hero-fact {
        display: none;
    }

    .program-page-hero-content > div {
        width: min(720px, 76%);
    }
}

@media (max-width: 820px) {
    .program-page-hero {
        height: 100svh;
        min-height: 700px;
        max-height: 900px;
    }

    .program-page-hero-shade {
        background:
            linear-gradient(180deg, rgba(5, 24, 42, 0.2) 0%, rgba(5, 24, 42, 0.3) 35%, rgba(5, 24, 42, 0.96) 100%);
    }

    .program-page-hero-content {
        padding-top: 115px;
        padding-bottom: 55px;
        align-items: flex-end;
    }

    .program-page-hero-content > div {
        width: min(690px, 100%);
    }

    .program-back-link {
        margin-bottom: 28px;
    }

    .program-page-hero h1 {
        font-size: clamp(3.1rem, 11vw, 5.5rem);
    }

    .program-overview-grid,
    .program-method-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .program-method-intro {
        position: static;
    }

    .program-age-grid,
    .related-program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leader-progression,
    .program-subjects,
    .program-delivery-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .program-delivery-grid > div:first-child {
        position: static;
    }
}

@media (max-width: 560px) {
    .program-page-hero {
        min-height: 720px;
        max-height: 820px;
    }

    .program-page-hero-image img {
        object-position: 60% center;
    }

    .program-page-hero-content {
        padding-bottom: 42px;
    }

    .program-page-hero h1 {
        margin-bottom: 17px;
        font-size: clamp(2.8rem, 15vw, 4.2rem);
    }

    .program-page-hero-content > div > p {
        margin-bottom: 22px;
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .program-page-actions {
        gap: 10px;
    }

    .program-page-actions .button {
        min-height: 49px;
        padding-inline: 17px;
        font-size: 0.78rem;
    }

    .program-highlight-grid,
    .program-age-grid,
    .related-program-grid,
    .progression-grid,
    .belt-rank-grid,
    .delivery-card-grid {
        grid-template-columns: 1fr;
    }

    .program-highlight-card,
    .program-age-grid article {
        min-height: 0;
    }

    .program-highlight-card > span,
    .program-age-grid article > span {
        margin-bottom: 28px;
    }

    .related-program-grid img {
        height: 220px;
    }

    .progression-card,
    .belt-rank-grid > article {
        padding: 22px 18px;
    }

    .leader-progression,
    .program-subjects {
        padding-top: 50px;
        margin-top: 50px;
    }
}

/* About page */
.purpose-story-link {
    margin-top: 26px;
}

.about-hero {
    position: relative;
    display: flex;
    height: 100svh;
    min-height: 720px;
    max-height: 920px;
    padding: 106px 0 0;
    flex-direction: column;
    overflow: hidden;
    background: var(--cream);
}

.about-hero-pattern {
    position: absolute;
    top: 70px;
    right: -180px;
    width: 680px;
    height: 680px;
    border: 1px solid rgba(217, 119, 6, 0.16);
    border-radius: 50%;
}

.about-hero-pattern::before,
.about-hero-pattern::after {
    position: absolute;
    border: 1px solid rgba(8, 122, 85, 0.13);
    border-radius: 50%;
    content: "";
}

.about-hero-pattern::before {
    inset: 72px;
}

.about-hero-pattern::after {
    inset: 145px;
}

.about-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    flex: 1;
    gap: 70px;
    padding-bottom: 28px;
}

.about-hero-copy h1 {
    max-width: 700px;
    margin-bottom: 20px;
    font-size: clamp(3rem, 4.55vw, 4.55rem);
    line-height: 0.99;
}

.about-hero-copy > p {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.08rem;
}

.about-motto {
    display: flex;
    margin: 22px 0;
    padding-left: 19px;
    flex-direction: column;
    border-left: 3px solid var(--saffron);
}

.about-motto span {
    color: var(--muted);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-motto strong {
    color: var(--navy);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 1.35rem;
}

.about-hero-actions,
.about-cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.about-hero-image {
    position: relative;
    display: grid;
    height: min(58vh, 510px);
    min-height: 420px;
    margin: 0;
    padding: 9px;
    place-items: center;
    overflow: hidden;
    border-radius: 190px 26px 26px 26px;
    background: linear-gradient(145deg, #ffffff, #f1f8f4);
    box-shadow: var(--shadow);
}

.about-hero-image::after {
    position: absolute;
    inset: 66% 9px 9px;
    border-radius: 0 0 18px 18px;
    background: linear-gradient(180deg, transparent, rgba(16, 42, 67, 0.07));
    content: "";
}

.about-hero-image figcaption {
    position: absolute;
    z-index: 2;
    right: 34px;
    bottom: 31px;
    left: 34px;
    color: var(--navy);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.about-logo-display {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(78%, 390px);
    height: min(78%, 390px);
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(217, 119, 6, 0.28);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 25px 60px rgba(16, 42, 67, 0.14);
}

.about-logo-display > img {
    position: relative;
    z-index: 2;
    width: 76%;
    height: auto;
    border-radius: 50%;
    object-fit: contain;
}

.about-logo-display > span {
    position: absolute;
    z-index: 4;
    right: 9%;
    bottom: 4%;
    left: 9%;
    padding: 11px 14px;
    border-radius: 999px;
    color: var(--white);
    background: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
}

.about-logo-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.about-logo-orbit-one {
    inset: -18px;
    border: 1px dashed rgba(8, 122, 85, 0.35);
}

.about-logo-orbit-two {
    inset: 18px;
    border: 1px solid rgba(217, 119, 6, 0.25);
}

.about-facts {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    background: var(--white);
}

.about-facts > div {
    display: flex;
    min-height: 112px;
    padding: 22px 28px;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--line);
}

.about-facts strong {
    color: var(--navy);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 1.15rem;
}

.about-facts span {
    color: var(--muted);
    font-size: 0.78rem;
}

.about-introduction {
    background: var(--paper);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: start;
    gap: 90px;
}

.about-intro-image {
    position: sticky;
    top: 112px;
    height: min(610px, calc(100svh - 145px));
    min-height: 480px;
    margin: 0;
    align-self: start;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro-copy h2 {
    margin-bottom: 25px;
}

.about-intro-copy > p {
    color: var(--muted);
}

.about-check-list {
    display: grid;
    gap: 11px;
    padding: 0;
    margin: 30px 0 34px;
    list-style: none;
}

.about-check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--navy);
    font-weight: 700;
}

.about-check-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: var(--green-light);
    content: "✓";
    font-size: 0.7rem;
}

.about-story {
    background: #f4f8f5;
}

.about-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 20px;
}

.about-timeline::before {
    position: absolute;
    top: 44px;
    right: 10%;
    left: 10%;
    height: 1px;
    background: #cbded5;
    content: "";
}

.about-timeline article {
    position: relative;
    z-index: 1;
    display: flex;
    padding-top: 85px;
    flex-direction: column;
}

.timeline-year {
    position: absolute;
    top: 19px;
    left: 0;
    display: grid;
    min-width: 76px;
    height: 50px;
    padding: 0 13px;
    place-items: center;
    border: 6px solid #f4f8f5;
    border-radius: 999px;
    color: var(--white);
    background: var(--green);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
}

.about-timeline article > div {
    flex: 1;
    min-height: 260px;
    padding: 27px;
    border: 1px solid #dce8e1;
    border-radius: var(--radius);
    background: var(--white);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.about-timeline article:hover > div {
    border-color: rgba(8, 122, 85, 0.4);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.about-timeline h3 {
    margin-bottom: 12px;
}

.about-card-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 15px;
    color: var(--green);
    background: var(--green-light);
    transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.about-card-icon svg,
.objective-grid svg,
.leader-placeholder svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-timeline .about-card-icon {
    margin-bottom: 22px;
}

.about-timeline article:hover .about-card-icon,
.about-principle-grid article:hover .about-card-icon {
    color: var(--white);
    background: var(--green);
    transform: rotate(-4deg) scale(1.05);
}

.about-timeline p,
.about-affiliation-note {
    color: var(--muted);
    font-size: 0.88rem;
}

.about-affiliation-note {
    margin: 28px 0 0;
    font-style: italic;
}

.about-purpose-section {
    color: #b5c5d0;
    background: var(--navy-deep);
}

.about-centered-heading {
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
}

.about-centered-heading .eyebrow {
    justify-content: center;
}

.about-centered-heading h2 {
    color: var(--white);
}

.about-centered-heading > p {
    max-width: 660px;
    margin-inline: auto;
}

.about-centered-heading-dark h2 {
    color: var(--navy);
}

.about-centered-heading-dark > p {
    color: var(--muted);
}

.purpose-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.purpose-panel-grid article {
    min-height: 330px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.purpose-panel-grid article:hover {
    border-color: rgba(255, 213, 142, 0.55);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.purpose-panel-grid article > span:first-child {
    display: block;
    margin-bottom: 26px;
    color: #ffd58e;
    font-size: 0.76rem;
    font-weight: 800;
}

.about-card-icon-dark {
    margin-bottom: 28px;
    color: #ffd58e;
    background: rgba(255, 255, 255, 0.08);
}

.purpose-panel-grid article:hover .about-card-icon-dark {
    color: var(--navy);
    background: #ffd58e;
    transform: rotate(4deg) scale(1.05);
}

.purpose-panel-grid h3 {
    color: var(--white);
    font-size: 1.55rem;
}

.purpose-panel-grid p {
    margin: 0;
    color: #aebdca;
}

.about-outcomes {
    display: flex;
    margin-top: 34px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.about-outcomes span,
.subject-list span {
    padding: 9px 15px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    color: #d9e4eb;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.78rem;
}

.about-principles {
    background: var(--paper);
}

.about-principle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.about-principle-grid article {
    min-height: 310px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.about-principle-grid article:hover {
    border-color: rgba(217, 119, 6, 0.45);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.about-card-top {
    display: flex;
    margin-bottom: 64px;
    align-items: flex-start;
    justify-content: space-between;
}

.about-card-top > span:first-child {
    color: var(--saffron);
    font-weight: 800;
}

.about-principle-grid p {
    color: var(--muted);
    font-size: 0.9rem;
}

.about-method {
    background: var(--green);
}

.about-method-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 76px;
}

.about-method-copy {
    align-self: start;
}

.about-method-copy h2 {
    color: var(--white);
}

.about-method-copy > div > p {
    color: #c7e8dc;
}

.about-method-copy figure {
    height: 390px;
    margin: 42px 0 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(3, 47, 32, 0.24);
}

.about-method-copy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.method-step-list {
    display: grid;
    gap: 12px;
}

.method-step-list article {
    display: grid;
    grid-template-columns: 35px 52px 1fr;
    gap: 17px;
    padding: 23px 25px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 200ms ease, transform 200ms ease;
}

.method-step-list article:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(6px);
}

.method-step-list article > span {
    color: #ffd58e;
    font-size: 0.76rem;
    font-weight: 800;
}

.about-card-icon-method {
    color: #ffd58e !important;
    background: rgba(255, 255, 255, 0.09);
}

.method-step-list article:hover .about-card-icon-method {
    color: var(--green) !important;
    background: var(--white);
    transform: rotate(4deg);
}

.method-step-list h3 {
    margin-bottom: 6px;
    color: var(--white);
}

.method-step-list p {
    margin: 0;
    color: #c5e2d8;
    font-size: 0.88rem;
}

.about-objectives {
    background: var(--cream);
}

.objective-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.objective-grid > div {
    display: flex;
    min-height: 105px;
    padding: 20px;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--white);
}

.objective-grid > div > span {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: var(--green-light);
    font-weight: 800;
}

.objective-grid svg {
    width: 22px;
    height: 22px;
}

.objective-grid > div {
    transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.objective-grid > div:hover {
    border-color: rgba(8, 122, 85, 0.4);
    box-shadow: 0 12px 30px rgba(16, 42, 67, 0.08);
    transform: translateY(-4px);
}

.objective-grid > div:hover > span {
    color: var(--white);
    background: var(--green);
}

.objective-grid strong {
    color: var(--navy);
    font-size: 0.9rem;
}

.about-provides {
    color: #b8c8d4;
    background: var(--navy);
}

.about-provides-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 85px;
}

.about-provides h2 {
    color: var(--white);
}

.subject-stat {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    margin-top: 38px;
    align-items: center;
    gap: 18px;
}

.subject-stat strong {
    color: #ffd58e;
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 3.2rem;
    line-height: 1;
    white-space: nowrap;
}

.subject-stat span {
    max-width: 250px;
    font-size: 0.85rem;
}

.provides-list {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.provides-list article {
    display: grid;
    grid-template-columns: 34px 48px 1fr;
    align-items: center;
    gap: 16px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.provides-list article > span {
    color: #ffd58e;
    font-size: 0.75rem;
    font-weight: 800;
}

.about-card-icon-provides {
    width: 44px;
    height: 44px;
    color: #ffd58e !important;
    background: rgba(255, 255, 255, 0.08);
}

.about-card-icon-provides svg {
    width: 23px;
    height: 23px;
}

.provides-list h3 {
    margin-bottom: 6px;
    color: var(--white);
}

.provides-list p {
    margin: 0;
    color: #aebfcb;
    font-size: 0.88rem;
}

.subject-list {
    display: flex;
    margin-top: 46px;
    flex-wrap: wrap;
    gap: 9px;
}

.about-leadership {
    background: #f4f8f5;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.leadership-grid article {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    gap: 25px;
    min-height: 190px;
    padding: 30px;
    border: 1px solid #dce8e1;
    border-radius: var(--radius);
    background: var(--white);
}

.leader-placeholder {
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: var(--green-light);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-weight: 800;
}

.leader-placeholder svg {
    width: 34px;
    height: 34px;
}

.leadership-grid h3 {
    margin-bottom: 7px;
}

.leadership-grid p {
    margin: 0;
    color: var(--muted);
}

.about-closing .closing-inner {
    align-items: center;
}

@media (max-width: 1080px) {
    .about-hero {
        padding-top: 92px;
    }

    .about-hero-grid {
        gap: 45px;
    }

    .about-hero-image {
        height: min(52vh, 430px);
        min-height: 350px;
    }

    .about-facts > div {
        min-height: 80px;
        padding-block: 13px;
    }

    .about-intro-grid,
    .about-method-grid,
    .about-provides-grid {
        gap: 55px;
    }

    .about-principle-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 820px) {
    .about-hero {
        display: flex;
        height: 100svh;
        min-height: 720px;
        max-height: 960px;
        padding-top: 88px;
    }

    .about-hero-grid {
        display: grid;
        flex: 1;
        grid-template-columns: 1fr;
        gap: 18px;
        padding-bottom: 12px;
    }

    .about-intro-grid,
    .about-method-grid,
    .about-provides-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-image {
        position: relative;
        top: auto;
        height: 520px;
        min-height: 0;
    }

    .about-hero-copy h1 {
        max-width: 720px;
        margin-bottom: 13px;
        font-size: clamp(2.35rem, 7.2vw, 3.5rem);
        line-height: 0.98;
    }

    .about-hero-copy > p {
        max-width: 720px;
        margin-bottom: 0;
        font-size: 0.93rem;
        line-height: 1.5;
    }

    .about-motto {
        margin: 13px 0;
        padding-left: 14px;
    }

    .about-motto strong {
        font-size: 1.08rem;
    }

    .about-hero-actions {
        gap: 18px;
    }

    .about-hero-actions .button {
        min-height: 46px;
        padding-inline: 20px;
    }

    .about-hero-image {
        align-self: end;
        height: clamp(190px, 27vh, 250px);
        min-height: 190px;
        border-radius: 85px 18px 18px 18px;
    }

    .about-hero-image figcaption {
        right: 20px;
        bottom: 18px;
        left: 20px;
        font-size: 0.82rem;
    }

    .about-logo-display {
        width: min(60%, 230px);
        height: min(90%, 230px);
    }

    .about-facts {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-facts > div {
        min-height: 62px;
        padding: 9px 12px;
    }

    .about-facts strong {
        font-size: 0.8rem;
    }

    .about-facts span {
        font-size: 0.68rem;
    }

    .about-timeline {
        grid-template-columns: 1fr 1fr;
    }

    .about-timeline::before {
        display: none;
    }

    .purpose-panel-grid {
        grid-template-columns: 1fr;
    }

    .purpose-panel-grid article {
        min-height: 260px;
    }

    .objective-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-method-copy figure {
        height: 500px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .subject-stat {
        grid-template-columns: 1fr;
        gap: 10px;
        align-items: start;
    }

    .subject-stat strong {
        font-size: clamp(2.8rem, 15vw, 3.2rem);
        line-height: 1;
        white-space: nowrap;
    }

    .subject-stat span {
        max-width: none;
    }

    .about-hero {
        min-height: 760px;
        max-height: 920px;
        padding-top: 82px;
    }

    .about-hero-grid {
        gap: 13px;
        padding-bottom: 10px;
    }

    .about-hero-copy h1 {
        font-size: clamp(2.15rem, 10.5vw, 2.75rem);
    }

    .about-hero-actions {
        align-items: center;
        flex-direction: row;
    }

    .about-hero-image {
        height: clamp(145px, 19vh, 165px);
        min-height: 0;
        border-radius: 68px 16px 16px 16px;
    }

    .about-hero-image figcaption {
        right: 14px;
        bottom: 12px;
        left: 14px;
        font-size: 0.72rem;
    }

    .about-logo-display {
        width: min(56%, 150px);
        height: min(92%, 150px);
    }

    .about-logo-display > span {
        right: 2%;
        bottom: -2%;
        left: 2%;
        padding: 6px 8px;
        font-size: 0.52rem;
    }

    .about-facts {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-facts > div {
        min-height: 54px;
        padding: 7px 8px;
        border-bottom: 1px solid var(--line);
    }

    .about-facts strong {
        font-size: 0.68rem;
        line-height: 1.15;
    }

    .about-facts span {
        margin-top: 3px;
        font-size: 0.58rem;
        line-height: 1.2;
    }

    .about-intro-image {
        height: 410px;
    }

    .about-timeline,
    .about-principle-grid,
    .objective-grid {
        grid-template-columns: 1fr;
    }

    .about-timeline article > div {
        min-height: 271px;
    }

    .purpose-panel-grid article {
        min-height: 290px;
    }

    .about-principle-grid article {
        min-height: 270px;
    }

    .about-method-copy figure {
        height: 340px;
    }

    .method-step-list article {
        grid-template-columns: 28px 44px 1fr;
        gap: 12px;
        padding: 21px;
    }

    .about-card-icon-method {
        width: 44px;
        height: 44px;
    }

    .leadership-grid article {
        grid-template-columns: 1fr;
    }

    .about-cta-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}

.program-card.program-card-text {
    min-height: 520px;
    color: #d7e3ea;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 208, 138, 0.16), transparent 32%),
        var(--navy-deep);
}

.program-card.program-card-text h3 {
    color: var(--white);
}

.program-card.program-card-text p {
    color: #aebfca;
}

/* Additional About page photography */
.about-section-photo {
    position: relative;
    height: 520px;
    margin: 52px 0 55px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16);
}

.about-section-photo::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(5, 24, 42, 0.8));
    content: "";
}

.about-section-photo img,
.healthy-india-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-purpose-photo img {
    object-position: center 31%;
}

.about-objectives-photo img {
    object-position: center 38%;
}

.about-section-photo figcaption {
    position: absolute;
    z-index: 2;
    right: 25px;
    bottom: 23px;
    left: 25px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    color: rgba(255, 255, 255, 0.75);
}

.about-section-photo figcaption strong {
    color: var(--white);
    font-size: 1.2rem;
}

.about-section-photo figcaption span {
    font-size: 0.85rem;
}

.healthy-india-photo {
    height: 310px;
    margin: 30px 0 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
}

@media (max-width: 820px) {
    .about-section-photo,
    .healthy-india-photo {
        height: 390px;
    }

    .about-purpose-photo img,
    .about-objectives-photo img {
        object-position: center;
    }
}

@media (max-width: 560px) {
    .about-section-photo,
    .healthy-india-photo {
        height: 300px;
    }

    .about-section-photo figcaption {
        right: 18px;
        bottom: 17px;
        left: 18px;
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }
}

.gallery-page-hero {
    padding: 168px 0 96px;
    color: #d6e2dc;
    background:
        linear-gradient(135deg, rgba(7, 30, 51, 0.93), rgba(8, 122, 85, 0.88)),
        url("../../gallery/gallery-38-annual-sports-awards.webp") center / cover;
}

.gallery-page-hero-inner {
    max-width: 920px;
    margin-inline: auto;
    text-align: center;
}

.gallery-page-hero .eyebrow {
    justify-content: center;
}

.gallery-page-hero h1 {
    max-width: 880px;
    margin-inline: auto;
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(2.9rem, 5.2vw, 5.15rem);
    line-height: 1.08;
}

.gallery-page-hero p {
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.06rem;
    line-height: 1.75;
}

.gallery-page-section {
    padding-top: 56px;
    background: var(--paper);
}

.pinterest-gallery {
    column-count: 4;
    column-gap: 18px;
}

.pinterest-card {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 0 18px;
    overflow: hidden;
    break-inside: avoid;
    border: 1px solid rgba(16, 42, 67, 0.1);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 16px 38px rgba(16, 42, 67, 0.08);
}

.pinterest-open {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: zoom-in;
}

.pinterest-open::after {
    position: absolute;
    inset: 0;
    background: rgba(7, 30, 51, 0);
    content: "";
    pointer-events: none;
    transition: background 180ms ease;
}

.pinterest-open:hover::after,
.pinterest-open:focus-visible::after {
    background: rgba(7, 30, 51, 0.14);
}

.pinterest-card img {
    display: block;
    width: 100%;
    height: auto;
    background: var(--navy-deep);
}

.pinterest-card video {
    aspect-ratio: 464 / 832;
}

.pinterest-card figcaption {
    padding: 14px 17px 16px;
}

.pinterest-card figcaption strong {
    display: block;
    color: var(--navy);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 1rem;
}

.pinterest-card figcaption span {
    display: block;
    color: var(--muted);
    font-size: 0.83rem;
    line-height: 1.55;
}

.pinterest-card-video {
    border-color: rgba(217, 119, 6, 0.28);
}

.video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(7, 30, 51, 0.8);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.gallery-preview-open {
    overflow: hidden;
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox {
    position: fixed;
    z-index: 500;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 32px 82px;
    background: rgba(5, 24, 42, 0.92);
}

.gallery-lightbox-dialog {
    display: grid;
    width: min(100%, 1080px);
    max-height: calc(100vh - 64px);
    grid-template-rows: minmax(0, 1fr) auto;
    overflow: hidden;
    border-radius: 16px;
    background: #071e33;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.gallery-lightbox-media {
    display: grid;
    min-height: 0;
    place-items: center;
    background: #031220;
}

.gallery-lightbox-media img,
.gallery-lightbox-media video {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 154px);
    object-fit: contain;
}

.gallery-lightbox-media video {
    width: min(100%, 540px);
}

.gallery-lightbox-caption {
    padding: 18px 22px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-lightbox-caption h2 {
    margin: 0;
    color: var(--white);
    font-size: 1.05rem;
    letter-spacing: 0;
}

.gallery-lightbox-close,
.gallery-lightbox-arrow {
    position: fixed;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;
    color: var(--white);
    background: rgba(7, 30, 51, 0.7);
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-arrow:hover {
    background: rgba(217, 119, 6, 0.92);
    transform: scale(1.04);
}

.gallery-lightbox-close {
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    font-size: 2rem;
    line-height: 1;
}

.gallery-lightbox-arrow {
    top: 50%;
    width: 56px;
    height: 56px;
    font-size: 3rem;
    line-height: 1;
    transform: translateY(-50%);
}

.gallery-lightbox-arrow:hover {
    transform: translateY(-50%) scale(1.04);
}

.gallery-lightbox-prev {
    left: 18px;
}

.gallery-lightbox-next {
    right: 18px;
}

@media (max-width: 1080px) {
    .pinterest-gallery {
        column-count: 3;
    }
}

@media (max-width: 820px) {
    .gallery-page-hero {
        padding: 126px 0 68px;
    }

    .gallery-page-hero-inner {
        max-width: 640px;
        text-align: left;
    }

    .gallery-page-hero .eyebrow {
        justify-content: flex-start;
    }

    .gallery-page-hero h1,
    .gallery-page-hero p {
        margin-inline: 0;
    }

    .pinterest-gallery {
        column-count: 2;
    }

    .gallery-lightbox {
        padding: 24px 60px;
    }

    .gallery-lightbox-dialog {
        max-height: calc(100vh - 48px);
    }

    .gallery-lightbox-media img,
    .gallery-lightbox-media video {
        max-height: calc(100vh - 138px);
    }
}

@media (max-width: 560px) {
    .gallery-page-hero {
        padding: 116px 0 54px;
    }

    .gallery-page-hero h1 {
        font-size: clamp(2.25rem, 9vw, 2.85rem);
        line-height: 1.12;
    }

    .gallery-page-hero p {
        font-size: 0.98rem;
        line-height: 1.68;
    }

    .gallery-page-section {
        padding-top: 34px;
    }

    .pinterest-gallery {
        column-count: 1;
    }

    .pinterest-card {
        margin-bottom: 16px;
        border-radius: 14px;
    }

    .gallery-lightbox {
        padding: 64px 12px 20px;
        align-items: center;
    }

    .gallery-lightbox-dialog {
        width: 100%;
        max-height: calc(100vh - 96px);
        border-radius: 12px;
    }

    .gallery-lightbox-media img,
    .gallery-lightbox-media video {
        max-height: calc(100vh - 180px);
    }

    .gallery-lightbox-caption {
        padding: 14px 16px 16px;
    }

    .gallery-lightbox-arrow {
        top: auto;
        bottom: 18px;
        width: 46px;
        height: 46px;
        font-size: 2.25rem;
        transform: none;
    }

    .gallery-lightbox-arrow:hover {
        transform: scale(1.04);
    }

    .gallery-lightbox-prev {
        left: 18px;
    }

    .gallery-lightbox-next {
        right: 18px;
    }
}
