:root {
	--navy: #344b63;
	--ink: #26384f;
	--green: var(--navy);
	--gold: #c79025;
	--gold-light: #e7bc62;
	--blue-light: #dce3ea;
	--paper: #fff;
	--soft: #f3f6f4;
	--muted: #596477;
	--line: #dedad1;
	--serif: Georgia, 'Times New Roman', serif;
	--sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.55;
}
.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: #fff;
	color: var(--navy);
	padding: 10px;
	z-index: 5;
}
.skip-link:focus {
	left: 10px;
}
a {
	color: inherit;
}
.site-header {
	height: 84px;
	padding: 0 clamp(24px, 4vw, 64px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #e5e7eb;
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 4;
}
.wordmark {
	display: grid;
	grid-template-columns: auto auto;
	column-gap: 3px;
	line-height: 0.9;
	text-decoration: none;
	color: var(--navy);
	font-family: var(--serif);
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.025em;
}
.wordmark b {
	color: var(--gold);
	font-weight: 700;
}
.wordmark small {
	grid-column: 1/-1;
	font-family: var(--sans);
	font-weight: 700;
	font-size: 8px;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	margin-top: 7px;
}
.site-header .wordmark {
	background: url(/assets/logo.svg) no-repeat left center;
	background-size: 34px 34px;
	padding-left: 45px;
}
.site-header nav {
	display: flex;
	align-items: center;
	gap: clamp(16px, 1.35vw, 30px);
	font-size: clamp(12px, 0.95vw, 14px);
	font-weight: 650;
}
/* Get Involved dropdown */
.nav-dropdown {
	position: relative;
	display: inline-flex;
}
.nav-trigger {
	font: inherit;
	font-weight: 650;
	color: var(--ink);
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.nav-trigger .caret {
	font-size: 0.7em;
	transition: transform 0.2s ease;
}
.nav-dropdown.open .nav-trigger .caret {
	transform: rotate(180deg);
}
.nav-trigger.nav-active {
	color: var(--green);
	text-decoration: underline;
	text-decoration-color: var(--gold);
	text-decoration-thickness: 2px;
	text-underline-offset: 9px;
}
.nav-menu {
	display: none;
	position: absolute;
	top: calc(100% + 14px);
	left: -18px;
	min-width: 234px;
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: 0 18px 40px -22px rgba(38, 56, 79, 0.5);
	padding: 8px;
	flex-direction: column;
	z-index: 6;
}
.nav-dropdown.open .nav-menu {
	display: flex;
}
/* Transparent bridge across the gap below the trigger, so moving the pointer
   toward the menu does not leave the dropdown and close it. */
.nav-menu::before {
	content: '';
	position: absolute;
	top: -16px;
	left: 0;
	right: 0;
	height: 16px;
}
.nav-menu a {
	display: block;
	padding: 11px 14px;
	text-decoration: none;
	color: var(--ink);
	font-weight: 650;
	line-height: 1.35;
}
.nav-menu a small {
	display: block;
	font-weight: 500;
	font-size: 11px;
	color: var(--muted);
	letter-spacing: 0;
	margin-top: 2px;
}
.nav-menu a:hover,
.nav-menu a:focus-visible {
	background: var(--soft);
	color: var(--green);
}
.site-header nav .nav-donate {
	background: var(--gold);
	color: var(--ink);
	border-color: var(--gold);
}
.site-header nav .nav-donate:hover {
	background: var(--gold-light);
	border-color: var(--gold-light);
}
.lang-select {
	font: inherit;
	font-weight: 650;
	color: var(--ink);
	background: #fff;
	border: 1px solid var(--line);
	padding: 9px 10px;
	cursor: pointer;
}
.lang-select:hover {
	border-color: var(--navy);
}
@media (max-width: 1320px) {
	.nav-dropdown {
		display: block;
		width: 100%;
	}
	.lang-select {
		width: 100%;
	}
	/* No gap to bridge once the menu sits inline. */
	.nav-menu::before {
		content: none;
	}
	.nav-menu {
		position: static;
		box-shadow: none;
		border: 0;
		padding: 6px 0 4px 14px;
		min-width: 0;
		border-left: 2px solid var(--line);
		margin-top: 10px;
	}
}
.site-header nav > a:not(.button) {
	text-decoration: none;
}
.site-header nav > a.nav-active {
	color: var(--green);
	text-decoration: underline;
	text-decoration-color: var(--gold);
	text-decoration-thickness: 2px;
	text-underline-offset: 9px;
}
.menu-toggle {
	display: none;
}
.button {
	background: var(--green);
	color: #fff;
	text-decoration: none;
	padding: 14px 18px;
	display: inline-flex;
	gap: 18px;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 750;
	border: 1px solid var(--green);
	transition: 0.2s ease;
}
.button:hover {
	background: #2b4056;
}
.button-small {
	padding: 12px 16px;
}
.button-outline {
	background: #fff;
	color: var(--green);
	border-color: var(--green);
}
.button-outline:hover {
	background: #f3f0e8;
}
.hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	min-height: 610px;
}
.hero-copy {
	padding: clamp(60px, 9vw, 145px) clamp(28px, 6vw, 98px);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}
.course-label,
.section-intro > p,
.faculty-head p {
	color: var(--gold);
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 1.1px;
	margin: 0 0 16px;
}
.hero h1,
.section h2,
.section-dark h2,
.cta h2 {
	font-family: var(--serif);
	font-size: clamp(46px, 5vw, 78px);
	font-weight: 400;
	letter-spacing: -0.012em;
	word-spacing: 0.06em;
	line-height: 1.08;
	margin: 0;
}
.rule {
	display: block;
	width: 49px;
	height: 2px;
	background: var(--gold);
	margin: 29px 0;
}
.lede {
	font-size: 18px;
	max-width: 560px;
	margin: 0;
	color: #314059;
}
.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}
.hero-media {
	margin: 0;
	position: relative;
	overflow: hidden;
	min-height: 420px;
	background: #e8e6e0;
}
.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.hero-media figcaption {
	position: absolute;
	right: 18px;
	bottom: 12px;
	color: #fff;
	font-size: 11px;
	text-shadow: 0 1px 3px #000;
}
.page-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
	gap: clamp(44px, 8vw, 130px);
	padding: clamp(70px, 10vw, 155px) clamp(24px, 8vw, 130px);
	background: var(--soft);
	align-items: end;
}
.page-hero-copy {
	max-width: 800px;
}
.page-hero-copy h1,
.process-page h1,
.section-intro h1 {
	font-family: var(--serif);
	font-size: clamp(50px, 6vw, 88px);
	font-weight: 400;
	letter-spacing: -0.012em;
	word-spacing: 0.06em;
	line-height: 1.08;
	margin: 0;
}
.page-hero-aside {
	background: var(--green);
	color: #fff;
	padding: 34px;
	border-top: 3px solid var(--gold);
}
.page-hero-aside p {
	color: var(--gold-light);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: 1.1px;
	margin: 0 0 18px;
	text-transform: uppercase;
}
.page-hero-aside ul {
	margin: 0;
	padding-left: 19px;
}
.page-hero-aside li {
	margin: 12px 0;
}
.page-hero-compact {
	display: block;
	min-height: 0;
}
.content-card-grid,
.link-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin-top: 58px;
}
.content-card-grid article {
	padding: 30px;
	border: 1px solid var(--line);
	margin: 0 -1px -1px 0;
}
.content-card-grid h3 {
	font-family: var(--serif);
	font-size: 30px;
	font-weight: 400;
	line-height: 1.1;
	margin: 0 0 14px;
}
.content-card-grid p {
	margin: 0;
	color: #435067;
}
.home-links .section-intro {
	max-width: 760px;
}
.home-links .link-grid {
	grid-template-columns: repeat(3, 1fr);
}
.link-grid a {
	display: flex;
	min-height: 180px;
	padding: 28px;
	border: 1px solid rgba(231, 188, 98, 0.62);
	margin: 0 -1px -1px 0;
	color: #fff;
	text-decoration: none;
	flex-direction: column;
	gap: 16px;
	transition: background 0.2s ease;
}
.link-grid a:hover {
	background: rgba(255, 255, 255, 0.08);
}
.link-grid span {
	font-size: 12px;
	color: var(--gold-light);
	font-weight: 800;
}
.link-grid strong {
	font-family: var(--serif);
	font-size: 30px;
	font-weight: 400;
}
.link-grid em {
	font-style: normal;
	color: var(--blue-light);
	font-size: 14px;
}
.process-page {
	min-height: 680px;
}
.faculty-strip {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 70px;
	align-items: center;
	padding: 36px clamp(24px, 7vw, 120px);
	background: var(--navy);
	color: #fff;
}
.faculty-head {
	display: flex;
	align-items: center;
	gap: 25px;
}
.faculty-head img {
	width: 110px;
	height: 120px;
	object-fit: cover;
	object-position: center top;
}
.faculty-head p {
	margin-bottom: 6px;
}
.faculty-head h2 {
	font-family: var(--serif);
	font-size: 31px;
	font-weight: 400;
	margin: 0;
}
.faculty-head span {
	color: var(--gold-light);
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.7px;
	font-size: 10px;
}
.faculty-strip > p {
	border-left: 1px solid var(--gold);
	padding-left: 45px;
	font-size: 17px;
	margin: 0;
}
.audiences {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 1200px;
	margin: 0 auto;
	padding: 86px 38px;
}
.home-audiences {
	grid-template-columns: repeat(3, 1fr);
	max-width: 1400px;
}
.home-audiences article {
	padding: 0 34px;
}
.audiences article {
	padding: 0 60px;
}
.audiences article + article {
	border-left: 1px solid var(--gold);
}
.line-icon {
	color: var(--green);
	font-size: 48px;
	line-height: 0.7;
}
.audiences h2,
.focus h3,
.faculty-grid h3 {
	font-family: var(--serif);
	font-size: 35px;
	font-weight: 400;
	margin: 14px 0 6px;
}
.audiences p {
	color: #364256;
	max-width: 450px;
}
.text-link {
	color: var(--green);
	font-weight: 750;
	text-underline-offset: 8px;
	text-decoration-color: var(--gold);
	text-decoration-thickness: 1px;
}
.section {
	padding: 110px clamp(24px, 8vw, 130px);
}
.focus {
	background: var(--soft);
}
.section-intro {
	max-width: 710px;
}
.section-intro h2,
.section-dark h2 {
	font-size: clamp(42px, 4vw, 62px);
}
.section-intro > p:last-child {
	font-size: 18px;
	text-transform: none;
	letter-spacing: 0;
	color: #39475b;
	font-weight: 400;
}
.focus-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 55px;
	border-top: 1px solid var(--gold);
	border-left: 1px solid var(--gold);
}
.focus-grid article {
	min-height: 220px;
	padding: 26px;
	border-right: 1px solid var(--gold);
	border-bottom: 1px solid var(--gold);
}
.focus-grid span {
	font-size: 12px;
	color: var(--gold);
	font-weight: 800;
}
.focus-grid h3 {
	font-size: 28px;
	line-height: 1.05;
}
.focus-grid p {
	margin: 0;
	color: #435067;
}
.focus-grid-detailed article {
	min-height: 350px;
}
.focus-grid-detailed dl {
	margin: 24px 0 0;
	padding-top: 20px;
	border-top: 1px solid rgba(199, 144, 37, 0.42);
}
.focus-grid-detailed dt {
	color: var(--green);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}
