@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-latin.woff2') format('woff2');
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
}

:root {
    --primary-color: #314256;
    --primary-hover: #2B3A4C;
    --primary-accent-color: #5F758D;
    --primary-accent-hover: #54687D;
    --secondary-color: #819463;
    --secondary-hover: #738457;
    --tertiary-color: #AF6C57;
    --tertiary-hover: #9C604D;
    --junior-sage: #819463;
    --school-blue: #628A9A;
    --school-blue-hover: #577A89;
    --mustard: #B5973C;
    --mustard-hover: #A18736;
    --background-light: #fbfaf6;
    --text-dark: #1f2933;
    --text-muted: #5f6f80;
    --white: #ffffff;
    --paper: #f4f1ea;
    --line: rgba(32, 48, 64, .14);
    --shadow: 0 24px 70px rgba(31, 41, 51, .12);
    --shadow-strong: 0 32px 80px rgba(31, 41, 51, .18);
    --heading-font: "Ditto", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--text-dark);
    background: var(--background-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: none;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--mustard);
    outline-offset: 3px;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    z-index: 100;
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 14px;
}

.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(32, 48, 64, .11);
    box-shadow: 0 12px 30px rgba(31, 41, 51, .07);
}

.nav-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand img { width: 178px; height: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(32, 48, 64, .76);
    font-size: 13px;
    font-weight: 600;
}

.nav-links a { padding: 8px 0; transition: color .2s ease; }
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--primary-hover); }
.nav-links a.active { color: var(--primary-color); }

.nav-cta {
    background: var(--tertiary-color);
    color: var(--white) !important;
    padding: 11px 16px !important;
    border-radius: 6px;
    box-shadow: 0 10px 22px rgba(175, 108, 87, .22);
    transition: background .22s ease, box-shadow .22s ease, transform .22s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: var(--tertiary-hover);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(32, 48, 64, .22);
    border-radius: 6px;
    background: transparent;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    width: 20px;
    margin: 5px auto;
    background: var(--primary-color);
}

.hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--primary-color);
    isolation: isolate;
}

.hero-compact { min-height: 560px; }
.hero-media, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media {
    object-fit: cover;
    transform: translate3d(0, 0, 0) scale(1.08);
    will-change: transform;
}

.hero-contact .hero-media {
    object-position: center 46%;
}

.hero-no-proof .hero-content {
    grid-template-columns: minmax(0, 760px);
}

.hero-no-proof .hero-main {
    max-width: 760px;
}
.hero-overlay {
    background:
        linear-gradient(90deg, rgba(18, 31, 44, .9), rgba(24, 39, 53, .68) 48%, rgba(32, 48, 64, .18)),
        linear-gradient(0deg, rgba(18, 31, 44, .8), transparent 44%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 150px 0 92px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) 340px;
    gap: 70px;
    align-items: end;
}

.hero-content[data-aos],
.trust-badge[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

.hero-main {
    max-width: 820px;
    padding-left: 34px;
    border-left: 3px solid rgba(255,255,255,.62);
}

.hero-proof {
    background: rgba(251, 250, 246, .94);
    color: var(--primary-color);
    border: 1px solid rgba(255,255,255,.64);
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0 28px 70px rgba(0,0,0,.24);
    backdrop-filter: blur(16px);
}

.hero-proof span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--tertiary-color);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    font-weight: 800;
}

.hero-proof strong {
    display: block;
    font-size: 30px;
    line-height: 1.05;
}

.hero-proof p {
    margin: 14px 0 0;
    color: var(--text-muted);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--tertiary-color);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12.5px;
    font-weight: 800;
}

.hero .eyebrow,
.section-deep .eyebrow,
.final-cta .eyebrow,
.site-footer .eyebrow {
    color: rgba(255, 255, 255, .78);
}

h1, h2, h3 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: inherit;
    line-height: 1.08;
    margin: 0;
}

h1 {
    font-size: clamp(44px, 6.2vw, 78px);
    max-width: 900px;
    letter-spacing: 0;
}

h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: 24px; }

.hero-copy {
    max-width: 740px;
    margin: 24px 0 0;
    font-size: clamp(17px, 2vw, 21px);
    color: rgba(255, 255, 255, .9);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-weight: 800;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn-primary { background: var(--tertiary-color); color: var(--white); }
.btn-secondary { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .5); color: var(--white); }
.btn-light { background: var(--white); color: var(--primary-color); }
.btn-blue { background: var(--school-blue); color: var(--white); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(31, 41, 51, .16); }
.btn-primary:hover,
.btn-primary:focus-visible,
.btn-primary:active { background: var(--tertiary-hover); }
.btn-blue:hover,
.btn-blue:focus-visible,
.btn-blue:active { background: var(--school-blue-hover); }
.btn-light:hover,
.btn-light:focus-visible,
.btn-light:active { background: var(--paper); color: var(--primary-hover); }
.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-secondary:active { background: rgba(255, 255, 255, .16); }

