:root {
    --navy: #11123d;
    --navy-2: #1b1d59;
    --ink: #11121a;
    --muted: #636978;
    --yellow: #fcc709;
    --yellow-soft: #fff6c8;
    --sky: #68c9e9;
    --sky-soft: #eaf8fc;
    --white: #ffffff;
    --off-white: #f7f7f3;
    --line: #dfe1e8;
    --success: #176b4b;
    --error: #9e2835;
    --shadow: 0 24px 70px rgba(17, 18, 61, 0.14);
    --radius: 22px;
    --radius-sm: 12px;
    --container: 1220px;
    --header-height: 84px;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
    line-height: 1.1;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 7.6rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2.2rem, 4.4vw, 4.4rem);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    margin-bottom: 0.8rem;
}

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

::selection {
    background: var(--yellow);
    color: var(--navy);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.container.narrow {
    width: min(calc(100% - 40px), 850px);
}

.section {
    padding: clamp(78px, 10vw, 140px) 0;
}

.soft-section {
    background: var(--off-white);
}

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

.skip-link {
    position: fixed;
    left: 18px;
    top: 18px;
    z-index: 9999;
    transform: translateY(-160%);
    background: var(--yellow);
    color: var(--navy);
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--navy);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 3px;
    background: var(--yellow);
    border-radius: 999px;
}

.eyebrow.light {
    color: var(--white);
}

.lead {
    color: var(--ink);
    font-size: clamp(1.2rem, 2vw, 1.58rem);
    line-height: 1.55;
}

.section-heading h2 {
    max-width: 760px;
}

.section-heading.centered {
    max-width: 850px;
    margin: 0 auto 56px;
    text-align: center;
}

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

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: clamp(48px, 8vw, 120px);
}

.split-grid.align-end {
    align-items: end;
}

.prose {
    color: var(--muted);
    font-size: 1.07rem;
}

.prose h2,
.prose h3 {
    color: var(--ink);
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 820;
    line-height: 1;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(104, 201, 233, 0.65);
    outline-offset: 3px;
}

.button-small {
    min-height: 44px;
    padding: 12px 20px;
    background: var(--navy);
    color: var(--white);
}

.button-accent {
    background: var(--yellow);
    color: var(--navy);
    box-shadow: 0 12px 34px rgba(252, 199, 9, 0.2);
}

.button-accent:hover {
    background: #ffe05b;
}

.button-dark {
    background: var(--navy);
    color: var(--white);
}

.button-dark:hover {
    background: var(--navy-2);
}

.button-light {
    background: var(--white);
    color: var(--navy);
}

.button-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}

.button-outline-light:hover {
    background: var(--white);
    color: var(--navy);
}

.button-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.button-block {
    width: 100%;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-weight: 820;
    border-bottom: 1px solid rgba(17, 18, 61, 0.25);
    padding-bottom: 4px;
}

.arrow-link span {
    transition: transform var(--transition);
}

.arrow-link:hover span {
    transform: translateX(5px);
}

.announcement {
    position: relative;
    z-index: 60;
    background: var(--yellow);
    color: var(--navy);
}

.announcement-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    min-height: 42px;
    font-size: 0.83rem;
}

.announcement a {
    font-weight: 850;
    border-bottom: 1px solid rgba(17, 18, 61, 0.5);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(17, 18, 61, 0.08);
    backdrop-filter: blur(18px);
    transition: box-shadow var(--transition), height var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 10px 35px rgba(17, 18, 61, 0.08);
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
}

/* Official fellowship logo */
.brand-logo {
    display: block;
    width: 185px;
    max-height: 60px;
    height: auto;
    object-fit: contain;
}

.brand-mark {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--yellow);
    overflow: hidden;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before {
    content: "";
    position: absolute;
    left: 12px;
    width: 18px;
    height: 3px;
    border-radius: 999px;
    background: var(--navy);
}

.brand-mark::before { top: 12px; }
.brand-mark::after { top: 19px; }
.brand-mark span::before { top: 26px; width: 13px; }

