:root {
	--blue-950: #031d3b;
	--blue-900: #05284f;
	--blue-800: #073b74;
	--blue-700: #0b4f91;
	--blue-500: #4d97c7;
	--sky-200: #dceefa;
	--sky-100: #edf6fc;
	--mist: #f4f7fa;
	--white: #fff;
	--ink: #17263a;
	--muted: #627186;
	--line: #dfe7ef;
	--gold: #c7a24d;
	--gold-light: #e7d39b;
	--danger: #a52c37;
	--success: #1f7151;
	--font: "Aptos", "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	--shadow-sm: 0 10px 35px rgba(5, 40, 79, 0.08);
	--shadow-lg: 0 25px 70px rgba(3, 29, 59, 0.15);
	--radius-sm: 0.75rem;
	--radius: 1.25rem;
	--radius-lg: 2rem;
	--container: 75rem;
	--header-height: 5.25rem;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: var(--font);
	font-size: 1rem;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.nav-open,
body.lightbox-open {
	overflow: hidden;
}

img,
svg {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

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

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

a {
	color: var(--blue-800);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
}

a:hover {
	color: var(--blue-700);
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.75em;
	color: var(--blue-900);
	font-weight: 760;
	letter-spacing: -0.03em;
	line-height: 1.12;
	text-wrap: balance;
}

h1 {
	font-size: clamp(2.75rem, 7vw, 5.75rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
	margin: 0 0 1.25rem;
}

::selection {
	background: var(--gold-light);
	color: var(--blue-950);
}

:focus-visible {
	border-radius: 0.2rem;
	outline: 3px solid var(--gold);
	outline-offset: 4px;
}

.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 {
	z-index: 100000;
	top: 0.75rem;
	left: 0.75rem;
	width: auto;
	height: auto;
	padding: 0.8rem 1rem;
	clip: auto;
	background: var(--white);
	color: var(--blue-900);
	font-weight: 700;
}

.container {
	width: min(calc(100% - 2.5rem), var(--container));
	margin-inline: auto;
}

.container--content {
	max-width: 48rem;
}

.section {
	padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section--mist {
	background: var(--mist);
}

.section--sky {
	background: var(--sky-100);
}

.site-main {
	min-height: 60vh;
}

.eyebrow {
	margin: 0 0 1rem;
	color: var(--blue-700);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.4;
	text-transform: uppercase;
}

.eyebrow--light {
	color: var(--sky-200);
}

.eyebrow--gold {
	color: var(--gold-light);
}

.lead {
	color: #44566c;
	font-size: clamp(1.1rem, 2vw, 1.32rem);
	line-height: 1.75;
}

.icon {
	flex: 0 0 auto;
}

.button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.25rem;
	padding: 0.76rem 1.35rem;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--blue-800);
	color: var(--white);
	font-weight: 750;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button .icon {
	width: 1.15rem;
	height: 1.15rem;
	margin-left: 0.6rem;
	transition: transform 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
	background: var(--blue-700);
	box-shadow: 0 8px 24px rgba(5, 40, 79, 0.18);
	color: var(--white);
}

.button:hover .icon,
.text-link:hover .icon {
	transform: translateX(0.2rem);
}

.button--small {
	min-height: 2.6rem;
	padding: 0.58rem 1rem;
	font-size: 0.9rem;
}

.button--white {
	background: var(--white);
	color: var(--blue-900);
}

.button--white:hover {
	background: var(--sky-100);
	color: var(--blue-900);
}

.button--ghost-light {
	border-color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	backdrop-filter: blur(10px);
}

.button--ghost-light:hover {
	border-color: var(--white);
	background: rgba(255, 255, 255, 0.17);
}

.button--quiet {
	border-color: var(--line);
	background: var(--white);
	color: var(--blue-900);
	box-shadow: none;
}

.button--quiet:hover {
	border-color: var(--blue-500);
	background: var(--sky-100);
	color: var(--blue-900);
	box-shadow: none;
}

.button--gold {
	background: var(--gold);
	color: var(--blue-950);
}

.button--gold:hover {
	background: #d3b45e;
	color: var(--blue-950);
}

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

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--blue-800);
	font-weight: 760;
	text-decoration: none;
}

.text-link .icon {
	width: 1.15rem;
	height: 1.15rem;
	transition: transform 180ms ease;
}

.text-link--large {
	font-size: 1.05rem;
}

.section-heading {
	max-width: 50rem;
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-heading h2 {
	margin-bottom: 0;
}

.section-heading-row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-heading-row .section-heading {
	margin-bottom: 0;
}

.section-heading-row > .text-link {
	margin-bottom: 0.6rem;
	white-space: nowrap;
}

.has-js .reveal {
	opacity: 0;
	transform: translateY(1.25rem);
	transition: opacity 600ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

/* Header */
.site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	height: var(--header-height);
	border-bottom: 1px solid transparent;
	background: rgba(255, 255, 255, 0.96);
	transition: box-shadow 200ms ease, border-color 200ms ease;
}

@supports (backdrop-filter: blur(15px)) {
	.site-header {
		background: rgba(255, 255, 255, 0.88);
		backdrop-filter: saturate(140%) blur(18px);
	}
}

.site-header.is-scrolled {
	border-color: rgba(5, 40, 79, 0.08);
	box-shadow: 0 10px 35px rgba(5, 40, 79, 0.07);
}

.site-header__inner {
	display: flex;
	align-items: center;
	height: 100%;
}

.brand {
	display: inline-flex;
	align-items: center;
	min-width: 15rem;
	gap: 0.75rem;
	color: var(--blue-900);
	text-decoration: none;
}

.brand:hover {
	color: var(--blue-900);
}

.brand__logo,
.brand__logo img {
	width: 3.35rem;
	height: 3.35rem;
	flex: 0 0 3.35rem;
}

.brand__logo img {
	object-fit: contain;
}

.brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.brand__text strong {
	font-size: 0.95rem;
	letter-spacing: -0.01em;
}

.brand__text small {
	margin-top: 0.25rem;
	color: var(--muted);
	font-size: 0.72rem;
}

.primary-nav {
	margin-inline: auto;
}

.primary-nav__menu,
.primary-nav__menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav__menu {
	display: flex;
	align-items: center;
	gap: clamp(0.55rem, 1.5vw, 1.35rem);
}

.primary-nav__menu > li {
	position: relative;
}

.primary-nav__menu a {
	display: block;
	padding-block: 1rem;
	color: var(--ink);
	font-size: 0.89rem;
	font-weight: 690;
	text-decoration: none;
	white-space: nowrap;
}

.primary-nav__menu > li > a::after {
	position: absolute;
	right: 0;
	bottom: 0.7rem;
	left: 0;
	width: 0;
	height: 2px;
	margin: auto;
	background: var(--gold);
	content: "";
	transition: width 180ms ease;
}

.primary-nav__menu > li:hover > a::after,
.primary-nav__menu > .current-menu-item > a::after,
.primary-nav__menu > .current-menu-ancestor > a::after {
	width: 100%;
}

.primary-nav__menu ul {
	position: absolute;
	top: calc(100% - 0.35rem);
	left: -1rem;
	display: none;
	min-width: 14rem;
	padding: 0.55rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--white);
	box-shadow: var(--shadow-lg);
}

.primary-nav__menu li:hover > ul,
.primary-nav__menu li:focus-within > ul {
	display: block;
}

.primary-nav__menu ul a {
	padding: 0.7rem 0.8rem;
	border-radius: 0.5rem;
}

.primary-nav__menu ul a:hover {
	background: var(--mist);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.language-switcher {
	display: flex;
	align-items: center;
	padding: 0.2rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
}

.language-switcher a {
	display: grid;
	width: 2rem;
	height: 1.8rem;
	place-items: center;
	border-radius: 999px;
	color: var(--muted);
	font-size: 0.69rem;
	font-weight: 800;
	text-decoration: none;
}

.language-switcher a.is-active {
	background: var(--blue-900);
	color: var(--white);
}

.menu-toggle {
	display: none;
	width: 2.8rem;
	height: 2.8rem;
	padding: 0.65rem;
	border: 0;
	border-radius: 50%;
	background: var(--blue-900);
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	margin: 0.25rem 0;
	background: var(--white);
	transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
	transform: translateY(6px) rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] span:last-child {
	transform: translateY(-6px) rotate(-45deg);
}

/* Home hero */
.home-hero {
	position: relative;
	min-height: min(47rem, calc(100svh - var(--header-height)));
	overflow: hidden;
	background: var(--blue-950);
	color: var(--white);
}

.home-hero__media,
.home-hero__shade {
	position: absolute;
	inset: 0;
}

.home-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero__shade {
	background:
		linear-gradient(90deg, rgba(3, 29, 59, 0.94) 0%, rgba(3, 29, 59, 0.68) 46%, rgba(3, 29, 59, 0.15) 78%),
		linear-gradient(0deg, rgba(3, 29, 59, 0.45), transparent 45%);
}

.home-hero__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: min(47rem, calc(100svh - var(--header-height)));
	padding-block: 5rem;
	gap: 3rem;
}

.home-hero__copy {
	max-width: 51rem;
	animation: hero-in 700ms 120ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-hero h1 {
	max-width: 48rem;
	margin-bottom: 1.35rem;
	color: var(--white);
	font-size: clamp(3.25rem, 7.6vw, 6.5rem);
	letter-spacing: -0.055em;
}

.home-hero__lead {
	max-width: 43rem;
	margin-bottom: 2.1rem;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(1.1rem, 2vw, 1.38rem);
	line-height: 1.65;
}

.next-event-card {
	position: absolute;
	right: 0;
	bottom: 2.5rem;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	width: min(29rem, 42vw);
	padding: 1rem 1.1rem;
	gap: 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.13);
	color: var(--white);
	text-decoration: none;
	backdrop-filter: blur(16px);
	animation: hero-in 700ms 320ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.next-event-card:hover {
	background: rgba(255, 255, 255, 0.2);
	color: var(--white);
}

.next-event-card__icon {
	display: grid;
	width: 3.1rem;
	height: 3.1rem;
	place-items: center;
	border-radius: 50%;
	background: var(--gold);
	color: var(--blue-950);
}

.next-event-card__icon .icon {
	width: 1.35rem;
	height: 1.35rem;
}

.next-event-card small,
.next-event-card strong {
	display: block;
}

.next-event-card small {
	margin-bottom: 0.2rem;
	color: var(--sky-200);
	font-size: 0.72rem;
	font-weight: 760;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.next-event-card strong {
	overflow: hidden;
	font-size: 0.95rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.next-event-card > .icon {
	width: 1.2rem;
}

@keyframes hero-in {
	from { opacity: 0; transform: translateY(1.5rem); }
	to { opacity: 1; transform: none; }
}

.stat-bar {
	position: relative;
	z-index: 2;
	background: var(--white);
	box-shadow: 0 12px 40px rgba(5, 40, 79, 0.08);
}

.stat-bar__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.stat-bar__grid > div {
	display: flex;
	align-items: baseline;
	justify-content: center;
	padding: 1.65rem 2rem;
	gap: 0.75rem;
	border-right: 1px solid var(--line);
}

.stat-bar__grid > div:last-child {
	border-right: 0;
}

.stat-bar strong {
	color: var(--blue-900);
	font-size: clamp(1.65rem, 3vw, 2.35rem);
	letter-spacing: -0.04em;
}

.stat-bar span {
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 650;
}

/* Welcome */
.welcome-grid,
.about-intro-grid,
.dance-intro-grid,
.membership-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: center;
	gap: clamp(3rem, 8vw, 7rem);
}

.welcome-visual,
.about-intro__visual,
.membership-intro__visual {
	position: relative;
}

.welcome-visual__main,
.about-intro__visual > img,
.membership-intro__visual > img {
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

.welcome-visual__main img,
.about-intro__visual > img,
.membership-intro__visual > img {
	width: 100%;
	aspect-ratio: 1.15;
	object-fit: cover;
}

.welcome-slider {
	position: relative;
	isolation: isolate;
	aspect-ratio: 1.15;
	background: var(--sky-200);
}

.welcome-slider__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: scale(1.035);
	transition: opacity 850ms ease, transform 1600ms ease;
}

.welcome-slider__slide.is-active {
	z-index: 1;
	opacity: 1;
	transform: scale(1);
}

.welcome-visual__seal,
.floating-stat,
.membership-intro__visual > div {
	position: absolute;
	right: -1.5rem;
	bottom: -1.5rem;
	display: grid;
	width: 9rem;
	height: 9rem;
	place-content: center;
	padding: 1rem;
	border: 0.45rem solid var(--white);
	border-radius: 50%;
	background: var(--gold);
	color: var(--blue-950);
	text-align: center;
	box-shadow: var(--shadow-sm);
}

.welcome-visual__seal strong,
.floating-stat strong,
.membership-intro__visual strong {
	font-size: 2.3rem;
	letter-spacing: -0.05em;
	line-height: 1;
}

.welcome-visual__seal span,
.floating-stat span,
.membership-intro__visual span {
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.25;
	text-transform: uppercase;
}

.welcome-copy h2 {
	max-width: 39rem;
}

.home-extra-content {
	padding-top: 5rem;
}

/* Cards */
.card-grid {
	display: grid;
	gap: 1.5rem;
}

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

.event-card,
.news-card,
.album-card,
.person-card {
	overflow: hidden;
	border: 1px solid rgba(5, 40, 79, 0.08);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-sm);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.event-card:hover,
.news-card:hover,
.album-card:hover,
.person-card:hover {
	transform: translateY(-0.35rem);
	box-shadow: var(--shadow-lg);
}

.event-card__image,
.news-card__image,
.album-card__image {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: var(--sky-200);
}

.event-card__photo,
.news-card__photo,
.album-card__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.event-card:hover .event-card__photo,
.news-card:hover .news-card__photo,
.album-card:hover .album-card__photo {
	transform: scale(1.035);
}

.event-card__date {
	position: absolute;
	top: 1rem;
	left: 1rem;
	display: grid;
	width: 4.1rem;
	height: 4.4rem;
	place-content: center;
	border-radius: 0.8rem;
	background: var(--white);
	color: var(--blue-900);
	text-align: center;
	box-shadow: 0 10px 30px rgba(3, 29, 59, 0.2);
}

.event-card--no-image .event-card__body {
	position: relative;
	min-height: 100%;
	padding-top: 1.6rem;
}

.event-card__date--inline {
	position: static;
	float: right;
	width: 3.6rem;
	height: 3.8rem;
	margin: 0 0 0.85rem 1rem;
	background: var(--sky-200);
	box-shadow: none;
}

.event-card__date--inline + .event-card__meta {
	padding-top: 0.15rem;
}

.event-card__date strong,
.event-card__date span {
	display: block;
	line-height: 1;
}

.event-card__date strong {
	font-size: 1.65rem;
	letter-spacing: -0.04em;
}

.event-card__date span {
	margin-top: 0.25rem;
	color: var(--blue-700);
	font-size: 0.65rem;
	font-weight: 800;
	text-transform: uppercase;
}

.event-card__body,
.news-card__body,
.album-card__body,
.person-card__body {
	padding: 1.45rem;
}

.event-card__body h3,
.news-card__body h3,
.album-card__body h3,
.person-card__body h3 {
	margin-bottom: 0.65rem;
}

.event-card__body h3 a,
.news-card__body h3 a,
.album-card__body h3 a {
	color: inherit;
	text-decoration: none;
}

.event-card__meta,
.event-card__venue,
.news-card__meta {
	display: flex;
	align-items: center;
	margin-bottom: 0.75rem;
	gap: 0.4rem;
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 650;
}

.event-card__meta .icon,
.event-card__venue .icon {
	width: 1rem;
	height: 1rem;
	color: var(--blue-700);
}

.event-card__excerpt,
.news-card__body > p:not(.news-card__meta),
.album-card__body > p:not(.eyebrow),
.person-card__body > p:not(.eyebrow) {
	color: var(--muted);
	font-size: 0.92rem;
}

.news-card__meta {
	flex-wrap: wrap;
}

.card-grid--past .event-card {
	box-shadow: none;
}

.card-grid--past .event-card__photo {
	filter: saturate(0.55);
}

.empty-state {
	display: grid;
	min-height: 14rem;
	place-items: center;
	padding: 2.5rem;
	border: 1px dashed #b8c9d9;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.55);
	color: var(--muted);
	text-align: center;
}

.empty-state > span {
	display: grid;
	width: 4rem;
	height: 4rem;
	place-items: center;
	border-radius: 50%;
	background: var(--sky-200);
	color: var(--blue-800);
}

.empty-state p:last-child {
	margin: 0;
}

/* Dance feature */
.dance-feature {
	overflow: hidden;
	background: var(--blue-900);
	color: var(--white);
}

.dance-feature__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	align-items: center;
	gap: clamp(3rem, 8vw, 7rem);
}

.dance-feature h2 {
	color: var(--white);
}

.dance-feature .lead {
	color: rgba(255, 255, 255, 0.78);
}

.dance-feature__image {
	position: relative;
}

.dance-feature__image img {
	width: 100%;
	aspect-ratio: 960 / 700;
	max-height: 35rem;
	border-radius: var(--radius-lg);
	object-fit: cover;
}

.dance-feature__motif {
	position: absolute;
	right: -2rem;
	bottom: -2.5rem;
	color: rgba(255, 255, 255, 0.12);
	font-size: clamp(2.8rem, 7vw, 6rem);
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1;
}

/* Gallery */
.gallery-preview__grid,
.gallery-preview__placeholders,
.album-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.gallery-placeholder {
	overflow: hidden;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
}

.gallery-placeholder img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.empty-note {
	margin: 1.5rem 0 0;
	color: var(--muted);
	text-align: center;
}

.album-card__overlay {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(3, 29, 59, 0.68);
	color: var(--white);
	opacity: 0;
	transition: opacity 200ms ease;
}

.album-card__overlay span {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 750;
	transform: translateY(0.5rem);
	transition: transform 200ms ease;
}

.album-card:hover .album-card__overlay,
.album-card__image:focus-visible .album-card__overlay {
	opacity: 1;
}

.album-card:hover .album-card__overlay span {
	transform: none;
}

.album-card[hidden],
.event-card[hidden] {
	display: none;
}

.filter-pills {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
	gap: 0.65rem;
}

.filter-pills button {
	padding: 0.65rem 1rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
	color: var(--blue-900);
	cursor: pointer;
	font-size: 0.88rem;
	font-weight: 700;
}

.filter-pills button:hover,
.filter-pills button.is-active {
	border-color: var(--blue-900);
	background: var(--blue-900);
	color: var(--white);
}

/* Sponsors and newsletter */
.sponsors-section__inner {
	display: grid;
	grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1.35fr);
	align-items: center;
	gap: 4rem;
}

.sponsors-section .section-heading {
	margin-bottom: 1.25rem;
}

.sponsors-section__copy > p {
	color: var(--muted);
}

.sponsor-logos {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.9rem;
}

.sponsor-logos > a,
.sponsor-logos > div {
	display: grid;
	min-height: 7rem;
	place-items: center;
	padding: 1rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--white);
	color: var(--muted);
	text-align: center;
	text-decoration: none;
}

