/**
 * ZORA Academy — components.
 * Reusable pieces shared across templates: buttons, header, hero, section
 * blocks, cards, forms, the advisor dialog and the footer.
 */

/* --------------------------------------------------------------- Buttons */

.z-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 54px;
	padding: 0 28px;
	border: 0;
	border-radius: var(--z-radius);
	font: 600 15px/1 var(--z-font-body);
	font-family: var(--z-font-body);
	text-align: center;
	cursor: pointer;
	transition:
		background-color 240ms ease,
		border-color 240ms ease,
		color 240ms ease;
}

.z-btn--primary {
	background: var(--z-navy-800);
	color: var(--z-white);
}

.z-btn--primary:hover {
	background: var(--z-blue-600);
	color: var(--z-white);
}

.z-btn--light {
	background: var(--z-white);
	color: var(--z-navy-800);
}

.z-btn--light:hover {
	background: var(--z-blue-200);
	color: var(--z-navy-800);
}

.z-btn--ghost-light {
	background: none;
	border: 1px solid rgba(159, 192, 234, 0.36);
	color: var(--z-white);
}

.z-btn--ghost-light:hover {
	border-color: var(--z-white);
	color: var(--z-white);
}

.z-btn--outline {
	background: none;
	border: 1px solid var(--z-border-strong);
	color: var(--z-navy-800);
}

.z-btn--outline:hover {
	border-color: var(--z-navy-800);
	color: var(--z-navy-800);
}

/* Header-scale button. */
.z-btn--sm {
	height: 44px;
	padding: 0 22px;
	font-size: 14px;
	letter-spacing: -0.005em;
}

.z-btn--block {
	width: 100%;
}

.z-btn--wide {
	padding-inline: 30px;
}

.z-btn[disabled] {
	background: #3d5a80;
	cursor: wait;
}

.z-btn__arrow {
	display: inline-block;
	transition: transform 240ms var(--z-ease);
}

.z-btn:hover .z-btn__arrow,
.z-btn:focus-visible .z-btn__arrow {
	transform: translateX(4px);
}

/* Inline text action with trailing arrow. */
.z-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font: 600 15px/1 var(--z-font-body);
	color: var(--z-blue-600);
}

.z-link-arrow:hover {
	color: var(--z-navy-800);
}

.z-link-arrow:hover .z-btn__arrow {
	transform: translateX(4px);
}

/* ---------------------------------------------------------------- Header */

.z-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--z-border);
	transition: box-shadow 240ms ease;
}

.z-header.is-scrolled {
	box-shadow: var(--z-shadow-header);
}

.z-header__bar {
	max-width: var(--z-container);
	margin-inline: auto;
	padding-inline: var(--z-gutter);
	height: var(--z-header-height);
	display: flex;
	align-items: center;
	gap: 32px;
}

.z-header__brand {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	min-width: 0;
}

.z-header__brand img {
	height: 38px;
	width: auto;
	display: block;
}

.z-header__brand-text {
	font: 700 21px/1 var(--z-font-head);
	letter-spacing: -0.02em;
	color: var(--z-navy-800);
	white-space: nowrap;
}

.z-nav {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.4vw, 34px);
}

.z-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.4vw, 34px);
	list-style: none;
	margin: 0;
	padding: 0;
}

.z-nav__list a {
	font: 500 15px/1 var(--z-font-body);
	letter-spacing: -0.005em;
	color: var(--z-ink-slate);
	transition: color 200ms ease;
}

.z-nav__list a:hover,
.z-nav__list .current-menu-item > a,
.z-nav__list .current_page_item > a,
.z-nav__list [aria-current="page"] {
	color: var(--z-navy-800);
}

/* Burger — shown only on narrow viewports (see responsive.css). */
.z-burger {
	display: none;
	margin-left: auto;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	padding: 0 11px;
	background: none;
	border: 1px solid var(--z-border);
	border-radius: var(--z-radius);
	cursor: pointer;
}

.z-burger span {
	display: block;
	height: 1.5px;
	background: var(--z-navy-800);
	transition: transform 240ms var(--z-ease), opacity 200ms ease;
}

.z-burger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}

.z-burger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.z-burger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

.z-mobile-nav {
	border-top: 1px solid var(--z-border);
	background: var(--z-white);
}

.z-mobile-nav[hidden] {
	display: none;
}

.z-mobile-nav__inner {
	padding: 8px var(--z-gutter) 24px;
	display: grid;
}

.z-mobile-nav__list {
	display: grid;
	list-style: none;
	margin: 0;
	padding: 0;
}

.z-mobile-nav__list a {
	display: block;
	padding: 16px 0;
	border-bottom: 1px solid var(--z-border-hairline);
	font: 500 17px/1 var(--z-font-body);
	color: var(--z-navy-800);
}

.z-mobile-nav .z-btn {
	margin-top: 20px;
	height: 52px;
	font-size: 15px;
}

/* ------------------------------------------------------------ Blueprint  */
/*
 * Decorative nautical-chart backdrop behind the dark sections.
 * Purely presentational: always aria-hidden in markup.
 */

.z-blueprint-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(159, 192, 234, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(159, 192, 234, 0.045) 1px, transparent 1px);
	background-size: 112px 112px;
}