.trust-row {
    background: var(--background-light);
    color: var(--white);
    padding: 24px 0 34px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    background: transparent;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: 0 22px 46px rgba(31, 41, 51, .11);
}

.trust-badge {
    border: 0;
    border-radius: 6px;
    padding: 18px 16px;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 800;
    background: var(--school-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: transform .26s ease, background .26s ease, border-color .26s ease;
}

.trust-badge::before {
    content: none;
}

.trust-badge:nth-child(2) { background: var(--secondary-color); }
.trust-badge:nth-child(3) { background: var(--tertiary-color); }
.trust-badge:nth-child(4) { background: var(--primary-color); }
.trust-badge:nth-child(5) { background: var(--mustard); color: var(--white); }

.trust-badge:hover {
    transform: translateY(-4px);
}

.trust-badge:nth-child(1):hover { background: var(--school-blue-hover); }
.trust-badge:nth-child(2):hover { background: var(--secondary-hover); }
.trust-badge:nth-child(3):hover { background: var(--tertiary-hover); }
.trust-badge:nth-child(4):hover { background: var(--primary-hover); }
.trust-badge:nth-child(5):hover { background: var(--mustard-hover); }

.section {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.section-alt { background: var(--white); }
.section-alt::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(244,241,234,.8));
    pointer-events: none;
}
.section-deep {
    background: var(--primary-color);
    color: var(--white);
}

.sage-heading { color: var(--junior-sage); }
.narrow { max-width: 820px; }

.section-header {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.lead {
    font-size: 19px;
    color: var(--text-muted);
}

.section-deep .lead, .section-deep p { color: rgba(255,255,255,.78); }

.grid-2, .grid-3 {
    display: grid;
    gap: 30px;
    position: relative;
    z-index: 1;
}

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

.card, .image-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.card {
    padding: 36px;
    box-shadow: 0 10px 30px rgba(32,48,64,.055);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    width: 4px;
    height: auto;
    bottom: 30px;
    background: var(--secondary-color);
}

.grid-3 {
    counter-reset: card;
}

.grid-3 > .card::after {
    counter-increment: card;
    content: "0" counter(card);
    position: absolute;
    right: 24px;
    top: 22px;
    color: rgba(32,48,64,.1);
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(32, 48, 64, .22);
}

.grid-3 > .card:nth-child(2) {
    margin-top: 42px;
}

.grid-3 > .card:nth-child(3) {
    margin-top: 14px;
}

.grid-3 > .card:nth-child(2):hover {
    transform: translateY(-8px);
}

.grid-3 > .card:nth-child(3n)::before {
    background: var(--tertiary-color);
}

.grid-3 > .card:nth-child(3n + 1)::before {
    background: var(--primary-accent-color);
}

.card p { color: var(--text-muted); }
.section-deep .card { color: var(--text-dark); }
.section-deep .grid-3 > .card:nth-child(3n + 1) {
    background: var(--primary-accent-color);
    color: var(--white);
}
.section-deep .grid-3 > .card:nth-child(3n + 2) {
    background: var(--secondary-color);
    color: var(--white);
}
.section-deep .grid-3 > .card:nth-child(3n) {
    background: var(--tertiary-color);
    color: var(--white);
}
.section-deep .grid-3 > .card:nth-child(3n + 1):hover { background: var(--primary-accent-hover); }
.section-deep .grid-3 > .card:nth-child(3n + 2):hover { background: var(--secondary-hover); }
.section-deep .grid-3 > .card:nth-child(3n):hover { background: var(--tertiary-hover); }
.section-deep .grid-3 > .card p { color: rgba(255,255,255,.78); }
.section-deep .grid-3 > .card::before { background: rgba(255,255,255,.62); }
.section-deep .grid-3 > .card::after { color: rgba(255,255,255,.14); }
.card h3 { max-width: 82%; }
.card p:last-child,
.feature-item p:last-child,
.requirements-panel p:last-child,
.team-card p:last-child,
.fee-card p:last-child { margin-bottom: 0; }

.editorial-cards > .card {
    justify-content: flex-start;
    min-height: 285px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(251,250,246,.96));
}

.editorial-cards > .card::after {
    content: none;
}

.card-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 28px;
    color: var(--mustard);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 900;
}

.editorial-cards > .card h3 {
    max-width: 100%;
}

