:root {
	--color-navy: #271114;
	--color-navy-2: #13090b;
	--color-green: #2f6f55;
	--color-ivory: #fff5f1;
	--color-white: #fffdfb;
	--color-gold: #d7a84c;
	--color-coral: #c8102e;
	--color-text: #1b1415;
	--color-muted: #675a5d;
	--color-border: #ead7d6;
	--shadow-soft: 0 18px 48px rgb(19 34 56 / 10%);
	--font-body: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-display: "Source Serif 4", Georgia, serif;
	--step--1: .875rem;
	--step-0: 1rem;
	--step-1: 1.125rem;
	--step-2: 1.375rem;
	--step-3: 1.75rem;
	--step-4: 2.25rem;
	--step-5: 3rem;
	--step-6: 4rem;
	--space-1: .5rem;
	--space-2: 1rem;
	--space-3: 1.5rem;
	--space-4: 2rem;
	--space-5: 3rem;
	--space-6: 4rem;
	--space-7: 6rem;
	--radius: 8px;
	--container: 1200px;
	--container-narrow: 820px;
	--ease: cubic-bezier(.22, .61, .36, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-white);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: var(--step-1);
	line-height: 1.6;
	text-rendering: optimizeLegibility;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: .08em;
	text-underline-offset: .18em;
}

a:hover {
	color: var(--color-coral);
}

:focus-visible {
	outline: 3px solid var(--color-gold);
	outline-offset: 4px;
}

.screen-reader-text,
.skip-link:not(:focus) {
	position: absolute;
	overflow: hidden;
	clip: rect(0 0 0 0);
	width: 1px;
	height: 1px;
	white-space: nowrap;
}

.skip-link:focus {
	position: fixed;
	z-index: 1000;
	top: 1rem;
	left: 1rem;
	padding: .75rem 1rem;
	background: var(--color-navy);
	color: #fff;
}

.container {
	width: min(calc(100% - 2rem), var(--container));
	margin-inline: auto;
}

.container--narrow {
	width: min(calc(100% - 2rem), var(--container-narrow));
}

.section {
	padding-block: var(--space-6);
}

.section--light {
	background: var(--color-ivory);
}

.section--navy {
	background: var(--color-navy);
	color: #fff;
}

.section-header {
	max-width: 760px;
	margin-bottom: var(--space-4);
}

.section-header--light {
	color: #fff;
}

.eyebrow {
	margin: 0 0 var(--space-1);
	color: var(--color-coral);
	font-size: var(--step--1);
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	margin: 0;
	color: inherit;
	line-height: 1.08;
	letter-spacing: 0;
}

h1 {
	max-width: 940px;
	font-family: var(--font-display);
	font-size: var(--step-6);
}

h2 {
	font-size: var(--step-5);
}

h3 {
	font-size: var(--step-2);
}

p {
	margin: 0;
}

p + p,
.flow > * + * {
	margin-top: var(--space-2);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	margin-top: var(--space-3);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: .8rem 1.15rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}

.button:hover {
	transform: translateY(-2px);
}

.button--primary {
	background: var(--color-coral);
	color: #fff;
}

.button--primary:hover {
	background: #bd4631;
	color: #fff;
}

.button--secondary {
	background: transparent;
	border-color: currentColor;
	color: inherit;
}

.text-link {
	display: inline-flex;
	gap: .35rem;
	align-items: center;
	font-weight: 800;
	color: var(--color-navy);
}

.text-link::after {
	content: "->";
	transition: transform .2s var(--ease);
}

.text-link:hover::after {
	transform: translateX(3px);
}

.site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	background: rgb(255 252 247 / 92%);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgb(218 212 199 / 70%);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: var(--space-3);
}

.site-brand {
	color: var(--color-navy);
	font-weight: 900;
	text-decoration: none;
}

.site-nav__toggle {
	display: none;
}

.site-nav__panel,
.primary-menu {
	display: flex;
	align-items: center;
	gap: var(--space-2);
}

.primary-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu a {
	font-size: var(--step--1);
	font-weight: 800;
	text-decoration: none;
}

.hero {
	position: relative;
	display: grid;
	min-height: 760px;
	overflow: clip;
	color: #fff;
	background: var(--color-navy);
}

.hero__media,
.hero__overlay,
.hero__content {
	grid-area: 1 / 1;
}

.hero__media {
	position: absolute;
	inset: 0;
}

.hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgb(13 23 38 / 88%), rgb(13 23 38 / 44) 54%, rgb(13 23 38 / 20));
}

.hero__content {
	position: relative;
	align-self: end;
	padding-block: 9rem 7rem;
}

.hero__lede {
	max-width: 680px;
	margin-top: var(--space-2);
	font-size: var(--step-2);
}

.hero__proof-strip {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem;
	padding: 0;
	margin: var(--space-3) 0 0;
	list-style: none;
}

.hero__proof-strip li {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: .45rem .7rem;
	border: 1px solid rgb(255 255 255 / 18%);
	border-radius: 999px;
	background: rgb(255 255 255 / 10%);
	color: rgb(255 255 255 / 86%);
	font-size: var(--step--1);
	font-weight: 900;
	backdrop-filter: blur(10px);
}

.trust-bar {
	background: var(--color-white);
	border-bottom: 1px solid var(--color-border);
}

.trust-bar__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-3);
	padding-block: var(--space-3);
}

.trust-item {
	border-left: 3px solid var(--color-gold);
	padding-left: var(--space-2);
}

.trust-item__label {
	display: block;
	color: var(--color-muted);
	font-size: var(--step--1);
	font-weight: 800;
	text-transform: uppercase;
}

.split-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: var(--space-5);
	align-items: center;
}

.feature-list,
.card-grid,
.testimonial-grid {
	display: grid;
	gap: var(--space-3);
}