.z-blueprint {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.z-blueprint__route-faint { stroke: var(--z-route-faint); }
.z-blueprint__route { stroke: var(--z-route-mid); }

.z-blueprint__trace {
	stroke: var(--z-blue-400);
	animation: zTrace 110s linear infinite;
}

.z-blueprint__ring {
	transform-box: fill-box;
	transform-origin: center;
	animation: zRing 12s ease-out infinite;
}

.z-blueprint__ring--delay { animation-delay: 6s; }

.z-blueprint__ping {
	transform-box: fill-box;
	transform-origin: center;
	animation: zRing 3.2s ease-out infinite;
}

.z-blueprint__ping--delay { animation-delay: 1.6s; }

.z-blueprint__pulse { animation: zPulse 7s ease-in-out infinite; }

.z-blueprint__label {
	font-family: var(--z-font-mono);
	font-size: 11px;
	letter-spacing: 1.4px;
	fill: var(--z-route-label);
}

.z-blueprint__label--sub {
	font-size: 10px;
	letter-spacing: 1.8px;
	fill: var(--z-route-label-dim);
}

/* ------------------------------------------------------------------ Hero */

.z-hero {
	position: relative;
	background: var(--z-navy-900);
	overflow: hidden;
}

.z-hero__inner {
	position: relative;
	max-width: var(--z-container);
	margin-inline: auto;
	padding: clamp(76px, 8vw, 118px) var(--z-gutter) clamp(48px, 5vw, 72px);
}

.z-hero__content {
	max-width: min(100%, 860px);
}

.z-hero .z-eyebrow {
	margin-bottom: clamp(24px, 3vw, 36px);
}

.z-hero__title {
	color: var(--z-white);
}

.z-hero__lede {
	margin: clamp(24px, 2.6vw, 32px) 0 0;
	max-width: 31em;
	font: 400 clamp(16px, 1.25vw, 18px) / 1.78 var(--z-font-body);
	color: var(--z-on-dark);
}

.z-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: clamp(30px, 3.2vw, 40px);
}

.z-hero__meta {
	margin-top: clamp(44px, 5vw, 76px);
	padding-top: 22px;
	border-top: 1px solid rgba(159, 192, 234, 0.16);
	display: flex;
	flex-wrap: wrap;
	gap: clamp(20px, 4vw, 56px);
	list-style: none;
	margin-bottom: 0;
	padding-inline: 0;
}

.z-hero__meta li {
	font: 500 11px/1.5 var(--z-font-mono);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--z-blue-300);
}

/* --------------------------------------------------------------- Figures */

.z-figure {
	margin: 0;
}

.z-figure__img {
	display: block;
	width: 100%;
	height: clamp(360px, 46vw, 620px);
	object-fit: cover;
	background: var(--z-placeholder);
}

.z-figure__img--fill {
	height: 100%;
	min-height: clamp(280px, 38vw, 560px);
	object-position: center;
}

/* Never leave an undefined image state. */
.z-figure__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: var(--z-placeholder);
	color: var(--z-ink-muted);
	font: 500 11px/1.6 var(--z-font-mono);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-align: center;
}

/* -------------------------------------------------------- Feature blocks */

.z-feature-grid {
	margin-top: clamp(48px, 6vw, 88px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	gap: clamp(28px, 4vw, 56px);
}

.z-feature {
	border-top: 1px solid var(--z-border-strong);
	padding-top: 22px;
}

.z-feature .z-label {
	display: block;
	margin-bottom: 18px;
}

.z-feature p:last-child {
	margin: 0;
}

/* About-page variant: lighter rule, smaller heading. */
.z-approach-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	gap: clamp(28px, 3vw, 48px);
}


/* ------------------------------------------------- Program stat + list   */

.z-bignum {
	margin: clamp(34px, 4vw, 48px) 0 0;
	font: 600 clamp(40px, 5vw, 68px) / 1 var(--z-font-head);
	letter-spacing: -0.04em;
	color: var(--z-navy-800);
}

.z-bignum__unit {
	font: 500 clamp(15px, 1.4vw, 18px) / 1 var(--z-font-mono);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--z-ink-muted);
}

.z-checklist {
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--z-border);
}

.z-checklist li {
	margin: 0;
	padding: 15px 0;
	border-bottom: 1px solid var(--z-border);
	font: 400 15px/1.6 var(--z-font-body);
	color: var(--z-ink-slate);
}

/* ------------------------------------------------------------ Curriculum */

.z-curriculum__tabs {
	border-top: 1px solid var(--z-border-strong);
}

.z-curriculum__tab {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 0;
	background: none;
	border: 0;
	border-bottom: 1px solid var(--z-border-strong);
	cursor: pointer;
	text-align: left;
}

.z-curriculum__bar {
	flex: 0 0 auto;
	width: 2px;
	height: 22px;
	background: transparent;
	transition: background-color 200ms ease;
}

.z-curriculum__num {
	flex: 0 0 auto;
	font: 500 11px/1.5 var(--z-font-mono);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--z-ink-faint);
	transition: color 200ms ease;
}

.z-curriculum__name {
	flex: 1;
	font: 500 clamp(17px, 1.6vw, 21px) / 1.3 var(--z-font-head);
	letter-spacing: -0.018em;
	color: var(--z-ink-dim);
	transition: color 200ms ease;
}

.z-curriculum__tab[aria-selected="true"] .z-curriculum__bar { background: var(--z-blue-600); }
.z-curriculum__tab[aria-selected="true"] .z-curriculum__num { color: var(--z-blue-600); }
.z-curriculum__tab[aria-selected="true"] .z-curriculum__name { color: var(--z-navy-800); }

.z-curriculum__tab:hover .z-curriculum__name { color: var(--z-navy-800); }

.z-curriculum__panels {
	padding-top: clamp(8px, 2vw, 26px);
}

.z-curriculum__panel[hidden] {
	display: none;
}

.z-curriculum__panel .z-label {
	display: block;
	margin-bottom: 18px;
}

.z-curriculum__detail {
	margin: 0;
	max-width: 26em;
	font: 400 clamp(18px, 1.9vw, 24px) / 1.6 var(--z-font-head);
	letter-spacing: -0.016em;
	color: var(--z-navy-800);
}

.z-curriculum__panels .z-link-arrow {
	margin-top: clamp(28px, 3vw, 40px);
}

/* --------------------------------------------------------------- Journey */

.z-journey {
	border-top: 1px solid var(--z-border);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}

.z-journey__stage {
	padding: 28px 24px 0;
	border-left: 1px solid var(--z-border);
}

.z-journey__stage:first-child {
	padding-left: 0;
	border-left: 0;
}

.z-journey__stage:last-child {
	padding-right: 0;
}

.z-journey__stage .z-label {
	display: block;
	margin-bottom: 16px;
}

.z-journey__stage h3 {
	margin: 0 0 12px;
	font: 500 clamp(22px, 2.2vw, 28px) / 1.2 var(--z-font-head);
	letter-spacing: -0.024em;
}

.z-journey__stage p {
	margin: 0;
	max-width: 20em;
	font: 400 15px/1.72 var(--z-font-body);
	color: var(--z-ink-body);
}

