/* Echos Education — refined brand system */
:root {
    --primary: #071a33;
    --dark: #071426;
    --light: #f5f2ea;
    --brand-navy: #071a33;
    --brand-navy-soft: #0d2748;
    --brand-red: #cf2947;
    --brand-red-dark: #aa1e37;
    --brand-ivory: #f7f4ed;
    --brand-paper: #fcfbf8;
    --brand-sand: #d8c6a7;
    --brand-ink: #182334;
    --brand-muted: #697386;
    --brand-line: rgba(7, 26, 51, 0.14);
    --brand-shadow: 0 24px 70px rgba(7, 26, 51, 0.12);
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --type-title-primary: clamp(3rem, calc(2rem + 2.25vw), 4rem);
    --type-title-section: 3rem;
}

html {
    overflow-x: clip;
    scroll-padding-top: 110px;
}

body {
    background: var(--brand-paper);
    color: var(--brand-ink);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.78;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

body,
button,
input,
select,
textarea {
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--brand-navy);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.04;
}

h2,
.h2 {
    font-size: var(--type-title-section);
}

h3,
.h3 {
    font-size: 2rem;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--brand-navy);
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

a:hover {
    color: var(--brand-red);
}

::selection {
    background: var(--brand-red);
    color: #fff;
}

:focus-visible {
    outline: 3px solid rgba(207, 41, 71, 0.48) !important;
    outline-offset: 3px;
}

/* Content remains readable even when the optional scroll-animation script is unavailable. */
.wow {
    visibility: visible !important;
}

.site-shell {
    max-width: 1530px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 3vw, 3.5rem);
}

.section-space {
    padding: clamp(5.5rem, 9vw, 9rem) 0;
}

.eyebrow,
.section-title {
    align-items: center;
    background: transparent !important;
    color: var(--brand-red) !important;
    display: flex;
    font-family: var(--font-body);
    font-size: 0.69rem;
    font-weight: 700;
    gap: 0.8rem;
    letter-spacing: 0.19em;
    margin: 0 0 1.35rem;
    padding: 0 !important;
    text-transform: uppercase;
}

.eyebrow::before,
.section-title::before {
    background: currentColor !important;
    content: "";
    display: inline-block;
    height: 1px !important;
    left: auto !important;
    position: static !important;
    top: auto !important;
    width: 2.75rem !important;
}

.eyebrow::after,
.section-title::after {
    display: none !important;
}

.eyebrow::before {
    height: 2.25rem !important;
    width: 1px !important;
}

.eyebrow-light {
    color: #e5d3b4 !important;
}

.centered-heading {
    margin: 0 auto clamp(3rem, 5vw, 5rem);
    max-width: 760px;
    text-align: center;
}

.centered-heading .eyebrow,
.text-center .section-title {
    justify-content: center;
}

.centered-heading > p:last-child {
    color: var(--brand-muted);
    font-size: 1rem;
    margin: 1.35rem auto 0;
    max-width: 610px;
}