.sponsor-logos img {
	max-width: 9rem;
	max-height: 4.5rem;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.78;
	transition: filter 180ms ease, opacity 180ms ease;
}

.sponsor-logos a:hover img {
	filter: none;
	opacity: 1;
}

.sponsor-logos .sponsor-placeholder {
	display: flex;
	grid-column: 1 / -1;
	gap: 0.5rem;
	border-style: dashed;
	color: var(--blue-800);
	font-weight: 750;
}

.newsletter-section {
	padding-block: clamp(3.5rem, 7vw, 5.5rem);
	background: var(--blue-950);
	color: var(--white);
}

.newsletter-section__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 5rem);
}

.newsletter-section h2 {
	color: var(--white);
}

.newsletter-section p:not(.eyebrow) {
	max-width: 35rem;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.73);
}

.evb-newsletter-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.75rem;
}

.evb-newsletter-form > input[type="email"] {
	min-width: 0;
	height: 3.35rem;
	padding: 0 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
}

.evb-newsletter-form > input::placeholder {
	color: rgba(255, 255, 255, 0.62);
}

.evb-newsletter-form .evb-consent {
	grid-column: 1 / -1;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.76rem;
}

/* Interior hero */
.page-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 85% 25%, rgba(77, 151, 199, 0.45), transparent 24rem),
		linear-gradient(135deg, var(--blue-950), var(--blue-800));
	color: var(--white);
}