/* ------------------------------------------------------------- Placement */

.z-stat {
	margin: 0;
	font: 600 clamp(88px, 13vw, 176px) / 0.82 var(--z-font-head);
	letter-spacing: -0.05em;
	color: var(--z-white);
}

.z-stat__caption {
	margin: 24px 0 0;
	font: 500 clamp(19px, 2vw, 26px) / 1.25 var(--z-font-head);
	letter-spacing: -0.02em;
	color: var(--z-blue-200);
}

.z-placement .z-eyebrow {
	margin-bottom: clamp(28px, 3vw, 44px);
}

.z-placement .z-btn {
	margin-top: clamp(30px, 3.4vw, 42px);
}

/* -------------------------------------------------------------- Audience */

.z-audience__head {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: clamp(28px, 5vw, 88px);
	align-items: end;
	padding-bottom: clamp(34px, 4vw, 56px);
	border-bottom: 2px solid var(--z-navy-800);
}

.z-audience__row {
	display: grid;
	grid-template-columns: minmax(0, auto) minmax(0, 1fr);
	gap: clamp(18px, 3vw, 44px);
	align-items: start;
	padding: clamp(26px, 3vw, 38px) 0;
	border-bottom: 1px solid var(--z-border-mid);
	transition: background-color 240ms ease;
}

.z-audience__row:hover {
	background: var(--z-surface);
}

.z-audience__num {
	margin: 0;
	font: 500 11px/1.6 var(--z-font-mono);
	letter-spacing: 0.2em;
	color: var(--z-blue-600);
}

.z-audience__body {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	gap: clamp(14px, 2.5vw, 40px);
	align-items: baseline;
}

.z-audience__title {
	margin: 0;
	font: 600 clamp(21px, 2.3vw, 30px) / 1.2 var(--z-font-head);
	letter-spacing: -0.024em;
}

.z-audience__body p {
	margin: 0;
	max-width: 34em;
	font: 400 clamp(15px, 1.15vw, 16px) / 1.75 var(--z-font-body);
	color: var(--z-ink-body);
}

.z-audience__tag {
	margin: 0;
	justify-self: start;
	font: 500 11px/1.6 var(--z-font-mono);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--z-ink-muted);
	white-space: nowrap;
}

.z-audience__foot {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(18px, 3vw, 40px);
	align-items: center;
	justify-content: space-between;
	padding-top: clamp(30px, 3.5vw, 44px);
}

.z-audience__foot p {
	margin: 0;
	max-width: 24em;
	font: 500 clamp(17px, 1.6vw, 21px) / 1.5 var(--z-font-head);
	letter-spacing: -0.016em;
	color: var(--z-navy-800);
}

/* ---------------------------------------------------------- Testimonials */

.z-carousel__viewport {
	max-width: 900px;
}

.z-carousel__slide[hidden] {
	display: none;
}

.z-quote {
	margin: 0;
	max-width: 17em;
	font: 400 clamp(24px, 3vw, 42px) / 1.34 var(--z-font-head);
	letter-spacing: -0.026em;
	color: var(--z-navy-800);
}

.z-quote__cite {
	display: block;
	margin: clamp(28px, 3vw, 40px) 0 0;
	font: 500 11px/1.5 var(--z-font-mono);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--z-ink-muted);
	font-style: normal;
}

.z-carousel__controls {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: clamp(32px, 4vw, 52px);
}

.z-carousel__btn {
	width: 48px;
	height: 48px;
	border: 1px solid var(--z-border-strong);
	background: none;
	cursor: pointer;
	color: var(--z-navy-800);
	font-size: 16px;
	border-radius: var(--z-radius);
	transition: border-color 200ms ease;
}

.z-carousel__btn:hover {
	border-color: var(--z-navy-800);
}

/* About-page testimonial grid. */
.z-quote-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
	gap: 1px;
	background: var(--z-border);
	border: 1px solid var(--z-border);
}

.z-quote-card {
	background: var(--z-white);
	padding: 36px 32px;
}

.z-quote-card p {
	margin: 0;
	font: 400 16px/1.75 var(--z-font-body);
	color: var(--z-ink-slate);
}

.z-quote-card__cite {
	display: block;
	margin: 24px 0 0;
	font: 600 15px/1.4 var(--z-font-body);
	color: var(--z-navy-800);
	font-style: normal;
}

.z-quote-card__role {
	font-weight: 400;
	color: var(--z-ink-muted);
}

/* --------------------------------------------------------------- Founder */


/* --------------------------------------------------------- Support cards */

