:root {
	--panthers-orange: #ff6a00;
	--panthers-orange-dark: #b94400;
	--panthers-blue: #0067b1;
	--panthers-green: #128f4f;
	--panthers-black: #050506;
	--panthers-charcoal: #111216;
	--panthers-charcoal-2: #1a1d22;
	--panthers-line: rgba(255, 255, 255, 0.14);
	--panthers-line-dark: rgba(5, 5, 6, 0.12);
	--panthers-white: #ffffff;
	--panthers-cream: #f5f1ea;
	--panthers-muted: #aeb6c2;
	--panthers-text: #15171c;
	--panthers-radius: 8px;
	--panthers-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
	--panthers-container: 1180px;
	--panthers-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--panthers-black);
	color: var(--panthers-text);
	font-family: var(--panthers-font);
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0;
	overflow-x: hidden;
}

img,
svg,
video,
iframe {
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--panthers-orange);
}

:focus-visible {
	outline: 3px solid var(--panthers-orange);
	outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.6em;
	color: inherit;
	font-weight: 850;
	line-height: 1.05;
	letter-spacing: 0;
}

h1 {
	font-size: 54px;
}

h2 {
	font-size: 38px;
}

h3 {
	font-size: 22px;
}

p {
	margin: 0 0 1em;
}

.screen-reader-text {
	position: absolute;
	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 16px;
	clip: auto;
	background: var(--panthers-orange);
	color: var(--panthers-black);
	border-radius: var(--panthers-radius);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(5, 5, 6, 0.88);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
	background: rgba(5, 5, 6, 0.96);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.site-header-inner {
	width: min(100% - 32px, var(--panthers-container));
	margin: 0 auto;
	min-height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--panthers-white);
	text-decoration: none;
	min-width: 0;
}

.site-brand img {
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.site-brand-mark {
	display: inline-grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--panthers-orange);
	color: var(--panthers-black);
	font-weight: 900;
}

.site-brand-text {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.site-brand-text strong {
	font-size: 15px;
	line-height: 1.1;
	white-space: nowrap;
}

.site-brand-text small {
	color: var(--panthers-muted);
	font-size: 12px;
	line-height: 1.2;
	white-space: nowrap;
}

.primary-navigation {
	display: flex;
	align-items: center;
}

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

.primary-menu {
	display: flex;
	align-items: center;
	gap: 2px;
}

.primary-menu a {
	display: block;
	padding: 12px 10px;
	border-radius: var(--panthers-radius);
	color: var(--panthers-white);
	font-size: 13px;
	font-weight: 760;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
	background: rgba(255, 106, 0, 0.16);
	color: var(--panthers-white);
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--panthers-radius);
	background: rgba(255, 255, 255, 0.04);
	color: var(--panthers-white);
	cursor: pointer;
}

.menu-toggle-bars {
	display: grid;
	gap: 5px;
	width: 20px;
}

.menu-toggle-bars span {
	display: block;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
}

.section,
.page-hero,
.single-hero {
	position: relative;
	background: var(--panthers-cream);
}

.section-inner {
	width: min(100% - 32px, var(--panthers-container));
	margin: 0 auto;
	padding: 78px 0;
}

.section-inner.narrow {
	max-width: 840px;
}

.section-header {
	max-width: 790px;
	margin-bottom: 30px;
}

.section-header p,
.section-copy p {
	color: rgba(21, 23, 28, 0.76);
	font-size: 18px;
}

.section-dark,
.section-social {
	background: var(--panthers-charcoal);
	color: var(--panthers-white);
}

.section-dark .section-header p,
.section-dark .panthers-card p,
.section-social p {
	color: var(--panthers-muted);
}

.section-dark .panthers-card {
	background: #171a20;
	color: var(--panthers-white);
	border-color: rgba(255, 255, 255, 0.1);
}

.hero-section {
	position: relative;
	min-height: calc(100vh - 78px);
	display: grid;
	align-items: center;
	isolation: isolate;
	overflow: hidden;
	background: #08090d;
	color: var(--panthers-white);
}