.page-hero::after {
	position: absolute;
	right: -8rem;
	bottom: -10rem;
	width: 29rem;
	height: 29rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.025), 0 0 0 10rem rgba(255, 255, 255, 0.018);
	content: "";
}

.page-hero__inner {
	position: relative;
	display: flex;
	align-items: end;
	justify-content: space-between;
	min-height: clamp(22rem, 46vw, 34rem);
	padding-block: clamp(4rem, 10vw, 7rem);
}

.page-hero__copy {
	position: relative;
	z-index: 1;
	max-width: 60rem;
}

.page-hero h1 {
	margin: 0;
	color: var(--white);
	font-size: clamp(2.8rem, 7vw, 5.4rem);
}

.page-hero__mark {
	position: absolute;
	right: 1rem;
	bottom: -0.16em;
	color: rgba(255, 255, 255, 0.08);
	font-family: Georgia, serif;
	font-size: clamp(12rem, 30vw, 28rem);
	font-weight: 700;
	line-height: 1;
}

/* Entry content */
.entry-content {
	font-size: 1.08rem;
}

.entry-content > * {
	margin-top: 0;
	margin-bottom: 1.45rem;
}

.entry-content > h2,
.entry-content > h3 {
	margin-top: 2em;
}

.entry-content > h2:first-child,
.entry-content > h3:first-child {
	margin-top: 0;
}