.card-grid--three {
	grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.program-card,
.testimonial-card {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: 0 0 0 rgb(0 0 0 / 0);
	transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}

.feature-card,
.testimonial-card {
	padding: var(--space-3);
}

.feature-card:hover,
.program-card:hover,
.testimonial-card:hover {
	transform: translateY(-3px);
	border-color: rgb(201 154 61 / 60%);
	box-shadow: var(--shadow-soft);
}

.program-card {
	overflow: hidden;
}

.program-card__media {
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, var(--color-green), var(--color-navy));
}

.program-card__body {
	padding: var(--space-3);
}

.program-card__body p,
.feature-card p,
.testimonial-card blockquote {
	margin-block: var(--space-2);
	color: var(--color-muted);
}

.image-panel {
	min-height: 520px;
	border-radius: var(--radius);
	background:
		linear-gradient(rgb(19 34 56 / 18%), rgb(19 34 56 / 18%)),
		linear-gradient(135deg, var(--color-green), var(--color-gold));
}

.process-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-3);
	padding: 0;
	margin: var(--space-4) 0 0;
	list-style: none;
}

.process-list li {
	padding-top: var(--space-2);
	border-top: 1px solid rgb(255 255 255 / 26%);
}

.process-list span {
	color: var(--color-gold);
	font-weight: 900;
}

.testimonial-grid {
	grid-template-columns: 1.4fr 1fr 1fr;
	align-items: stretch;
}

.testimonial-card blockquote {
	margin: 0 0 var(--space-2);
	font-family: var(--font-display);
	font-size: var(--step-2);
	line-height: 1.35;
}

.faq-list {
	border-top: 1px solid var(--color-border);
}

.faq-item {
	border-bottom: 1px solid var(--color-border);
}

.faq-item__button {
	width: 100%;
	padding: var(--space-2) 0;
	border: 0;
	background: transparent;
	color: var(--color-navy);
	font: inherit;
	font-weight: 900;
	text-align: left;
	cursor: pointer;
}

.faq-item__panel {
	padding-bottom: var(--space-2);
	color: var(--color-muted);
}

.final-cta__inner {
	max-width: 860px;
	text-align: center;
}

.final-cta .button-row {
	justify-content: center;
}

.site-footer {
	padding-block: var(--space-5) var(--space-3);
	background: var(--color-navy-2);
	color: #fff;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: var(--space-4);
}

.footer-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer a {
	color: #fff;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: var(--space-2);
	padding-top: var(--space-4);
	margin-top: var(--space-4);
	border-top: 1px solid rgb(255 255 255 / 18%);
	font-size: var(--step--1);
}

[data-reveal] {
	opacity: 1;
	transform: none;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

@supports (content-visibility: auto) {
	.section,
	.team-group,
	.jobs-section,
	.jobs-support {
		content-visibility: auto;
		contain-intrinsic-size: 1px 760px;
	}

	.final-cta {
		contain-intrinsic-size: 1px 420px;
	}
}

@media (max-width: 900px) {
	:root {
		--step-5: 2.25rem;
		--step-6: 3rem;
		--space-6: 3rem;
	}

	.site-nav__toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		border: 1px solid var(--color-border);
		border-radius: var(--radius);
		background: var(--color-white);
	}

	.site-nav__toggle-line,
	.site-nav__toggle-line::before,
	.site-nav__toggle-line::after {
		display: block;
		width: 18px;
		height: 2px;
		background: var(--color-navy);
		content: "";
	}

	.site-nav__toggle-line::before {
		transform: translateY(-6px);
	}

	.site-nav__toggle-line::after {
		transform: translateY(4px);
	}

	.site-nav__panel {
		position: absolute;
		inset: 76px 1rem auto;
		display: none;
		padding: var(--space-3);
		border: 1px solid var(--color-border);
		border-radius: var(--radius);
		background: var(--color-white);
		box-shadow: var(--shadow-soft);
	}

	.site-nav__panel.is-open,
	.primary-menu {
		display: grid;
		align-items: stretch;
	}

	.primary-menu {
		gap: var(--space-2);
	}

	.hero {
		min-height: 620px;
	}

	.hero__content {
		padding-block: 7rem 4rem;
	}

	.trust-bar__inner,
	.split-section__grid,
	.card-grid--three,
	.process-list,
	.testimonial-grid,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.image-panel {
		min-height: 320px;
	}
}

@media (max-width: 560px) {
	body {
		font-size: var(--step-0);
	}

	.container,
	.container--narrow {
		width: min(calc(100% - 1.25rem), var(--container));
	}

	.hero {
		min-height: 560px;
	}

	.hero__overlay {
		background: linear-gradient(180deg, rgb(13 23 38 / 58%), rgb(13 23 38 / 90));
	}

	.button-row,
	.button {
		width: 100%;
	}

	.site-footer__bottom {
		display: grid;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
	}

	[data-parallax-layer] {
		transform: none !important;
	}
}

/* Premium media-led refinement */
body {
	background:
		linear-gradient(180deg, #fffaf1 0, #fffaf1 620px, #fffcf7 620px);
}

.site-header {
	box-shadow: 0 1px 0 rgb(19 34 56 / 5%);
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: .75rem;
	max-width: 310px;
	line-height: 1.05;
}

.site-brand::before {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--color-navy);
	color: #fff;
	content: "EP";
	font-size: .8rem;
	font-weight: 900;
}

.primary-menu a {
	position: relative;
	padding-block: .35rem;
	color: var(--color-navy);
}

.primary-menu a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	transform: scaleX(0);
	transform-origin: left;
	background: var(--color-coral);
	content: "";
	transition: transform .22s var(--ease);
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after {
	transform: scaleX(1);
}

.hero {
	min-height: clamp(680px, 86vh, 900px);
	isolation: isolate;
}

.hero::after {
	position: absolute;
	inset: auto 0 0;
	height: 32%;
	z-index: 1;
	background: linear-gradient(180deg, transparent, rgb(13 23 38 / 72%));
	content: "";
	pointer-events: none;
}

.hero__media {
	inset: -3%;
}

.hero__image {
	filter: saturate(.98) contrast(1.04);
	object-position: center 38%;
}