.feature-panel {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.feature-panel-image {
    margin: 0;
    overflow: hidden;
}

.feature-panel-image img {
    width: 100%;
    height: clamp(300px, 38vw, 470px);
    object-fit: cover;
    object-position: center 42%;
}

.feature-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.feature-panel-grid article {
    min-height: 260px;
    padding: 42px 34px;
    color: var(--white);
    background: var(--school-blue);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: background .24s ease;
}

.feature-panel-grid article:nth-child(2) {
    background: var(--junior-sage);
}

.feature-panel-grid article:nth-child(3) {
    background: var(--tertiary-color);
}

.feature-panel-grid article:nth-child(1):hover,
.feature-panel-grid article:nth-child(1):focus-within { background: var(--school-blue-hover); }
.feature-panel-grid article:nth-child(2):hover,
.feature-panel-grid article:nth-child(2):focus-within { background: var(--secondary-hover); }
.feature-panel-grid article:nth-child(3):hover,
.feature-panel-grid article:nth-child(3):focus-within { background: var(--tertiary-hover); }

.feature-panel-grid h3 {
    max-width: 260px;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.05;
}

.feature-panel-grid p {
    margin: 20px 0 0;
    color: rgba(255,255,255,.88);
    font-size: 14px;
}

.feature-link,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: auto;
    padding-top: 28px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.feature-link {
    padding-bottom: 9px;
    border-bottom: 2px solid rgba(255,255,255,.72);
}

.feature-link span {
    font-size: 16px;
    line-height: 0;
    transform: translateY(-1px);
    transition: transform .2s ease;
}

.feature-link:hover span,
.feature-link:focus-visible span {
    transform: translate(4px, -1px);
}

.text-link::after {
    content: "";
    width: 34px;
    height: 1px;
    margin-left: 12px;
    background: currentColor;
    transition: width .2s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
    width: 48px;
}

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

.video-story-single {
    grid-template-columns: minmax(0, 940px);
    justify-content: center;
}

.video-story-single .video-card {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    grid-template-rows: none;
}

.video-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.video-card video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--primary-color);
}

.video-card > div {
    padding: 30px;
}

.video-card .eyebrow {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.video-card h3 {
    color: var(--primary-color);
    margin-bottom: 14px;
}

.video-card p:not(.eyebrow) {
    color: var(--text-muted);
    margin: 0;
}

.ib-section {
    background:
        linear-gradient(90deg, rgba(181,151,60,.11), transparent 38%),
        var(--paper);
}

.ib-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 42px;
    align-items: stretch;
    position: relative;
    z-index: 1;
    padding: 48px;
    border: 1px solid rgba(49,66,86,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.62);
    box-shadow: var(--shadow);
}

.ib-copy {
    max-width: 820px;
}

.ib-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.ib-heading img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(49,66,86,.1);
}

.ib-copy .eyebrow {
    color: var(--secondary-color);
    margin: 0;
}

.ib-copy p {
    color: var(--text-muted);
    font-size: 18px;
}

.highlight {
    color: var(--mustard);
    font-weight: 900;
}

.ib-copy .text-link {
    color: var(--primary-color);
    margin-top: 24px;
    padding-top: 0;
}

.ib-proof {
    display: grid;
    align-content: center;
    padding: 34px;
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 20px 50px rgba(49,66,86,.16);
}

.ib-proof p,
.ib-proof span,
.ib-proof small {
    margin: 0;
    color: rgba(255,255,255,.76);
}

.ib-proof p {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    font-weight: 900;
}

.ib-proof strong {
    display: block;
    margin: 8px 0 2px;
    color: var(--mustard);
    font-family: var(--heading-font);
    font-size: clamp(48px, 5vw, 70px);
    line-height: .9;
}

.ib-proof span {
    font-size: 22px;
    font-weight: 900;
}

.ib-proof hr {
    width: 100%;
    margin: 28px 0;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.18);
}

.ib-proof small {
    display: block;
    margin-top: 24px;
    font-weight: 700;
    line-height: 1.5;
}

.image-card {
    box-shadow: 0 18px 52px rgba(31, 41, 51, .1);
    transition: transform .34s ease, box-shadow .34s ease;
}

.grid-2 > .image-card {
    transform: none;
}

.grid-2 > .image-card + div {
    align-self: center;
}

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

.image-card img,
.image-card video {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform .5s ease;
}

.section > .container.image-card video {
    height: 560px;
}

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

.image-card .card { border: 0; border-radius: 0; box-shadow: none; }

.section-gallery {
    background: linear-gradient(180deg, var(--background-light), var(--white));
}

.visual-story {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .78fr);
    gap: 30px;
    align-items: stretch;
    position: relative;
    z-index: 1;
    max-width: 1180px;
}

.visual-story-main,
.visual-story-side figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--primary-color);
    box-shadow: var(--shadow);
}

.visual-story-main[data-aos],
.visual-story-side figure[data-aos] {
    opacity: 1 !important;
}

.visual-story-side figure:first-child[data-aos] {
    transform: translateY(14px) !important;
}

.visual-story-side figure:last-child[data-aos] {
    transform: none !important;
}

.visual-story img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform .6s ease;
}

.visual-story-main img {
    min-height: 680px;
}

.visual-story-side {
    display: grid;
    gap: 42px;
    align-content: center;
}

.visual-story-side figure:first-child {
    transform: translateY(14px);
    z-index: 2;
    width: calc(100% - 34px);
}

.visual-story-side figure:last-child {
    width: calc(100% - 34px);
    justify-self: end;
}

