/* Foundations */
:root {
    --navy: #011d38;
    --blue: #027cb7;
    --turquoise: #54adcd;
    --pink: #d7395f;
    --gold: #ffde26;
    --ink: #16324a;
    --muted: #597086;
    --soft: #f4f9fb;
    --white: #fff;
    --line: #dce7ec;
    --shadow: 0 18px 45px rgba(1, 29, 56, 0.11);
    --radius: 20px;
    --shell: 1180px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Poppins, Arial, sans-serif;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.75;
    background: #fff;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input,
textarea,
select {
    font: inherit;
}
.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin: auto;
}
.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 1000;
    background: var(--gold);
    color: var(--navy);
    padding: 10px 16px;
    font-weight: 700;
}
.skip-link:focus {
    top: 15px;
}
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}
.section {
    padding: 100px 0;
}
.section--compact {
    padding: 42px 0;
}
.section--soft {
    background: var(--soft);
}
.section--navy {
    background: var(--navy);
    color: #fff;
}
.section--navy h2 {
    color: #fff;
}
.content-narrow {
    max-width: 760px;
}
.eyebrow {
    display: inline-flex;
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 13px;
}
.eyebrow--gold,
.eyebrow--light {
    color: var(--gold);
}
h1,
h2,
h3,
p {
    margin-top: 0;
}
h1,
h2,
h3 {
    font-weight: 600;
    line-height: 1.17;
    letter-spacing: -0.035em;
    color: var(--navy);
}
h1 {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
}
h1 em,
h2 em {
    font-style: normal;
    color: var(--blue);
}
h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 20px;
}
h3 {
    font-size: 1.18rem;
    margin-bottom: 9px;
}
p {
    color: var(--muted);
    margin-bottom: 18px;
}
.lead {
    font-size: 1.18rem;
    line-height: 1.75;
}
.button-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid var(--blue);
    border-radius: 8px;
    padding: 13px 20px;
    background: var(--blue);
    color: #fff;
    font-size: 0.87rem;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
    transition:
        transform 0.25s,
        box-shadow 0.25s,
        background 0.25s;
}
.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(2, 124, 183, 0.25);
    background: #026c9f;
}
.button:active {
    transform: translateY(0);
}
.button--ghost {
    background: #fff;
    color: var(--navy);
    border-color: var(--line);
}
.button--outline {
    color: var(--blue);
    background: transparent;
}
.button--gold {
    color: var(--navy);
    background: var(--gold);
    border-color: var(--gold);
}
.button--white {
    color: var(--navy);
    background: #fff;
    border-color: #fff;
}
.text-link {
    color: var(--blue);
    font-weight: 700;
    font-size: 0.88rem;
}
.label-center {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.68rem;
    color: var(--muted);
    font-weight: 700;
}
/* Header */
.topbar {
    height: 40px;
    background: #011d38;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.68rem;
    color: #fff;
}
.topbar a,
.topbar .social-links a {
    color: #fff;
}
.topbar__inner,
.nav__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar__contact {
    display: flex;
    gap: 19px;
}
.topbar a:hover,
.footer a:hover {
    color: var(--blue);
}
.topbar a:hover {
    color: #fff;
}
.topbar .social-links img {
    filter: invert(1);
}
.social-links {
    display: flex;
    gap: 8px;
}
.social-links a {
    display: grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    transition:
        transform 0.25s,
        color 0.25s;
}
.social-links a:hover {
    transform: rotate(12deg) scale(1.1);
}
.social-links img {
    width: 12px;
    height: 12px;
    object-fit: contain;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    transition: box-shadow 0.25s, background 0.25s;
}
.site-header:has(.nav.is-sticky) {
    box-shadow: 0 7px 24px rgba(1, 29, 56, 0.1);
}
body[data-page="home"] .site-header.is-over-hero {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}
body[data-page="home"] .site-header.is-over-hero .nav {
    background: transparent;
}
body[data-page="home"] .site-header.is-over-hero .brand__logo {
    filter: brightness(0) invert(1);
}
body[data-page="home"] .site-header.is-over-hero .nav-menu > a:not(.button),
body[data-page="home"] .site-header.is-over-hero .nav-dropdown > button {
    color: #fff;
}
body[data-page="home"] .site-header.is-over-hero .nav-toggle i {
    background: #fff;
}
.nav {
    height: 80px;
    background: #fff;
    position: relative;
}
.nav.is-sticky {
    background: transparent;
}
.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    line-height: 1.1;
}