.section-heading-row {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading-row h2 {
    font-size: var(--type-title-section);
    margin-bottom: 0;
    max-width: 750px;
}

.section-intro {
    border-left: 1px solid var(--brand-line);
    color: var(--brand-muted);
    font-size: 0.98rem;
    line-height: 1.9;
    margin: 0;
    padding-left: 2rem;
}

/* Buttons */
.btn {
    align-items: center;
    border-radius: 2px;
    display: inline-flex;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    gap: 0.8rem;
    justify-content: center;
    letter-spacing: 0.08em;
    line-height: 1.2;
    min-height: 52px;
    padding: 0.95rem 1.65rem;
    text-transform: uppercase;
    transition: all 220ms ease;
}

.btn i {
    font-size: 0.75rem;
    transition: transform 220ms ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary,
.btn.btn-primary {
    background: var(--brand-navy);
    border-color: var(--brand-navy);
    color: #fff;
}

.btn-primary:hover,
.btn.btn-primary:hover {
    background: var(--brand-red) !important;
    border-color: var(--brand-red) !important;
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary,
.btn.btn-secondary {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
}

.btn-secondary:hover,
.btn.btn-secondary:hover {
    background: var(--brand-red-dark);
    border-color: var(--brand-red-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-brand-light {
    background: var(--brand-ivory);
    border: 1px solid var(--brand-ivory);
    color: var(--brand-navy);
}

.btn-brand-light:hover {
    background: #fff;
    border-color: #fff;
    color: var(--brand-red);
    transform: translateY(-2px);
}

.btn-outline-brand,
.btn-outline-primary {
    background: transparent;
    border: 1px solid var(--brand-navy);
    color: var(--brand-navy);
}

.btn-outline-brand:hover,
.btn-outline-primary:hover {
    background: var(--brand-navy);
    border-color: var(--brand-navy);
    color: #fff;
    transform: translateY(-2px);
}

.text-link-light,
.text-link-dark {
    align-items: center;
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 700;
    gap: 0.7rem;
    letter-spacing: 0.08em;
    position: relative;
    text-transform: uppercase;
}

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

.text-link-light:hover {
    color: var(--brand-sand);
}

.text-link-dark {
    color: var(--brand-navy);
}

.text-link-dark:hover {
    color: var(--brand-red);
}

/* Navigation */
.site-topbar {
    background: var(--brand-navy);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    height: 36px;
    letter-spacing: 0.055em;
}

.site-topbar .site-shell {
    height: 100%;
}

.site-topbar-note {
    align-items: center;
    display: flex;
    gap: 0.65rem;
}

.site-topbar-dot {
    background: var(--brand-red);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(207, 41, 71, 0.18);
    height: 5px;
    width: 5px;
}

.site-topbar-links {
    gap: 1rem;
}

.site-topbar-links > span {
    background: rgba(255, 255, 255, 0.26);
    height: 12px;
    width: 1px;
}

.site-topbar a {
    color: rgba(255, 255, 255, 0.78);
}

.site-topbar a:hover {
    color: #fff;
}

.site-navbar {
    background: rgba(252, 251, 248, 0.97) !important;
    border-bottom: 1px solid rgba(7, 26, 51, 0.08);
    box-shadow: none !important;
    min-height: 88px;
    padding: 0 !important;
    top: 0 !important;
    z-index: 1030;
}

@supports (backdrop-filter: blur(12px)) {
    .site-navbar {
        backdrop-filter: blur(14px);
        background: rgba(252, 251, 248, 0.92) !important;
    }
}

.site-navbar .site-shell {
    min-height: 88px;
}

.site-brand {
    align-items: center;
    display: flex;
    gap: 0.85rem;
    height: auto !important;
    margin: 0 2rem 0 0;
    padding: 0.55rem 0;
}

.site-brand img {
    height: 66px;
    object-fit: contain;
    width: 71px;
}

.site-navbar .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link {
    color: var(--brand-navy);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0;
    padding: 2.15rem 0.78rem;
    position: relative;
    text-transform: uppercase;
}

.site-navbar .navbar-nav .nav-link::before {
    background: var(--brand-red);
    bottom: 20px;
    content: "";
    height: 2px;
    left: 0.78rem;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
    width: calc(100% - 1.56rem);
}

.site-navbar .navbar-nav .nav-link:hover,
.site-navbar .navbar-nav .nav-link.active {
    color: var(--brand-red);
}

.site-navbar .navbar-nav .nav-link:hover::before,
.site-navbar .navbar-nav .nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.site-navbar .dropdown-toggle::after {
    font-size: 0.56rem;
    margin-left: 0.35rem;
}

.site-navbar .dropdown-menu {
    background: var(--brand-paper);
    border: 1px solid rgba(7, 26, 51, 0.1);
    border-radius: 0;
    box-shadow: 0 24px 60px rgba(7, 26, 51, 0.15);
    padding: 0.75rem;
}

.site-navbar .dropdown-item {
    color: var(--brand-ink);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.4;
    padding: 0.72rem 0.9rem;
    white-space: normal;
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus,
.site-navbar .dropdown-featured {
    background: var(--brand-ivory);
    color: var(--brand-red);
}

.site-navbar .dropdown-item i {
    font-size: 0.58rem;
    margin-left: 0.35rem;
}

.site-nav-actions {
    gap: 0.75rem;
    margin-left: 1.2rem;
}

.site-language > .btn {
    background: transparent;
    border: 0;
    color: var(--brand-navy);
    min-height: 44px;
    padding: 0.7rem 0.4rem;
}

.site-language > .btn:hover {
    color: var(--brand-red);
}

.site-language .dropdown-menu {
    min-width: 130px;
}

.site-contact-button {
    background: var(--brand-red);
    border: 1px solid var(--brand-red);
    color: #fff;
    min-height: 48px;
    padding-inline: 1.25rem;
}

.site-contact-button:hover,
.site-contact-button.active {
    background: var(--brand-navy);
    border-color: var(--brand-navy);
    color: #fff;
}

.site-nav-toggle {
    border: 1px solid var(--brand-line);
    border-radius: 0;
    height: 48px;
    padding: 0;
    width: 50px;
}

.site-nav-toggle span {
    background: var(--brand-navy);
    display: block;
    height: 1px;
    margin: 6px auto;
    transition: transform 180ms ease;
    width: 20px;
}

@media (min-width: 1200px) {
    .site-navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        top: calc(100% + 1px);
        transform: translateY(10px) !important;
        visibility: hidden;
    }

    .site-navbar .nav-item:hover > .dropdown-menu,
    .site-navbar .dropdown-menu.show {
        opacity: 1;
        transform: translateY(0) !important;
        visibility: visible;
    }

    .site-mega-menu {
        display: flex !important;
        left: 50%;
        padding: 0 !important;
        transform: translate(-50%, 10px) !important;
        width: 610px;
    }

    .site-navbar .nav-item:hover > .site-mega-menu,
    .site-mega-menu.show {
        transform: translate(-50%, 0) !important;
    }

    .dropdown-intro {
        background: var(--brand-navy);
        color: rgba(255, 255, 255, 0.68);
        padding: 1.8rem;
        width: 220px;
    }

    .dropdown-intro strong {
        color: #fff;
        display: block;
        font-family: var(--font-display);
        font-size: 1.7rem;
        font-weight: 600;
        line-height: 1.05;
        margin-bottom: 0.75rem;
    }

    .dropdown-intro p {
        font-size: 0.7rem;
        line-height: 1.75;
        margin: 0;
    }

    .dropdown-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 1rem;
        width: 390px;
    }

    .dropdown-links .dropdown-featured {
        grid-column: 1 / -1;
    }

    .site-services-mega-menu {
        width: 650px;
    }

    .site-services-mega-menu .dropdown-links {
        width: 430px;
    }

    .site-insights-mega-menu {
        width: 570px;
    }

    .site-insights-mega-menu .dropdown-links {
        width: 350px;
    }
}

/* Interior-page masthead */
.page-header {
    background-image: var(--page-header-image, url("../img/optimized/page-header-london.webp"));
    background-position: center 48%;
    background-size: cover;
    border-bottom: 6px solid var(--brand-red);
    isolation: isolate;
    margin: 0 !important;
    min-height: 410px;
    overflow: hidden;
    padding: 0 !important;
    position: relative;
}

.page-header-shade {
    background: linear-gradient(90deg, rgba(5, 20, 40, 0.82) 0%, rgba(5, 20, 40, 0.58) 42%, rgba(5, 20, 40, 0.12) 100%);
    inset: 0;
    position: absolute;
    z-index: -1;
}

.page-header .container {
    align-items: center;
    display: flex;
    min-height: 410px;
}

.page-header-content {
    max-width: 820px;
    padding: 5rem 0;
}

.page-kicker {
    align-items: center;
    color: var(--brand-sand);
    display: flex;
    font-size: 0.67rem;
    font-weight: 700;
    gap: 0.75rem;
    letter-spacing: 0.18em;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
}

.page-kicker span {
    background: var(--brand-red);
    display: inline-block;
    height: 1px;
    width: 2.5rem;
}

.page-header h1 {
    color: #fff;
    font-size: var(--type-title-primary);
    font-weight: 500;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.page-header .breadcrumb {
    font-size: 0.7rem;
    letter-spacing: 0.07em;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item.active,
.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.58);
}

.page-header .breadcrumb-item a {
    color: #fff;
}

.page-header .breadcrumb-item a:hover {
    color: var(--brand-sand);
}

/* Existing interior content */
body:not(.home-page) > .container-xxl.py-5,
body:not(.home-page) > .container-lg.py-5 {
    padding-bottom: clamp(4rem, 7vw, 7rem) !important;
    padding-top: clamp(4rem, 7vw, 7rem) !important;
}

body:not(.home-page) .container-xxl .row.g-5 {
    --bs-gutter-x: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

body:not(.home-page) .container-xxl [style*="background-image"] {
    border-radius: 2px;
    box-shadow: var(--brand-shadow);
    min-height: 480px !important;
    overflow: hidden;
    position: relative;
}

body:not(.home-page) .container-xxl [style*="background-image"]::after {
    border: 1px solid rgba(255, 255, 255, 0.62);
    content: "";
    inset: 18px;
    pointer-events: none;
    position: absolute;
}

body:not(.home-page) .container-xxl p,
.bio-text {
    color: #576273;
    line-height: 1.9;
}

.text-justify,
.bio-text {
    text-align: left;
}

.service-item {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    min-height: 280px;
    position: relative;
}

.service-item::after {
    background: var(--brand-red);
    bottom: -1px;
    content: "";
    height: 3px;
    left: -1px;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 260ms ease;
    width: calc(100% + 2px);
}

.service-item:hover {
    background: var(--brand-navy);
    margin-top: -7px;
}

.service-item:hover::after {
    transform: scaleX(1);
}

.service-item i {
    color: var(--brand-red) !important;
    font-size: 2.2rem !important;
}

.form-control,
.form-select {
    background-color: #fff;
    border: 1px solid rgba(7, 26, 51, 0.18);
    border-radius: 0;
    color: var(--brand-ink);
    min-height: 58px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 0.2rem rgba(207, 41, 71, 0.1);
}

.modal-content,
.toast {
    border-radius: 2px !important;
}

/* Editorial system for interior pages */
.interior-overview {
    --intro-accent: var(--brand-red);
    background: var(--brand-paper);
    border-bottom: 1px solid var(--brand-line);
    overflow: hidden;
    padding: clamp(4.5rem, 7vw, 7.5rem) 0;
    position: relative;
}

.interior-intro-mark {
    color: rgba(7, 26, 51, 0.035);
    font-family: var(--font-display);
    font-size: 31rem;
    font-weight: 600;
    line-height: 0.72;
    pointer-events: none;
    position: absolute;
    right: -2rem;
    top: -1rem;
}

.interior-overview .container {
    position: relative;
    z-index: 1;
}

.interior-intro-layout {
    align-items: end;
    display: grid;
    gap: clamp(2.5rem, 5vw, 6rem);
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
}

.interior-intro-edition {
    align-items: center;
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
}

.interior-intro-edition span {
    color: var(--intro-accent);
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.interior-intro-edition::after {
    background: currentColor;
    content: "";
    height: 1px;
    opacity: 0.2;
    width: 42px;
}

.interior-intro-edition b {
    color: inherit;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
}

.interior-intro-heading h2 {
    font-size: var(--type-title-section);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.94;
    margin: 0;
    max-width: 820px;
}

.interior-intro-copy {
    border-left: 1px solid var(--brand-line);
    padding-left: clamp(2rem, 4vw, 4rem);
}

.interior-intro-copy > p {
    color: #475367;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 1.8vw, 1.6rem);
    line-height: 1.5;
    margin: 0 0 2rem;
}

.interior-intro-link {
    align-items: center;
    color: var(--brand-navy);
    display: inline-flex;
    font-size: 0.65rem;
    font-weight: 700;
    gap: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.interior-intro-link:hover {
    color: var(--brand-red);
}

.interior-intro-points {
    display: grid;
    gap: 1.2rem;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.interior-intro-points article {
    border-top: 1px solid var(--brand-line);
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 28px 1fr;
    padding: 1.35rem 0 0;
}

.interior-intro-points article > span {
    color: var(--intro-accent);
    font-size: 0.58rem;
    font-weight: 700;
    padding-top: 0.3rem;
}

.interior-intro-points h3 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 0.35rem;
}

.interior-intro-points p {
    color: var(--brand-muted);
    font-size: 0.7rem;
    line-height: 1.65;
    margin: 0;
}

/* Profile: quiet, spacious consultancy statement */
.interior-overview--profile .interior-intro-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
}

/* About uses the same primary and section-title scale as the homepage. */
.page-header[data-page="about-us"] h1,
.page-header[data-page="people"] h1 {
    font-size: var(--type-title-primary);
}

.page-header[data-page="language-course-consulting"] h1 {
    font-size: var(--type-title-primary);
}

body:has(.page-header[data-page="about-us"]) .bio-main-title {
    font-size: var(--type-title-section);
}

body:has(.page-header[data-page="people"]) .people-mb-5 {
    font-size: var(--type-title-section);
}

body:has(.page-header[data-page="language-course-consulting"]) .editorial-section h3 {
    align-items: flex-start;
    display: flex;
    font-size: var(--type-title-section);
    gap: 1rem;
    letter-spacing: normal;
    line-height: 1.08;
}

body:has(.page-header[data-page="language-course-consulting"]) .editorial-section h3::before {
    background: var(--brand-red);
    content: "";
    flex: 0 0 1px;
    height: 2.25rem;
    margin-top: 0.15em;
    width: 1px;
}

body:has(.page-header[data-page="language-course-consulting"]) .editorial-section:has(.col-lg-6[style*="background-image"]) .row {
    margin-inline: auto;
    max-width: 1080px;
}

body:has(.page-header[data-page="language-course-consulting"]) .editorial-section .row > .col-lg-6[style*="background-image"]::before {
    display: none;
}

body:has(.page-header[data-page="language-course-consulting"]) .editorial-section:has(.col-lg-6[style*="background-image"])::before {
    display: block;
}

@media (min-width: 992px) {
    body:has(.page-header[data-page="language-course-consulting"]) .editorial-section .row > .col-lg-6:not([style*="background-image"]):has(+ .col-lg-6[style*="background-image"]) {
        padding-inline: 2rem;
    }
}

body:has(.page-header[data-page="language-course-consulting"]) .interior-intro-heading h2 {
    font-size: var(--type-title-section);
    letter-spacing: normal;
    line-height: 1.08;
}

body:has(.page-header[data-page="language-course-consulting"]) .interior-intro-layout {
    gap: 2rem;
}

body:has(.page-header[data-page="language-course-consulting"]) .interior-intro-mark,
body:has(.page-header[data-page="language-course-consulting"]) .interior-intro-edition,
body:has(.page-header[data-page="language-course-consulting"]) .editorial-section .row > .col-lg-12::after {
    display: none;
}

body:has(.page-header[data-page="language-course-consulting"]) .section-title::before {
    display: none !important;
}

body:has(.page-header[data-page="language-course-consulting"]) .interior-intro-copy {
    border-top: 0;
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 820px;
    padding-left: 0;
    padding-top: 0;
}

body:has(.page-header[data-page="language-course-consulting"]) .interior-intro-copy > p {
    margin-bottom: 0;
}

body:has(.page-header[data-page="language-course-consulting"]) .interior-intro-heading {
    grid-column: 1 / -1;
    grid-row: 1;
}

body:has(.page-header[data-page="language-course-consulting"]) .interior-intro-link {
    display: none;
}

body:has(.page-header[data-page="language-course-consulting"]) .interior-intro-points {
    display: grid;
    gap: 1.2rem;
    grid-column: 1 / -1;
    grid-row: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body:has(.page-header[data-page="language-course-consulting"]) .interior-intro-points article {
    border-bottom: 0;
}

@media (max-width: 991.98px) {
    body:has(.page-header[data-page="language-course-consulting"]) .interior-intro-layout {
        grid-template-columns: 1fr;
    }

    body:has(.page-header[data-page="language-course-consulting"]) .interior-intro-heading,
    body:has(.page-header[data-page="language-course-consulting"]) .interior-intro-copy,
    body:has(.page-header[data-page="language-course-consulting"]) .interior-intro-points {
        grid-column: 1;
        grid-row: auto;
    }

    body:has(.page-header[data-page="language-course-consulting"]) .interior-intro-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    body:has(.page-header[data-page="language-course-consulting"]) .editorial-section h3,
    body:has(.page-header[data-page="language-course-consulting"]) .interior-intro-heading h2 {
        font-size: var(--type-title-section);
    }
}

.page-header[data-page="university-admission-consulting"] h1 {
    font-size: var(--type-title-primary);
}

body:has(.page-header[data-page="university-admission-consulting"]) .interior-intro-heading h2,
body:has(.page-header[data-page="university-admission-consulting"]) .editorial-section h3 {
    font-size: var(--type-title-section);
    letter-spacing: normal;
    line-height: 1.08;
}

body:has(.page-header[data-page="university-admission-consulting"]) .editorial-section h3 {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
}

body:has(.page-header[data-page="university-admission-consulting"]) .editorial-section h3::before {
    background: var(--brand-red);
    content: "";
    flex: 0 0 1px;
    height: 2.25rem;
    margin-top: 0.15em;
    width: 1px;
}

body:has(.page-header[data-page="university-admission-consulting"]) .interior-intro-mark,
body:has(.page-header[data-page="university-admission-consulting"]) .interior-intro-edition,
body:has(.page-header[data-page="university-admission-consulting"]) .editorial-section .row > .col-lg-12::after,
body:has(.page-header[data-page="university-admission-consulting"]) .editorial-section .row > .col-lg-6[style*="background-image"]::before {
    display: none;
}

body:has(.page-header[data-page="university-admission-consulting"]) .section-title::before {
    display: none !important;
}

body:has(.page-header[data-page="university-admission-consulting"]) .editorial-section:has(.col-lg-6[style*="background-image"])::before {
    display: block;
}

body:has(.page-header[data-page="university-admission-consulting"]) .interior-overview--academic {
    padding-block: 4.5rem;
    text-align: left;
}

body:has(.page-header[data-page="university-admission-consulting"]) .interior-overview--academic .interior-intro-layout {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

body:has(.page-header[data-page="university-admission-consulting"]) .interior-intro-heading,
body:has(.page-header[data-page="university-admission-consulting"]) .interior-intro-copy,
body:has(.page-header[data-page="university-admission-consulting"]) .interior-intro-points {
    grid-column: 1;
    margin-inline: 0;
}

body:has(.page-header[data-page="university-admission-consulting"]) .interior-intro-heading {
    grid-row: 1;
    text-align: left;
}

body:has(.page-header[data-page="university-admission-consulting"]) .interior-intro-heading h2 {
    margin-inline: 0;
    max-width: 820px;
    text-align: left;
}

body:has(.page-header[data-page="university-admission-consulting"]) .interior-intro-heading .eyebrow {
    justify-content: flex-start;
}

body:has(.page-header[data-page="university-admission-consulting"]) .interior-intro-copy {
    border: 0;
    grid-row: 2;
    max-width: 820px;
    padding: 0;
}

body:has(.page-header[data-page="university-admission-consulting"]) .interior-intro-copy > p {
    margin-bottom: 0;
}

body:has(.page-header[data-page="university-admission-consulting"]) .interior-intro-link {
    display: none;
}

body:has(.page-header[data-page="university-admission-consulting"]) .interior-overview--academic .interior-intro-points {
    display: grid;
    gap: 1.2rem;
    grid-row: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
    text-align: left;
}

body:has(.page-header[data-page="university-admission-consulting"]) .interior-overview--academic .interior-intro-points article {
    align-items: center;
    border: 0;
    grid-template-columns: 54px 1fr;
    padding: 1rem 0;
}

body:has(.page-header[data-page="university-admission-consulting"]) .interior-overview--academic .interior-intro-points article > span {
    align-items: center;
    border: 1px solid var(--brand-red);
    border-radius: 50%;
    display: flex;
    height: 38px;
    justify-content: center;
    padding: 0;
    width: 38px;
}

@media (max-width: 991.98px) {
    body:has(.page-header[data-page="university-admission-consulting"]) .interior-overview--academic .interior-intro-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    body:has(.page-header[data-page="university-admission-consulting"]) .interior-intro-heading h2,
    body:has(.page-header[data-page="university-admission-consulting"]) .editorial-section h3 {
        font-size: var(--type-title-section);
    }
}

.interior-overview--profile .interior-intro-points article {
    background: var(--brand-ivory);
    border-left: 2px solid var(--brand-red);
    border-top: 0;
    padding: 1.5rem;
}

/* People: a compact dossier before the portrait grid */
.interior-overview--people {
    background: linear-gradient(90deg, var(--brand-paper) 0 61%, var(--brand-ivory) 61% 100%);
    padding-block: clamp(3.5rem, 5vw, 5.5rem);
}

.interior-overview--people .interior-intro-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
}

.interior-overview--people .interior-intro-copy {
    border-left: 0;
    padding-left: 0;
}

.interior-overview--people .interior-intro-points {
    display: block;
    grid-column: 2;
}

.interior-overview--people .interior-intro-points article {
    border-bottom: 1px solid var(--brand-line);
    border-top: 0;
    padding: 1rem 0;
}

/* Journal: magazine-like opening for press and resources */
.interior-overview--journal {
    background: var(--brand-ivory);
}

.interior-overview--journal .interior-intro-mark,
.interior-overview--journal .interior-intro-edition {
    display: none;
}

.interior-overview--journal .interior-intro-heading {
    border-right: 1px solid var(--brand-line);
    padding-right: clamp(2rem, 5vw, 6rem);
}

.interior-overview--journal .interior-intro-copy {
    border-left: 0;
}

.interior-overview--journal .interior-intro-heading h2 {
    font-size: var(--type-title-section);
}

.interior-overview--journal .interior-intro-points article {
    border-top-color: var(--brand-navy);
}

/* Strategy: confident, dark admissions brief */
.interior-overview--strategy {
    background: var(--brand-navy);
    color: #fff;
}

.interior-overview--strategy .interior-intro-mark {
    color: rgba(255, 255, 255, 0.035);
}

.interior-overview--strategy .interior-intro-heading h2,
.interior-overview--strategy .interior-intro-points h3 {
    color: #fff;
}

.interior-overview--strategy .interior-intro-copy {
    border-left-color: rgba(255, 255, 255, 0.18);
}

.interior-overview--strategy .interior-intro-copy > p,
.interior-overview--strategy .interior-intro-points p {
    color: rgba(255, 255, 255, 0.66);
}

.interior-overview--strategy .interior-intro-link {
    color: #fff;
}

.interior-overview--strategy .interior-intro-points article {
    background: rgba(255, 255, 255, 0.055);
    border-top: 2px solid var(--brand-red);
    padding: 1.6rem;
}

/* Pathway: a stepped route for schools and language study */
.interior-overview--pathway .interior-intro-layout {
    align-items: start;
    grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
}

.interior-overview--pathway .interior-intro-heading {
    grid-row: 1 / 3;
}

.interior-overview--pathway .interior-intro-copy {
    border-left: 0;
    border-top: 1px solid var(--brand-line);
    padding: 2rem 0 0;
}

.interior-overview--pathway .interior-intro-points {
    display: block;
    grid-column: 2;
}

.interior-overview--pathway .interior-intro-points article {
    align-items: center;
    border-bottom: 1px solid var(--brand-line);
    border-top: 0;
    grid-template-columns: 54px 1fr;
    padding: 1rem 0;
}

.interior-overview--pathway .interior-intro-points article > span {
    align-items: center;
    border: 1px solid var(--brand-red);
    border-radius: 50%;
    display: flex;
    height: 38px;
    justify-content: center;
    padding: 0;
    width: 38px;
}

/* Academic: centred and institutional */
.interior-overview--academic {
    background: #fff;
    text-align: center;
}

.interior-overview--academic .interior-intro-layout {
    display: block;
}

.interior-overview--academic .interior-intro-edition {
    justify-content: center;
}

.interior-overview--academic .interior-intro-heading h2,
.interior-overview--academic .interior-intro-copy {
    margin-inline: auto;
}

.interior-overview--academic .interior-intro-copy {
    border-left: 0;
    max-width: 760px;
    padding: 2rem 0 0;
}

.interior-overview--academic .interior-intro-points {
    margin-top: 4rem;
    text-align: left;
}

.interior-overview--academic .interior-intro-points article {
    border-left: 1px solid var(--brand-line);
    border-top: 0;
    padding: 0 1.8rem;
}

/* Mentoring: an intimate dark room within the light page */
.interior-overview--mentoring {
    background: var(--brand-ivory);
}

.interior-overview--mentoring .interior-intro-layout {
    background: var(--brand-navy);
    color: #fff;
    padding: clamp(2.5rem, 5vw, 5.5rem);
}

.interior-overview--mentoring .interior-intro-heading h2,
.interior-overview--mentoring .interior-intro-points h3 {
    color: #fff;
}

.interior-overview--mentoring .interior-intro-copy {
    border-left-color: rgba(255, 255, 255, 0.18);
}

.interior-overview--mentoring .interior-intro-copy > p,
.interior-overview--mentoring .interior-intro-points p {
    color: rgba(255, 255, 255, 0.65);
}

.interior-overview--mentoring .interior-intro-link {
    color: #fff;
}

.interior-overview--mentoring .interior-intro-points article {
    border-top-color: rgba(255, 255, 255, 0.2);
}

/* Craft: precise application work presented as a dossier */
.interior-overview--craft .interior-intro-layout {
    align-items: start;
    background: #fff;
    border-left: 5px solid var(--brand-red);
    box-shadow: var(--brand-shadow);
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
    padding: clamp(2.5rem, 5vw, 5.5rem);
}

.interior-overview--craft .interior-intro-heading {
    grid-row: 1 / 3;
}

.interior-overview--craft .interior-intro-copy {
    border-bottom: 1px solid var(--brand-line);
    border-left: 0;
    padding: 0 0 2rem;
}

.interior-overview--craft .interior-intro-points {
    display: block;
    grid-column: 2;
}

.interior-overview--craft .interior-intro-points article {
    border-bottom: 1px solid var(--brand-line);
    border-top: 0;
    padding: 1rem 0;
}

/* Arrival: local, image-led and practical */
.interior-overview--arrival {
    background: var(--brand-navy);
    color: #fff;
    isolation: isolate;
}

.interior-overview--arrival::before {
    background: linear-gradient(90deg, rgba(7, 26, 51, 0.95), rgba(7, 26, 51, 0.56)), url('/img/optimized/visa-arrival-process.webp') center / cover no-repeat;
    content: "";
    inset: 0;
    position: absolute;
    z-index: -1;
}

.interior-overview--arrival .interior-intro-mark {
    color: rgba(255, 255, 255, 0.05);
}

.interior-overview--arrival .interior-intro-heading {
    background: var(--brand-paper);
    color: var(--brand-navy);
    padding: clamp(2.2rem, 4vw, 4.5rem);
}

.interior-overview--arrival .interior-intro-copy {
    border-left-color: rgba(255, 255, 255, 0.25);
}

.interior-overview--arrival .interior-intro-copy > p,
.interior-overview--arrival .interior-intro-points p {
    color: rgba(255, 255, 255, 0.72);
}

.interior-overview--arrival .interior-intro-link,
.interior-overview--arrival .interior-intro-points h3 {
    color: #fff;
}

.interior-overview--arrival .interior-intro-points article {
    background: rgba(7, 26, 51, 0.66);
    border-top-color: var(--brand-red);
    backdrop-filter: blur(8px);
    padding: 1.4rem;
}

/*
 * Shared service-page system
 * Mirrors the restrained typography and palette used on the homepage,
 * About page and the updated Language Course page.
 */
body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .page-header h1 {
    font-size: var(--type-title-primary);
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-overview {
    background: var(--brand-paper);
    color: var(--brand-navy);
    isolation: isolate;
    padding-block: 4.5rem;
    text-align: left;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-overview::before,
body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-mark,
body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-edition {
    display: none;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-layout {
    align-items: start;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: var(--brand-navy);
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    padding: 0;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-heading,
body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-copy,
body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-points {
    grid-column: 1;
    margin-inline: 0;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-heading {
    background: transparent;
    grid-row: 1;
    padding: 0;
    text-align: left;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-heading .eyebrow {
    justify-content: flex-start;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-heading h2 {
    color: var(--brand-navy);
    font-size: var(--type-title-section);
    letter-spacing: normal;
    line-height: 1.08;
    margin-inline: 0;
    max-width: 820px;
    text-align: left;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-copy {
    border: 0;
    grid-row: 2;
    max-width: 820px;
    padding: 0;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-copy > p {
    color: #475367;
    margin-bottom: 0;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-link {
    display: none;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-points {
    display: grid;
    gap: 1.2rem;
    grid-row: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
    text-align: left;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-points article {
    align-items: center;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 54px 1fr;
    padding: 1rem 0;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-points article > span {
    align-items: center;
    border: 1px solid var(--brand-red);
    border-radius: 50%;
    color: var(--brand-red);
    display: flex;
    height: 38px;
    justify-content: center;
    padding: 0;
    width: 38px;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-points h3 {
    color: var(--brand-navy);
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-points p {
    color: var(--brand-muted);
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section h2,
body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section h3 {
    align-items: flex-start;
    color: var(--brand-navy);
    display: flex;
    font-size: var(--type-title-section);
    gap: 1rem;
    letter-spacing: normal;
    line-height: 1.08;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section h2::before,
body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section h3::before {
    background: var(--brand-red);
    content: "";
    flex: 0 0 1px;
    height: 2.25rem;
    margin-top: 0.15em;
    width: 1px;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section .section-title::before {
    display: none !important;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section .row > .col-lg-12::after,
body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section .row > .col-lg-6[style*="background-image"]::before {
    display: none;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section:has(.col-lg-6[style*="background-image"])::before {
    display: block;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section:has(.col-lg-6[style*="background-image"]) .row {
    margin-inline: auto;
    max-width: 1080px;
}

@media (min-width: 992px) {
    body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section .row > .col-lg-6:not([style*="background-image"]):has(+ .col-lg-6[style*="background-image"]) {
        padding-inline: 2rem;
    }
}

@media (max-width: 991.98px) {
    body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-intro-heading h2,
    body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section h2,
    body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section h3 {
        font-size: var(--type-title-section);
    }
}

/* High School: a clear guide through the UK education stages */
.education-stage-table-wrap {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-top: 4px solid var(--brand-red);
    box-shadow: 0 18px 46px rgba(7, 26, 51, 0.08);
    margin: 2rem 0 2.75rem;
    overflow: hidden;
}

.education-stage-table {
    border-collapse: separate;
    border-spacing: 0;
    color: var(--brand-ink);
    margin: 0;
    table-layout: fixed;
    width: 100%;
}

.education-stage-column {
    width: 13%;
}

.education-years-column {
    width: 17%;
}

.education-age-column {
    width: 18%;
}

.education-assessment-column {
    width: 52%;
}

.education-stage-table thead {
    background: var(--brand-navy);
    color: #fff;
}

.education-stage-table thead th {
    border: 0;
    color: #fff;
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.45;
    padding: 1.15rem 1.3rem;
    text-align: left;
    text-transform: uppercase;
    vertical-align: middle;
}

.education-stage-table thead th + th {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.education-stage-table tbody th,
.education-stage-table tbody td {
    border: 0;
    line-height: 1.65;
    padding: 1.25rem 1.3rem;
    text-align: left;
    vertical-align: top;
}

.education-stage-table tbody tr + tr th,
.education-stage-table tbody tr + tr td {
    border-top: 1px solid var(--brand-line);
}

.education-stage-table tbody th {
    background: var(--brand-ivory);
    color: var(--brand-navy);
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1;
    position: relative;
}

.education-stage-table tbody th::before {
    background: var(--brand-red);
    content: "";
    height: 24px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
}

.education-stage-table tbody td {
    color: #475367;
    font-size: 0.9rem;
}

.education-stage-table tbody td:nth-child(2),
.education-stage-table tbody td:nth-child(3) {
    color: var(--brand-ink);
    font-weight: 600;
}

.education-stage-table tbody tr:nth-child(even) td {
    background: rgba(247, 244, 237, 0.45);
}

@media (max-width: 767.98px) {
    .education-stage-table-wrap {
        background: transparent;
        border: 0;
        box-shadow: none;
        margin: 1.75rem 0 2.5rem;
        overflow: visible;
    }

    .education-stage-table,
    .education-stage-table tbody,
    .education-stage-table tr,
    .education-stage-table th,
    .education-stage-table td {
        display: block;
        width: 100%;
    }

    .education-stage-table colgroup {
        display: none;
    }

    .education-stage-table thead {
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        height: 1px;
        overflow: hidden;
        position: absolute;
        white-space: nowrap;
        width: 1px;
    }

    .education-stage-table tbody {
        display: grid;
        gap: 1rem;
    }

    .education-stage-table tbody tr {
        background: #fff;
        border: 1px solid var(--brand-line);
        border-top: 3px solid var(--brand-red);
        box-shadow: 0 12px 30px rgba(7, 26, 51, 0.08);
        overflow: hidden;
    }

    .education-stage-table tbody th {
        align-items: center;
        background: var(--brand-navy);
        color: #fff;
        display: flex;
        font-size: 1.65rem;
        justify-content: space-between;
        padding: 0.9rem 1rem;
    }

    .education-stage-table tbody th::before {
        background: transparent;
        color: rgba(255, 255, 255, 0.62);
        content: attr(data-label);
        font-family: var(--font-body);
        font-size: 0.62rem;
        font-weight: 700;
        height: auto;
        letter-spacing: 0.12em;
        position: static;
        text-transform: uppercase;
        transform: none;
        width: auto;
    }

    .education-stage-table tbody td {
        align-items: start;
        background: #fff !important;
        display: grid;
        gap: 1rem;
        grid-template-columns: minmax(90px, 0.38fr) minmax(0, 0.62fr);
        padding: 0.8rem 1rem;
    }

    .education-stage-table tbody td + td,
    .education-stage-table tbody tr + tr th,
    .education-stage-table tbody tr + tr td {
        border-top: 1px solid var(--brand-line);
    }

    .education-stage-table tbody td::before {
        color: var(--brand-red);
        content: attr(data-label);
        font-size: 0.61rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        line-height: 1.5;
        text-transform: uppercase;
    }

    .education-stage-table tbody td:nth-child(4) {
        gap: 0.35rem;
        grid-template-columns: 1fr;
    }
}

/* Contact: direct actions rather than another manifesto */
body:has(.contact-quick-panel) .page-header,
body:has(.contact-quick-panel) .page-header .container {
    min-height: 285px;
}

body:has(.contact-quick-panel) .page-header-content {
    padding: 3.25rem 0;
}

body:has(.contact-quick-panel) .page-header h1 {
    font-size: var(--type-title-primary);
    margin-bottom: 1rem;
}

.contact-quick-panel.interior-overview {
    background: var(--brand-navy);
    color: #fff;
    padding: clamp(2.25rem, 3vw, 3.25rem) 0;
}

.contact-quick-panel .container {
    align-items: center;
    display: grid;
    gap: clamp(2rem, 4vw, 5rem);
    grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
}

.contact-quick-heading h2 {
    color: #fff;
    font-size: var(--type-title-section);
    line-height: 1.02;
    margin: 0;
}

.contact-quick-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-quick-option {
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 22px 1fr auto;
    min-height: 116px;
    padding: 1rem 1.35rem;
}

.contact-quick-option:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.contact-quick-option > span,
.contact-quick-option small {
    color: var(--brand-red-soft);
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-quick-option small,
.contact-quick-option strong {
    display: block;
}

.contact-quick-option strong {
    font-family: var(--font-display);
    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1.35;
    margin-top: 0.3rem;
}

.contact-quick-option i {
    color: var(--brand-red-soft);
    font-size: 0.9rem;
}

.contact-process {
    background: #fff;
    border-bottom: 1px solid var(--brand-line);
    padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.contact-process-layout {
    align-items: start;
    display: grid;
    gap: clamp(3rem, 7vw, 7rem);
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.contact-process-heading h2 {
    font-size: var(--type-title-section);
    line-height: 1.04;
    margin: 0 0 1.5rem;
    max-width: 560px;
}

.contact-process-heading > p:not(.eyebrow) {
    color: var(--brand-muted);
    line-height: 1.85;
    margin: 0;
    max-width: 560px;
}

.contact-process-steps {
    display: grid;
    gap: 0 2.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-process-steps article {
    align-items: start;
    border-top: 1px solid var(--brand-navy);
    display: grid;
    gap: 1rem;
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 148px;
    padding: 1.4rem 0;
}

.contact-process-steps article > span {
    color: var(--brand-red);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding-top: 0.25rem;
}

.contact-process-steps h3 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 650;
    margin: 0 0 0.5rem;
}

.contact-process-steps p {
    color: var(--brand-muted);
    font-size: 0.78rem;
    line-height: 1.75;
    margin: 0;
}

.editorial-section {
    background: var(--brand-paper);
    border-bottom: 1px solid var(--brand-line);
    isolation: isolate;
    max-width: none;
    overflow: hidden;
    position: relative;
}

.editorial-section--tone {
    background: var(--brand-ivory);
}

.editorial-section::before {
    color: rgba(7, 26, 51, 0.07);
    content: attr(data-section-number);
    font-family: var(--font-display);
    font-size: clamp(5rem, 10vw, 10rem);
    font-weight: 500;
    left: max(1.25rem, calc((100vw - 1320px) / 2 - 4.5rem));
    line-height: 1;
    pointer-events: none;
    position: absolute;
    top: 1.1rem;
    z-index: -1;
}

.editorial-section:has(.row > .col-lg-12)::before {
    font-size: clamp(5rem, 8vw, 8rem);
}

.editorial-section:has(.col-lg-6[style*="background-image"])::before {
    display: none;
}

.editorial-section .row > .col-lg-6[style*="background-image"] {
    position: relative;
}

.editorial-section .row > .col-lg-6[style*="background-image"]::before {
    align-items: center;
    background: rgba(7, 26, 51, 0.9);
    color: #fff;
    content: attr(data-section-number);
    display: flex;
    font-family: var(--font-display);
    font-size: 2.5rem;
    height: 78px;
    justify-content: center;
    letter-spacing: -0.04em;
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    width: 82px;
    z-index: 4;
}

.editorial-section > .container {
    position: relative;
    z-index: 1;
}

.editorial-section h2,
.editorial-section h3 {
    font-weight: 500;
}

.editorial-section h3 {
    font-size: var(--type-title-section);
    line-height: 1.02;
}

.editorial-section .section-title {
    background: transparent !important;
}

.editorial-section .row > .col-lg-12 {
    background: #fff;
    border: 1px solid var(--brand-line);
    box-shadow: 0 20px 65px rgba(7, 26, 51, 0.08);
    margin-inline: auto;
    max-width: 960px;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 4rem);
    position: relative;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .editorial-section .row > .col-lg-12 {
        margin-left: auto;
        margin-right: 0;
        max-width: calc(100% - clamp(6.5rem, 12vw, 8rem));
    }
}

.editorial-section--tone .row > .col-lg-12 {
    background: var(--brand-paper);
}

.editorial-section .row > .col-lg-12::after {
    color: rgba(207, 41, 71, 0.08);
    content: "E";
    font-family: var(--font-display);
    font-size: clamp(9rem, 12vw, 13rem);
    line-height: 1;
    pointer-events: none;
    position: absolute;
    right: 1.25rem;
    text-align: center;
    top: 0.75rem;
    width: 0.72em;
}

.editorial-section .row > .col-lg-12 > * {
    position: relative;
    z-index: 1;
}

.editorial-section .row > .col-lg-12 > p {
    font-size: 0.93rem;
    max-width: 880px;
}

.editorial-section .list-unstyled {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 2rem 0;
}

.editorial-section .list-unstyled li {
    align-items: flex-start;
    background: var(--brand-ivory);
    border-left: 2px solid var(--brand-red);
    display: flex;
    font-size: 0.76rem;
    line-height: 1.65;
    margin: 0 !important;
    min-height: 58px;
    padding: 0.9rem 1rem;
}

.editorial-section--tone .list-unstyled li {
    background: #fff;
}

.editorial-section .list-unstyled li i {
    font-size: 0.65rem;
    margin-top: 0.35rem;
}

.editorial-section p:has(> .fa-circle) {
    background: var(--brand-ivory);
    border: 1px solid var(--brand-line);
    display: block;
    margin-bottom: 0.75rem !important;
    padding: 1rem 1.2rem;
}

.editorial-section p:has(> .fa-circle) > i {
    margin-right: 0.75rem;
}

.editorial-section--tone p:has(> .fa-circle) {
    background: #fff;
}

.editorial-section p:has(> .fa-circle) > .fw-bold {
    display: inline;
}

.editorial-section .service-item {
    min-height: 340px;
}

.editorial-section .service-item > div {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 2rem !important;
}

.editorial-section .service-item i {
    align-items: center;
    background: var(--brand-ivory);
    border-radius: 50%;
    display: flex;
    height: 72px;
    justify-content: center;
    margin-bottom: 1.5rem !important;
    width: 72px;
}

.editorial-section .service-item h5 {
    font-size: 1.55rem;
    font-weight: 600;
}

.editorial-section .service-item p {
    font-size: 0.75rem;
    line-height: 1.75;
}

.editorial-section .service-item:hover i {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
    .editorial-section .row:has(> .col-lg-6[style*="background-image"]) {
        --bs-gutter-x: 0;
        min-height: 610px;
    }

    .editorial-section .row > .col-lg-6[style*="background-image"] {
        box-shadow: none;
        flex: 0 0 58%;
        min-height: 610px !important;
        width: 58%;
        z-index: 1;
    }

    .editorial-section .row > .col-lg-6:not([style*="background-image"]):has(+ .col-lg-6[style*="background-image"]),
    .editorial-section .row > .col-lg-6[style*="background-image"] + .col-lg-6 {
        align-self: center;
        background: var(--brand-paper);
        border-top: 3px solid var(--brand-red);
        box-shadow: var(--brand-shadow);
        flex: 0 0 48%;
        padding: clamp(2.5rem, 4vw, 4.5rem);
        width: 48%;
        z-index: 2;
    }

    .editorial-section--tone .row > .col-lg-6:not([style*="background-image"]):has(+ .col-lg-6[style*="background-image"]),
    .editorial-section--tone .row > .col-lg-6[style*="background-image"] + .col-lg-6 {
        background: #fff;
    }

    .editorial-section .row > .col-lg-6:not([style*="background-image"]):has(+ .col-lg-6[style*="background-image"]) {
        margin-right: -6%;
    }

    .editorial-section .row > .col-lg-6[style*="background-image"] + .col-lg-6 {
        margin-left: -6%;
    }
}

/* Page-specific editorial compositions */
body:has(.interior-overview[data-page="admissions-consulting"]) > .editorial-section {
    padding-bottom: clamp(3rem, 4vw, 4rem) !important;
    padding-top: clamp(3rem, 4vw, 4rem) !important;
}

body:has(.interior-overview[data-page="admissions-consulting"]) > .editorial-section[data-section-number=""]::before {
    display: none;
}

body:has(.page-header[data-page="people"]) {
    background: #fff;
}

body:has(.page-header[data-page="people"]) .people-container {
    max-width: none;
    padding-inline: max(1.5rem, calc((100vw - 1320px) / 2));
}

body:has(.page-header[data-page="people"]) .people-founder-section,
body:has(.page-header[data-page="people"]) .people-consultants-section,
body:has(.page-header[data-page="people"]) .people-mentors-section {
    background: #fff;
    padding-bottom: clamp(2.75rem, 3vw, 3.5rem);
}

body:has(.page-header[data-page="people"]) .people-team-item {
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

body:has(.page-header[data-page="people"]) .people-text-content {
    background: #fff;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}

body:has(.page-header[data-page="people"]) .people-text-center {
    text-align: left;
}

body:has(.page-header[data-page="people"]) .people-mb-5 {
    align-items: center;
    color: var(--brand-navy);
    display: flex;
    gap: 1rem;
    max-width: 650px;
    text-align: left;
}

body:has(.page-header[data-page="people"]) .people-mb-5::before {
    background: var(--brand-red);
    content: "";
    flex: 0 0 1px;
    height: 2.25rem;
    width: 1px;
}

body:has(.page-header[data-page="people"]) .people-founder-section .people-col {
    flex-basis: 390px;
}

body:has(.interior-overview[data-page="press"]) .interior-intro-points article > span {
    font-size: 0;
    padding-top: 0.65rem;
}

body:has(.interior-overview[data-page="press"]) .interior-intro-points article > span::before {
    background: var(--brand-red);
    content: "";
    display: block;
    height: 1px;
    width: 18px;
}

body:has(.interior-overview[data-page="contact-us"]) .editorial-section .row.g-4 {
    align-items: stretch;
}

body:has(.interior-overview[data-page="contact-us"]) .editorial-section .row.g-4 > .col-lg-4 {
    background: var(--brand-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: clamp(2rem, 4vw, 4rem);
}

body:has(.interior-overview[data-page="contact-us"]) .editorial-section .row.g-4 > .col-lg-4 h5 {
    color: #fff;
}

body:has(.interior-overview[data-page="contact-us"]) .editorial-section .row.g-4 > .col-lg-4 p {
    color: rgba(255, 255, 255, 0.62);
}

body:has(.interior-overview[data-page="contact-us"]) .editorial-section .row.g-4 > .col-lg-4 .bg-primary {
    background: var(--brand-red) !important;
}

body:has(.interior-overview[data-page="contact-us"]) .editorial-section .row.g-4 > .col-lg-8 {
    background: var(--brand-ivory);
    padding: clamp(2rem, 4vw, 4rem);
}

#contact-form {
    scroll-margin-top: 90px;
}

#contactFormContainer {
    height: 100%;
}

.contact-form-instruction {
    align-items: start;
    background: #fff;
    border-left: 2px solid var(--brand-red);
    color: var(--brand-muted);
    display: flex;
    font-size: 0.76rem;
    gap: 0.75rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    padding: 1rem 1.1rem;
}

.contact-form-instruction i {
    color: var(--brand-red);
    margin-top: 0.25rem;
}

.contact-privacy-consent {
    color: var(--brand-muted);
    font-size: 0.76rem;
    line-height: 1.65;
    padding: 0.35rem 0 0.35rem 1.8rem;
}

.contact-privacy-consent .form-check-input {
    border-color: #9ca5b1;
    border-radius: 0;
    margin-top: 0.25rem;
}

.contact-privacy-consent .form-check-input:checked {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
}

.contact-privacy-consent a {
    color: var(--brand-navy);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

#london-office {
    scroll-margin-top: 90px;
}

.contact-location {
    background: var(--brand-paper);
    border-top: 1px solid var(--brand-line);
    padding: clamp(4rem, 7vw, 7rem) 0;
}

.contact-location-grid {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
}

.contact-location-image {
    min-height: 610px;
    overflow: hidden;
    position: relative;
}

.contact-location-image::after {
    background: linear-gradient(180deg, transparent 55%, rgba(7, 26, 51, 0.68));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 2;
}

.contact-location-image img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.contact-location-image iframe {
    border: 0;
    filter: grayscale(0.28) saturate(0.78) contrast(1.05);
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.contact-location-coordinates {
    bottom: 1.5rem;
    color: #fff;
    display: flex;
    font-size: 0.58rem;
    font-weight: 700;
    gap: 1.4rem;
    left: 1.5rem;
    letter-spacing: 0.12em;
    position: absolute;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 3;
}

.contact-location-copy {
    background: var(--brand-ivory);
    border-top: 4px solid var(--brand-red);
    box-shadow: var(--brand-shadow);
    margin-left: -8%;
    padding: clamp(2.5rem, 5vw, 5.25rem);
    position: relative;
    z-index: 2;
}

.contact-location-copy h2 {
    font-size: var(--type-title-section);
    line-height: 0.98;
    margin-bottom: 1.75rem;
}

.contact-location-copy > p:not(.eyebrow) {
    color: var(--brand-muted);
    line-height: 1.85;
}

.contact-location-copy address {
    border-bottom: 1px solid var(--brand-line);
    border-top: 1px solid var(--brand-line);
    color: var(--brand-muted);
    font-style: normal;
    line-height: 1.75;
    margin: 2rem 0;
    padding: 1.3rem 0;
}

.contact-location-copy address strong {
    color: var(--brand-navy);
    display: block;
}

.contact-location-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Home hero */
.home-hero {
    background: var(--brand-navy);
    color: rgba(255, 255, 255, 0.78);
    min-height: calc(100vh - 124px);
    overflow: hidden;
    padding: clamp(1.75rem, 3vw, 3rem) 0 clamp(4rem, 6vw, 6rem);
    position: relative;
}

.home-hero::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
    background-size: 24px 24px;
    content: "";
    height: 310px;
    left: -100px;
    opacity: 0.22;
    position: absolute;
    top: 70px;
    width: 310px;
}

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

.home-hero-copy {
    padding-right: clamp(1rem, 4vw, 4.5rem);
}

.home-hero h1 {
    color: #fff;
    font-size: var(--type-title-primary);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.88;
    margin: 0 0 1.9rem;
}

.home-hero h1 span,
.home-hero h1 em {
    display: block;
    white-space: nowrap;
}

.home-hero h1 em {
    color: #e2cfad;
    font-weight: 500;
}

.home-hero-lead {
    font-size: clamp(0.96rem, 1.2vw, 1.08rem);
    line-height: 1.9;
    margin: 0 0 2.2rem;
    max-width: 650px;
}

.home-hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
}

.home-hero-proofs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.4rem;
    list-style: none;
    margin: 2.5rem 0 0;
    padding: 0;
}

.home-hero-proofs li {
    align-items: center;
    color: rgba(255, 255, 255, 0.66);
    display: flex;
    font-size: 0.66rem;
    gap: 0.55rem;
    letter-spacing: 0.04em;
}

.home-hero-proofs li span {
    border: 1px solid var(--brand-red);
    border-radius: 50%;
    height: 6px;
    width: 6px;
}

.home-hero-visual {
    min-height: 735px;
    position: relative;
}

.home-hero-frame {
    aspect-ratio: 1055 / 1491;
    height: auto;
    margin-left: auto;
    overflow: hidden;
    position: relative;
    width: min(92%, 520px);
}

.home-hero-frame::after {
    
    content: "";
    inset: 20px;
    position: absolute;
}

.home-hero-frame picture,
.home-hero-frame img {
    display: block;
    height: 100%;
    width: 100%;
}

.home-hero-frame img {
    object-fit: contain;
    object-position: center top;
}

.home-hero-detail {
    border: 10px solid var(--brand-navy);
    bottom: 0;
    height: 225px;
    left: 0;
    overflow: hidden;
    position: absolute;
    width: 235px;
}

.home-hero-detail img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.home-hero-note {
    align-items: center;
    background: var(--brand-ivory);
    bottom: 35px;
    color: var(--brand-navy);
    display: flex;
    gap: 1rem;
    max-width: 310px;
    padding: 1.25rem 1.35rem;
    position: absolute;
    right: -15px;
}

.home-hero-note > strong {
    border-right: 1px solid var(--brand-line);
    font-family: var(--font-display);
    font-size: 2.7rem;
    font-weight: 600;
    line-height: 0.8;
    padding-right: 1rem;
}

.home-hero-note > strong span {
    color: var(--brand-red);
    font-size: 1.5rem;
}

.home-hero-note div {
    display: flex;
    flex-direction: column;
}

.home-hero-note b {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.1;
}

.home-hero-note small {
    color: var(--brand-muted);
    font-size: 0.58rem;
    line-height: 1.55;
    margin-top: 0.3rem;
}

/* Institution ribbon */
.home-institutions {
    background: #fff;
    border-bottom: 1px solid var(--brand-line);
    padding: 2.25rem 0 2.4rem;
}

.home-institutions > .container > p {
    color: var(--brand-muted);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.6rem;
    text-align: left;
    text-transform: uppercase;
}

.institution-grid {
    align-items: stretch;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(6, 1fr);
}

.institution-mark {
    align-items: center;
    background: #fff;
    border-right: 1px solid var(--brand-line);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 112px;
    min-width: 0;
    padding: 0.5rem 1rem;
    text-align: center;
}

.institution-mark:last-child {
    border-right: 0;
}

.institution-mark img {
    filter: grayscale(1);
    height: 52px;
    margin-bottom: 0.85rem;
    object-fit: contain;
    opacity: 0.82;
    transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
    width: 68px;
}

.institution-mark:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-3px);
}

.institution-mark span {
    align-items: flex-start;
    color: var(--brand-navy-soft);
    display: flex;
    font-size: 0.61rem;
    font-weight: 600;
    justify-content: center;
    line-height: 1.4;
    min-height: 2.8em;
}

/* Approach */
.home-approach {
    background: #fff;
}

.home-approach #approach-title,
.distinction-copy h2,
.home-reviews #reviews-title,
.home-press #press-title,
.home-events #events-title {
    font-size: var(--type-title-section);
}

@media (min-width: 992px) {
    .home-hero h1 {
        font-size: clamp(2.9rem, 4vw, 4rem);
    }

    html[lang="tr"] .home-hero h1 {
        font-size: clamp(2.5rem, 3.4vw, 3.4rem);
    }

    .home-approach #approach-title {
        white-space: nowrap;
    }
}

.home-approach .section-intro,
.home-reviews .section-intro,
.home-press .section-intro,
.home-events .section-intro {
    border-left: 0;
    margin-top: 1.5rem;
    max-width: 750px;
    padding-left: 0;
}

.home-approach .section-heading-row,
.home-reviews .section-heading-row,
.home-press .section-heading-row,
.home-events .section-heading-row {
    margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.home-page .section-space {
    padding-block: clamp(4rem, 4.5vw, 4.75rem);
}

.home-page .home-approach .text-center.mt-5,
.home-page .home-reviews .text-center.mt-5,
.home-page .home-press .text-center.mt-5,
.home-page .home-events .text-center.mt-5 {
    margin-top: 2rem !important;
}

/* Combined student-first philosophy and method */
.home-method {
    background: var(--brand-paper);
    border-bottom: 1px solid var(--brand-line);
    padding: clamp(3.5rem, 4.5vw, 4.75rem) 0;
}

.home-method-heading {
    margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
    max-width: 1080px;
}

.home-method-heading h2 {
    font-size: var(--type-title-section);
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.04;
    margin: 0;
    max-width: 820px;
}

.home-method-thesis {
    border-left: 1px solid var(--brand-red);
    color: var(--brand-navy);
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 1.75rem 0 0;
    max-width: 900px;
    padding-left: 1.5rem;
}

.home-method-statements,
.home-method-narrative,
.home-method-steps {
    border-left: 1px solid var(--brand-line);
    border-top: 1px solid var(--brand-line);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-inline: auto;
    max-width: 1080px;
}

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

.home-method-body {
    margin-inline: auto;
    max-width: 1080px;
}

.home-method-body .home-method-narrative {
    margin: 0;
    max-width: none;
    width: 100%;
}

.home-method-statements {
    margin-block: 1.25rem;
}

.home-method-statements > p,
.home-method-narrative > div {
    border-bottom: 1px solid var(--brand-line);
    border-right: 1px solid var(--brand-line);
    padding: clamp(1.6rem, 2.5vw, 2.25rem);
}

.home-method-copy p,
.home-method-request {
    color: #475367;
    font-size: 0.82rem;
    line-height: 1.8;
}

.home-method-copy p:last-child,
.home-method-request {
    margin-bottom: 0;
}

.home-method-statements > p {
    margin: 0;
    min-height: 145px;
}

.home-method-statements > p:not(.home-method-request) {
    color: var(--brand-navy);
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.3;
}

.home-method-request {
    align-items: center;
    display: flex;
}

.home-method-steps {
    margin-top: 1.25rem;
}

.home-method-steps article {
    border-bottom: 1px solid var(--brand-line);
    border-right: 1px solid var(--brand-line);
    display: grid;
    gap: 1rem;
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 155px;
    padding: 1.5rem;
}

.home-method-steps article > span {
    color: var(--brand-red);
    font-size: 0.62rem;
    font-weight: 700;
    padding-top: 0.25rem;
}

.home-method-steps h3 {
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: 0.84rem;
    letter-spacing: 0;
    margin-bottom: 0.35rem;
}

.home-method-steps p {
    color: var(--brand-muted);
    font-size: 0.75rem;
    line-height: 1.7;
    margin: 0;
}

.home-method-action {
    margin-top: 2rem;
    text-align: center;
}

.home-method-action .btn {
    align-items: center;
    display: inline-flex;
    gap: 0.8rem;
}

@media (max-width: 991.98px) {
    .home-method-body .home-method-narrative {
        width: 100%;
    }

    .home-method-statements,
    .home-method-narrative,
    .home-method-steps {
        grid-template-columns: 1fr;
    }

    .home-method-statements > p {
        min-height: 0;
    }

    .home-method-steps article {
        min-height: 0;
    }
}

@media (max-width: 767.98px) {
    .home-method {
        padding: 3.5rem 0;
    }
}

.pathway-grid {
    border-left: 1px solid var(--brand-line);
    border-top: 1px solid var(--brand-line);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.pathway-card {
    background: transparent;
    border-bottom: 1px solid var(--brand-line);
    border-right: 1px solid var(--brand-line);
    color: var(--brand-navy);
    display: grid;
    gap: 1.5rem;
    grid-template-columns: auto 1fr auto;
    min-height: 245px;
    padding: clamp(1.8rem, 4vw, 3.3rem);
    position: relative;
}

.pathway-card::before {
    background: var(--brand-navy);
    content: "";
    inset: 0;
    position: absolute;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.pathway-number {
    color: var(--brand-red);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding-top: 0.45rem;
}

.pathway-card h3 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.pathway-card p {
    color: var(--brand-muted);
    font-size: 0.83rem;
    line-height: 1.8;
    margin: 0;
    max-width: 420px;
}

.pathway-arrow {
    font-size: 1.1rem;
    transition: transform 220ms ease;
}

.pathway-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.pathway-card:hover h3,
.pathway-card:hover .pathway-arrow {
    color: #fff;
}

.pathway-card:hover p {
    color: rgba(255, 255, 255, 0.64);
}

.pathway-card:hover .pathway-arrow {
    transform: translate(3px, -3px);
}

/* Distinction */
.home-distinction {
    background: var(--brand-navy);
    color: rgba(255, 255, 255, 0.7);
}

.home-distinction-grid {
    align-items: center;
    display: grid;
    gap: clamp(3rem, 7vw, 7.5rem);
    grid-template-columns: minmax(330px, 0.9fr) minmax(450px, 1.1fr);
}

.distinction-image-wrap {
    height: 740px;
    position: relative;
}

.distinction-image-wrap::before {

    content: "";
    inset: -22px 22px 22px -22px;
    position: absolute;
}

.distinction-image-wrap > img {
    height: 100%;
    object-fit: cover;
    position: relative;
    transform: scaleY(1.05);
    transform-origin: center top;
    width: 100%;
}

.distinction-image-caption {
    align-items: center;
    background: var(--brand-ivory);
    bottom: -1px;
    color: var(--brand-navy);
    display: flex;
    justify-content: space-between;
    left: -1px;
    padding: 1.15rem 1.4rem;
    position: absolute;
    width: 76%;
}

.distinction-image-caption span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

.distinction-image-caption small {
    color: var(--brand-muted);
    font-size: 0.55rem;
    letter-spacing: 0.08em;
}

.distinction-copy h2 {
    color: #fff;
    margin-bottom: 1.75rem;
}

.distinction-lead {
    font-size: 0.96rem;
    line-height: 1.9;
    margin-bottom: 2.4rem;
    max-width: 680px;
}

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

.principle-list article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    display: grid;
    gap: 1.4rem;
    grid-template-columns: 28px 1fr;
    padding: 1.35rem 0;
}

.principle-list article > span {
    color: var(--brand-red);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding-top: 0.3rem;
}

.principle-list h3 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    margin-bottom: 0.3rem;
}

.principle-list p {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.75rem;
    margin: 0;
}

.distinction-stats {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.5rem;
}

.distinction-stats > div:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.distinction-stats strong {
    color: #fff;
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 500;
    line-height: 0.9;
}

.distinction-stats strong span {
    color: var(--brand-red);
    font-size: 0.55em;
}

.distinction-stats p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.62rem;
    margin: 0.65rem 0 0;
}

.stats-note {
    color: var(--brand-sand);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    margin-top: 1.8rem;
}

/* Reviews */
.home-reviews {
    background: var(--brand-ivory);
}

.home-reviews .text-link-dark {
    color: var(--brand-red);
}

.home-reviews .text-link-dark:hover {
    color: var(--brand-red-dark);
}

.review-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, 1fr);
}

.home-review-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.review-card {
    background: var(--brand-paper);
    border: 1px solid rgba(7, 26, 51, 0.11);
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: clamp(1.7rem, 3vw, 2.5rem);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.review-card:hover {
    box-shadow: var(--brand-shadow);
    transform: translateY(-6px);
}

.review-card-top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.75rem;
}

.review-stars {
    color: #b8913e;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
}

.review-google {
    color: var(--brand-muted);
    font-size: 1rem;
}

.review-card blockquote {
    color: #3f4b5e;
    flex: 1;
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    font-style: normal;
    line-height: 1.5;
    margin: 0 0 2rem;
}

.review-card footer {
    align-items: center;
    border-top: 1px solid var(--brand-line);
    display: flex;
    gap: 0.85rem;
    padding-top: 1.3rem;
}

.review-card footer > span {
    align-items: center;
    background: var(--brand-navy);
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 0.72rem;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.review-card footer div {
    display: flex;
    flex-direction: column;
}

.review-card footer strong {
    color: var(--brand-navy);
    font-size: 0.73rem;
}

.review-card footer small {
    color: var(--brand-muted);
    font-size: 0.57rem;
    margin-top: 0.16rem;
}

/* Press */
.home-press {
    background: var(--brand-paper);
}

.press-editorial-grid {
    display: grid;
    gap: 1.4rem;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.press-editorial-card {
    background: #fff;
    border: 1px solid var(--brand-line);
    color: var(--brand-navy);
    display: grid;
    grid-template-rows: 360px 1fr;
    height: 100%;
    overflow: hidden;
}

.press-editorial-image {
    overflow: hidden;
}

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

.press-editorial-card:hover .press-editorial-image img {
    transform: scale(1.035);
}

.press-editorial-copy {
    padding: clamp(1.5rem, 3vw, 2.6rem);
}

.press-editorial-copy > p {
    align-items: center;
    color: var(--brand-muted);
    display: flex;
    font-size: 0.59rem;
    justify-content: space-between;
    letter-spacing: 0.07em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.press-editorial-copy > p span {
    color: var(--brand-red);
    font-weight: 700;
}

.press-editorial-copy h3 {
    font-size: 1.75rem;
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

.press-editorial-card:hover h3 {
    color: var(--brand-red);
}

/* Events */
.home-events {
    background: var(--brand-navy);
}

.home-events .section-heading-row h2 {
    color: #fff;
}

.home-events .section-intro {
    color: rgba(255, 255, 255, 0.62);
}

.event-editorial-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: 1fr 1fr;
}

.event-editorial-card {
    color: #fff;
    height: 430px;
    overflow: hidden;
    position: relative;
}

.event-editorial-card::after {
    background: linear-gradient(180deg, transparent 26%, rgba(3, 13, 27, 0.9) 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.event-editorial-card > img {
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
    width: 100%;
}

.event-editorial-card:hover > img {
    transform: scale(1.04);
}

.event-editorial-card > div {
    bottom: 0;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: 1fr auto;
    left: 0;
    padding: clamp(1.7rem, 4vw, 3rem);
    position: absolute;
    right: 0;
    z-index: 1;
}

.event-editorial-card > div > span {
    color: var(--brand-sand);
    font-size: 0.63rem;
    font-weight: 700;
    grid-column: 1 / -1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.event-editorial-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}

.event-editorial-card b {
    font-size: 1.15rem;
}

/* About: purpose, founder, principles and advisory method */
.about-editorial {
    background: #fff;
}

.about-section {
    border-bottom: 1px solid var(--brand-line);
    padding: clamp(3.5rem, 4.5vw, 5rem) 0;
}

.about-section h2,
.about-cta h2 {
    font-size: var(--type-title-section);
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.04;
    margin: 0;
}

.about-section p {
    color: #475367;
    line-height: 1.85;
}

.about-purpose-grid,
.about-definition-grid {
    align-items: start;
    display: grid;
    gap: clamp(3rem, 7vw, 7rem);
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
}

.about-purpose-copy,
.about-definition-grid > div {
    border-left: 1px solid var(--brand-red);
    padding-left: clamp(1.5rem, 3vw, 3rem);
}

.about-purpose-copy p,
.about-definition-grid > div p {
    font-size: 0.98rem;
}

.about-statement {
    color: var(--brand-navy) !important;
    font-family: var(--font-display);
    font-size: 1.65rem !important;
    line-height: 1.3 !important;
    margin: 2rem 0 0;
}

.about-founder,
.about-approach {
    background: var(--brand-ivory);
}

.about-founder-grid {
    align-items: center;
    display: grid;
    gap: clamp(3rem, 7vw, 7rem);
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.about-founder-profile {
    max-width: 380px;
}

.about-founder-image {
    border-top: 3px solid var(--brand-red);
    box-shadow: var(--brand-shadow);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.about-founder-image img {
    display: block;
    height: 430px;
    object-fit: cover;
    width: 100%;
}

.about-founder-profile h3 {
    font-size: 1.7rem;
    margin-bottom: 0.25rem;
}

.about-founder-profile > p {
    color: var(--brand-red);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0;
    text-transform: uppercase;
}

.about-founder-copy h2 {
    margin-bottom: 2rem;
    max-width: 760px;
}

.about-founder-copy > p:not(.eyebrow) {
    font-size: 0.92rem;
    max-width: 850px;
}

.about-principles {
    border-top: 1px solid var(--brand-line);
    margin-top: clamp(3.5rem, 5vw, 5rem);
    padding-top: clamp(3.5rem, 5vw, 5rem);
}

.about-principles > header {
    margin-bottom: 2.5rem;
    max-width: 760px;
}

.about-principles-grid {
    border-left: 1px solid var(--brand-line);
    border-top: 1px solid var(--brand-line);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-principles-grid article {
    border-bottom: 1px solid var(--brand-line);
    border-right: 1px solid var(--brand-line);
    min-height: 270px;
    padding: 2rem 1.5rem;
}

.about-principles-grid span,
.about-approach-list article > span {
    color: var(--brand-red);
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.about-principles-grid h3 {
    font-size: 1.45rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.about-principles-grid p {
    font-size: 0.75rem;
    line-height: 1.75;
    margin: 0;
}

#our-approach {
    scroll-margin-top: 110px;
}

.about-approach-heading {
    margin-bottom: clamp(2.75rem, 4vw, 4rem);
    max-width: 880px;
}

.about-approach-heading h2 {
    margin-bottom: 1.5rem;
}

.about-approach-heading > p:not(.eyebrow) {
    font-size: 1rem;
    max-width: 800px;
}

.about-approach-list {
    border-left: 1px solid var(--brand-line);
    border-top: 1px solid var(--brand-line);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-approach-list article {
    background: #fff;
    border-bottom: 1px solid var(--brand-line);
    border-right: 1px solid var(--brand-line);
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 34px 1fr;
    min-height: 245px;
    padding: clamp(1.75rem, 3vw, 2.75rem);
}

.about-approach-list article:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.about-approach-list article > span {
    margin: 0;
    padding-top: 0.35rem;
}

.about-approach-list h3 {
    font-size: 1.55rem;
    line-height: 1.18;
    margin-bottom: 0.85rem;
}

.about-approach-list p {
    font-size: 0.8rem;
    line-height: 1.75;
    margin: 0;
    max-width: 680px;
}

.about-expectations-grid {
    align-items: stretch;
    border-left: 1px solid var(--brand-line);
    border-top: 1px solid var(--brand-line);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: auto;
    max-width: 1180px;
}

.about-expectations-grid > div {
    background: #fff;
    border-bottom: 1px solid var(--brand-line);
    border-right: 1px solid var(--brand-line);
    padding: clamp(2rem, 4vw, 3.25rem);
}

.about-expectations h2 {
    font-size: clamp(2.5rem, 3.5vw, 3.75rem);
    line-height: 1.03;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.about-expectations ul {
    counter-reset: expectation;
    display: grid;
    gap: 0;
    list-style: none;
    margin: 2rem 0 1.5rem;
    padding: 0;
}

.about-expectations li {
    align-items: start;
    border-top: 1px solid var(--brand-line);
    color: #475367;
    counter-increment: expectation;
    display: grid;
    font-size: 0.82rem;
    gap: 1rem;
    grid-template-columns: 30px minmax(0, 1fr);
    line-height: 1.65;
    padding: 1rem 0;
}

.about-expectations li:last-child {
    border-bottom: 1px solid var(--brand-line);
}

.about-expectations li::before {
    color: var(--brand-red);
    content: counter(expectation, decimal-leading-zero);
    font-size: 0.62rem;
    font-weight: 700;
    padding-top: 0.25rem;
}

.about-expectations-grid > div:first-child > p:last-child {
    color: var(--brand-muted);
    font-size: 0.8rem;
    line-height: 1.75;
    margin: 0;
}

.about-faq {
    border-top: 0;
}

.about-faq > .eyebrow {
    margin: 0 0 1.75rem;
}

.about-faq details {
    border-bottom: 1px solid var(--brand-line);
    padding: 1.2rem 0;
}

.about-faq details:first-of-type {
    border-top: 1px solid var(--brand-line);
}

.about-faq summary {
    align-items: start;
    color: var(--brand-navy);
    cursor: pointer;
    display: grid;
    font-size: 0.86rem;
    font-weight: 700;
    gap: 0.8rem;
    grid-template-columns: 18px minmax(0, 1fr);
    list-style: none;
}

.about-faq summary::-webkit-details-marker {
    display: none;
}

.about-faq summary::before {
    color: var(--brand-red);
    content: "+";
    font-size: 1rem;
    line-height: 1;
}

.about-faq details[open] summary::before {
    content: "−";
}

.about-faq details p {
    font-size: 0.78rem;
    margin: 1rem 0 0;
    padding-left: 1.8rem;
}

.about-cta {
    background: var(--brand-ivory);
    padding: clamp(3rem, 4vw, 4rem) 0;
}

.about-cta > .container {
    align-items: center;
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.about-cta h2 {
    max-width: 820px;
}

.about-cta .btn {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 0.8rem;
}

@media (max-width: 1199.98px) {
    .about-principles-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .about-purpose-grid,
    .about-founder-grid,
    .about-definition-grid,
    .about-expectations-grid {
        gap: 2.5rem;
        grid-template-columns: 1fr;
    }

    .about-founder-profile {
        width: min(100%, 380px);
    }

    .about-expectations-grid {
        gap: 0;
    }

    .about-purpose-copy,
    .about-definition-grid > div {
        padding-left: 1.5rem;
    }

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

    .about-approach-list article:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

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

@media (max-width: 767.98px) {
    .about-section {
        padding: 3.5rem 0;
    }

    .about-founder-image img {
        height: min(430px, 112vw);
    }

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

    .about-principles-grid article,
    .about-approach-list article {
        min-height: 0;
    }

    .about-approach-list article:last-child:nth-child(odd) {
        grid-column: auto;
    }
}

/* Education Pathways hub */
.pathways-hub {
    background: #fff;
}

.pathways-hub-intro,
.pathways-hub-directory,
.pathways-hub-connections,
.pathways-hub-cta {
    border-bottom: 1px solid var(--brand-line);
    padding: clamp(3.5rem, 4.5vw, 5rem) 0;
}

.pathways-hub-intro-grid {
    align-items: start;
    display: grid;
    gap: clamp(3rem, 7vw, 7rem);
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
}

.pathways-hub-intro h2,
.pathways-hub-connections h2,
.pathways-hub-cta h2 {
    font-size: var(--type-title-section);
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.04;
    margin: 0;
}

.pathways-hub-intro-grid > div {
    border-left: 1px solid var(--brand-red);
    padding-left: clamp(1.5rem, 3vw, 3rem);
}

.pathways-hub p {
    color: #475367;
    line-height: 1.85;
}

.pathways-hub-directory {
    padding-top: 0;
}

.pathways-hub-directory .pathway-card {
    min-height: 225px;
}

.pathways-hub-directory .pathway-card h3 {
    font-size: clamp(1.7rem, 2.2vw, 2.15rem);
}

.pathways-hub-connections {
    background: var(--brand-ivory);
}

.pathways-hub-connections-heading {
    margin-bottom: 2.5rem;
    max-width: 780px;
}

.pathways-hub-connections-heading h2 {
    margin-bottom: 1.25rem;
}

.pathways-connection-grid {
    border-left: 1px solid var(--brand-line);
    border-top: 1px solid var(--brand-line);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pathways-connection-grid article {
    background: #fff;
    border-bottom: 1px solid var(--brand-line);
    border-right: 1px solid var(--brand-line);
    min-height: 225px;
    padding: 2rem 1.5rem;
}

.pathways-connection-grid span {
    color: var(--brand-red);
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.75rem;
}

.pathways-connection-grid h3 {
    font-size: 1.45rem;
    margin-bottom: 0.85rem;
}

.pathways-connection-grid p {
    font-size: 0.75rem;
    margin: 0;
}

.pathways-hub-cta {
    background: #fff;
}

.pathways-hub-cta > .container {
    align-items: center;
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.pathways-hub-cta h2 {
    margin-bottom: 1.25rem;
    max-width: 850px;
}

.pathways-hub-cta p:not(.eyebrow) {
    margin: 0;
    max-width: 720px;
}

.pathways-hub-cta .btn {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 0.8rem;
}

.pathway-step-grid {
    border-left: 1px solid var(--brand-line);
    border-top: 1px solid var(--brand-line);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pathway-step-grid article {
    background: #fff;
    border-bottom: 1px solid var(--brand-line);
    border-right: 1px solid var(--brand-line);
    min-height: 205px;
    padding: 1.8rem 1.5rem;
}

.pathway-step-grid article > span {
    color: var(--brand-red);
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.pathway-step-grid h4 {
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 0.85rem;
}

.pathway-step-grid p {
    color: #475367;
    font-size: 0.76rem;
    line-height: 1.75;
    margin: 0;
}

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

.pathway-step-grid--compact article {
    min-height: 170px;
}

.pathway-faq-grid {
    border-top: 1px solid var(--brand-navy);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pathway-faq-grid details {
    border-bottom: 1px solid var(--brand-line);
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.pathway-faq-grid details:nth-child(even) {
    border-left: 1px solid var(--brand-line);
    padding-left: 1.5rem;
}

.pathway-faq-grid summary {
    color: var(--brand-navy);
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 700;
}

.pathway-faq-grid p {
    color: #475367;
    font-size: 0.78rem;
    line-height: 1.7;
    margin: 1rem 0 0;
}

.pathway-closing-action {
    align-items: center;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin-top: 2.5rem;
}

.pathway-closing-action > p {
    color: var(--brand-navy);
    font-family: var(--font-display);
    font-size: 1.65rem;
    line-height: 1.25;
    margin: 0;
}

.pathway-closing-action .btn {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 0.75rem;
}

.pathway-two-column {
    border-left: 1px solid var(--brand-line);
    border-top: 1px solid var(--brand-line);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pathway-two-column article {
    border-bottom: 1px solid var(--brand-line);
    border-right: 1px solid var(--brand-line);
    min-height: 315px;
    padding: clamp(2rem, 4vw, 3.25rem);
}

.pathway-two-column h3 {
    font-size: clamp(1.65rem, 2.4vw, 2.25rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.pathway-two-column article > p:not(.eyebrow) {
    color: #475367;
    font-size: 0.82rem;
    line-height: 1.8;
    margin: 0;
}

.academic-stage-routes {
    background: var(--brand-ivory);
    border-bottom: 1px solid var(--brand-line);
    border-top: 1px solid var(--brand-line);
    padding: clamp(3.5rem, 5vw, 5rem) 0;
}

.academic-stage-routes .academic-support-heading {
    margin-bottom: 2.5rem;
}

@media (max-width: 991.98px) {
    .pathways-hub-intro-grid {
        gap: 2.5rem;
        grid-template-columns: 1fr;
    }

    .pathways-hub-intro-grid > div {
        padding-left: 1.5rem;
    }

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

    .pathway-step-grid,
    .pathway-step-grid--compact,
    .pathway-two-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pathways-hub-cta > .container {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .pathways-connection-grid {
        grid-template-columns: 1fr;
    }

    .pathways-connection-grid article {
        min-height: 0;
    }

    .pathway-step-grid,
    .pathway-step-grid--compact,
    .pathway-two-column,
    .pathway-faq-grid {
        grid-template-columns: 1fr;
    }

    .pathway-two-column article {
        min-height: 0;
    }

    .pathway-step-grid article {
        min-height: 0;
    }

    .pathway-faq-grid details:nth-child(even) {
        border-left: 0;
        padding-left: 0;
    }

    .pathway-closing-action {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* People: coordinated team and matching context */
.people-framing {
    border-bottom: 1px solid var(--brand-line);
    padding: clamp(3.5rem, 4.5vw, 5rem) 0;
}

.people-framing-grid,
.people-matching-grid {
    align-items: start;
    display: grid;
    gap: clamp(3rem, 7vw, 7rem);
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
}

.people-framing h2 {
    font-size: var(--type-title-section);
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.04;
    margin: 0;
}

.people-framing-copy,
.people-matching-grid > div {
    border-left: 1px solid var(--brand-red);
    padding-left: clamp(1.5rem, 3vw, 3rem);
}

.people-framing p {
    color: #475367;
    font-size: 0.92rem;
    line-height: 1.85;
}

.people-framing-copy strong {
    color: var(--brand-navy);
    display: block;
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
    margin-top: 1.75rem;
}

.people-matching {
    background: var(--brand-ivory);
    border-top: 1px solid var(--brand-line);
}

@media (max-width: 991.98px) {
    .people-framing-grid,
    .people-matching-grid {
        gap: 2.5rem;
        grid-template-columns: 1fr;
    }

    .people-framing-copy,
    .people-matching-grid > div {
        padding-left: 1.5rem;
    }
}

/* People and founder */
.people-container,
.bio-container {
    max-width: 1320px;
    padding: clamp(4.5rem, 7vw, 7rem) 1.5rem;
}

body:has(.page-header[data-page="about-us"]) .bio-container,
body:has(.page-header[data-page="people"]) .people-founder-section {
    padding-top: clamp(2.75rem, 3vw, 3.5rem);
}

.people-container + .people-container {
    padding-top: 0;
}

.people-mb-5,
.bio-main-title {
    font-size: var(--type-title-section);
    font-weight: 500;
}

.bio-main-title {
    align-items: center;
    display: flex;
    gap: 1rem;
    text-align: left;
}

.bio-main-title::before {
    background: var(--brand-red);
    content: "";
    flex: 0 0 1px;
    height: 2.25rem;
    width: 1px;
}

.people-row {
    margin: -0.75rem;
}

.people-col {
    flex-basis: calc(25% - 1.5rem);
    margin: 0.75rem;
}

.people-team-item {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: 0;
    box-shadow: none;
}

.people-team-item:hover {
    box-shadow: var(--brand-shadow);
    transform: translateY(-7px);
}

.people-overflow {
    border-radius: 0;
    height: 380px;
}

.people-hover-text {
    background: rgba(7, 26, 51, 0.94);
    padding: 1.75rem;
}

.people-hover-text p {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.76rem;
    line-height: 1.75 !important;
}

.people-text-content {
    border-top: 3px solid var(--brand-red);
    padding: 1.5rem;
}

.people-text-content h5,
.bio-name {
    font-size: 1.45rem;
}

.people-designation,
.bio-title {
    color: var(--brand-red);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bio-row {
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}

.bio-image-section {
    flex-basis: 380px;
}

.bio-image-container {
    border-radius: 0;
    box-shadow: var(--brand-shadow);
    position: relative;
}

.bio-image-container::after {
    border: 1px solid rgba(255, 255, 255, 0.7);
    content: "";
    inset: 16px;
    position: absolute;
}

.bio-img {
    height: 430px;
}

.bio-text-section {
    border-left: 1px solid var(--brand-line);
    padding-left: clamp(2rem, 5vw, 5rem);
}

/* Cards on press and brochure pages */
body .press-card,
body .brochure-card {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: 0;
    box-shadow: none;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

body .press-card:hover,
body .brochure-card:hover {
    border-color: var(--brand-line);
    box-shadow: var(--brand-shadow);
    transform: translateY(-7px);
}

body .press-title,
body .brochure-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
}

body .brochure-icon {
    background: var(--brand-navy) !important;
    border-radius: 50%;
}

/* Footer conversation */
.site-conversation {
    background: var(--brand-ivory);
    color: var(--brand-navy);
    padding: clamp(3.8rem, 7vw, 6.5rem) 0;
    position: relative;
}

.home-page .site-conversation {
    padding-block: clamp(3rem, 3.75vw, 4rem);
}

.site-conversation .eyebrow-light {
    color: var(--brand-red) !important;
}

.site-conversation-inner {
    align-items: center;
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    position: relative;
}

.site-conversation-inner > div {
    max-width: 850px;
}

.site-conversation h2 {
    color: var(--brand-navy);
    font-size: var(--type-title-section);
    margin-bottom: 1rem;
}

.site-conversation p:last-child {
    max-width: 680px;
}

.site-conversation-button {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
    flex: 0 0 auto;
    white-space: nowrap;
}

.site-conversation-button:hover {
    background: var(--brand-red-dark);
    border-color: var(--brand-red-dark);
    color: #fff;
}

.site-footer {
    background: var(--brand-navy);
    color: rgba(255, 255, 255, 0.58);
}

.site-footer-main {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    padding: clamp(5rem, 8vw, 8rem) 0 clamp(4rem, 6vw, 6rem);
    row-gap: 3rem;
}

.site-footer-main > div:first-child {
    text-align: center;
}

.footer-brand {
    align-items: center;
    display: inline-flex;
    gap: 1rem;
}

.footer-brand img {
    height: 110px;
    object-fit: contain;
    width: 110px;
}

.footer-brand span {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
}

.footer-brand small {
    color: var(--brand-sand);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    margin-top: 0.3rem;
    text-transform: uppercase;
}

.footer-intro {
    font-size: 0.68rem;
    line-height: 1.9;
    margin: 1.65rem auto;
    max-width: 270px;
}

.footer-socials {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
}

.footer-socials a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #fff;
    display: flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.footer-socials a:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
}

.site-footer h3 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li + li {
    margin-top: 0.65rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.7rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
    padding-left: 3px;
}

.footer-contact {
    font-size: 0.7rem;
    font-style: normal;
    margin-bottom: 0;
}

.footer-contact p {
    align-items: flex-start;
    display: flex;
    gap: 0.85rem;
    margin-bottom: 0.7rem;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    color: var(--brand-red);
    margin-top: 0.35rem;
    width: 14px;
}

.footer-membership-label {
    color: var(--brand-sand);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 1.4rem 0 0.8rem;
    text-transform: uppercase;
}

.footer-membership-group {
    align-items: stretch;
    display: inline-flex;
    flex-direction: column;
}

.footer-memberships {
    align-items: center;
    display: grid;
    column-gap: 14px;
    grid-template-columns: 40px 42px;
    justify-content: center;
    row-gap: 8px;
}

.footer-memberships > span {
    display: block;
    justify-self: start;
    width: 34px;
}

.footer-memberships img {
    filter: brightness(0) invert(1);
    height: 38px;
    object-fit: contain;
    opacity: 0.78;
    width: auto;
}

#iasBadge img {
    filter: none;
    height: auto;
    opacity: 1;
    width: 34px !important;
}

.footer-memberships img:last-child {
    grid-column: 1 / -1;
    height: 27px;
    justify-self: center;
    max-width: 90px;
}

.site-footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    font-size: 0.6rem;
    justify-content: space-between;
    letter-spacing: 0.04em;
    padding: 1.5rem 0;
}

.site-footer-bottom p {
    margin: 0;
}

.site-footer-bottom div {
    display: flex;
    gap: 1.3rem;
}

.site-footer-bottom a {
    color: rgba(255, 255, 255, 0.62);
}

.site-footer-bottom a:hover {
    color: #fff;
}

/* Cookie prompt */
.cookie-consent-banner {
    background: rgba(6, 20, 38, 0.98) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 -20px 70px rgba(0, 0, 0, 0.28) !important;
    padding: 1.4rem !important;
}

.cookie-consent-content {
    max-width: 1320px !important;
}

.cookie-consent-text h5 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.4rem;
}

.cookie-consent-text p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.68rem !important;
    margin: 0 !important;
}

.cookie-consent-btn {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    min-height: 44px;
    text-transform: uppercase;
}

.cookie-consent-btn-accept {
    background: var(--brand-red) !important;
    color: #fff !important;
}

/* Utility colour overrides */
.text-primary {
    color: var(--brand-red) !important;
}

.bg-primary {
    background-color: var(--brand-navy) !important;
}

.bg-dark {
    background-color: var(--brand-navy) !important;
}

.bg-light {
    background-color: var(--brand-ivory) !important;
}

/* Responsive navigation and layouts */
@media (max-width: 1399.98px) {
    .site-navbar .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link {
        padding-inline: 0.62rem;
    }
}

@media (max-width: 1199.98px) {
    .site-navbar,
    .site-navbar .site-shell {
        min-height: 80px;
    }

    .site-brand img {
        height: 60px;
        width: 65px;
    }

    .site-navbar .navbar-collapse {
        background: var(--brand-paper);
        border-top: 1px solid var(--brand-line);
        left: 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 1rem clamp(1.25rem, 4vw, 3rem) 1.6rem;
        position: absolute;
        right: 0;
        top: 100%;
    }

    .site-navbar .navbar-nav {
        border: 0;
    }

    .site-navbar .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link {
        border-bottom: 1px solid var(--brand-line);
        font-size: 0.72rem;
        padding: 0.95rem 0;
    }

    .site-navbar .navbar-nav .nav-link::before {
        display: none;
    }

    .site-navbar .dropdown-menu,
    .site-navbar .nav-item .dropdown-menu {
        border: 0;
        box-shadow: none;
        display: none;
        opacity: 1;
        padding: 0.35rem 0 0.7rem 0.75rem;
        position: static;
        transform: none !important;
        visibility: visible;
        width: 100%;
    }

    .site-navbar .dropdown-menu.show {
        display: block;
    }

    .site-nav-actions {
        align-items: stretch !important;
        flex-direction: column;
        margin: 1rem 0 0;
    }

    .site-language > .btn {
        border: 1px solid var(--brand-line);
        justify-content: space-between;
        padding-inline: 1rem;
        width: 100%;
    }

    .site-language .dropdown-menu {
        border: 1px solid var(--brand-line);
        padding: 0.4rem;
    }

    .site-contact-button {
        width: 100%;
    }

    .home-hero {
        min-height: auto;
    }

    .home-hero-visual {
        min-height: 650px;
    }

    .home-hero-frame {
        height: auto;
        width: min(92%, 460px);
    }

    .home-distinction-grid {
        gap: 4rem;
        grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
    }

    .distinction-image-wrap {
        height: 620px;
    }

    .people-col {
        flex-basis: calc(33.333% - 1.5rem);
    }
}

@media (max-width: 991.98px) {
    .home-hero-copy {
        padding-right: 0;
    }

    .home-hero h1 {
        max-width: 760px;
    }

    .home-hero-visual {
        margin-top: 1rem;
        min-height: 720px;
    }

    .home-hero-frame {
        height: auto;
        margin-left: auto;
        margin-right: auto;
        width: min(70%, 500px);
    }

    .home-hero-detail {
        left: 3%;
    }

    .home-hero-note {
        right: 4%;
    }

    .institution-grid {
        gap: 1.5rem 0.75rem;
        grid-template-columns: repeat(3, 1fr);
    }

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

    .pathway-card {
        min-height: 215px;
    }

    .home-distinction-grid {
        grid-template-columns: 1fr;
    }

    .distinction-image-wrap {
        height: min(760px, 90vw);
        width: min(78%, 560px);
    }

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

    .review-card {
        min-height: 300px;
    }

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

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

    .press-editorial-grid {
        grid-template-columns: 1fr;
    }

    .press-editorial-card {
        grid-template-columns: 0.9fr 1.1fr;
        grid-template-rows: 1fr;
        min-height: 330px;
    }

    .event-editorial-card {
        height: 370px;
    }

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

    .site-footer-main > div:first-child {
        margin-bottom: 1rem;
    }

    .bio-text-section {
        border-left: 0;
        padding-left: 0;
    }

    .bio-image-section {
        max-width: 380px;
    }

    body:has(.page-header[data-page="about-us"]) .bio-row {
        align-items: stretch;
        gap: 2.5rem;
    }

    body:has(.page-header[data-page="about-us"]) .bio-image-section {
        align-self: center;
        width: min(100%, 380px);
    }
}

@media (max-width: 767.98px) {
    :root {
        --type-title-section: 2.35rem;
    }

    body {
        font-size: 14px;
    }

    .section-space {
        padding: 5rem 0;
    }

    .section-intro {
        border-left: 0;
        padding-left: 0;
    }

    .site-navbar,
    .site-navbar .site-shell {
        min-height: 74px;
    }

    .site-brand {
        padding-block: 0.35rem;
    }

    .site-brand img {
        height: 54px;
        width: 58px;
    }

    .site-nav-toggle {
        height: 44px;
        width: 46px;
    }

    .page-header,
    .page-header .container {
        min-height: 335px;
    }

    .page-header-content {
        padding: 4rem 0;
    }

    .home-hero {
        padding: 2rem 0 4.5rem;
    }

    .home-hero h1 {
        font-size: var(--type-title-primary);
        line-height: 0.92;
    }

    .home-hero-proofs {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-hero-visual {
        min-height: 610px;
    }

    .home-hero-frame {
        height: auto;
        margin-left: auto;
        width: min(84%, 430px);
    }

    .home-hero-detail {
        height: 165px;
        width: 175px;
    }

    .home-hero-note {
        bottom: 25px;
        max-width: 270px;
        right: -4px;
    }

    .home-institutions {
        overflow: hidden;
    }

    .institution-grid {
        display: flex;
        margin-inline: -0.75rem;
        -ms-overflow-style: none;
        overflow-x: auto;
        padding: 0 0.75rem 0.5rem;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }

    .institution-grid::-webkit-scrollbar {
        display: none;
    }

    .institution-mark {
        flex: 0 0 130px;
        scroll-snap-align: start;
    }

    .pathway-card {
        grid-template-columns: auto 1fr;
        min-height: 0;
        padding: 2rem 1.4rem;
    }

    .pathway-arrow {
        grid-column: 2;
    }

    .distinction-image-wrap {
        height: 125vw;
        margin-left: 1.3rem;
        width: calc(100% - 1.3rem);
    }

    .distinction-stats {
        gap: 1rem;
    }

    .press-editorial-card {
        display: block;
        min-height: 0;
    }

    .press-editorial-image {
        height: 280px;
    }

    .event-editorial-grid {
        grid-template-columns: 1fr;
    }

    .event-editorial-card {
        height: 340px;
    }

    .people-col {
        flex-basis: calc(50% - 1.5rem);
    }

    .site-footer-main {
        --bs-gutter-x: 1.25rem;
        padding: 2.75rem 0 2rem;
        row-gap: 1.5rem;
    }

    .site-footer-main > div:first-child {
        margin-bottom: 0;
    }

    .footer-brand img {
        height: 70px;
        width: 70px;
    }

    .footer-intro {
        font-size: 0.73rem;
        line-height: 1.6;
        margin: 0.75rem auto 0.9rem;
        max-width: 320px;
    }

    .footer-socials a {
        height: 34px;
        width: 34px;
    }

    .site-footer h3 {
        font-size: 0.7rem;
        margin-bottom: 0.9rem;
    }

    .site-footer-main > div:nth-child(2),
    .site-footer-main > div:nth-child(3),
    .site-footer-main > div:last-child {
        text-align: center;
    }

    .footer-links li + li {
        margin-top: 0.35rem;
    }

    .footer-links a,
    .footer-contact,
    .footer-contact a {
        font-size: 0.76rem;
        line-height: 1.55;
    }

    .footer-contact p {
        gap: 0.7rem;
        margin-bottom: 0.4rem;
    }

    .footer-contact {
        align-items: flex-start;
        display: inline-flex;
        flex-direction: column;
        text-align: left;
    }

    .site-footer-main > div:last-child {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding-top: 1.5rem;
    }

    .footer-membership-label {
        font-size: 0.61rem;
        margin: 0.8rem 0 0.55rem;
    }

    .footer-membership-group {
        align-items: center;
        width: 100%;
    }

    .footer-memberships {
        display: flex;
        gap: 0.9rem;
        justify-content: center;
        min-height: 34px;
    }

    .footer-memberships > span {
        flex: 0 0 34px;
    }

    .footer-memberships img {
        height: 30px;
    }

    .footer-memberships img:last-child {
        grid-column: auto;
        height: 23px;
        justify-self: auto;
        max-width: 86px;
    }

    .site-footer-bottom {
        align-items: center;
        flex-direction: column;
        font-size: 0.63rem;
        gap: 0.45rem;
        padding: 1rem 0 1.2rem;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .home-hero h1 {
        font-size: clamp(1.7rem, 8.5vw, 2.8rem);
    }

    .home-hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.25rem;
    }

    .home-hero-visual {
        min-height: 520px;
    }

    .home-hero-frame {
        height: auto;
        width: min(91%, 360px);
    }

    .home-hero-detail {
        display: none;
    }

    .home-hero-note {
        bottom: -5px;
    }

    .distinction-stats strong {
        font-size: 2rem;
    }

    .distinction-stats p {
        font-size: 0.54rem;
        line-height: 1.45;
    }

    .distinction-image-caption {
        width: 90%;
    }

    .people-col {
        flex-basis: calc(100% - 1.5rem);
    }

    body:has(.page-header[data-page="about-us"]) .bio-container {
        padding-block: 3.75rem;
    }

    body:has(.page-header[data-page="about-us"]) .bio-img {
        height: min(430px, 112vw);
    }

    body:has(.page-header[data-page="about-us"]) .bio-text {
        text-align: left;
    }

    .cookie-consent-buttons {
        flex-direction: column;
    }

    .cookie-consent-btn {
        width: 100%;
    }
}

@media (hover: none) {
    .people-hover-text {
        display: block;
        opacity: 0;
        pointer-events: none;
    }

    .people-overflow {
        height: 380px;
    }

    .people-img {
        height: 100%;
    }

    .people-team-item {
        cursor: pointer;
    }

    .people-team-item.is-bio-open .people-hover-text {
        opacity: 1;
        pointer-events: auto;
    }

    .people-team-item:hover:not(.is-bio-open) .people-hover-text {
        opacity: 0;
        pointer-events: none;
    }
}

@media (max-width: 1199.98px) {
    .interior-overview-grid {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .interior-overview-index {
        grid-row: 1 / 3;
    }

    .interior-overview-aside {
        border-left: 0;
        border-top: 1px solid var(--brand-line);
        grid-column: 2;
        padding-left: 0;
        padding-top: 2.5rem;
    }

    .interior-overview-principles {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .interior-overview-principles article {
        border-right: 1px solid var(--brand-line);
        display: block;
        padding: 1.25rem;
    }

    .interior-overview-principles article:first-child {
        padding-left: 0;
    }

    .interior-overview-principles article:last-child {
        border-right: 0;
    }

    .interior-overview-principles article > span {
        display: block;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 991.98px) {
    .editorial-section .row:has(> .col-lg-6[style*="background-image"]) {
        gap: 0;
    }

    .editorial-section .row > .col-lg-6[style*="background-image"] {
        min-height: 520px !important;
    }

    .editorial-section .row > .col-lg-6:not([style*="background-image"]):has(+ .col-lg-6[style*="background-image"]),
    .editorial-section .row > .col-lg-6[style*="background-image"] + .col-lg-6 {
        background: var(--brand-paper);
        border-top: 3px solid var(--brand-red);
        padding: 2.5rem;
    }

    .editorial-section--tone .row > .col-lg-6:not([style*="background-image"]):has(+ .col-lg-6[style*="background-image"]),
    .editorial-section--tone .row > .col-lg-6[style*="background-image"] + .col-lg-6 {
        background: #fff;
    }

}

@media (max-width: 767.98px) {
    .interior-overview {
        padding: 5rem 0;
    }

    .interior-overview-mark {
        font-size: 24rem;
        right: -4rem;
    }

    .interior-overview-grid {
        display: block;
    }

    .interior-overview-index {
        display: none;
    }

    .interior-overview-main h2 {
        font-size: 3.25rem;
    }

    .interior-overview-aside {
        margin-top: 2.5rem;
        padding-top: 2rem;
    }

    .interior-overview-principles {
        display: block;
    }

    .interior-overview-principles article,
    .interior-overview-principles article:first-child {
        border-right: 0;
        display: grid;
        padding: 1rem 0;
    }

    .interior-overview-principles article > span {
        margin-bottom: 0;
    }

    .editorial-section::before {
        font-size: 5rem;
        left: auto;
        right: 1rem;
        top: 0.8rem;
    }

    .editorial-section:has(.row > .col-lg-12)::before {
        font-size: 3.75rem;
        top: 0.25rem;
    }

    .editorial-section .row > .col-lg-12 {
        padding: 2rem 1.35rem;
    }

    .editorial-section .list-unstyled {
        grid-template-columns: 1fr;
    }

    .editorial-section .row > .col-lg-6[style*="background-image"] {
        min-height: 390px !important;
    }

    .editorial-section .row > .col-lg-6:not([style*="background-image"]):has(+ .col-lg-6[style*="background-image"]),
    .editorial-section .row > .col-lg-6[style*="background-image"] + .col-lg-6 {
        padding: 2rem 1.35rem;
    }

    body:has(.page-header[data-page="people"]) .people-founder-section .people-col {
        flex-basis: calc(100% - 1.5rem);
    }

    body:has(.interior-overview[data-page="contact-us"]) .editorial-section .row.g-4 > .col-lg-4,
    body:has(.interior-overview[data-page="contact-us"]) .editorial-section .row.g-4 > .col-lg-8 {
        padding: 2rem 1.35rem;
    }
}

@media (max-width: 991.98px) {
    .interior-intro-layout,
    .interior-overview--profile .interior-intro-layout,
    .interior-overview--people .interior-intro-layout,
    .interior-overview--pathway .interior-intro-layout,
    .interior-overview--craft .interior-intro-layout {
        grid-template-columns: 1fr;
    }

    .interior-overview--pathway .interior-intro-heading,
    .interior-overview--craft .interior-intro-heading {
        grid-row: auto;
    }

    .interior-intro-copy,
    .interior-overview--pathway .interior-intro-copy {
        border-left: 0;
        border-top: 1px solid var(--brand-line);
        padding: 2rem 0 0;
    }

    .interior-overview--strategy .interior-intro-copy,
    .interior-overview--mentoring .interior-intro-copy,
    .interior-overview--arrival .interior-intro-copy {
        border-top-color: rgba(255, 255, 255, 0.22);
    }

    .interior-overview--people .interior-intro-points,
    .interior-overview--pathway .interior-intro-points,
    .interior-overview--craft .interior-intro-points {
        grid-column: 1;
    }

    .interior-overview--pathway .interior-intro-points {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .interior-overview--craft .interior-intro-layout {
        gap: 2.5rem;
    }

    .interior-overview--craft .interior-intro-copy {
        border-top: 0;
        padding-top: 0;
    }

    .contact-quick-panel .container {
        display: block;
    }

    .contact-quick-heading {
        margin-bottom: 2rem;
        max-width: 600px;
    }

    .contact-process-layout {
        gap: 3rem;
        grid-template-columns: 1fr;
    }

    .contact-process-heading {
        max-width: 720px;
    }

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

    .contact-location-copy {
        margin: -4rem 2rem 0;
    }
}

@media (max-width: 767.98px) {
    .interior-overview {
        padding: 3.75rem 0;
    }

    .interior-intro-mark {
        font-size: 18rem;
        right: -3rem;
        top: 1rem;
    }

    .interior-intro-layout {
        gap: 2.2rem;
    }

    .interior-intro-edition {
        margin-bottom: 1.2rem;
    }

    .interior-intro-heading h2,
    .interior-overview--journal .interior-intro-heading h2 {
        font-size: var(--type-title-section);
    }

    .interior-intro-copy > p {
        font-size: 1.15rem;
    }

    .interior-intro-points,
    .interior-overview--pathway .interior-intro-points {
        display: grid;
        gap: 0;
        grid-template-columns: 1fr;
    }

    .interior-intro-points article,
    .interior-overview--profile .interior-intro-points article,
    .interior-overview--strategy .interior-intro-points article {
        padding: 1rem 0;
    }

    .interior-overview--profile .interior-intro-points article,
    .interior-overview--strategy .interior-intro-points article {
        padding-inline: 1rem;
    }

    .interior-overview--people {
        background: var(--brand-paper);
    }

    .interior-overview--people .interior-intro-points {
        display: grid;
    }

    .interior-overview--journal .interior-intro-heading {
        border-bottom: 1px solid var(--brand-line);
        border-right: 0;
        padding: 0 0 2rem;
    }

    .interior-overview--academic .interior-intro-points {
        margin-top: 2.75rem;
    }

    .interior-overview--academic .interior-intro-points article {
        border-left: 0;
        border-top: 1px solid var(--brand-line);
        padding: 1rem 0;
    }

    .interior-overview--mentoring .interior-intro-layout,
    .interior-overview--craft .interior-intro-layout {
        margin-inline: -0.25rem;
        padding: 1.65rem;
    }

    .interior-overview--arrival .interior-intro-heading {
        padding: 1.6rem;
    }

    .interior-overview--arrival .interior-intro-heading h2 {
        font-size: var(--type-title-section);
    }

    .contact-quick-panel.interior-overview {
        padding: 2.5rem 0;
    }

    .contact-quick-heading h2 {
        font-size: var(--type-title-section);
    }

    .contact-quick-options {
        grid-template-columns: 1fr;
    }

    .contact-quick-option {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        min-height: 92px;
        padding-inline: 0;
    }

    .contact-process {
        padding: 4rem 0;
    }

    .contact-process-steps {
        grid-template-columns: 1fr;
    }

    .contact-process-steps article {
        min-height: 0;
    }

    .contact-location {
        padding: 3.5rem 0;
    }

    .contact-location-image {
        min-height: 390px;
    }

    .contact-location-copy {
        margin: -2rem 1rem 0;
        padding: 2rem 1.4rem;
    }

    .contact-location-copy h2 {
        font-size: var(--type-title-section);
    }

    .contact-location-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    h2,
    .h2 {
        font-size: var(--type-title-section);
    }

    h3,
    .h3 {
        font-size: 1.65rem;
    }

    .page-header h1 {
        font-size: var(--type-title-primary);
    }

    body:has(.contact-quick-panel) .page-header h1 {
        font-size: var(--type-title-primary);
    }

    .editorial-section h3 {
        font-size: var(--type-title-section);
    }

    .pathway-card h3 {
        font-size: 1.7rem;
    }

    .press-editorial-copy h3 {
        font-size: 1.35rem;
    }

    .event-editorial-card h3 {
        font-size: 1.25rem;
    }

    .people-mb-5,
    .bio-main-title {
        font-size: var(--type-title-section);
    }

    .site-conversation h2 {
        font-size: var(--type-title-section);
    }
}

/* Admissions and service pages: one ivory tone, alternated with white */
body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) {
    background: #fff;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .interior-overview {
    background: var(--brand-ivory);
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section {
    background: #fff;
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section--tone {
    background: var(--brand-ivory);
}

body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section .row > .col-lg-12,
body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section--tone .row > .col-lg-12,
body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section .row > .col-lg-6:not([style*="background-image"]):has(+ .col-lg-6[style*="background-image"]),
body:has(.interior-overview[data-variant]:not(.interior-overview--journal):not(.contact-quick-panel)) .editorial-section .row > .col-lg-6[style*="background-image"] + .col-lg-6 {
    background: #fff;
}

/* Summer school brochure library */
.brochures-page {
    background: #fff;
}

.brochure-library {
    padding: 4.5rem 0 6rem;
}

@media (min-width: 1200px) {
    .brochure-library > .container {
        max-width: 1500px;
    }
}

.brochure-library-heading {
    margin-bottom: 4rem;
}

@media (min-width: 1200px) {
    .brochure-library-heading {
        margin-inline: auto;
        max-width: 1140px;
        padding-inline: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    }
}

@media (min-width: 1400px) {
    .brochure-library-heading {
        max-width: 1320px;
    }
}

.brochure-library-heading-row {
    align-items: end;
    display: grid;
    gap: clamp(1.5rem, 2vw, 2rem);
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1fr);
}

.brochure-library-heading h2 {
    font-size: var(--type-title-section);
    line-height: 1.06;
    margin: 0;
    max-width: 760px;
}

.brochure-library-heading-row > p {
    align-items: flex-end;
    align-self: stretch;
    border-left: 1px solid var(--brand-red);
    color: #475367;
    display: flex;
    font-family: var(--font-display);
    font-size: 1.1rem;
    line-height: 1.55;
    margin: 0;
    max-width: 760px;
    padding-left: 2rem;
}

.brochure-library-grid {
    align-items: stretch;
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brochure-edition-card {
    background: #fff;
    border: 1px solid var(--brand-line);
    box-shadow: 0 14px 42px rgba(7, 26, 51, 0.045);
    display: flex;
    flex-direction: column;
    min-width: 0;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.brochure-edition-card:hover {
    border-color: rgba(207, 41, 71, 0.35);
    box-shadow: 0 24px 58px rgba(7, 26, 51, 0.1);
    transform: translateY(-5px);
}

.brochure-cover-link {
    background: var(--brand-ivory);
    border-bottom: 1px solid var(--brand-line);
    color: var(--brand-navy);
    display: block;
    padding: 1.35rem 1.35rem 0;
}

.brochure-cover-link img {
    aspect-ratio: 3 / 4;
    box-shadow: 0 14px 34px rgba(7, 26, 51, 0.16);
    display: block;
    height: auto;
    object-fit: contain;
    transition: box-shadow 220ms ease, transform 220ms ease;
    width: 100%;
}

.brochure-edition-card:hover .brochure-cover-link img {
    box-shadow: 0 20px 44px rgba(7, 26, 51, 0.23);
    transform: translateY(-4px);
}

.brochure-cover-prompt {
    align-items: center;
    display: flex;
    font-size: 0.63rem;
    font-weight: 700;
    justify-content: space-between;
    letter-spacing: 0.09em;
    min-height: 58px;
    text-transform: uppercase;
}

.brochure-cover-prompt > span {
    align-items: center;
    display: flex;
    gap: 0.75rem;
}

.brochure-cover-prompt small {
    color: var(--brand-red);
    font-size: inherit;
    font-weight: 700;
}

.brochure-cover-prompt i {
    color: var(--brand-red);
    font-size: 0.68rem;
    transform: rotate(45deg);
    transition: transform 220ms ease;
}

.brochure-cover-link:hover {
    color: var(--brand-red);
}

.brochure-cover-link:hover .brochure-cover-prompt i {
    transform: rotate(45deg) translateY(-4px);
}

.brochure-edition-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 2rem 2rem 2.25rem;
}

.brochure-edition-meta {
    align-items: center;
    border-bottom: 1px solid var(--brand-line);
    color: var(--brand-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.58rem;
    font-weight: 700;
    gap: 0.55rem 1rem;
    letter-spacing: 0.09em;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    text-transform: uppercase;
}

.brochure-edition-meta span:first-child {
    color: var(--brand-red);
    margin-right: auto;
}

.brochure-edition-meta span + span {
    position: relative;
}

.brochure-edition-meta span + span::before {
    color: rgba(71, 83, 103, 0.42);
    content: "·";
    left: -0.65rem;
    position: absolute;
}

.brochure-edition-card h3 {
    font-size: 2rem;
    line-height: 1.06;
    margin-bottom: 1.25rem;
}

.brochure-edition-description {
    color: var(--brand-muted);
    font-size: 0.84rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.brochure-edition-fit {
    border-left: 1px solid var(--brand-red);
    margin-bottom: 2rem;
    padding-left: 1.25rem;
}

.brochure-edition-fit > span {
    color: var(--brand-red);
    display: block;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
}

.brochure-edition-fit p {
    color: #475367;
    font-size: 0.76rem;
    line-height: 1.65;
    margin: 0;
}

.brochure-edition-actions {
    align-items: center;
    border-top: 1px solid var(--brand-line);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.35rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.brochure-edition-actions .btn {
    flex: 1 1 100%;
}

.brochure-edition-actions .btn .fa-arrow-up {
    transform: rotate(45deg);
}

.brochure-edition-actions .btn:hover .fa-arrow-up {
    transform: rotate(45deg) translateY(-3px);
}

.brochure-guidance {
    background: var(--brand-ivory);
    border-top: 1px solid var(--brand-line);
    color: #475367;
    padding: 7rem 0;
}

.brochure-guidance > .container {
    align-items: start;
    display: grid;
    gap: 6rem;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
}

.brochure-guidance h2 {
    color: var(--brand-navy);
    font-size: var(--type-title-section);
    line-height: 1.06;
    margin-bottom: 1.5rem;
    max-width: 760px;
}

.brochure-guidance-copy > p:not(.eyebrow) {
    color: #475367;
    font-size: 0.94rem;
    line-height: 1.85;
    max-width: 680px;
}

.brochure-guidance-copy .btn {
    margin-top: 1.75rem;
}

.brochure-guidance .eyebrow-light {
    color: var(--brand-red) !important;
}

.brochure-guidance .btn-brand-light {
    background: var(--brand-navy);
    border-color: var(--brand-navy);
    color: #fff;
}

.brochure-guidance .btn-brand-light:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
}

.brochure-guidance-criteria {
    border-top: 1px solid var(--brand-line);
}

.brochure-guidance-criteria article {
    border-bottom: 1px solid var(--brand-line);
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 1.5rem 0;
}

.brochure-guidance-criteria article > span {
    color: var(--brand-red);
    font-size: 0.62rem;
    font-weight: 700;
    padding-top: 0.25rem;
}

.brochure-guidance-criteria h3 {
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: 0.84rem;
    letter-spacing: 0;
    margin-bottom: 0.4rem;
}

.brochure-guidance-criteria p {
    color: var(--brand-muted);
    font-size: 0.76rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1199.98px) {
    .brochure-library-heading-row {
        gap: 1.5rem;
    }

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

    .brochure-library-grid > .brochure-edition-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - 0.875rem);
    }

    .brochure-guidance > .container {
        gap: 4rem;
    }
}

@media (max-width: 991.98px) {
    .brochure-library-heading-row,
    .brochure-guidance > .container {
        gap: 2.5rem;
        grid-template-columns: 1fr;
    }

    .brochure-library-heading-row > p {
        border-left: 0;
        max-width: 720px;
        padding-left: 0;
    }

    .brochure-library-grid {
        grid-template-columns: 1fr;
    }

    .brochure-library-grid > .brochure-edition-card:last-child:nth-child(odd) {
        grid-column: auto;
        width: 100%;
    }

    .brochure-edition-card {
        margin-inline: auto;
        max-width: 620px;
        width: 100%;
    }

    .brochure-guidance {
        padding: 5.5rem 0;
    }
}

@media (max-width: 767.98px) {
    .brochure-library {
        padding: 3.5rem 0 4.5rem;
    }

    .brochure-library-heading {
        margin-bottom: 2.75rem;
    }

    .brochure-library-heading h2,
    .brochure-guidance h2 {
        font-size: var(--type-title-section);
    }

    .brochure-library-heading-row > p {
        font-size: 1rem;
    }

    .brochure-cover-link {
        padding: 1rem 1rem 0;
    }

    .brochure-cover-prompt {
        min-height: 54px;
    }

    .brochure-edition-copy {
        padding: 1.65rem;
    }

    .brochure-edition-card h3 {
        font-size: 1.75rem;
    }

    .brochure-edition-meta {
        margin-bottom: 1.5rem;
    }

    .brochure-guidance {
        padding: 4.5rem 0;
    }
}

/* Our Services directory */
.our-services-page {
    background: #fff;
}

.services-directory-intro {
    background: #fff;
    border-bottom: 1px solid var(--brand-line);
    padding: 4rem 0;
}

.services-directory-intro-grid {
    align-items: center;
    display: grid;
    gap: 4rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-directory-intro-grid h2 {
    font-size: var(--type-title-section);
    line-height: 1.08;
    margin: 0;
    max-width: 760px;
}

.services-directory-intro-grid > p {
    border-left: 1px solid var(--brand-red);
    color: #475367;
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.55;
    margin: 0;
    padding-left: 2rem;
}

.services-directory-index {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 4rem;
}

.services-directory-index a {
    align-items: center;
    border: 1px solid var(--brand-line);
    border-right: 0;
    display: grid;
    gap: 0.8rem 1rem;
    grid-template-columns: auto 1fr auto;
    min-height: 118px;
    padding: 1.4rem;
}

.services-directory-index a:last-child {
    border-right: 1px solid var(--brand-line);
}

.services-directory-index a:hover {
    background: var(--brand-navy);
    color: #fff;
    transform: translateY(-3px);
}

.services-directory-index span {
    color: var(--brand-red);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.services-directory-index strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.12;
}

.services-directory-index i {
    color: var(--brand-red);
    font-size: 0.7rem;
}

.services-cluster {
    background: #fff;
    border-bottom: 1px solid var(--brand-line);
    padding: 4.25rem 0;
    scroll-margin-top: 105px;
}

.services-directory-intro + .services-cluster {
    padding-top: 3.25rem;
}

.services-cluster--tone {
    background: #fff;
}

.services-cluster-header {
    align-items: start;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 90px minmax(300px, 0.85fr) minmax(360px, 1fr);
    margin-bottom: 2.5rem;
}

.services-cluster-number {
    color: rgba(207, 41, 71, 0.22);
    font-family: var(--font-display);
    font-size: 4.75rem;
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 0.82;
}

.services-cluster-header .eyebrow {
    margin-bottom: 1rem;
}

.services-cluster-header h2 {
    font-size: var(--type-title-section);
    line-height: 1.04;
    margin: 0;
    max-width: 580px;
}

.services-cluster-header > p {
    border-left: 1px solid var(--brand-red);
    color: #475367;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    padding-left: 2rem;
}

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

@media (min-width: 1200px) {
    .services-card-grid--four {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .services-card-grid--admissions > .services-directory-card {
        grid-column: span 2;
    }

    .services-card-grid--admissions > .services-directory-card:nth-child(5) {
        grid-column: 2 / span 2;
    }
}

.services-directory-card {
    background: #fff;
    border: 1px solid var(--brand-line);
    box-shadow: 0 10px 32px rgba(7, 26, 51, 0.035);
    color: var(--brand-navy);
    display: flex;
    flex-direction: column;
    min-height: 270px;
    overflow: hidden;
    padding: 2rem;
    position: relative;
}

.services-directory-card::before {
    background: var(--brand-red);
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: 0;
    transform: scaleX(0.18);
    transform-origin: left;
    transition: transform 220ms ease;
    width: 100%;
}

.services-directory-card:hover {
    border-color: rgba(207, 41, 71, 0.45);
    box-shadow: 0 20px 48px rgba(7, 26, 51, 0.09);
    color: var(--brand-navy);
    transform: translateY(-5px);
}

.services-directory-card:hover::before {
    transform: scaleX(1);
}

.services-card-number {
    color: var(--brand-red);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin-bottom: 2.25rem;
}

.services-directory-card h3 {
    font-size: 1.75rem;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.services-directory-card p {
    color: var(--brand-muted);
    font-size: 0.82rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.services-card-link {
    align-items: center;
    color: var(--brand-navy);
    display: flex;
    font-size: 0.62rem;
    font-weight: 700;
    gap: 0.65rem;
    letter-spacing: 0.08em;
    margin-top: auto;
    text-transform: uppercase;
}

.services-directory-card:hover .services-card-link {
    color: var(--brand-red);
}

/* Premium applications: selective university directory */
.premium-university-directory {
    margin-top: 2.25rem;
}

.premium-university-directory > p {
    margin-bottom: 1.25rem;
}

.editorial-section .premium-university-list {
    border-top: 1px solid var(--brand-line);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.editorial-section .premium-university-list li {
    align-items: center;
    background: transparent;
    border-bottom: 1px solid var(--brand-line);
    border-left: 0;
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 32px minmax(0, 1fr);
    margin: 0 !important;
    min-height: 92px;
    padding: 1.15rem 2rem 1.15rem 0;
    position: relative;
}

.editorial-section .premium-university-list li:nth-child(odd) {
    border-right: 1px solid var(--brand-line);
}

.editorial-section .premium-university-list li:nth-child(even) {
    padding-left: 2rem;
}

.editorial-section .premium-university-list li::before {
    background: var(--brand-red);
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: -1px;
    width: 42px;
}

.premium-university-number {
    color: var(--brand-red);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.premium-university-list strong {
    color: var(--brand-navy);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.25;
}

@media (max-width: 767.98px) {
    .premium-university-directory {
        margin-top: 2rem;
    }

    .editorial-section .premium-university-list {
        grid-template-columns: 1fr;
    }

    .editorial-section .premium-university-list li,
    .editorial-section .premium-university-list li:nth-child(odd),
    .editorial-section .premium-university-list li:nth-child(even) {
        border-right: 0;
        min-height: 82px;
        padding: 1rem 0;
    }

    .premium-university-list strong {
        font-size: 1.1rem;
    }
}

.services-scope {
    background: var(--brand-ivory);
    color: var(--brand-navy);
    padding: 3rem 0;
}

.services-scope > .container {
    align-items: stretch;
    display: grid;
    gap: 4rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-scope h2 {
    color: var(--brand-navy);
    font-size: var(--type-title-section);
    line-height: 1.06;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.services-scope-copy > p:not(.eyebrow) {
    color: #475367;
    font-size: 0.95rem;
    line-height: 1.85;
    max-width: 690px;
}

.services-scope .eyebrow-light {
    color: var(--brand-red) !important;
}

.services-scope-cta {
    align-items: center;
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
    display: inline-flex;
    gap: 0.8rem;
    margin-top: 2rem;
}

.services-scope-cta:hover {
    background: var(--brand-red-dark);
    border-color: var(--brand-red-dark);
    color: #fff;
}

.services-scope-steps {
    border-top: 1px solid var(--brand-line);
    display: grid;
    grid-template-rows: repeat(3, minmax(0, 1fr));
}

.services-scope-steps article {
    align-items: center;
    border-bottom: 1px solid var(--brand-line);
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 42px 1fr;
    padding: 1.4rem 0;
}

.services-scope-steps article > span {
    color: var(--brand-red);
    font-size: 0.62rem;
    font-weight: 700;
    padding-top: 0.25rem;
}

.services-scope-steps h3 {
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: 0.84rem;
    letter-spacing: 0;
    margin-bottom: 0.35rem;
}

.services-scope-steps p {
    color: var(--brand-muted);
    font-size: 0.76rem;
    line-height: 1.7;
}

@media (max-width: 1199.98px) {
    .services-directory-intro-grid {
        gap: 2.5rem;
    }

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

    .services-directory-index a:nth-child(2) {
        border-right: 1px solid var(--brand-line);
    }

    .services-directory-index a:nth-child(n + 3) {
        border-top: 0;
    }

    .services-cluster-header {
        grid-template-columns: 72px minmax(260px, 0.8fr) minmax(320px, 1fr);
    }

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

@media (max-width: 991.98px) {
    .services-directory-intro-grid,
    .services-cluster-header,
    .services-scope > .container {
        gap: 2.25rem;
        grid-template-columns: 1fr;
    }

    .services-directory-intro-grid > p,
    .services-cluster-header > p {
        max-width: 720px;
    }

    .services-cluster-number {
        font-size: 3.75rem;
    }

    .services-scope {
        padding: 3rem 0;
    }
}

@media (max-width: 767.98px) {
    .services-directory-intro {
        padding: 3rem 0;
    }

    .services-directory-intro-grid h2,
    .services-cluster-header h2,
    .services-scope h2 {
        font-size: var(--type-title-section);
    }

    .services-directory-intro-grid > p,
    .services-cluster-header > p {
        font-size: 0.9rem;
        padding-left: 1.25rem;
    }

    .services-directory-index {
        grid-template-columns: 1fr;
        margin-top: 2.75rem;
    }

    .services-directory-index a {
        border-right: 1px solid var(--brand-line);
        border-top: 0;
        min-height: 92px;
        padding: 1.15rem;
    }

    .services-directory-index a:first-child {
        border-top: 1px solid var(--brand-line);
    }

    .services-cluster {
        padding: 3.75rem 0;
    }

    .services-directory-intro + .services-cluster {
        padding-top: 3rem;
    }

    .services-cluster-header {
        margin-bottom: 2.5rem;
    }

    .services-cluster-number {
        font-size: 3rem;
    }

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

    .services-directory-card {
        min-height: 0;
        padding: 1.65rem;
    }

    .services-card-number {
        margin-bottom: 1.5rem;
    }

    .services-directory-card h3 {
        font-size: 1.65rem;
    }

    .services-scope {
        padding: 3rem 0;
    }
}

/* Press archive: publication-led rather than sequential */
.press-archive {
    background: #fff;
    border-bottom: 1px solid var(--brand-line);
    padding: 5.5rem 0 7rem;
}

.press-container {
    max-width: 1320px;
}

.press-archive-header {
    align-items: end;
    display: grid;
    gap: 4rem;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    margin-bottom: 3.5rem;
}

.press-archive-header h2 {
    font-size: var(--type-title-section);
    line-height: 1.06;
    margin: 0;
    max-width: 700px;
}

.press-archive-header > p {
    border-left: 1px solid var(--brand-red);
    color: #475367;
    font-family: var(--font-display);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 620px;
    padding-left: 2rem;
}

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

body .press-card {
    background: var(--brand-paper);
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
}

body .press-card:hover {
    transform: translateY(-4px);
}

.press-image-link {
    aspect-ratio: 16 / 9;
    background: var(--brand-ivory);
    display: block;
    margin: 0;
    overflow: hidden;
}

.press-image {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
    width: 100%;
}

.press-card:hover .press-image {
    transform: scale(1.025);
}

.press-card-body {
    display: flex;
    flex-direction: column;
    padding: 2.25rem;
}

.press-card-source-row {
    align-items: center;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.press-source {
    align-items: center;
    display: flex;
    min-height: 38px;
}

.press-source img {
    height: auto;
    max-height: 34px;
    max-width: 145px;
    object-fit: contain;
    width: auto;
}

.press-category {
    color: var(--brand-red);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: right;
    text-transform: uppercase;
}

.press-date {
    color: var(--brand-muted);
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

body .press-title {
    font-size: 2rem;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.press-title a {
    color: var(--brand-navy);
}

.press-card:hover .press-title a {
    color: var(--brand-red);
}

.press-description {
    color: var(--brand-muted);
    font-size: 0.82rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.press-read-link {
    align-items: center;
    border-top: 1px solid var(--brand-line);
    color: var(--brand-navy);
    display: flex;
    font-size: 0.61rem;
    font-weight: 700;
    justify-content: space-between;
    letter-spacing: 0.09em;
    margin-top: auto;
    padding-top: 1.25rem;
    text-transform: uppercase;
}

.press-read-link i {
    color: var(--brand-red);
    font-size: 0.65rem;
}

.press-read-link:hover {
    color: var(--brand-red);
}

@media (max-width: 991.98px) {
    .press-archive {
        padding: 5rem 0 6rem;
    }

    .press-archive-header {
        gap: 2.25rem;
        grid-template-columns: 1fr;
    }

    .press-archive-header > p {
        max-width: 720px;
    }

    .press-archive-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .press-archive {
        padding: 4rem 0 4.5rem;
    }

    .press-archive-header {
        margin-bottom: 2.75rem;
    }

    .press-archive-header h2 {
        font-size: var(--type-title-section);
    }

    .press-archive-header > p {
        font-size: 1rem;
        padding-left: 1.25rem;
    }

    .press-card-body {
        padding: 1.6rem;
    }

    body .press-title {
        font-size: 1.7rem;
    }
}

/* Academic mentoring: editorial introduction and focused support directory */
.academic-mentoring-page {
    background: #fff;
}

.academic-transition {
    background: #fff;
    border-bottom: 1px solid var(--brand-line);
    padding: 6.5rem 0;
}

.academic-transition-grid {
    align-items: start;
    display: grid;
    gap: clamp(4rem, 7vw, 7rem);
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
}

.academic-section-heading h2,
.academic-fields-heading h3,
.academic-support-heading h2,
.academic-network-copy h2 {
    font-size: var(--type-title-section);
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.06;
    margin: 0;
}

.academic-transition-copy {
    border-top: 1px solid var(--brand-red);
    padding-top: 1.75rem;
}

.academic-transition-copy p {
    color: #4f5b6d;
    font-size: 0.94rem;
    line-height: 1.9;
    margin: 0;
}

.academic-transition-copy p + p {
    margin-top: 1.5rem;
}

.academic-fields {
    border-top: 1px solid var(--brand-line);
    display: grid;
    gap: clamp(3rem, 6vw, 6rem);
    grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
    margin-top: 5.5rem;
    padding-top: 5.5rem;
}

.academic-fields-heading h3 {
    margin: 0 0 1.25rem;
}

.academic-fields-heading > p:last-child {
    color: var(--brand-muted);
    font-size: 0.84rem;
    line-height: 1.8;
    margin: 0;
    max-width: 430px;
}

.academic-field-grid {
    display: grid;
    gap: 0 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.academic-field-grid li {
    align-items: center;
    border-top: 1px solid var(--brand-navy);
    display: grid;
    gap: 0.8rem;
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: 84px;
    padding: 1rem 0;
}

.academic-field-grid li span {
    color: var(--brand-red);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.academic-field-grid li strong {
    color: var(--brand-navy);
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.45;
}

.academic-personal-note {
    align-items: start;
    background: var(--brand-ivory);
    border-left: 3px solid var(--brand-red);
    display: grid;
    gap: 2rem;
    grid-template-columns: 150px minmax(0, 1fr);
    margin-top: 4.5rem;
    padding: 2.25rem 2.5rem;
}

.academic-personal-note > span {
    color: var(--brand-red);
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding-top: 0.35rem;
    text-transform: uppercase;
}

.academic-personal-note p {
    color: #475367;
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.58;
    margin: 0;
}

.academic-support {
    background: var(--brand-ivory);
    border-bottom: 1px solid var(--brand-line);
    padding: 7rem 0;
}

.academic-support-heading {
    align-items: end;
    display: grid;
    gap: clamp(3rem, 6vw, 6rem);
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    margin-bottom: 4rem;
}

.academic-support-heading > p {
    border-left: 1px solid var(--brand-red);
    color: #475367;
    font-family: var(--font-display);
    font-size: 1.12rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 2rem;
}

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

.academic-support-card {
    background: #fff;
    border: 1px solid var(--brand-line);
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 178px;
    overflow: hidden;
    padding: 2rem;
    position: relative;
}

.academic-support-card::before {
    background: var(--brand-red);
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: 0;
    width: 76px;
}

.academic-support-number {
    color: var(--brand-red);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding-top: 0.4rem;
}

.academic-support-card h3 {
    font-size: 1.55rem;
    line-height: 1.08;
    margin: 0 0 0.75rem;
}

.academic-support-card p {
    color: var(--brand-muted);
    font-size: 0.81rem;
    line-height: 1.75;
    margin: 0;
}

.academic-network {
    background: #fff;
    padding: 7rem 0;
}

.academic-network-panel {
    align-items: start;
    background: var(--brand-navy);
    color: rgba(255, 255, 255, 0.72);
    display: grid;
    gap: clamp(4rem, 7vw, 7rem);
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
    padding: clamp(3rem, 6vw, 5.5rem);
}

.academic-network-copy h2 {
    color: #fff;
    margin-bottom: 1.75rem;
}

.academic-network-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.86rem;
    line-height: 1.85;
    margin: 0;
    max-width: 720px;
}

.academic-network-copy > p:not(.eyebrow) + p {
    margin-top: 1.25rem;
}

.academic-network-copy .btn {
    margin-top: 2.25rem;
}

.academic-network-pillars {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.academic-network-pillars article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    gap: 1rem;
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 1.5rem 0;
}

.academic-network-pillars article > span {
    color: var(--brand-red);
    font-size: 0.58rem;
    font-weight: 700;
    padding-top: 0.25rem;
}

.academic-network-pillars h3 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 0.35rem;
}

.academic-network-pillars p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.73rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991.98px) {
    .academic-transition-grid,
    .academic-fields,
    .academic-support-heading,
    .academic-network-panel {
        gap: 2.75rem;
        grid-template-columns: 1fr;
    }

    .academic-fields {
        margin-top: 4.5rem;
        padding-top: 4.5rem;
    }

    .academic-fields-heading > p:last-child,
    .academic-support-heading > p {
        max-width: 720px;
    }

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

    .academic-network-pillars {
        max-width: 720px;
    }
}

@media (max-width: 767.98px) {
    .academic-transition,
    .academic-support,
    .academic-network {
        padding: 4.5rem 0;
    }

    .academic-field-grid,
    .academic-support-grid {
        grid-template-columns: 1fr;
    }

    .academic-fields {
        margin-top: 3.75rem;
        padding-top: 3.75rem;
    }

    .academic-field-grid li {
        min-height: 70px;
    }

    .academic-personal-note {
        gap: 1rem;
        grid-template-columns: 1fr;
        margin-top: 3.5rem;
        padding: 1.75rem;
    }

    .academic-support-heading {
        margin-bottom: 2.75rem;
    }

    .academic-support-heading > p {
        font-size: 1rem;
        padding-left: 1.25rem;
    }

    .academic-support-card {
        min-height: 0;
        padding: 1.6rem;
    }

    .academic-support-card h3 {
        font-size: 1.35rem;
    }

    .academic-network-panel {
        padding: 2rem 1.5rem;
    }
}

/* High-resolution desktops need a larger layout scale, not more empty canvas. */
@media (min-width: 2000px) {
    html {
        font-size: 18px;
    }

    body {
        font-size: 16px;
    }

    .container {
        max-width: min(72vw, 1640px);
    }

    .site-shell {
        max-width: min(82vw, 1920px);
    }

    .site-topbar {
        height: 40px;
    }

    .site-navbar,
    .site-navbar .site-shell {
        min-height: 96px;
    }

    .site-brand img {
        height: 72px;
        width: 77px;
    }

    .page-header,
    .page-header .container {
        min-height: 500px;
    }

    .page-header-content,
    .page-header h1 {
        max-width: 980px;
    }

    .home-hero {
        align-items: center;
        display: flex;
        min-height: min(calc(100vh - 140px), 1100px);
        min-height: min(calc(100svh - 140px), 1100px);
        padding: 3rem 0 4rem;
    }

    .home-hero > .container {
        width: 100%;
    }

    .home-hero-visual {
        min-height: min(790px, calc(100svh - 250px));
    }

    .home-hero-frame {
        width: min(92%, 560px, calc((100svh - 250px) * 0.7075));
    }

    .home-hero-note {
        max-width: 340px;
    }

    .editorial-section .row > .col-lg-12 {
        max-width: 1080px;
    }

    body:has(.page-header[data-page="language-course-consulting"]) .editorial-section:has(.col-lg-6[style*="background-image"]) .row {
        max-width: 1220px;
    }

    .people-container,
    .bio-container,
    .press-container {
        max-width: 1640px;
    }

    .brochure-library > .container {
        max-width: 1840px;
    }

    .brochure-library-heading,
    .cookie-consent-content {
        max-width: 1640px !important;
    }

    .distinction-image-wrap {
        height: 820px;
    }

    .press-editorial-card {
        grid-template-rows: 420px 1fr;
    }

    .event-editorial-card {
        height: 500px;
    }
}

@media (min-width: 3000px) {
    html {
        font-size: 22px;
    }

    body {
        font-size: 18px;
    }

    .container {
        max-width: 2200px;
    }

    .site-shell {
        max-width: 2480px;
    }

    .site-topbar {
        height: 44px;
    }

    .site-navbar,
    .site-navbar .site-shell {
        min-height: 108px;
    }

    .site-brand img {
        height: 82px;
        width: 88px;
    }

    .page-header,
    .page-header .container {
        min-height: 620px;
    }

    .page-header-content,
    .page-header h1 {
        max-width: 1180px;
    }

    .home-hero {
        min-height: min(calc(100vh - 160px), 1320px);
        min-height: min(calc(100svh - 160px), 1320px);
        padding: 4rem 0 5rem;
    }

    .home-hero-visual {
        min-height: min(1075px, calc(100svh - 300px));
    }

    .home-hero-frame {
        width: min(92%, 760px, calc((100svh - 300px) * 0.7075));
    }

    .home-hero-note {
        max-width: 390px;
        right: -20px;
    }

    .editorial-section .row > .col-lg-12 {
        max-width: 1320px;
    }

    body:has(.page-header[data-page="language-course-consulting"]) .editorial-section:has(.col-lg-6[style*="background-image"]) .row {
        max-width: 1480px;
    }

    .people-container,
    .bio-container,
    .press-container {
        max-width: 2200px;
    }

    .brochure-library > .container {
        max-width: 2400px;
    }

    .brochure-library-heading,
    .cookie-consent-content {
        max-width: 2200px !important;
    }

    .distinction-image-wrap {
        height: 960px;
    }

    .press-editorial-card {
        grid-template-rows: 520px 1fr;
    }

    .event-editorial-card {
        height: 600px;
    }
}

@media (min-width: 1600px) and (min-height: 900px) {
    .home-hero {
        min-height: auto;
    }
}

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