:root {
	--ink: #090a0c;
	--ink-soft: #15171b;
	--paper: #f1ecdf;
	--paper-bright: #fffaf0;
	--red: #e11b22;
	--red-dark: #a90d13;
	--yellow: #ffd21a;
	--silver: #c7ccd3;
	--muted: #9ca1aa;
	--line: rgba(255, 255, 255, 0.17);
	--line-dark: rgba(9, 10, 12, 0.18);
	--display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Impact, sans-serif;
	--body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	--shell: min(92vw, 1440px);
	--header-height: 84px;
	--radius: 2px;
	--shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

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

html {
	scroll-behavior: smooth;
	background: var(--ink);
}

body {
	margin: 0;
	overflow-x: clip;
	background: var(--ink);
	color: #fff;
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.nav-open {
	overflow: hidden;
}

#main-content [id] {
	scroll-margin-top: 100px;
}

body.admin-bar #main-content [id] {
	scroll-margin-top: 132px;
}

html:not(.js) .schedule__tabs {
	display: none;
}

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

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

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

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

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

:focus-visible {
	outline: 3px solid var(--yellow);
	outline-offset: 4px;
}

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

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 12px;
	left: 12px;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--paper-bright);
	color: var(--ink);
	font-weight: 800;
}

.skip-link {
	position: fixed;
	top: -100px;
	left: 18px;
	z-index: 10000;
	padding: 12px 18px;
	background: var(--yellow);
	color: var(--ink);
	font-weight: 900;
}

.skip-link:focus {
	top: 18px;
}

.shell {
	width: var(--shell);
	margin-inline: auto;
}

.section {
	position: relative;
	padding: clamp(84px, 10vw, 160px) 0;
	overflow: hidden;
}

.section--paper {
	background:
		radial-gradient(circle at 20% 10%, rgba(225, 27, 34, 0.05), transparent 34%),
		linear-gradient(115deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px),
		var(--paper);
	background-size: auto, 9px 9px, auto;
	color: var(--ink);
}

.section--red {
	background:
		radial-gradient(circle at 90% 5%, rgba(255, 210, 26, 0.22), transparent 28%),
		linear-gradient(135deg, rgba(0, 0, 0, 0.13) 1px, transparent 1px),
		var(--red);
	background-size: auto, 11px 11px, auto;
	color: #fff;
}

h1,
h2,
h3,
.brand__wordmark,
.button,
.case-tag,
.eyebrow {
	font-family: var(--display);
}

h1,
h2 {
	margin-bottom: 0;
	font-weight: 950;
	letter-spacing: -0.055em;
	line-height: 0.83;
	text-transform: uppercase;
}

/* WordPress Global Styles can inject a dark heading color after the theme CSS.
   Headings must inherit the color of their designed section instead. */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
	color: inherit !important;
}

h1 {
	font-size: clamp(4.4rem, 10vw, 10.5rem);
}

h2 {
	font-size: clamp(3.35rem, 7.2vw, 8rem);
}

h1 em,
h2 em {
	color: var(--red) !important;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 600;
	letter-spacing: -0.075em;
	text-transform: none;
}

.section--red h2 em,
.contact-banner h2 em {
	color: var(--yellow);
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.16em;
	line-height: 1;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 26px;
	height: 3px;
	background: currentColor;
	content: "";
}

.eyebrow--yellow {
	color: var(--yellow);
}

.case-tag {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, 0.48);
	background: rgba(9, 10, 12, 0.48);
	box-shadow: 5px 5px 0 var(--red);
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.15em;
	line-height: 1;
	text-transform: uppercase;
	transform: rotate(-1.5deg);
}

.case-tag span {
	color: var(--yellow);
}

.case-tag--light {
	background: rgba(0, 0, 0, 0.68);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 22px;
}

.button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 13px 22px 11px;
	border: 2px solid var(--yellow);
	background: var(--yellow);
	box-shadow: 6px 6px 0 var(--red);
	color: var(--ink);
	font-size: 0.92rem;
	font-weight: 950;
	letter-spacing: 0.065em;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
	box-shadow: 2px 2px 0 var(--red);
	transform: translate(4px, 4px);
}

.button--small {
	min-height: 44px;
	padding: 9px 15px 8px;
	font-size: 0.72rem;
}

.button--dark {
	border-color: var(--ink);
	background: var(--ink);
	box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.48);
	color: #fff;
}

.button--dark:hover {
	box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.55);
}

.button--light {
	border-color: #fff;
	background: #fff;
}

.text-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 9px;
	padding-block: 10px;
	border-bottom: 1px solid currentColor;
	font-family: var(--mono);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-decoration: none;
	text-transform: uppercase;
}

.text-link span {
	transition: transform 180ms ease;
}

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

.text-link--dark {
	color: var(--ink);
}

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

.js .reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1000;
	height: var(--header-height);
	border-bottom: 1px solid transparent;
	transition: height 220ms ease, background 220ms ease, border-color 220ms ease;
}

.admin-bar .site-header {
	top: 32px;
}

.site-header.is-scrolled,
body:not(.umove-front-page) .site-header {
	height: 72px;
	border-color: var(--line);
	background: rgba(9, 10, 12, 0.9);
	backdrop-filter: blur(16px);
}

.site-header__inner {
	position: relative;
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.brand {
	position: relative;
	display: inline-flex;
	min-width: 132px;
	min-height: 44px;
	flex-direction: column;
	justify-content: center;
	color: #fff;
	line-height: 1;
	text-decoration: none;
}

.brand--custom .custom-logo-link {
	display: block;
}

.brand--custom img {
	width: auto;
	max-width: 170px;
	height: 48px;
	object-fit: contain;
}

.brand__wordmark {
	display: block;
	font-size: 1.9rem;
	font-style: italic;
	font-weight: 950;
	letter-spacing: -0.09em;
	transform: skew(-9deg);
}

.brand__subline {
	align-self: flex-end;
	margin-top: -2px;
	font-family: Georgia, serif;
	font-size: 0.64rem;
	font-style: italic;
	letter-spacing: 0.04em;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.header-social {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-right: auto;
}

.header-social__link {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	color: #fff;
	text-decoration: none;
	transition: color 160ms ease, transform 160ms ease;
}

.header-social__link:hover,
.header-social__link:focus-visible {
	color: var(--yellow);
	transform: translateY(-2px);
}

.header-social__link--instagram span {
	position: relative;
	display: block;
	width: 17px;
	height: 17px;
	border: 2px solid currentColor;
	border-radius: 5px;
}

.header-social__link--instagram span::before {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 7px;
	height: 7px;
	border: 2px solid currentColor;
	border-radius: 50%;
	content: "";
}

.header-social__link--instagram span::after {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 2px;
	height: 2px;
	border-radius: 50%;
	background: currentColor;
	content: "";
}

.header-social__link--tiktok span {
	font-family: Georgia, serif;
	font-size: 1.55rem;
	font-weight: 700;
	line-height: 1;
}

.header-social__link--facebook span {
	font-family: Arial, sans-serif;
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1;
}

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

.site-nav__list a {
	position: relative;
	display: block;
	padding: 11px 0;
	font-family: var(--mono);
	font-size: 0.69rem;
	font-weight: 800;
	letter-spacing: 0.085em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-nav__list a::after {
	position: absolute;
	right: 0;
	bottom: 7px;
	left: 0;
	height: 2px;
	background: var(--red);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.site-nav__list a:hover::after,
.site-nav__list .current-menu-item > a::after,
.site-nav__list .current_page_item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nav-toggle {
	display: none;
	min-width: 48px;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
}

.nav-toggle__label {
	font-family: var(--mono);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nav-toggle__bars {
	position: relative;
	display: block;
	width: 22px;
	height: 14px;
}

.nav-toggle__bars i {
	position: absolute;
	right: 0;
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
	transition: transform 180ms ease, top 180ms ease;
}

.nav-toggle__bars i:first-child { top: 2px; }
.nav-toggle__bars i:last-child { top: 10px; width: 15px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:first-child { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:last-child { top: 6px; width: 22px; transform: rotate(-45deg); }

/* Home hero */
.hero {
	position: relative;
	display: grid;
	min-height: max(760px, 100svh);
	place-items: center;
	overflow: hidden;
	isolation: isolate;
}

.hero__media,
.hero__wash {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 58%;
	filter: saturate(0.72) contrast(1.08) brightness(0.72);
	transform: scale(1.02);
}

.hero__media picture {
	display: block;
	width: 100%;
	height: 100%;
}

.hero__wash {
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.76) 43%, rgba(5, 6, 8, 0.17) 78%, rgba(5, 6, 8, 0.47) 100%),
		linear-gradient(0deg, rgba(5, 6, 8, 0.86) 0%, transparent 37%, rgba(5, 6, 8, 0.34) 100%);
}

.hero__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 200px;
	align-items: end;
	gap: clamp(50px, 9vw, 150px);
	padding-top: calc(var(--header-height) + 90px);
	padding-bottom: 90px;
}

.hero__copy {
	max-width: 940px;
}

.header__studio-lockup {
	position: absolute;
	top: 50%;
	left: 39%;
	display: block;
	width: clamp(150px, 16vw, 230px);
	height: 54px;
	overflow: hidden;
	filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4));
	transform: translate(-50%, -50%);
}

.header__studio-lockup img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 52%;
}

.hero h1 em {
	text-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
}

.hero__lead {
	max-width: 670px;
	margin: 34px 0 38px;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1rem, 1.6vw, 1.25rem);
	line-height: 1.6;
}

.hero-docket {
	position: relative;
	margin-bottom: 20px;
	padding: 22px 20px;
	border: 1px solid rgba(255, 255, 255, 0.38);
	background: rgba(9, 10, 12, 0.48);
	box-shadow: 12px 12px 0 rgba(225, 27, 34, 0.66);
	font-family: var(--mono);
	font-size: 0.72rem;
	letter-spacing: 0.03em;
	transform: rotate(1.8deg);
	backdrop-filter: blur(8px);
}

.hero-docket::before {
	position: absolute;
	top: -10px;
	left: 38%;
	width: 70px;
	height: 24px;
	background: rgba(255, 210, 26, 0.78);
	content: "";
	transform: rotate(-4deg);
}

.hero-docket p {
	margin-bottom: 0;
}

.hero-docket__number {
	margin-bottom: 14px !important;
	color: var(--yellow);
	font-family: var(--display);
	font-size: 4rem;
	font-weight: 950;
	letter-spacing: -0.06em;
	line-height: 0.9;
}

.hero-docket__line {
	display: block;
	height: 1px;
	margin: 18px 0;
	background: rgba(255, 255, 255, 0.28);
}

.hero__scroll {
	position: absolute;
	right: 4vw;
	bottom: 34px;
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: var(--mono);
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
	writing-mode: vertical-rl;
}

