*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
	--purple: #41177A;
	--purple-deep: #1F0A3D;
	--purple-soft: #6E3CB0;
	--purple-lt: #AF7DF3;
	--gold: #F3C626;
	--gold-deep: #DCAF10;
	--cream: #F4F1EA;
	--cream-deep: #E3E5DE;
	--ink: #0F0814;
	--gray: #7B7E86;
	--gray-line: #D9D6CF;
}

html { scroll-behavior: smooth; }

body {
	font-family: 'Roboto', sans-serif;
	background: var(--cream);
	color: var(--ink);
	overflow-x: clip;
}

.display {
	font-family: 'Jost', sans-serif;
	font-weight: 900;
	line-height: .85;
	letter-spacing: -.02em;
	text-transform: uppercase;
}

.serif-i {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	letter-spacing: -.01em;
	text-transform: none;
}

@keyframes pulse {
	70%  { box-shadow: 0 0 0 8px rgba(243,198,38,0); }
	100% { box-shadow: 0 0 0 0 rgba(243,198,38,0); }
}

@keyframes rise   { to { transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes dotPop { to { transform: scale(1); } }
@keyframes admFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }


/* ─────────────────────────────────────────────────────────
   BREADCRUMB
   ───────────────────────────────────────────────────────── */

.crumb {
	background: var(--cream);
	padding: 18px 44px;
	border-bottom: 1px solid rgba(15,8,20,.06);
	font-size: 11.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gray);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.crumb a { color: var(--gray); text-decoration: none; transition: color .2s; }
.crumb a:hover { color: var(--purple); }
.crumb .sep { color: var(--gold); }
.crumb .current { color: var(--ink); }


/* ─────────────────────────────────────────────────────────
   SECTION HEADER
   ───────────────────────────────────────────────────────── */

.sec-header {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 32px;
	align-items: end;
	padding: 110px 44px 60px;
}

.sec-title {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: clamp(48px, 6.5vw, 96px);
	line-height: .92;
	letter-spacing: -.02em;
	color: var(--ink);
}

.sec-title .serif-i { color: var(--purple); display: inline-block; }

.sec-link {
	font-family: 'Jost', sans-serif;
	font-size: 12px;
	letter-spacing: .14em;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--ink);
	text-decoration: none;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--ink);
	transition: color .2s, border-color .2s;
	white-space: nowrap;
}

.sec-link:hover { color: var(--purple); border-color: var(--purple); }

/* Dark sections invert the title and the header link */
.progs .sec-title,
.journey .sec-title,
.fees .sec-title,
.faq .sec-title { color: var(--cream); }

.progs .sec-title .serif-i,
.journey .sec-title .serif-i,
.fees .sec-title .serif-i,
.faq .sec-title .serif-i { color: var(--gold); }

.progs .sec-link,
.fees .sec-link { color: var(--gold); border-color: var(--gold); }

.journey .sec-link,
.faq .sec-link { color: var(--cream); border-color: var(--cream); }

.progs .sec-link:hover,
.fees .sec-link:hover { color: var(--cream); border-color: var(--cream); }

.journey .sec-link:hover,
.faq .sec-link:hover { color: var(--gold); border-color: var(--gold); }


/* ─────────────────────────────────────────────────────────
   REVEAL
   ───────────────────────────────────────────────────────── */

.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1);
}

.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .28s; }

/* Split-word titles — the JS wraps each word */
.split-words { opacity: 1; transform: none; transition: none; }

.sw {
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
	line-height: inherit;
	padding-bottom: .25em;
	margin-bottom: -.18em;
}

.sw-i {
	display: inline-block;
	transform: translateY(115%);
	transition: transform 1.1s cubic-bezier(.22,.61,.36,1);
}

.split-words.in .sw-i { transform: translateY(0); }


/* ─────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────── */

.hero {
	background: var(--cream);
	padding: 44px 44px 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 32px;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.hero-bg-trail { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.pixel-trail { position: relative; width: 100%; height: 100%; overflow: hidden; }
.pixel-row { display: flex; line-height: 0; }
.pixel-dot { width: 32px; height: 32px; flex-shrink: 0; background: #FCC400; opacity: 0; }

.hero-title {
	font-size: clamp(48px, 8vw, 124px);
	color: var(--ink);
	line-height: .94;
	position: relative;
	z-index: 2;
	padding-top: 12px;
}

.hero-title .row { display: block; overflow: hidden; }

.hero-title .row span {
	display: inline-block;
	transform: translateY(110%);
	animation: rise 1.1s cubic-bezier(.22,.61,.36,1) forwards;
}

.hero-title .row.r1 span { animation-delay: .15s; }
.hero-title .row.r2 span { animation-delay: .3s; }

.hero-title em.serif-i { color: var(--purple); display: inline-block; transform: translateY(8px); }

.hero-title .gold-dot {
	color: var(--gold);
	display: inline-block;
	transform: scale(0);
	animation: dotPop .6s cubic-bezier(.4,1.6,.64,1) 1.7s forwards;
}

.hero-bottom {
	display: flex;
	justify-content: flex-end;
	align-items: end;
	padding-top: 28px;
	border-top: 1px solid rgba(15,8,20,.12);
	position: relative;
	z-index: 2;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	opacity: 0;
	animation: fadeUp 1s ease .9s forwards;
	min-width: 0;
}

.hero-cta {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	background: var(--ink);
	color: var(--cream);
	padding: 15px 22px;
	font-family: 'Jost', sans-serif;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background .25s;
	position: relative;
	overflow: hidden;
}

.hero-cta:hover { background: var(--purple); }

.hero-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: -120%;
	width: 50%;
	height: 100%;
	background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
	transition: left .8s ease;
}

.hero-cta:hover::before { left: 220%; }

.hero-cta .arrow { width: 28px; height: 1px; background: var(--gold); position: relative; }

.hero-cta .arrow::after {
	content: '';
	position: absolute;
	right: 0;
	top: -3px;
	width: 8px;
	height: 8px;
	border-top: 1px solid var(--gold);
	border-right: 1px solid var(--gold);
	transform: rotate(45deg);
}

.hero-cta.ghost {
	background: transparent;
	color: var(--purple);
	padding: 10px 0;
	justify-content: flex-start;
}

.hero-cta.ghost::before { display: none; }
.hero-cta.ghost:hover { background: transparent; color: var(--ink); }


/* ─────────────────────────────────────────────────────────
   QUICK FACTS
   ───────────────────────────────────────────────────────── */

.quick-facts {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 0 -44px;
	border-top: 1px solid rgba(15,8,20,.12);
	border-bottom: 1px solid rgba(15,8,20,.12);
	background: rgba(255,255,255,.4);
}

.qf-item {
	padding: 22px 28px;
	border-right: 1px solid rgba(15,8,20,.12);
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	opacity: 0;
	animation: fadeUp 1s ease 1.1s forwards;
}

.qf-item:last-child { border-right: none; }
.qf-item:nth-child(2) { animation-delay: 1.2s; }
.qf-item:nth-child(3) { animation-delay: 1.3s; }
.qf-item:nth-child(4) { animation-delay: 1.4s; }

.qf-lbl {
	font-family: 'Jost', sans-serif;
	font-size: 10px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gray);
	font-weight: 600;
}

.qf-val {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: clamp(20px, 1.7vw, 24px);
	color: var(--ink);
	letter-spacing: -.01em;
	line-height: 1.1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.qf-val .serif-i { color: var(--purple); font-weight: 400; }
.qf-val .gold { color: var(--gold); }
.qf-val sup { font-size: 12px; color: var(--purple); }


/* ─────────────────────────────────────────────────────────
   INTRO SPLIT
   ───────────────────────────────────────────────────────── */

.whatis { background: var(--cream); padding-bottom: 110px; position: relative; overflow: hidden; }

.whatis-split {
	margin: 0 44px;
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 64px;
	align-items: stretch;
}

.whatis-editorial {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	padding-left: 44px;
}

.whatis-editorial::before {
	content: '"';
	position: absolute;
	left: -10px;
	top: -36px;
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	color: var(--gold);
	font-size: 160px;
	line-height: 1;
	opacity: .95;
	pointer-events: none;
}

.whatis-quote {
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	font-size: clamp(22px, 2.1vw, 30px);
	line-height: 1.35;
	color: var(--ink);
	letter-spacing: -.015em;
	max-width: 580px;
}

.whatis-quote strong { color: var(--purple); font-weight: 700; }

.whatis-quote em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--purple);
}