.hero__overlay {
	z-index: 1;
	background:
		linear-gradient(90deg, rgb(9 16 28 / 94%) 0, rgb(9 16 28 / 72%) 38%, rgb(9 16 28 / 34%) 68%, rgb(9 16 28 / 12%) 100%),
		linear-gradient(180deg, rgb(9 16 28 / 20%), rgb(9 16 28 / 68%));
}

.hero__content {
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 820px) minmax(280px, 380px);
	align-items: end;
	gap: var(--space-5);
	padding-block: 11rem 5.5rem;
}

.hero__copy {
	max-width: 860px;
}

.hero h1 {
	font-size: clamp(3.45rem, 6vw, 6.2rem);
	line-height: .98;
	max-width: 900px;
	text-wrap: balance;
}

.hero__lede {
	max-width: 720px;
	color: rgb(255 255 255 / 88%);
	font-size: clamp(1.1rem, 1.5vw, 1.45rem);
	line-height: 1.55;
}

.hero .button--secondary {
	background: rgb(255 255 255 / 9%);
	backdrop-filter: blur(10px);
}

.hero__proof {
	align-self: end;
	padding: 1.1rem;
	border: 1px solid rgb(255 255 255 / 24%);
	border-radius: 8px;
	background: rgb(255 252 247 / 12%);
	backdrop-filter: blur(18px);
	box-shadow: 0 22px 60px rgb(0 0 0 / 24%);
}

.hero__proof-kicker {
	margin-bottom: .8rem;
	color: rgb(255 255 255 / 72%);
	font-size: .75rem;
	font-weight: 900;
	text-transform: uppercase;
}

.hero__proof-grid {
	display: grid;
	gap: .8rem;
}

.hero__proof-grid span {
	display: grid;
	gap: .1rem;
	padding-top: .8rem;
	border-top: 1px solid rgb(255 255 255 / 16%);
	color: rgb(255 255 255 / 78%);
	font-size: .92rem;
	line-height: 1.25;
}

.hero__proof-grid strong {
	color: #fff;
	font-size: 1.35rem;
	line-height: 1;
}

.trust-bar__inner {
	margin-top: -2rem;
	position: relative;
	z-index: 3;
	border: 1px solid rgb(218 212 199 / 72%);
	border-radius: 8px;
	background: rgb(255 252 247 / 96%);
	box-shadow: 0 18px 55px rgb(19 34 56 / 12%);
	padding-inline: var(--space-3);
}

.trust-item {
	padding-block: .65rem;
}

.section {
	padding-block: clamp(4rem, 7vw, 7.5rem);
}

.section--light {
	background:
		linear-gradient(180deg, #f7f3ea, #fff8ec);
}

.section-header h2,
.split-section__copy h2 {
	max-width: 850px;
	text-wrap: balance;
}

.feature-list--premium {
	gap: 1rem;
}

.feature-list--premium .feature-card {
	display: grid;
	gap: .5rem;
	padding: 1.25rem;
	border-color: rgb(19 34 56 / 10%);
	background: rgb(255 252 247 / 84%);
}

.media-ribbon {
	display: grid;
	grid-template-columns: 1.45fr .9fr .9fr;
	gap: 1rem;
	margin-top: var(--space-5);
}

.media-ribbon__item {
	position: relative;
	min-height: 320px;
	overflow: hidden;
	margin: 0;
	border-radius: 8px;
	background: var(--color-navy);
	box-shadow: 0 22px 55px rgb(19 34 56 / 14%);
}

.media-ribbon__item--wide {
	min-height: 420px;
}

.media-ribbon__image,
.program-card__image,
.image-stack__image,
.proof-photo__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.media-ribbon__image,
.program-card__image,
.image-stack__image {
	transition: transform .38s var(--ease), filter .38s var(--ease);
}

.media-ribbon__item:hover .media-ribbon__image,
.program-card:hover .program-card__image,
.image-stack figure:hover .image-stack__image {
	transform: scale(1.035);
	filter: saturate(1.08) contrast(1.03);
}

.media-ribbon__item::after,
.program-card__media::after,
.image-stack__primary::after,
.proof-photo::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgb(13 23 38 / 34%));
	content: "";
	pointer-events: none;
}

.media-ribbon figcaption {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	left: 1rem;
	z-index: 2;
	display: grid;
	gap: .2rem;
	padding: .85rem 1rem;
	border: 1px solid rgb(255 255 255 / 22%);
	border-radius: 8px;
	background: rgb(19 9 11 / 70%);
	color: #fff;
	backdrop-filter: blur(14px);
}

.media-ribbon figcaption span {
	color: rgb(255 255 255 / 72%);
	font-size: .72rem;
	font-weight: 950;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.media-ribbon figcaption strong {
	font-size: .96rem;
	line-height: 1.2;
}

.program-card {
	position: relative;
	border: 0;
	background: #fff;
	box-shadow: 0 18px 48px rgb(19 34 56 / 10%);
}

.program-card__media {
	position: relative;
	aspect-ratio: 5 / 4;
	background: var(--color-navy);
}

.program-card__body {
	min-height: 238px;
}

.program-card h3 {
	color: var(--color-navy);
}

.program-card__fit {
	margin-block: .85rem .45rem;
	color: var(--color-coral);
	font-size: .86rem;
	font-weight: 900;
	line-height: 1.35;
	text-transform: uppercase;
}

.program-card .text-link {
	margin-top: auto;
}

.image-stack {
	position: relative;
	min-height: 590px;
}

.image-stack figure {
	position: absolute;
	overflow: hidden;
	margin: 0;
	border-radius: 8px;
	background: var(--color-navy);
	box-shadow: 0 28px 70px rgb(19 34 56 / 18%);
}

.image-stack__primary {
	inset: 0 8% 14% 0;
}

.image-stack__secondary {
	right: 0;
	bottom: 0;
	width: 46%;
	aspect-ratio: 4 / 5;
	border: 8px solid var(--color-white);
}

.brand-story {
	background:
		linear-gradient(90deg, rgb(47 107 87 / 9%), transparent 38%),
		var(--color-white);
}

.process-section {
	position: relative;
	overflow: hidden;
}

.process-section::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgb(201 154 61 / 12%) 1px, transparent 1px),
		linear-gradient(180deg, rgb(201 154 61 / 8%) 1px, transparent 1px);
	background-size: 56px 56px;
	content: "";
	opacity: .28;
}