.visual-story figcaption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 16px 18px;
    border-radius: 6px;
    background: rgba(251,250,246,.92);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 16px 36px rgba(0,0,0,.16);
    opacity: 1;
    transform: none;
}

.visual-story-side figure:last-child figcaption {
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.visual-story figcaption span {
    color: var(--mustard);
    letter-spacing: .08em;
    font-weight: 900;
}

.visual-story figure:hover img {
    transform: scale(1.04);
}

.media-band {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.media-band-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    align-items: start;
}

.media-band > div:first-child {
    max-width: 560px;
}

.media-band-images img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.media-band-images img:nth-child(2) {
    margin-top: 56px;
}

.founding-fee-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0 6px;
}

.founding-fee-stats div {
    padding: 24px;
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.12);
}

.founding-fee-stats div:nth-child(2) {
    background: color-mix(in srgb, var(--secondary-color) 18%, var(--white));
    color: var(--primary-color);
    border-color: color-mix(in srgb, var(--secondary-color) 34%, transparent);
}

.founding-fee-stats span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255,255,255,.86);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    font-weight: 900;
}

.founding-fee-stats div:nth-child(2) span {
    color: var(--secondary-color);
}

.founding-fee-stats strong {
    display: block;
    color: var(--mustard);
    font-family: var(--heading-font);
    font-size: clamp(34px, 4vw, 52px);
    line-height: .95;
}

.founding-fee-stats p {
    margin: 8px 0 0;
    color: rgba(255,255,255,.9);
    font-weight: 800;
}

.founding-fee-stats div:nth-child(2) p {
    color: var(--primary-color);
}

.feature-list {
    display: grid;
    gap: 18px;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.feature-item {
    padding: 26px 28px;
    background: var(--white);
    border-left: 3px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(32,48,64,.065);
    transition: transform .28s ease, box-shadow .28s ease;
}

.feature-item:nth-child(even) {
    transform: translateX(32px);
    border-left-color: var(--tertiary-color);
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.feature-item:nth-child(even):hover {
    transform: translateX(40px);
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(255,255,255,.16);
}

.journey-steps > div {
    min-height: 220px;
    padding: 32px;
    background: rgba(255,255,255,.07);
}

.journey-steps span,
.fee-card span {
    display: block;
    margin-bottom: 14px;
    color: var(--tertiary-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.section-deep .journey-steps span,
.section-deep .grid-3 > .card .eyebrow,
.section-deep .fee-card span,
.feature-panel-grid .eyebrow {
    color: var(--mustard);
}

.section-deep .journey-steps span {
    letter-spacing: .13em;
    opacity: 1;
}

.journey-steps strong {
    display: block;
    color: var(--white);
    font-size: 24px;
    line-height: 1.15;
}

.journey-steps p { margin-bottom: 0; }

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

.check-list li {
    position: relative;
    padding-left: 30px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .48em;
    width: 14px;
    height: 8px;
    border-left: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
    transform: rotate(-45deg);
}

.fee-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.fee-card {
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.fee-card.featured {
    background: var(--primary-color);
    color: var(--white);
}

.fee-card:not(.featured) {
    background: var(--secondary-color);
    color: var(--white);
    border-color: rgba(255,255,255,.28);
}

.fee-card strong {
    display: block;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1;
}

.fee-card p { color: var(--text-muted); }
.fee-card.featured p { color: rgba(255,255,255,.75); }
.fee-card:not(.featured) p,
.fee-card:not(.featured) span { color: rgba(255,255,255,.75); }

.requirements-panel,
.outcome-panel {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.requirements-panel::before,
.outcome-panel::before,
.contact-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--school-blue), var(--secondary-color), var(--tertiary-color));
}

.section-deep .outcome-panel {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.16);
    color: var(--white);
}

.outcome-panel { text-align: center; }
.outcome-panel p:last-child { max-width: 820px; margin: 18px auto 0; }

.form-side-image {
    width: 100%;
    height: 320px;
    margin-top: 28px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.contact-card {
    justify-content: flex-start;
    overflow: hidden;
}

.contact-lines {
    display: grid;
    gap: 10px;
    margin: 22px 0 26px;
}

.contact-lines div {
    display: grid;
    grid-template-columns: 102px minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
}

.contact-lines span {
    display: inline-block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-lines strong {
    color: var(--primary-color);
    font-weight: 900;
    word-break: break-word;
}

.day-timeline {
    position: relative;
    display: grid;
    gap: 18px;
}

.day-timeline::before {
    content: "";
    position: absolute;
    left: 151px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: rgba(83,108,138,.28);
}

.day-timeline article {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 62px;
    align-items: start;
}

.day-timeline time {
    padding-top: 25px;
    color: var(--tertiary-color);
    font-size: 13px;
    font-weight: 800;
}

.day-timeline article > div {
    position: relative;
    padding: 25px 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(32,48,64,.055);
}

.day-timeline article > div::before {
    content: "";
    position: absolute;
    left: -39px;
    top: 31px;
    width: 12px;
    height: 12px;
    border: 4px solid var(--background-light);
    border-radius: 50%;
    background: var(--secondary-color);
}

.day-timeline article:nth-child(3n + 2) > div::before { background: var(--primary-accent-color); }
.day-timeline article:nth-child(3n) > div::before { background: var(--tertiary-color); }

.day-timeline p { margin-bottom: 0; color: var(--text-muted); }

.evidence-note {
    margin-top: 32px;
    padding: 20px 24px;
    border-left: 4px solid rgba(255,255,255,.55);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.82);
    font-weight: 600;
}

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

.chip-grid span {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(32,48,64,.055);
    color: var(--primary-color);
    font-weight: 800;
    text-align: center;
}

.team-feature {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    gap: 64px;
    align-items: center;
}

.team-feature.reverse { grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); }
.team-feature.reverse .team-portrait {
    order: 2;
    border-radius: 8px;
}

.team-portrait {
    overflow: hidden;
    border-radius: 8px;
    background: var(--primary-color);
    box-shadow: var(--shadow-strong);
}

.team-portrait img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center top;
}

.team-card {
    min-height: 100%;
    padding: 38px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
}

.team-card.partner {
    background: var(--white);
    color: var(--text-dark);
}

.team-card.partner p { color: var(--text-muted); }

.team-card.partner img {
    width: 100%;
    height: 170px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 6px;
    background: var(--white);
    object-fit: contain;
}

.faq-answer p:first-child { margin-top: 0; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul,
.faq-answer ol { margin: 12px 0; padding-left: 24px; }
.faq-answer li { margin: 6px 0; }

.faq-partner {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 24px;
    align-items: center;
}

.faq-partner img {
    width: 100%;
    height: 110px;
    padding: 10px;
    object-fit: contain;
    background: var(--white);
}

.process {
    counter-reset: step;
    display: grid;
    gap: 14px;
}

.process li {
    list-style: none;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px 20px 20px 62px;
    position: relative;
    box-shadow: 0 12px 30px rgba(32,48,64,.055);
    transition: transform .24s ease, box-shadow .24s ease;
}

.process li:nth-child(even) {
    margin-left: 28px;
}

.process li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.process li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 800;
}

.process li:nth-child(3n + 2)::before { background: var(--primary-accent-color); }
.process li:nth-child(3n)::before { background: var(--tertiary-color); }

.form-wrap {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 34px;
    align-items: start;
}

.admissions-form {
    background: var(--white);
    padding: 28px;
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.admissions-form::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-accent-color), var(--secondary-color), var(--tertiary-color));
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