.whatis-quote p + p { margin-top: 16px; }

.whatis-footnote {
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid var(--gray-line);
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	font-family: 'Jost', sans-serif;
	font-size: 11.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gray);
	font-weight: 600;
}

.whatis-footnote .lbl { color: var(--purple); font-weight: 700; letter-spacing: .2em; }

.whatis-footnote em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--ink);
	letter-spacing: 0;
	text-transform: none;
	font-size: 15px;
}

.whatis-footnote a {
	color: var(--gold-deep);
	text-decoration: none;
	margin-left: auto;
	padding-bottom: 4px;
	border-bottom: 1px solid var(--gold);
	transition: color .25s, border-color .25s;
}

.whatis-footnote a:hover { color: var(--ink); border-color: var(--ink); }

.whatis-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid var(--gray-line);
	background: #fff;
	align-self: start;
}

.whatis-stat {
	padding: 30px 26px 26px;
	border-right: 1px solid var(--gray-line);
	border-bottom: 1px solid var(--gray-line);
	display: flex;
	flex-direction: column;
	gap: 4px;
	transition: background .35s, padding-left .35s;
	cursor: default;
	position: relative;
	min-height: 180px;
	overflow: hidden;
}

.whatis-stat:nth-child(2n) { border-right: none; }
.whatis-stat:nth-last-child(-n+2) { border-bottom: none; }

.whatis-stat::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--gold);
	transform: scaleY(0);
	transform-origin: center;
	transition: transform .45s cubic-bezier(.22,.61,.36,1);
}

.whatis-stat:hover { background: var(--cream); padding-left: 34px; }
.whatis-stat:hover::before { transform: scaleY(1); }

.whatis-stat-num {
	font-family: 'Jost', sans-serif;
	font-weight: 900;
	font-size: clamp(46px, 5vw, 64px);
	color: var(--purple);
	line-height: .9;
	letter-spacing: -.04em;
	transition: color .35s;
}

.whatis-stat-num em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--purple);
}

.whatis-stat:hover .whatis-stat-num { color: var(--ink); }

.whatis-stat-lbl {
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--gold-deep);
	font-weight: 700;
	margin-top: 8px;
}

.whatis-stat-desc { font-size: 12.5px; line-height: 1.5; color: var(--gray); margin-top: 6px; }


/* ─────────────────────────────────────────────────────────
   PROGRAMMES
   ---------------------------------------------------------
   --pcols comes from the block, so a two-column group needs
   no extra class. .bsc is kept as an alias for anything
   still using the old markup.
   ───────────────────────────────────────────────────────── */

.progs { background: var(--purple); color: var(--cream); padding-bottom: 130px; position: relative; }

.progs-intro {
	max-width: 760px;
	margin: 0 44px 60px;
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255,255,255,.7);
}

.progs-group {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: 24px;
	color: var(--gold);
	letter-spacing: -.01em;
	margin: 0 44px 22px;
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
}

.progs-group.two { margin-top: 60px; }

.progs-group span {
	color: rgba(255,255,255,.5);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: .04em;
}

.progs-grid {
	margin: 0 44px;
	display: grid;
	grid-template-columns: repeat(var(--pcols, 3), 1fr);
	gap: 1px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.12);
}

.progs-grid.bsc { --pcols: 2; }

.prog-card {
	background: var(--purple);
	padding: 36px 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 22px;
	text-decoration: none;
	cursor: pointer;
	position: relative;
	min-height: 320px;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s cubic-bezier(.22,.61,.36,1), background .35s, padding .3s;
}

.prog-card.in { opacity: 1; transform: translateY(0); }
.prog-card:nth-child(2).in { transition-delay: .1s; }
.prog-card:nth-child(3).in { transition-delay: .2s; }
.prog-card:nth-child(4).in { transition-delay: .3s; }
.prog-card:nth-child(5).in { transition-delay: .4s; }
.prog-card:nth-child(6).in { transition-delay: .5s; }
.prog-card:nth-child(7).in { transition-delay: .6s; }

.prog-card:hover { background: var(--purple-deep); padding-left: 40px; }