.z-tracks {
	margin-top: clamp(40px, 5vw, 64px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	gap: 1px;
	background: var(--z-border-dark);
	border: 1px solid var(--z-border-dark);
}

.z-track {
	background: var(--z-navy-800);
	padding: 28px 26px;
}

.z-track h3 {
	margin: 0 0 8px;
	font: 600 18px/1.3 var(--z-font-head);
	color: var(--z-white);
}

.z-track p {
	margin: 0;
	font: 400 14px/1.65 var(--z-font-body);
	color: var(--z-on-dark-soft);
}

/* ------------------------------------------------------------------- FAQ */

.z-faq {
	border-top: 1px solid var(--z-border-mid);
}


/* ------------------------------------------------------------ Breadcrumb */

.z-breadcrumb {
	margin-bottom: 34px;
	font: 500 13px/1 var(--z-font-body);
	color: var(--z-ink-muted);
}

.z-breadcrumb a {
	color: var(--z-ink-muted);
}

.z-breadcrumb a:hover {
	color: var(--z-navy-800);
}

.z-breadcrumb__sep {
	padding-inline: 8px;
}

/* ----------------------------------------------------------------- Forms */

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

.z-field {
	display: grid;
	gap: 8px;
}

.z-field__label {
	font: 600 13px/1 var(--z-font-body);
	color: var(--z-navy-800);
}

.z-field__optional {
	font-weight: 400;
	color: var(--z-ink-muted);
}

.z-field__required {
	color: var(--z-error);
}

.z-input,
.z-select,
.z-textarea {
	width: 100%;
	padding: 0 14px;
	border: 1px solid var(--z-border-strong);
	border-radius: var(--z-radius);
	font: 400 15px/1 var(--z-font-body);
	color: var(--z-ink);
	background: var(--z-white);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.z-input,
.z-select {
	height: 50px;
}

.z-textarea {
	padding: 12px 14px;
	line-height: 1.6;
	resize: vertical;
}

.z-input:focus,
.z-select:focus,
.z-textarea:focus {
	outline: none;
	border-color: var(--z-blue-600);
	box-shadow: var(--z-focus-ring);
}

.z-input[aria-invalid="true"],
.z-select[aria-invalid="true"],
.z-textarea[aria-invalid="true"] {
	border-color: var(--z-error);
}

.z-field__error {
	margin: 0;
	font: 500 13px/1.4 var(--z-font-body);
	color: var(--z-error);
}

.z-field__error[hidden] {
	display: none;
}

.z-form__notice {
	margin: 0;
	padding: 14px 16px;
	background: var(--z-notice-bg);
	border: 1px solid var(--z-border-strong);
	font: 500 14px/1.6 var(--z-font-body);
	color: var(--z-navy-800);
}

.z-form__notice--error {
	background: #fdf2f2;
	border-color: var(--z-error);
	color: var(--z-error);
}

.z-form__hint {
	margin: 0;
	font: 400 13px/1.6 var(--z-font-body);
	color: var(--z-ink-muted);
}

/* Honeypot: off-screen but still focusable-by-bots, hidden from people. */
.z-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.z-card--form {
	border: 1px solid var(--z-border);
	padding: clamp(28px, 3.5vw, 44px);
}


.z-contact__key {
	margin: 0 0 8px;
	font: 600 12px/1 var(--z-font-body);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--z-ink-muted);
}

.z-contact__val {
	margin: 0;
	font: 400 16px/1.7 var(--z-font-body);
	color: var(--z-ink-slate);
}

.z-contact__val + .z-contact__val {
	margin-top: 6px;
}

.z-map {
	display: block;
	width: 100%;
	height: 420px;
	border: 1px solid var(--z-border);
}

/* ---------------------------------------------------------------- Dialog */

.z-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 20px;
	overflow-y: auto;
	background: rgba(7, 18, 33, 0);
	transition: background-color 280ms ease;
}

.z-modal[hidden] {
	display: none;
}

.z-modal.is-open {
	background: rgba(7, 18, 33, 0.62);
}

.z-modal__dialog {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 560px;
	max-height: calc(100vh - 64px);
	background: var(--z-white);
	border: 1px solid var(--z-border);
	border-radius: var(--z-radius-lg);
	box-shadow: var(--z-shadow-modal);
	opacity: 0;
	transform: translateY(10px) scale(0.98);
	transition:
		opacity var(--z-duration) var(--z-ease),
		transform var(--z-duration) var(--z-ease);
}

.z-modal.is-open .z-modal__dialog {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.z-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 1;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: 1px solid transparent;
	border-radius: var(--z-radius);
	cursor: pointer;
	color: var(--z-ink-body);
	font: 400 20px/1 var(--z-font-body);
	transition: border-color 180ms ease, color 180ms ease;
}

.z-modal__close:hover {
	border-color: var(--z-border);
	color: var(--z-navy-800);
}

.z-modal__head {
	padding: clamp(28px, 4vw, 40px) clamp(22px, 4vw, 44px) 18px;
	border-bottom: 1px solid var(--z-surface-frame);
}

.z-modal__head .z-eyebrow {
	margin-bottom: 14px;
}

.z-modal__title {
	margin: 0;
	font: 600 clamp(23px, 2.4vw, 28px) / 1.2 var(--z-font-head);
	letter-spacing: -0.024em;
}

.z-modal__desc {
	margin: 12px 0 0;
	max-width: 42em;
	font: 400 15px/1.65 var(--z-font-body);
	color: var(--z-ink-body);
}

.z-modal__body {
	overflow-y: auto;
	padding: clamp(22px, 3vw, 30px) clamp(22px, 4vw, 44px) clamp(26px, 4vw, 36px);
}

.z-modal .z-form {
	gap: 18px;
}

.z-modal .z-field {
	gap: 7px;
}

.z-modal .z-input,
.z-modal .z-select {
	height: 52px;
	font-size: 16px;
}

.z-modal .z-textarea {
	font-size: 16px;
	padding: 13px 14px;
}

.z-modal .z-btn--submit {
	margin-top: 6px;
	height: 56px;
	width: 100%;
}

.z-modal__done {
	padding: clamp(44px, 6vw, 64px) clamp(22px, 4vw, 44px) clamp(36px, 5vw, 52px);
	text-align: center;
}


.z-modal__done[hidden] {
	display: none;
}

.z-modal__check {
	width: 56px;
	height: 56px;
	margin: 0 auto 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--z-blue-600);
	border-radius: var(--z-radius-pill);
	color: var(--z-blue-600);
	font: 400 24px/1 var(--z-font-body);
}

.z-modal__done h2 {
	margin: 0;
	font: 600 clamp(21px, 2.2vw, 25px) / 1.32 var(--z-font-head);
	letter-spacing: -0.02em;
}

.z-modal__done p {
	margin: 14px 0 0;
	font: 400 15px/1.7 var(--z-font-body);
	color: var(--z-ink-body);
}

.z-modal__done .z-btn {
	margin-top: 32px;
	height: 52px;
	padding-inline: 40px;
}

/* ---------------------------------------------------------------- Footer */

.z-footer {
	position: relative;
	overflow: hidden;
	background: var(--z-navy-800);
	color: var(--z-white);
}

.z-footer__inner {
	position: relative;
	max-width: var(--z-container);
	margin-inline: auto;
	padding: clamp(56px, 6vw, 88px) var(--z-gutter) clamp(40px, 5vw, 64px);
}

/* Statement band. */
.z-footer__top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: clamp(32px, 5vw, 72px);
	align-items: end;
	padding-bottom: clamp(44px, 5vw, 68px);
	border-bottom: 1px solid var(--z-border-dark);
}

.z-footer__statement {
	margin: 0;
	max-width: 15em;
	font: 600 clamp(24px, 2.8vw, 36px) / 1.16 var(--z-font-head);
	letter-spacing: -0.028em;
	color: var(--z-white);
	text-wrap: pretty;
}