label { font-weight: 700; font-size: 13px; color: var(--primary-color); }
input, select, textarea {
    width: 100%;
    margin-top: 7px;
    border: 1px solid rgba(32,48,64,.22);
    border-radius: 6px;
    padding: 13px 12px;
    font: inherit;
    background: var(--white);
    color: var(--text-dark);
}

input:focus, select:focus, textarea:focus {
    outline: 3px solid rgba(129,148,99,.28);
    border-color: var(--secondary-color);
}

.full { grid-column: 1 / -1; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; }
.consent input { width: auto; margin-top: 4px; }
.hidden-field { display: none; }

.form-message {
    padding: 14px 16px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-weight: 700;
}

.form-message.success { background: rgba(129,148,99,.15); color: var(--primary-color); }
.form-message.error { background: rgba(175,108,87,.14); color: var(--primary-color); }

.faq-item {
    border-bottom: 1px solid var(--line);
    background: var(--white);
    padding: 0 24px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 12px 28px rgba(32,48,64,.05);
}

.faq-question {
    width: 100%;
    padding: 22px 0;
    background: transparent;
    border: 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font: inherit;
    font-weight: 800;
    color: var(--primary-color);
    cursor: pointer;
    transition: color .2s ease;
}

.faq-question:hover,
.faq-question:focus-visible { color: var(--primary-hover); }

.faq-answer {
    display: none;
    padding: 0 0 22px;
    color: var(--text-muted);
}

.faq-item.open .faq-answer { display: block; }