.prog-card::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--gold);
	transition: width .6s cubic-bezier(.22,.61,.36,1);
}

.prog-card:hover::after { width: 100%; }

/* Featured and coming-soon variants */
.prog-card.prog-featured { background: var(--purple-deep); outline: 2px solid var(--gold); outline-offset: -2px; }
.prog-card.prog-featured:hover { background: var(--ink); }

.prog-card.prog-soon { opacity: .55; }
.prog-card.prog-soon.in { opacity: .55; }
.prog-card.prog-soon:hover { opacity: .9; }
.prog-card.prog-soon .prog-num em { color: var(--gray); }
.prog-card.prog-soon .prog-link { color: var(--gray); }
.prog-card.prog-soon .prog-link .arrow-line { background: var(--gray); }
.prog-card.prog-soon .prog-link .arrow-line::after { border-color: var(--gray); }

.prog-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }

.prog-num {
	font-family: 'Jost', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: var(--gold);
	letter-spacing: .14em;
}

.prog-num em { color: var(--gold); }

.prog-dur {
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255,255,255,.6);
	font-weight: 600;
	padding: 5px 10px;
	border: 1px solid rgba(255,255,255,.2);
	white-space: nowrap;
}

.prog-deg {
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
}

.prog-name {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: 26px;
	color: var(--cream);
	line-height: 1.1;
	letter-spacing: -.005em;
}

.prog-name .tag {
	display: inline-block;
	margin-left: 8px;
	font-size: 9.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	padding: 3px 8px;
	background: rgba(243,198,38,.18);
	color: var(--gold);
	border: 1px solid rgba(243,198,38,.35);
	font-weight: 700;
	vertical-align: middle;
}

.prog-desc { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.7); flex-grow: 1; }

.prog-link {
	margin-top: auto;
	font-family: 'Jost', sans-serif;
	font-size: 11.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gold);
	display: flex;
	align-items: center;
	gap: 10px;
	transition: gap .3s;
}

.prog-card:hover .prog-link { gap: 16px; }

.prog-link .arrow-line { width: 24px; height: 1px; background: var(--gold); position: relative; }

.prog-link .arrow-line::after {
	content: '';
	position: absolute;
	right: 0;
	top: -3px;
	width: 7px;
	height: 7px;
	border-top: 1px solid var(--gold);
	border-right: 1px solid var(--gold);
	transform: rotate(45deg);
}

.prog-counsellor {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	margin: 28px 44px 0;
	padding: 26px 36px;
	background: transparent;
	border: 1px solid rgba(243,198,38,.35);
	color: var(--cream);
	text-decoration: none;
	transition: background .3s, border-color .3s, padding-left .3s;
}

.prog-counsellor:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); padding-left: 44px; }

.pc-lbl { font-family: 'Jost', sans-serif; font-size: clamp(15px, 1.4vw, 19px); font-weight: 500; line-height: 1.3; }

.pc-cta {
	font-family: 'Jost', sans-serif;
	font-size: 12.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gold);
	display: inline-flex;
	align-items: center;
	gap: 14px;
	white-space: nowrap;
	transition: color .3s;
}

.prog-counsellor:hover .pc-cta { color: var(--ink); }

.pc-arrow { width: 36px; height: 1px; background: var(--gold); position: relative; transition: background .3s, width .3s; }

.pc-arrow::after {
	content: '';
	position: absolute;
	right: 0;
	top: -4px;
	width: 9px;
	height: 9px;
	border-top: 1px solid var(--gold);
	border-right: 1px solid var(--gold);
	transform: rotate(45deg);
	transition: border-color .3s;
}

.prog-counsellor:hover .pc-arrow { background: var(--ink); width: 48px; }
.prog-counsellor:hover .pc-arrow::after { border-color: var(--ink); }


/* ─────────────────────────────────────────────────────────
   PILLARS
   ───────────────────────────────────────────────────────── */

.why { background: var(--cream); padding: 100px 0 120px; }

.pillars-head {
	padding: 0 44px;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: end;
	margin-bottom: 60px;
}

.pillars-title {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: clamp(42px, 5.5vw, 78px);
	line-height: .95;
	letter-spacing: -.02em;
	color: var(--ink);
}

.pillars-title .serif-i { color: var(--purple); }

.pillars-sub { font-size: 16px; line-height: 1.65; color: var(--gray); max-width: 480px; }

.pillars-grid {
	margin: 0 44px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: stretch;
}

.pillars-visual {
	position: relative;
	overflow: hidden;
	background: var(--purple-deep);
	min-height: 520px;
	align-self: stretch;
}

.pillars-visual-frame { position: absolute; inset: 0; }

.pillars-visual-img { position: absolute; inset: 0; opacity: 0; transition: opacity .7s cubic-bezier(.45,0,.25,1); }

.pillars-visual-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(.85) contrast(1.05);
	transform: scale(1.02);
	transition: transform 2s cubic-bezier(.22,.61,.36,1);
}

.pillars-visual-img.active { opacity: 1; }
.pillars-visual-img.active img { transform: scale(1); }

.pillars-visual-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15,8,20,0) 40%, rgba(15,8,20,.55) 100%);
}

.pillars-visual-badge {
	position: absolute;
	top: 22px;
	left: 22px;
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gold);
	padding: 8px 14px;
	background: rgba(15,8,20,.65);
	backdrop-filter: blur(6px);
	z-index: 3;
	font-weight: 700;
}

.pillars-visual-caption {
	position: absolute;
	bottom: 26px;
	left: 26px;
	right: 26px;
	z-index: 3;
	color: var(--cream);
	font-family: 'Jost', sans-serif;
	font-size: clamp(20px, 1.8vw, 26px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -.01em;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .5s ease .15s, transform .6s cubic-bezier(.22,.61,.36,1) .15s;
}

.pillars-visual-caption.active { opacity: 1; transform: translateY(0); }

.pillars-visual-caption em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--gold);
}

.pillars-list { display: flex; flex-direction: column; border-top: 1px solid var(--gray-line); }

.pillar-row {
	display: grid;
	grid-template-columns: 60px 1fr auto;
	gap: 22px;
	align-items: center;
	padding: 28px 0;
	border-bottom: 1px solid var(--gray-line);
	cursor: pointer;
	transition: padding-left .4s cubic-bezier(.22,.61,.36,1), background .3s;
	position: relative;
}