.focus-grid-detailed dd {
	margin: 4px 0 16px;
	color: #435067;
	font-size: 14px;
}
.section-dark {
	padding: 105px clamp(24px, 8vw, 130px);
	background: var(--navy);
	color: #fff;
}
.section-dark .section-intro > p {
	color: var(--gold-light);
}
.steps {
	padding: 0;
	margin: 60px 0 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}
.steps li {
	border-top: 1px solid var(--gold);
	padding-top: 20px;
	position: relative;
}
.steps b {
	border: 1px solid var(--gold);
	border-radius: 50%;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	color: var(--gold-light);
	font-family: var(--serif);
	font-weight: 400;
}
.steps h3 {
	font-family: var(--serif);
	font-size: 25px;
	line-height: 1.02;
	font-weight: 400;
	margin: 20px 0 10px;
}
.steps p {
	font-size: 14px;
	color: var(--blue-light);
	margin: 0;
}
.facts-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 55px;
	border-top: 1px solid var(--gold);
	border-left: 1px solid var(--gold);
}
.facts-grid article {
	padding: 28px;
	border-right: 1px solid var(--gold);
	border-bottom: 1px solid var(--gold);
}
.facts-grid span {
	display: block;
	color: var(--gold-light);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}
.facts-grid strong {
	display: block;
	margin: 10px 0 12px;
	font-family: var(--serif);
	font-size: 27px;
	font-weight: 400;
	line-height: 1.08;
}
.facts-grid p {
	margin: 0;
	color: var(--blue-light);
	font-size: 14px;
}
.facts-grid-light span {
	color: var(--gold);
}
.facts-grid-light p {
	color: #435067;
}
.fit-grid,
.responsibility-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 54px;
}
.fit-card,
.responsibility-grid article {
	padding: 34px;
	border-top: 3px solid var(--green);
	background: var(--soft);
}
.fit-card-muted {
	border-top-color: var(--gold);
	background: #f7f4ed;
}
.fit-card > p,
.responsibility-grid article > p {
	margin: 0 0 12px;
	color: var(--gold);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}