.hero-section.has-hero-image {
	background-image: var(--hero-image);
	background-size: cover;
	background-position: center;
}

.hero-section.has-club-backdrop {
	background:
		linear-gradient(135deg, rgba(255, 106, 0, 0.32), transparent 34%),
		linear-gradient(105deg, #050506 0%, #111216 52%, #1b222d 100%);
}

.hero-section.has-club-backdrop::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 96px 96px;
	opacity: 0.6;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(5, 5, 6, 0.92) 0%, rgba(5, 5, 6, 0.72) 42%, rgba(5, 5, 6, 0.2) 100%),
		linear-gradient(0deg, rgba(5, 5, 6, 0.78) 0%, rgba(5, 5, 6, 0.08) 48%, rgba(5, 5, 6, 0.65) 100%);
}

.hero-inner {
	width: min(100% - 32px, var(--panthers-container));
	margin: 0 auto;
	padding: 96px 0 132px;
	max-width: 900px;
	justify-self: center;
}

.hero-inner h1 {
	max-width: 820px;
	margin-bottom: 18px;
	font-size: 68px;
	text-transform: uppercase;
	text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.hero-kicker {
	margin-bottom: 0;
	color: var(--panthers-white);
	font-size: 30px;
	font-weight: 780;
}

.hero-subtitle {
	margin-top: 6px;
	color: #f2d2b7;
	font-size: 24px;
	font-weight: 740;
}

.hero-actions,
.section-actions,
.panthers-card-actions,
.footer-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.hero-actions {
	margin-top: 34px;
}

.hero-bottom-note {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(5, 5, 6, 0.68);
	backdrop-filter: blur(10px);
}

.hero-bottom-note span {
	padding: 18px 24px;
	color: var(--panthers-white);
	font-size: 13px;
	font-weight: 780;
	text-align: center;
	text-transform: uppercase;
}

.panthers-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	color: var(--panthers-orange);
	font-size: 13px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0;
}

.panthers-eyebrow::before {
	content: "";
	width: 28px;
	height: 3px;
	border-radius: 999px;
	background: currentColor;
}

.panthers-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border: 1px solid transparent;
	border-radius: var(--panthers-radius);
	font-size: 13px;
	font-weight: 850;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0;
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.panthers-button:hover {
	transform: translateY(-1px);
}

.panthers-button-primary {
	background: var(--panthers-orange);
	color: var(--panthers-black);
	box-shadow: 0 12px 32px rgba(255, 106, 0, 0.26);
}

.panthers-button-primary:hover {
	background: #ff8126;
	color: var(--panthers-black);
}

.panthers-button-light {
	background: var(--panthers-white);
	color: var(--panthers-black);
}

.panthers-button-light:hover {
	background: var(--panthers-orange);
	color: var(--panthers-black);
}

.panthers-button-ghost,
.panthers-button-ghost-light {
	background: transparent;
}

.panthers-button-ghost {
	border-color: var(--panthers-line-dark);
	color: var(--panthers-text);
}

.panthers-button-ghost-light {
	border-color: rgba(255, 255, 255, 0.28);
	color: var(--panthers-white);
}

.panthers-button-ghost:hover,
.panthers-button-ghost-light:hover {
	border-color: var(--panthers-orange);
	color: var(--panthers-orange);
}

.panthers-pill {
	display: inline-flex;
	align-items: center;
	width: max-content;
	max-width: 100%;
	margin-bottom: 10px;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(255, 106, 0, 0.16);
	color: var(--panthers-orange);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.split-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: 42px;
	align-items: center;
}

.foundation-panel {
	display: grid;
	gap: 12px;
}

.foundation-panel > div,
.registration-stack article,
.location-panel,
.quote-card {
	border-radius: var(--panthers-radius);
	background: var(--panthers-charcoal);
	color: var(--panthers-white);
	box-shadow: var(--panthers-shadow);
}