.pillar-row:hover,
.pillar-row.is-active { padding-left: 18px; }

.pillar-row::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--gold);
	transform: scaleY(0);
	transform-origin: center;
	transition: transform .45s cubic-bezier(.22,.61,.36,1);
}

.pillar-row:hover::before,
.pillar-row.is-active::before { transform: scaleY(1); }

.pillar-row-num {
	font-family: 'Jost', sans-serif;
	font-weight: 900;
	font-size: 26px;
	color: var(--gray-line);
	line-height: 1;
	letter-spacing: -.02em;
	transition: color .35s;
}

.pillar-row:hover .pillar-row-num,
.pillar-row.is-active .pillar-row-num { color: var(--purple); }

.pillar-row-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }

.pillar-row-name {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: clamp(22px, 2vw, 28px);
	line-height: 1.15;
	color: var(--ink);
	letter-spacing: -.01em;
	transition: color .3s;
}

.pillar-row-name em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--purple);
}

.pillar-row-desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--gray);
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height .55s cubic-bezier(.22,.61,.36,1), opacity .4s ease, margin-top .55s cubic-bezier(.22,.61,.36,1);
}

.pillar-row:hover .pillar-row-desc,
.pillar-row.is-active .pillar-row-desc { max-height: 200px; opacity: 1; margin-top: 4px; }

.pillar-row-arrow {
	font-family: 'Jost', sans-serif;
	font-size: 18px;
	color: var(--gray);
	transition: color .35s, transform .35s;
}

.pillar-row:hover .pillar-row-arrow,
.pillar-row.is-active .pillar-row-arrow { color: var(--gold); transform: translateX(6px); }


/* ─────────────────────────────────────────────────────────
   JOURNEY
   ---------------------------------------------------------
   --jcols is the step count. The rail runs from the centre
   of the first dot to just past the last one, which is why
   it stops one column short.
   ───────────────────────────────────────────────────────── */

.journey { background: var(--ink); color: var(--cream); padding-bottom: 130px; }

.journey-intro {
	max-width: 760px;
	margin: 0 44px 70px;
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255,255,255,.6);
}

.journey-rail { position: relative; margin: 0 44px; padding-top: 14px; }

.journey-rail::before {
	content: '';
	position: absolute;
	top: 22px;
	left: 9px;
	right: calc(100% / var(--jcols, 4) - 24px);
	height: 2px;
	background: linear-gradient(to right, var(--gold) 0%, var(--gold) 78%, rgba(243,198,38,.15) 100%);
	z-index: 1;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 1.4s cubic-bezier(.7,0,.25,1);
}

.journey-rail.in::before { transform: scaleX(1); }

.journey-grid {
	display: grid;
	grid-template-columns: repeat(var(--jcols, 4), 1fr);
	position: relative;
	z-index: 2;
}

.jstep {
	display: flex;
	flex-direction: column;
	padding: 0 24px 36px 0;
	position: relative;
	align-items: flex-start;
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity .9s ease, transform 1s cubic-bezier(.22,.61,.36,1);
}

.jstep:last-child { padding-right: 0; }
.jstep.in { opacity: 1; transform: translateX(0); }
.jstep:nth-child(1).in { transition-delay: .15s; }
.jstep:nth-child(2).in { transition-delay: .45s; }
.jstep:nth-child(3).in { transition-delay: .75s; }
.jstep:nth-child(4).in { transition-delay: 1.05s; }

.jstep-dot {
	width: 18px;
	height: 18px;
	background: var(--ink);
	border: 2px solid var(--gold);
	border-radius: 50%;
	box-shadow: 0 0 0 6px rgba(243,198,38,.12);
	position: relative;
	z-index: 3;
	opacity: 0;
	transform: scale(0);
	transition: opacity .4s ease, transform .5s cubic-bezier(.4,1.6,.64,1);
}

.jstep.in .jstep-dot { opacity: 1; transform: scale(1); transition-delay: inherit; }

.jstep-dot::after {
	content: '';
	position: absolute;
	inset: 3px;
	background: var(--gold);
	border-radius: 50%;
	opacity: 0;
	transition: opacity .35s;
}

.jstep:hover .jstep-dot { transform: scale(1.15); }
.jstep:hover .jstep-dot::after { opacity: 1; }

.jstep-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	background: var(--purple-deep);
	border: 1px solid rgba(255,255,255,.08);
	margin-top: 28px;
}

.jstep-pill .yr {
	font-family: 'Jost', sans-serif;
	font-size: 10.5px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
}

.jstep-pill .num {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: 18px;
	color: var(--cream);
	line-height: 1;
}

.jstep-name {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: clamp(22px, 2vw, 28px);
	line-height: 1.1;
	color: var(--cream);
	letter-spacing: -.01em;
	margin: 22px 0 14px;
}

.jstep-name em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--gold);
}

.jstep-desc { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.6); margin-bottom: 18px; }

.jstep-tag {
	font-family: 'Jost', sans-serif;
	font-size: 10px;
	letter-spacing: .18em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gold);
	padding-top: 14px;
	border-top: 1px solid rgba(255,255,255,.1);
	margin-top: auto;
	width: 100%;
}


/* ─────────────────────────────────────────────────────────
   STUDIOS
   ---------------------------------------------------------
   Rendered by courses_studios_block, the same block the
   Courses list page uses.
   ───────────────────────────────────────────────────────── */

.studios { background: var(--cream); padding-bottom: 130px; }

.studios-intro { max-width: 760px; margin: 0 44px 70px; font-size: 18px; line-height: 1.6; color: var(--gray); }

.studios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 0 44px 60px; }

.studio-block {
	display: flex;
	flex-direction: column;
	background: #fff;
	overflow: hidden;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .9s ease, transform .9s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease;
}

.studio-block.in { opacity: 1; transform: translateY(0); }
.studio-block:nth-child(2).in { transition-delay: .12s; }
.studio-block:nth-child(3).in { transition-delay: .24s; }
.studio-block:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(31,10,61,.1); }

.studio-img { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--purple); }
.studio-img-frame { position: absolute; inset: 0; }