.brand__logo {
    display: block;
    width: 150px;
    height: auto;
    max-width: none;
    object-position: left center;
    transition: transform 0.25s ease;
}
.brand:hover .brand__logo {
    transform: scale(1.025);
}
.brand__mark {
    display: grid;
    place-items: center;
    width: 37px;
    height: 37px;
    border-radius: 11px;
    background: var(--navy);
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 800;
    transition: transform 0.25s;
}
.brand:hover .brand__mark {
    transform: scale(1.07);
}
.brand strong {
    font-size: 1.05rem;
    color: var(--navy);
    letter-spacing: 0.04em;
}
.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.48rem;
    letter-spacing: 0.04em;
    margin-top: 3px;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 27px;
    font-size: 0.81rem;
    font-weight: 600;
}
.nav-menu > a:not(.button),
.nav-dropdown > button {
    position: relative;
    background: 0;
    border: 0;
    color: var(--navy);
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
    padding: 28px 0;
}
.nav-menu > a:not(.button):after,
.nav-dropdown > button:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 21px;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: 0.25s;
}
.nav-menu > a:hover:after,
.nav-dropdown > button:hover:after {
    left: 0;
    width: 100%;
}
.button--nav {
    padding: 10px 14px;
    font-size: 0.78rem;
}
.nav-dropdown {
    position: relative;
}
.dropdown-panel {
    position: absolute;
    top: 72px;
    left: -16px;
    width: 205px;
    padding: 9px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: 0.2s;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}