.fit-card h3,
.responsibility-grid h2 {
	margin: 0 0 20px;
	font-family: var(--serif);
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.14;
	word-spacing: 0.08em;
}
.fit-card ul,
.responsibility-grid ul {
	margin: 0;
	padding-left: 19px;
}
.fit-card li,
.responsibility-grid li {
	margin: 9px 0;
}
.deliverables-grid,
.agreement-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin-top: 54px;
}
.deliverables-grid article,
.agreement-grid article {
	padding: 30px;
	border: 1px solid var(--line);
	margin: 0 -1px -1px 0;
}
.deliverables-grid span {
	color: var(--gold);
	font-size: 12px;
	font-weight: 800;
}
.deliverables-grid h3,
.agreement-grid h3 {
	margin: 10px 0;
	font-family: var(--serif);
	font-size: 28px;
	font-weight: 400;
	line-height: 1.08;
}
.deliverables-grid p,
.agreement-grid p {
	margin: 0;
	color: #435067;
}
.faculty-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.7fr;
	gap: 110px;
}
.large-copy {
	font-family: var(--serif);
	font-size: clamp(25px, 2.6vw, 40px);
	line-height: 1.2;
	margin-top: 0;
}
.faculty-grid aside {
	border-top: 1px solid var(--gold);
	padding-top: 20px;
}
.faculty-grid aside h3 {
	font-size: 26px;
}
.faculty-grid ul {
	padding-left: 18px;
	color: #445168;
}
.faculty-grid li {
	margin: 11px 0;
}
.partner {
	padding: 65px clamp(24px, 8vw, 130px);
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	align-items: center;
	border-top: 1px solid #e2e6e8;
	border-bottom: 1px solid #e2e6e8;
}
.partner p {
	font-family: var(--serif);
	font-size: clamp(31px, 3.8vw, 54px);
	line-height: 1.05;
	margin: 0;
	max-width: 650px;
}
.partner h2 {
	font-family: var(--serif);
	font-size: clamp(31px, 3.4vw, 50px);
	font-weight: 400;
	color: var(--green);
	border-left: 1px solid var(--gold);
	padding-left: 60px;
	margin: 0;
}
.partner small {
	grid-column: 1/-1;
	margin-top: 22px;
	color: var(--muted);
}
.testimonial {
	display: grid;
	grid-template-columns: 0.72fr 1.28fr;
	gap: clamp(45px, 7vw, 110px);
	align-items: start;
	padding: clamp(70px, 8vw, 120px) clamp(24px, 8vw, 130px);
	background: var(--soft);
	border-top: 1px solid #e2e6e8;
	border-bottom: 1px solid #e2e6e8;
}
.testimonial-meta p {
	margin: 0 0 14px;
	color: var(--gold);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.1px;
	text-transform: uppercase;
}
.testimonial-meta h2 {
	margin: 0;
	color: var(--green);
	font-family: var(--serif);
	font-size: clamp(36px, 4vw, 56px);
	font-weight: 400;
	line-height: 1.05;
}
.testimonial figure {
	margin: 0;
	padding-left: clamp(30px, 5vw, 65px);
	border-left: 1px solid var(--gold);
}
.testimonial blockquote {
	margin: 0;
	color: var(--navy);
	font-family: var(--serif);
	font-size: clamp(25px, 2.5vw, 39px);
	line-height: 1.24;
}
.testimonial figcaption {
	display: flex;
	flex-direction: column;
	gap: 3px;
	margin-top: 28px;
	color: var(--muted);
	font-size: 14px;
}
.testimonial figcaption strong {
	color: var(--green);
	font-size: 16px;
}
.testimonial-compact {
	padding-top: clamp(58px, 6vw, 85px);
	padding-bottom: clamp(58px, 6vw, 85px);
}
.testimonial-compact blockquote {
	font-size: clamp(23px, 2.1vw, 32px);
}
.cta {
	display: grid;
	grid-template-columns: 1.2fr 0.75fr;
	gap: 65px;
	background: var(--green);
	color: #fff;
	padding: clamp(55px, 7vw, 100px) clamp(24px, 8vw, 130px);
	align-items: center;
}
.cta > div > p {
	max-width: 620px;
	font-size: 18px;
}
.cta h2 {
	font-size: clamp(46px, 4.5vw, 67px);
}
.button-gold {
	background: #d39c30;
	border-color: #d39c30;
	color: var(--ink);
}
.button-gold:hover {
	background: #e2ae47;
}
.button-outline-light {
	background: transparent;
	border-color: var(--gold-light);
}
.button-outline-light:hover {
	background: rgba(255, 255, 255, 0.12);
}
.contact-card {
	background: #fff;
	color: var(--ink);
	padding: 34px;
	box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.13);
}
.contact-card h3 {
	font-family: var(--serif);
	font-size: 29px;
	font-weight: 400;
	margin: 0 0 9px;
}
.contact-card a {
	display: block;
	color: var(--green);
	font-weight: 750;
	margin: 20px 0;
}
.contact-card small {
	color: var(--muted);
}
.form-page {
	padding: clamp(50px, 7vw, 100px) clamp(24px, 8vw, 130px) 100px;
	background: var(--soft);
}
.form-page-intro {
	max-width: 760px;
	margin: 0 auto 44px;
}
.form-page-intro > p:first-child {
	color: var(--gold);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.1px;
	margin: 0 0 16px;
	text-transform: uppercase;
}
.form-page-intro h1 {
	font-family: var(--serif);
	font-size: clamp(46px, 5vw, 74px);
	font-weight: 400;
	letter-spacing: -0.012em;
	line-height: 1.08;
	margin: 0;
	word-spacing: 0.06em;
}
.scenario-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.8fr);
	gap: clamp(46px, 8vw, 120px);
	align-items: center;
	padding: clamp(72px, 10vw, 142px) clamp(24px, 8vw, 130px) clamp(60px, 8vw, 112px);
	background: #fff;
}
.scenario-hero-copy {
	max-width: 740px;
}
.scenario-hero h1,
.scenario-group h2,
.scenario-audiences h2 {
	font-family: var(--serif);
	font-weight: 400;
	letter-spacing: -0.012em;
	word-spacing: 0.06em;
}
.scenario-hero h1 {
	font-size: clamp(50px, 5.8vw, 86px);
	line-height: 1.05;
	margin: 0;
}
.project-path {
	margin: 0;
	padding: 0;
	list-style: none;
	border-left: 2px solid var(--gold);
	display: grid;
	gap: 18px;
}
.project-path li {
	position: relative;
	margin-left: 28px;
	padding: 19px 23px 18px;
	border: 1px solid var(--navy);
	background: #fff;
	display: grid;
	grid-template-columns: 42px 1fr;
	column-gap: 14px;
}
.project-path li::before {
	content: '';
	position: absolute;
	left: -30px;
	top: 50%;
	width: 28px;
	border-top: 2px solid var(--gold);
}
.project-path b {
	grid-row: span 2;
	color: var(--gold);
	font-size: 13px;
	letter-spacing: 0.08em;
}
.project-path strong {
	font-family: var(--serif);
	font-size: 27px;
	font-weight: 400;
	line-height: 1.05;
}
.project-path span {
	grid-column: 2;
	margin-top: 6px;
	color: #435067;
	font-size: 13px;
	line-height: 1.4;
}
.scenario-rail {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border-top: 1px solid var(--gold);
	border-bottom: 1px solid var(--gold);
	margin: 0 clamp(24px, 8vw, 130px);
}
.scenario-rail a {
	min-height: 84px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	color: var(--navy);
	font-family: var(--serif);
	font-size: clamp(19px, 2vw, 28px);
	font-weight: 400;
	line-height: 1.04;
	text-align: center;
	text-decoration: none;
	border-right: 1px solid var(--gold);
	transition: background 0.18s ease, color 0.18s ease;
}
.scenario-rail a:last-child {
	border-right: 0;
}
.scenario-rail a:hover,
.scenario-rail a:focus-visible {
	background: var(--navy);
	color: #fff;
}
.scenario-intro {
	padding-bottom: 65px;
}
.scenario-group {
	padding: clamp(72px, 9vw, 120px) clamp(24px, 8vw, 130px);
	background: #fff;
}
.scenario-group-blue {
	background: var(--blue-light);
}
.scenario-group-head {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.7fr);
	column-gap: clamp(36px, 8vw, 130px);
	margin-bottom: 52px;
	border-top: 3px solid var(--navy);
	padding-top: 25px;
}
.scenario-group-head > p:first-child {
	grid-column: 1 / -1;
	margin: 0 0 20px;
	color: var(--gold);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.1px;
	text-transform: uppercase;
}
.scenario-group h2 {
	margin: 0;
	font-size: clamp(40px, 4.3vw, 64px);
	line-height: 1.08;
}
.scenario-group-head > p:last-child {
	margin: 0;
	color: #435067;
	font-size: 17px;
}
.scenario-list {
	border-top: 1px solid rgba(52, 75, 99, 0.45);
}
.scenario-row {
	display: grid;
	grid-template-columns: 72px minmax(0, 1.1fr) minmax(300px, 0.82fr);
	gap: 24px;
	padding: 29px 0;
	border-bottom: 1px solid rgba(52, 75, 99, 0.45);
}
.scenario-row > span {
	color: var(--gold);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.08em;
}
.scenario-row h3 {
	margin: 0 0 9px;
	font-family: var(--serif);
	font-size: clamp(28px, 2.6vw, 39px);
	font-weight: 400;
	letter-spacing: -0.006em;
	line-height: 1.06;
}
.scenario-row p {
	margin: 0;
	color: #435067;
}
.scenario-row dl {
	margin: 0;
	padding-left: 24px;
	border-left: 1px solid var(--gold);
}
.scenario-row dt {
	margin: 0 0 4px;
	color: var(--navy);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.scenario-row dd {
	margin: 0 0 15px;
	color: #435067;
	font-size: 14px;
}
.scenario-row dd:last-child {
	margin-bottom: 0;
}
.scenario-note {
	padding: 26px clamp(24px, 8vw, 130px);
	background: #f7f4ed;
	border-top: 1px solid rgba(199, 144, 37, 0.58);
	border-bottom: 1px solid rgba(199, 144, 37, 0.58);
}
.scenario-note p {
	max-width: 1000px;
	margin: 0;
	color: #435067;
}
.scenario-note strong {
	color: var(--navy);
}
.scenario-audiences {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 8vw, 130px);
	padding: clamp(78px, 9vw, 126px) clamp(24px, 8vw, 130px);
	background: var(--navy);
	color: #fff;
}
.scenario-audiences article + article {
	border-left: 1px solid var(--gold);
	padding-left: clamp(35px, 7vw, 100px);
}
.scenario-audiences > article > p {
	margin: 0 0 16px;
	color: var(--gold-light);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.1px;
	text-transform: uppercase;
}
.scenario-audiences h2 {
	margin: 0;
	font-size: clamp(40px, 4vw, 61px);
	line-height: 1.08;
}
.scenario-audiences ul {
	margin: 30px 0;
	padding-left: 20px;
	color: var(--blue-light);
}
.scenario-audiences li {
	margin: 10px 0;
}
.form-page-intro > p:last-child {
	color: #39475b;
	font-size: 18px;
	max-width: 640px;
}
.form-notice {
	max-width: 760px;
	margin: 28px auto;
	border-left: 3px solid var(--gold);
	background: #fff8e9;
	padding: 15px 18px;
	color: #4e3a13;
}
.form-prep {
	display: grid;
	grid-template-columns: 0.65fr 1.35fr;
	gap: 50px;
	max-width: 980px;
	margin: 0 auto 40px;
	padding: 34px;
	background: #fff;
	border-top: 3px solid var(--green);
}
.form-prep > div > p,
.after-submit > div:first-child > p {
	margin: 0 0 11px;
	color: var(--gold);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}