.hero__scroll span {
	color: var(--yellow);
	font-size: 1.1rem;
}

.style-ticker {
	overflow: hidden;
	border-block: 1px solid #000;
	background: var(--yellow);
	color: var(--ink);
}

.style-ticker__track {
	display: flex;
	width: max-content;
	align-items: center;
	gap: 20px;
	padding: 14px 24px 11px;
	font-family: var(--display);
	font-size: clamp(1.3rem, 2.1vw, 2rem);
	font-weight: 950;
	letter-spacing: 0.03em;
	line-height: 1;
	text-transform: uppercase;
	animation: umove-ticker-forward 30s linear infinite;
}

.style-ticker__group {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	padding-right: 20px;
	white-space: nowrap;
}

.style-ticker__track i {
	color: var(--red);
	font-style: normal;
}

@keyframes umove-ticker-forward {
	from { transform: translateX(-50%); }
	to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
	.style-ticker__track {
		animation: none;
		transform: none;
	}
}

/* Editorial introduction */
.intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.65fr);
	align-items: end;
	gap: clamp(50px, 9vw, 150px);
}

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

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.45fr);
	align-items: end;
	gap: 50px;
	margin-bottom: clamp(48px, 7vw, 96px);
}

.section-heading--split > p {
	max-width: 440px;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.68);
}

.section--paper .section-heading--split > p {
	color: rgba(9, 10, 12, 0.66);
}

.intro-copy {
	padding-bottom: 8px;
}

.intro-copy p {
	color: rgba(9, 10, 12, 0.72);
}

.intro-copy .lead-copy {
	margin-bottom: 24px;
	color: var(--ink);
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	font-weight: 720;
	line-height: 1.45;
}

.story-gallery {
	margin-top: clamp(64px, 9vw, 130px);
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: #0b0c0f;
	box-shadow: 18px 18px 0 var(--red);
	overflow: hidden;
}

.story-gallery__stage {
	position: relative;
	min-height: 520px;
	aspect-ratio: 16 / 9;
	background: #15171b;
	overflow: hidden;
}

.story-gallery__main {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 220ms ease, transform 480ms var(--ease);
}

.story-gallery__main.is-changing {
	opacity: 0.28;
	transform: scale(1.018);
}

.story-gallery__scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, transparent 42%, rgba(6, 7, 9, 0.9) 100%),
		linear-gradient(90deg, rgba(6, 7, 9, 0.46), transparent 44%);
	pointer-events: none;
}

.story-gallery__meta {
	position: absolute;
	right: 190px;
	bottom: 30px;
	left: 34px;
	z-index: 2;
	color: #fff;
}

.story-gallery__meta p {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 12px;
	font-family: var(--mono);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.story-gallery__kind {
	padding: 6px 9px 5px;
	background: var(--yellow);
	color: var(--ink);
}

.story-gallery__meta h3 {
	max-width: 780px;
	margin: 0;
	font-family: var(--display);
	font-size: clamp(1.65rem, 2.8vw, 3.2rem);
	font-weight: 900;
	letter-spacing: -0.035em;
	line-height: 0.88;
	text-transform: uppercase;
}

.story-gallery__controls {
	position: absolute;
	right: 28px;
	bottom: 28px;
	z-index: 3;
	display: flex;
	gap: 8px;
}

.story-gallery__controls button {
	display: grid;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.62);
	background: rgba(8, 9, 11, 0.82);
	color: #fff;
	font-family: var(--mono);
	font-size: 1rem;
	font-weight: 900;
	place-items: center;
	cursor: pointer;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.story-gallery__controls button:hover,
.story-gallery__controls button:focus-visible {
	border-color: var(--yellow);
	background: var(--yellow);
	color: var(--ink);
}

.story-gallery__rail {
	display: grid;
	grid-auto-columns: clamp(145px, 16vw, 215px);
	grid-auto-flow: column;
	gap: 12px;
	margin: 0;
	padding: 16px;
	background: #0b0c0f;
	list-style: none;
	overflow-x: auto;
	scroll-padding: 16px;
	scroll-snap-type: x mandatory;
	scrollbar-color: var(--yellow) #27292e;
	scrollbar-width: thin;
}

.story-gallery__rail li {
	scroll-snap-align: start;
}

.story-gallery__thumb {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 2px solid transparent;
	background: #16181c;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	cursor: pointer;
	transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.story-gallery__thumb img {
	width: 100%;
	height: 100%;
	filter: saturate(0.72) brightness(0.78);
	object-fit: cover;
	transition: filter 180ms ease, transform 300ms var(--ease);
}

.story-gallery__thumb > span {
	position: absolute;
	right: 7px;
	bottom: 7px;
	padding: 4px 6px;
	background: rgba(6, 7, 9, 0.82);
	color: #fff;
	font-family: var(--mono);
	font-size: 0.62rem;
	font-weight: 900;
}

.story-gallery__thumb:hover img,
.story-gallery__thumb:focus-visible img,
.story-gallery__thumb[aria-current="true"] img {
	filter: none;
	transform: scale(1.035);
}

.story-gallery__thumb:focus-visible,
.story-gallery__thumb[aria-current="true"] {
	border-color: var(--yellow);
	outline: none;
}

/* Schedule */
.program-preview,
.video-section {
	background:
		radial-gradient(circle at 12% 8%, rgba(225, 27, 34, 0.2), transparent 28%),
		repeating-linear-gradient(100deg, transparent, transparent 30px, rgba(255, 255, 255, 0.018) 31px),
		var(--ink);
}

.schedule {
	display: grid;
	grid-template-columns: minmax(160px, 0.3fr) minmax(0, 1fr);
	border: 1px solid var(--line);
	background: var(--ink-soft);
	box-shadow: 18px 18px 0 var(--red);
}

.schedule__tabs {
	display: flex;
	flex-direction: column;
	border-right: 1px solid var(--line);
	background: #0c0d10;
}

.schedule__tabs button {
	position: relative;
	min-height: 70px;
	padding: 17px 24px 14px;
	border: 0;
	border-bottom: 1px solid var(--line);
	background: transparent;
	color: rgba(255, 255, 255, 0.58);
	cursor: pointer;
	font-family: var(--display);
	font-size: clamp(1.2rem, 1.8vw, 1.65rem);
	font-weight: 950;
	letter-spacing: 0.025em;
	line-height: 1;
	text-align: left;
	text-transform: uppercase;
	transition: color 160ms ease, background 160ms ease;
}

.schedule__tabs button::after {
	position: absolute;
	top: 50%;
	right: -1px;
	width: 4px;
	height: 0;
	background: var(--yellow);
	content: "";
	transform: translateY(-50%);
	transition: height 180ms ease;
}

.schedule__tabs button:hover {
	color: #fff;
}

.schedule__tabs button[aria-selected="true"] {
	background: rgba(255, 210, 26, 0.08);
	color: var(--yellow);
}

.schedule__tabs button[aria-selected="true"]::after {
	height: 70%;
}

.schedule__panels {
	min-height: 470px;
	padding: clamp(20px, 3vw, 44px);
}

.schedule-day[hidden] {
	display: none;
}

.class-row {
	display: grid;
	grid-template-columns: minmax(105px, 0.25fr) minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	min-height: 79px;
	padding: 14px 4px;
	border-bottom: 1px solid var(--line);
}

.class-row:first-of-type {
	border-top: 1px solid var(--line);
}

.class-row time {
	color: var(--yellow);
	font-family: var(--mono);
	font-size: 0.75rem;
	font-weight: 800;
	white-space: nowrap;
}

.class-row div {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 2px;
}

.class-row strong {
	font-family: var(--display);
	font-size: clamp(1.15rem, 1.7vw, 1.5rem);
	font-weight: 950;
	letter-spacing: 0.025em;
	line-height: 1.05;
	text-transform: uppercase;
}

.class-row div span {
	color: var(--muted);
	font-family: var(--mono);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.class-row > a {
	display: inline-flex;
	min-width: 62px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	gap: 5px;
	border: 1px solid var(--line);
	color: #fff;
	font-family: var(--mono);
	font-size: 0.67rem;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 160ms ease, color 160ms ease;
}

.class-row > a:hover {
	background: var(--yellow);
	color: var(--ink);
}

.program-poster-callout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
	align-items: center;
	gap: clamp(48px, 8vw, 120px);
	margin-top: clamp(70px, 9vw, 120px);
	padding: clamp(28px, 5vw, 70px);
	border: 1px solid var(--line);
	background:
		linear-gradient(120deg, rgba(225, 27, 34, 0.16), transparent 48%),
		#101216;
}

.program-poster-callout__copy h3 {
	margin-bottom: 26px;
	font-size: clamp(2.8rem, 6vw, 6.2rem);
	font-weight: 950;
	letter-spacing: -0.055em;
	line-height: 0.86;
	text-transform: uppercase;
}

.program-poster-callout__copy h3 em {
	color: var(--yellow) !important;
}

.program-poster-callout__copy > p:not(.eyebrow) {
	max-width: 620px;
	color: var(--muted);
}

.program-poster-callout .poster-viewer {
	width: min(100%, 470px);
	justify-self: end;
}

.section-cta {
	display: flex;
	justify-content: flex-end;
	margin-top: 58px;
}

.section-cta--between {
	align-items: center;
	justify-content: space-between;
}

.section-cta--between > p {
	margin: 0;
	font-family: var(--mono);
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

/* Faculty */
.faculty-preview {
	padding-bottom: clamp(90px, 10vw, 140px);
}

.faculty-preview--casefile {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(115deg, transparent 0 47%, rgba(150, 18, 20, 0.3) 47.1% 47.25%, transparent 47.4%),
		radial-gradient(circle at 82% 14%, rgba(197, 139, 49, 0.22), transparent 27%),
		radial-gradient(circle at 14% 68%, rgba(197, 139, 49, 0.12), transparent 32%),
		linear-gradient(180deg, #15120e 0%, #08090b 24%, #0b0908 100%);
	color: #f5eee0;
}

.faculty-preview--casefile::before {
	position: absolute;
	inset: 0;
	background-image:
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 4px),
		repeating-linear-gradient(90deg, rgba(205, 149, 58, 0.028) 0 1px, transparent 1px 90px);
	content: "";
	pointer-events: none;
}

.faculty-preview--casefile > * {
	position: relative;
}

.faculty-preview--casefile .eyebrow,
.faculty-preview--casefile .section-heading em,
.faculty-preview--casefile .faculty-poster-callout__copy h3 em {
	color: #d29a42 !important;
}

.faculty-preview--casefile .section-heading > p {
	color: rgba(245, 238, 224, 0.7);
}

.teacher-grid--home {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: clamp(44px, 5vw, 82px) clamp(14px, 1.8vw, 28px);
	margin-top: 12px;
}

.teacher-grid--home .teacher-card:nth-child(even) {
	padding-top: 32px;
}

.teacher-grid--home .teacher-card__image {
	border-color: rgba(210, 154, 66, 0.62);
	box-shadow: 8px 8px 0 rgba(142, 20, 22, 0.65);
}

.teacher-grid--home .teacher-card__image > span {
	background: #d29a42;
}

.teacher-grid--home .teacher-card__meta h3 {
	font-size: clamp(1.25rem, 2vw, 2rem);
}

.faculty-poster-callout {
	display: grid;
	grid-template-columns: minmax(280px, 0.52fr) minmax(320px, 0.72fr);
	align-items: center;
	gap: clamp(52px, 8vw, 130px);
	margin-top: clamp(90px, 11vw, 160px);
	padding: clamp(26px, 4vw, 58px);
	border: 1px solid rgba(210, 154, 66, 0.58);
	background:
		linear-gradient(135deg, rgba(142, 20, 22, 0.2), transparent 42%),
		rgba(4, 5, 7, 0.88);
	box-shadow: 14px 14px 0 rgba(94, 11, 13, 0.62);
}

.faculty-poster-callout .poster-viewer {
	width: min(100%, 520px);
}

.faculty-poster-callout__copy h3 {
	margin-bottom: 26px;
	font-size: clamp(2.8rem, 6vw, 6.6rem);
	font-weight: 950;
	letter-spacing: -0.055em;
	line-height: 0.86;
	text-transform: uppercase;
}

.faculty-poster-callout__copy > p:not(.eyebrow) {
	max-width: 590px;
	margin-bottom: 34px;
	color: rgba(245, 238, 224, 0.72);
}

.teacher-rail {
	display: grid;
	grid-auto-columns: clamp(235px, 25vw, 360px);
	grid-auto-flow: column;
	gap: clamp(16px, 2vw, 28px);
	padding: 0 max(4vw, calc((100vw - 1440px) / 2));
	overflow-x: auto;
	scroll-padding-inline: 4vw;
	scroll-snap-type: x mandatory;
	scrollbar-color: var(--yellow) rgba(0, 0, 0, 0.24);
	scrollbar-width: thin;
}

.teacher-rail::-webkit-scrollbar {
	height: 8px;
}

.teacher-rail::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.24);
}

.teacher-rail::-webkit-scrollbar-thumb {
	background: var(--yellow);
}

.teacher-card {
	scroll-snap-align: start;
}

.teacher-card:nth-child(even) {
	padding-top: 34px;
}

.teacher-card__image {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: var(--ink);
	box-shadow: 8px 8px 0 rgba(9, 10, 12, 0.56);
}

.teacher-card__image img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	filter: saturate(0.85) contrast(1.04);
	transition: filter 320ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.teacher-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 4 / 5;
	background: linear-gradient(145deg, #17191d, #090a0c 68%);
	color: rgba(255, 255, 255, 0.4);
	font-family: var(--display);
	font-size: clamp(1.8rem, 4vw, 3.5rem);
	font-weight: 950;
	font-style: italic;
	letter-spacing: -0.06em;
}

.teacher-card:hover .teacher-card__image img {
	filter: saturate(1) contrast(1.02);
	transform: scale(1.025);
}

.teacher-card__image > span {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 6px 8px;
	background: var(--yellow);
	color: var(--ink);
	font-family: var(--mono);
	font-size: 0.65rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.teacher-card__meta {
	padding: 20px 4px 0;
}

.teacher-card__meta h3 {
	margin-bottom: 4px;
	font-size: clamp(1.7rem, 2.5vw, 2.55rem);
	font-weight: 950;
	letter-spacing: -0.035em;
	line-height: 0.95;
	text-transform: uppercase;
}

.teacher-card__meta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-family: var(--mono);
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Believe feature */
.believe-feature {
	position: relative;
	min-height: 920px;
	overflow: hidden;
	isolation: isolate;
}

.believe-feature__media,
.believe-feature__overlay {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.believe-feature__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 48% center;
	filter: contrast(1.1) saturate(0.9) brightness(0.64);
}

.believe-feature__overlay {
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(8, 9, 11, 0.22), rgba(8, 9, 11, 0.88) 64%, rgba(8, 9, 11, 0.98)),
		linear-gradient(0deg, rgba(8, 9, 11, 0.9), transparent 52%, rgba(8, 9, 11, 0.38));
}

.believe-feature__content {
	display: grid;
	min-height: 920px;
	grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 0.85fr);
	align-items: center;
	gap: clamp(50px, 9vw, 160px);
	padding-block: 110px;
}

