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

:root {
	--navy: #0d1b2a;
	--navy-mid: #1a2e45;
	--navy-light: #243d57;
	--gold: #c9a84c;
	--gold-light: #e8c97a;
	--gold-pale: #f5e9c8;
	--cream: #faf8f3;
	--cream-dark: #f0ece0;
	--white: #ffffff;
	--text-dark: #0d1b2a;
	--text-mid: #3a4a5c;
	--text-muted: #6b7a8d;
	--text-light: #9aaabb;
	--border: rgba(13, 27, 42, 0.12);
	--border-gold: rgba(201, 168, 76, 0.35);
	--rank-up: #3f8f5f;
	--rank-down: #b2452f;
	--font-score: "Oswald", "DM Sans", sans-serif;
}

html {
	scroll-behavior: smooth;
}

/* Inline text links inside prose (not buttons, which have their own classes) */
p a {
	color: var(--gold);
	text-decoration-color: var(--border-gold);
}

p a:hover {
	color: var(--gold-light);
}

body {
	font-family: "DM Sans", sans-serif;
	background: var(--cream);
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(13, 27, 42, 0.96);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 2rem;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--white);
	letter-spacing: 0.04em;
	text-decoration: none;
}

.nav-logo span {
	color: var(--gold);
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.nav-links {
	display: flex;
	gap: 2.5rem;
	list-style: none;
	align-items: center;
}

.nav-discord {
	display: flex;
	align-items: center;
	opacity: 0.85;
	transition:
		opacity 0.2s,
		transform 0.2s;
}

.nav-discord:hover {
	opacity: 1;
	transform: scale(1.08);
}

.nav-discord-icon {
	width: 20px;
	height: 20px;
	display: block;
}

.nav-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--gold-light);
}

.nav-links a.active {
	color: var(--gold-light);
}

.nav-cta {
	background: transparent;
	border: 1px solid var(--gold);
	color: var(--gold) !important;
	padding: 0.5rem 1.25rem;
	border-radius: 2px;
	font-size: 0.78rem !important;
	letter-spacing: 0.1em !important;
	text-transform: uppercase;
	transition:
		background 0.2s,
		color 0.2s !important;
}

.nav-cta:hover {
	background: var(--gold) !important;
	color: var(--navy) !important;
}

.nav-dropdown {
	position: relative;
}

.nav-dropdown-menu {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 0.65rem;
	min-width: 200px;
	list-style: none;
	background: var(--navy);
	border: 1px solid rgba(201, 168, 76, 0.25);
	padding: 0.4rem 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition:
		opacity 0.18s,
		transform 0.18s,
		visibility 0.18s;
	z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-dropdown-menu a {
	display: block;
	padding: 0.65rem 1.15rem;
	font-size: 0.76rem !important;
	font-weight: 400;
	letter-spacing: 0.06em !important;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	white-space: nowrap;
}

.nav-dropdown-menu a:hover {
	color: var(--gold-light);
	background: rgba(201, 168, 76, 0.08);
}

/* ─── PAGE HEADER (non-Home pages) ─── */
.page-header {
	position: relative;
	background-image: url("assets/orch1.jpg");
	background-size: cover;
	background-position: center;
	padding-top: 100px;
	padding-bottom: 12px;
}

.page-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(13, 27, 42, 0.55) 0%,
		rgba(13, 27, 42, 0.85) 100%
	);
}

.page-header .section-inner {
	position: relative;
	z-index: 2;
	padding: 5rem 2rem 3.5rem;
}

.section-inner.about {
	padding: 4rem 2rem;
}

.page-header-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.75rem, 5.5vw, 4.5rem);
	font-weight: 300;
	color: var(--white);
	line-height: 1.1;
}

.page-header-title span {
	color: var(--gold);
}

/* ─── HERO ─── */
#hero {
	background: var(--navy);
	padding-top: 64px;
}

.hero-carousel {
	position: relative;
	height: 440px;
	overflow: hidden;
}