.form-prep h2,
.after-submit h2 {
	margin: 0;
	font-family: var(--serif);
	font-size: 31px;
	font-weight: 400;
	line-height: 1.08;
}
.form-prep-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.form-prep-grid article {
	border-top: 1px solid var(--gold);
	padding-top: 12px;
}
.form-prep-grid strong {
	color: var(--green);
}
.form-prep-grid p {
	margin: 5px 0 0;
	color: #435067;
	font-size: 14px;
}
.form-frame {
	max-width: 860px;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0 16px 48px rgba(16, 40, 70, 0.09);
}
.form-frame iframe {
	display: block;
	width: 100%;
	/* Formbricks lays out link surveys against its viewport. Keep the embedded
	 * viewport equally tall so controls are not clipped into an inner scrollbar. */
	height: 100dvh;
	min-height: 0;
	border: 0;
}
.native-form-shell {
	max-width: 860px;
	margin: 42px auto 0;
	background: #fff;
	border-top: 4px solid var(--gold);
	box-shadow: 0 16px 48px rgba(16, 40, 70, 0.09);
}
.native-form-heading {
	padding: 38px 42px 28px;
	border-bottom: 1px solid #d8dce0;
}
.native-form-heading > p:first-child,
.native-form fieldset legend {
	margin: 0 0 10px;
	color: var(--gold);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}