.believe-feature__logo {
	align-self: end;
	margin-bottom: 38px;
}

.believe-feature__logo img {
	width: min(540px, 100%);
	filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.54));
	mix-blend-mode: screen;
}

.believe-feature__copy h2 {
	margin-bottom: 36px;
}

.believe-feature__copy h2 em {
	color: var(--silver) !important;
}

.believe-feature__copy > p:not(.case-tag) {
	max-width: 590px;
	margin-bottom: 36px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1.05rem;
}

/* Studio space */
.space-grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 0.85fr);
	align-items: center;
	column-gap: clamp(54px, 9vw, 150px);
	row-gap: 28px;
}

.space-grid > .space-grid__gallery {
	grid-column: 1;
	grid-row: 1 / span 2;
}

.space-grid > .space-grid__copy {
	grid-column: 2;
	grid-row: 1;
}

.space-grid__booking-cta {
	grid-column: 2;
	grid-row: 2;
	align-self: start;
	justify-self: start;
	margin-top: 0;
}

.space-grid__gallery {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	transform: rotate(-1.1deg);
}

.space-grid__gallery::before {
	position: absolute;
	inset: 18px -18px -18px 18px;
	z-index: -1;
	background: var(--red);
	content: "";
}

.studio-gallery__item {
	margin: 0;
	min-height: 152px;
	overflow: hidden;
	background: var(--ink);
}

.studio-gallery__item--main {
	grid-column: span 2;
	min-height: 355px;
}

.studio-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.space-grid__image {
	position: relative;
	transform: rotate(-1.1deg);
}

.space-grid__image::before {
	position: absolute;
	inset: 18px -18px -18px 18px;
	z-index: -1;
	background: var(--red);
	content: "";
}

.space-grid__image img {
	width: 100%;
	min-height: 580px;
	object-fit: cover;
	box-shadow: var(--shadow);
}

.evidence-label {
	position: absolute;
	right: 22px;
	bottom: -15px;
	padding: 9px 14px;
	background: var(--yellow);
	color: var(--ink);
	font-family: var(--mono);
	font-size: 0.66rem;
	font-weight: 900;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	transform: rotate(2deg);
}

.space-grid__copy h2 {
	margin-bottom: 34px;
}

.space-grid__copy > p:not(.eyebrow) {
	max-width: 650px;
	margin-bottom: 36px;
	color: rgba(9, 10, 12, 0.72);
	font-size: 1.05rem;
}

.fact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	margin: 0 0 40px;
	border: 1px solid var(--line-dark);
	background: var(--line-dark);
}

.fact-grid > div {
	display: flex;
	min-height: 112px;
	flex-direction: column;
	justify-content: center;
	padding: 18px 20px;
	background: var(--paper);
}

.fact-grid strong {
	font-family: var(--display);
	font-size: 1.7rem;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.fact-grid span {
	margin-top: 6px;
	color: rgba(9, 10, 12, 0.58);
	font-family: var(--mono);
	font-size: 0.62rem;
	font-weight: 750;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

/* Video cards */
.video-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(22px, 3vw, 42px);
}

.video-card {
	position: relative;
	display: block;
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--ink-soft);
	color: #fff;
	text-decoration: none;
}

.video-card::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(5, 6, 8, 0.96), transparent 65%);
	content: "";
	pointer-events: none;
}

.video-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	filter: saturate(0.7) brightness(0.78);
	transition: filter 300ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.video-card:hover img {
	filter: saturate(1) brightness(0.88);
	transform: scale(1.025);
}

.video-card > div {
	position: absolute;
	right: 28px;
	bottom: 24px;
	left: 28px;
	z-index: 2;
}

.video-card p {
	margin-bottom: 2px;
	font-family: var(--display);
	font-size: clamp(1.5rem, 2.4vw, 2.6rem);
	font-weight: 950;
	letter-spacing: -0.03em;
	line-height: 1;
	text-transform: uppercase;
}

.video-card strong {
	color: var(--yellow);
	font-family: var(--mono);
	font-size: 0.64rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.video-card__play {
	position: absolute;
	top: 26px;
	right: 26px;
	z-index: 2;
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.52);
	border-radius: 50%;
	background: rgba(9, 10, 12, 0.56);
	font-size: 0.92rem;
	backdrop-filter: blur(7px);
}

/* Contact banner */
.contact-banner {
	position: relative;
	overflow: hidden;
	padding: clamp(90px, 11vw, 170px) 0;
	background:
		linear-gradient(120deg, transparent 55%, rgba(0, 0, 0, 0.11) 55%),
		var(--yellow);
	color: var(--ink);
}

.contact-banner::before {
	position: absolute;
	top: -130px;
	right: -50px;
	color: rgba(9, 10, 12, 0.06);
	content: "UMOVE";
	font-family: var(--display);
	font-size: 22vw;
	font-style: italic;
	font-weight: 950;
	letter-spacing: -0.1em;
	line-height: 1;
	transform: skew(-8deg);
	white-space: nowrap;
}

.contact-banner__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
	align-items: center;
	gap: clamp(42px, 8vw, 120px);
}

.contact-banner .case-tag {
	border-color: var(--ink);
	background: var(--paper-bright);
	box-shadow-color: var(--red);
}

.contact-banner h2 {
	margin-bottom: 46px;
}

.contact-banner__image {
	align-self: stretch;
	min-height: 370px;
	overflow: hidden;
	box-shadow: 18px 18px 0 var(--red);
	transform: rotate(1.3deg);
}

.contact-banner__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Footer */
.site-footer {
	padding: 78px 0 24px;
	border-top: 1px solid var(--line);
	background: #07080a;
	color: rgba(255, 255, 255, 0.7);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(150px, 0.55fr));
	gap: clamp(34px, 5vw, 80px);
}

.brand--footer {
	display: inline-flex;
	margin-bottom: 22px;
}

.site-footer__brand > p {
	max-width: 280px;
	font-family: var(--mono);
	font-size: 0.72rem;
	letter-spacing: 0.045em;
}

.site-footer .eyebrow {
	margin-bottom: 20px;
	color: #fff;
}

.site-footer address {
	font-style: normal;
}

.site-footer address a {
	text-decoration: none;
}

.site-footer address a:hover,
.social-list a:hover {
	color: var(--yellow);
}

.site-footer__map {
	margin-top: 22px;
	border: 1px solid rgba(255, 255, 255, 0.36);
	box-shadow: 8px 8px 0 var(--yellow);
}