.hero-track {
	display: flex;
	height: 100%;
	transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-slide {
	position: relative;
	flex: 0 0 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
}

.hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(13, 27, 42, 0.35) 0%,
		rgba(13, 27, 42, 0.88) 100%
	);
}

.hero-slide-kicker {
	position: absolute;
	top: 1.5rem;
	left: 0;
	right: 0;
	z-index: 2;
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 2rem;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cream-dark);
}

.hero-slide-kicker span {
	color: var(--gold-light);
}

.hero-slide-content {
	position: relative;
	z-index: 2;
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 2rem 3rem;
	width: 100%;
}

.hero-slide-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.8rem, 4vw, 2.75rem);
	font-weight: 500;
	color: var(--white);
	margin-bottom: 0.5rem;
}

.hero-slide-desc {
	font-size: 1.1rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.75);
	max-width: 750px;
	line-height: 1.6;
}

.hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(13, 27, 42, 0.4);
	color: var(--white);
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		border-color 0.2s,
		background 0.2s;
}

.hero-arrow:hover {
	border-color: var(--gold);
	background: rgba(13, 27, 42, 0.65);
}

.hero-arrow.prev {
	left: 1.25rem;
}

.hero-arrow.next {
	right: 1.25rem;
}

.hero-dots {
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	gap: 0.6rem;
}

.hero-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	border: none;
	padding: 0;
	cursor: pointer;
	transition:
		background 0.2s,
		transform 0.2s;
}

.hero-dot.active {
	background: var(--gold);
	transform: scale(1.3);
}

.btn-primary {
	background: var(--gold);
	border: 1px solid var(--gold);
	color: var(--navy);
	padding: 0.85rem 2rem;
	border-radius: 2px;
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s;
	cursor: pointer;
	display: inline-block;
}

.btn-primary:hover {
	background: var(--gold-light);
}

.btn-primary.is-disabled {
	background: rgba(201, 168, 76, 0.3);
	border-color: rgba(201, 168, 76, 0.3);
	color: rgba(13, 27, 42, 0.55);
	cursor: not-allowed;
	pointer-events: none;
}

.btn-sec {
	padding: 0.85rem 2rem;
	border: 1px solid var(--gold);
	color: var(--gold);
	border-radius: 2px;
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s;
	cursor: pointer;
	display: inline-block;
}

.btn-sec:hover {
	background: var(--gold-light);
	color: var(--navy);
}

.hero-slide-btn {
	margin-top: 1.5rem;
	background: transparent;
	border: 1px solid var(--gold-light);
	color: var(--gold-light);
}

.hero-slide-btn:hover {
	background: var(--gold-light);
	color: var(--navy);
}

/* ─── SECTION BASICS ─── */
section {
	position: relative;
}

.section-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 6rem 2rem;
}

.section-label {
	font-size: 0.7rem;
	font-weight: 400;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.section-label::before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 1px;
	background: var(--gold);
}

.section-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 500;
	line-height: 1.15;
	color: var(--navy);
	max-width: 640px;
}

.section-title.light {
	color: var(--white);
}

.section-title.center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

/* ─── STATUS BANNER ─── */
#status {
	background: var(--navy);
	padding: 2rem;
}

.status-banner {
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.status-pill {
	background: rgba(201, 168, 76, 0.15);
	border: 1px solid rgba(201, 168, 76, 0.4);
	color: var(--gold-light);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.4rem 1rem;
	border-radius: 2px;
	white-space: nowrap;
	flex-shrink: 0;
}

.status-text {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.88rem;
	font-weight: 300;
	line-height: 1.5;
}

.status-text strong {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 400;
}

/* ─── ABOUT ─── */
#about-us {
	background: var(--cream);
}

.about-grid {
	display: grid;
	gap: 4rem;
	align-items: center;
	margin-top: 2.5rem;
}

#about-us .about-body {
	max-width: 640px;
}

#mission .about-grid {
	grid-template-columns: 280px 1fr;
}

#kickoff-overview .about-grid {
	grid-template-columns: 1fr 280px;
}