.process-section > .container {
	position: relative;
	z-index: 1;
}

.process-list li {
	padding: 1.2rem;
	border: 1px solid rgb(255 255 255 / 18%);
	border-radius: 8px;
	background: rgb(255 255 255 / 7%);
	backdrop-filter: blur(12px);
}

.process-list strong {
	display: block;
	margin-block: .75rem .45rem;
	color: #fff;
}

.process-list p,
.section-header--light p {
	color: rgb(255 255 255 / 76%);
}

.testimonial-layout {
	display: grid;
	grid-template-columns: .95fr 1.3fr;
	gap: var(--space-4);
	align-items: stretch;
}

.proof-photo {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	margin: 0;
	border-radius: 8px;
	background: var(--color-navy);
	box-shadow: 0 22px 55px rgb(19 34 56 / 14%);
}

.proof-photo figcaption {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	left: 1rem;
	z-index: 1;
	padding: .8rem 1rem;
	border: 1px solid rgb(255 255 255 / 24%);
	border-radius: 8px;
	background: rgb(13 23 38 / 72%);
	color: #fff;
	font-size: .9rem;
	font-weight: 800;
	backdrop-filter: blur(12px);
}

.testimonial-grid {
	grid-template-columns: 1fr;
}

.testimonial-card {
	background: #fff;
}

.testimonial-card--featured {
	background: var(--color-navy);
	color: #fff;
}

.testimonial-card--featured blockquote {
	color: rgb(255 255 255 / 86%);
}

.featured-content .feature-card {
	min-height: 220px;
	background:
		linear-gradient(135deg, rgb(255 255 255 / 95%), rgb(255 248 236 / 94%));
}

.final-cta {
	background:
		linear-gradient(90deg, rgb(19 34 56 / 94%), rgb(47 107 87 / 86%));
}

.jobs-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(7rem, 12vw, 10rem) clamp(4rem, 7vw, 6rem);
	color: #fff;
	background: #1a080b;
}

.jobs-hero__media,
.jobs-hero__overlay {
	position: absolute;
	inset: 0;
}

.jobs-hero__media {
	z-index: 0;
}

.jobs-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jobs-hero__overlay {
	z-index: 1;
	background:
		linear-gradient(90deg, rgb(19 9 11 / 94%), rgb(124 16 24 / 78%));
}

.jobs-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, .55fr);
	gap: var(--space-5);
	align-items: end;
}

.jobs-hero h1 {
	max-width: 900px;
	font-size: var(--step-6);
	line-height: .98;
	text-wrap: balance;
}

.jobs-hero p:not(.eyebrow) {
	max-width: 720px;
	margin-top: var(--space-2);
	color: rgb(255 255 255 / 84%);
	font-size: var(--step-2);
}

.jobs-hero .button-row {
	margin-top: var(--space-3);
}

.jobs-hero .button--secondary {
	background: rgb(255 255 255 / 9%);
	backdrop-filter: blur(10px);
}

.jobs-hero__panel {
	padding: var(--space-3);
	border: 1px solid rgb(255 255 255 / 16%);
	border-radius: 8px;
	background: rgb(255 255 255 / 10%);
	box-shadow: 0 22px 60px rgb(0 0 0 / 22%);
	backdrop-filter: blur(16px);
}

.jobs-hero__panel h2 {
	font-size: var(--step-2);
}

.jobs-hero__panel ul {
	display: grid;
	gap: .75rem;
	padding-left: 1.1rem;
	margin: var(--space-2) 0 0;
	color: rgb(255 255 255 / 82%);
}

.page-showcase-hero .jobs-hero__image {
	filter: saturate(1.04) contrast(1.03);
	object-position: center;
}

.contact-card {
	display: grid;
	gap: .7rem;
	align-content: start;
}

.contact-card .text-link {
	width: fit-content;
}

.faq-page__group + .faq-page__group {
	margin-top: var(--space-5);
}

.faq-page__group > h3 {
	margin-bottom: var(--space-2);
	color: var(--color-navy);
	font-size: var(--step-3);
}

.faq-page .faq-item h4 {
	margin: 0;
}

.faq-page .faq-item__panel p {
	max-width: 760px;
}

.jobs-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.job-card {
	overflow: hidden;
	border: 1px solid rgb(200 16 46 / 10%);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 48px rgb(19 34 56 / 10%);
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.job-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 56px rgb(39 17 20 / 12%);
}

.job-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--color-navy-2);
}

.job-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.job-card__body {
	display: grid;
	gap: .75rem;
	padding: var(--space-3);
}

.job-card h3 {
	font-size: var(--step-2);
}

.job-card h3 a {
	color: var(--color-navy);
	text-decoration: none;
}

.job-card p:not(.eyebrow) {
	color: var(--color-muted);
}

.empty-state {
	max-width: 760px;
	padding: var(--space-4);
	border: 1px solid rgb(200 16 46 / 12%);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 48px rgb(19 34 56 / 10%);
}

.empty-state p {
	margin-block: var(--space-2);
	color: var(--color-muted);
}

.jobs-support__grid {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	gap: var(--space-5);
	align-items: start;
}

.recovery-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .9rem;
	margin-top: var(--space-4);
}