.studio-img-slot { position: absolute; inset: 0; opacity: 0; transition: opacity .55s cubic-bezier(.45,0,.25,1); }
.studio-img-slot.active { opacity: 1; }

.studio-img-slot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	transition: transform 1.4s cubic-bezier(.22,.61,.36,1);
	filter: brightness(.95);
}

.studio-img-slot.active img { transform: scale(1); }
.studio-block:hover .studio-img-slot.active img { transform: scale(1.05); }

.studio-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15,8,20,0) 50%, rgba(15,8,20,.55) 100%);
	pointer-events: none;
	z-index: 2;
}

.studio-img-badge {
	position: absolute;
	bottom: 18px;
	left: 20px;
	font-family: 'Jost', sans-serif;
	font-size: 10.5px;
	letter-spacing: .18em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gold);
	padding: 6px 12px;
	background: rgba(15,8,20,.55);
	backdrop-filter: blur(6px);
	z-index: 3;
	transition: opacity .3s;
}

.studio-img-caption {
	position: absolute;
	right: 20px;
	bottom: 18px;
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--cream);
	padding: 6px 12px;
	background: rgba(65,23,122,.85);
	backdrop-filter: blur(6px);
	z-index: 3;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .35s, transform .35s;
}

.studio-img-caption.show { opacity: 1; transform: translateY(0); }

.studio-body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 18px; flex: 1; }

.studio-block-num {
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	letter-spacing: .18em;
	color: var(--gray);
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 12px;
}

.studio-block-num::before { content: ''; width: 24px; height: 1px; background: var(--purple); }
.studio-block-num strong { color: var(--purple); }

.studio-block-name {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: clamp(22px, 1.9vw, 26px);
	line-height: 1.1;
	color: var(--ink);
	letter-spacing: -.01em;
}

.studio-block-name em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--purple);
}

.studio-list { list-style: none; display: flex; flex-direction: column; margin-top: 4px; }

.studio-list li {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 10px;
	align-items: baseline;
	font-size: 14px;
	line-height: 1.5;
	color: var(--ink);
	padding: 12px 0;
	border-bottom: 1px solid rgba(15,8,20,.08);
	cursor: pointer;
	transition: padding-left .3s, color .3s;
}

.studio-list li:last-child { border-bottom: none; }

.studio-list li::before {
	content: '→';
	color: var(--gold);
	font-family: 'Jost', sans-serif;
	font-weight: 700;
	font-size: 13px;
	transition: transform .3s;
}

.studio-list li:hover { padding-left: 8px; }
.studio-list li:hover::before { transform: translateX(4px); }
.studio-list li.is-active { padding-left: 8px; }
.studio-list li.is-active strong { color: var(--gold-deep); }

.studio-list li strong {
	font-family: 'Jost', sans-serif;
	font-weight: 700;
	color: var(--purple);
	display: block;
	font-size: 14.5px;
	margin-bottom: 3px;
	transition: color .3s;
}

.studio-list li span { color: var(--gray); font-size: 12.5px; line-height: 1.45; }

.studios-location {
	margin: 0 44px;
	color: var(--cream);
	padding: 56px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 36px;
	align-items: center;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	min-height: 200px;
	background: var(--purple-deep);
}

.studios-location-bg { position: absolute; inset: 0; z-index: -2; }

.studios-location-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.04);
	transition: transform 8s cubic-bezier(.22,.61,.36,1);
}

.studios-location:hover .studios-location-bg img { transform: scale(1.1); }

.studios-location-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(31,10,61,.85) 0%, rgba(65,23,122,.75) 50%, rgba(15,8,20,.7) 100%);
	z-index: 1;
}

.studios-location-lbl {
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	z-index: 2;
	white-space: nowrap;
}

.studios-location-lbl::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

.studios-location-text {
	font-family: 'Jost', sans-serif;
	font-size: clamp(20px, 1.8vw, 26px);
	font-weight: 600;
	line-height: 1.3;
	color: var(--cream);
	position: relative;
	z-index: 2;
	text-shadow: 0 2px 18px rgba(15,8,20,.45);
}

.studios-location-text em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--gold);
}

.studios-location-pin {
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--cream);
	font-weight: 700;
	padding: 10px 18px;
	border: 1px solid rgba(255,255,255,.35);
	background: rgba(15,8,20,.25);
	backdrop-filter: blur(6px);
	position: relative;
	z-index: 2;
	white-space: nowrap;
}


/* ─────────────────────────────────────────────────────────
   FEES
   ───────────────────────────────────────────────────────── */

.fees { background: var(--purple-deep); color: var(--cream); padding-bottom: 130px; position: relative; overflow: hidden; }

.fees::before {
	content: 'fee';
	position: absolute;
	top: 80px;
	right: -40px;
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-size: 320px;
	color: rgba(255,255,255,.025);
	line-height: 1;
	pointer-events: none;
}

.fees-intro {
	max-width: 760px;
	margin: 0 44px 60px;
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255,255,255,.7);
	position: relative;
	z-index: 2;
}

.fees-group {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: 23px;
	color: var(--gold);
	letter-spacing: -.01em;
	margin: 0 44px 20px;
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
}

.fees-group.two { margin-top: 56px; }

.fees-group span {
	color: rgba(255,255,255,.5);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: .04em;
}

.fees-table { margin: 0 44px; position: relative; z-index: 2; }

.fees-thead {
	display: grid;
	grid-template-columns: 60px 1fr 160px 1fr;
	gap: 24px;
	padding: 18px 28px;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.1);
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gold);
}

.fees-row {
	display: grid;
	grid-template-columns: 60px 1fr 160px 1fr;
	gap: 24px;
	padding: 28px;
	border-left: 1px solid rgba(255,255,255,.1);
	border-right: 1px solid rgba(255,255,255,.1);
	border-bottom: 1px solid rgba(255,255,255,.08);
	align-items: center;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1), background .3s, padding-left .3s;
}

.fees-row.in { opacity: 1; transform: translateY(0); }
.fees-row:nth-child(2).in { transition-delay: .05s; }
.fees-row:nth-child(3).in { transition-delay: .1s; }
.fees-row:nth-child(4).in { transition-delay: .15s; }
.fees-row:nth-child(5).in { transition-delay: .2s; }
.fees-row:nth-child(6).in { transition-delay: .25s; }
.fees-row:nth-child(7).in { transition-delay: .3s; }
.fees-row:nth-child(8).in { transition-delay: .35s; }