.about-media {
	aspect-ratio: 4 / 5;
	width: 100%;
}

.join-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-top: 3px solid var(--gold);
	padding: 2.25rem 1.75rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	text-align: center;
}

.join-card-label {
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
}

.join-card-date {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--navy);
	line-height: 1.25;
	margin-bottom: 0.75rem;
}

.join-card .btn-primary {
	width: 100%;
}

.about-body {
	max-width: 600px;
}

.about-body p {
	font-size: 1rem;
	color: var(--text-mid);
	line-height: 1.8;
	margin-bottom: 1.25rem;
	font-weight: 300;
}

.about-body p strong {
	font-weight: 600;
}

.about-body p:first-of-type {
	font-size: 1.15rem;
	font-family: "Cormorant Garamond", serif;
	font-weight: 500;
	color: var(--navy);
	line-height: 1.65;
}

/* ─── MISSION ─── */
#mission {
	background: var(--cream-dark);
}

.mission-text {
	max-width: 480px;
}

.mission-statement {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.4rem, 2.5vw, 1.75rem);
	font-style: italic;
	font-weight: 400;
	color: var(--navy);
	line-height: 1.5;
	margin-top: 1.5rem;
	margin-bottom: 1rem;
}

.mission-sub {
	font-size: 0.95rem;
	font-weight: 300;
	color: var(--text-mid);
	line-height: 1.7;
}

/* ─── FOCUS ─── */
#focus {
	background: var(--navy);
}

.focus-grid {
	margin-top: 2.5rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5px;
	background: rgba(201, 168, 76, 0.15);
}

.focus-item {
	background: var(--navy);
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.focus-item-label {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
}

.focus-item-desc {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 300;
	line-height: 1.6;
}

/* ─── HOME: INTRO ─── */
#intro {
	background: var(--cream);
}

.intro-text {
	margin-top: 1.5rem;
	max-width: 640px;
	font-size: 1.1rem;
	color: var(--text-mid);
	font-weight: 400;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.intro-text span {
	color: var(--gold);
	font-weight: 500;
}

.intro-text strong {
	font-weight: 500;
	letter-spacing: 0.1px;
}

/* ─── HOME: GALLERY ─── */
#gallery {
	background: var(--cream-dark);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
	margin-top: 3rem;
}

.gallery-grid > * {
	aspect-ratio: 1;
}

.gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ─── HOME: VOLUNTEER CTA ─── */
#volunteer-cta {
	background: var(--navy-mid);
	text-align: center;
}

.volunteer-cta-text {
	max-width: 560px;
	margin: 0 auto 2rem;
	color: rgba(255, 255, 255, 0.6);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.7;
}

/* ─── PROGRAMS ─── */
#programs {
	background: var(--navy-mid);
	overflow: hidden;
}

.programs-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 4rem;
	gap: 2rem;
	flex-wrap: wrap;
}

.programs-intro {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.95rem;
	font-weight: 300;
	max-width: 360px;
	line-height: 1.7;
}

.programs-grid {
	display: flex;
	flex-direction: column;
	gap: 1.5px;
	background: rgba(201, 168, 76, 0.15);
}

.program-anchor {
	color: inherit;
	text-decoration: none;
}

.program-card {
	background: var(--navy-mid);
	padding: 2rem 2.5rem;
	display: flex;
	align-items: center;
	gap: 2.5rem;
	transition: background 0.3s;
}

.program-anchor:hover .program-card {
	background: var(--navy);
}

.program-date {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.3rem;
	flex: 0 0 auto;
	width: 110px;
}

.program-date-label {
	font-size: 0.62rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(201, 168, 76, 0.55);
}

.program-date-value {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.7rem;
	font-weight: 500;
	color: var(--gold-light);
	line-height: 1.15;
}

.program-card-body {
	flex: 1 1 320px;
	min-width: 0;
}

.program-card-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.6rem;
}

.program-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--white);
	line-height: 1.3;
}

.program-desc {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.7;
	font-weight: 300;
}

