:root {
    --ink: #071b2c;
    --navy: #07385c;
    --blue: #0a94d6;
    --cyan: #8bdcff;
    --teal: #0c8d83;
    --coral: #df614f;
    --cream: #f7f2e8;
    --paper: #fbfdff;
    --muted: #607384;
    --line: #d8e5ed;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(7, 27, 44, 0.14);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
}

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

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

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

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 12px clamp(18px, 5vw, 74px);
    background: rgba(251, 253, 255, 0.86);
    border-bottom: 1px solid rgba(216, 229, 237, 0.72);
    backdrop-filter: blur(18px);
}

.site-header.scrolled {
    box-shadow: 0 18px 50px rgba(7, 27, 44, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 128px;
    height: auto;
    mix-blend-mode: multiply;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border-radius: 999px;
    color: #17384d;
    font-size: 0.92rem;
    font-weight: 800;
}

.site-nav a:hover,
.site-nav a.active {
    background: #eaf5fb;
    color: var(--navy);
}

.site-nav .nav-cta {
    background: var(--ink);
    color: var(--white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
    background: var(--blue);
    color: var(--white);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
}

.home-hero {
    min-height: 100vh;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    padding: 138px clamp(18px, 5vw, 74px) 48px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.home-hero__media {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(7, 27, 44, 0.88), rgba(7, 27, 44, 0.52) 48%, rgba(7, 27, 44, 0.16)),
        url("assets/images/hero-campus.jpg");
    background-size: cover;
    background-position: center;
}

.home-hero__copy {
    position: relative;
    z-index: 1;
    max-width: 940px;
    padding-bottom: 46px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-hero .eyebrow,
.page-hero .eyebrow {
    color: var(--cyan);
}

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

h1 {
    max-width: 980px;
    margin-bottom: 26px;
    font-size: clamp(3.8rem, 8vw, 8.8rem);
    line-height: 0.92;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 4.8vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    line-height: 1.16;
}

p {
    color: var(--muted);
    line-height: 1.68;
}

.home-hero p,
.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 900;
    cursor: pointer;
}

.button.primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 16px 36px rgba(10, 148, 214, 0.28);
}

.button.primary:hover {
    background: #067bb4;
}

.button.secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.54);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.button.ghost {
    color: var(--ink);
    border: 1px solid var(--line);
    background: var(--white);
}