.site-footer__map iframe {
	display: block;
	width: 100%;
	height: 190px;
	border: 0;
}

.site-footer strong {
	color: #fff;
}

.social-list,
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.social-list li + li {
	margin-top: 7px;
}

.social-list a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	font-family: var(--display);
	font-size: 1.3rem;
	font-weight: 900;
	letter-spacing: 0.02em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 70px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
	font-family: var(--mono);
	font-size: 0.62rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.site-footer__bottom p {
	margin: 0;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.mobile-booking {
	display: none;
}

/* Generic page primitives */
.page-hero {
	position: relative;
	display: flex;
	min-height: 660px;
	align-items: end;
	padding: calc(var(--header-height) + 100px) 0 90px;
	overflow: hidden;
	background: var(--ink-soft);
	isolation: isolate;
}

.page-hero--compact {
	min-height: 520px;
}

.page-hero__media,
.page-hero__wash {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.55) saturate(0.76) contrast(1.12);
}

.page-hero__wash {
	z-index: -1;
	background: linear-gradient(90deg, rgba(7, 8, 10, 0.96), rgba(7, 8, 10, 0.54) 58%, rgba(7, 8, 10, 0.2)), linear-gradient(0deg, rgba(7, 8, 10, 0.92), transparent 48%);
}

.page-hero__inner {
	position: relative;
	z-index: 1;
}

.page-hero h1 {
	max-width: 1080px;
}

.page-hero__lead {
	max-width: 650px;
	margin: 30px 0 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.content-shell {
	width: min(90vw, 880px);
	margin-inline: auto;
}

.entry-content {
	padding: 90px 0 130px;
	background: var(--paper);
	color: var(--ink);
}

.entry-content > * + * {
	margin-top: 1.35em;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.4em;
	margin-bottom: 0.45em;
	line-height: 1;
}

.entry-content h2 {
	font-size: clamp(2.7rem, 6vw, 5.5rem);
}

.entry-content h3 {
	font-size: clamp(1.7rem, 3vw, 2.6rem);
	font-weight: 950;
	text-transform: uppercase;
}

.entry-content a {
	color: var(--red-dark);
	font-weight: 750;
}

.entry-content .alignwide {
	width: min(94vw, 1200px);
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.entry-content .alignfull {
	width: 100vw;
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.notice {
	padding: 16px 18px;
	border-left: 4px solid var(--yellow);
	background: rgba(255, 210, 26, 0.12);
	color: inherit;
}

.notice--success { border-left-color: #2ca86d; background: rgba(44, 168, 109, 0.12); }
.notice--error { border-left-color: var(--red); background: rgba(225, 27, 34, 0.11); }

/* Program directory */
.page-hero--program .page-hero__media img {
	object-position: center 44%;
}

.program-directory,
.faculty-directory,
.booking-request,
.post-index {
	background:
		radial-gradient(circle at 85% 5%, rgba(225, 27, 34, 0.18), transparent 28%),
		repeating-linear-gradient(103deg, transparent, transparent 36px, rgba(255, 255, 255, 0.017) 37px),
		var(--ink);
}

.program-toolbar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
	align-items: end;
	gap: 50px;
	margin-bottom: clamp(50px, 8vw, 100px);
}

.class-search {
	display: block;
}

.class-search > span {
	display: block;
	margin-bottom: 9px;
	font-family: var(--mono);
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.class-search input {
	width: 100%;
	height: 54px;
	padding: 0 16px;
	border: 1px solid var(--line);
	border-radius: 0;
	background: rgba(255, 255, 255, 0.055);
	color: #fff;
	font-family: var(--mono);
	font-size: 0.78rem;
}

.class-search input::placeholder {
	color: rgba(255, 255, 255, 0.42);
}

.program-days {
	display: grid;
	gap: 32px;
}

.program-day {
	display: grid;
	grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
	border: 1px solid var(--line);
	background: #101216;
}

.program-day__header {
	position: relative;
	padding: 30px 28px;
	border-right: 1px solid var(--line);
	background: var(--red);
	overflow: hidden;
}

.program-day__header::after {
	position: absolute;
	right: -28px;
	bottom: -55px;
	color: rgba(0, 0, 0, 0.11);
	content: attr(data-day);
	font-family: var(--display);
	font-size: 8rem;
	font-weight: 950;
}

.program-day__header h3 {
	position: relative;
	z-index: 1;
	margin-bottom: 8px;
	font-size: clamp(2rem, 3.6vw, 4.2rem);
	font-weight: 950;
	letter-spacing: -0.045em;
	line-height: 0.9;
	text-transform: uppercase;
}

.program-day__header > span {
	font-family: var(--mono);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.program-day__list {
	padding: 8px 30px;
}

.directory-row {
	display: grid;
	grid-template-columns: minmax(110px, 0.22fr) minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	min-height: 88px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}

.directory-row:last-child {
	border-bottom: 0;
}

.directory-row[hidden] {
	display: none;
}

.directory-row time {
	color: var(--yellow);
	font-family: var(--mono);
	font-size: 0.73rem;
	font-weight: 850;
	white-space: nowrap;
}

.directory-row h4 {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(1.25rem, 2vw, 1.8rem);
	font-weight: 950;
	letter-spacing: 0.01em;
	line-height: 1;
	text-transform: uppercase;
}

.directory-row p {
	margin: 5px 0 0;
	color: var(--muted);
	font-family: var(--mono);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.directory-row > a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 7px;
	padding: 8px 12px;
	border: 1px solid var(--line);
	font-family: var(--mono);
	font-size: 0.64rem;
	font-weight: 850;
	text-decoration: none;
	text-transform: uppercase;
}

.directory-row > a:hover {
	border-color: var(--yellow);
	background: var(--yellow);
	color: var(--ink);
}

.filter-empty {
	margin: 40px 0 0;
	padding: 18px;
	border: 1px solid var(--yellow);
	font-family: var(--mono);
	font-size: 0.75rem;
}

.program-artwork__grid,
.roster-poster__grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.72fr) minmax(280px, 0.46fr);
	align-items: center;
	gap: clamp(60px, 10vw, 170px);
}

.program-artwork__copy h2,
.roster-poster__copy h2 {
	margin-bottom: 34px;
}

.program-artwork__copy > p:not(.eyebrow),
.roster-poster__copy > p:not(.eyebrow) {
	max-width: 600px;
	margin-bottom: 38px;
	color: rgba(9, 10, 12, 0.7);
}

.poster-frame {
	position: relative;
	margin: 0;
	padding: 14px;
	border: 1px solid rgba(9, 10, 12, 0.38);
	background: #0a0b0d;
	box-shadow: 18px 18px 0 var(--red), var(--shadow);
	transform: rotate(1.3deg);
}

.poster-frame::before,
.poster-frame::after {
	position: absolute;
	top: -15px;
	width: 72px;
	height: 25px;
	background: rgba(255, 210, 26, 0.72);
	content: "";
}

.poster-frame::before { left: 14%; transform: rotate(-6deg); }
.poster-frame::after { right: 12%; transform: rotate(7deg); }

.poster-viewer {
	min-width: 0;
}

.poster-trigger {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: zoom-in;
	font: inherit;
	text-align: left;
}

.poster-trigger img {
	width: 100%;
}

.poster-trigger::after {
	position: absolute;
	inset: 0;
	border: 2px solid transparent;
	content: "";
	pointer-events: none;
	transition: border-color 160ms ease, background 160ms ease;
}

.poster-trigger:hover::after,
.poster-trigger:focus-visible::after {
	border-color: var(--yellow);
	background: rgba(255, 210, 26, 0.05);
}

.poster-trigger__hint {
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 8px;
	padding: 10px 13px;
	background: var(--yellow);
	box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.7);
	color: var(--ink);
	font-family: var(--mono);
	font-size: 0.63rem;
	font-weight: 900;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.poster-trigger__hint > span {
	font-size: 1.15rem;
	line-height: 1;
}

.poster-frame figcaption {
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.72);
	font-family: var(--mono);
	font-size: 0.58rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.poster-lightbox {
	width: min(96vw, 1380px);
	height: min(94dvh, 1200px);
	max-width: none;
	max-height: none;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: var(--ink);
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.75);
	color: #fff;
}

.poster-lightbox[open] {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
}

.poster-lightbox::backdrop {
	background: rgba(0, 0, 0, 0.88);
	backdrop-filter: blur(7px);
}

.poster-lightbox__toolbar {
	display: flex;
	min-height: 62px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 10px 14px 10px 20px;
	border-bottom: 1px solid var(--line);
}

.poster-lightbox__toolbar p,
.poster-lightbox__help {
	margin: 0;
	font-family: var(--mono);
	font-size: 0.64rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.poster-lightbox__toolbar button {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 8px;
	padding: 8px 13px;
	border: 1px solid var(--line);
	background: transparent;
	color: #fff;
	cursor: pointer;
	font-family: var(--mono);
	font-size: 0.64rem;
	font-weight: 850;
	text-transform: uppercase;
}

.poster-lightbox__toolbar button:hover,
.poster-lightbox__toolbar button:focus-visible {
	border-color: var(--yellow);
	background: var(--yellow);
	color: var(--ink);
}

.poster-lightbox__toolbar button span {
	font-size: 1.3rem;
	line-height: 1;
}

.poster-lightbox__viewport {
	overflow: auto;
	background:
		repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 12px),
		#050608;
	overscroll-behavior: contain;
}

.poster-lightbox__image {
	display: flex;
	width: 100%;
	min-height: 100%;
	align-items: flex-start;
	justify-content: center;
	padding: 20px;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.poster-lightbox__image img {
	width: min(100%, 760px);
	max-width: 100%;
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
}

.poster-lightbox__image.is-zoomed {
	width: max-content;
	min-width: 100%;
	cursor: zoom-out;
}

.poster-lightbox__image.is-zoomed img {
	width: 1080px;
	max-width: none;
}

.poster-lightbox__help {
	padding: 12px 20px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	text-align: center;
}

body.poster-open {
	overflow: hidden;
}

/* Faculty directory */
.page-hero--teachers .page-hero__media {
	right: 0;
	left: 48%;
}

.page-hero--teachers .page-hero__media img {
	object-position: center 18%;
}

.teacher-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(34px, 5vw, 72px) clamp(16px, 2.2vw, 32px);
}

.teacher-card--directory:nth-child(even) {
	padding-top: 0;
}

.teacher-card--directory:nth-child(4n + 2),
.teacher-card--directory:nth-child(4n + 4) {
	padding-top: 46px;
}

.teacher-card--directory .teacher-card__meta h2 {
	font-size: clamp(1.55rem, 2.35vw, 2.5rem);
}

.teacher-card__bio {
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.85rem;
}

.faculty-note {
	display: grid;
	grid-template-columns: minmax(180px, 0.45fr) repeat(2, minmax(190px, 1fr));
	gap: 24px;
	margin-top: 90px;
	padding: 28px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.04);
}

.faculty-note .eyebrow,
.faculty-note p {
	margin: 0;
}

.faculty-note small {
	grid-column: 2 / -1;
	color: var(--muted);
	font-family: var(--mono);
	font-size: 0.62rem;
}

.roster-poster__grid {
	grid-template-columns: minmax(280px, 0.45fr) minmax(360px, 0.8fr);
}

/* BELIEVE */
.believe-hero {
	position: relative;
	display: grid;
	min-height: max(780px, 100svh);
	place-items: center;
	overflow: hidden;
	isolation: isolate;
}

.believe-hero__media,
.believe-hero__wash {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.believe-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: brightness(0.66) contrast(1.12) saturate(0.88);
}

.believe-hero__wash {
	z-index: -1;
	background: linear-gradient(90deg, rgba(5, 6, 8, 0.55), rgba(5, 6, 8, 0.2) 48%, rgba(5, 6, 8, 0.9)), linear-gradient(0deg, rgba(5, 6, 8, 0.96), transparent 55%, rgba(5, 6, 8, 0.34));
}

.believe-hero__inner {
	display: grid;
	grid-template-columns: minmax(260px, 0.75fr) minmax(330px, 0.65fr);
	align-items: end;
	gap: clamp(40px, 9vw, 150px);
	padding-top: calc(var(--header-height) + 80px);
	padding-bottom: 70px;
}

.believe-hero__mark {
	width: min(650px, 100%);
	filter: drop-shadow(0 20px 38px rgba(0, 0, 0, 0.7));
	mix-blend-mode: screen;
}

.believe-hero__copy {
	padding-bottom: 22px;
}

.believe-hero__copy h1 {
	color: var(--silver);
	font-size: clamp(6rem, 13vw, 14rem);
	line-height: 0.76;
}

.believe-hero__copy > p:not(.case-tag) {
	max-width: 520px;
	margin: 35px 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.believe-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
	align-items: end;
	gap: clamp(50px, 9vw, 150px);
}

.believe-intro__copy p {
	color: rgba(9, 10, 12, 0.72);
}

.believe-intro__copy .lead-copy {
	color: var(--ink);
	font-size: clamp(1.15rem, 1.8vw, 1.45rem);
	font-weight: 750;
}

.believe-facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	margin-top: 80px;
	border: 1px solid var(--line-dark);
	background: var(--line-dark);
}