.program-more {
	flex: 0 0 auto;
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	text-decoration: none;
	border-bottom: 1px solid var(--gold);
	padding-bottom: 0.15rem;
	white-space: nowrap;
	transition:
		color 0.2s,
		border-color 0.2s;
}

.program-more:hover {
	color: var(--gold-light);
	border-color: var(--gold-light);
}

.program-tag {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	border: 1px solid rgba(201, 168, 76, 0.3);
	padding: 0.25rem 0.65rem;
	border-radius: 2px;
	white-space: nowrap;
}

.program-tag.future {
	color: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.12);
}

/* ─── GET INVOLVED ─── */
#involved {
	background: var(--cream);
}

/* ─── STEPS (numbered) ─── */
#how-it-works {
	background: var(--cream);
}

.steps-grid {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 3rem;
	text-align: center;
}

.step {
	flex: 1 1 220px;
	max-width: 260px;
}

.step-arrow {
	flex: 0 0 auto;
	width: 64px;
	margin-top: 32px;
}

.step-arrow svg {
	width: 100%;
	height: 20px;
	display: block;
}

.step-circle {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--navy);
	font-family: "Cormorant Garamond", serif;
	font-size: 2.1rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.step-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--navy);
	margin-bottom: 0.75rem;
}

.step-desc {
	font-size: 0.9rem;
	color: var(--text-mid);
	font-weight: 300;
	line-height: 1.7;
	max-width: 260px;
	margin: 0 auto;
}

/* ─── KICKOFF CHALLENGE ─── */
#kickoff-overview {
	background: var(--cream);
}

#kickoff-timeline-section {
	background: var(--cream-dark);
}

#kickoff-judging {
	background: var(--navy);
}

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

.judging-intro {
	margin-top: 0.5rem;
	margin-bottom: 2.5rem;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.95rem;
	font-weight: 300;
	max-width: 640px;
	line-height: 1.7;
}

.judging-note {
	margin-top: 2.5rem;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(201, 168, 76, 0.25);
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--gold-light);
	max-width: 640px;
}

#awards {
	background: var(--cream-dark);
}

.awards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 2.5rem;
}

.awards-grid .involved-bullets {
	margin-bottom: 0;
}

/* Stat grid: reusable label/value/desc cards (leaderboard points, key dates, etc.) */
.stat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5px;
	background: var(--border);
	margin-top: 2.5rem;
}

.stat-item {
	background: var(--white);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.stat-label {
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
}

.stat-value {
	font-family: var(--font-score);
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--navy);
	font-variant-numeric: tabular-nums;
}

.stat-desc {
	font-size: 0.85rem;
	color: var(--text-mid);
	font-weight: 300;
	line-height: 1.6;
}

/* ─── ENTER CTA ─── */
#enter {
	background: var(--navy-mid);
	text-align: center;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.involved-intro {
	margin-top: 0.5rem;
	margin-bottom: 3.5rem;
	font-size: 1rem;
	color: var(--text-mid);
	max-width: 540px;
	font-weight: 300;
	line-height: 1.7;
}

.involved-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.involved-card {
	background: var(--white);
	border: 1px solid var(--border);
	padding: 2.5rem 2rem;
	position: relative;
}

/* ─────────── DISCORD WIDGET ─────────── */
.discord-widget-grid {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 3rem;
	align-items: center;
	margin-top: 3.5rem;
}

.discord-widget-copy {
	max-width: 480px;
}

.discord-widget-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--navy);
	margin-bottom: 0.75rem;
}

.discord-widget-desc {
	font-size: 0.92rem;
	color: var(--text-mid);
	font-weight: 300;
	line-height: 1.7;
}

.discord-widget-frame {
	width: 100%;
	max-width: 350px;
	justify-self: center;
	border: 1px solid var(--border);
	background: var(--navy);
	border-radius: 8px;
	overflow: hidden;
}

.discord-widget-frame iframe {
	display: block;
	width: 100%;
}

.involved-icon {
	width: 36px;
	height: 36px;
	margin-bottom: 1.5rem;
	color: var(--gold);
}