.home-hero__panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1060px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.home-hero__panel div {
    min-height: 138px;
    padding: 24px;
    display: grid;
    align-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.home-hero__panel div:last-child {
    border-right: 0;
}

.home-hero__panel span {
    color: var(--cyan);
    font-weight: 950;
}

.home-hero__panel strong {
    max-width: 260px;
    font-size: 1.1rem;
    line-height: 1.28;
}

.ticker-band {
    display: flex;
    gap: 0;
    overflow: hidden;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.ticker-band span {
    flex: 1;
    min-width: 170px;
    padding: 18px 16px;
    border-right: 1px solid var(--line);
    color: #193e55;
    font-size: 0.84rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.section {
    padding: 104px clamp(18px, 5vw, 74px);
}

.section-heading {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading.split {
    max-width: 1180px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
    gap: clamp(28px, 6vw, 86px);
    align-items: end;
    text-align: left;
}

.section-heading p:last-child {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.pathway-grid,
.service-grid,
.destination-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
}

.pathway-card,
.service-card,
.value-card,
.destination-card,
.leader-detail-card {
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 16px 44px rgba(7, 27, 44, 0.06);
}

.pathway-card {
    min-height: 380px;
    display: grid;
    align-content: start;
    padding: 30px;
    overflow: hidden;
}

.pathway-card svg,
.service-card svg,
.value-card svg,
.text-link svg,
.contact-methods svg {
    width: 24px;
    height: 24px;
}

.pathway-card svg {
    margin-bottom: 42px;
}

.pathway-card span,
.service-card span,
.destination-card span {
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pathway-card p {
    margin-bottom: 28px;
}

.pathway-card b {
    align-self: end;
}

.pathway-card.dark {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
}

.pathway-card.dark p,
.pathway-card.blue p {
    color: rgba(255, 255, 255, 0.78);
}

.pathway-card.blue {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-color: transparent;
}

.pathway-card.light {
    background: var(--cream);
}

.image-strip {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    height: 380px;
}

.image-strip div {
    overflow: hidden;
}

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

.proof-section {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: clamp(32px, 7vw, 92px);
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}

.proof-copy {
    position: sticky;
    top: 118px;
}

.proof-copy p {
    font-size: 1.05rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 950;
}

.proof-list {
    display: grid;
    gap: 14px;
}

.proof-list article {
    min-height: 190px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.proof-list span {
    display: block;
    margin-bottom: 28px;
    color: var(--coral);
    font-weight: 950;
}

.cta-band {
    padding: 92px clamp(18px, 5vw, 74px);
    color: var(--white);
    background: var(--ink);
    text-align: center;
}

.cta-band h2 {
    max-width: 920px;
    margin: 0 auto 28px;
}

.cta-band .section-kicker {
    color: var(--cyan);
}

.page-hero {
    min-height: 70vh;
    display: grid;
    align-items: end;
    padding: 140px clamp(18px, 5vw, 74px) 64px;
    color: var(--white);
    background-color: var(--ink);
    background-size: cover;
    background-position: center;
}

.page-hero.study {
    background-image: linear-gradient(90deg, rgba(7, 27, 44, 0.9), rgba(7, 27, 44, 0.42)), url("assets/images/destination-canada.jpg");
}

.page-hero.school {
    background-image: linear-gradient(90deg, rgba(7, 27, 44, 0.9), rgba(7, 27, 44, 0.38)), url("assets/images/school-programme.jpg");
}

.page-hero.leadership {
    background-image: linear-gradient(90deg, rgba(7, 27, 44, 0.92), rgba(7, 27, 44, 0.52)), url("assets/images/hero-campus.jpg");
}

.page-hero.contact {
    background-image: linear-gradient(90deg, rgba(7, 27, 44, 0.9), rgba(7, 27, 44, 0.36)), url("assets/images/destination-singapore.jpg");
}

.page-hero__content {
    max-width: 900px;
}

.service-card,
.value-card {
    min-height: 275px;
    padding: 28px;
}

.service-card svg,
.value-card svg {
    margin-bottom: 30px;
    color: var(--blue);
}

.service-card p,
.value-card p {
    margin-bottom: 0;
}

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

.destination-card {
    overflow: hidden;
}

.destination-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.destination-card div {
    padding: 20px;
}

.destination-card p {
    margin-bottom: 0;
    font-size: 0.94rem;
}

.feature-band {
    background: var(--white);
    border-block: 1px solid var(--line);
}

.feature-row {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: clamp(30px, 6vw, 84px);
    max-width: 1180px;
    margin: 0 auto;
    align-items: center;
}

.feature-row img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 8px;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.feature-list div {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    align-items: start;
    font-weight: 800;
    color: #17384d;
}

.feature-list svg {
    width: 24px;
    height: 24px;
    color: var(--blue);
}

.leader-profile {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: clamp(28px, 6vw, 84px);
    max-width: 1180px;
    margin: 0 auto;
    align-items: start;
}

.leader-mark {
    width: 190px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--blue));
    font-size: 3.2rem;
    font-weight: 1000;
    box-shadow: 0 20px 50px rgba(10, 148, 214, 0.22);
}

.leader-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.leader-detail-card {
    min-height: 150px;
    padding: 22px;
}

.leader-detail-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 84px);
    max-width: 1180px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-methods a,
.contact-methods span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #17384d;
    font-weight: 900;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-form label,
.contact-form .full {
    grid-column: span 2;
}

.contact-form label:nth-child(1),
.contact-form label:nth-child(2),
.contact-form label:nth-child(3),
.contact-form label:nth-child(4) {
    grid-column: span 1;
}

.contact-form span {
    display: block;
    margin-bottom: 8px;
    color: #17384d;
    font-size: 0.9rem;
    font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbfd;
    color: var(--ink);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(10, 148, 214, 0.12);
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-note {
    grid-column: span 2;
    margin: 0;
    font-size: 0.92rem;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 38px clamp(18px, 5vw, 74px);
    border-top: 1px solid var(--line);
    background: var(--white);
}

.site-footer img {
    width: 106px;
    mix-blend-mode: multiply;
}

.site-footer p {
    margin: 8px 0 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #17384d;
    font-weight: 900;
}

@media (max-width: 1080px) {
    .pathway-grid,
    .service-grid,
    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 860px) {
    .site-header {
        padding: 10px 18px;
    }

    .brand img {
        width: 114px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        top: 72px;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        border-radius: 6px;
    }

    .home-hero {
        min-height: 92vh;
        padding: 120px 18px 34px;
    }

    h1 {
        font-size: clamp(3.2rem, 16vw, 5.3rem);
    }

    .home-hero__panel,
    .section-heading.split,
    .proof-section,
    .feature-row,
    .leader-profile,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .home-hero__panel div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .home-hero__panel div:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 76px 18px;
    }

    .section-heading {
        text-align: left;
    }

    .proof-copy {
        position: static;
    }

    .image-strip {
        grid-template-columns: 1fr;
        height: auto;
    }

    .image-strip img {
        height: 280px;
    }

    .page-hero {
        min-height: 62vh;
        padding: 120px 18px 48px;
    }

    .feature-row img {
        height: 360px;
    }

    .contact-form label:nth-child(1),
    .contact-form label:nth-child(2),
    .contact-form label:nth-child(3),
    .contact-form label:nth-child(4) {
        grid-column: span 2;
    }
}

@media (max-width: 620px) {
    .hero-actions,
    .button {
        width: 100%;
    }

    .pathway-grid,
    .service-grid,
    .destination-grid,
    .values-grid,
    .leader-detail-grid {
        grid-template-columns: 1fr;
    }

    .ticker-band {
        overflow-x: auto;
    }

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