.believe-facts > div {
	display: flex;
	min-height: 135px;
	flex-direction: column;
	justify-content: center;
	padding: 24px;
	background: var(--paper);
}

.believe-facts span {
	margin-bottom: 9px;
	color: rgba(9, 10, 12, 0.58);
	font-family: var(--mono);
	font-size: 0.63rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.believe-facts strong {
	font-family: var(--display);
	font-size: clamp(1.3rem, 2.4vw, 2rem);
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.believe-gallery {
	padding: clamp(90px, 10vw, 150px) 0 0;
	background: var(--ink);
}

.believe-gallery__grid {
	display: grid;
	grid-template-columns: 1.25fr 0.65fr 0.9fr;
	align-items: end;
	gap: 12px;
	margin-top: 80px;
}

.believe-gallery figure {
	position: relative;
	margin: 0;
	overflow: hidden;
}

.believe-gallery figure:nth-child(2) {
	margin-bottom: 42px;
}

.believe-gallery img {
	width: 100%;
	height: 620px;
	object-fit: cover;
	filter: saturate(0.78) contrast(1.08);
}

.believe-gallery figure:nth-child(2) img { height: 520px; }
.believe-gallery figure:nth-child(3) img { height: 570px; }

.believe-gallery figcaption {
	position: absolute;
	right: 14px;
	bottom: 14px;
	padding: 7px 10px;
	background: var(--yellow);
	color: var(--ink);
	font-family: var(--mono);
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.camp-booking__grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.85fr) minmax(300px, 0.68fr);
	align-items: center;
	gap: clamp(60px, 9vw, 150px);
}

.camp-booking__copy h2 {
	margin-bottom: 34px;
}

.camp-booking__copy > p:not(.eyebrow) {
	margin-bottom: 34px;
	color: rgba(9, 10, 12, 0.7);
}

.booking-steps {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--line-dark);
	list-style: none;
}

.booking-steps li {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 18px;
	padding: 25px 0;
	border-bottom: 1px solid var(--line-dark);
}

.booking-steps li > span {
	color: var(--red);
	font-family: var(--display);
	font-size: 2rem;
	font-weight: 950;
	line-height: 1;
}

.booking-steps strong {
	display: block;
	font-family: var(--display);
	font-size: 1.4rem;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.booking-steps p {
	margin: 7px 0 0;
	color: rgba(9, 10, 12, 0.63);
	font-size: 0.9rem;
}

/* BELIEVE 2027 poster, Reel, and payment flow */
.believe-intro {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 22%, rgba(103, 151, 255, 0.42), transparent 31%),
		radial-gradient(circle at 88% 72%, rgba(42, 72, 210, 0.5), transparent 36%),
		linear-gradient(135deg, #090b42 0%, #151a78 52%, #080a37 100%);
	color: #fff;
}

.believe-intro::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.06) 49%, transparent 60%);
	content: "";
	pointer-events: none;
}

.believe-intro > .shell {
	position: relative;
	z-index: 1;
}

.believe-intro__grid {
	grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
	align-items: center;
	gap: clamp(48px, 8vw, 130px);
}

.believe-intro__poster {
	margin: 0;
	padding: clamp(8px, 1vw, 14px);
	border: 1px solid rgba(218, 231, 255, 0.72);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(121, 154, 255, 0.08));
	box-shadow: 0 38px 80px rgba(0, 0, 31, 0.56), 0 0 55px rgba(88, 121, 255, 0.23);
	transform: rotate(-1.2deg);
}

.believe-intro__poster img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid rgba(255, 255, 255, 0.34);
}

.believe-intro__content .eyebrow {
	color: #afc5ff;
}

.believe-intro__content h2,
.believe-intro__content h2 em {
	color: #fff;
}

.believe-intro__content h2 em {
	text-shadow: 0 0 35px rgba(126, 166, 255, 0.52);
}

.believe-intro__copy {
	max-width: 680px;
	margin-top: 38px;
}

.believe-intro__copy p,
.believe-intro__copy .lead-copy {
	color: rgba(255, 255, 255, 0.78);
}

.believe-intro__copy .lead-copy {
	color: #fff;
}

.believe-intro .believe-facts {
	border-color: rgba(180, 204, 255, 0.28);
	background: rgba(180, 204, 255, 0.28);
}

.believe-intro .believe-facts > div {
	background: rgba(6, 8, 47, 0.76);
}

.believe-intro .believe-facts span {
	color: #9dbbff;
}

.believe-intro .believe-facts strong {
	color: #fff;
}

.believe-reel {
	background: #070919;
	color: #fff;
}

.believe-reel__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 0.62fr);
	align-items: center;
	gap: clamp(48px, 10vw, 160px);
}

.believe-reel__copy h2,
.believe-reel__copy h2 em {
	color: #fff;
}

.believe-reel__copy p:not(.eyebrow) {
	max-width: 520px;
	color: rgba(255, 255, 255, 0.7);
}

.believe-reel__embed {
	width: min(100%, 470px);
	margin-inline: auto;
	padding: 10px;
	border: 1px solid rgba(158, 184, 255, 0.42);
	background: linear-gradient(145deg, #1f2b89, #0d1144);
	box-shadow: 0 30px 75px rgba(0, 0, 0, 0.48), 0 0 45px rgba(75, 112, 255, 0.18);
}

.believe-reel__embed video {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 9 / 16;
	border: 0;
	background: #000;
	object-fit: contain;
}

#believe-booking {
	scroll-margin-top: calc(var(--header-height) + 20px);
}

.camp-booking__grid {
	grid-template-columns: minmax(260px, 0.52fr) minmax(480px, 1fr);
	align-items: start;
	gap: clamp(45px, 7vw, 110px);
}

.camp-booking__copy {
	position: sticky;
	top: calc(var(--header-height) + 35px);
}

.camp-booking__form {
	min-width: 0;
}

.believe-booking-form {
	padding: clamp(26px, 4vw, 54px);
	border: 1px solid rgba(164, 190, 255, 0.42);
	background: linear-gradient(145deg, #090c34 0%, #11185d 58%, #090b2b 100%);
	color: #fff;
	box-shadow: 18px 18px 0 #182275;
}

.believe-booking-form__heading {
	margin-bottom: 34px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.believe-booking-form__heading > p:last-child {
	max-width: 620px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.72);
}

.believe-booking-form__price {
	margin: 6px 0 12px;
	color: #fff;
	font-family: var(--display);
	font-size: clamp(4.8rem, 10vw, 8rem);
	font-weight: 950;
	line-height: 0.82;
	letter-spacing: -0.045em;
}

.believe-booking-form__price span {
	margin-right: 5px;
	font-size: 0.52em;
	vertical-align: top;
}

.believe-payment-step {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 24px;
	margin: 34px 0;
	padding: 24px;
	background: linear-gradient(135deg, #0c104c, #2636a0);
	color: #fff;
}

.believe-payment-step span,
.believe-payment-step small {
	display: block;
}

.believe-payment-step span {
	margin-bottom: 7px;
	color: #a9c1ff;
	font-family: var(--mono);
	font-size: 0.64rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.believe-payment-step strong {
	display: block;
	font-family: var(--display);
	font-size: clamp(1.3rem, 2vw, 1.8rem);
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.believe-payment-step small {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.67);
}

.believe-booking-form__terms,
.believe-booking-form__verification {
	font-size: 0.83rem;
	line-height: 1.5;
}

.believe-booking-form__terms {
	margin: 28px 0 8px;
	color: #ff9ca5;
	font-weight: 750;
}

.believe-booking-form__verification {
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.68);
}

.believe-booking-form > .button--dark {
	border-color: var(--yellow);
	background: var(--yellow);
	color: var(--ink);
}

.believe-booking-form > .button--dark:hover,
.believe-booking-form > .button--dark:focus-visible {
	border-color: #fff;
	background: #fff;
	color: var(--ink);
}

.believe-booking-form .notice {
	margin-bottom: 24px;
}

.believe-booking-form + .notice,
#believe-booking-status {
	margin-bottom: 24px;
}

/* Studio bookings */
.page-hero--bookings .page-hero__media img,
.page-hero--contact .page-hero__media img {
	object-position: center 52%;
}

.floor-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.floor-card {
	position: relative;
	min-height: 440px;
	padding: clamp(30px, 4vw, 58px);
	border: 1px solid var(--line-dark);
	background: var(--paper-bright);
	overflow: hidden;
}

.floor-card--dark {
	background: var(--ink);
	color: #fff;
}

.floor-card__number {
	position: absolute;
	top: -34px;
	right: -5px;
	color: rgba(225, 27, 34, 0.12);
	font-family: var(--display);
	font-size: 12rem;
	font-weight: 950;
	line-height: 1;
}

.floor-card h3 {
	position: relative;
	margin: 62px 0 30px;
	font-size: clamp(3rem, 6vw, 6rem);
	font-weight: 950;
	letter-spacing: -0.055em;
	line-height: 0.85;
	text-transform: uppercase;
}

.floor-card ul {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

.floor-card li {
	padding: 12px 0;
	border-top: 1px solid currentColor;
	border-color: rgba(9, 10, 12, 0.16);
}

.floor-card--dark li {
	border-color: var(--line);
}

.amenity-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	margin-top: 28px;
	border: 1px solid var(--line-dark);
	background: var(--line-dark);
}

.amenity-strip > div {
	display: flex;
	min-height: 100px;
	align-items: center;
	gap: 14px;
	padding: 18px;
	background: var(--paper);
}

.amenity-strip span {
	color: var(--red);
	font-size: 1.5rem;
}

.amenity-strip strong {
	font-family: var(--display);
	font-size: 1.05rem;
	font-weight: 950;
	line-height: 1.1;
	text-transform: uppercase;
}

.booking-request__grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.7fr) minmax(360px, 0.9fr);
	align-items: start;
	gap: clamp(50px, 9vw, 150px);
}