.recovery-grid a {
	display: grid;
	gap: .35rem;
	padding: 1rem;
	border: 1px solid rgb(200 16 46 / 12%);
	border-radius: 8px;
	background: #fff;
	color: var(--color-navy);
	text-decoration: none;
	box-shadow: 0 14px 34px rgb(19 34 56 / 7%);
	transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.recovery-grid a:hover {
	transform: translateY(-2px);
	border-color: rgb(200 16 46 / 32%);
	box-shadow: 0 20px 44px rgb(39 17 20 / 11%);
}

.recovery-grid span {
	color: var(--color-coral);
	font-size: .75rem;
	font-weight: 950;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.recovery-grid strong {
	font-size: .96rem;
	line-height: 1.3;
}

.legal-page h2 {
	margin-top: var(--space-4);
	color: var(--color-navy);
	font-size: var(--step-2);
}

.legal-page h2:first-of-type {
	margin-top: 0;
}

.site-footer {
	background:
		linear-gradient(180deg, #0d1726, #08101c);
}

.team-hero {
	position: relative;
	display: grid;
	min-height: clamp(560px, 72vh, 760px);
	overflow: hidden;
	color: #fff;
	background: var(--color-navy);
}

.team-hero__media,
.team-hero__overlay,
.team-hero__content {
	grid-area: 1 / 1;
}

.team-hero__media {
	position: absolute;
	inset: 0;
}

.team-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(.96) contrast(1.03);
}

.team-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgb(9 16 28 / 92%), rgb(9 16 28 / 62%) 48%, rgb(9 16 28 / 18%)),
		linear-gradient(180deg, rgb(9 16 28 / 10%), rgb(9 16 28 / 70%));
}

.team-hero__content {
	position: relative;
	align-self: end;
	max-width: 920px;
	padding-block: 10rem 5rem;
}

.team-hero h1 {
	max-width: 900px;
	font-size: clamp(3rem, 5.2vw, 5.35rem);
	line-height: .98;
	text-wrap: balance;
}

.team-hero p:not(.eyebrow) {
	max-width: 680px;
	margin-top: var(--space-2);
	color: rgb(255 255 255 / 84%);
	font-size: clamp(1.05rem, 1.35vw, 1.28rem);
}

.team-hero .button--secondary {
	background: rgb(255 255 255 / 9%);
	backdrop-filter: blur(10px);
}

.team-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .8rem;
	max-width: 720px;
	margin-top: var(--space-4);
}

.team-hero__stats div {
	padding: 1rem;
	border: 1px solid rgb(255 255 255 / 16%);
	border-radius: 8px;
	background: rgb(255 255 255 / 10%);
	box-shadow: 0 18px 44px rgb(0 0 0 / 18%);
	backdrop-filter: blur(14px);
}

.team-hero__stats strong,
.team-hero__stats span {
	display: block;
}

.team-hero__stats strong {
	color: #fff;
	font-size: clamp(1.55rem, 2.6vw, 2.4rem);
	line-height: 1;
}

.team-hero__stats span {
	margin-top: .25rem;
	color: rgb(255 255 255 / 78%);
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.team-intro__grid {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: var(--space-5);
	align-items: start;
}

.team-intro__copy {
	display: grid;
	gap: var(--space-3);
	color: var(--color-muted);
}

.team-jump-nav {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem;
}

.team-jump-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: .55rem .8rem;
	border: 1px solid rgb(19 34 56 / 14%);
	border-radius: 999px;
	background: rgb(255 255 255 / 72%);
	color: var(--color-navy);
	font-size: .9rem;
	font-weight: 900;
	text-decoration: none;
	transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.team-jump-nav a:hover {
	transform: translateY(-2px);
	border-color: rgb(201 154 61 / 70%);
	background: #fff;
}

.team-directory {
	background: var(--color-white);
}

.team-directory--app {
	background:
		linear-gradient(180deg, #fffdfb 0, #fff4ef 48%, #fffdfb 100%);
}

.team-app {
	display: grid;
	gap: clamp(2rem, 4vw, 4rem);
}

.team-app__toolbar {
	position: sticky;
	z-index: 8;
	top: 82px;
	display: grid;
	grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
	gap: 1rem;
	align-items: stretch;
	padding: .95rem;
	border: 1px solid rgb(200 16 46 / 14%);
	border-radius: 8px;
	background: rgb(255 253 251 / 94%);
	box-shadow: 0 24px 64px rgb(39 17 20 / 13%);
	backdrop-filter: blur(18px);
}

.team-app__summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .55rem;
}

.team-app__summary div {
	display: grid;
	align-content: center;
	min-height: 76px;
	padding: .8rem;
	border: 1px solid rgb(39 17 20 / 9%);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgb(255 255 255 / 92%), rgb(255 244 239 / 92%));
}

.team-app__summary strong,
.team-app__summary span {
	display: block;
}

.team-app__summary strong {
	color: var(--color-navy);
	font-size: clamp(1.45rem, 2vw, 2rem);
	line-height: 1;
}

.team-app__summary span {
	margin-top: .25rem;
	color: var(--color-muted);
	font-size: .72rem;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.team-app__controls {
	display: grid;
	gap: .75rem;
	align-content: center;
}

.team-search-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: .65rem;
	align-items: center;
}

.team-search input {
	width: 100%;
	min-height: 46px;
	padding: .75rem .95rem;
	border: 1px solid rgb(39 17 20 / 14%);
	border-radius: 8px;
	background: #fff;
	color: var(--color-text);
	font: inherit;
	font-size: 1rem;
	font-weight: 800;
	box-shadow: inset 0 1px 0 rgb(255 255 255 / 90%);
}

.team-search input::placeholder {
	color: rgb(103 90 93 / 70%);
}