.brand-mark i {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 11px;
    height: 11px;
    background: var(--yellow);
    transform: skew(-30deg) translate(1px, 1px);
}

.brand-copy {
    display: grid;
    color: var(--navy);
    line-height: 0.95;
    text-transform: uppercase;
}

.brand-copy strong {
    font-size: 0.94rem;
    letter-spacing: -0.03em;
}

.brand-copy small {
    margin-top: 4px;
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.14em;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    flex: 1 1 auto;
}

.primary-nav a {
    position: relative;
    color: #393c4a;
    font-size: 0.88rem;
    font-weight: 720;
    white-space: nowrap;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.primary-nav a.active {
    color: var(--navy);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.text-link {
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 800;
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 12px;
    background: var(--off-white);
    cursor: pointer;
}

.menu-button span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--navy);
    transition: transform var(--transition), opacity var(--transition);
}

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-height) - 42px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--navy);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    transform: scale(1.01);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(9, 10, 42, 0.96) 0%, rgba(9, 10, 42, 0.82) 42%, rgba(9, 10, 42, 0.35) 73%, rgba(9, 10, 42, 0.17) 100%),
        linear-gradient(0deg, rgba(9, 10, 42, 0.42), transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: clamp(95px, 12vh, 160px);
    padding-bottom: clamp(55px, 8vh, 100px);
    color: var(--white);
}

.hero h1 {
    max-width: 800px;
    margin-bottom: 26px;
    font-size: clamp(4.2rem, 9.3vw, 8.8rem);
    line-height: 0.86;
    letter-spacing: -0.075em;
}

.hero h1 span {
    color: var(--yellow);
}

.hero-content > p {
    max-width: 670px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.12rem, 1.9vw, 1.45rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 46px;
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.86rem;
}

.hero-meta strong {
    color: var(--white);
    font-size: 1.05rem;
}

.problem-section {
    background: var(--white);
}

.problem-copy {
    color: var(--muted);
}

.problem-list {
    display: grid;
    margin: 35px 0;
    border-top: 1px solid var(--line);
}

.problem-list div {
    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.problem-list span {
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 850;
}

.problem-list p {
    margin: 0;
    color: var(--ink);
    font-weight: 740;
}

.problem-copy .arrow-link {
    margin-top: 28px;
}

.impact-band {
    position: relative;
    overflow: hidden;
    padding: clamp(75px, 9vw, 120px) 0;
    background: var(--navy);
    color: var(--white);
}

.impact-band::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    top: -220px;
    border: 90px solid rgba(104, 201, 233, 0.12);
    border-radius: 50%;
}

.impact-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 50px;
}

.impact-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.19);
    border-bottom: 1px solid rgba(255, 255, 255, 0.19);
}

.stat {
    min-height: 195px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.19);
}

.stat:first-child {
    padding-left: 0;
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    color: var(--yellow);
    font-size: clamp(3.1rem, 6vw, 5.4rem);
    font-weight: 850;
    letter-spacing: -0.07em;
    line-height: 1;
}

.stat span {
    max-width: 190px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.approach-section {
    background: var(--off-white);
}

.stage-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 65px;
    border-top: 1px solid var(--line);
}

.stage-card {
    min-height: 315px;
    padding: 28px 25px 30px;
    border-right: 1px solid var(--line);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.stage-card:first-child {
    border-left: 1px solid var(--line);
}

.stage-card:hover {
    position: relative;
    z-index: 1;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.stage-card > span {
    display: block;
    margin-bottom: 82px;
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 850;
}

.stage-card h3 {
    color: var(--navy);
}

.stage-card p {
    color: var(--muted);
    font-size: 0.93rem;
}

.photo-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.8fr);
    gap: clamp(55px, 8vw, 115px);
    align-items: center;
}

.photo-collage {
    position: relative;
    min-height: 660px;
}

.photo-main {
    width: 82%;
    height: 590px;
    object-fit: cover;
    border-radius: var(--radius);
}