.foundation-panel > div {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.foundation-panel strong {
	display: block;
	margin-bottom: 6px;
	color: var(--panthers-orange);
	font-size: 22px;
	line-height: 1.15;
}

.foundation-panel span {
	color: var(--panthers-muted);
}

.section-values {
	background: #ffffff;
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.value-card {
	min-height: 260px;
	padding: 24px;
	border: 1px solid var(--panthers-line-dark);
	border-radius: var(--panthers-radius);
	background: #fff;
}

.value-card span {
	display: block;
	margin-bottom: 44px;
	color: var(--panthers-orange);
	font-size: 14px;
	font-weight: 900;
}

.value-card p {
	color: rgba(21, 23, 28, 0.7);
}

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

.panthers-card-grid.two-column {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panthers-card {
	overflow: hidden;
	border: 1px solid var(--panthers-line-dark);
	border-radius: var(--panthers-radius);
	background: var(--panthers-white);
	color: var(--panthers-text);
	box-shadow: 0 12px 42px rgba(0, 0, 0, 0.08);
}

.panthers-card-media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--panthers-charcoal);
}

.panthers-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 240ms ease;
}

.panthers-card:hover .panthers-card-img {
	transform: scale(1.035);
}

.panthers-card-body {
	padding: 22px;
}

.panthers-card h3 a {
	color: inherit;
	text-decoration: none;
}

.panthers-card p {
	color: rgba(21, 23, 28, 0.72);
}

.panthers-muted {
	color: rgba(21, 23, 28, 0.68);
}

.panthers-text-link {
	color: var(--panthers-orange-dark);
	font-weight: 850;
	text-decoration: none;
}

.registration-stack {
	display: grid;
	gap: 14px;
}

.registration-stack article {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.registration-stack p {
	color: var(--panthers-muted);
}

.section-registration {
	background:
		linear-gradient(90deg, rgba(255, 106, 0, 0.08), transparent 40%),
		var(--panthers-cream);
}

.align-left {
	justify-content: flex-start;
}

.section-quote {
	background: var(--panthers-black);
	color: var(--panthers-white);
}

.quote-card {
	margin: 0;
	padding: 42px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background:
		linear-gradient(135deg, rgba(255, 106, 0, 0.18), transparent 34%),
		var(--panthers-charcoal);
}

.quote-card blockquote {
	margin: 0;
	font-size: 34px;
	line-height: 1.25;
	font-weight: 820;
}

.quote-card blockquote p {
	margin: 0;
	color: var(--panthers-white);
}

.quote-card figcaption {
	margin-top: 22px;
	color: var(--panthers-muted);
	font-weight: 760;
}

.quote-card figcaption span {
	display: block;
	font-weight: 500;
}

.section-documents {
	background: #fff;
}

.panthers-document-card .panthers-button {
	margin-top: 8px;
}

.section-sponsors {
	background: var(--panthers-cream);
}

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

.panthers-sponsor-logo {
	display: grid;
	place-items: center;
	min-height: 170px;
	padding: 24px;
	background: #fff;
	border-bottom: 1px solid var(--panthers-line-dark);
}

.panthers-logo-img {
	display: block;
	max-width: 100%;
	max-height: 120px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.panthers-video-thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(5, 5, 6, 0.5), transparent);
}

.panthers-play {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	width: 64px;
	height: 64px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: var(--panthers-orange);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.panthers-play::before {
	content: "";
	position: absolute;
	left: 26px;
	top: 20px;
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 18px solid var(--panthers-black);
}

.social-hub {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--panthers-radius);
	background:
		linear-gradient(135deg, rgba(0, 103, 177, 0.22), transparent 44%),
		#111216;
	padding: 38px;
}

.social-hub h2 {
	margin-bottom: 10px;
}

.social-hub-links,
.footer-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.social-hub-links a,
.footer-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--panthers-radius);
	color: var(--panthers-white);
	font-weight: 820;
	text-decoration: none;
}