.entry-content a:not(.button) {
	font-weight: 650;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.35rem;
}

.entry-content li {
	margin-bottom: 0.5rem;
}

.entry-content blockquote {
	padding-left: 1.5rem;
	margin-inline: 0;
	border-left: 3px solid var(--gold);
	color: var(--blue-900);
	font-size: 1.2rem;
}

.entry-content .alignwide {
	width: min(75rem, calc(100vw - 2.5rem));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

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

.entry-content .wp-block-gallery {
	gap: 0.8rem !important;
}

.entry-content .wp-block-gallery img,
.entry-content .wp-block-image img {
	border-radius: var(--radius-sm);
}

.notice-placeholder {
	padding: 1rem 1.2rem;
	border-left: 4px solid var(--gold);
	background: #fff7dd;
	color: #564616;
}

/* About */
.about-intro__content .entry-content {
	max-width: 38rem;
}

.feature-pair {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.feature-panel {
	position: relative;
	min-height: 22rem;
	padding: clamp(2rem, 5vw, 3.5rem);
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.feature-panel--blue {
	background: var(--blue-900);
	color: var(--white);
}

.feature-panel--blue h2 {
	color: var(--white);
}

.feature-panel p {
	max-width: 32rem;
	font-size: 1.08rem;
}

.feature-panel--blue p {
	color: rgba(255, 255, 255, 0.76);
}

.feature-panel__number {
	position: absolute;
	right: 1.5rem;
	bottom: -0.18em;
	color: rgba(5, 40, 79, 0.06);
	font-size: 10rem;
	font-weight: 850;
	line-height: 1;
}

.feature-panel--blue .feature-panel__number {
	color: rgba(255, 255, 255, 0.07);
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.1rem;
}

.value-card {
	min-height: 17rem;
	padding: 1.75rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
}

.value-card > span {
	display: block;
	margin-bottom: 3.5rem;
	color: var(--gold);
	font-size: 0.75rem;
	font-weight: 800;
}

.value-card p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 0.92rem;
}

.member-banner {
	padding-block: clamp(3rem, 7vw, 5rem);
	background: var(--blue-900);
}

.member-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.member-banner h2 {
	max-width: 47rem;
	margin-bottom: 0;
	color: var(--white);
}

/* Timeline */
.history-intro .entry-content {
	font-size: 1.2rem;
	text-align: center;
}

.timeline {
	position: relative;
	max-width: 62rem;
	margin-inline: auto;
}

.timeline::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 8.6rem;
	width: 2px;
	background: linear-gradient(var(--gold), var(--blue-500));
	content: "";
}

.timeline-item {
	position: relative;
	display: grid;
	grid-template-columns: 7rem 2rem minmax(0, 1fr);
	align-items: start;
	padding-bottom: 3rem;
	gap: 0.6rem;
}

.timeline-item:last-child {
	padding-bottom: 0;
}

.timeline-item__year {
	padding-top: 1.3rem;
	color: var(--blue-900);
	font-size: 1.25rem;
	font-weight: 800;
	text-align: right;
}

.timeline-item__marker {
	position: relative;
	display: grid;
	height: 4rem;
	place-items: center;
}

.timeline-item__marker span {
	position: relative;
	z-index: 1;
	width: 1rem;
	height: 1rem;
	border: 0.22rem solid var(--white);
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 0 1px var(--gold);
}

.timeline-item__card {
	position: relative;
	padding: 2rem 2.2rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.timeline-item__card h2 {
	font-size: clamp(1.45rem, 3vw, 2rem);
}

.timeline-item__card .entry-content {
	color: var(--muted);
	font-size: 1rem;
}

.timeline-item__card .entry-content > *:last-child {
	margin-bottom: 0;
}

.timeline-item__index {
	position: absolute;
	top: 1rem;
	right: 1.2rem;
	color: #d7e1ea;
	font-size: 0.72rem;
	font-weight: 800;
}

/* People */
.board-intro {
	margin: 0 auto 4rem;
	text-align: center;
}

.person-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.person-card__image {
	overflow: hidden;
	aspect-ratio: 5 / 6;
	background: var(--sky-200);
}

.person-card--no-photo .person-card__body {
	padding-block: 1.75rem;
}

.person-card--no-photo .eyebrow {
	margin-bottom: 0.85rem;
}

.person-card__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.person-card:hover .person-card__photo {
	transform: scale(1.025);
}

.person-card__details {
	padding-top: 1rem;
	margin: 0;
	border-top: 1px solid var(--line);
}

.person-card__details > div {
	margin-bottom: 0.7rem;
}

.person-card__details dt {
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 750;
	text-transform: uppercase;
}

.person-card__details dd {
	margin: 0;
	font-size: 0.9rem;
}

.empty-state--portraits {
	display: block;
}

.empty-state__portraits {
	display: flex;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.empty-state__portraits img {
	width: min(28%, 11rem);
	margin-left: -1rem;
	border: 0.3rem solid var(--white);
	border-radius: 1rem;
	box-shadow: var(--shadow-sm);
}

/* Dance */
.dance-intro__image img {
	width: 100%;
	max-height: 40rem;
	border-radius: var(--radius-lg);
	object-fit: cover;
	box-shadow: var(--shadow-lg);
}

.dance-gallery-content {
	margin-top: 2rem;
}

.dance-gallery-content .entry-content {
	max-width: none;
}

.dance-gallery-content .wp-block-gallery {
	gap: 1rem !important;
}

.dance-gallery-content .wp-block-image,
.dance-gallery-content .wp-block-gallery {
	margin-bottom: 0;
}

.dance-gallery-content .wp-block-image img,
.dance-gallery-content .wp-block-gallery img {
	width: 100%;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-sm);
}

.rehearsal-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	padding: clamp(2rem, 5vw, 3.5rem);
	gap: 2rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--sky-100);
}