.fees-row:hover { background: rgba(243,198,38,.05); padding-left: 36px; }

.fees-row-num {
	font-family: 'Jost', sans-serif;
	font-size: 13px;
	color: var(--gold);
	font-weight: 700;
	letter-spacing: .12em;
}

.fees-row-name {
	font-family: 'Jost', sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: var(--cream);
	letter-spacing: -.005em;
}

.fees-row-name .tag {
	display: inline-block;
	margin-left: 8px;
	font-size: 9px;
	letter-spacing: .14em;
	text-transform: uppercase;
	padding: 2px 6px;
	background: rgba(243,198,38,.18);
	color: var(--gold);
	border: 1px solid rgba(243,198,38,.35);
	font-weight: 700;
	vertical-align: middle;
}

.fees-row-dur {
	font-family: 'Jost', sans-serif;
	font-size: 13px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255,255,255,.6);
	font-weight: 600;
}

.fees-row-amount {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: 26px;
	color: var(--gold);
	letter-spacing: -.02em;
	text-align: right;
}

.fees-row-amount span { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 500; letter-spacing: 0; margin-left: 6px; }

/* "Coming 2026" and the like — a phrase, not a figure */
.fees-row-amount.soft { font-size: 18px; color: rgba(255,255,255,.55); font-weight: 600; }

.fees-note {
	margin: 32px 44px 0;
	padding: 22px 28px;
	background: rgba(243,198,38,.08);
	border-left: 3px solid var(--gold);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 22px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.fees-note-lbl {
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
}

.fees-note-text { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.85); }
.fees-note-text a { color: var(--gold); text-decoration: none; }
.fees-note-text a:hover { text-decoration: underline; }


/* ─────────────────────────────────────────────────────────
   ADMISSIONS
   ───────────────────────────────────────────────────────── */

.admissions { background: var(--cream); padding-bottom: 100px; }
.admissions .sec-header { padding: 80px 44px 28px; }

.adm-elig {
	margin: 0 44px 22px;
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	font-family: 'Jost', sans-serif;
	font-size: 12px;
	letter-spacing: .12em;
	color: var(--gray);
	font-weight: 600;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--gray-line);
}

.adm-elig .lbl {
	color: var(--purple);
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.adm-elig .lbl::before { content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.adm-elig .sep { width: 1px; height: 12px; background: var(--gray-line); }
.adm-elig strong { color: var(--ink); font-weight: 700; letter-spacing: 0; text-transform: none; font-size: 14px; }

.adm-elig em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--purple);
	letter-spacing: 0;
	text-transform: none;
	font-size: 16px;
}

.adm-flow { margin: 0 44px; background: #fff; border: 1px solid var(--gray-line); position: relative; }

.adm-tabs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
	grid-auto-flow: column;
	border-bottom: 1px solid var(--gray-line);
}

.adm-tab {
	padding: 22px 22px 20px;
	border: none;
	border-right: 1px solid var(--gray-line);
	background: transparent;
	cursor: pointer;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: background .3s;
	position: relative;
	min-width: 0;
}

.adm-tab:last-child { border-right: none; }

.adm-tab::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 3px;
	background: var(--gold);
	transform: scaleX(0);
	transition: transform .45s cubic-bezier(.22,.61,.36,1);
}

.adm-tab:hover { background: rgba(243,198,38,.05); }
.adm-tab.active { background: var(--cream); }
.adm-tab.active::before { transform: scaleX(1); }

.adm-tab-num {
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	letter-spacing: .2em;
	color: var(--gray);
	font-weight: 700;
	transition: color .35s;
}

.adm-tab.active .adm-tab-num { color: var(--purple); }

.adm-tab-name {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: clamp(15px, 1.3vw, 18px);
	line-height: 1.15;
	color: var(--ink);
	letter-spacing: -.005em;
}

.adm-tab-date {
	font-family: 'Jost', sans-serif;
	font-size: 11.5px;
	color: var(--gray);
	font-weight: 600;
	letter-spacing: .04em;
	transition: color .35s;
}

.adm-tab.active .adm-tab-date { color: var(--purple); font-weight: 700; }

.adm-tab-date.tbd {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 0;
}

.adm-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--gray-line); }
.adm-progress-fill { position: absolute; left: 0; top: 0; bottom: 0; background: var(--gold); width: 0; transition: width .55s cubic-bezier(.22,.61,.36,1); }

.adm-body { padding: 36px; min-height: 240px; position: relative; }

.adm-panel { display: none; grid-template-columns: 280px 1fr auto; gap: 36px; align-items: start; }
.adm-panel.active { display: grid; animation: admFade .45s cubic-bezier(.22,.61,.36,1); }

.adm-panel-num {
	font-family: 'Jost', sans-serif;
	font-weight: 900;
	font-size: clamp(64px, 6vw, 88px);
	color: var(--purple);
	line-height: .85;
	letter-spacing: -.04em;
}

.adm-panel-lbl {
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--purple);
	font-weight: 700;
	margin-top: 10px;
}

.adm-panel-title {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: clamp(26px, 2.4vw, 32px);
	line-height: 1.05;
	color: var(--ink);
	letter-spacing: -.01em;
	margin-bottom: 14px;
}

.adm-panel-title em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--purple);
}

.adm-panel-desc { font-size: 14.5px; line-height: 1.65; color: var(--gray); margin-bottom: 16px; max-width: 540px; }

.adm-panel-points { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; }

.adm-panel-points li { font-size: 13px; line-height: 1.5; color: var(--ink); padding-left: 16px; position: relative; }
.adm-panel-points li::before { content: '•'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.adm-panel-meta { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; text-align: right; min-width: 200px; }

.adm-panel-date {
	font-family: 'Jost', sans-serif;
	font-weight: 900;
	font-size: clamp(40px, 4vw, 56px);
	color: var(--ink);
	line-height: .9;
	letter-spacing: -.03em;
	display: flex;
	align-items: flex-start;
	gap: 4px;
}

.adm-panel-date .mon {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	font-size: .45em;
	color: var(--purple);
	padding-top: .25em;
	letter-spacing: -.01em;
	text-transform: lowercase;
}

.adm-panel-date.tbd {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--gray);
	font-size: clamp(28px, 3vw, 38px);
}