.team-clear {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: .7rem .9rem;
	border: 1px solid rgb(39 17 20 / 13%);
	border-radius: 8px;
	background: #fff;
	color: var(--color-navy);
	font: inherit;
	font-size: .82rem;
	font-weight: 950;
	cursor: pointer;
	transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.team-clear:hover {
	transform: translateY(-1px);
	border-color: rgb(200 16 46 / 36%);
	background: #fff7f2;
}

.team-app__status {
	margin: 0;
	color: var(--color-muted);
	font-size: .82rem;
	font-weight: 900;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.team-filter {
	display: flex;
	flex-wrap: wrap;
	gap: .45rem;
}

.team-filter button {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	min-height: 36px;
	padding: .48rem .68rem;
	border: 1px solid rgb(39 17 20 / 13%);
	border-radius: 999px;
	background: #fff;
	color: var(--color-navy);
	font: inherit;
	font-size: .78rem;
	font-weight: 950;
	cursor: pointer;
	transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}

.team-filter button:hover,
.team-filter button.is-active {
	transform: translateY(-1px);
	border-color: rgb(200 16 46 / 58%);
	background: var(--color-coral);
	color: #fff;
}

.team-filter em {
	display: inline-grid;
	place-items: center;
	min-width: 1.55rem;
	height: 1.55rem;
	padding-inline: .35rem;
	border-radius: 999px;
	background: rgb(39 17 20 / 8%);
	font-style: normal;
	font-size: .72rem;
}

.team-filter button.is-active em,
.team-filter button:hover em {
	background: rgb(255 255 255 / 20%);
}

.team-group + .team-group {
	margin-top: clamp(4rem, 7vw, 7rem);
}

.team-group__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: var(--space-3);
	padding-bottom: var(--space-3);
	margin-bottom: var(--space-3);
	border-bottom: 1px solid var(--color-border);
}

.team-group__header > div {
	max-width: 760px;
}

.team-group__header h2 {
	color: var(--color-navy);
	font-size: clamp(2rem, 3vw, 3.25rem);
}

.team-group__header p:not(.eyebrow) {
	max-width: 720px;
	margin-top: .55rem;
	color: var(--color-muted);
	font-size: 1rem;
}

.team-group__count {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: .55rem .85rem;
	border: 1px solid rgb(201 154 61 / 40%);
	border-radius: 999px;
	background: rgb(201 154 61 / 10%);
	color: var(--color-navy);
	font-size: .82rem;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.1rem;
}

.team-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgb(19 34 56 / 10%);
	border-radius: 8px;
	background:
		linear-gradient(180deg, #fff, #fffaf1);
	box-shadow: 0 14px 34px rgb(19 34 56 / 7%);
	transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}

.team-card:hover {
	transform: translateY(-3px);
	border-color: rgb(201 154 61 / 62%);
	box-shadow: 0 20px 48px rgb(19 34 56 / 14%);
}

.team-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	margin: 0;
	background:
		linear-gradient(135deg, rgb(19 34 56 / 8%), rgb(47 107 87 / 16%)),
		#f7f3ea;
}

.team-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform .32s var(--ease);
}

.team-card:hover .team-card__image {
	transform: scale(1.035);
}

.team-card__body {
	display: grid;
	gap: .35rem;
	padding: 1rem 1.05rem 1.1rem;
}

.team-card--interactive {
	background:
		linear-gradient(180deg, #fff, #fff7f2);
}

.team-card--interactive::after {
	position: absolute;
	inset: auto 0 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-coral), var(--color-gold), var(--color-green));
	content: "";
	opacity: .84;
}

.team-card__group {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 24px;
	padding: .28rem .48rem;
	border: 1px solid rgb(200 16 46 / 18%);
	border-radius: 999px;
	background: rgb(200 16 46 / 7%);
	color: var(--color-coral);
	font-size: .68rem;
	font-weight: 950;
	letter-spacing: .08em;
	line-height: 1;
	text-transform: uppercase;
}

.team-card h3 {
	color: var(--color-navy);
	font-size: 1.12rem;
	line-height: 1.15;
}

.team-card__role {
	color: var(--color-muted);
	font-size: .92rem;
	font-weight: 800;
}

@media (max-width: 1100px) {
	.hero__content {
		grid-template-columns: 1fr;
	}

	.hero__proof {
		max-width: 520px;
	}

	.media-ribbon,
	.testimonial-layout {
		grid-template-columns: 1fr;
	}

	.team-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.media-ribbon__item,
	.media-ribbon__item--wide,
	.proof-photo {
		min-height: 360px;
	}
}

@media (max-width: 900px) {
	.site-brand {
		max-width: 240px;
	}

	.hero {
		min-height: 680px;
	}

	.hero__content {
		padding-block: 8rem 3.5rem;
	}

	.hero h1 {
		font-size: clamp(2.75rem, 10vw, 4rem);
	}

	.trust-bar__inner {
		margin-top: 0;
		border-radius: 0;
		border-inline: 0;
	}

	.image-stack {
		min-height: auto;
		display: grid;
		gap: 1rem;
	}

	.image-stack figure {
		position: relative;
		inset: auto;
		width: auto;
		aspect-ratio: 4 / 3;
	}

	.image-stack__secondary {
		border: 0;
	}

	.team-intro__grid,
	.team-group__header,
	.team-app__toolbar {
		display: grid;
		grid-template-columns: 1fr;
	}

	.team-app__toolbar {
		position: static;
	}

	.team-group__count {
		justify-self: start;
	}

	.team-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.site-brand::before {
		width: 34px;
		height: 34px;
	}

	.hero {
		min-height: 720px;
	}

	.hero__overlay {
		background:
			linear-gradient(180deg, rgb(9 16 28 / 44%) 0, rgb(9 16 28 / 88%) 58%, rgb(9 16 28 / 94%) 100%);
	}

	.hero__proof {
		padding: .95rem;
	}

	.media-ribbon__item,
	.media-ribbon__item--wide,
	.proof-photo {
		min-height: 280px;
	}

	.program-card__body {
		min-height: auto;
	}

	.team-hero {
		min-height: 650px;
	}

	.team-hero__overlay {
		background: linear-gradient(180deg, rgb(9 16 28 / 38%), rgb(9 16 28 / 90%) 55%, rgb(9 16 28 / 96%));
	}

	.team-hero__content {
		padding-block: 8rem 3.5rem;
	}

	.team-hero__stats {
		grid-template-columns: 1fr;
		max-width: 360px;
		gap: .65rem;
	}

	.team-hero__stats div {
		padding: .85rem;
	}

	.team-grid {
		grid-template-columns: 1fr;
	}

	.team-app__toolbar {
		padding: .75rem;
	}

	.team-app__summary {
		grid-template-columns: 1fr;
	}

	.team-app__summary div {
		min-height: auto;
	}

	.team-search-row {
		grid-template-columns: 1fr;
	}

	.team-filter button {
		flex: 1 1 auto;
		justify-content: center;
	}

	.team-card {
		display: grid;
		grid-template-columns: 104px 1fr;
		align-items: center;
	}

	.team-card__media {
		aspect-ratio: 1 / 1;
		height: 100%;
	}

	.team-card__body {
		padding: .9rem 1rem;
	}
}