.booking-request__intro {
	position: sticky;
	top: 120px;
}

.booking-request__intro h2 {
	margin-bottom: 34px;
}

.booking-request__intro > p:not(.eyebrow) {
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.7);
}

.booking-request__form,
.contact-form-wrap {
	padding: clamp(28px, 4vw, 54px);
	border: 1px solid var(--line);
	background: #111318;
	box-shadow: 14px 14px 0 var(--red);
}

.notice + .contact-form {
	margin-top: 24px;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.field {
	margin: 0 0 20px;
}

.field > label,
.field > span {
	display: block;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.74);
	font-family: var(--mono);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.field input:not([type="checkbox"]),
.field select,
.field textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid var(--line);
	border-radius: 0;
	background: rgba(255, 255, 255, 0.055);
	color: #fff;
	font-family: var(--body);
}

.field input:not([type="checkbox"]),
.field select {
	height: 52px;
}

.field select option {
	background: var(--ink);
	color: #fff;
}

.field textarea {
	min-height: 170px;
	resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--yellow);
	outline: 2px solid var(--yellow);
	outline-offset: 2px;
}

.field--check {
	display: flex;
	align-items: flex-start;
	gap: 11px;
}

.field--check input {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	margin-top: 2px;
	accent-color: var(--yellow);
}

.field--check label {
	margin: 0;
	font-family: var(--body);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.5;
	text-transform: none;
}

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

/* Contact page */
.contact-page__grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.7fr) minmax(360px, 0.85fr);
	align-items: start;
	gap: clamp(50px, 9vw, 150px);
}

.contact-details h2 {
	margin-bottom: 50px;
}

.contact-details dl {
	margin: 0 0 42px;
	border-top: 1px solid var(--line-dark);
}

.contact-details dl > div {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid var(--line-dark);
}

.contact-details dt {
	font-family: var(--mono);
	font-size: 0.64rem;
	font-weight: 850;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.contact-details dd {
	margin: 0;
	font-weight: 680;
}

.contact-details dd a {
	color: inherit;
	text-decoration: none;
}

.contact-form-wrap__title {
	margin-bottom: 32px;
	font-size: clamp(2rem, 4vw, 3.6rem);
	letter-spacing: -0.035em;
	line-height: 1;
}

.contact-page .contact-form-wrap {
	color: #fff;
}

/* Journal cards */
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 48px 28px;
}

.post-card__media {
	display: block;
	margin-bottom: 24px;
	overflow: hidden;
}

.post-card__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.post-card h2 {
	font-size: clamp(2rem, 3.4vw, 3.2rem);
	line-height: 0.92;
}

.post-card h2 a {
	text-decoration: none;
}

.post-card > p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.66);
}

.pagination {
	grid-column: 1 / -1;
	margin-top: 30px;
}