.z-footer__intro {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: flex-start;
}

.z-footer__tagline {
	margin: 0;
	max-width: 30em;
	font: 400 15px/1.7 var(--z-font-body);
	color: var(--z-on-dark-soft);
}

.z-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.z-social {
	display: inline-flex;
	align-items: center;
	height: 38px;
	padding: 0 16px;
	border: 1px solid var(--z-border-dark);
	border-radius: var(--z-radius);
	font: 500 14px/1 var(--z-font-body);
	color: var(--z-on-dark-soft);
	transition: border-color 200ms ease, color 200ms ease;
}

.z-social:hover {
	border-color: var(--z-blue-200);
	color: var(--z-white);
}

/* Link columns. */
.z-footer__cols {
	padding-top: clamp(40px, 5vw, 60px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
	gap: clamp(32px, 4vw, 56px);
}

.z-footer__title {
	margin: 0 0 20px;
	font: 500 10px/1 var(--z-font-mono);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--z-eyebrow-dark);
}

.z-footer__list {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.z-footer__list a,
.z-footer__list p {
	margin: 0;
	font: 400 15px/1.4 var(--z-font-body);
	color: var(--z-on-dark-soft);
	transition: color 180ms ease;
}

.z-footer__hours {
	margin-top: 6px !important;
	font-size: 14px !important;
	line-height: 1.65 !important;
	color: var(--z-on-dark-faint) !important;
}

.z-footer__address {
	margin: 0;
	max-width: 22em;
	font: 400 14px/1.7 var(--z-font-body);
	color: var(--z-on-dark-soft);
}

.z-footer__directions {
	display: inline-block;
	margin-top: 14px;
	font: 500 14px/1 var(--z-font-body);
	color: var(--z-blue-200);
}

.z-footer a:hover,
.z-footer__list a:hover,
.z-footer__directions:hover {
	color: var(--z-white);
}

/* Bottom bar. */
.z-footer__bottom {
	position: relative;
	max-width: var(--z-container);
	margin-inline: auto;
	padding: 22px var(--z-gutter) 40px;
	border-top: 1px solid var(--z-border-dark);
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
	align-items: center;
	justify-content: space-between;
}

.z-footer__bottom p {
	margin: 0;
	font: 400 13px/1.6 var(--z-font-body);
	color: var(--z-on-dark-faint);
}

.z-footer__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 24px;
	align-items: center;
}

.z-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.z-footer__legal a {
	font: 400 13px/1.6 var(--z-font-body);
	color: var(--z-on-dark-faint);
}

.z-footer__locality {
	font: 500 11px/1.6 var(--z-font-mono);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--z-on-dark-meta);
}

/* -------------------------------------------- Blog / archive / search /404 */

.z-entry-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
	gap: clamp(28px, 4vw, 48px);
	margin-top: clamp(40px, 5vw, 64px);
}

.z-entry-card {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--z-border-strong);
	padding-top: 22px;
}

.z-entry-card__thumb {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	background: var(--z-placeholder);
	margin-bottom: 20px;
}

.z-entry-card__meta {
	display: block;
	margin-bottom: 12px;
}

.z-entry-card__title {
	margin: 0 0 10px;
	font: 600 20px/1.3 var(--z-font-head);
	letter-spacing: -0.016em;
}

.z-entry-card__title a {
	color: var(--z-navy-800);
}

.z-entry-card__title a:hover {
	color: var(--z-blue-600);
}

.z-entry-card__excerpt {
	margin: 0 0 18px;
	font: 400 15px/1.72 var(--z-font-body);
	color: var(--z-ink-body);
}

.z-entry-card .z-link-arrow {
	margin-top: auto;
}

.z-entry__header {
	margin-bottom: clamp(32px, 4vw, 48px);
}

.z-entry__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 20px;
}

.z-entry__thumb {
	display: block;
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	margin-bottom: clamp(32px, 4vw, 48px);
	background: var(--z-placeholder);
}

.z-entry__footer {
	margin-top: clamp(40px, 5vw, 60px);
	padding-top: 28px;
	border-top: 1px solid var(--z-border);
}

.z-pagination {
	margin-top: clamp(48px, 6vw, 72px);
	padding-top: 28px;
	border-top: 1px solid var(--z-border);
}

.z-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.z-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	height: 46px;
	padding: 0 12px;
	border: 1px solid var(--z-border-strong);
	border-radius: var(--z-radius);
	font: 500 14px/1 var(--z-font-body);
	color: var(--z-navy-800);
	transition: border-color 180ms ease, background-color 180ms ease;
}

.z-pagination .page-numbers:hover {
	border-color: var(--z-navy-800);
}

.z-pagination .page-numbers.current {
	background: var(--z-navy-800);
	border-color: var(--z-navy-800);
	color: var(--z-white);
}

.z-pagination .page-numbers.dots {
	border-color: transparent;
}

.z-searchform {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	max-width: 520px;
}

.z-searchform .z-input {
	flex: 1 1 220px;
	width: auto;
}

.z-post-nav {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	gap: 24px;
	margin-top: clamp(40px, 5vw, 60px);
	padding-top: 28px;
	border-top: 1px solid var(--z-border);
}

.z-post-nav a {
	display: block;
}

.z-error-code {
	margin: 0 0 24px;
	font: 600 clamp(72px, 12vw, 148px) / 0.9 var(--z-font-head);
	letter-spacing: -0.05em;
	color: var(--z-blue-200);
}

.z-empty {
	padding: clamp(40px, 5vw, 64px) 0;
}

/* SVG motion is outside CSS control, so the vessel is removed outright. */
@media (prefers-reduced-motion: reduce) {
	.z-blueprint__vessel {
		display: none;
	}
}

/* ------------------------------------------------- Section head + splits */

.z-section__head {
	margin-bottom: clamp(40px, 5vw, 72px);
}

.z-section__head--lg {
	margin-bottom: clamp(44px, 5vw, 80px);
}