/* School-branded AAA homepage layer */
body {
	background:
		radial-gradient(circle at 12% 0, rgb(200 16 46 / 7%), transparent 30rem),
		linear-gradient(180deg, #fff8f4 0, #fffdfb 42rem);
}

.site-header {
	background: rgb(255 253 251 / 94%);
	border-bottom: 1px solid rgb(200 16 46 / 13%);
	box-shadow: 0 12px 34px rgb(39 17 20 / 7%);
}

.site-brand {
	max-width: 390px;
	gap: .75rem;
}

.site-brand::before {
	display: none;
	content: none;
}

.site-brand__mark {
	display: inline-grid;
	place-items: center;
	width: 54px;
	height: 54px;
	flex: 0 0 auto;
	border: 1px solid rgb(200 16 46 / 18%);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 10px 26px rgb(200 16 46 / 14%);
}

.site-brand__logo {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
}

.site-brand__copy {
	display: grid;
	gap: .05rem;
	line-height: 1.02;
}

.site-brand__name {
	color: var(--color-coral);
	font-size: .98rem;
	font-weight: 950;
	letter-spacing: .01em;
}

.site-brand__program {
	color: var(--color-navy);
	font-size: .77rem;
	font-weight: 900;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.primary-menu a {
	color: var(--color-navy);
}

.primary-menu a::after {
	background: var(--color-coral);
}

.button--primary {
	background: var(--color-coral);
	box-shadow: 0 14px 34px rgb(200 16 46 / 24%);
}

.button--primary:hover {
	background: #a90c23;
}

.text-link {
	color: var(--color-coral);
}

.hero {
	background: var(--color-navy-2);
}

.hero::after {
	background: linear-gradient(180deg, transparent, rgb(19 9 11 / 78%));
}

.hero__image {
	filter: saturate(1.08) contrast(1.04);
	object-position: center 42%;
}

.hero--home .hero__image {
	object-position: center 56%;
}

.hero__overlay {
	background:
		linear-gradient(90deg, rgb(19 9 11 / 96%) 0, rgb(39 17 20 / 76%) 38%, rgb(124 16 24 / 34%) 68%, rgb(39 17 20 / 12%) 100%),
		linear-gradient(180deg, rgb(19 9 11 / 16%), rgb(19 9 11 / 74%));
}

.hero h1 {
	max-width: 940px;
	text-shadow: 0 12px 44px rgb(0 0 0 / 32%);
}

.hero__proof {
	border-color: rgb(255 255 255 / 22%);
	background: linear-gradient(180deg, rgb(255 255 255 / 16%), rgb(255 255 255 / 9%));
	max-width: 360px;
}

.hero__proof-brand {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: .85rem;
	align-items: center;
	padding-bottom: .95rem;
	margin-bottom: .95rem;
	border-bottom: 1px solid rgb(255 255 255 / 16%);
}

.hero__proof-logo {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
	background: #fff;
}

.hero__proof-brand strong {
	display: block;
	color: #fff;
	font-size: 1.1rem;
	line-height: 1.1;
}

.trust-bar__inner {
	border-color: rgb(200 16 46 / 12%);
	box-shadow: 0 20px 60px rgb(39 17 20 / 12%);
}

.trust-item {
	border-left-color: var(--color-coral);
}

.section--light {
	background:
		linear-gradient(180deg, #fff4ef, #fffaf7);
}

.feature-card,
.program-card,
.testimonial-card {
	border-color: rgb(200 16 46 / 10%);
}

.feature-card:hover,
.program-card:hover,
.testimonial-card:hover {
	border-color: rgb(200 16 46 / 32%);
	box-shadow: 0 22px 56px rgb(39 17 20 / 12%);
}

.program-card {
	background:
		linear-gradient(180deg, #fff, #fff7f2);
}

.program-card__media {
	background: var(--color-navy-2);
}

.program-card__badge {
	position: absolute;
	top: .9rem;
	left: .9rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: .4rem .65rem;
	border: 1px solid rgb(255 255 255 / 28%);
	border-radius: 999px;
	background: rgb(19 9 11 / 62%);
	color: #fff;
	font-size: .76rem;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
}

.program-card h3,
.faq-item__button,
.team-card h3 {
	color: var(--color-navy);
}

.brand-story {
	background:
		radial-gradient(circle at 10% 12%, rgb(200 16 46 / 9%), transparent 24rem),
		var(--color-white);
}

.process-section {
	background:
		linear-gradient(135deg, #210b0f, #760d19 56%, #24090e);
}

.process-section::before {
	background:
		linear-gradient(90deg, rgb(255 255 255 / 11%) 1px, transparent 1px),
		linear-gradient(180deg, rgb(255 255 255 / 8%) 1px, transparent 1px);
}

.process-list span {
	color: #ffd37b;
}

.testimonial-card--featured {
	background:
		linear-gradient(135deg, #7b0f1a, #250d12);
}

.featured-content .feature-card {
	background:
		linear-gradient(135deg, rgb(255 255 255 / 96%), rgb(255 244 239 / 96%));
}

.feature-card--media {
	overflow: hidden;
	padding: 0;
}

.feature-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	margin: 0;
	background: var(--color-navy-2);
}

.feature-card__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgb(19 9 11 / 32%));
	content: "";
	pointer-events: none;
}

.feature-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .34s var(--ease);
}

.feature-card--media:hover .feature-card__image {
	transform: scale(1.035);
}

.feature-card__body {
	display: grid;
	gap: .7rem;
	padding: var(--space-3);
}

.final-cta {
	background:
		linear-gradient(90deg, rgb(19 9 11 / 94%), rgb(124 16 24 / 86%));
}

.school-life {
	overflow: hidden;
	background:
		linear-gradient(180deg, #fffdfb 0, #fff4ef 46%, #1a080b 46%, #1a080b 100%);
}

.school-life__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
	gap: var(--space-4);
	align-items: end;
	padding-bottom: var(--space-4);
}

.school-life__header h2 {
	max-width: 820px;
	color: var(--color-navy);
}

.school-life__header > p {
	color: var(--color-muted);
	font-weight: 800;
}

.school-life__stage {
	width: min(calc(100% - 2rem), 1320px);
	margin-inline: auto;
}

.school-life__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	border-radius: 8px;
	background: var(--color-navy-2);
	box-shadow: 0 28px 72px rgb(39 17 20 / 22%);
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.school-life__viewport::-webkit-scrollbar {
	display: none;
}

.school-life__track {
	display: grid;
	grid-auto-columns: 100%;
	grid-auto-flow: column;
}

.school-life__slide {
	position: relative;
	min-height: clamp(360px, 66vw, 740px);
	margin: 0;
	overflow: hidden;
	background: var(--color-navy-2);
	scroll-snap-align: start;
}

.school-life__slide::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, transparent 42%, rgb(19 9 11 / 74%) 100%),
		linear-gradient(90deg, rgb(19 9 11 / 28%), transparent 52%);
	content: "";
	pointer-events: none;
}