.photo-small {
    position: absolute;
    right: 0;
    bottom: 30px;
    width: 36%;
    height: 330px;
    object-fit: cover;
    border: 10px solid var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.photo-note {
    position: absolute;
    left: 34px;
    bottom: 0;
    display: grid;
    max-width: 300px;
    padding: 24px 26px;
    border-radius: 14px;
    background: var(--yellow);
    color: var(--navy);
}

.photo-note strong {
    font-size: 1.05rem;
}

.photo-note span {
    font-size: 0.87rem;
}

.photo-story-copy h2 {
    font-size: clamp(2.4rem, 4vw, 4.1rem);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 34px 0 38px;
}

.check-list li {
    position: relative;
    padding: 15px 0 15px 36px;
    border-bottom: 1px solid var(--line);
    color: #323541;
    font-weight: 670;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--navy);
    font-weight: 900;
}

.check-list.compact li {
    padding-top: 10px;
    padding-bottom: 10px;
}

.modules-preview {
    background: var(--sky-soft);
}

.module-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 55px;
}

.module-preview-card {
    position: relative;
    min-height: 285px;
    padding: 26px;
    background: var(--white);
    border: 1px solid rgba(17, 18, 61, 0.08);
    border-radius: 17px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.module-preview-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.module-preview-card > span {
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 850;
}

.module-preview-card h3 {
    max-width: 250px;
    margin-top: 90px;
    color: var(--navy);
}

.module-preview-card p {
    color: var(--muted);
    font-size: 0.9rem;
}

.module-preview-card i {
    position: absolute;
    top: 23px;
    right: 25px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--off-white);
    color: var(--navy);
    font-style: normal;
}

.centered-action {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.testimonial-feature {
    padding-top: 0;
    padding-bottom: 0;
}

.testimonial-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 690px;
}

.testimonial-image {
    margin-left: calc((100vw - min(100vw - 40px, var(--container))) / -2);
}

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

.testimonial-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(55px, 8vw, 110px);
    background: var(--yellow);
    color: var(--navy);
}

.quote-mark {
    display: block;
    font-family: Georgia, serif;
    font-size: 6rem;
    line-height: 0.7;
}

.testimonial-quote blockquote {
    max-width: 560px;
    margin: 30px 0;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 760;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.testimonial-quote > p {
    margin: 0;
    font-weight: 850;
}

.testimonial-quote > span:not(.quote-mark) {
    color: rgba(17, 18, 61, 0.7);
    font-size: 0.88rem;
}

.testimonial-quote .arrow-link {
    margin-top: 35px;
    align-self: flex-start;
}

.alumni-teaser {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}

.alumni-teaser::after {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    left: -190px;
    bottom: -270px;
    border-radius: 50%;
    background: var(--sky);
    opacity: 0.11;
}

.alumni-teaser-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: clamp(60px, 9vw, 130px);
    align-items: center;
}

.alumni-copy p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.1rem;
}

.alumni-copy .button {
    margin-top: 30px;
}

.alumni-levels {
    display: grid;
    gap: 12px;
}

.alumni-levels div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 4px 20px;
    padding: 24px 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
}

.alumni-levels span {
    grid-row: 1 / 3;
    color: var(--yellow);
    font-size: 0.72rem;
    font-weight: 850;
}

.alumni-levels strong {
    font-size: 1.14rem;
}

.alumni-levels small {
    color: rgba(255, 255, 255, 0.6);
}

.media-preview .split-grid .arrow-link {
    justify-self: end;
    margin-bottom: 30px;
}

.media-mosaic {
    display: grid;
    grid-template-columns: 1.4fr 0.75fr 0.75fr;
    grid-template-rows: 520px;
    gap: 16px;
    margin-top: 55px;
}

.media-mosaic figure {
    overflow: hidden;
    margin: 0;
    border-radius: 18px;
}

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

.media-mosaic figure:hover img {
    transform: scale(1.035);
}

.mosaic-tall img {
    object-position: center top;
}

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: end;
    padding: 125px 0 85px;
    background: var(--navy);
    color: var(--white);
}