/* Named split shapes, so templates stay free of layout values. */
.z-split--intro { --min: 340px; --gap: clamp(36px, 6vw, 96px); }
.z-split--program { --min: 320px; --gap: clamp(40px, 6vw, 88px); }
.z-split--curriculum { --min: 300px; --gap: clamp(32px, 5vw, 80px); }
.z-split--placement { --min: 300px; --gap: clamp(36px, 6vw, 88px); }
.z-split--cta { --min: 300px; --gap: clamp(32px, 5vw, 80px); }
.z-split--wide { --min: 300px; --gap: clamp(40px, 6vw, 80px); }
.z-split--page { --min: 320px; --gap: clamp(40px, 6vw, 80px); }

/* ------------------------------------------ Dark-section body treatment */

/* Shared by the hero, placement and closing call to action. */
.z-lede-dark {
	margin: 0;
	font: 400 clamp(16px, 1.25vw, 18px) / 1.78 var(--z-font-body);
	color: var(--z-on-dark);
}

/* Content must sit above the decorative chart. */
.z-section__inner--layer {
	position: relative;
}

/* ------------------------------------------------- Section measure rules */

.z-program__body {
	margin-top: 26px;
	max-width: 34em;
}

.z-program__link {
	margin: 32px 0 0;
}

.z-audience__intro {
	max-width: 30em;
}

.z-placement__body {
	max-width: 30em;
}

.z-cta__title {
	max-width: 13em;
	text-wrap: pretty;
}

.z-cta__body {
	margin: 0;
	max-width: 26em;
	font: 400 clamp(16px, 1.25vw, 18px) / 1.8 var(--z-font-body);
	color: var(--z-ink-body);
}

/* --------------------------------------------------- Editorial page body */

.z-page {
	padding: clamp(56px, 7vw, 96px) var(--z-gutter) clamp(64px, 8vw, 110px);
}

.z-page__title {
	margin: 0;
	font: 700 clamp(32px, 4vw, 48px) / 1.1 var(--z-font-head);
	letter-spacing: -0.03em;
	color: var(--z-navy-800);
}

.z-page__lede {
	margin: 26px 0 0;
	max-width: 44em;
	font: 400 clamp(16px, 1.3vw, 18px) / 1.75 var(--z-font-body);
	color: var(--z-ink-body);
}

.z-page__body {
	margin-top: 44px;
	padding-top: 36px;
	border-top: 1px solid var(--z-border);
}

.z-page__thumb {
	display: block;
	width: 100%;
	max-height: 460px;
	object-fit: cover;
	margin-top: 40px;
	background: var(--z-placeholder);
}

/* Inner-page introductions on the About, Course and Contact templates. */

.z-pagehead__lede {
	margin: 28px 0 0;
	max-width: 44em;
	font: 400 clamp(16px, 1.3vw, 18px) / 1.75 var(--z-font-body);
	color: var(--z-ink-body);
}

.z-pagehead__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 38px;
}

/* ------------------------------------------------- Multi-paragraph copy */

.z-richtext > p {
	margin: 0 0 20px;
	font: 400 clamp(16px, 1.3vw, 18px) / 1.75 var(--z-font-body);
	color: var(--z-ink-body);
}

.z-richtext > p:last-child {
	margin-bottom: 0;
}

.z-richtext--17 > p {
	font-size: 17px;
}

.z-richtext a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.z-comments {
	padding-bottom: clamp(48px, 6vw, 72px);
}

/* Mission block stacks its paragraphs with a little more air. */
.z-mission__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* ------------------------------------------------- Inner page specifics */

.z-about__body { margin-top: 24px; }


.z-contact__form-lede { margin: 0 0 30px; }

/* ====================================================================
   Inner-page hero
   The About, Course and Contact pages open on a dark panel carrying the
   navigation-chart backdrop, a stat bar and the page introduction.
   ==================================================================== */

.z-pagehero {
	position: relative;
	overflow: hidden;
	background: var(--z-navy-800);
	color: var(--z-white);
}

.z-pagehero__inner {
	position: relative;
	max-width: var(--z-container);
	margin-inline: auto;
	padding: clamp(44px, 5vw, 72px) var(--z-gutter) clamp(52px, 6vw, 86px);
}

.z-pagehero .z-breadcrumb {
	margin-bottom: clamp(40px, 5vw, 68px);
	color: var(--z-on-dark-crumb);
}

.z-pagehero .z-breadcrumb a {
	color: var(--z-on-dark-crumb);
}

.z-pagehero .z-breadcrumb a:hover {
	color: var(--z-white);
}

.z-pagehero__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: clamp(32px, 5vw, 72px);
	align-items: end;
}

.z-pagehero .z-eyebrow {
	margin-bottom: 26px;
	color: var(--z-eyebrow-dark);
}

.z-pagehero__title {
	margin: 0;
	max-width: 13em;
	font: 700 clamp(34px, 4.8vw, 60px) / 1.06 var(--z-font-head);
	letter-spacing: -0.034em;
	color: var(--z-white);
	text-wrap: pretty;
}

.z-pagehero__title--narrow { max-width: 11em; }

.z-pagehero__lede {
	margin: 0;
	max-width: 32em;
	font: 400 clamp(16px, 1.3vw, 18px) / 1.75 var(--z-font-body);
	color: var(--z-on-dark-lede);
}

.z-pagehero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

/* Hairline-separated figures beneath the hero. */
.z-statbar {
	margin-top: clamp(44px, 5vw, 72px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--cell, 170px)), 1fr));
	gap: 1px;
	background: var(--z-hairline-dark);
	border: 1px solid var(--z-hairline-dark);
}

.z-statbar__cell {
	background: var(--z-navy-800);
	padding: 22px 24px;
}

.z-statbar__value {
	margin: 0;
	font: 700 26px/1 var(--z-font-head);
	color: var(--z-white);
}

.z-statbar__label {
	margin: 8px 0 0;
	font: 400 13px/1.5 var(--z-font-body);
	color: var(--z-on-dark-label);
}

/* Course facts read label-first. */
.z-statbar--facts .z-statbar__label {
	margin: 0 0 8px;
	font: 500 10px/1 var(--z-font-mono);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--z-eyebrow-dark);
}

.z-statbar--facts .z-statbar__value {
	font: 600 18px/1.3 var(--z-font-head);
}