.native-form-heading h2 {
	margin: 0;
	font-family: var(--serif);
	font-size: 37px;
	font-weight: 400;
	line-height: 1.08;
}
.native-form-heading p:last-child {
	max-width: 620px;
	margin: 14px 0 0;
	color: #435067;
}
.native-form { padding: 12px 42px 42px; }
.native-form fieldset {
	margin: 0;
	padding: 31px 0;
	border: 0;
	border-bottom: 1px solid #d8dce0;
}
.native-form fieldset:last-of-type { border-bottom: 0; }
.native-form fieldset legend { float: left; width: 100%; }
.native-form label {
	display: grid;
	gap: 8px;
	color: var(--green);
	font-size: 14px;
	font-weight: 750;
}
.native-form input,
.native-form select,
.native-form textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 13px;
	border: 1px solid #aeb9c7;
	border-radius: 2px;
	background: #fffefb;
	color: var(--navy);
	font: inherit;
	font-weight: 500;
}
.native-form textarea { resize: vertical; min-height: 112px; }
.native-form input:focus,
.native-form select:focus,
.native-form textarea:focus {
	outline: 3px solid rgba(185, 137, 38, 0.22);
	border-color: var(--gold);
}
.native-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; clear: both; }
.native-form fieldset > label:not(.checkbox-label) { clear: both; margin-top: 20px; }
.native-form .checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 15px;
	color: #435067;
	font-weight: 500;
	line-height: 1.45;
}
.native-form .checkbox-label input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--gold); }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; clear: both; }
.field-help { clear: both; margin: -3px 0 16px; color: #56657a; font-size: 14px; }
.form-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit-row { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 22px; margin-top: 26px; }
.form-submit-row .button { width: auto; }
.form-submit-row .button:disabled { cursor: wait; opacity: 0.65; }
[data-form-status] { margin: 0; color: #56657a; font-size: 14px; }
[data-form-status][data-state="success"] { color: #245f48; font-weight: 700; }
[data-form-status][data-state="error"] { color: #a12f32; font-weight: 700; }
.after-submit {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 45px;
	max-width: 860px;
	margin: 40px auto 0;
	padding: 30px;
	background: var(--navy);
	color: #fff;
}
.after-submit > div:last-child p {
	margin-top: 0;
	color: var(--blue-light);
}
.external-form-link {
	color: var(--gold-light);
	font-weight: 750;
	text-underline-offset: 5px;
}
footer {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 45px;
	padding: 48px clamp(24px, 7vw, 120px);
	background: var(--navy);
	color: #fff;
}
footer .wordmark {
	color: #fff;
}
footer > div {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	font-size: 13px;
}
footer p {
	color: var(--blue-light);
	font-size: 12px;
	margin: 0;
	text-align: right;
}
@media (max-width: 1320px) and (min-width: 901px) {
	.menu-toggle {
		display: block;
		border: 0;
		background: #fff;
		color: var(--green);
		font-weight: 750;
	}
	.site-header nav {
		display: none;
		position: absolute;
		top: 84px;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid var(--line);
		padding: 22px clamp(32px, 6vw, 82px);
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		gap: 18px 30px;
	}
	.site-header nav.open {
		display: flex;
	}
}
@media (max-width: 900px) {
	.site-header {
		height: 68px;
	}
	.menu-toggle {
		display: block;
		border: 0;
		background: #fff;
		color: var(--green);
		font-weight: 750;
	}
	.site-header nav {
		display: none;
		position: absolute;
		top: 68px;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid var(--line);
		padding: 20px 25px;
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}
	.site-header nav.open {
		display: flex;
	}
	.hero {
		grid-template-columns: 1fr;
	}
	.page-hero {
		grid-template-columns: 1fr;
		gap: 38px;
		padding: 75px 28px;
	}
	.page-hero-compact {
		display: block;
	}
	.scenario-hero {
		grid-template-columns: 1fr;
		gap: 50px;
		padding: 75px 28px 65px;
	}
	.scenario-rail {
		grid-template-columns: repeat(2, 1fr);
		margin: 0 28px;
	}
	.scenario-rail a:nth-child(2n) {
		border-right: 0;
	}
	.scenario-rail a:last-child {
		border-right: 1px solid var(--gold);
	}
	.scenario-group {
		padding: 75px 28px;
	}
	.scenario-group-head {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.scenario-row {
		grid-template-columns: 54px minmax(0, 1fr);
		gap: 16px;
	}
	.scenario-row dl {
		grid-column: 2;
		padding-left: 18px;
	}
	.scenario-audiences {
		grid-template-columns: 1fr;
		gap: 46px;
		padding: 75px 28px;
	}
	.scenario-audiences article + article {
		border-left: 0;
		border-top: 1px solid var(--gold);
		padding: 46px 0 0;
	}
	.content-card-grid,
	.link-grid {
		grid-template-columns: 1fr;
	}
	.hero-copy {
		padding: 70px 28px 50px;
	}
	.hero-media {
		height: 390px;
	}
	.form-page {
		padding: 65px 28px 75px;
	}
	.faculty-strip,
	.cta {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.faculty-strip > p {
		padding-left: 25px;
	}
	.audiences {
		padding: 60px 24px;
	}
	.home-audiences {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.home-audiences article {
		padding: 32px 0;
	}
	.home-audiences article + article {
		border-top: 1px solid var(--gold);
		border-left: 0;
	}
	.audiences article {
		padding: 0 28px;
	}
	.section,
	.section-dark {
		padding: 75px 28px;
	}
	.focus-grid {
		grid-template-columns: 1fr 1fr;
	}
	.facts-grid,
	.deliverables-grid,
	.agreement-grid {
		grid-template-columns: 1fr 1fr;
	}
	.form-prep {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.steps {
		grid-template-columns: repeat(3, 1fr);
	}
	.faculty-grid {
		grid-template-columns: 1fr;
		gap: 35px;
	}
	.partner {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.partner h2 {
		border-left: 0;
		border-top: 1px solid var(--gold);
		padding: 24px 0 0;
	}
	.testimonial {
		grid-template-columns: 1fr;
		gap: 34px;
	}
	.testimonial figure {
		padding: 28px 0 0;
		border-top: 1px solid var(--gold);
		border-left: 0;
	}
	footer {
		grid-template-columns: 1fr 1fr;
	}
	footer p {
		text-align: left;
	}
}
@media (max-width: 560px) {
	.wordmark {
		font-size: 24px;
	}
	.hero h1 {
		font-size: 49px;
	}
	.hero-media {
		height: 320px;
	}
	.faculty-head img {
		width: 75px;
		height: 90px;
	}
	.faculty-head h2 {
		font-size: 27px;
	}
	.audiences {
		grid-template-columns: 1fr;
		gap: 45px;
	}
	.audiences article {
		padding: 0;
	}
	.audiences article + article {
		border-left: 0;
		border-top: 1px solid var(--gold);
		padding-top: 38px;
	}
	.focus-grid {
		grid-template-columns: 1fr;
	}
	.facts-grid,
	.fit-grid,
	.responsibility-grid,
	.deliverables-grid,
	.agreement-grid,
	.form-prep-grid,
	.after-submit {
		grid-template-columns: 1fr;
	}
	.focus-grid-detailed article {
		min-height: 0;
	}
	.form-prep,
	.after-submit {
		padding: 24px;
	}
	.steps {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	.steps h3 {
		font-size: 22px;
	}
	.cta {
		gap: 35px;
	}
	.actions {
		flex-direction: column;
		align-items: stretch;
	}
	.button {
		width: 100%;
	}
	footer {
		grid-template-columns: 1fr;
		gap: 27px;
	}
	.course-label {
		font-size: 10px;
	}
	.form-frame iframe {
		height: 100svh;
		min-height: 0;
	}
	.native-form-shell { margin-top: 28px; }
	.native-form-heading,
	.native-form { padding-left: 24px; padding-right: 24px; }
	.native-form-heading h2 { font-size: 31px; }
	.native-form-grid,
	.check-grid,
	.form-submit-row { grid-template-columns: 1fr; }
	.form-submit-row { align-items: stretch; }
	.scenario-hero h1 {
		font-size: 50px;
	}
	.project-path li {
		margin-left: 20px;
		padding: 16px;
		grid-template-columns: 31px 1fr;
	}
	.project-path li::before {
		left: -22px;
		width: 20px;
	}
	.project-path strong {
		font-size: 23px;
	}
	.scenario-rail {
		grid-template-columns: 1fr;
		margin: 0 24px;
	}
	.scenario-rail a,
	.scenario-rail a:last-child {
		min-height: 58px;
		border-right: 0;
		border-bottom: 1px solid var(--gold);
	}
	.scenario-rail a:last-child {
		border-bottom: 0;
	}
	.scenario-row {
		grid-template-columns: 38px minmax(0, 1fr);
		padding: 25px 0;
	}
	.scenario-row dl {
		grid-column: 1 / -1;
		padding: 18px 0 0;
		border-left: 0;
		border-top: 1px solid rgba(199, 144, 37, 0.7);
	}
}