.dropdown-panel a {
    display: block;
    padding: 9px;
    font-size: 0.78rem;
    border-radius: 7px;
}
.dropdown-panel a:hover {
    background: var(--soft);
    color: var(--blue);
}
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
}
.nav-toggle i {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--navy);
    margin: 5px;
    transition: 0.25s;
}
/* Hero */
.hero {
    overflow: hidden;
}
body[data-page="home"] .hero {
    margin-top: -80px;
}
.hero-slider {
    position: relative;
    min-height: calc(100svh - 40px);
    max-height: 960px;
    background: var(--navy);
}
.hero-slider__track,
.hero-slider__slide {
    min-height: inherit;
}
.hero-slider__track {
    position: relative;
}
.hero-slider__slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(180deg, rgba(1, 17, 30, 0.12) 20%, rgba(1, 12, 21, 0.87) 100%), var(--hero-image);
    background-position: center;
    background-size: cover;
    transition: opacity 0.85s ease;
}
.hero-slider__slide.is-active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
}
.hero-slider__slide:nth-child(1) {
    background-image: linear-gradient(180deg, rgba(1, 17, 30, 0.12) 20%, rgba(1, 12, 21, 0.87) 100%), url("../images/_NAP9265.webp");
}
.hero-slider__slide:nth-child(2) {
    background-image: linear-gradient(180deg, rgba(1, 17, 30, 0.12) 20%, rgba(1, 12, 21, 0.87) 100%), url("../images/Untitled-9398.webp");
}
.hero-slider__slide:nth-child(3) {
    background-image: linear-gradient(180deg, rgba(1, 17, 30, 0.12) 20%, rgba(1, 12, 21, 0.87) 100%), url("../images/IMG_0339.jpg");
}
.hero-slider__content {
    padding: clamp(150px, 21vh, 245px) 0 clamp(100px, 14vh, 170px);
    color: #fff;
}
.hero-slider h1 {
    max-width: 900px;
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.03;
}
.hero-slider__content > p {
    max-width: none;
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(1.4rem, 3.1vw, 2.1rem);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.2;
}
.hero-slider .button {
    min-width: 245px;
    padding: 19px 28px;
    border: 0;
    border-radius: 13px;
    background: #0786c7;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
}
.hero-slider .button:hover {
    background: #026c9f;
}
.hero-slider__watch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
}
.hero-slider__watch span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding-left: 2px;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 0.8rem;
}
.hero-slider__arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 70px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 5rem;
    font-weight: 200;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: color 0.2s, transform 0.2s;
}
.hero-slider__arrow:hover {
    color: #fff;
}
.hero-slider__arrow--previous { left: 8px; }
.hero-slider__arrow--next { right: 8px; }
.hero__grid,
.page-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 75px;
    align-items: center;
}
.hero__content {
    padding: 75px 0;
}
.hero h1 {
    margin-bottom: 22px;
}
.hero__content > p {
    font-size: 1.05rem;
    max-width: 560px;
}
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 21px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
    color: var(--navy);
    font-size: 0.74rem;
    font-weight: 600;
}
.hero__visual {
    position: relative;
    padding: 26px 0;
}
.hero__visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}
.hero__orb {
    position: absolute;
    border-radius: 50%;
    animation: float 7s ease-in-out infinite;
}
.hero__orb--one {
    width: 135px;
    height: 135px;
    background: var(--gold);
    left: -40px;
    top: -10px;
}
.hero__orb--two {
    width: 92px;
    height: 92px;
    background: var(--turquoise);
    right: -28px;
    bottom: 8px;
    animation-delay: -3s;
}
.hero__note {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: -35px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    font-size: 0.72rem;
}
.hero__note strong,
.hero__note span {
    display: block;
}
.hero__note span {
    color: var(--muted);
    font-size: 0.65rem;
}
.partners {
    border-bottom: 1px solid var(--line);
}
.partner-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 20px;
    color: #97a7b0;
    font-size: 1.1rem;
    font-weight: 700;
}
.partner-logos img {
    flex: 0 1 155px;
    width: 155px;
    height: 56px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1);
    transition: 0.25s;
}
.partner-logos img:hover {
    filter: none;
    transform: scale(1.05);
}
/* Sections and cards */
.section-heading {
    max-width: 700px;
    margin-bottom: 42px;
}
.split-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 36px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}
.feature-card,
.value-card,
.info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 27px;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.feature-card:hover,
.value-card:hover {
    transform: translateY(-7px) scale(1.015);
    box-shadow: var(--shadow);
}
.feature-card b,
.value-card > span {
    display: inline-grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: #e7f4fa;
    color: var(--blue);
    font-size: 0.73rem;
    margin-bottom: 22px;
}
.feature-card p,
.value-card p {
    font-size: 0.82rem;
    margin: 0;
}
.at-a-glance {
    padding-top: 100px;
    padding-bottom: 100px;
}
.at-a-glance .shell {
    max-width: 1000px;
}
.at-a-glance__title {
    margin: 0 0 24px;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.2;
    text-align: center;
    text-transform: Capitalize;
}
.at-a-glance__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 26px;
}
.at-a-glance__card {
    position: relative;
    display: flex;
    min-height: 230px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 28px;
    border-radius: 26px;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}