.school-life__image {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	object-position: center;
}

.school-life__slide figcaption {
	position: absolute;
	right: clamp(1rem, 4vw, 3rem);
	bottom: clamp(1rem, 4vw, 3rem);
	left: clamp(1rem, 4vw, 3rem);
	z-index: 2;
	display: grid;
	max-width: 620px;
	gap: .35rem;
	color: #fff;
	text-shadow: 0 10px 28px rgb(0 0 0 / 34%);
}

.school-life__slide figcaption span {
	color: #ffd37b;
	font-size: .78rem;
	font-weight: 950;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.school-life__slide figcaption strong {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 4rem);
	line-height: 1;
}

.school-life__slide figcaption em {
	max-width: 520px;
	color: rgb(255 255 255 / 84%);
	font-style: normal;
	font-weight: 800;
}

.school-life__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .75rem;
	padding-block: var(--space-3) .25rem;
	color: #fff;
}

.school-life__button,
.school-life__dots button {
	display: inline-grid;
	place-items: center;
	border: 1px solid rgb(255 255 255 / 24%);
	background: rgb(255 255 255 / 8%);
	color: #fff;
	cursor: pointer;
	transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}

.school-life__button {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font: inherit;
	font-size: 1.2rem;
	font-weight: 950;
}

.school-life__button:hover,
.school-life__dots button:hover,
.school-life__dots button[aria-current="true"] {
	transform: translateY(-1px);
	border-color: rgb(255 211 123 / 72%);
	background: rgb(255 211 123 / 20%);
}

.school-life__dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .42rem;
	max-width: 520px;
}

.school-life__dots button {
	width: 11px;
	height: 11px;
	padding: 0;
	border-radius: 50%;
}

.site-footer {
	background:
		linear-gradient(180deg, #1a080b, #0d0506);
}

@media (max-width: 900px) {
	.site-brand {
		max-width: 280px;
	}

	.site-brand__mark {
		width: 48px;
		height: 48px;
	}

	.site-brand__logo {
		width: 39px;
		height: 39px;
	}

	.site-brand__name {
		font-size: .88rem;
	}

	.site-brand__program {
		font-size: .68rem;
	}

	.hero__proof {
		max-width: 520px;
	}

	.jobs-hero__grid,
	.jobs-support__grid {
		grid-template-columns: 1fr;
	}

	.media-ribbon figcaption {
		right: .75rem;
		bottom: .75rem;
		left: .75rem;
		padding: .75rem .85rem;
	}

	.school-life__header {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.site-brand {
		max-width: 238px;
		gap: .55rem;
	}

	.site-brand__mark {
		width: 42px;
		height: 42px;
	}

	.site-brand__logo {
		width: 34px;
		height: 34px;
	}

	.site-brand__name {
		font-size: .78rem;
	}

	.site-brand__program {
		font-size: .58rem;
		letter-spacing: .08em;
	}

	.hero {
		min-height: 760px;
	}

	.hero__overlay {
		background:
			linear-gradient(180deg, rgb(19 9 11 / 38%) 0, rgb(19 9 11 / 88%) 48%, rgb(19 9 11 / 96%) 100%);
	}

	.hero__proof-brand {
		grid-template-columns: 44px 1fr;
	}

	.hero__proof-logo {
		width: 44px;
		height: 44px;
	}

	.media-ribbon figcaption {
		position: relative;
		right: auto;
		bottom: auto;
		left: auto;
		border: 0;
		border-radius: 0;
		background: #1a080b;
	}

	.feature-card__body {
		padding: 1.15rem;
	}

	.jobs-hero__grid,
	.jobs-support__grid {
		grid-template-columns: 1fr;
	}

	.recovery-grid {
		grid-template-columns: 1fr;
	}

	.jobs-hero {
		padding-block: 6rem 4rem;
	}

	.program-card__badge {
		top: .7rem;
		left: .7rem;
		font-size: .68rem;
	}

	.school-life__stage {
		width: min(calc(100% - 1.25rem), 1320px);
	}

	.school-life__slide {
		min-height: 480px;
	}

	.school-life__slide figcaption {
		right: 1rem;
		bottom: 1rem;
		left: 1rem;
	}

	.school-life__slide figcaption strong {
		font-size: 2rem;
	}

	.school-life__controls {
		align-items: flex-start;
	}
}