.adm-panel-status {
	padding: 6px 12px;
	font-family: 'Jost', sans-serif;
	font-size: 10.5px;
	letter-spacing: .18em;
	text-transform: uppercase;
	font-weight: 700;
}

.adm-panel-status.deadline { background: var(--gold); color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.adm-panel-status.deadline::before { content: ''; width: 6px; height: 6px; background: var(--ink); border-radius: 50%; animation: pulse 1.6s ease-in-out infinite; }
.adm-panel-status.exam { background: var(--purple); color: var(--cream); }
.adm-panel-status.same { background: var(--purple-deep); color: var(--gold); }
.adm-panel-status.tbd { background: transparent; color: var(--gray); border: 1px solid var(--gray-line); }

.adm-panel-yr {
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gold-deep);
}


/* ─────────────────────────────────────────────────────────
   CHAMPIONS
   ───────────────────────────────────────────────────────── */

.champions { background: var(--cream); padding-bottom: 130px; }

.champ-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 0 44px; }

.champ-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform .55s cubic-bezier(.22,.61,.36,1);
}

.champ-card.in { opacity: 1; transform: translateY(0); }
.champ-card:nth-child(2).in { transition-delay: .15s; }
.champ-card:nth-child(3).in { transition-delay: .3s; }

.champ-video { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--purple); }

.champ-video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s ease, filter .4s ease;
	filter: brightness(.78);
}

.champ-card:hover .champ-video img { transform: scale(1.04); filter: brightness(.95); }

.champ-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 78px;
	height: 78px;
	border-radius: 50%;
	background: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .3s, background .3s;
	z-index: 2;
}

.champ-play::before {
	content: '';
	width: 0;
	height: 0;
	border-left: 18px solid var(--ink);
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	margin-left: 4px;
}

.champ-card:hover .champ-play { transform: translate(-50%, -50%) scale(1.1); background: var(--cream); }

.champ-tag {
	position: absolute;
	top: 18px;
	left: 18px;
	padding: 6px 12px;
	background: rgba(15,8,20,.7);
	backdrop-filter: blur(6px);
	color: var(--gold);
	font-family: 'Jost', sans-serif;
	font-size: 10px;
	letter-spacing: .15em;
	text-transform: uppercase;
	font-weight: 700;
	z-index: 2;
}

.champ-info { background: var(--cream); color: var(--ink); padding: 24px 26px; display: flex; flex-direction: column; gap: 12px; }

.champ-name { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -.005em; }
.champ-program { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); font-weight: 600; }
.champ-divider { height: 1px; background: var(--gray-line); }
.champ-now { display: flex; flex-direction: column; gap: 4px; }
.champ-now-lbl { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--gray); font-weight: 700; }

.champ-now-val {
	font-family: 'Jost', sans-serif;
	font-weight: 700;
	font-size: 17px;
	color: var(--purple);
	display: flex;
	align-items: center;
	gap: 8px;
}

.champ-now-val::before { content: '↳'; color: var(--gold); }


/* ─────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────── */

.faq { background: var(--ink); color: var(--cream); padding-bottom: 130px; }

.faq-intro { max-width: 760px; margin: 0 44px 60px; font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.6); }

.faq-list { margin: 0 44px; border-top: 1px solid rgba(255,255,255,.12); }

.faq-item {
	border-bottom: 1px solid rgba(255,255,255,.12);
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1);
}

.faq-item.in { opacity: 1; transform: translateY(0); }

.faq-q {
	width: 100%;
	background: transparent;
	border: none;
	padding: 28px 0;
	display: grid;
	grid-template-columns: 50px 1fr 40px;
	gap: 20px;
	align-items: center;
	cursor: pointer;
	text-align: left;
	font-family: 'Jost', sans-serif;
	color: var(--cream);
	transition: padding-left .3s;
}

.faq-q:hover { padding-left: 16px; }

.faq-q-num { font-family: 'Jost', sans-serif; font-size: 13px; color: var(--gold); font-weight: 700; letter-spacing: .14em; }

.faq-q-text {
	font-family: 'Jost', sans-serif;
	font-size: clamp(18px, 1.6vw, 22px);
	font-weight: 600;
	line-height: 1.35;
	color: var(--cream);
	letter-spacing: -.005em;
}

.faq-q-icon {
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: background .3s, border-color .3s, transform .3s;
	flex-shrink: 0;
	justify-self: end;
}

.faq-q-icon::before,
.faq-q-icon::after { content: ''; position: absolute; background: var(--cream); transition: transform .3s, background .3s; }
.faq-q-icon::before { width: 14px; height: 1px; }
.faq-q-icon::after { width: 1px; height: 14px; }

.faq-item.open .faq-q-icon { background: var(--gold); border-color: var(--gold); transform: rotate(180deg); }
.faq-item.open .faq-q-icon::before,
.faq-item.open .faq-q-icon::after { background: var(--ink); }
.faq-item.open .faq-q-icon::after { transform: scaleY(0); }

.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s cubic-bezier(.32,.72,0,1); }
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }

.faq-a { min-height: 0; overflow: hidden; }

.faq-a-inner {
	padding: 0 0 36px 70px;
	max-width: 880px;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255,255,255,.7);
}

.faq-a-inner strong { color: var(--gold); font-weight: 700; }
.faq-a-inner em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--gold); }
.faq-a-inner a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }


/* ─────────────────────────────────────────────────────────
   END CTA
   ───────────────────────────────────────────────────────── */

.end-cta {
	background: var(--gold);
	color: var(--ink);
	padding: 100px 44px;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 48px;
	align-items: end;
}

.end-cta h2 {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: clamp(40px, 5.5vw, 84px);
	line-height: .93;
	letter-spacing: -.015em;
	text-transform: uppercase;
}

.end-cta h2 em {
	font-style: italic;
	font-family: 'Instrument Serif', serif;
	font-weight: 400;
	text-transform: none;
	color: var(--purple);
}

.end-cta-action { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.end-cta-action p { font-size: 15px; line-height: 1.6; }
.end-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; }

.end-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	background: var(--ink);
	color: var(--gold);
	padding: 18px 28px;
	font-family: 'Jost', sans-serif;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background .25s;
	position: relative;
	overflow: hidden;
}