.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.page-hero::before {
    width: 600px;
    height: 600px;
    right: -120px;
    top: -310px;
    border: 90px solid rgba(104, 201, 233, 0.13);
}

.page-hero::after {
    width: 390px;
    height: 390px;
    right: 16%;
    bottom: -300px;
    background: var(--yellow);
    opacity: 0.12;
}

.page-hero .container {
    position: relative;
    z-index: 1;
    margin-left: max(20px, calc((100vw - var(--container)) / 2));
}

.page-hero h1 {
    max-width: 940px;
    margin-bottom: 26px;
    font-size: clamp(3.6rem, 7.5vw, 7.2rem);
    line-height: 0.97;
}

.page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(1.13rem, 2vw, 1.42rem);
}

.page-hero .button {
    margin-top: 25px;
}

.page-hero-about { background: linear-gradient(135deg, var(--navy) 0 70%, #24276a 70%); }
.page-hero-curriculum { background: linear-gradient(145deg, var(--navy) 0 67%, #155b70 67%); }
.page-hero-alumni { background: linear-gradient(135deg, #0d3260 0 66%, var(--navy) 66%); }
.page-hero-stories { background: linear-gradient(140deg, var(--navy) 0 72%, #7f6910 72%); }
.page-hero-media { background: linear-gradient(140deg, #142357 0 66%, #0d637c 66%); }
.page-hero-apply { background: linear-gradient(140deg, var(--navy) 0 70%, #655512 70%); }
.page-hero-contact { background: linear-gradient(140deg, #0f4160 0 68%, var(--navy) 68%); }
.page-hero-simple { min-height: 440px; }

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

.value-card {
    min-height: 330px;
    padding: 28px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(17, 18, 61, 0.05);
}

.value-card > span {
    color: var(--navy);
    font-size: 0.74rem;
    font-weight: 850;
}

.value-card h3 {
    margin-top: 108px;
    color: var(--navy);
}

.value-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

.image-text-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(55px, 8vw, 110px);
    align-items: center;
}

.image-panel {
    min-height: 660px;
    overflow: hidden;
    border-radius: var(--radius);
}

.image-panel img {
    width: 100%;
    height: 100%;
    min-height: 660px;
    object-fit: cover;
}

.image-text-copy h2 {
    font-size: clamp(2.4rem, 4.6vw, 4.5rem);
}

.image-text-copy > p {
    color: var(--muted);
    font-size: 1.05rem;
}

.image-text-copy h3 {
    margin-top: 35px;
    font-size: 1.1rem;
}

.timeline {
    margin-top: 60px;
    border-top: 1px solid var(--line);
}

.timeline-item {
    display: grid;
    grid-template-columns: 135px 1fr;
    gap: 30px;
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
}

.timeline-item > span {
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 900;
}

.timeline-item h3 {
    margin-bottom: 10px;
    color: var(--navy);
}

.timeline-item p {
    max-width: 760px;
    color: var(--muted);
}

.quote-banner {
    background: var(--yellow);
    color: var(--navy);
}

.quote-banner blockquote {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 5.3rem);
    font-weight: 770;
    line-height: 1.04;
    letter-spacing: -0.05em;
    text-align: center;
}

.curriculum-intro {
    padding-bottom: 95px;
}

.curriculum-list {
    display: grid;
}

.curriculum-module {
    display: grid;
    grid-template-columns: 80px 1fr 0.85fr;
    gap: clamp(25px, 5vw, 75px);
    padding: 58px 0;
    border-bottom: 1px solid #d3d5db;
    scroll-margin-top: 120px;
}

.curriculum-module:first-child {
    border-top: 1px solid #d3d5db;
}

.module-number {
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 900;
}

.module-main h2 {
    max-width: 610px;
    margin-bottom: 22px;
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.module-question {
    max-width: 520px;
    color: var(--muted);
    font-size: 1.08rem;
    font-style: italic;
}

.module-details h3 {
    color: var(--navy);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.module-details ul {
    margin: 18px 0 30px;
    padding-left: 20px;
    color: var(--muted);
}

.module-output {
    display: grid;
    gap: 5px;
    padding: 18px 20px;
    border-left: 4px solid var(--yellow);
    background: var(--white);
}

.module-output strong {
    color: var(--navy);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.module-output span {
    color: var(--muted);
    font-size: 0.92rem;
}

.capstone-section {
    background: var(--navy);
    color: var(--white);
}

.capstone-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: clamp(60px, 10vw, 140px);
    align-items: center;
}

.capstone-copy p {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.1rem;
}

.capstone-options {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.capstone-options div {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 12px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.capstone-options span {
    color: var(--yellow);
    font-size: 0.75rem;
    font-weight: 900;
}

.capstone-options p {
    margin: 0;
    font-weight: 700;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.outcome-grid article {
    min-height: 245px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.outcome-grid strong {
    color: var(--navy);
    font-size: 1.45rem;
}

.outcome-grid p {
    margin-top: 70px;
    color: var(--muted);
    font-size: 0.93rem;
}

.alumni-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 60px;
    align-items: stretch;
}

.tier-card {
    min-height: 410px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
}

.tier-card.featured {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-18px);
    box-shadow: var(--shadow);
}

.tier-card > span {
    color: var(--navy);
    font-size: 0.76rem;
    font-weight: 900;
}

.tier-card.featured > span {
    color: var(--yellow);
}

.tier-card h3 {
    margin-top: 125px;
    font-size: 2rem;
}

.tier-card ul {
    padding-left: 20px;
    color: var(--muted);
}

.tier-card.featured ul {
    color: rgba(255, 255, 255, 0.72);
}

.alumni-image-section {
    background: var(--off-white);
}

.alumni-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(55px, 8vw, 110px);
    align-items: center;
}

.alumni-image {
    min-height: 710px;
    overflow: hidden;
    border-radius: var(--radius);
}

.alumni-image img {
    width: 100%;
    height: 710px;
    object-fit: cover;
}

.mechanism-list {
    margin-top: 38px;
    border-top: 1px solid var(--line);
}

.mechanism-list > div {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 0 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.mechanism-list span {
    grid-row: 1 / 3;
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 900;
}

.mechanism-list h3,
.mechanism-list p {
    margin: 0;
}

.mechanism-list h3 {
    font-size: 1.08rem;
}

.mechanism-list p {
    color: var(--muted);
    font-size: 0.9rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.metrics-grid article {
    min-height: 235px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    border-radius: 15px;
    background: var(--white);
}

.metrics-grid strong {
    color: var(--navy);
    font-size: 0.8rem;
}

.metrics-grid p {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 720;
}

.strategic-rationale {
    background: var(--navy);
    color: var(--white);
}

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

.rationale-list p {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    margin: 0;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.72);
}

.rationale-list strong {
    color: var(--yellow);
}

.story-grid {
    display: grid;
    gap: 24px;
}

.story-card {
    display: grid;
    grid-template-columns: 0.55fr 1.2fr;
    min-height: 470px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--off-white);
}

.story-card:nth-child(even) {
    grid-template-columns: 1.2fr 0.55fr;
}

.story-card:nth-child(even) .story-photo {
    order: 2;
}

.story-photo img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
}

.story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 7vw, 85px);
}

.story-content blockquote {
    max-width: 730px;
    font-size: clamp(1.55rem, 3vw, 2.7rem);
    font-weight: 720;
    line-height: 1.23;
    letter-spacing: -0.035em;
}

.story-content h2 {
    margin: 25px 0 4px;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.story-content > p {
    color: var(--muted);
    font-size: 0.87rem;
}

.story-feature-band {
    background: var(--navy);
    color: var(--white);
}

.story-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(55px, 8vw, 110px);
    align-items: center;
}

.story-feature-image {
    min-height: 540px;
    overflow: hidden;
    border-radius: var(--radius);
}

.story-feature-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.story-feature-copy p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
}

.story-feature-copy .button {
    margin-top: 25px;
}

.centered-block {
    max-width: 800px;
    text-align: center;
}

.centered-block .eyebrow {
    justify-content: center;
}

.centered-block p {
    max-width: 660px;
    margin-inline: auto;
    color: var(--muted);
}

.centered-block .button {
    margin-top: 25px;
}

.filter-row {
    display: flex;
    gap: 9px;
    margin-bottom: 42px;
}

.filter-button {
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--muted);
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 770;
}

.filter-button.active,
.filter-button:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

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

.gallery-item {
    margin: 0;
}

.gallery-item[hidden] {
    display: none !important;
}

.gallery-item button {
    position: relative;
    width: 100%;
    height: 350px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    background: #ddd;
    cursor: zoom-in;
}

.gallery-item button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease;
}

.gallery-item button span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(17, 18, 61, 0.88);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 780;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity var(--transition), transform var(--transition);
}

.gallery-item button:hover img {
    transform: scale(1.04);
}

.gallery-item button:hover span {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item figcaption {
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.86rem;
}

.video-card {
    padding: 0;
}

.video-frame {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    border-radius: 16px;
    background: var(--navy);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-card > span {
    display: block;
    margin-top: 14px;
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.video-card h2 {
    margin-top: 5px;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 40px;
    background: rgba(7, 8, 28, 0.94);
}

.lightbox[hidden] {
    display: none;
}

.lightbox figure {
    max-width: min(1100px, 90vw);
    max-height: 88vh;
    margin: 0;
}

.lightbox img {
    max-height: 78vh;
    border-radius: 12px;
}

.lightbox figcaption {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 28px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.press-section {
    background: var(--off-white);
}

.application-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 385px;
    gap: clamp(55px, 8vw, 110px);
    align-items: start;
}

.application-tips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 45px;
}

.application-tips article {
    min-height: 265px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 15px;
}

.application-tips span,
.process-grid span {
    color: var(--navy);
    font-size: 0.74rem;
    font-weight: 900;
}

.application-tips h3 {
    margin-top: 65px;
}

.application-tips p {
    color: var(--muted);
    font-size: 0.9rem;
}

.application-aside {
    position: sticky;
    top: 115px;
}

.application-card {
    padding: 32px;
    border-radius: 18px;
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow);
}

.application-card > span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.application-card > strong {
    display: block;
    margin: 5px 0 26px;
    color: var(--yellow);
    font-size: 3rem;
    line-height: 1;
}

.application-card dl {
    margin: 0 0 28px;
}

.application-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.application-card dt {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}

.application-card dd {
    margin: 0;
    font-size: 0.84rem;
    font-weight: 750;
    text-align: right;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.process-grid article {
    min-height: 260px;
    padding: 26px;
    background: var(--white);
    border-radius: 15px;
}

.process-grid h3 {
    margin-top: 80px;
}

.process-grid p {
    color: var(--muted);
    font-size: 0.9rem;
}

.accordion {
    margin-top: 45px;
    border-top: 1px solid var(--line);
}

.accordion-item {
    border-bottom: 1px solid var(--line);
}

.accordion-item > button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 24px 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-weight: 780;
    text-align: left;
}

.accordion-item > button span {
    color: var(--navy);
    font-size: 1.6rem;
    transition: transform var(--transition);
}

.accordion-item > button[aria-expanded="true"] span {
    transform: rotate(45deg);
}

.accordion-item > div {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 250ms ease;
}

.accordion-item > div > p {
    overflow: hidden;
    margin: 0;
    color: var(--muted);
}

.accordion-item.open > div {
    grid-template-rows: 1fr;
}

.accordion-item.open > div > p {
    padding-bottom: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: clamp(55px, 9vw, 130px);
    align-items: start;
}

.contact-details > p,
.contact-details h2 + p {
    color: var(--muted);
}

.contact-list {
    margin: 35px 0;
    border-top: 1px solid var(--line);
}

.contact-list div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
}

.contact-list span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-list a,
.contact-list p {
    margin: 0;
    color: var(--navy);
    font-weight: 730;
}

.contact-details > img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
}

.contact-form-wrap {
    padding: clamp(30px, 5vw, 55px);
    border-radius: var(--radius);
    background: var(--off-white);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 760;
}

.contact-form label > span {
    color: var(--muted);
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ced1da;
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    padding: 13px 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input,
.contact-form select {
    min-height: 50px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(104, 201, 233, 0.2);
    outline: 0;
}

.contact-form .consent {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
}

.contact-form .consent input {
    width: 18px;
    min-height: auto;
    margin-top: 3px;
}

.form-note {
    color: var(--muted);
    font-size: 0.75rem;
}

.form-note code {
    color: var(--navy);
}

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

.form-alert {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 700;
}

.form-alert.success {
    background: #e8f6ef;
    color: var(--success);
}

.form-alert.error {
    background: #fbe9eb;
    color: var(--error);
}

.legal-prose h2 {
    margin-top: 45px;
    font-size: 1.8rem;
}

.footer-cta {
    padding: 75px 0;
    background: var(--navy-2);
    color: var(--white);
}

.footer-cta-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
}

.footer-cta h2 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(2.2rem, 4.2vw, 4.2rem);
}

.footer-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 230px;
}

.site-footer {
    padding: 78px 0 28px;
    background: #090a27;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 0.75fr);
    gap: 55px;
}

.brand-light .brand-copy {
    color: var(--white);
}

.footer-brand-block > p {
    max-width: 350px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.footer-brand-block .legal-note {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
}

.footer-grid h3 {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand-block) > a {
    display: block;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
}

.footer-grid > div:not(.footer-brand-block) > a:hover {
    color: var(--yellow);
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.66rem;
    font-weight: 850;
}

.social-links a:hover {
    border-color: var(--yellow);
    background: var(--yellow);
    color: var(--navy);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 62px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.75rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms ease, transform 650ms ease;
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1120px) {
    .primary-nav {
        gap: 17px;
    }

    .primary-nav a,
    .text-link {
        font-size: 0.82rem;
    }

    .nav-actions {
        gap: 13px;
    }

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

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.19);
    }

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

    .stage-card:nth-child(4),
    .stage-card:nth-child(5) {
        border-top: 1px solid var(--line);
    }

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

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

@media (max-width: 980px) {
    :root {
        --header-height: 74px;
    }

    .announcement-inner {
        justify-content: space-between;
    }

    .menu-button {
        display: block;
        margin-left: auto;
    }

    .nav-actions .text-link {
        display: none;
    }

    .primary-nav {
        position: fixed;
        inset: calc(42px + var(--header-height)) 0 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 35px 20px 50px;
        background: var(--white);
        transform: translateX(100%);
        transition: transform 300ms ease;
        overflow-y: auto;
    }

    .primary-nav.open {
        transform: translateX(0);
    }

    .primary-nav a {
        padding: 18px 0;
        border-bottom: 1px solid var(--line);
        font-size: 1.25rem;
    }

    .primary-nav a::after {
        display: none;
    }

    .menu-button[aria-expanded="true"] span:nth-child(2) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-button[aria-expanded="true"] span:nth-child(3) {
        opacity: 0;
    }

    .menu-button[aria-expanded="true"] span:nth-child(4) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .split-grid,
    .photo-story-grid,
    .image-text-grid,
    .capstone-grid,
    .alumni-teaser-grid,
    .alumni-image-grid,
    .story-feature-grid,
    .application-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .testimonial-image {
        margin-left: 0;
        height: 550px;
    }

    .media-mosaic {
        grid-template-columns: 1.2fr 0.8fr;
        grid-template-rows: 370px 370px;
    }

    .mosaic-wide {
        grid-column: 1 / 3;
    }

    .curriculum-module {
        grid-template-columns: 60px 1fr;
    }

    .module-details {
        grid-column: 2;
    }

    .alumni-tier-grid {
        grid-template-columns: 1fr;
    }

    .tier-card.featured {
        transform: none;
    }

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

    .application-aside {
        position: static;
    }

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

    .footer-brand-block {
        grid-column: 1 / 3;
    }
}

@media (max-width: 700px) {
    @media (max-width: 700px) {
    .container,
    .container.narrow {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand-logo {
        width: 145px;
        max-height: 50px;
    }

    .section {
        padding: 74px 0;
    }
}

    .section {
        padding: 74px 0;
    }

    .announcement-inner {
        min-height: 48px;
        font-size: 0.72rem;
    }

    .announcement-inner span {
        max-width: 230px;
        line-height: 1.25;
    }

    .announcement-inner a {
        white-space: nowrap;
    }

    .brand-copy {
        display: none;
    }

    .nav-wrap {
        gap: 12px;
    }

    .nav-actions .button-small {
        min-height: 42px;
        padding: 10px 17px;
    }

    .primary-nav {
        inset: calc(48px + var(--header-height)) 0 0;
    }

    .hero {
        min-height: calc(100svh - var(--header-height) - 48px);
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(9, 10, 42, 0.95), rgba(9, 10, 42, 0.7)), linear-gradient(0deg, rgba(9, 10, 42, 0.48), transparent);
    }

    .hero h1 {
        font-size: clamp(3.7rem, 18vw, 5.6rem);
    }

    .hero-actions,
    .footer-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stats-grid,
    .stage-grid,
    .module-preview-grid,
    .values-grid,
    .outcome-grid,
    .metrics-grid,
    .gallery-grid,
    .application-tips,
    .process-grid,
    .form-row,
    .footer-cta-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        min-height: 150px;
        padding-left: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.19);
    }

    .stat:last-child {
        border-bottom: 0;
    }

    .stage-card,
    .stage-card:first-child,
    .stage-card:nth-child(4),
    .stage-card:nth-child(5) {
        min-height: auto;
        border: 0;
        border-bottom: 1px solid var(--line);
    }

    .stage-card > span {
        margin-bottom: 45px;
    }

    .photo-collage {
        min-height: 510px;
    }

    .photo-main {
        width: 90%;
        height: 450px;
    }

    .photo-small {
        width: 38%;
        height: 230px;
        border-width: 6px;
    }

    .photo-note {
        left: 15px;
        max-width: 240px;
    }

    .testimonial-image {
        height: 440px;
    }

    .testimonial-quote {
        padding: 60px 25px;
    }

    .alumni-levels div {
        grid-template-columns: 70px 1fr;
        padding: 20px;
    }

    .media-preview .split-grid .arrow-link {
        justify-self: start;
    }

    .media-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 360px);
    }

    .mosaic-wide {
        grid-column: auto;
    }

    .page-hero {
        min-height: 500px;
        padding: 100px 0 68px;
    }

    .page-hero .container {
        margin-left: auto;
    }

    .page-hero h1 {
        font-size: clamp(3rem, 15vw, 4.8rem);
    }

    .value-card,
    .outcome-grid article,
    .metrics-grid article,
    .process-grid article {
        min-height: 220px;
    }

    .image-panel,
    .image-panel img,
    .alumni-image,
    .alumni-image img {
        min-height: 480px;
        height: 480px;
    }

    .timeline-item {
        grid-template-columns: 55px 1fr;
    }

    .curriculum-module {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 45px 0;
    }

    .module-details {
        grid-column: auto;
    }

    .tier-card {
        min-height: 330px;
    }

    .tier-card h3 {
        margin-top: 80px;
    }

    .rationale-list p {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .story-card,
    .story-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .story-card:nth-child(even) .story-photo {
        order: initial;
    }

    .story-photo img {
        min-height: 390px;
        height: 390px;
    }

    .story-content {
        padding: 38px 25px 48px;
    }

    .gallery-item button {
        height: 330px;
    }

    .lightbox {
        padding: 18px;
    }

    .contact-form-wrap {
        padding: 28px 18px;
    }

    .contact-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .footer-brand-block {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