.rehearsal-card__icon {
	display: grid;
	width: 5rem;
	height: 5rem;
	place-items: center;
	border-radius: 50%;
	background: var(--blue-900);
	color: var(--white);
	font-size: 2rem;
}

.rehearsal-card h2 {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.rehearsal-card p:last-child {
	margin-bottom: 0;
	color: var(--muted);
}

/* Events */
.events-intro .entry-content,
.gallery-intro .entry-content {
	font-size: 1.18rem;
	text-align: center;
}

.section-heading-row--filter {
	align-items: center;
}

.month-filter {
	display: grid;
	gap: 0.35rem;
}

.month-filter label {
	color: var(--muted);
	font-size: 0.75rem;
	font-weight: 750;
}

.month-filter > div {
	display: flex;
	gap: 0.5rem;
}

.month-filter input {
	min-height: 2.6rem;
	padding: 0.45rem 0.7rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
}

.event-filter-empty {
	padding: 2rem;
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	color: var(--muted);
	text-align: center;
}

/* Membership and contact */
.document-placeholder {
	display: flex;
	align-items: center;
	max-width: 32rem;
	padding: 1rem 1.2rem;
	gap: 0.75rem;
	border: 1px dashed #aebfce;
	border-radius: var(--radius-sm);
	color: var(--muted);
	font-size: 0.9rem;
}

.document-placeholder .icon {
	color: var(--blue-700);
}

.form-layout,
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
	align-items: start;
	gap: clamp(2.5rem, 7vw, 6rem);
}

