:root {
    --hb-navy: #08295a;
    --hb-navy-2: #0f3d73;
    --hb-gold: #b88122;
    --hb-gold-2: #f1c76b;
    --hb-ivory: #fbf8f1;
    --hb-ink: #152033;
    --hb-muted: #687386;
    --hb-teal: #26b9c8;
    --hb-coral: #ff6b5f;
    --hb-radius: 20px;
    --hb-shadow: 0 24px 80px rgba(8, 41, 90, 0.16);
}

body {
    background: var(--hb-ivory);
    color: var(--hb-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: var(--hb-navy);
}

.btn,
.support-link {
    --motion-x: 0px;
    --motion-y: 0px;
    --pointer-x: 50%;
    --pointer-y: 50%;
    position: relative;
    transform: translate3d(var(--motion-x), var(--motion-y), 0);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease,
        background-color 220ms ease,
        color 220ms ease;
    will-change: transform;
}

.btn {
    overflow: hidden;
    isolation: isolate;
}

.btn::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    opacity: 0;
    background:
        radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.62), transparent 28%),
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.42) 46%, transparent 68%);
    transform: translateX(-120%) skewX(-18deg);
    transition: opacity 220ms ease, transform 620ms ease;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
    transition: opacity 220ms ease;
}

.btn:hover {
    transform: translate3d(var(--motion-x), calc(var(--motion-y) - 0.22rem), 0) scale(1.025);
}

.btn:hover::before {
    opacity: 1;
    transform: translateX(120%) skewX(-18deg);
}

.btn:hover::after {
    opacity: 1;
}

.btn:active {
    transform: translate3d(0, 0.08rem, 0) scale(0.985);
}

.btn:focus-visible,
.support-link:focus-visible {
    outline: 3px solid rgba(38, 185, 200, 0.45);
    outline-offset: 4px;
}

.site-navbar {
    background: rgba(251, 248, 241, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(8, 41, 90, 0.08);
}

@media (min-width: 992px) {
    .site-navbar .container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        column-gap: 1.25rem;
        align-items: center;
    }

    .brand-mark {
        justify-self: start;
    }

    .navbar-whatsapp {
        justify-self: center;
        margin-left: 0;
    }

    .site-navbar .navbar-collapse {
        justify-self: end;
        width: 100%;
    }

    .site-navbar .navbar-nav {
        justify-content: flex-end;
        width: 100%;
    }
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    color: var(--hb-navy);
    font-weight: 800;
    letter-spacing: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: 3.4rem;
    max-width: min(15rem, 56vw);
    border-radius: 0.85rem;
    object-fit: contain;
}

.nav-link {
    color: var(--hb-ink);
    font-weight: 600;
}

.navbar-whatsapp {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: clamp(0.75rem, 2vw, 2rem);
    padding: 0.62rem 1rem;
    color: #fff;
    background: linear-gradient(135deg, #087a72, var(--hb-teal));
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(8, 122, 114, 0.22);
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    isolation: isolate;
    overflow: visible;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.navbar-whatsapp::before,
.navbar-whatsapp::after {
    content: "";
    position: absolute;
    inset: -0.38rem;
    z-index: -1;
    border: 1px solid rgba(8, 122, 114, 0.34);
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    animation: whatsappWave 2.6s ease-out infinite;
}

.navbar-whatsapp::after {
    border-color: rgba(38, 185, 200, 0.3);
    animation-delay: 1.3s;
}

.navbar-whatsapp:hover {
    color: #fff;
    box-shadow: 0 20px 44px rgba(8, 122, 114, 0.3);
    transform: translateY(-0.18rem);
}

.navbar-whatsapp-icon {
    display: inline-grid;
    place-items: center;
    width: 1.35rem;
    height: 1.35rem;
}

.navbar-whatsapp-icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.navbar-whatsapp-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-contact-btn {
    padding: 0.62rem 1.1rem;
}

.btn-brand {
    --bs-btn-bg: linear-gradient(135deg, var(--hb-gold), var(--hb-gold-2));
    --bs-btn-border-color: transparent;
    --bs-btn-color: #09224b;
    --bs-btn-hover-color: #09224b;
    background: linear-gradient(135deg, var(--hb-gold), var(--hb-gold-2));
    border: 0;
    box-shadow: 0 14px 35px rgba(184, 129, 34, 0.28);
    font-weight: 800;
}

.btn-brand:hover {
    box-shadow: 0 24px 52px rgba(184, 129, 34, 0.38);
}

.btn-soft {
    --bs-btn-bg: rgba(8, 41, 90, 0.08);
    --bs-btn-border-color: rgba(8, 41, 90, 0.1);
    --bs-btn-color: var(--hb-navy);
    --bs-btn-hover-bg: rgba(8, 41, 90, 0.14);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28)),
        rgba(8, 41, 90, 0.08);
    border-color: rgba(8, 41, 90, 0.12);
    font-weight: 800;
}

.btn-soft:hover {
    border-color: rgba(184, 129, 34, 0.35);
    box-shadow: 0 18px 44px rgba(8, 41, 90, 0.14);
}

.hero-shell,
.page-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 15%, rgba(38, 185, 200, 0.22), transparent 26rem),
        radial-gradient(circle at 8% 72%, rgba(255, 107, 95, 0.12), transparent 24rem),
        linear-gradient(135deg, #ffffff 0%, var(--hb-ivory) 48%, #eef6ff 100%);
}

.hero-shell::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: auto -10rem -12rem auto;
    width: 28rem;
    height: 28rem;
    border: 2rem solid rgba(184, 129, 34, 0.18);
    border-radius: 42% 58% 60% 40%;
    animation: floatRotate 18s linear infinite;
}

.title-hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(17rem, 28vw, 24rem);
    overflow: hidden;
    padding: clamp(4rem, 8vw, 6.2rem) 0;
    color: #fff;
    text-align: center;
    background-color: #06172e;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.64)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1900&q=84");
    background-position: center 42%;
    background-repeat: no-repeat;
    background-size: cover;
}

.title-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 52%, rgba(255, 159, 22, 0.08), transparent 24rem);
    pointer-events: none;
}

.title-hero .container {
    position: relative;
    z-index: 1;
}

.title-hero h1 {
    margin-bottom: 0.85rem;
    color: #fff;
    font-size: clamp(2.35rem, 4.8vw, 3.45rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
    text-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
}

.title-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 900;
}

.title-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.title-breadcrumb a:hover {
    color: var(--hb-gold-2);
}

.title-breadcrumb span[aria-current="page"] {
    color: #ff9f16;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-copy::before {
    content: "";
    position: absolute;
    top: -2.4rem;
    left: -3.2rem;
    width: 10rem;
    height: 10rem;
    border: 0.8rem solid rgba(184, 129, 34, 0.2);
    border-radius: 42% 58% 60% 40%;
    pointer-events: none;
    z-index: -1;
    animation: floatRotate 14s linear infinite reverse;
}