/* ====================================================================
   Card grids
   Used for "Who it's for" on the course page and the quick-contact row.
   ==================================================================== */

.z-cardgrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	gap: clamp(16px, 2vw, 24px);
}

.z-card {
	display: block;
	background: var(--z-white);
	border: 1px solid var(--z-border);
	border-radius: var(--z-radius);
	padding: 26px 26px 24px;
	transition: border-color 200ms ease, background-color 200ms ease;
}

a.z-card:hover {
	border-color: var(--z-navy-800);
	background: var(--z-surface);
}

.z-card__label {
	margin: 0 0 14px;
	font: 500 10px/1 var(--z-font-mono);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--z-blue-600);
}

.z-card__title {
	margin: 0 0 10px;
	font: 600 18px/1.3 var(--z-font-head);
	color: var(--z-navy-800);
}

.z-card__value {
	margin: 0;
	font: 600 19px/1.3 var(--z-font-head);
	color: var(--z-navy-800);
}

.z-card p:last-child {
	margin: 0;
	font: 400 15px/1.7 var(--z-font-body);
	color: var(--z-ink-body);
}

.z-card__meta {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.6;
}

/* ====================================================================
   Module cards (course curriculum)
   ==================================================================== */

.z-modcards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
	gap: clamp(24px, 3vw, 40px) clamp(24px, 3vw, 48px);
}

.z-modcard {
	min-width: 0;
	border-top: 1px solid var(--z-navy-800);
	padding: 20px 0 24px;
}

.z-modcard__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
}

.z-modcard__num {
	font: 500 11px/1 var(--z-font-mono);
	letter-spacing: 0.14em;
	color: var(--z-navy-800);
}

.z-modcard__tag {
	font: 500 10px/1 var(--z-font-mono);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--z-ink-muted);
}

.z-modcard h3 {
	margin: 0 0 8px;
	font: 600 19px/1.3 var(--z-font-head);
	letter-spacing: -0.012em;
	text-wrap: pretty;
}

.z-modcard p {
	margin: 0;
	font: 400 15px/1.7 var(--z-font-body);
	color: var(--z-ink-body);
	text-wrap: pretty;
}

/* The closing card points at the full syllabus. */
.z-modcard--cta {
	border-top-color: var(--z-border-mid);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 18px;
}

/* ====================================================================
   Numbered rule cards (About — approach)
   ==================================================================== */

.z-rulecard {
	min-width: 0;
	border-top: 1px solid var(--z-navy-800);
	padding: 20px 0 0;
}

.z-rulecard__num {
	display: block;
	margin-bottom: 16px;
	font: 500 11px/1 var(--z-font-mono);
	letter-spacing: 0.18em;
	color: var(--z-blue-600);
}

.z-rulecard h3 {
	margin: 0 0 10px;
	font: 600 19px/1.35 var(--z-font-head);
	text-wrap: pretty;
}

.z-rulecard p {
	margin: 0;
	font: 400 15px/1.7 var(--z-font-body);
	color: var(--z-ink-body);
	text-wrap: pretty;
}

/* ====================================================================
   Founder block
   ==================================================================== */

.z-founder-quote {
	margin: 0;
	max-width: 20em;
	font: 600 clamp(28px, 3.8vw, 56px) / 1.1 var(--z-font-head);
	letter-spacing: -0.032em;
	color: var(--z-navy-800);
	text-wrap: pretty;
}

.z-founder-grid {
	margin-top: clamp(40px, 5vw, 68px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
}

.z-founder-card {
	border-top: 1px solid var(--z-navy-800);
	padding-top: 22px;
}

.z-founder-card__name {
	margin: 0;
	font: 600 20px/1.3 var(--z-font-head);
	color: var(--z-navy-800);
}

.z-founder-card__role {
	margin: 8px 0 0;
	font: 500 11px/1.5 var(--z-font-mono);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--z-ink-muted);
}

.z-founder-card__stats {
	margin-top: 28px;
	display: grid;
	gap: 18px;
}

.z-founder-card__value {
	margin: 0;
	font: 700 28px/1 var(--z-font-head);
	color: var(--z-navy-800);
}

.z-founder-card__caption {
	margin: 6px 0 0;
	font: 400 14px/1.6 var(--z-font-body);
	color: var(--z-ink-body);
}

.z-founder-bio > p {
	max-width: 36em;
	font: 400 clamp(16px, 1.3vw, 18px) / 1.8 var(--z-font-body);
}

/* ====================================================================
   FAQ — native disclosure
   ==================================================================== */

.z-faq__details {
	border-bottom: 1px solid var(--z-border-mid);
}

.z-faq__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 0;
	cursor: pointer;
	font: 600 18px/1.35 var(--z-font-head);
	color: var(--z-navy-800);
	list-style: none;
}

/* Hide the platform marker in favour of the design's own. */
.z-faq__summary::-webkit-details-marker {
	display: none;
}

.z-faq__marker {
	flex: 0 0 auto;
	color: var(--z-blue-600);
	font: 400 20px/1 var(--z-font-body);
	transition: transform 240ms var(--z-ease);
}

.z-faq__details[open] .z-faq__marker {
	transform: rotate(45deg);
}

.z-faq__details p {
	margin: 0;
	padding: 0 0 24px;
	max-width: 44em;
	font: 400 16px/1.7 var(--z-font-body);
	color: var(--z-ink-body);
}

/* ====================================================================
   Contact — how it works
   ==================================================================== */

.z-steps {
	margin-top: clamp(32px, 4vw, 52px);
	display: grid;
	gap: 26px;
	max-width: 30em;
}

.z-step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	align-items: start;
}

.z-step__num {
	font: 500 11px/1.6 var(--z-font-mono);
	color: var(--z-ink-muted);
}

.z-step__title {
	margin: 0;
	font: 600 16px/1.4 var(--z-font-head);
	color: var(--z-navy-800);
}

.z-step__text {
	margin: 6px 0 0;
	font: 400 15px/1.7 var(--z-font-body);
	color: var(--z-ink-body);
}

.z-office {
	margin-top: clamp(32px, 4vw, 52px);
	border-top: 1px solid var(--z-border-mid);
	padding-top: 26px;
	max-width: 30em;
}