.social-hub-links a:hover,
.footer-social-links a:hover {
	border-color: var(--panthers-orange);
	color: var(--panthers-orange);
}

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

.panthers-contact-card .panthers-card-actions {
	margin-top: 18px;
}

.location-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1.25fr);
	gap: 24px;
	margin-top: 28px;
	padding: 24px;
}

.location-panel p {
	color: var(--panthers-muted);
}

.map-embed {
	overflow: hidden;
	min-height: 320px;
	border-radius: var(--panthers-radius);
	background: #0b0c0f;
}

.map-embed iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
	border: 0;
}

.page-hero,
.single-hero {
	background:
		linear-gradient(135deg, rgba(255, 106, 0, 0.22), transparent 42%),
		var(--panthers-charcoal);
	color: var(--panthers-white);
}

.page-hero .section-inner {
	padding-top: 92px;
	padding-bottom: 74px;
}

.page-hero p {
	color: var(--panthers-muted);
	font-size: 18px;
}

.page-content-section,
.archive-section,
.single-content-section {
	background: var(--panthers-cream);
}

.content-layout {
	max-width: 880px;
}

.entry-content {
	border-radius: var(--panthers-radius);
	background: #fff;
	padding: 34px;
	box-shadow: 0 12px 42px rgba(0, 0, 0, 0.08);
}

.entry-content > *:first-child {
	margin-top: 0;
}

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

.entry-content img {
	border-radius: var(--panthers-radius);
}

.single-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
	gap: 32px;
	align-items: center;
	padding-top: 82px;
	padding-bottom: 62px;
}

.single-hero-media {
	overflow: hidden;
	border-radius: var(--panthers-radius);
	box-shadow: var(--panthers-shadow);
}

.single-hero-img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 11;
	object-fit: cover;
}

.single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 28px;
	align-items: start;
}

.single-sidebar {
	position: sticky;
	top: 104px;
	display: grid;
	gap: 18px;
}

.meta-panel {
	padding: 22px;
}

.meta-list {
	display: grid;
	gap: 10px;
	margin: 0 0 18px;
}

.meta-list div {
	display: grid;
	gap: 2px;
}

.meta-list dt {
	color: rgba(21, 23, 28, 0.6);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.meta-list dd {
	margin: 0;
	font-weight: 700;
}

.responsive-embed {
	overflow: hidden;
	border-radius: var(--panthers-radius);
}

.responsive-embed iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
}

.navigation.pagination {
	margin-top: 32px;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 12px;
	border: 1px solid var(--panthers-line-dark);
	border-radius: var(--panthers-radius);
	background: #fff;
	color: var(--panthers-text);
	text-decoration: none;
}

.page-numbers.current {
	background: var(--panthers-orange);
	color: var(--panthers-black);
	font-weight: 850;
}

.panthers-empty-state,
.panthers-admin-note {
	padding: 18px 20px;
	border: 1px solid var(--panthers-line-dark);
	border-radius: var(--panthers-radius);
	background: rgba(255, 255, 255, 0.75);
	color: var(--panthers-text);
}

.site-footer {
	background: var(--panthers-black);
	color: var(--panthers-white);
}

.footer-cta {
	width: min(100% - 32px, var(--panthers-container));
	margin: 0 auto;
	padding: 42px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h2 {
	margin-bottom: 0;
}

.footer-main {
	width: min(100% - 32px, var(--panthers-container));
	margin: 0 auto;
	padding: 44px 0;
	display: grid;
	grid-template-columns: 1.2fr 0.7fr 0.8fr;
	gap: 32px;
}

.footer-main h2 {
	font-size: 18px;
}

.footer-brand p,
.footer-contact p,
.footer-bottom {
	color: var(--panthers-muted);
}

.footer-brand img {
	width: 72px;
	height: 72px;
	object-fit: contain;
	margin-bottom: 16px;
}

.footer-menu {
	display: grid;
	gap: 8px;
}

.footer-menu a,
.footer-contact a {
	color: var(--panthers-white);
	text-decoration: none;
}

.footer-menu a:hover,
.footer-contact a:hover {
	color: var(--panthers-orange);
}

.footer-safety {
	display: grid;
	gap: 4px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
	width: min(100% - 32px, var(--panthers-container));
	margin: 0 auto;
	padding: 20px 0 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 14px;
}

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 420ms ease, transform 420ms ease;
}