.involved-card-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--navy);
	margin-bottom: 0.75rem;
}

.involved-card-desc {
	font-size: 0.88rem;
	color: var(--text-mid);
	font-weight: 300;
	line-height: 1.7;
	margin-bottom: 1.75rem;
}

.involved-bullets {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.involved-bullets li {
	font-size: 0.82rem;
	color: var(--text-mid);
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
	font-weight: 300;
}

.involved-bullets li::before {
	content: "–";
	color: var(--gold);
	flex-shrink: 0;
}

.card-btn {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--navy);
	text-decoration: none;
	border-bottom: 1px solid var(--gold);
	padding-bottom: 0.15rem;
	transition: color 0.2s;
	overflow-wrap: anywhere;
}

.card-btn:hover {
	color: var(--gold);
}

/* ─── CONTACT / JOIN ─── */
#contact {
	background: var(--cream);
}

/* ─── GET INVOLVED: WHY REACH OUT ─── */
#involved-facts {
	background: var(--navy);
}

.involved-footlinks {
	margin-top: 3rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 2.5rem;
	font-size: 0.85rem;
}

.involved-footlinks a {
	text-decoration: none;
	border-bottom: 1px solid var(--border-gold);
	padding-bottom: 2px;
}

/* ─── TEAM ─── */
#team {
	background: var(--cream-dark);
}

.team-intro {
	margin-top: 0.5rem;
	font-size: 0.95rem;
	color: var(--text-mid);
	font-weight: 300;
	max-width: 500px;
	line-height: 1.7;
	margin-bottom: 3.5rem;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.team-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 2.5rem;
	align-items: start;
	background: var(--white);
	border: 1px solid var(--border);
	padding: 2.5rem;
}

.team-photo-block {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: center;
}

.team-photo {
	width: 110px;
	height: 140px;
	background: var(--cream-dark);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.5rem;
	color: var(--text-muted);
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	flex-shrink: 0;
	overflow: hidden;
}

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

.team-photo-label {
	font-size: 0.65rem;
	color: var(--text-light);
	text-align: center;
	max-width: 80px;
	line-height: 1.4;
}

.team-info {
}

.team-name {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--navy);
	margin-bottom: 0.2rem;
}

.team-role {
	font-size: 0.72rem;
	font-weight: 400;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
}

.team-bio {
	font-size: 0.88rem;
	color: var(--text-mid);
	font-weight: 300;
	line-height: 1.75;
}

/* ─── FAQ ─── */
#faq {
	background: var(--cream);
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	margin-top: 3.5rem;
}

.faq-item {
}

.faq-q {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.15rem;
	font-weight: 500;
	color: var(--navy);
	margin-bottom: 0.6rem;
	line-height: 1.35;
}

.faq-a {
	font-size: 0.88rem;
	color: var(--text-mid);
	font-weight: 300;
	line-height: 1.75;
}

/* ─── FOOTER ─── */
footer {
	background: var(--navy);
	border-top: 1px solid rgba(201, 168, 76, 0.12);
	padding: 3rem 2rem;
}

.footer-inner {
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-logo {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--white);
	letter-spacing: 0.04em;
}

.footer-logo span {
	color: var(--gold);
}

.footer-tagline {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.3);
	font-weight: 300;
	margin-top: 0.3rem;
}

.footer-links {
	display: flex;
	gap: 2rem;
	list-style: none;
	flex-wrap: wrap;
}

.footer-links a {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.35);
	text-decoration: none;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--gold-light);
}

.footer-copy {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.2);
	font-weight: 300;
}

/* ─── DIVIDER ─── */
.gold-rule {
	width: 40px;
	height: 1px;
	background: var(--gold);
	margin: 2rem 0;
}

/* ─── IMAGE PLACEHOLDER UTILITY ─── */
.img-placeholder {
	background: var(--cream-dark);
	border: 1px dashed rgba(13, 27, 42, 0.2);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	color: var(--text-muted);
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
	padding: 1rem;
}