.form-card {
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.form-card h2 {
	font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.evb-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.evb-field {
	margin-bottom: 1rem;
}

.evb-field label {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--blue-900);
	font-size: 0.86rem;
	font-weight: 720;
}

.evb-field input,
.evb-field select,
.evb-field textarea {
	width: 100%;
	padding: 0.72rem 0.85rem;
	border: 1px solid #c9d5e0;
	border-radius: 0.65rem;
	background: var(--white);
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.evb-field input,
.evb-field select {
	min-height: 3rem;
}

.evb-field textarea {
	resize: vertical;
}

.evb-field input:focus,
.evb-field select:focus,
.evb-field textarea:focus,
.evb-newsletter-form input:focus {
	border-color: var(--blue-500);
	outline: 0;
	box-shadow: 0 0 0 3px rgba(77, 151, 199, 0.22);
}

.evb-consent {
	display: flex;
	align-items: flex-start;
	margin: 0.5rem 0 1.3rem;
	gap: 0.6rem;
	color: var(--muted);
	font-size: 0.78rem;
	line-height: 1.45;
}

.evb-consent input {
	width: 1.05rem;
	height: 1.05rem;
	flex: 0 0 auto;
	margin-top: 0.12rem;
	accent-color: var(--blue-800);
}

.evb-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.evb-form-notice {
	padding: 0.85rem 1rem;
	margin-bottom: 1rem;
	border-radius: var(--radius-sm);
	font-size: 0.88rem;
}

.evb-form-notice--success {
	background: #e6f5ee;
	color: var(--success);
}

.evb-form-notice--error {
	background: #fdecef;
	color: var(--danger);
}

.contact-copy h2 {
	margin-top: 2.5rem;
	font-size: 2rem;
}

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

.contact-cards {
	display: grid;
	gap: 0.8rem;
}

.contact-cards li {
	display: flex;
	align-items: center;
	padding: 1rem;
	gap: 0.85rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--white);
}

.contact-cards li > span {
	display: grid;
	width: 2.75rem;
	height: 2.75rem;
	flex: 0 0 auto;
	place-items: center;
	border-radius: 50%;
	background: var(--sky-200);
	color: var(--blue-800);
}

.contact-cards .icon {
	width: 1.2rem;
	height: 1.2rem;
}

.contact-cards small,
.contact-cards a,
.contact-cards strong {
	display: block;
}

.contact-cards small {
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 700;
}

.contact-cards a {
	color: var(--blue-900);
	font-weight: 720;
	text-decoration: none;
}

.map-section {
	padding-block: 5rem;
	background: var(--mist);
}

.map-section h2 {
	font-size: 2rem;
}

.map-consent {
	overflow: hidden;
	min-height: 27rem;
	border-radius: var(--radius-lg);
	background:
		linear-gradient(rgba(237, 246, 252, 0.9), rgba(220, 238, 250, 0.9)),
		repeating-linear-gradient(45deg, transparent 0 28px, rgba(5, 40, 79, 0.08) 28px 30px);
	box-shadow: var(--shadow-sm);
}

.map-consent__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 27rem;
	padding: 2rem;
	text-align: center;
}

.map-consent__placeholder > span {
	display: grid;
	width: 4.2rem;
	height: 4.2rem;
	place-items: center;
	margin-bottom: 1rem;
	border-radius: 50%;
	background: var(--blue-900);
	color: var(--white);
}

.map-consent__placeholder p {
	max-width: 35rem;
	color: var(--muted);
}

.map-consent__placeholder .text-link {
	margin-top: 1rem;
}

.map-consent iframe {
	display: block;
	width: 100%;
	height: 32rem;
	border: 0;
}

/* News and search */
.news-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 3rem;
	gap: 1.5rem;
}

.site-search {
	display: flex;
	align-items: center;
	width: min(100%, 35rem);
	padding: 0.3rem 0.3rem 0.3rem 0.9rem;
	gap: 0.5rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
}

.site-search > .icon {
	width: 1.15rem;
	color: var(--muted);
}

.site-search input {
	min-width: 0;
	flex: 1;
	border: 0;
	outline: 0;
}

.site-search--wide {
	margin: 0 auto 4rem;
}

.category-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.45rem;
}

.category-links a {
	padding: 0.5rem 0.75rem;
	border-radius: 999px;
	background: var(--mist);
	color: var(--blue-900);
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: none;
}

.navigation.pagination {
	margin-top: 3rem;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 0.4rem;
}

.nav-links .page-numbers {
	display: grid;
	min-width: 2.7rem;
	height: 2.7rem;
	place-items: center;
	padding-inline: 0.7rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
	color: var(--blue-900);
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;
}

.nav-links .current,
.nav-links a:hover {
	border-color: var(--blue-900);
	background: var(--blue-900);
	color: var(--white);
}

.search-results-list {
	max-width: 52rem;
	margin-inline: auto;
}

.search-result {
	padding-block: 2rem;
	border-bottom: 1px solid var(--line);
}

.search-result h2 {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.search-result h2 a {
	color: inherit;
	text-decoration: none;
}

.search-result > p:not(.eyebrow) {
	color: var(--muted);
}

/* Singles */
.single-header {
	padding-block: clamp(4rem, 10vw, 7rem);
	background: var(--sky-100);
	text-align: center;
}

.single-header h1 {
	font-size: clamp(2.6rem, 7vw, 5rem);
}

.single-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	color: var(--muted);
	font-size: 0.84rem;
}

.single-meta span + span::before {
	margin-right: 1rem;
	content: "·";
}

.single-featured-image {
	margin-top: -2.5rem;
}

.single-featured-image img {
	width: 100%;
	max-height: 44rem;
	border-radius: var(--radius-lg);
	object-fit: cover;
	box-shadow: var(--shadow-lg);
}

.single-footer {
	padding-bottom: 5rem;
}

.single-event__header {
	padding-block: clamp(4rem, 9vw, 7rem);
	background: var(--blue-900);
	color: var(--white);
}

.single-event__header-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 3rem;
}

.single-event h1 {
	max-width: 56rem;
	color: var(--white);
	font-size: clamp(2.7rem, 7vw, 5.2rem);
}

.single-event__lead {
	max-width: 45rem;
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.2rem;
}

.single-event__date {
	display: grid;
	width: 9rem;
	height: 9rem;
	place-content: center;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.09);
	text-align: center;
}

.single-event__date strong {
	font-size: 3.5rem;
	letter-spacing: -0.06em;
	line-height: 1;
}

.single-event__date span {
	color: var(--gold-light);
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
}

.single-event__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 20rem;
	align-items: start;
	padding-block: clamp(3.5rem, 8vw, 6rem);
	gap: clamp(2rem, 6vw, 5rem);
}