.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1080px) {
	h1 {
		font-size: 46px;
	}

	h2 {
		font-size: 32px;
	}

	.hero-inner h1 {
		font-size: 56px;
	}

	.primary-menu a {
		padding: 10px 7px;
		font-size: 12px;
	}

	.value-grid,
	.panthers-card-grid,
	.sponsor-wall,
	.panthers-contact-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	.site-header-inner {
		min-height: 70px;
	}

	.site-brand-text small {
		display: none;
	}

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

	.primary-navigation {
		position: fixed;
		left: 16px;
		right: 16px;
		top: 82px;
		display: none;
		max-height: calc(100vh - 104px);
		overflow-y: auto;
		border: 1px solid rgba(255, 255, 255, 0.14);
		border-radius: var(--panthers-radius);
		background: rgba(5, 5, 6, 0.98);
		box-shadow: var(--panthers-shadow);
	}

	.menu-is-open .primary-navigation {
		display: block;
	}

	.primary-menu {
		display: grid;
		gap: 0;
		padding: 10px;
	}

	.primary-menu a {
		padding: 14px 12px;
	}

	.hero-section {
		min-height: calc(100vh - 70px);
	}

	.hero-inner {
		padding-top: 70px;
		padding-bottom: 148px;
	}

	.hero-inner h1 {
		font-size: 42px;
	}

	.hero-kicker {
		font-size: 24px;
	}

	.hero-subtitle {
		font-size: 20px;
	}

	.hero-overlay {
		background:
			linear-gradient(90deg, rgba(5, 5, 6, 0.92) 0%, rgba(5, 5, 6, 0.72) 100%),
			linear-gradient(0deg, rgba(5, 5, 6, 0.76) 0%, rgba(5, 5, 6, 0.14) 100%);
	}

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

	.hero-bottom-note span {
		padding: 10px 16px;
	}

	.section-inner {
		padding: 58px 0;
	}

	.split-layout,
	.location-panel,
	.single-hero-inner,
	.single-layout,
	.social-hub,
	.footer-main {
		grid-template-columns: 1fr;
	}

	.reverse-on-mobile .section-copy {
		order: -1;
	}

	.single-sidebar {
		position: static;
	}

	.footer-cta {
		display: grid;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 15px;
	}

	h1 {
		font-size: 36px;
	}

	h2 {
		font-size: 28px;
	}

	.site-header-inner,
	.section-inner,
	.hero-inner,
	.footer-cta,
	.footer-main,
	.footer-bottom {
		width: min(100% - 24px, var(--panthers-container));
	}

	.site-brand-text strong {
		max-width: 210px;
		white-space: normal;
		font-size: 13px;
	}

	.hero-inner h1 {
		font-size: 34px;
	}

	.hero-kicker {
		font-size: 21px;
	}

	.hero-actions,
	.section-actions,
	.panthers-card-actions,
	.footer-cta-actions {
		align-items: stretch;
		width: 100%;
	}

	.panthers-button {
		width: 100%;
		min-height: 48px;
	}

	.value-grid,
	.panthers-card-grid,
	.panthers-card-grid.two-column,
	.sponsor-wall,
	.panthers-contact-grid {
		grid-template-columns: 1fr;
	}

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

	.value-card span {
		margin-bottom: 22px;
	}

	.quote-card {
		padding: 26px;
	}

	.quote-card blockquote {
		font-size: 26px;
	}

	.entry-content {
		padding: 24px;
	}

	.social-hub {
		padding: 24px;
	}
}

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

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

	.reveal-on-scroll {
		opacity: 1;
		transform: none;
	}
}