.final-cta {
    padding: 78px 0;
    background: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.final-cta::after {
    content: none;
    position: absolute;
    right: max(28px, calc((100vw - 1120px) / 2));
    top: 34px;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    box-shadow: inset 0 0 0 34px rgba(255,255,255,.04);
}

.final-cta-inner {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: center;
}

.final-cta p { max-width: 650px; color: rgba(255,255,255,.78); }

.site-footer {
    padding: 62px 0 96px;
    background: var(--primary-color);
    color: rgba(255,255,255,.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .9fr 1fr 1.2fr;
    gap: 32px;
    align-items: start;
}

.footer-logo { width: 180px; margin-bottom: 18px; }
.site-footer h2 { font-size: 16px; color: var(--white); margin-bottom: 12px; }
.site-footer a { color: var(--white); font-weight: 800; }
.footer-contact {
    display: grid;
    gap: 7px;
    line-height: 1.45;
}

.footer-contact span {
    display: block;
}

.footer-contact .footer-contact-label {
    color: var(--white);
    font-weight: 900;
}

.footer-contact a {
    color: inherit;
    font-weight: 400;
}

.footer-admissions-links {
    display: grid;
    justify-items: start;
    gap: 7px;
}

.footer-admissions-links a {
    position: relative;
    padding: 2px 0;
    transition: color .22s ease, transform .22s ease;
}

.footer-admissions-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 1px;
    background: var(--school-blue);
    transition: right .22s ease;
}

.footer-admissions-links a:hover,
.footer-admissions-links a:focus-visible {
    color: var(--mustard);
    transform: translateX(5px);
}

.footer-admissions-links a:hover::after,
.footer-admissions-links a:focus-visible::after {
    right: 0;
}

.footer-map-column {
    min-width: 0;
}

.footer-map {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    background: var(--primary-hover);
    box-shadow: 0 18px 42px rgba(0,0,0,.18);
}

.footer-map iframe {
    width: 100%;
    height: 190px;
    border: 0;
    filter: saturate(.72) contrast(.95);
}

.footer-map > a {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 14px;
    background: linear-gradient(180deg, transparent 48%, rgba(49,66,86,.78));
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    transition: background .22s ease;
}

.footer-map > a span {
    display: inline-grid;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    place-items: center;
    border-radius: 50%;
    background: var(--mustard);
    color: var(--white);
}

.footer-map > a:hover,
.footer-map > a:focus-visible {
    background: linear-gradient(180deg, rgba(49,66,86,.06) 28%, rgba(43,58,76,.94));
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
}

/* Internal pages use the approved homepage's editorial rhythm without image-led headers. */
.internal-intro {
    padding: 182px 0 96px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.internal-intro-inner {
    max-width: 900px;
}

.internal-intro h1 {
    max-width: 850px;
    color: var(--primary-color);
    font-size: clamp(46px, 6vw, 76px);
}

.internal-intro .lead {
    max-width: 760px;
    margin: 28px 0 0;
    font-size: clamp(18px, 2vw, 22px);
}

.section-header-wide {
    display: block;
    max-width: 860px;
}

.team-profile-section {
    overflow: visible;
}

.team-profile {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
    gap: clamp(48px, 7vw, 88px);
    align-items: center;
}

.team-profile-reverse {
    grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr);
}

.team-profile-reverse .team-profile-image {
    order: 2;
}

.team-profile-image {
    margin: 0;
    height: 560px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--primary-color);
    box-shadow: var(--shadow);
}

.team-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-profile-image-contained {
    height: 520px;
    max-width: 390px;
}

.team-profile-copy {
    max-width: 690px;
}

.team-profile-copy h2 {
    color: var(--primary-color);
    margin-bottom: 28px;
}

.team-profile-copy p:not(.eyebrow) {
    color: var(--text-muted);
}

.partner-band {
    background: var(--primary-color);
    color: var(--white);
}

.partner-band-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
    gap: 76px;
    align-items: center;
}

.partner-band h2 {
    margin-bottom: 28px;
}

.partner-band h2 span {
    color: var(--school-blue);
}

.partner-band p:not(.eyebrow) {
    color: rgba(255,255,255,.8);
}

.partner-band .eyebrow {
    color: rgba(255,255,255,.82);
}

.partner-logo {
    width: min(100%, 330px);
    aspect-ratio: 1;
    justify-self: center;
    overflow: hidden;
    border-radius: 50%;
    background: var(--white);
    display: grid;
    place-items: center;
    box-shadow: 0 26px 70px rgba(0,0,0,.24);
}

.partner-logo img {
    width: 82%;
    height: 82%;
    padding: 16px;
    object-fit: contain;
}

.sports-partner-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
    gap: 76px;
    align-items: center;
    margin-bottom: 54px;
}

.sports-partner-intro h2 {
    max-width: 720px;
    margin-bottom: 22px;
}

.sports-partner-intro .lead {
    max-width: 760px;
    margin: 0;
}

.bta-partner-card {
    min-height: 250px;
    padding: 30px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 18px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(0,0,0,.24);
    transition: transform .22s ease, box-shadow .22s ease;
}

.bta-partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 80px rgba(0,0,0,.3);
}

.bta-partner-card img {
    width: min(100%, 250px);
    height: auto;
}

.bta-partner-card span {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sports-programme-grid {
    margin-top: 0;
}

.admissions-journey-section {
    background: var(--background-light);
}

.admissions-journey-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
    gap: 30px;
    align-items: stretch;
}

.process-aligned {
    margin: 0;
    padding: 0;
}

.process-aligned li,
.process-aligned li:nth-child(even) {
    min-height: 78px;
    margin-left: 0;
    display: flex;
    align-items: center;
}

.requirements-equal {
    height: 100%;
    display: grid;
    place-items: center;
    background: var(--primary-color);
    color: var(--white);
}