.img-placeholder.dark {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.25);
}

.img-ph-icon {
	font-size: 1.5rem;
	opacity: 0.3;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
	.about-grid,
	#mission .about-grid,
	#kickoff-overview .about-grid,
	.discord-widget-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.discord-widget-frame {
		justify-self: stretch;
	}
	.involved-grid {
		grid-template-columns: 1fr;
	}
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.hero-carousel {
		height: 360px;
	}
	.hero-arrow {
		width: 34px;
		height: 34px;
	}
	.program-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
	.program-date {
		flex-direction: row;
		align-items: baseline;
		gap: 0.5rem;
		width: auto;
	}
	.faq-grid {
		grid-template-columns: 1fr;
	}
	.nav-links {
		display: none;
	}
	.team-card {
		grid-template-columns: 1fr;
	}
	.team-photo-block {
		flex-direction: row;
		align-items: center;
	}
	.focus-grid,
	.focus-grid.cols-3 {
		grid-template-columns: 1fr;
	}
	.awards-grid {
		grid-template-columns: 1fr;
	}
	.steps-grid {
		flex-direction: column;
		align-items: center;
		gap: 2.5rem;
	}
	.step-arrow {
		display: none;
	}
	.step {
		max-width: 320px;
	}
}

@media (max-width: 600px) {
	.form-row {
		grid-template-columns: 1fr;
	}
}


/* ─── LEADERBOARD ─── */
.leaderboard-list {
	background: var(--white);
	border: 1px solid var(--border);
}

.leaderboard-row {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.1rem 1.5rem;
	border-bottom: 1px solid var(--border);
}

.leaderboard-row:last-child {
	border-bottom: none;
}

.leaderboard-row.top3 {
	border-left: 3px solid var(--gold);
}

.leaderboard-rank {
	width: 56px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.15rem;
}

.rank-num {
	font-family: var(--font-score);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--navy);
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.rank-change {
	font-family: var(--font-score);
	font-size: 0.72rem;
	font-weight: 600;
	white-space: nowrap;
	letter-spacing: 0.02em;
}

.rank-change.up {
	color: var(--rank-up);
}

.rank-change.down {
	color: var(--rank-down);
}

.rank-change.same {
	color: var(--text-light);
}

.rank-change.new {
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.62rem;
}

.leaderboard-school {
	flex: 1;
	min-width: 0;
}

.leaderboard-school-name {
	font-weight: 500;
	color: var(--navy);
	font-size: 0.98rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.rank-badge.pending {
	font-size: 0.6rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	border: 1px solid var(--border);
	padding: 0.15rem 0.5rem;
	border-radius: 2px;
	font-weight: 500;
}

.leaderboard-school-meta {
	font-size: 0.78rem;
	color: var(--text-muted);
	margin-top: 0.25rem;
	font-weight: 300;
}

.leaderboard-rp {
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.15rem;
	min-width: 110px;
	flex-shrink: 0;
}

.rp-value {
	font-family: var(--font-score);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--gold);
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.01em;
}

.rp-unit {
	font-family: "DM Sans", sans-serif;
	font-size: 0.62rem;
	color: var(--text-muted);
	font-weight: 500;
	margin-left: 0.2rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.rp-change {
	font-family: var(--font-score);
	font-size: 0.74rem;
	font-weight: 600;
	white-space: nowrap;
	letter-spacing: 0.01em;
}

.rp-change.up {
	color: var(--rank-up);
}

.rp-change.down {
	color: var(--rank-down);
}

.rp-change.same,
.rp-change.new {
	color: var(--text-light);
}

#leaderboard-summary {
	background: var(--navy);
}

@media (max-width: 640px) {
	.leaderboard-row {
		flex-wrap: wrap;
		gap: 0.5rem 1rem;
	}

	.leaderboard-school {
		flex: 1 1 auto;
	}

	.leaderboard-rp {
		flex: 1 0 100%;
		flex-direction: row;
		align-items: baseline;
		gap: 0.6rem;
		text-align: left;
		margin-left: calc(56px + 1rem);
		min-width: 0;
	}
}