.hero-copy::after {
    content: "";
    position: absolute;
    top: 0.65rem;
    left: 8.5rem;
    width: 3.25rem;
    height: 3.25rem;
    background: linear-gradient(135deg, rgba(38, 185, 200, 0.22), rgba(255, 107, 95, 0.18));
    border-radius: 32% 68% 50% 50%;
    pointer-events: none;
    z-index: -1;
    animation: floatRotate 10s linear infinite;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--hb-gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    color: var(--hb-navy);
    font-size: clamp(2.6rem, 7vw, 5.75rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.95;
}

.lead {
    color: var(--hb-muted);
    max-width: 46rem;
}

.hero-bento {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    transform: translateY(calc(var(--scroll-y, 0px) * -0.03));
}

.bento-card {
    --bento-image: none;
    --bento-overlay: linear-gradient(180deg, rgba(8, 41, 90, 0.06) 0%, rgba(8, 41, 90, 0.82) 100%);
    min-height: 11.75rem;
    border-radius: var(--hb-radius);
    box-shadow: var(--hb-shadow);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 1.35rem;
    color: #fff;
    background-image: var(--bento-overlay), var(--bento-image);
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: 100% 100%, 112%;
    font-size: 1.05rem;
    font-weight: 900;
    overflow: hidden;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
    transition: transform 240ms ease, box-shadow 240ms ease, background-size 520ms ease;
}

.bento-card h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
}

.bento-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.45;
}

.bento-card:hover {
    transform: translateY(-0.35rem);
    background-size: 100% 100%, 120%;
    box-shadow: 0 30px 95px rgba(8, 41, 90, 0.22);
}

.programmes-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "heading heading"
        "home tuition"
        "languages pathways";
    gap: 0.85rem;
    align-content: center;
    max-width: 100%;
    margin-left: auto;
}

.programme-bento-heading {
    grid-area: heading;
    grid-column: 1 / -1;
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: 1rem 1.15rem;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(8, 41, 90, 0.92), rgba(8, 122, 114, 0.82)),
        linear-gradient(135deg, rgba(184, 129, 34, 0.28), transparent);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1rem;
    box-shadow: 0 18px 46px rgba(8, 41, 90, 0.14);
}

.programme-bento-heading::after {
    content: "";
    position: absolute;
    right: -1.4rem;
    top: -1.8rem;
    width: 6rem;
    height: 6rem;
    border: 0.8rem solid rgba(241, 199, 107, 0.18);
    border-radius: 42% 58% 60% 40%;
    animation: floatRotate 12s linear infinite;
}

.programme-bento-heading > * {
    position: relative;
    z-index: 1;
}

.programme-bento-heading span,
.programme-card-label {
    display: block;
    max-width: 100%;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.12;
    text-decoration: none;
    text-wrap: balance;
}

.programme-bento-heading small,
.programme-card-description {
    display: block;
    max-width: 100%;
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.programmes-bento .bento-card {
    position: relative;
    min-width: 0;
    min-height: 8.7rem;
    padding: 1.05rem;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1.15rem;
    color: #fff;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    text-decoration: none;
    background-size: 100% 100%, 110%;
    box-shadow: 0 22px 62px rgba(8, 41, 90, 0.18);
    text-align: left;
}

.programme-card,
.programme-card:hover,
.programme-card:focus {
    color: #fff;
    text-decoration: none;
}

.programme-card > * {
    position: relative;
    z-index: 1;
}

.programme-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    background: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.34), transparent 38%);
    transition: opacity 260ms ease;
}

.programmes-bento .bento-card:hover {
    background-size: 100% 100%, 116%;
}

.programme-card:hover::before {
    opacity: 1;
}

.programme-card-home {
    grid-area: home;
    --bento-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=800&q=80");
    --bento-overlay: linear-gradient(135deg, rgba(8, 41, 90, 0.9), rgba(184, 129, 34, 0.68));
}

.programme-card-tuition {
    grid-area: tuition;
    --bento-image: url("https://images.unsplash.com/photo-1513258496099-48168024aec0?auto=format&fit=crop&w=800&q=80");
    --bento-overlay: linear-gradient(135deg, rgba(8, 122, 114, 0.88), rgba(8, 41, 90, 0.74));
}

.programme-card-languages {
    grid-area: languages;
    min-height: 13rem;
    --bento-image: url("https://images.unsplash.com/photo-1456513080510-7bf3a84b82f8?auto=format&fit=crop&w=800&q=80");
    --bento-overlay: linear-gradient(135deg, rgba(8, 41, 90, 0.88), rgba(255, 107, 95, 0.58));
}

.programme-card-pathways {
    grid-area: pathways;
    min-height: 13rem;
    --bento-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=800&q=80");
    --bento-overlay: linear-gradient(135deg, rgba(184, 129, 34, 0.78), rgba(8, 41, 90, 0.88));
}

.programme-chip-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.38rem;
    width: 100%;
    margin-top: 0.85rem;
}

.programme-chip-list > span {
    display: block;
    min-width: 0;
    padding: 0.42rem 0.52rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.7rem;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.programme-chip-list strong,
.programme-chip-list small {
    display: block;
    text-decoration: none;
}

.programme-chip-list strong {
    font-size: 0.72rem;
    line-height: 1.15;
}

.programme-chip-list small {
    margin-top: 0.1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.61rem;
    font-weight: 700;
    line-height: 1.22;
}

.bento-card-gold {
    --bento-image: url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=900&q=80");
    --bento-overlay: linear-gradient(135deg, rgba(184, 129, 34, 0.88) 0%, rgba(8, 41, 90, 0.66) 100%);
    color: #fff;
}

.bento-card-navy {
    min-height: 14rem;
    --bento-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80");
    --bento-overlay: linear-gradient(160deg, rgba(8, 41, 90, 0.92) 0%, rgba(15, 61, 115, 0.42) 55%, rgba(8, 41, 90, 0.82) 100%);
}

.bento-card-light {
    --bento-image: url("https://images.unsplash.com/photo-1497633762265-9d179a990aa6?auto=format&fit=crop&w=900&q=80");
    --bento-overlay: linear-gradient(160deg, rgba(255, 255, 255, 0.18) 0%, rgba(8, 41, 90, 0.78) 100%);
    color: #fff;
}

.bento-card-accent {
    --bento-image: url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=900&q=80");
    --bento-overlay: linear-gradient(135deg, rgba(38, 185, 200, 0.86) 0%, rgba(255, 107, 95, 0.58) 48%, rgba(8, 41, 90, 0.82) 100%);
}

.section-space {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.about-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.98)),
        repeating-linear-gradient(135deg, rgba(8, 41, 90, 0.04) 0 1px, transparent 1px 18px);
}

.about-media {
    position: relative;
    min-height: 40rem;
    max-width: 37rem;
    margin: 0 auto;
}

.about-img {
    position: absolute;
    display: block;
    object-fit: cover;
    box-shadow: 0 24px 70px rgba(8, 41, 90, 0.16);
}

.about-img-primary {
    top: 0;
    left: 2rem;
    width: 17.5rem;
    height: 26rem;
    border-radius: 5rem 5rem 0 5rem;
}