.end-cta-btn:hover { background: var(--purple); color: var(--cream); }

.end-cta-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -120%;
	width: 50%;
	height: 100%;
	background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
	transition: left .8s ease;
}

.end-cta-btn:hover::before { left: 220%; }

.end-cta-btn.alt { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.end-cta-btn.alt:hover { background: var(--ink); color: var(--gold); }

.end-cta-btn .ec-arrow { font-size: 16px; }

.end-cta-contact {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-top: 12px;
	border-top: 1px solid rgba(15,8,20,.2);
	margin-top: 14px;
}

.end-cta-contact span { font-size: 13.5px; }
.end-cta-contact a { color: var(--purple); text-decoration: none; font-weight: 600; }
.end-cta-contact a:hover { text-decoration: underline; }


/* ─────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
	.progs-grid { --pcols: 2; }
	.journey-grid { --jcols: 2; gap: 50px 24px; }
	.journey-rail::before { display: none; }
	.studios-grid { grid-template-columns: 1fr; }
	.champ-grid { grid-template-columns: repeat(2, 1fr); }
	.pillars-head { grid-template-columns: 1fr; gap: 24px; }
	.fees-thead,
	.fees-row { grid-template-columns: 50px 1fr 120px 1fr; gap: 16px; }
}

@media (max-width: 1000px) {
	.whatis-split { grid-template-columns: 1fr; gap: 48px; }
	.whatis-editorial { padding-left: 36px; }
	.whatis-editorial::before { font-size: 130px; top: -28px; }
	.adm-tab { padding: 16px 14px; }
	.adm-tab-name { font-size: 13px; }
	.adm-tab-date { font-size: 10.5px; }
	.adm-panel { grid-template-columns: 1fr; gap: 20px; }
	.adm-panel-meta { align-items: flex-start; text-align: left; }
}

@media (max-width: 900px) {
	.pillars-grid { grid-template-columns: 1fr; gap: 32px; }
	.pillars-visual { min-height: 0; aspect-ratio: 16/10; }
}

@media (max-width: 768px) {
	.crumb { padding: 14px 18px; font-size: 10.5px; }

	.hero { padding: 30px 18px 0; gap: 24px; }
	.hero-title { font-size: clamp(32px, 9.5vw, 56px); }
	.hero-bottom { padding-top: 24px; }
	.pixel-dot { width: 22px; height: 22px; }

	.quick-facts { grid-template-columns: repeat(2, 1fr); margin: 0 -18px; }
	.qf-item { padding: 16px 18px; }
	.qf-item:nth-child(1),
	.qf-item:nth-child(2) { border-bottom: 1px solid rgba(15,8,20,.12); }
	.qf-item:nth-child(2),
	.qf-item:nth-child(4) { border-right: none; }

	.sec-header { padding: 70px 18px 36px; grid-template-columns: minmax(0, 1fr); }
	.admissions .sec-header { padding: 60px 18px 24px; }
	.sec-title { font-size: clamp(30px, 8.2vw, 48px); }

	.whatis-split,
	.progs-intro,
	.progs-group,
	.progs-grid,
	.prog-counsellor,
	.pillars-head,
	.pillars-grid,
	.journey-intro,
	.journey-rail,
	.studios-intro,
	.studios-grid,
	.studios-location,
	.adm-elig,
	.adm-flow,
	.fees-intro,
	.fees-group,
	.fees-table,
	.fees-note,
	.champ-grid,
	.faq-intro,
	.faq-list { margin-left: 18px; margin-right: 18px; }

	.progs-grid { --pcols: 1; }
	.prog-counsellor { flex-direction: column; align-items: flex-start; padding: 22px 24px; }
	.journey-grid { --jcols: 1; gap: 36px; }
	.studios-location { grid-template-columns: 1fr; gap: 18px; padding: 30px 28px; }

	.adm-tabs { grid-auto-flow: row; grid-template-columns: repeat(2, 1fr); }
	.adm-tab { border-right: 1px solid var(--gray-line); border-bottom: 1px solid var(--gray-line); }
	.adm-tab:nth-child(2n) { border-right: none; }
	.adm-body { padding: 24px 20px; }
	.adm-panel-points { grid-template-columns: 1fr; }

	.fees-thead { display: none; }
	.fees-row { grid-template-columns: 40px 1fr; gap: 8px 14px; padding: 20px 18px; }
	.fees-row-dur { grid-column: 2; font-size: 11px; }
	.fees-row-amount { grid-column: 1 / -1; text-align: left; padding-top: 6px; font-size: 22px; }
	.fees-note { grid-template-columns: 1fr; gap: 12px; }

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

	.faq-q { grid-template-columns: 38px 1fr 32px; gap: 14px; padding: 22px 0; }
	.faq-a-inner { padding: 0 0 28px 52px; font-size: 14.5px; }

	.end-cta { padding: 60px 18px; grid-template-columns: 1fr; gap: 28px; }
	.end-cta h2 { font-size: clamp(32px, 8vw, 48px); }
}

@media (max-width: 560px) {
	.whatis-split { gap: 36px; }
	.whatis-stats { grid-template-columns: 1fr; }
	.whatis-stat { border-right: none; border-bottom: 1px solid var(--gray-line); min-height: 140px; }
	.whatis-stat:last-child { border-bottom: none; }
	.whatis-editorial { padding-left: 28px; }
	.whatis-editorial::before { font-size: 100px; top: -20px; }
}

@media (max-width: 480px) {
	.quick-facts { grid-template-columns: 1fr; }
	.qf-item { border-right: none; border-bottom: 1px solid rgba(15,8,20,.12); padding: 14px 18px; }
	.qf-item:last-child { border-bottom: none; }
}

@media (prefers-reduced-motion: reduce) {
	.reveal,
	.prog-card,
	.jstep,
	.jstep-dot,
	.studio-block,
	.fees-row,
	.champ-card,
	.faq-item { transition: none; opacity: 1; transform: none; }

	.prog-card.prog-soon { opacity: .55; }

	.hero-title .row span,
	.hero-ctas,
	.qf-item,
	.hero-title .gold-dot { animation: none !important; opacity: 1 !important; transform: none !important; }

	.journey-rail::before { transition: none; transform: scaleX(1); }
	.sw-i { transition: none; transform: none; }
}