/* ─── TEAM (about page — editorial feature layout) ─── */
.team-feature-list {
	display: flex;
	flex-direction: column;
	gap: 4.5rem;
	margin-top: 3rem;
}

.team-feature {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 3.5rem;
	align-items: start;
}

.team-feature.reverse {
	grid-template-columns: 1fr 280px;
}

.team-feature.reverse .team-feature-media {
	order: 2;
}

.team-feature-media {
	aspect-ratio: 4 / 5;
	width: 100%;
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--cream-dark);
}

.team-feature-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.team-feature-role {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.6rem;
}

.team-feature-role::before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 1px;
	background: var(--gold);
	flex-shrink: 0;
}

.team-feature-name {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.7rem, 2.6vw, 2.1rem);
	font-weight: 500;
	color: var(--navy);
	margin-bottom: 1.1rem;
}

.team-feature-bio {
	font-size: 0.95rem;
	color: var(--text-mid);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 1.6rem;
	max-width: 560px;
}

@media (max-width: 760px) {
	.team-feature,
	.team-feature.reverse {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.team-feature.reverse .team-feature-media {
		order: 0;
	}

	.team-feature-media {
		max-width: 220px;
		margin: 0 auto;
	}

	.team-feature-bio {
		max-width: none;
	}
}


/* ─── JOIN-CARD MINI LEADERBOARD (kickoff.html entry card) ─── */
.join-card-leaderboard {
	width: 100%;
	margin-top: 1.85rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.join-card-leaderboard-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.mini-leaderboard {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	width: 100%;
}

.mini-leaderboard-row {
	display: flex;
	align-items: baseline;
	gap: 0.65rem;
	width: 100%;
}

.mini-rank {
	font-family: var(--font-score);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--navy);
	width: 14px;
	flex-shrink: 0;
	font-variant-numeric: tabular-nums;
}

.mini-school {
	flex: 1;
	min-width: 0;
	font-size: 0.78rem;
	color: var(--text-mid);
	font-weight: 400;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mini-rp {
	font-family: var(--font-score);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--gold);
	flex-shrink: 0;
	font-variant-numeric: tabular-nums;
}

.mini-leaderboard-link {
	font-size: 0.66rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold);
	text-decoration: none;
	border-bottom: 1px solid var(--gold);
	padding-bottom: 0.15rem;
	align-self: flex-start;
	transition: color 0.2s;
}

.mini-leaderboard-link:hover {
	color: var(--gold-light);
	border-color: var(--gold-light);
}

.leaderboard-empty {
	padding: 3.5rem 2rem;
	text-align: center;
	color: var(--text-muted);
}

.leaderboard-empty p:first-child {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.4rem;
	color: var(--navy);
	margin-bottom: 0.5rem;
}

.leaderboard-empty p:last-child {
	font-size: 0.9rem;
	font-weight: 300;
	max-width: 420px;
	margin: 0 auto;
	line-height: 1.6;
}

.mini-leaderboard-empty {
	font-size: 0.8rem;
	color: var(--text-muted);
	font-weight: 300;
	font-style: italic;
}


/* ─── STATEMENT HEADINGS (mission-style emphasis blocks) ─── */
.statement-block {
	position: relative;
	max-width: 820px;
	margin-bottom: 1rem;
}

.statement-block::before {
	content: "\201C";
	position: absolute;
	top: -4.2rem;
	left: -2rem;
	font-family: "Cormorant Garamond", serif;
	font-size: 11rem;
	line-height: 1;
	color: var(--gold);
	opacity: 0.14;
	pointer-events: none;
	user-select: none;
	z-index: 0;
}

.statement-block > * {
	position: relative;
	z-index: 1;
}

.statement-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 400;
	line-height: 1.2;
	color: var(--navy);
}

.statement-title.light {
	color: var(--white);
}

.statement-title .accent {
	color: var(--gold);
	font-style: italic;
}

.statement-title.light .accent {
	color: var(--gold-light);
}