.about-img-circle {
    top: 0.15rem;
    right: 0;
    width: 16.4rem;
    height: 16.4rem;
    padding: 0.5rem;
    background: #fff;
    border: 2px dashed var(--hb-gold);
    border-radius: 50%;
}

.about-img-secondary {
    right: 1.1rem;
    bottom: 0;
    width: 18.5rem;
    height: 20.2rem;
    border-radius: 0 5rem 5rem 5rem;
}

.about-badge {
    position: absolute;
    left: 2rem;
    bottom: 3.65rem;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 1rem;
    width: min(17rem, 76%);
    min-height: 7.8rem;
    padding: 1.3rem 1.5rem;
    color: #fff;
    background: linear-gradient(135deg, #ff9f16, var(--hb-gold));
    border-radius: 3.25rem 3.25rem 3.25rem 0;
    box-shadow: 0 24px 70px rgba(184, 129, 34, 0.25);
}

.about-badge strong,
.about-badge span:last-child {
    display: block;
    font-weight: 900;
    line-height: 1.25;
}

.about-badge span:last-child {
    margin-top: 0.22rem;
    font-size: 0.95rem;
}

.about-badge-icon,
.feature-icon,
.support-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
}

.about-badge-icon {
    width: 4.7rem;
    height: 4.7rem;
    color: #ff9f16;
    background: #fff;
    border-radius: 50%;
}

.about-badge-icon svg,
.feature-icon svg,
.support-icon svg,
.eyebrow-icon svg {
    width: 1.9rem;
    height: 1.9rem;
}

.about-badge-icon path,
.feature-icon path,
.support-icon path,
.eyebrow-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-content {
    max-width: 42rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    color: #ff9f16;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.eyebrow-icon {
    display: inline-grid;
    place-items: center;
}

.eyebrow-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.section-title {
    margin-bottom: 1.25rem;
    color: var(--hb-ink);
    font-size: clamp(2.15rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.04;
}

.section-title span {
    color: #ff9f16;
}

.section-copy {
    max-width: 40rem;
    color: var(--hb-muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(13rem, 0.85fr);
    gap: 1.15rem 1.4rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    gap: 0.95rem;
}

.feature-icon {
    width: 4.5rem;
    height: 4.5rem;
    color: #fff;
    background: linear-gradient(135deg, #ff9f16, var(--hb-gold));
    border: 0.45rem solid rgba(184, 129, 34, 0.12);
    border-radius: 50%;
    box-shadow: 0 16px 34px rgba(184, 129, 34, 0.2);
}

.about-feature h3 {
    margin-bottom: 0.35rem;
    color: #06172e;
    font-size: 1.1rem;
    font-weight: 900;
}

.about-feature p {
    margin-bottom: 0;
    color: var(--hb-muted);
    line-height: 1.7;
}

.about-quote {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    position: relative;
    margin: 0;
    padding: 1.45rem 1.45rem 2.25rem;
    color: #06172e;
    background: #eaf1f0;
    border-radius: 1.25rem;
}

.about-quote p {
    margin: 0;
    line-height: 1.75;
}

.about-quote span {
    position: absolute;
    right: 1rem;
    bottom: -0.35rem;
    color: #087a72;
    font-size: 2.9rem;
    font-weight: 900;
    line-height: 1;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.4rem;
    margin-top: 2rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(8, 41, 90, 0.12);
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--hb-navy);
    font-weight: 900;
    text-decoration: none;
}

.support-link:hover {
    color: var(--hb-navy);
    transform: translate3d(var(--motion-x), calc(var(--motion-y) - 0.18rem), 0);
}

.support-link small {
    display: block;
    color: #ff9f16;
    font-size: 0.85rem;
    font-weight: 800;
}

.support-icon {
    width: 3.75rem;
    height: 3.75rem;
    color: #fff;
    background: #087a72;
    border: 0.35rem solid rgba(8, 122, 114, 0.12);
    border-radius: 50%;
    box-shadow: 0 14px 32px rgba(8, 122, 114, 0.2);
    transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.support-link:hover .support-icon {
    background: linear-gradient(135deg, #087a72, var(--hb-teal));
    box-shadow: 0 20px 42px rgba(8, 122, 114, 0.28);
    transform: rotate(-6deg) scale(1.06);
}

.services-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(8, 83, 85, 0.92), rgba(10, 109, 103, 0.7), rgba(8, 41, 90, 0.86)),
        url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1800&q=82");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 22%, rgba(241, 199, 107, 0.18), transparent 18rem),
        radial-gradient(circle at 84% 12%, rgba(38, 185, 200, 0.16), transparent 20rem);
    pointer-events: none;
}

.services-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 0.35rem;
    background: linear-gradient(90deg, var(--hb-gold), var(--hb-teal), var(--hb-gold-2));
}

.services-overlay {
    position: relative;
    z-index: 1;
    padding: clamp(4.5rem, 8vw, 7.25rem) 0;
    background: rgba(4, 48, 54, 0.28);
    backdrop-filter: saturate(115%);
}

.services-heading {
    max-width: 52rem;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.section-eyebrow-light {
    color: var(--hb-gold-2);
}

.services-heading h2 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 4.35rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.02;
    text-shadow: 0 14px 42px rgba(0, 0, 0, 0.18);
}

.services-heading p {
    max-width: 46rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.service-item {
    position: relative;
    min-height: 18rem;
    padding: 2.15rem 1.45rem 1.6rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--hb-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    transform: translateY(calc(var(--scroll-y, 0px) * -0.006));
    transition: transform 280ms ease, background 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.service-item::before {
    content: "";
    position: absolute;
    inset: -40% auto auto -25%;
    width: 11rem;
    height: 11rem;
    background: radial-gradient(circle, rgba(241, 199, 107, 0.24), transparent 68%);
    opacity: 0;
    transition: opacity 280ms ease, transform 280ms ease;
}

.service-item:hover {
    border-color: rgba(241, 199, 107, 0.56);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    box-shadow: 0 34px 92px rgba(0, 0, 0, 0.24);
    transform: translateY(-0.55rem);
}

.service-item:hover::before {
    opacity: 1;
    transform: translate3d(1.2rem, 1.2rem, 0);
}

.service-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 6.45rem;
    height: 5.95rem;
    margin-bottom: 1.45rem;
    color: #fff;
    background: linear-gradient(135deg, #ff9f16, var(--hb-gold));
    border-radius: 42% 58% 55% 45%;
    box-shadow: 0 18px 42px rgba(255, 159, 22, 0.3);
    transition: transform 320ms ease, border-radius 320ms ease, box-shadow 320ms ease;
}

.service-icon::after {
    content: "";
    position: absolute;
    right: -0.55rem;
    bottom: -0.55rem;
    z-index: -1;
    width: 4.6rem;
    height: 4.6rem;
    border: 0.2rem solid rgba(255, 255, 255, 0.88);
    border-left-color: transparent;
    border-radius: 50%;
}

.service-icon svg {
    width: 2.35rem;
    height: 2.35rem;
}

.service-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-item:hover .service-icon {
    border-radius: 57% 43% 45% 55%;
    box-shadow: 0 24px 52px rgba(255, 159, 22, 0.38);
    transform: translateY(-0.25rem) rotate(-5deg);
}

.service-item h3 {
    margin-bottom: 0.75rem;
    color: #fff;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 900;
    letter-spacing: 0;
}

.service-item p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.about-page-intro,
.about-principles-section,
.about-fit-section,
.about-method-section,
.about-curriculum-strip,
.about-final-cta {
    position: relative;
    overflow: hidden;
}

.about-page-intro {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    background:
        radial-gradient(circle at 88% 18%, rgba(38, 185, 200, 0.12), transparent 20rem),
        linear-gradient(180deg, #fff, var(--hb-ivory));
}

.about-page-intro h2,
.about-section-heading h2,
.about-fit-section h2,
.about-method-section h2,
.about-curriculum-panel h2,
.about-final-card h2 {
    color: #152033;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.06;
}

.about-page-intro h2 {
    max-width: 42rem;
    margin-bottom: 1.25rem;
    font-size: clamp(2.2rem, 4.8vw, 3.9rem);
}

.about-page-intro p {
    color: var(--hb-muted);
    font-size: 1.02rem;
    line-height: 1.85;
}

.about-page-lead {
    color: var(--hb-ink) !important;
    font-size: 1.13rem !important;
    font-weight: 700;
}

.about-page-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.15rem;
    margin-top: 1.75rem;
}

.about-inline-link {
    display: inline-flex;
    align-items: center;
    color: var(--hb-navy);
    font-weight: 900;
    text-decoration: none;
}

.about-inline-link:hover {
    color: #ff9f16;
}

.about-page-media {
    position: relative;
    min-height: 34rem;
}

.about-page-img-main,
.about-page-img-small {
    position: absolute;
    display: block;
    object-fit: cover;
    box-shadow: 0 28px 80px rgba(8, 41, 90, 0.16);
}

.about-page-img-main {
    inset: 0 auto auto 0;
    width: 76%;
    height: 28rem;
    border-radius: 2rem 6rem 2rem 2rem;
}

.about-page-img-small {
    right: 0;
    bottom: 0;
    width: 45%;
    height: 17rem;
    border: 0.55rem solid #fff;
    border-radius: 4rem 1.4rem 4rem 1.4rem;
}

.about-page-media-note {
    position: absolute;
    left: 2rem;
    bottom: 1.2rem;
    width: min(20rem, 78%);
    padding: 1.2rem 1.35rem;
    color: #fff;
    background: linear-gradient(135deg, var(--hb-navy), #087a72);
    border-radius: 1.3rem;
    box-shadow: 0 24px 64px rgba(8, 41, 90, 0.2);
}

.about-page-media-note strong,
.about-page-media-note span {
    display: block;
}

.about-page-media-note strong {
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
    font-weight: 900;
}

.about-page-media-note span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.55;
}

.about-principles-section {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    background: #fff;
}

.about-principles-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 22%, rgba(255, 159, 22, 0.08), transparent 20rem),
        radial-gradient(circle at 92% 76%, rgba(38, 185, 200, 0.08), transparent 18rem);
    pointer-events: none;
}

.about-principles-section .container,
.about-fit-section .container,
.about-method-section .container,
.about-curriculum-strip .container,
.about-final-cta .container {
    position: relative;
    z-index: 1;
}

.about-section-heading {
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-section-heading h2,
.about-fit-section h2,
.about-method-section h2,
.about-curriculum-panel h2,
.about-final-card h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.05rem, 4.6vw, 3.65rem);
}