@media (max-width: 1120px) {
	.teacher-grid--home {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	:root {
		--shell: min(92vw, 1040px);
	}

	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: -1;
		display: flex;
		width: min(460px, 100vw);
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
		gap: 34px;
		padding: calc(var(--header-height) + 42px) clamp(28px, 8vw, 70px) 48px;
		background:
			linear-gradient(145deg, transparent 64%, rgba(225, 27, 34, 0.22) 64%),
			#0c0d10;
		box-shadow: -30px 0 80px rgba(0, 0, 0, 0.48);
		opacity: 0;
		pointer-events: none;
		transform: translateX(100%);
		transition: opacity 240ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
	}

	.admin-bar .site-nav {
		top: 32px;
	}

	.site-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateX(0);
	}

	.site-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.site-nav__list li {
		border-bottom: 1px solid var(--line);
	}

	.site-nav__list a {
		padding: 15px 0 13px;
		font-family: var(--display);
		font-size: clamp(1.65rem, 5vw, 2.5rem);
		letter-spacing: -0.01em;
		line-height: 1;
	}

	.site-nav__list a::after {
		display: none;
	}

	.site-nav__cta {
		align-self: flex-start;
	}

	html:not(.js) .nav-toggle {
		display: none;
	}

	html:not(.js) .site-header {
		position: relative;
		top: 0;
		height: auto;
		border-color: var(--line);
		background: var(--ink);
	}

	html:not(.js) .site-header__inner {
		flex-wrap: wrap;
		padding-top: 18px;
		padding-bottom: 18px;
	}

	html:not(.js) .site-nav {
		position: static;
		z-index: auto;
		width: 100%;
		padding: 0;
		align-items: stretch;
		justify-content: flex-start;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	html:not(.js) .site-nav__list {
		flex-flow: row wrap;
		gap: 8px 22px;
	}

	html:not(.js) .site-nav__list li {
		border: 0;
	}

	html:not(.js) .site-nav__list a {
		padding: 7px 0;
		font-family: var(--mono);
		font-size: 0.78rem;
		letter-spacing: 0.06em;
	}

	.hero__content {
		grid-template-columns: minmax(0, 1fr) 170px;
		gap: 40px;
	}

	.intro-grid,
	.section-heading--split,
	.believe-feature__content,
	.space-grid {
		gap: 56px;
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 800px) {
	.faculty-poster-callout {
		grid-template-columns: 1fr;
	}

	.faculty-poster-callout .poster-viewer {
		width: min(82%, 500px);
		justify-self: center;
	}

	.teacher-grid--home {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	:root {
		--header-height: 72px;
		--shell: min(90vw, 720px);
	}

	body {
		padding-bottom: calc(67px + env(safe-area-inset-bottom, 0px));
	}

	.site-header,
	.site-header.is-scrolled,
	body:not(.umove-front-page) .site-header {
		height: var(--header-height);
	}

	.brand__wordmark {
		font-size: 1.65rem;
	}

	.hero {
		min-height: 820px;
		align-items: end;
	}

	.hero__media img {
		object-position: 56% center;
	}

	.hero__wash {
		background: linear-gradient(0deg, rgba(5, 6, 8, 0.98) 0%, rgba(5, 6, 8, 0.78) 48%, rgba(5, 6, 8, 0.18) 83%, rgba(5, 6, 8, 0.48));
	}

	.hero__content {
		display: block;
		padding-top: 180px;
		padding-bottom: 75px;
	}

	.hero__copy {
		max-width: 660px;
	}

	.header__studio-lockup {
		width: 155px;
		height: 42px;
	}

	.hero__lead {
		max-width: 580px;
		margin: 28px 0 32px;
	}

	.hero-docket,
	.hero__scroll {
		display: none;
	}

	.intro-grid,
	.section-heading--split,
	.believe-feature__content,
	.space-grid {
		grid-template-columns: 1fr;
	}

	.section-heading--split {
		align-items: start;
		gap: 26px;
	}

	.intro-grid {
		gap: 38px;
	}

	.story-gallery {
		box-shadow: 10px 10px 0 var(--red);
	}

	.story-gallery__stage {
		min-height: 480px;
		aspect-ratio: 4 / 3;
	}

	.story-gallery__rail {
		grid-auto-columns: minmax(145px, 28vw);
	}

	.schedule {
		display: block;
		box-shadow: 9px 9px 0 var(--red);
	}

	.schedule__tabs {
		flex-direction: row;
		border-right: 0;
		border-bottom: 1px solid var(--line);
		overflow-x: auto;
		scrollbar-width: none;
	}

	.schedule__tabs::-webkit-scrollbar { display: none; }

	.schedule__tabs button {
		min-width: max-content;
		min-height: 58px;
		padding-inline: 18px;
		border-right: 1px solid var(--line);
		border-bottom: 0;
		font-size: 1rem;
	}

	.schedule__tabs button::after {
		top: auto;
		right: 15%;
		bottom: 0;
		left: 15%;
		width: auto;
		height: 3px;
		transform: none;
	}

	.schedule__tabs button[aria-selected="true"]::after {
		height: 3px;
	}

	.schedule__panels {
		min-height: 0;
	}

	.believe-feature,
	.believe-feature__content {
		min-height: 850px;
	}

	.believe-feature__content {
		align-content: end;
		gap: 20px;
		padding-block: 90px 70px;
	}

	.believe-feature__logo {
		width: min(390px, 82vw);
		align-self: auto;
		margin-bottom: 0;
	}

	.believe-feature__overlay {
		background: linear-gradient(0deg, rgba(8, 9, 11, 0.98), rgba(8, 9, 11, 0.76) 53%, rgba(8, 9, 11, 0.2));
	}

	.space-grid__image {
		width: min(90%, 620px);
	}

	.space-grid__image img {
		min-height: 0;
		aspect-ratio: 4 / 5;
	}

	.space-grid__gallery {
		width: min(90%, 620px);
	}

	.studio-gallery__item--main {
		min-height: 300px;
	}

	.contact-banner__inner {
		grid-template-columns: 1fr;
	}

	.contact-banner__image {
		width: min(90%, 620px);
		min-height: 300px;
	}

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

	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mobile-booking {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 900;
		display: block;
		border-top: 1px solid #000;
		background: var(--yellow);
		color: var(--ink);
	}

	.mobile-booking a {
		display: flex;
		min-height: calc(67px + env(safe-area-inset-bottom, 0px));
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		padding: 12px 5vw calc(12px + env(safe-area-inset-bottom, 0px));
		font-family: var(--mono);
		font-size: 0.68rem;
		letter-spacing: 0.05em;
		text-decoration: none;
		text-transform: uppercase;
	}

	.mobile-booking strong {
		font-family: var(--display);
		font-size: 1rem;
		font-weight: 950;
		letter-spacing: 0.02em;
	}

	.page-hero {
		min-height: 620px;
		padding-bottom: 70px;
	}
}

@media (max-width: 540px) {
	.faculty-poster-callout {
		padding: 24px 18px 34px;
	}

	.faculty-poster-callout .poster-viewer {
		width: 94%;
	}

	.teacher-grid--home {
		grid-template-columns: 1fr;
	}

	.teacher-grid--home .teacher-card:nth-child(even) {
		padding-top: 0;
	}

	:root {
		--shell: 90vw;
	}

	.section {
		padding-block: 78px;
	}

	h1 {
		font-size: clamp(3.55rem, 18vw, 5.8rem);
	}

	h2 {
		font-size: clamp(3rem, 15.5vw, 5.3rem);
	}

	.nav-toggle__label {
		display: none;
	}

	.hero {
		min-height: 760px;
	}

	.hero__content {
		padding-top: 145px;
		padding-bottom: 54px;
	}

	.case-tag {
		font-size: 0.64rem;
	}

	.button-row {
		align-items: stretch;
		gap: 16px;
	}

	.button-row .button {
		width: 100%;
	}

	.button-row .text-link {
		width: fit-content;
	}

	.style-ticker__track {
		padding-block: 11px 9px;
	}

	.story-gallery {
		box-shadow: 7px 7px 0 var(--red);
	}

	.story-gallery__stage {
		min-height: 520px;
		aspect-ratio: 4 / 5;
	}

	.story-gallery__meta {
		right: 18px;
		bottom: 86px;
		left: 18px;
	}

	.story-gallery__meta h3 {
		font-size: clamp(1.3rem, 6vw, 1.9rem);
	}

	.story-gallery__controls {
		right: auto;
		bottom: 20px;
		left: 18px;
	}

	.story-gallery__rail {
		grid-auto-columns: 135px;
		gap: 8px;
		padding: 12px;
		scroll-padding: 12px;
	}

	.class-row {
		grid-template-columns: 1fr auto;
		gap: 6px 14px;
		padding: 16px 0;
	}

	.class-row time {
		grid-column: 1 / -1;
	}

	.class-row > a {
		grid-column: 2;
		grid-row: 2;
	}

	.schedule__panels {
		padding: 18px;
	}

	.teacher-rail {
		grid-auto-columns: 76vw;
	}

	.section-cta--between {
		align-items: stretch;
		flex-direction: column;
		gap: 24px;
	}

	.section-cta--between .button {
		width: 100%;
	}

	.believe-feature,
	.believe-feature__content {
		min-height: 820px;
	}

	.believe-feature__media img {
		object-position: 46% center;
	}

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

	.fact-grid > div {
		min-height: 92px;
	}

	.video-card > div {
		right: 18px;
		bottom: 17px;
		left: 18px;
	}

	.video-card__play {
		top: 17px;
		right: 17px;
		width: 48px;
		height: 48px;
	}

	.site-footer {
		padding-top: 62px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.contact-banner {
		padding-block: 90px;
	}
}

@media (max-width: 1120px) {
	.teacher-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.teacher-card--directory:nth-child(4n + 2),
	.teacher-card--directory:nth-child(4n + 4) {
		padding-top: 0;
	}

	.teacher-card--directory:nth-child(3n + 2) {
		padding-top: 38px;
	}

	.believe-facts,
	.amenity-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 800px) {
	.program-toolbar,
	.program-day,
	.program-poster-callout,
	.program-artwork__grid,
	.roster-poster__grid,
	.believe-hero__inner,
	.believe-intro__grid,
	.camp-booking__grid,
	.booking-request__grid,
	.contact-page__grid {
		grid-template-columns: 1fr;
	}

	.program-toolbar {
		gap: 32px;
	}

	.program-day__header {
		padding: 22px 24px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.program-day__header h3 {
		font-size: 2.4rem;
	}

	.directory-row {
		grid-template-columns: 105px minmax(0, 1fr) auto;
	}

	.program-artwork__grid,
	.roster-poster__grid {
		gap: 70px;
	}

	.poster-frame {
		width: min(82%, 500px);
		margin-inline: auto;
	}

	.program-poster-callout .poster-viewer {
		width: min(82%, 500px);
		justify-self: center;
	}

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

	.teacher-card--directory:nth-child(3n + 2) {
		padding-top: 0;
	}

	.teacher-card--directory:nth-child(even) {
		padding-top: 34px;
	}

	.faculty-note {
		grid-template-columns: 1fr;
	}

	.faculty-note small {
		grid-column: auto;
	}

	.page-hero--teachers .page-hero__media {
		left: 24%;
	}

	.believe-hero {
		min-height: 850px;
		align-items: end;
	}

	.believe-hero__inner {
		align-content: end;
		gap: 0;
		padding-bottom: 64px;
	}

	.believe-hero__mark {
		width: min(450px, 84vw);
		margin-bottom: -15px;
	}

	.believe-hero__copy h1 {
		font-size: clamp(5rem, 25vw, 9rem);
	}

	.believe-hero__wash {
		background: linear-gradient(0deg, rgba(5, 6, 8, 0.99), rgba(5, 6, 8, 0.72) 55%, rgba(5, 6, 8, 0.16));
	}

	.believe-intro__grid {
		gap: 38px;
	}

	.believe-gallery__grid {
		grid-template-columns: 1.2fr 0.8fr;
	}

	.believe-gallery figure:nth-child(3) {
		grid-column: 1 / -1;
		width: 70%;
		margin: -40px auto 0;
	}

	.believe-gallery img,
	.believe-gallery figure:nth-child(2) img,
	.believe-gallery figure:nth-child(3) img {
		height: 480px;
	}

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

	.amenity-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.booking-request__intro {
		position: static;
	}

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

@media (max-width: 540px) {
	.program-poster-callout {
		padding: 24px 18px 34px;
	}

	.program-poster-callout .poster-viewer,
	.poster-frame {
		width: 94%;
	}

	.poster-trigger__hint {
		right: 9px;
		bottom: 9px;
	}

	.poster-lightbox {
		width: 100vw;
		height: 100dvh;
		border: 0;
	}

	.poster-lightbox__toolbar {
		padding-inline: 12px;
	}

	.poster-lightbox__toolbar p {
		font-size: 0.56rem;
	}

	.poster-lightbox__image {
		padding: 10px;
	}

	.poster-lightbox__help {
		padding-inline: 12px;
		font-size: 0.55rem;
	}

	.directory-row {
		grid-template-columns: 1fr auto;
		gap: 7px 12px;
	}

	.directory-row time {
		grid-column: 1 / -1;
	}

	.directory-row > a {
		grid-column: 2;
		grid-row: 2;
	}

	.program-day__list {
		padding-inline: 18px;
	}

	.teacher-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.teacher-card--directory,
	.teacher-card--directory:nth-child(even) {
		padding-top: 0;
	}

	.believe-facts,
	.amenity-strip,
	.post-grid {
		grid-template-columns: 1fr;
	}

	.believe-facts > div {
		min-height: 105px;
	}

	.believe-gallery {
		padding-top: 80px;
	}

	.believe-gallery__grid {
		display: block;
		margin-top: 55px;
	}

	.believe-gallery figure,
	.believe-gallery figure:nth-child(2),
	.believe-gallery figure:nth-child(3) {
		width: 100%;
		margin: 0;
	}

	.believe-gallery img,
	.believe-gallery figure:nth-child(2) img,
	.believe-gallery figure:nth-child(3) img {
		height: auto;
		aspect-ratio: 4 / 3;
	}

	.form-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.booking-request__form,
	.contact-form-wrap {
		padding: 24px 20px;
		box-shadow: 8px 8px 0 var(--red);
	}

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

	.floor-card {
		min-height: 0;
	}

	.floor-card h3 {
		margin-top: 48px;
	}
}

@media (max-width: 782px) {
	#wpadminbar {
		position: fixed;
	}

	.admin-bar .site-header,
	.admin-bar .site-nav {
		top: 46px;
	}

	body.admin-bar #main-content [id] {
		scroll-margin-top: 146px;
	}

	html:not(.js) body.admin-bar .site-header {
		top: 0;
	}
}

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

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

@media print {
	.site-header,
	.site-footer,
	.mobile-booking,
	.hero__scroll,
	.button,
	.text-link {
		display: none !important;
	}

	body {
		padding: 0;
		background: #fff;
		color: #000;
	}

	.section,
	.page-hero,
	.entry-content {
		padding: 24px 0;
		background: #fff !important;
		color: #000 !important;
	}
}

/* Brand mark, BELIEVE archive, and closing inquiry */
.brand__mark {
	display: block;
	width: auto;
	max-width: 152px;
	height: 52px;
	object-fit: contain;
}

.brand--footer .brand__mark {
	max-width: 188px;
	height: auto;
}

.believe-camp-gallery {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 88% 10%, rgba(177, 138, 56, 0.2), transparent 28rem),
		linear-gradient(150deg, #08090c 0%, #111318 58%, #090a0d 100%);
	color: #fff;
}

.believe-camp-gallery::before {
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(115deg, transparent 0 46px, rgba(255, 255, 255, 0.018) 46px 47px);
	content: "";
	pointer-events: none;
}

.believe-camp-gallery .section-heading,
.story-gallery--believe {
	position: relative;
	z-index: 1;
}

.believe-camp-gallery .section-heading > p {
	color: rgba(255, 255, 255, 0.7);
}

.story-gallery--believe {
	margin-top: 38px;
	box-shadow: 18px 18px 0 #b18a38;
}

.home-inquiry {
	background: #08090c;
	color: #fff;
}

.home-inquiry__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
	gap: clamp(28px, 5vw, 72px);
	align-items: stretch;
}

.home-inquiry__brand {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: clamp(32px, 5vw, 64px);
	border: 1px solid rgba(255, 255, 255, 0.14);
	background:
		radial-gradient(circle at 70% 16%, rgba(177, 138, 56, 0.19), transparent 17rem),
		#12151a;
	box-shadow: 16px 16px 0 #b18a38;
}

.home-inquiry__brand > img {
	align-self: center;
	display: block;
	width: min(100%, 300px);
	height: auto;
	margin: -30px auto 78px;
}

.home-inquiry__logo-panel {
	display: flex;
	align-self: stretch;
	justify-content: center;
	margin: -30px 0 78px;
}

.home-inquiry__logo-panel img {
	display: block;
	width: min(100%, 300px);
	height: auto;
}

.home-inquiry__brand h2 {
	margin: 16px 0 20px;
	color: #fff;
}

.home-inquiry__brand > p:not(.case-tag) {
	color: rgba(255, 255, 255, 0.72);
}

/* Keep all intended light copy fully white on dark WordPress surfaces. */
.hero__lead,
.section:not(.section--paper) .section-heading--split > p,
.schedule__tabs button,
.faculty-preview--casefile,
.teacher-card__placeholder,
.teacher-card__meta p,
.believe-feature__copy > p:not(.case-tag),
.site-footer,
.page-hero__lead,
.class-search input::placeholder,
.poster-frame figcaption,
.teacher-card__bio,
.believe-hero__copy > p:not(.case-tag),
.booking-request__intro > p:not(.eyebrow),
.field > label,
.field > span,
.post-card > p:not(.eyebrow),
.believe-camp-gallery .section-heading > p,
.home-inquiry__brand > p:not(.case-tag) {
	color: #fff;
}

.home-inquiry__brand > a {
	margin-top: 18px;
	color: var(--yellow);
	font-weight: 800;
	overflow-wrap: anywhere;
}

.home-inquiry__form .contact-form-wrap {
	height: 100%;
	margin: 0;
}

@media (max-width: 900px) {
	.home-inquiry__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.brand__mark {
		max-width: 118px;
		height: 42px;
	}

	.story-gallery--believe {
		box-shadow: 9px 9px 0 #b18a38;
	}

	.home-inquiry__brand {
		padding: 28px 22px;
		box-shadow: 9px 9px 0 #b18a38;
	}
}

/* Stable off-canvas navigation across the homepage and every inner template. */
@media (max-width: 1120px) {
	.site-nav {
		top: 0;
		bottom: 0;
		z-index: 1001;
		max-height: 100dvh;
		overflow-y: auto;
		color: #fff;
	}

	.site-nav__list,
	.site-nav__list ul {
		margin: 0;
		padding-left: 0;
		list-style: none;
	}

	.site-nav__list a {
		color: #fff !important;
	}

	.site-nav .site-nav__cta {
		color: var(--ink) !important;
	}

	.site-nav__list .sub-menu {
		margin: 0 0 10px 4px;
		padding: 2px 0 4px 18px;
		border-left: 2px solid var(--red);
	}

	.site-nav__list .sub-menu li {
		border-bottom: 0;
	}

	.site-nav__list .sub-menu a {
		padding: 8px 0;
		font-size: 1.05rem;
	}

	.nav-toggle {
		position: relative;
		z-index: 1002;
	}

	body.nav-open {
		overflow: hidden;
	}

	body.nav-open .site-header {
		height: var(--header-height) !important;
		border-color: var(--line);
		background: #0c0d10;
		backdrop-filter: none;
	}
}

/* On phones the studio lockup sits between the round mark and social icons. */
@media (max-width: 800px) {
	.site-header__inner {
		justify-content: flex-start;
		gap: clamp(3px, 1.2vw, 9px);
	}

	.brand,
	.brand--custom {
		order: 1;
		width: 46px;
		min-width: 46px;
		min-height: 42px;
		flex: 0 0 46px;
	}

	.brand__mark,
	.brand--custom img {
		display: block;
		width: 46px;
		max-width: 46px;
		height: 46px;
		object-fit: contain;
	}

	.header__studio-lockup {
		position: static;
		order: 2;
		width: min(31vw, 126px);
		height: 38px;
		flex: 0 1 126px;
		margin: 0;
		transform: none;
	}

	.header-social {
		order: 3;
		flex: 0 0 auto;
		gap: 2px;
		margin: 0;
	}

	.header-social__link {
		width: 23px;
		height: 32px;
	}

	.nav-toggle {
		order: 4;
		min-width: 42px;
		min-height: 42px;
		margin-left: auto;
		padding-inline: 8px;
	}

	.site-nav {
		order: 5;
	}
}

.teacher-swap__controls {
	display: none;
}

@media (max-width: 800px) {
	.teacher-grid--home.is-mobile-swap {
		display: block;
	}

	.teacher-grid--home.is-mobile-swap .teacher-card {
		width: min(100%, 430px);
		margin-inline: auto;
		padding-top: 0;
	}

	.teacher-grid--home.is-mobile-swap .teacher-card.is-swap-active {
		animation: teacher-swap-in 360ms cubic-bezier(0.22, 1, 0.36, 1);
	}

	.teacher-grid--home.is-mobile-swap .teacher-swap__controls {
		display: flex;
		width: min(100%, 430px);
		align-items: center;
		justify-content: space-between;
		gap: 18px;
		margin: 24px auto 0;
		padding-top: 18px;
		border-top: 1px solid rgba(210, 154, 66, 0.55);
	}

	.teacher-swap__controls button {
		display: grid;
		width: 48px;
		height: 48px;
		border: 1px solid #d29a42;
		background: transparent;
		color: #fff;
		font-size: 1.25rem;
		place-items: center;
		cursor: pointer;
	}

	.teacher-swap__status {
		margin: 0;
		color: #fff;
		font-family: var(--mono);
		font-size: 0.72rem;
		font-weight: 800;
		letter-spacing: 0.14em;
	}
}

.booking-studio-gallery {
	width: min(100%, 980px);
	margin: 0 auto clamp(70px, 9vw, 120px);
}

.studio-swap__controls {
	display: none;
}

/* The studio photos use the same compact swap gallery on every screen. */
.studio-space-gallery.is-mobile-swap {
	display: block;
	width: min(100%, 640px);
	margin: 12px auto 34px;
	transform: none;
}

.studio-space-gallery.is-mobile-swap::before {
	inset: 12px -12px -12px 12px;
}

.studio-space-gallery.is-mobile-swap .studio-gallery__item {
	width: 100%;
	min-height: 0;
	aspect-ratio: 4 / 5;
}

.studio-space-gallery.is-mobile-swap .studio-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.studio-space-gallery.is-mobile-swap .studio-gallery__item.is-swap-active {
	animation: teacher-swap-in 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-space-gallery.is-mobile-swap .evidence-label {
	top: 12px;
	right: 12px;
	bottom: auto;
}

.studio-space-gallery.is-mobile-swap .studio-swap__controls {
	position: absolute;
	right: 14px;
	bottom: 14px;
	left: 14px;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.studio-swap__controls button {
	display: grid;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.8);
	background: rgba(8, 9, 11, 0.84);
	color: #fff;
	font-size: 1.2rem;
	place-items: center;
	cursor: pointer;
}

.studio-swap__status {
	margin: 0;
	padding: 8px 11px 7px;
	background: rgba(8, 9, 11, 0.84);
	color: #fff;
	font-family: var(--mono);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

@media (max-width: 800px) {
	.space-grid > .space-grid__copy {
		grid-column: 1;
		grid-row: 1;
	}

	.space-grid > .space-grid__gallery {
		grid-column: 1;
		grid-row: 2;
	}

	.space-grid__booking-cta {
		grid-column: 1;
		grid-row: 3;
		margin-top: 0;
	}

	.studio-space-gallery.is-mobile-swap {
		display: block;
		width: min(100%, 460px);
		margin: 12px auto 34px;
		transform: none;
	}

	.studio-space-gallery.is-mobile-swap::before {
		inset: 10px -10px -10px 10px;
	}

	.studio-space-gallery.is-mobile-swap .studio-gallery__item {
		width: 100%;
		min-height: 0;
		aspect-ratio: 4 / 5;
	}

	.studio-space-gallery.is-mobile-swap .studio-gallery__item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.studio-space-gallery.is-mobile-swap .studio-gallery__item.is-swap-active {
		animation: teacher-swap-in 360ms cubic-bezier(0.22, 1, 0.36, 1);
	}

	.studio-space-gallery.is-mobile-swap .evidence-label {
		top: 12px;
		right: 12px;
		bottom: auto;
	}

	.studio-space-gallery.is-mobile-swap .studio-swap__controls {
		position: absolute;
		right: 14px;
		bottom: 14px;
		left: 14px;
		z-index: 3;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
	}

	.studio-swap__controls button {
		display: grid;
		width: 46px;
		height: 46px;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.8);
		background: rgba(8, 9, 11, 0.84);
		color: #fff;
		font-size: 1.2rem;
		place-items: center;
		cursor: pointer;
	}

	.studio-swap__status {
		margin: 0;
		padding: 8px 11px 7px;
		background: rgba(8, 9, 11, 0.84);
		color: #fff;
		font-family: var(--mono);
		font-size: 0.7rem;
		font-weight: 800;
		letter-spacing: 0.12em;
	}
}

@keyframes teacher-swap-in {
	from {
		opacity: 0;
		transform: translateX(18px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.teacher-grid--home.is-mobile-swap .teacher-card.is-swap-active,
	.studio-space-gallery.is-mobile-swap .studio-gallery__item.is-swap-active {
		animation: none;
	}
}

/* One deterministic phone header for every WordPress page template. */
@media (max-width: 800px) {
	.site-header,
	.site-header.is-scrolled,
	body.home .site-header,
	body:not(.umove-front-page) .site-header {
		height: 72px !important;
	}

	.site-header__inner {
		display: grid !important;
		grid-template-columns: 46px minmax(82px, 126px) minmax(69px, 1fr) 42px;
		align-items: center;
		justify-content: stretch;
		gap: clamp(3px, 1.2vw, 9px);
	}

	.site-header .brand,
	.site-header .brand--custom {
		grid-column: 1;
		width: 46px;
		min-width: 46px;
		max-width: 46px;
		margin: 0;
	}

	.site-header .header__studio-lockup {
		position: static !important;
		grid-column: 2;
		width: 100%;
		min-width: 0;
		max-width: 126px;
		height: 38px;
		margin: 0;
		transform: none !important;
	}

	.site-header .header-social {
		grid-column: 3;
		justify-self: start;
		margin: 0;
	}

	.site-header .nav-toggle {
		grid-column: 4;
		justify-self: end;
		margin: 0;
	}

	.site-header .nav-toggle__label {
		display: none;
	}

	.site-header .site-nav {
		position: fixed !important;
		top: 0;
		right: 0;
		bottom: auto;
		left: 0;
		width: 100vw;
		height: 100dvh;
		max-height: 100dvh;
		padding: calc(var(--header-height) + 36px) 7vw 38px;
	}

body.admin-bar .site-header .site-nav {
		top: 46px;
		height: calc(100dvh - 46px);
		max-height: calc(100dvh - 46px);
	}
}

@media (max-width: 800px) {
	.believe-intro__poster {
		width: min(100%, 540px);
		margin-inline: auto;
		transform: none;
	}

	.believe-reel__grid {
		grid-template-columns: 1fr;
	}

	.believe-reel__copy {
		max-width: 620px;
	}

	.camp-booking__copy {
		position: static;
	}

	.believe-payment-step {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 540px) {
	.believe-reel__embed {
		padding: 6px;
	}

	.believe-booking-form {
		padding: 24px 18px 30px;
		box-shadow: 8px 8px 0 #182275;
	}

	.believe-payment-step {
		padding: 20px;
	}
}