.requirements-equal::before {
    background: var(--school-blue);
}

.requirements-equal > div {
    width: 100%;
}

.requirements-equal p,
.requirements-equal .eyebrow {
    color: rgba(255,255,255,.78);
}

.requirements-equal .check-list li::before {
    border-color: var(--mustard);
}

.fees-bottom {
    background: var(--paper);
}

.nowrap {
    white-space: nowrap;
}

.equal-card-grid > .card,
.equal-card-grid > .card:nth-child(2),
.equal-card-grid > .card:nth-child(3) {
    min-height: 270px;
    margin-top: 0;
}

.evidence-line {
    margin-top: 44px;
    color: var(--white) !important;
    font-family: var(--heading-font);
    font-size: clamp(22px, 2.8vw, 34px);
    line-height: 1.28;
    text-align: center;
}

.evidence-line strong {
    color: var(--mustard);
}

.enrichment-grid span {
    background: color-mix(in srgb, var(--school-blue) 10%, var(--white));
    border-color: color-mix(in srgb, var(--school-blue) 24%, transparent);
    transition: transform .26s ease, background .26s ease, box-shadow .26s ease;
}

.enrichment-grid span:nth-child(even) {
    background: color-mix(in srgb, var(--secondary-color) 10%, var(--white));
}

.enrichment-grid span:hover {
    transform: translateY(-6px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.care-grid article {
    min-height: 310px;
    padding: 44px;
    border-left: 5px solid var(--school-blue);
    background: var(--primary-color);
    color: var(--white);
}

.care-grid article:nth-child(2) {
    border-left-color: var(--secondary-color);
    background: var(--paper);
    color: var(--primary-color);
}

.care-grid article p:not(.eyebrow) {
    color: rgba(255,255,255,.78);
}

.care-grid article:nth-child(2) p:not(.eyebrow) {
    color: var(--text-muted);
}

.faq-section .faq-item {
    position: relative;
    padding-left: 84px;
    overflow: hidden;
}

.faq-section .faq-item:nth-child(even) {
    background: color-mix(in srgb, var(--school-blue) 9%, var(--white));
}

.faq-section .faq-item::before {
    content: var(--faq-number);
    position: absolute;
    left: 24px;
    top: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
}

.faq-section .faq-item:nth-child(even)::before {
    background: var(--school-blue);
}

.faq-label {
    padding-right: 12px;
}

.contact-details-section {
    background: var(--background-light);
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 72px;
    align-items: center;
    padding: 58px;
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-strong);
}

.contact-panel .lead {
    color: rgba(255,255,255,.76);
}

.contact-panel-lines {
    display: grid;
    border-top: 1px solid rgba(255,255,255,.18);
}

.contact-panel-lines > * {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.contact-panel-lines span {
    color: rgba(255,255,255,.62);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-panel-lines strong {
    color: var(--white);
    font-weight: 800;
    word-break: break-word;
}

.contact-panel-lines a:hover strong {
    color: var(--mustard);
}

.contact-panel-lines a:focus-visible strong {
    color: var(--mustard);
}

.contact-form-wrap > div:first-child {
    position: sticky;
    top: 120px;
}

.mobile-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: var(--primary-color);
    box-shadow: 0 -8px 24px rgba(0,0,0,.16);
}

.mobile-cta a {
    flex: 1;
    color: var(--white);
    text-align: center;
    padding: 13px 8px;
    font-size: 12px;
    font-weight: 800;
    border-right: 1px solid rgba(255,255,255,.12);
    transition: background .2s ease;
}

.mobile-cta a:hover,
.mobile-cta a:focus-visible,
.mobile-cta a:active { background: var(--primary-hover); }

[data-aos] {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity .72s ease, transform .72s cubic-bezier(.2, .7, .2, 1);
    will-change: opacity, transform;
}

[data-aos="fade-in"] {
    transform: translate3d(0, 12px, 0) scale(.985);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.card.aos-animate:hover,
.image-card.aos-animate:hover {
    transform: translateY(-8px);
}

.feature-item.aos-animate:hover {
    transform: translateX(8px);
}

.feature-item:nth-child(even).aos-animate:hover {
    transform: translateX(40px);
}

.process li.aos-animate:hover {
    transform: translateX(8px);
}

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

    [data-aos] {
        opacity: 1;
        transform: none;
    }

    .hero-media {
        transform: none;
    }
}

@media (max-width: 1120px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 78px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--primary-color);
        padding: 18px;
        border-radius: 8px;
        box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .nav-links.open,
    .nav-links.open a {
        color: rgba(255,255,255,.88);
    }
    .nav-links.open a:hover,
    .nav-links.open a.active {
        color: var(--white);
    }
    .badge-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .section-header, .form-wrap, .grid-2, .visual-story, .media-band, .team-feature, .team-feature.reverse, .video-story-grid, .ib-panel { grid-template-columns: 1fr; }
    .video-story-single .video-card { grid-template-columns: 1fr; }
    .ib-proof { max-width: 420px; }
    .visual-story-side figure:first-child,
    .visual-story-side figure:last-child {
        width: 100%;
        transform: none !important;
    }
    .feature-panel-grid { grid-template-columns: 1fr; }
    .feature-panel-grid article { min-height: 0; }
    .hero { min-height: 660px; }
    .hero.hero-compact { min-height: 600px; }
    .hero-content {
        display: block;
        padding-bottom: 64px;
    }
    .hero-main {
        padding-left: 0;
        border-left: 0;
    }
    .hero-proof {
        display: none;
    }
    .trust-row {
        margin-top: 0;
        padding-top: 18px;
    }
    .grid-3 > .card:nth-child(2),
    .grid-3 > .card:nth-child(2):hover {
        margin-top: 0;
        transform: none;
    }
    .team-feature.reverse .team-portrait {
        order: initial;
        border-radius: 8px;
    }
    .fee-grid { grid-template-columns: 1fr; }
    .team-profile,
    .team-profile-reverse,
    .partner-band-inner,
    .sports-partner-intro,
    .admissions-journey-grid,
    .contact-panel {
        grid-template-columns: 1fr;
    }
    .team-profile-reverse .team-profile-image { order: initial; }
    .team-profile-image,
    .team-profile-image-contained { max-width: 520px; }
    .partner-logo { justify-self: start; }
    .bta-partner-card { width: min(100%, 420px); }
    .contact-form-wrap > div:first-child { position: static; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .container, .nav-shell { width: min(100% - 24px, 1120px); }
    .brand img { width: 150px; }
    .hero-content { padding: 128px 0 54px; }
    .hero.hero-compact { min-height: 580px; }
    .hero-overlay { background: linear-gradient(180deg, rgba(20,31,44,.5), rgba(20,31,44,.86)); }
    .hero .button-row {
        max-width: 260px;
    }
    .hero .btn {
        width: 100%;
    }
    .section { padding: 66px 0; }
    .badge-grid, .grid-3, .form-grid { grid-template-columns: 1fr; }
    .trust-badge { min-height: auto; }
    .feature-panel-image img { height: 260px; }
    .feature-panel-grid article {
        min-height: 290px;
        padding: 34px 26px;
    }
    .feature-link { padding-top: 24px; }
    .ib-panel { padding: 28px; }
    .ib-heading { align-items: flex-start; }
    .ib-heading img { width: 46px; height: 46px; }
    .ib-proof { padding: 26px; }
    .card { min-height: auto; }
    .grid-3 > .card::after { font-size: 30px; }
    .visual-story-main img,
    .visual-story img,
    .media-band-images img {
        min-height: 0;
        height: 280px;
    }
    .visual-story figcaption {
        opacity: 1;
        transform: none;
        inset: auto 14px 14px;
    }
    .visual-story-side figure:first-child,
    .media-band-images img:nth-child(2) {
        margin-top: 0;
        transform: none !important;
    }
    .media-band-images {
        grid-template-columns: 1fr;
    }
    .journey-steps,
    .chip-grid,
    .founding-fee-stats { grid-template-columns: 1fr; }
    .journey-steps > div { min-height: 0; }
    .day-timeline::before { display: none; }
    .day-timeline article { grid-template-columns: 1fr; gap: 8px; }
    .day-timeline time { padding-top: 0; }
    .day-timeline article > div::before { display: none; }
    .team-portrait img { height: 440px; }
    .faq-partner { grid-template-columns: 1fr; }
    .feature-item:nth-child(even),
    .feature-item:nth-child(even):hover,
    .process li:nth-child(even) {
        margin-left: 0;
        transform: none;
    }
    .final-cta-inner, .footer-bottom { display: block; }
    .footer-grid { grid-template-columns: 1fr; }
    .mobile-cta { display: flex; }
    .site-footer { padding-bottom: 130px; }
    .internal-intro { padding: 142px 0 72px; }
    .internal-intro h1 { font-size: clamp(40px, 12vw, 56px); }
    .team-profile { gap: 34px; }
    .team-profile-image,
    .team-profile-image-contained { height: 440px; }
    .partner-band-inner { gap: 42px; }
    .partner-logo { width: min(82vw, 290px); justify-self: center; }
    .sports-partner-intro { gap: 34px; margin-bottom: 42px; }
    .bta-partner-card { width: 100%; min-height: 220px; padding: 24px; }
    .admissions-journey-grid { gap: 22px; }
    .requirements-equal { padding: 30px 26px; }
    .care-grid { grid-template-columns: 1fr; }
    .care-grid article { min-height: 0; padding: 34px 26px; }
    .faq-section .faq-item { padding: 0 18px 0 64px; }
    .faq-section .faq-item::before { left: 16px; width: 34px; height: 34px; }
    .contact-panel { padding: 34px 26px; gap: 34px; }
    .contact-panel-lines > * { grid-template-columns: 1fr; gap: 4px; }
}