.about-section-heading p,
.about-fit-copy,
.about-method-section p,
.about-curriculum-panel p,
.about-final-card p {
    color: var(--hb-muted);
    font-size: 1.03rem;
    line-height: 1.8;
}

.about-principles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
}

.about-principle-card,
.about-fit-card {
    min-width: 0;
    padding: 1.45rem;
    background: #fff;
    border: 1px solid rgba(8, 41, 90, 0.08);
    border-radius: 1.1rem;
    box-shadow: 0 20px 56px rgba(8, 41, 90, 0.08);
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.about-principle-card:hover,
.about-fit-card:hover {
    border-color: rgba(255, 159, 22, 0.28);
    box-shadow: 0 28px 72px rgba(8, 41, 90, 0.13);
    transform: translateY(-0.35rem);
}

.about-principle-icon {
    display: inline-grid;
    place-items: center;
    width: 4.2rem;
    height: 4.2rem;
    margin-bottom: 1.15rem;
    color: #fff;
    background: linear-gradient(135deg, #ff9f16, var(--hb-gold));
    border-radius: 42% 58% 55% 45%;
    box-shadow: 0 18px 42px rgba(255, 159, 22, 0.26);
}

.about-principle-icon svg {
    width: 1.9rem;
    height: 1.9rem;
}

.about-principle-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-principle-card h3,
.about-fit-card h3,
.about-method-step h3 {
    margin-bottom: 0.65rem;
    color: #06172e;
    font-size: 1.12rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.22;
}

.about-principle-card p,
.about-fit-card p,
.about-method-step p {
    margin-bottom: 0;
    color: var(--hb-muted);
    line-height: 1.75;
}

.about-fit-section {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(8, 41, 90, 0.94), rgba(8, 122, 114, 0.84)),
        url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1800&q=82");
    background-position: center;
    background-size: cover;
}

.about-fit-section h2,
.about-fit-section .programme-eyebrow {
    color: #fff;
}

.about-fit-copy {
    color: rgba(255, 255, 255, 0.78);
}

.about-fit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
}

.about-fit-card {
    min-height: 16rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.14);
}

.about-fit-card h3 {
    color: #fff;
}

.about-fit-card p {
    color: rgba(255, 255, 255, 0.76);
}

.about-method-section {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    background:
        radial-gradient(circle at 12% 82%, rgba(255, 107, 95, 0.08), transparent 20rem),
        linear-gradient(180deg, var(--hb-ivory), #fff);
}

.about-method-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.about-method-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    padding: 1.2rem;
    background: #fff;
    border: 1px solid rgba(8, 41, 90, 0.08);
    border-radius: 1.1rem;
    box-shadow: 0 18px 48px rgba(8, 41, 90, 0.08);
}

.about-method-step > span {
    display: inline-grid;
    place-items: center;
    width: 3.3rem;
    height: 3.3rem;
    color: #fff;
    background: var(--hb-navy);
    border-radius: 50%;
    font-weight: 900;
}

.about-curriculum-strip {
    padding: clamp(4.5rem, 8vw, 6.5rem) 0;
    background: #fff;
}

.about-curriculum-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: center;
    padding: clamp(1.5rem, 4vw, 2.6rem);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(8, 41, 90, 0.96), rgba(8, 122, 114, 0.9)),
        var(--hb-navy);
    border-radius: 1.4rem;
    box-shadow: 0 28px 80px rgba(8, 41, 90, 0.18);
}

.about-curriculum-panel h2,
.about-curriculum-panel .programme-eyebrow {
    color: #fff;
}

.about-curriculum-panel p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.about-curriculum-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.about-curriculum-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 2.45rem;
    padding: 0.55rem 0.78rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1;
}