/* ====================================================================
   Map with address overlay
   ==================================================================== */

.z-map__wrap {
	position: relative;
}

.z-map__card {
	position: absolute;
	top: 16px;
	left: 16px;
	max-width: 290px;
	background: var(--z-white);
	border: 1px solid var(--z-border);
	box-shadow: 0 8px 28px rgba(11, 31, 58, 0.12);
	padding: 16px 18px;
}

.z-map__kicker {
	margin: 0 0 8px;
	font: 500 10px/1 var(--z-font-mono);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--z-blue-600);
}

.z-map__name {
	margin: 0;
	font: 600 16px/1.35 var(--z-font-head);
	color: var(--z-navy-800);
}

.z-map__address {
	margin: 8px 0 0;
	font: 400 13px/1.65 var(--z-font-body);
	color: var(--z-ink-body);
}

/* A heading paired with a right-aligned action. */
.z-headrow {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 26px;
}

.z-headrow--lg {
	margin-bottom: clamp(32px, 4vw, 52px);
}

.z-headrow__note {
	margin: 0;
	font: 500 13px/1.5 var(--z-font-mono);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--z-ink-muted);
}

/* Split header: heading on the left, supporting copy on the right. */
.z-splithead {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
	gap: clamp(32px, 5vw, 80px);
	align-items: end;
	margin-bottom: clamp(40px, 5vw, 68px);
}

.z-splithead__lede {
	margin: 0;
	max-width: 34em;
	font: 400 clamp(16px, 1.3vw, 17px) / 1.75 var(--z-font-body);
	color: var(--z-ink-body);
}

/* The closing call to action sits on white, separated by a hairline. */
.z-section--cta {
	background: var(--z-white);
	border-top: 1px solid var(--z-border);
}

/* ====================================================================
   Dark section content
   Applied wherever a content section sits on the navy surface.
   ==================================================================== */

.z-section--navy .z-h2,
.z-section--navy .z-h3 {
	color: var(--z-white);
}

.z-section--navy .z-eyebrow {
	color: var(--z-eyebrow-dark);
}

.z-section--navy .z-richtext > p {
	color: var(--z-on-dark-strong);
}

.z-mission__heading {
	max-width: 12em;
	font-size: clamp(28px, 3.4vw, 46px);
	line-height: 1.12;
	letter-spacing: -0.03em;
	text-wrap: pretty;
}

.z-founder__eyebrow {
	margin-bottom: clamp(28px, 3vw, 44px);
}

/* Quote cards keep their attribution pinned to the bottom edge. */
.z-quote-card {
	display: flex;
	flex-direction: column;
	gap: 22px;
	justify-content: space-between;
	padding: 34px 32px;
	margin: 0;
}

.z-quote-card blockquote {
	margin: 0;
	font: 400 16px/1.75 var(--z-font-body);
	color: var(--z-ink-slate);
	text-wrap: pretty;
}

/* Course page measures. */
.z-overview__heading { max-width: 11em; }
.z-syllabus__heading { max-width: 13em; }
.z-support__heading { max-width: 16em; }

.z-who__heading {
	max-width: 14em;
	margin-bottom: clamp(32px, 4vw, 52px);
}

.z-support__lede {
	margin: 22px 0 0;
	max-width: 42em;
	font: 400 17px/1.75 var(--z-font-body);
	color: var(--z-on-dark-strong);
}

/* Contact page. */
.z-section__inner--tight {
	padding-block: clamp(28px, 3.5vw, 44px);
}

.z-split--form { --min: 320px; --gap: clamp(36px, 5vw, 72px); }

.z-contact__heading { max-width: 12em; }

/* Homepage introduction: two stacked paragraphs with breathing room. */
.z-intro__body {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-top: clamp(0px, 1vw, 14px);
}

/* A form supplied by a plugin inherits the section rhythm, not the fields. */
.z-form--plugin {
	display: block;
}

/* ------------------------------------------------------------- Comments */

.z-comments-area {
	margin-top: clamp(48px, 6vw, 72px);
	padding-top: clamp(32px, 4vw, 48px);
	border-top: 1px solid var(--z-border);
}

.z-comment-list {
	list-style: none;
	margin: 0 0 clamp(32px, 4vw, 48px);
	padding: 0;
	display: grid;
	gap: 28px;
}

.z-comment-list .comment-body {
	padding-bottom: 24px;
	border-bottom: 1px solid var(--z-border-hairline);
}

.z-comment-list .children {
	list-style: none;
	margin: 24px 0 0;
	padding-left: clamp(16px, 3vw, 32px);
	border-left: 1px solid var(--z-border);
	display: grid;
	gap: 24px;
}

.z-comment-list .comment-author {
	display: flex;
	align-items: center;
	gap: 12px;
	font: 600 15px/1.4 var(--z-font-body);
	color: var(--z-navy-800);
}

.z-comment-list .comment-author img {
	border-radius: var(--z-radius-pill);
}

.z-comment-list .comment-meta {
	margin: 6px 0 14px;
	font: 500 11px/1.5 var(--z-font-mono);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--z-ink-muted);
}

.z-comment-list p {
	margin: 0 0 12px;
	font: 400 16px/1.75 var(--z-font-body);
	color: var(--z-ink-body);
}

.z-comments-area .comment-reply-title {
	margin: 0 0 20px;
}

.z-comments-area .comment-notes,
.z-comments-area .comment-form-cookies-consent label {
	font: 400 14px/1.65 var(--z-font-body);
	color: var(--z-ink-muted);
}

.z-comments-area .comment-form p {
	margin: 0 0 18px;
}

.z-comments-area .comment-form input[type="text"],
.z-comments-area .comment-form input[type="email"],
.z-comments-area .comment-form input[type="url"] {
	width: 100%;
	height: 50px;
	padding: 0 14px;
	border: 1px solid var(--z-border-strong);
	border-radius: var(--z-radius);
	font: 400 15px/1 var(--z-font-body);
	color: var(--z-ink);
	background: var(--z-white);
}

.z-comments-area .comment-form label {
	display: block;
	margin-bottom: 6px;
	font: 600 13px/1 var(--z-font-body);
	color: var(--z-navy-800);
}