.at-a-glance__card::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.28) 50%, transparent 75%);
    transform: translateX(-125%);
    transition: transform 0.55s ease;
}
@media (hover: hover) {
    .at-a-glance__card:hover {
        transform: translateY(-8px) scale(1.015);
        box-shadow: 0 18px 35px rgba(1, 29, 56, 0.18);
        filter: brightness(1.04);
    }
    .at-a-glance__card:hover::before {
        transform: translateX(125%);
    }
    .at-a-glance__card:hover strong {
        transform: translateY(-4px) scale(1.04);
    }
    .at-a-glance__card:hover span {
        transform: translateY(3px);
    }
    .at-a-glance__card--support:hover {
        transform: translateY(-6px) scale(1.01);
    }
}
@media (prefers-reduced-motion: reduce) {
    .at-a-glance__card,
    .at-a-glance__card::before,
    .at-a-glance__card strong,
    .at-a-glance__card span {
        transition: none;
    }
    .at-a-glance__card:hover,
    .at-a-glance__card--support:hover,
    .at-a-glance__card:hover strong,
    .at-a-glance__card:hover span,
    .at-a-glance__card:hover::before {
        transform: none;
    }
}
.at-a-glance__card strong {
    position: relative;
    z-index: 1;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 0.95;
    transition: transform 0.3s ease;
}
.at-a-glance__card span {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    font-size: clamp(1rem, 2.2vw, 1.8rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.15;
    transition: transform 0.3s ease;
}
.at-a-glance__card--class-size {
    background: #d93662;
    color: #fff;
}
.at-a-glance__card--ratio {
    background: var(--navy);
    color: #fff;
}
.at-a-glance__card--students {
    background: #087fba;
    color: #fff;
}
.at-a-glance__card--nationalities {
    background: #ffde26;
    color: #0876b3;
}
.at-a-glance__card--support {
    grid-column: 1 / -1;
    min-height: 162px;
    flex-direction: row;
    gap: 30px;
    background: #e4f3fa;
    color: #087fba;
}
.at-a-glance__card--support span {
    margin: 0;
    text-align: left;
}
.programme-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}
.programme-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(1, 29, 56, 0.05);
    transition: 0.3s;
}
.programme-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}
.programme-card img {
    height: 190px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.programme-card:hover img,
.gallery-item:hover img {
    transform: scale(1.06);
}
.programme-card > div {
    padding: 20px;
}
.programme-card span {
    font-size: 0.65rem;
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}
.programme-card h3 {
    margin: 5px 0 7px;
}
.programme-card p {
    font-size: 0.78rem;
    line-height: 1.7;
}
.programme-card a {
    font-size: 0.76rem;
    color: var(--blue);
    font-weight: 700;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.two-col--reverse > img {
    order: 2;
}
.image-stack {
    position: relative;
    padding: 0 40px 35px 0;
}
.image-stack img,
.rounded-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius);
}
.image-stack__badge {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 21px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 13px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.45;
}
.stats {
    display: flex;
    gap: 25px;
    margin: 28px 0;
}
.stats div {
    display: grid;
}
.stats strong {
    font-size: 1.75rem;
    line-height: 1;
    color: var(--blue);
}
.stats span {
    font-size: 0.67rem;
    color: var(--muted);
    margin-top: 5px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 15px;
}
.gallery-item {
    border: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    background: #e5eef2;
}
.gallery-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.45s;
}
.gallery-item--tall {
    grid-row: span 2;
}
.gallery-item--wide {
    grid-column: span 2;
}
.gallery-page-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
}
.gallery-page-grid .gallery-item:nth-child(1),
.gallery-page-grid .gallery-item:nth-child(6) {
    grid-row: span 2;
}
.gallery-page-grid .gallery-item:nth-child(4),
.gallery-page-grid .gallery-item:nth-child(8) {
    grid-column: span 2;
}
.testimonials {
    overflow: hidden;
}
.testimonial-wrap {
    max-width: 760px;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
}
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial {
    min-width: 100%;
    margin: 0;
}
.testimonial blockquote {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.5;
    color: var(--navy);
    margin: 0 0 28px;
}
.testimonial figcaption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.avatar {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f5d7df;
    color: var(--pink);
    font-weight: 700;
}
.avatar--blue {
    background: #d8eff8;
    color: var(--blue);
}
.avatar--gold {
    background: #fff1ad;
    color: #8b7600;
}
.testimonial figcaption strong,
.testimonial figcaption small {
    display: block;
    font-size: 0.75rem;
    line-height: 1.5;
}
.testimonial figcaption small {
    color: var(--muted);
}
.stars {
    margin-left: 12px;
    color: #e8b700;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}
.slider-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    justify-content: center;
}
.slider-controls button {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    cursor: pointer;
}
.slider-dots {
    display: flex;
    gap: 5px;
}
.slider-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c5d2d7;
}
.slider-dots i.active {
    background: var(--blue);
    width: 17px;
    border-radius: 5px;
}
.cta {
    background: var(--blue);
    color: #fff;
    text-align: center;
    padding: 88px 0;
}
.cta h2,
.cta p {
    color: #fff;
}
.cta p {
    font-size: 1.05rem;
}
.cta .button-row {
    justify-content: center;
}
/* Page content */
.page-hero {
    padding: 90px 0;
    background: #f3f9fb;
    overflow: hidden;
}
.page-hero img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.page-hero--blue {
    background: var(--navy);
    color: #fff;
}
.page-hero--blue h1 {
    color: #fff;
}
.page-hero--blue p {
    color: #c7d7e0;
}
.page-hero--short {
    padding: 85px 0;
}
.check-list,
.promise-list {
    list-style: none;
    padding: 0;
    margin: 27px 0;
}
.check-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.86rem;
}
.check-list li:before {
    content: "✓";
    color: var(--blue);
    font-weight: 700;
    margin-right: 11px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.promise-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px 0;
    color: #d2e1e8;
}
.promise-list li:before {
    content: "✦";
    color: var(--gold);
    margin-right: 10px;
}
.info-card {
    padding: 35px;
}
.info-card h3 {
    font-size: 1.5rem;
}
.info-card .text-link {
    display: block;
    margin-top: 13px;
}
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
    margin: 0;
    gap: 23px;
    list-style: none;
}
.steps li {
    position: relative;
    padding-top: 55px;
}
.steps b {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--blue);
    font-size: 1.9rem;
    letter-spacing: -0.05em;
}
.steps h3 {
    font-size: 1.02rem;
}
.steps p {
    font-size: 0.78rem;
}
.form-layout,
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 75px;
}
.contact-form {
    padding: 32px;
    background: var(--soft);
    border-radius: var(--radius);
}
.contact-form h2 {
    font-size: 2rem;
}
.contact-form label {
    display: grid;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 11px;
    border: 1px solid #cbd9df;
    border-radius: 7px;
    background: #fff;
    color: var(--navy);
    font-size: 0.82rem;
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(2, 124, 183, 0.12);
}
.programme-detail {
    padding: 95px 0;
}
.specialist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.specialist-grid div {
    padding: 23px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 13px;
    color: #dbe7ed;
    font-size: 0.86rem;
}
.contact-details > div {
    margin-top: 23px;
}
.contact-details strong {
    color: var(--navy);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.contact-details p {
    margin-top: 4px;
}
.contact-details a {
    color: var(--blue);
    font-weight: 600;
}
.accordion {
    margin-top: 30px;
    border-top: 1px solid var(--line);
}
.accordion button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background: none;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 3px;
    color: var(--navy);
    font-weight: 700;
    cursor: pointer;
}
.accordion button span {
    font-size: 1.35rem;
    font-weight: 400;
    transition: 0.25s;
}
.accordion button[aria-expanded="true"] span {
    transform: rotate(45deg);
    color: var(--blue);
}
.accordion > div {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s;
}
.accordion > div p {
    overflow: hidden;
    margin: 0;
}
.accordion > div.is-open {
    grid-template-rows: 1fr;
}
.accordion > div.is-open p {
    padding: 17px 3px;
}
.policy-list {
    margin-top: 30px;
    border-top: 1px solid var(--line);
}
.policy-list a {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
    transition: 0.2s;
}
.policy-list a:hover {
    color: var(--blue);
    padding-left: 8px;
}
/* Motion, footer and lightbox */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}
.reveal--right {
    transform: translateX(28px);
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
.to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.6);
    pointer-events: none;
    transition: 0.25s;
    z-index: 10;
}
.to-top.is-visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
@keyframes float {
    50% {
        transform: translateY(14px) rotate(8deg);
    }
}
.footer {
    background: var(--navy);
    color: #d2e1e8;
    padding: 65px 0 20px;
    font-size: 0.78rem;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
    gap: 40px;
}
.footer h2 {
    font-size: 0.88rem;
    color: #fff;
    letter-spacing: 0;
    margin-bottom: 17px;
}
.footer p {
    color: #b8cad4;
    font-size: 0.75rem;
    line-height: 1.7;
}
.footer a:not(.brand) {
    display: block;
    margin: 8px 0;
    color: #d2e1e8;
}
.brand--footer strong {
    color: #fff;
}
.brand--footer .brand__logo {
    width: 200px;
    height: auto;
}
.brand--footer small {
    color: #b8cad4;
}
.footer .social-links {
    margin-top: 18px;
}
.footer .social-links a {
    display: grid;
    color: #fff;
    margin: 0;
}
.footer .social-links img {
    filter: invert(1);
}
.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 48px;
    padding-top: 17px;
    color: #93aab7;
    font-size: 0.67rem;
}
.footer__bottom span:last-child {
    display: flex;
    gap: 17px;
}
.footer__bottom a {
    margin: 0 !important;
}
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(1, 29, 56, 0.92);
    display: grid;
    place-items: center;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
}
.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}
.lightbox img {
    max-height: 88vh;
    max-width: 92vw;
    border-radius: 12px;
}
.lightbox button {
    position: absolute;
    top: 18px;
    right: 25px;
    border: 0;
    background: none;
    color: #fff;
    font-size: 2.3rem;
    cursor: pointer;
}