.about-final-cta {
    padding: clamp(4.5rem, 8vw, 6.5rem) 0;
    background:
        linear-gradient(90deg, rgba(8, 41, 90, 0.2), rgba(8, 41, 90, 0.02) 45%, rgba(8, 41, 90, 0.34)),
        url("https://images.unsplash.com/photo-1513258496099-48168024aec0?auto=format&fit=crop&w=1800&q=84");
    background-position: center;
    background-size: cover;
}

.about-final-card {
    width: min(42rem, 100%);
    padding: clamp(2rem, 4vw, 3rem);
    color: #fff;
    background: #ff9f16;
    border: 0.2rem solid rgba(255, 255, 255, 0.92);
    border-radius: 3rem 3rem 3rem 0.85rem;
    box-shadow:
        0 0 0 0.42rem #ff9f16,
        0 22px 70px rgba(8, 41, 90, 0.24),
        inset 0 0 0 0.18rem rgba(255, 255, 255, 0.82);
}

.about-final-card h2 {
    color: #fff;
}

.about-final-card p {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.88);
}

.contact-page-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 159, 22, 0.09), transparent 21rem),
        radial-gradient(circle at 88% 78%, rgba(38, 185, 200, 0.1), transparent 20rem),
        linear-gradient(180deg, #fff, var(--hb-ivory));
}

.contact-page-section::before {
    content: "";
    position: absolute;
    left: -8rem;
    bottom: -10rem;
    width: 24rem;
    height: 24rem;
    border: 1.8rem solid rgba(255, 159, 22, 0.1);
    border-radius: 42% 58% 60% 40%;
    animation: floatRotate 22s linear infinite;
}

.contact-page-section .container {
    position: relative;
    z-index: 1;
}

.contact-page-heading {
    max-width: 50rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.contact-page-heading h2 {
    margin-bottom: 1rem;
    color: #152033;
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.04;
}

.contact-page-heading p {
    max-width: 38rem;
    margin: 0 auto;
    color: var(--hb-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-page-layout {
    display: grid;
    grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.35fr);
    gap: 1.5rem;
    align-items: start;
}

.contact-info-panel,
.contact-form-card {
    background: #fff;
    border: 1px solid rgba(8, 41, 90, 0.08);
    border-radius: 1.35rem;
    box-shadow: 0 24px 70px rgba(8, 41, 90, 0.1);
}

.contact-info-panel {
    position: sticky;
    top: 6.5rem;
    display: grid;
    gap: 1rem;
    padding: clamp(1.2rem, 2.5vw, 1.6rem);
}

.contact-form-card {
    padding: clamp(1.4rem, 3vw, 2rem);
}

.contact-method-card {
    min-width: 0;
    padding: 1.25rem;
    background: rgba(8, 41, 90, 0.035);
    border: 1px solid rgba(8, 41, 90, 0.07);
    border-radius: 1.1rem;
}

.contact-method-card-featured {
    color: #fff;
    background: linear-gradient(135deg, var(--hb-navy), #087a72);
    border-color: rgba(255, 255, 255, 0.14);
}

.contact-method-icon {
    display: inline-grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 0.9rem;
    color: #fff;
    background: #ff9f16;
    border-radius: 50%;
    box-shadow: 0 16px 34px rgba(255, 159, 22, 0.22);
}

.contact-method-card:not(.contact-method-card-featured) .contact-method-icon {
    color: #ff9f16;
    background: rgba(255, 159, 22, 0.12);
}

.contact-method-icon svg {
    width: 1.65rem;
    height: 1.65rem;
}

.contact-method-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-method-card small,
.contact-method-card strong {
    display: block;
}

.contact-method-card small {
    margin-bottom: 0.35rem;
    color: #ff9f16;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-method-card-featured small {
    color: var(--hb-gold-2);
}

.contact-method-card strong {
    color: #152033;
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.contact-method-card-featured strong {
    color: #fff;
}

.contact-method-card p {
    margin: 0.55rem 0 0;
    color: var(--hb-muted);
    line-height: 1.65;
}

.contact-method-card a {
    display: inline-flex;
    margin-top: 1rem;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.contact-method-card a:hover {
    color: var(--hb-gold-2);
}

.contact-support-list {
    padding: 1.25rem;
    background: #fff;
    border: 1px solid rgba(8, 41, 90, 0.08);
    border-radius: 1.1rem;
}

.contact-support-list h3 {
    margin-bottom: 0.85rem;
    color: #152033;
    font-size: 1.1rem;
    font-weight: 900;
}

.contact-support-list ul {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding-left: 1.1rem;
    color: var(--hb-muted);
    line-height: 1.65;
}

.booking-page-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 159, 22, 0.09), transparent 21rem),
        radial-gradient(circle at 90% 82%, rgba(38, 185, 200, 0.1), transparent 20rem),
        linear-gradient(180deg, #fff, var(--hb-ivory));
}

.booking-page-section .container {
    position: relative;
    z-index: 1;
}

.booking-page-layout {
    display: grid;
    grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.35fr);
    gap: 1.5rem;
    align-items: start;
}

.booking-info-panel,
.booking-form-card {
    background: #fff;
    border: 1px solid rgba(8, 41, 90, 0.08);
    border-radius: 1.35rem;
    box-shadow: 0 24px 70px rgba(8, 41, 90, 0.1);
}

.booking-info-panel {
    position: sticky;
    top: 6.5rem;
    padding: clamp(1.5rem, 3vw, 2.15rem);
    overflow: hidden;
}

.booking-info-panel::before {
    content: "";
    position: absolute;
    right: -4rem;
    top: -4rem;
    width: 11rem;
    height: 11rem;
    background: radial-gradient(circle, rgba(255, 159, 22, 0.18), transparent 68%);
    pointer-events: none;
}

.booking-info-panel > * {
    position: relative;
    z-index: 1;
}

.booking-info-panel h2,
.booking-form-heading h2 {
    margin-bottom: 1rem;
    color: #152033;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
}

.booking-info-panel h2 {
    font-size: clamp(2rem, 4vw, 3.15rem);
}

.booking-form-heading h2 {
    font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.booking-info-panel p,
.booking-form-heading p {
    color: var(--hb-muted);
    line-height: 1.75;
}

.booking-info-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.booking-info-list div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.8rem;
    align-items: start;
    padding: 1rem;
    background: rgba(8, 41, 90, 0.04);
    border: 1px solid rgba(8, 41, 90, 0.06);
    border-radius: 1rem;
}

.booking-info-list span {
    display: inline-grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    color: #fff;
    background: #ff9f16;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 900;
}

.booking-info-list p {
    margin: 0;
    font-size: 0.94rem;
}

.booking-contact-card {
    margin-top: 1.2rem;
    padding: 1.2rem;
    color: #fff;
    background: linear-gradient(135deg, var(--hb-navy), #087a72);
    border-radius: 1rem;
}

.booking-contact-card small,
.booking-contact-card strong {
    display: block;
}

.booking-contact-card small {
    margin-bottom: 0.28rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.booking-contact-card strong {
    font-size: 1.35rem;
    font-weight: 900;
}

.booking-form-card {
    padding: clamp(1.4rem, 3vw, 2rem);
}

.booking-form-heading {
    margin-bottom: 1.5rem;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.booking-field-wide {
    grid-column: 1 / -1;
}

.booking-field label {
    display: block;
    margin-bottom: 0.45rem;
    color: #152033;
    font-size: 0.9rem;
    font-weight: 900;
}

.booking-field .form-control,
.booking-field .form-select {
    min-height: 3.25rem;
    color: var(--hb-ink);
    background-color: rgba(8, 41, 90, 0.035);
    border: 1px solid rgba(8, 41, 90, 0.11);
    border-radius: 0.85rem;
    box-shadow: none;
}

.booking-field textarea.form-control {
    min-height: 8rem;
    resize: vertical;
}

.booking-field .form-control:focus,
.booking-field .form-select:focus {
    background-color: #fff;
    border-color: rgba(255, 159, 22, 0.55);
    box-shadow: 0 0 0 0.22rem rgba(255, 159, 22, 0.15);
}

.booking-consent {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.65rem;
    align-items: start;
    margin: 1.2rem 0 0;
    color: var(--hb-muted);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.55;
}

.booking-consent input {
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0.18rem;
    accent-color: #ff9f16;
}

.booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.booking-status {
    min-height: 1.5rem;
    margin: 1rem 0 0;
    color: var(--hb-muted);
    font-size: 0.92rem;
    font-weight: 800;
}

.booking-status.is-warning {
    color: #a15f00;
}

.booking-status.is-success {
    color: #087a72;
}

.booking-confirmation-popup {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(6, 23, 46, 0.68);
    backdrop-filter: blur(10px);
}

.booking-confirmation-card {
    position: relative;
    width: min(30rem, 100%);
    padding: clamp(2rem, 5vw, 2.8rem);
    text-align: center;
    background: #fff;
    border: 1px solid rgba(8, 41, 90, 0.08);
    border-radius: 1.35rem;
    box-shadow: 0 30px 90px rgba(6, 23, 46, 0.3);
}

.booking-confirmation-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    color: var(--hb-navy);
    background: rgba(8, 41, 90, 0.06);
    border: 0;
    border-radius: 50%;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
}

.booking-confirmation-close:hover {
    color: #fff;
    background: #ff9f16;
}

.booking-confirmation-icon {
    display: inline-grid;
    place-items: center;
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 1.1rem;
    color: #fff;
    background: linear-gradient(135deg, #087a72, var(--hb-teal));
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(8, 122, 114, 0.24);
}

.booking-confirmation-icon svg {
    width: 2.1rem;
    height: 2.1rem;
}

.booking-confirmation-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.booking-confirmation-card h2 {
    margin-bottom: 0.75rem;
    color: #152033;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 900;
    letter-spacing: 0;
}

.booking-confirmation-card p {
    margin: 0 auto 1.35rem;
    color: var(--hb-muted);
    line-height: 1.75;
}

.programmes-page-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    background: #fff;
}

.programmes-page-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 159, 22, 0.08), transparent 20rem),
        radial-gradient(circle at 84% 12%, rgba(38, 185, 200, 0.08), transparent 18rem);
    pointer-events: none;
}

.programmes-page-section .container {
    position: relative;
    z-index: 1;
}

.programmes-page-heading {
    max-width: 46rem;
    margin: 0 auto 3.25rem;
    text-align: center;
}

.programme-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.3rem;
    color: #ff9f16;
    border-bottom: 2px solid #ff9f16;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.programme-eyebrow-icon {
    display: inline-grid;
    place-items: center;
}