.single-event__image {
	margin-bottom: 2.5rem;
}

.single-event__image img {
	width: 100%;
	border-radius: var(--radius-lg);
}

.event-facts {
	position: sticky;
	top: calc(var(--header-height) + 1.5rem);
	padding: 1.5rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--mist);
}

.event-facts h2 {
	font-size: 1.45rem;
}

.event-facts dl {
	margin: 0 0 1.5rem;
}

.event-facts dl > div {
	padding-block: 1rem;
	border-bottom: 1px solid var(--line);
}

.event-facts dt {
	display: flex;
	align-items: center;
	margin-bottom: 0.35rem;
	gap: 0.5rem;
	color: var(--muted);
	font-size: 0.73rem;
	font-weight: 760;
	text-transform: uppercase;
}

.event-facts dt .icon {
	width: 1rem;
}

.event-facts dd {
	margin: 0;
	font-weight: 650;
}

.gallery-content .wp-block-image a,
.gallery-content .wp-block-gallery a {
	cursor: zoom-in;
}

/* 404 */
.not-found {
	display: grid;
	min-height: 72vh;
	place-items: center;
	overflow: hidden;
	background: var(--sky-100);
}

.not-found__inner {
	position: relative;
	padding-block: 6rem;
}

.not-found h1 {
	max-width: 45rem;
}

.not-found__inner > p:not(.eyebrow) {
	max-width: 36rem;
	color: var(--muted);
	font-size: 1.15rem;
}

.not-found__mark {
	position: absolute;
	z-index: 0;
	top: 50%;
	right: 0;
	color: rgba(5, 40, 79, 0.05);
	font-family: Georgia, serif;
	font-size: 30rem;
	font-weight: 800;
	line-height: 1;
	transform: translateY(-50%);
}

.not-found__inner > *:not(.not-found__mark) {
	position: relative;
	z-index: 1;
}

/* Footer */
.site-footer {
	padding-top: clamp(4rem, 8vw, 6.5rem);
	background: var(--blue-950);
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(10rem, 0.65fr) minmax(14rem, 0.8fr);
	padding-bottom: 4rem;
	gap: clamp(2.5rem, 6vw, 5rem);
}

.brand--footer {
	margin-bottom: 1.5rem;
	color: var(--white);
}

.brand--footer:hover {
	color: var(--white);
}

.brand--footer .brand__text small {
	color: rgba(255, 255, 255, 0.55);
}

.site-footer__about p {
	max-width: 27rem;
}

.site-footer h2 {
	margin-bottom: 1.25rem;
	color: var(--white);
	font-size: 0.78rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.footer-menu {
	display: grid;
	gap: 0.6rem;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--white);
}

.contact-list {
	display: grid;
	gap: 0.8rem;
}

.contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
}

.contact-list .icon {
	width: 1.1rem;
	height: 1.1rem;
	margin-top: 0.25rem;
	color: var(--gold-light);
}

.social-links {
	display: flex;
	margin-top: 1.5rem;
	gap: 0.65rem;
}

.social-links a {
	display: grid;
	width: 2.7rem;
	height: 2.7rem;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
}

.social-links a:hover {
	border-color: var(--gold);
	background: var(--gold);
	color: var(--blue-950);
}