.programme-eyebrow-icon svg {
    width: 1.15rem;
    height: 1.15rem;
}

.programme-eyebrow-icon path,
.programme-course-meta svg path,
.programme-course-footer svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.programmes-page-heading h2 {
    margin-bottom: 1rem;
    color: #152033;
    font-size: clamp(2.35rem, 5.4vw, 4.2rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.04;
}

.programmes-page-heading h2 span {
    color: #ff9f16;
}

.programme-section-jump {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.58rem 0.9rem;
    color: #ff9f16;
    background: rgba(255, 159, 22, 0.1);
    border: 1px solid rgba(255, 159, 22, 0.22);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.programme-section-jump:hover {
    color: #fff;
    background: #ff9f16;
    border-color: #ff9f16;
    transform: translateY(-0.12rem);
}

.programmes-page-heading p {
    max-width: 35rem;
    margin: 0 auto;
    color: var(--hb-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.programme-course-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.programme-course-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(8, 41, 90, 0.06);
    border-radius: 2rem 2rem 2rem 0.95rem;
    box-shadow: 0 26px 70px rgba(8, 41, 90, 0.09);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.programme-course-card:hover {
    border-color: rgba(255, 159, 22, 0.24);
    box-shadow: 0 32px 84px rgba(8, 41, 90, 0.14);
    transform: translateY(-0.45rem);
}

.programme-course-media {
    position: relative;
    margin: 1.25rem 1.25rem 0;
    overflow: hidden;
    border-radius: 1.65rem 1.65rem 1.65rem 0.45rem;
    aspect-ratio: 1.48 / 1;
    background: #eef2f6;
}

.programme-course-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.programme-course-card:hover .programme-course-media img {
    transform: scale(1.06);
}

.programme-course-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 2rem);
    padding: 0.45rem 0.72rem;
    color: #fff;
    background: #ff9f16;
    border-radius: 0.85rem 0.85rem 0.85rem 0.2rem;
    box-shadow: 0 12px 28px rgba(255, 159, 22, 0.32);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.1;
}

.programme-course-body {
    padding: 1.05rem 1.25rem 1.2rem;
}

.programme-course-meta,
.programme-course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.programme-course-meta {
    margin-bottom: 1rem;
}

.programme-course-meta span,
.programme-course-footer span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
    color: #687386;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.2;
}

.programme-course-meta svg,
.programme-course-footer svg {
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    color: #ff9f16;
}

.programme-rating {
    flex: 0 0 auto;
    color: #ff9f16 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.04em;
}

.programme-course-card h2 {
    margin-bottom: 0.65rem;
    color: #06172e;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.25;
}

.programme-course-card p {
    margin-bottom: 1.2rem;
    color: var(--hb-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.programme-course-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(8, 41, 90, 0.08);
}

.programme-course-footer a {
    flex: 0 0 auto;
    padding: 0.55rem 0.85rem;
    color: #fff;
    background: #ff9f16;
    border-radius: 999px 999px 999px 0.28rem;
    box-shadow: 0 10px 24px rgba(255, 159, 22, 0.26);
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.programme-course-footer a:hover {
    color: #fff;
    background: var(--hb-gold);
    box-shadow: 0 14px 30px rgba(184, 129, 34, 0.28);
    transform: translateY(-0.16rem);
}

.curricula-page-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    background:
        linear-gradient(180deg, rgba(251, 248, 241, 0.98), rgba(255, 255, 255, 0.98)),
        repeating-linear-gradient(135deg, rgba(8, 41, 90, 0.045) 0 1px, transparent 1px 18px);
}

.curricula-page-section::before {
    content: "";
    position: absolute;
    top: -10rem;
    right: -8rem;
    width: 26rem;
    height: 26rem;
    border: 2rem solid rgba(255, 159, 22, 0.12);
    border-radius: 42% 58% 60% 40%;
    animation: floatRotate 20s linear infinite;
}

.curricula-page-section .container {
    position: relative;
    z-index: 1;
}

.curricula-page-heading {
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.curricula-page-heading h2 {
    margin-bottom: 1rem;
    color: #152033;
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.04;
}

.curricula-page-heading h2 span {
    color: #ff9f16;
}

.curricula-page-heading p {
    max-width: 40rem;
    margin: 0 auto;
    color: var(--hb-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.curricula-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
}

.curriculum-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 18rem;
    padding: 1.45rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(8, 41, 90, 0.08);
    border-radius: 1.1rem;
    box-shadow: 0 20px 56px rgba(8, 41, 90, 0.08);
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.curriculum-card::before {
    content: "";
    position: absolute;
    top: -3.2rem;
    right: -3.2rem;
    width: 7rem;
    height: 7rem;
    background: radial-gradient(circle, rgba(255, 159, 22, 0.18), transparent 68%);
    transition: transform 260ms ease, opacity 260ms ease;
}

.curriculum-card:hover {
    border-color: rgba(255, 159, 22, 0.28);
    box-shadow: 0 28px 72px rgba(8, 41, 90, 0.13);
    transform: translateY(-0.35rem);
}

.curriculum-card:hover::before {
    transform: translate3d(-0.6rem, 0.6rem, 0);
}

.curriculum-card-featured {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(255, 159, 22, 0.96), rgba(184, 129, 34, 0.94)),
        var(--hb-gold);
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: 0 24px 70px rgba(184, 129, 34, 0.22);
}

.curriculum-card-featured::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24), transparent 68%);
}

.curriculum-card-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: #ff9f16;
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.curriculum-card-featured .curriculum-card-kicker {
    color: rgba(255, 255, 255, 0.82);
}

.curriculum-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 0.8rem;
    color: #06172e;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
}

.curriculum-card-featured h3 {
    color: #fff;
}

.curriculum-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 1.2rem;
    color: var(--hb-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.curriculum-card-featured p {
    color: rgba(255, 255, 255, 0.86);
}

.curriculum-chip-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: auto;
}

.curriculum-chip-list span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.38rem 0.62rem;
    color: var(--hb-navy);
    background: rgba(8, 41, 90, 0.06);
    border: 1px solid rgba(8, 41, 90, 0.08);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
}

.curriculum-card-featured .curriculum-chip-list span {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.22);
}

.curricula-page-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: 2rem;
    padding: 1.35rem 1.45rem;
    background: #fff;
    border: 1px solid rgba(8, 41, 90, 0.08);
    border-radius: 1.1rem;
    box-shadow: 0 20px 56px rgba(8, 41, 90, 0.08);
}

.curricula-page-cta p {
    margin: 0;
    color: var(--hb-ink);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.5;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

.programme-course-card[data-reveal].is-visible:hover {
    transform: translateY(-0.45rem);
}

.curriculum-card[data-reveal].is-visible:hover {
    transform: translateY(-0.35rem);
}

.service-item[data-reveal].is-visible {
    transform: translateY(calc(var(--scroll-y, 0px) * -0.006));
}

.service-item[data-reveal].is-visible:hover {
    transform: translateY(-0.55rem);
}

.hero-bento[data-reveal].is-visible {
    transform: translateY(calc(var(--scroll-y, 0px) * -0.03));
}

.curriculum-cta {
    position: relative;
    overflow: hidden;
    min-height: 31rem;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(8, 41, 90, 0.18), rgba(8, 41, 90, 0.02) 45%, rgba(8, 41, 90, 0.34)),
        url("https://images.unsplash.com/photo-1513258496099-48168024aec0?auto=format&fit=crop&w=1800&q=84");
    background-position: center;
    background-size: cover;
}

.curriculum-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 42%, rgba(8, 41, 90, 0.08));
    pointer-events: none;
}

.curriculum-cta .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 31rem;
}

.curriculum-cta-card {
    position: relative;
    width: min(31rem, 100%);
    margin: -2.4rem 0 0;
    padding: clamp(2rem, 4vw, 3.1rem);
    color: #fff;
    background: #ff9f16;
    border: 0.2rem solid rgba(255, 255, 255, 0.92);
    border-radius: 4.4rem 4.4rem 4.4rem 0.95rem;
    box-shadow:
        0 0 0 0.42rem #ff9f16,
        0 22px 70px rgba(8, 41, 90, 0.24),
        inset 0 0 0 0.18rem rgba(255, 255, 255, 0.82);
}

.curriculum-cta-card::before {
    content: "";
    position: absolute;
    inset: 0.55rem;
    border: 0.12rem solid rgba(255, 255, 255, 0.7);
    border-radius: 3.75rem 3.75rem 3.75rem 0.62rem;
    pointer-events: none;
}

.curriculum-cta-card > * {
    position: relative;
    z-index: 1;
}

.cta-kicker {
    display: inline-flex;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.curriculum-cta-card h2 {
    margin-bottom: 1.05rem;
    color: #fff;
    font-size: 2.7rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
}

.curriculum-cta-card p {
    max-width: 24rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.02rem;
    font-weight: 650;
    line-height: 1.75;
}

.btn-cta {
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-color: var(--hb-navy);
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: #fff;
    --bs-btn-hover-color: var(--hb-navy);
    min-height: 3.35rem;
    padding: 0.85rem 1.45rem;
    border-radius: 999px;
    box-shadow: 0 18px 38px rgba(8, 41, 90, 0.14);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(8, 41, 90, 0.98), rgba(12, 61, 102, 0.98) 58%, rgba(8, 72, 79, 0.98));
    color: rgba(255, 255, 255, 0.78);
    padding: clamp(3.25rem, 6vw, 5rem) 0 1.4rem;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 199, 107, 0.7), transparent);
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(10rem, 1fr));
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.footer-brand {
    max-width: 31rem;
}

.footer-logo-text {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.1;
    text-decoration: none;
}

.footer-brand p {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    line-height: 1.75;
}

.footer-service-area {
    max-width: 28rem;
}

.footer-column {
    display: grid;
    gap: 0.68rem;
    align-content: start;
}