.social-links .icon {
	width: 1.2rem;
	height: 1.2rem;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 1.5rem;
	gap: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.78rem;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom nav {
	display: flex;
	gap: 1rem;
}

/* Lightbox */
.lightbox {
	position: fixed;
	width: 100vw;
	max-width: none;
	height: 100vh;
	max-height: none;
	padding: 4rem 5rem;
	border: 0;
	background: rgba(3, 18, 36, 0.96);
	color: var(--white);
}

.lightbox::backdrop {
	background: rgba(3, 18, 36, 0.94);
}

.lightbox[open] {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 1.5rem;
}

.lightbox figure {
	display: grid;
	height: 100%;
	max-height: calc(100vh - 8rem);
	place-items: center;
	margin: 0;
}

.lightbox img {
	max-height: calc(100vh - 11rem);
	border-radius: var(--radius-sm);
	object-fit: contain;
}

.lightbox figcaption {
	min-height: 2rem;
	padding-top: 0.75rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.85rem;
	text-align: center;
}

.lightbox button {
	display: grid;
	width: 3.25rem;
	height: 3.25rem;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	cursor: pointer;
	font-size: 2rem;
}

.lightbox button:hover {
	background: rgba(255, 255, 255, 0.18);
}

.lightbox__close {
	position: absolute;
	z-index: 1;
	top: 1.2rem;
	right: 1.2rem;
}

.lightbox__close .icon {
	width: 1.35rem;
	height: 1.35rem;
}

/* Responsive */
@media (max-width: 78rem) {
	.site-header__inner {
		justify-content: space-between;
	}

	.nav-open .site-header {
		position: fixed;
		z-index: 10000;
		inset: 0;
		height: 100svh;
		overflow-y: auto;
		border-color: var(--line);
		background: var(--white);
		box-shadow: var(--shadow-lg);
	}

	.admin-bar.nav-open .site-header {
		top: 32px;
		height: calc(100svh - 32px);
	}

	.nav-open .site-header__inner {
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
		height: auto;
		min-height: 100%;
		padding-bottom: 2rem;
	}

	.primary-nav {
		position: fixed;
		z-index: 999;
		inset: var(--header-height) 0 0;
		display: block;
		padding: 1.5rem 1.25rem 3rem;
		overflow-y: auto;
		background: var(--white);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-0.75rem);
		transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
	}

	.nav-open .primary-nav {
		position: static;
		z-index: auto;
		flex: 0 0 100%;
		width: 100%;
		min-height: auto;
		padding: 1rem 0 2rem;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.primary-nav__menu {
		display: block;
		max-width: 40rem;
		margin-inline: auto;
	}

	.primary-nav__menu a {
		padding: 0.85rem 0.25rem;
		border-bottom: 1px solid var(--line);
		font-size: 1.15rem;
	}

	.primary-nav__menu > li > a::after {
		display: none;
	}

	.primary-nav__menu ul {
		position: static;
		display: block;
		padding: 0 0 0 1rem;
		border: 0;
		box-shadow: none;
	}

	.primary-nav__menu ul a {
		font-size: 0.95rem;
	}

	.menu-toggle {
		display: block;
	}

	.header-cta {
		display: none;
	}

	.home-hero__inner {
		align-items: flex-start;
		padding-top: 6rem;
	}

	.home-hero__copy {
		max-width: 44rem;
	}

	.next-event-card {
		width: min(32rem, calc(100% - 2.5rem));
	}

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

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

@media (max-width: 56rem) {
	.card-grid--3,
	.gallery-preview__grid,
	.gallery-preview__placeholders,
	.album-grid,
	.person-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.welcome-grid,
	.about-intro-grid,
	.dance-intro-grid,
	.membership-intro__grid,
	.dance-feature__grid,
	.sponsors-section__inner,
	.newsletter-section__inner,
	.form-layout,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.welcome-copy,
	.dance-intro__content {
		order: -1;
	}

	.dance-feature__copy {
		order: 1;
	}

	.sponsors-section__inner,
	.newsletter-section__inner {
		gap: 2.5rem;
	}

	.section-heading-row {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.75rem;
	}

	.section-heading-row--filter {
		gap: 1.5rem;
	}

	.feature-pair {
		grid-template-columns: 1fr;
	}

	.rehearsal-card {
		grid-template-columns: auto 1fr;
	}

	.rehearsal-card .button {
		grid-column: 1 / -1;
		justify-self: start;
	}

	.news-toolbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.category-links {
		justify-content: flex-start;
	}

	.single-event__layout {
		grid-template-columns: 1fr;
	}

	.event-facts {
		position: static;
	}

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

	.site-footer__about {
		grid-column: 1 / -1;
	}
}

@media (max-width: 42rem) {
	:root {
		--header-height: 4.65rem;
	}

	.admin-bar.nav-open .site-header {
		top: 46px;
		height: calc(100svh - 46px);
	}

	.container {
		width: min(calc(100% - 1.5rem), var(--container));
	}

	.section {
		padding-block: 4rem;
	}

	.brand {
		min-width: 0;
	}

	.brand__logo,
	.brand__logo img {
		width: 2.9rem;
		height: 2.9rem;
		flex-basis: 2.9rem;
	}

	.brand__text strong {
		font-size: 0.82rem;
	}

	.brand__text small {
		font-size: 0.63rem;
	}

	.site-header__actions {
		gap: 0.4rem;
	}

	.language-switcher a {
		width: 1.75rem;
		height: 1.65rem;
		font-size: 0.62rem;
	}

	.menu-toggle {
		width: 2.55rem;
		height: 2.55rem;
	}

	.home-hero,
	.home-hero__inner {
		min-height: 44rem;
	}

	.home-hero__inner {
		padding-top: 4.5rem;
		padding-bottom: 9rem;
	}

	.home-hero h1 {
		font-size: clamp(3rem, 15vw, 4.6rem);
	}

	.home-hero__shade {
		background: linear-gradient(90deg, rgba(3, 29, 59, 0.94), rgba(3, 29, 59, 0.52)), linear-gradient(0deg, rgba(3, 29, 59, 0.6), transparent);
	}

	.next-event-card {
		right: 0.75rem;
		bottom: 1rem;
		left: 0.75rem;
		width: auto;
	}

	.stat-bar__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.stat-bar__grid > div {
		align-items: center;
		flex-direction: column;
		padding: 1.2rem 0.4rem;
		gap: 0.15rem;
		text-align: center;
	}

	.stat-bar span {
		font-size: 0.66rem;
		line-height: 1.2;
	}

	.welcome-visual__seal,
	.floating-stat,
	.membership-intro__visual > div {
		right: -0.25rem;
		width: 7.5rem;
		height: 7.5rem;
	}

	.card-grid--3,
	.gallery-preview__grid,
	.gallery-preview__placeholders,
	.album-grid,
	.person-grid,
	.value-grid {
		grid-template-columns: 1fr;
	}

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

	.value-card > span {
		margin-bottom: 2rem;
	}

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

	.timeline::before {
		left: 0.5rem;
	}

	.timeline-item {
		grid-template-columns: 1rem minmax(0, 1fr);
		gap: 0.8rem;
	}

	.timeline-item__year {
		grid-column: 2;
		padding: 0 0 0.5rem;
		text-align: left;
	}

	.timeline-item__marker {
		grid-row: 1 / span 2;
		width: 1rem;
		height: 2rem;
	}

	.timeline-item__card {
		grid-column: 2;
		padding: 1.5rem;
	}

	.section-heading-row--filter {
		align-items: stretch;
	}

	.month-filter > div {
		align-items: flex-start;
		flex-direction: column;
	}

	.month-filter input,
	.month-filter .button {
		width: 100%;
	}

	.evb-form__grid,
	.evb-newsletter-form {
		grid-template-columns: 1fr;
	}

	.evb-newsletter-form .evb-consent {
		grid-column: auto;
	}

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

	.site-footer__about {
		grid-column: auto;
	}

	.single-event__header-grid {
		grid-template-columns: 1fr;
	}

	.single-event__date {
		width: 7rem;
		height: 7rem;
	}

	.lightbox {
		padding: 4rem 0.5rem 1rem;
	}

	.lightbox[open] {
		grid-template-columns: 2.8rem minmax(0, 1fr) 2.8rem;
		gap: 0.2rem;
	}

	.lightbox button {
		width: 2.7rem;
		height: 2.7rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

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

@media print {
	.site-header,
	.site-footer,
	.newsletter-section,
	.member-banner,
	.button,
	.lightbox {
		display: none !important;
	}

	body {
		color: #000;
		font-size: 11pt;
	}

	.page-hero,
	.single-event__header {
		min-height: 0;
		padding: 2rem 0;
		background: #fff;
		color: #000;
	}

	.page-hero h1,
	.single-event h1 {
		color: #000;
	}

	a {
		color: #000;
		text-decoration: none;
	}
}