.footer-column h2 {
    margin: 0 0 0.35rem;
    color: var(--hb-gold-2);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.footer-column a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-bottom a:hover {
    color: var(--hb-gold-2);
}

.footer-column a:hover {
    transform: translateX(0.18rem);
}

.footer-contact a:first-of-type {
    color: #fff;
    font-size: 1.02rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: clamp(2.25rem, 4vw, 3.5rem);
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@keyframes floatRotate {
    from {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }
    to {
        transform: rotate(360deg) translate3d(0, 0, 0);
    }
}

@keyframes whatsappWave {
    0% {
        opacity: 0.68;
        transform: scale(0.94);
    }
    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

@media (prefers-reduced-motion: reduce) {
    .btn,
    .support-link,
    .support-icon,
    .about-principle-card,
    .about-fit-card,
    .curriculum-card,
    .service-item,
    .service-icon {
        transition: none;
    }

    .btn,
    .btn:hover,
    .btn:active,
    .support-link,
    .support-link:hover,
    .support-link:hover .support-icon,
    .about-principle-card,
    .about-principle-card:hover,
    .about-fit-card,
    .about-fit-card:hover,
    .curriculum-card,
    .curriculum-card:hover,
    .service-item,
    .service-item:hover,
    .service-item:hover .service-icon {
        transform: none;
    }

    .btn::before,
    .btn::after,
    .navbar-whatsapp::before,
    .navbar-whatsapp::after {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .about-page-img-main {
        width: 82%;
    }

    .about-page-img-small {
        width: 48%;
    }

    .about-media {
        max-width: 34rem;
    }

    .about-img-primary {
        left: 0;
    }

    .about-img-circle {
        width: 14.5rem;
        height: 14.5rem;
    }

    .about-img-secondary {
        width: 17rem;
    }

    .about-badge {
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .site-navbar .container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        gap: 0.75rem;
    }

    .brand-mark {
        grid-column: 1;
        justify-self: start;
        min-width: 0;
    }

    .navbar-whatsapp {
        grid-column: 2;
        justify-self: center;
        width: fit-content;
        margin: 0;
    }

    .navbar-toggler {
        grid-column: 3;
        justify-self: end;
        margin-left: 0;
    }

    .navbar-collapse {
        grid-column: 1 / -1;
        flex-basis: 100%;
        width: 100%;
    }

    .services-section {
        background-attachment: scroll;
    }

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

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

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

    .booking-page-layout {
        grid-template-columns: 1fr;
    }

    .contact-page-layout {
        grid-template-columns: 1fr;
    }

    .booking-info-panel {
        position: static;
    }

    .contact-info-panel {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-support-list {
        grid-column: 1 / -1;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 42rem;
    }

    .about-page-media {
        min-height: 31rem;
    }

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

    .curriculum-cta {
        min-height: auto;
        background-position: 36% center;
    }

    .curriculum-cta .container {
        justify-content: center;
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .curriculum-cta-card {
        margin: 0;
    }

    .programmes-bento {
        height: auto;
    }

    .programmes-bento .bento-card {
        min-height: 6rem;
        height: auto;
    }

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

    .about-content {
        max-width: none;
    }

    .about-media {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        min-height: auto;
        max-width: none;
    }

    .about-img,
    .about-badge {
        position: static;
        width: 100%;
    }

    .about-img-primary,
    .about-img-secondary,
    .about-img-circle {
        height: auto;
        aspect-ratio: 1 / 1.05;
    }

    .about-img-primary {
        border-radius: 4rem 4rem 1.5rem 4rem;
    }

    .about-img-circle {
        border-radius: 50%;
    }

    .about-img-secondary {
        border-radius: 1.5rem 4rem 4rem 4rem;
    }

    .about-badge {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: clamp(2.6rem, 15vw, 4.4rem);
    }

    .programmes-page-section {
        padding-top: 3.5rem;
    }

    .programmes-page-heading {
        margin-bottom: 2.1rem;
    }

    .programme-course-grid {
        grid-template-columns: 1fr;
    }

    .curricula-page-section {
        padding-top: 3.5rem;
    }

    .curricula-page-heading {
        margin-bottom: 2.1rem;
    }

    .curricula-card-grid {
        grid-template-columns: 1fr;
    }

    .curricula-page-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .curricula-page-cta .btn {
        justify-content: center;
        width: 100%;
    }

    .about-page-intro,
    .about-principles-section,
    .about-fit-section,
    .about-method-section,
    .about-curriculum-strip,
    .about-final-cta,
    .contact-page-section,
    .booking-page-section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .contact-page-heading {
        margin-bottom: 2.1rem;
    }

    .booking-form-grid {
        grid-template-columns: 1fr;
    }

    .booking-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .booking-actions .btn {
        justify-content: center;
        width: 100%;
    }

    .about-principles-grid,
    .about-fit-grid {
        grid-template-columns: 1fr;
    }

    .about-fit-card {
        min-height: auto;
    }

    .about-page-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .about-page-actions .btn,
    .about-inline-link {
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .programme-course-media {
        margin: 1rem 1rem 0;
    }

    .programme-course-body {
        padding: 1rem;
    }

    .curriculum-cta-card {
        padding: 2rem;
        border-radius: 2.2rem 2.2rem 2.2rem 0.8rem;
    }

    .curriculum-cta-card::before {
        border-radius: 1.7rem 1.7rem 1.7rem 0.5rem;
    }

    .curriculum-cta-card h2 {
        font-size: 2.05rem;
    }

    .curriculum-cta-card p {
        max-width: none;
        font-size: 0.98rem;
    }

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

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

    .service-item {
        min-height: auto;
    }

    .about-quote {
        grid-column: auto;
        grid-row: auto;
    }

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

    .about-actions .btn,
    .support-link {
        justify-content: center;
        width: 100%;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .hero-bento,
    .about-media {
        grid-template-columns: 1fr;
    }

    .about-page-media {
        display: grid;
        gap: 1rem;
        min-height: auto;
    }

    .about-page-img-main,
    .about-page-img-small,
    .about-page-media-note {
        position: static;
        width: 100%;
    }

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

    .contact-support-list {
        grid-column: auto;
    }

    .about-page-img-main,
    .about-page-img-small {
        height: auto;
        aspect-ratio: 1.2 / 1;
        border: 0;
        border-radius: 1.4rem;
    }

    .about-final-card {
        border-radius: 2.2rem 2.2rem 2.2rem 0.8rem;
    }

    .curriculum-cta .container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .btn-cta {
        justify-content: center;
        width: 100%;
        min-height: 3.15rem;
        white-space: normal;
    }

    .programmes-bento {
        grid-template-columns: 1fr;
        grid-template-areas:
            "heading"
            "home"
            "tuition"
            "languages"
            "pathways";
        gap: 0.65rem;
    }

    .programmes-bento .bento-card {
        min-height: 7.4rem;
        height: auto;
        padding: 0.9rem;
    }

    .programme-card-languages,
    .programme-card-pathways {
        min-height: auto;
    }

    .about-img-primary,
    .about-img-secondary,
    .about-img-circle {
        aspect-ratio: 1.15 / 1;
        border-radius: 1.5rem;
    }

    .about-badge {
        border-radius: 1.5rem;
    }

    .about-feature {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .brand-logo {
        max-width: 42vw;
    }

    .navbar-whatsapp {
        padding: 0.56rem 0.68rem;
        font-size: 0;
    }

    .navbar-whatsapp-icon,
    .navbar-whatsapp-icon svg {
        width: 1.45rem;
        height: 1.45rem;
    }

    .programme-eyebrow {
        letter-spacing: 0.18em;
    }

    .programme-course-meta,
    .programme-course-footer {
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .programme-course-footer a {
        margin-left: auto;
    }

    .programmes-bento .bento-card {
        min-height: 6.9rem;
    }
}
