/*
Theme Name: BSC Rapid Chemnitz
Theme URI: https://www.bsc-rapid-chemnitz.de
Author: BSC Rapid Chemnitz
Description: A fast, responsive custom theme for BSC Rapid Chemnitz e. V. "Bold Sport / Stadium Energy" design — green-forward, diagonal section cuts, oversized numerals, kinetic motion.
Version: 3.1.1
Text Domain: bsc-rapid
*/

@font-face {
	font-family: "Anton";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("assets/fonts/anton-400.woff2") format("woff2");
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("assets/fonts/inter-var.woff2") format("woff2");
}

:root {
	--bg: #0f1012;
	--bg-deep: #0a0b0d;
	--bg-deepest: #060708;
	--surface: #16181c;
	--surface-2: #1f2228;
	--surface-3: #2a2e36;

	--ink: #f2f1ed;
	--ink-soft: rgba(242, 241, 237, 0.68);
	--ink-faint: rgba(242, 241, 237, 0.46);

	/* Brighter, louder green for the energetic variant */
	--green: #28d65d;
	--green-bright: #57f084;
	--green-deep: #0c8a3a;
	--green-darker: #07371b;
	--green-ink: #04140a;          /* near-black for text on green */
	--slab-ink: #05180c;
	--slab-ink-soft: rgba(5, 24, 12, 0.74);
	--green-glow: rgba(40, 214, 93, 0.28);

	--line: rgba(242, 241, 237, 0.10);
	--line-strong: rgba(242, 241, 237, 0.22);
	--white: #ffffff;

	--header-height: 92px;
	--gutter: clamp(1.25rem, 4vw, 4.5rem);
	--content: 1340px;
	--narrow: 1080px;

	--space-section: clamp(5rem, 9.5vw, 10rem);
	--skew-h: clamp(2.2rem, 5vw, 5rem);   /* diagonal cut height */
	--skew: -8deg;

	--r-sm: 6px;
	--r-md: 12px;
	--r-lg: 20px;

	--lh-display: 1.14;
	--display-headroom: 0.15em;

	--shadow-pop: 0 34px 80px -34px rgba(0, 0, 0, 0.94);
	--shadow-green: 0 24px 60px -24px var(--green-glow);

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--display: "Anton", "Arial Narrow", Impact, sans-serif;
	--body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	position: relative;
	margin: 0;
	overflow-x: clip;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.62;
	letter-spacing: -0.006em;
	font-feature-settings: "cv05", "ss01";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

body::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 9998;
	pointer-events: none;
	opacity: 0.028;
	mix-blend-mode: soft-light;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 140px 140px;
}

body.menu-is-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

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

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

:focus-visible {
	outline: 2px solid var(--green);
	outline-offset: 3px;
	border-radius: 2px;
}

.skip-link {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 1rem;
	padding: 0.8rem 1rem;
	background: var(--green);
	color: var(--green-ink);
	font-weight: 800;
	transform: translateY(-120%);
	transition: transform 180ms ease;
}

.skip-link:focus {
	transform: translateY(0);
}

/* Shared big display type (umlaut-safe) */
.hero h1,
.join h2,
.page-hero h1,
.display-title,
.place__content h2,
.site-footer h2 {
	font-family: var(--display);
	font-weight: 400;
	line-height: var(--lh-display);
	letter-spacing: -0.015em;
	text-transform: uppercase;
	text-wrap: balance;
	padding-top: var(--display-headroom);
}

/* Skewed green tag — the signature label of this variant */
.section-label,
.eyebrow {
	margin: 0 0 1.5rem;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	line-height: 1;
	text-transform: uppercase;
}

.section-label {
	position: relative;
	display: inline-block;
	padding: 0.62em 1em 0.58em;
	color: var(--green-ink);
	isolation: isolate;
}

.section-label::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--green);
	transform: skewX(var(--skew));
	box-shadow: var(--shadow-green);
}

/* Dark tag for use on green backgrounds */
.on-green .section-label,
.join .section-label,
.intro .section-label {
	color: var(--green);
}

.on-green .section-label::before,
.join .section-label::before,
.intro .section-label::before {
	background: var(--slab-ink);
	box-shadow: none;
}

/* In the intro the label is a direct grid item; keep it sized to its text
   instead of being stretched to the full row height/column width. */
.intro .section-label {
	align-self: start;
	justify-self: start;
}

/* ---------------------------------------------------------------- Header */
.site-header {
	position: fixed;
	z-index: 1000;
	inset: 0 0 auto;
	height: var(--header-height);
	color: var(--ink);
	transition: background 320ms var(--ease), color 260ms ease, box-shadow 320ms ease, backdrop-filter 320ms ease;
}

.has-overlay-header .site-header {
	color: var(--white);
}

.site-header.is-scrolled {
	background: rgba(10, 11, 13, 0.74);
	box-shadow: 0 1px 0 var(--line), 0 18px 40px -30px rgba(0, 0, 0, 0.9);
	color: var(--ink);
	-webkit-backdrop-filter: blur(22px) saturate(1.2);
	backdrop-filter: blur(22px) saturate(1.2);
}

.menu-is-open .site-header {
	background: var(--bg-deep);
	box-shadow: 0 1px 0 var(--line);
	color: var(--ink);
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

.site-header__inner {
	width: min(100%, calc(var(--content) + (var(--gutter) * 2)));
	height: 100%;
	margin: auto;
	padding-inline: var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.brand__link,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
}

.brand__crest,
.custom-logo {
	width: 52px;
	height: 64px;
	object-fit: contain;
	transition: transform 360ms var(--ease);
}

.brand__link:hover .brand__crest {
	transform: rotate(-5deg) scale(1.05);
}

.brand__name {
	display: grid;
	line-height: 1;
	text-transform: uppercase;
}

.brand__name strong {
	font-family: var(--display);
	font-size: 1.42rem;
	font-weight: 400;
	letter-spacing: 0.02em;
}

.brand__name span {
	margin-top: 0.34rem;
	color: var(--ink-soft);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.24em;
}

.has-overlay-header .site-header:not(.is-scrolled) .brand__name span {
	color: rgba(255, 255, 255, 0.78);
}

.site-nav,
.menu {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2vw, 2.1rem);
}

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

.menu > li {
	position: relative;
}

.menu > li > a {
	position: relative;
	display: block;
	padding-block: 0.5rem;
	font-size: 0.73rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
}

.menu > li.menu-item-has-children > a {
	padding-right: 1.1em;
}

.menu > li.menu-item-has-children > a::before {
	position: absolute;
	right: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	content: "";
	opacity: 0.65;
	transform: translateY(-72%) rotate(45deg);
	transition: transform 250ms var(--ease);
}

.menu > li.menu-item-has-children:hover > a::before,
.menu > li.menu-item-has-children:focus-within > a::before {
	transform: translateY(-28%) rotate(225deg);
}

.menu > li > a::after {
	position: absolute;
	right: 1.1em;
	bottom: 0;
	left: 0;
	height: 3px;
	background: var(--green);
	content: "";
	transform: scaleX(0) skewX(var(--skew));
	transform-origin: right;
	transition: transform 280ms var(--ease);
}

.menu > li:not(.menu-item-has-children) > a::after {
	right: 0;
}

.menu > li > a:hover::after,
.menu > li.current-menu-item > a::after,
.menu > li.current-menu-ancestor > a::after {
	transform: scaleX(1) skewX(var(--skew));
	transform-origin: left;
}

.menu .sub-menu {
	position: absolute;
	z-index: 60;
	top: calc(100% + 6px);
	left: -1.1rem;
	min-width: 256px;
	margin: 0;
	padding: 0.55rem 0;
	list-style: none;
	border-radius: var(--r-md);
	background: var(--surface);
	box-shadow: var(--shadow-pop);
	border: 1px solid var(--line);
	border-top: 3px solid var(--green);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms;
}

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

.menu .sub-menu a {
	display: block;
	padding: 0.62rem 1.5rem;
	color: var(--ink-soft);
	font-size: 0.71rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: background 160ms ease, color 160ms ease, padding 220ms var(--ease);
}

.menu .sub-menu a:hover {
	padding-left: 1.85rem;
	background: var(--surface-2);
	color: var(--green);
}

.menu-toggle {
	display: none;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.menu-toggle i,
.menu-toggle i::before {
	display: block;
	width: 27px;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform 240ms ease;
}

.menu-toggle i {
	margin-left: 0.65rem;
}

.menu-toggle i::before {
	transform: translateY(7px);
}

.menu-toggle[aria-expanded="true"] i {
	transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i::before {
	transform: rotate(-90deg);
}

/* ---------------------------------------------------------------- Buttons */
.button {
	position: relative;
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.9rem 1.7rem;
	border: 0;
	background: var(--green);
	color: var(--green-ink);
	font-size: 0.73rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
	clip-path: polygon(0.6rem 0, 100% 0, calc(100% - 0.6rem) 100%, 0 100%);
	box-shadow: var(--shadow-green);
	transition: background 200ms ease, color 200ms ease, transform 240ms var(--ease), box-shadow 240ms ease;
}

.button:hover {
	background: var(--green-bright);
	transform: translateY(-3px);
	box-shadow: 0 26px 50px -20px var(--green-glow);
}

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

.button--small {
	min-height: 46px;
	padding-inline: 1.3rem;
}

.button--ghost {
	background: transparent;
	color: var(--ink);
	box-shadow: inset 0 0 0 1px var(--line-strong);
	clip-path: none;
}

.button--ghost:hover {
	background: rgba(40, 214, 93, 0.12);
	box-shadow: inset 0 0 0 1px var(--green);
	color: var(--ink);
}

.button--light {
	background: var(--ink);
	color: var(--bg-deepest);
	box-shadow: none;
}

.button--light:hover {
	background: var(--white);
	color: var(--bg-deepest);
	transform: translateY(-3px);
}

.button--dark {
	background: var(--bg-deepest);
	color: var(--ink);
	box-shadow: none;
}

.button--dark:hover {
	background: #000;
	color: var(--white);
	transform: translateY(-3px);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	border-bottom: 2px solid var(--line-strong);
	padding-bottom: 0.2rem;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: border-color 220ms ease, color 220ms ease;
}

.text-link:hover {
	border-color: var(--green);
	color: var(--green);
}

.text-link span {
	transition: transform 240ms var(--ease);
}

.text-link:hover span {
	transform: translate(4px, -4px);
}

.text-link--light {
	color: var(--white);
}

/* ---------------------------------------------------------------- Hero */
.hero {
	position: relative;
	min-height: 100svh;
	overflow: hidden;
	background: var(--bg-deepest);
	color: var(--white);
}

.hero__media,
.hero__media::before,
.hero__media::after {
	position: absolute;
	inset: 0;
}

.hero__media::before,
.hero__media::after {
	z-index: 1;
	content: "";
}

.hero__media::before {
	background:
		linear-gradient(100deg, rgba(4, 16, 9, 0.92) 0%, rgba(5, 20, 11, 0.62) 40%, rgba(6, 7, 8, 0.2) 72%, rgba(6, 7, 8, 0.55) 100%);
}

.hero__media::after {
	background:
		linear-gradient(0deg, var(--bg) 0.5%, rgba(6, 7, 8, 0.2) 28%, transparent 55%),
		repeating-linear-gradient(115deg, transparent 0 38px, rgba(40, 214, 93, 0.05) 38px 40px);
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 53% center;
	filter: saturate(1.02) contrast(1.05);
	animation: hero-scale 1.9s var(--ease) both;
}

.hero__inner {
	position: relative;
	z-index: 2;
	width: min(100%, calc(var(--content) + (var(--gutter) * 2)));
	min-height: 100svh;
	margin: auto;
	padding: calc(var(--header-height) + 8vh) var(--gutter) 2rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.hero__content {
	width: min(900px, 100%);
	padding-bottom: clamp(3rem, 8vh, 7rem);
}

.hero__kicker {
	position: relative;
	display: inline-block;
	margin: 0 0 1.7rem;
	padding: 0.62em 1em 0.58em;
	color: var(--green-ink);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	line-height: 1;
	text-transform: uppercase;
	isolation: isolate;
}

.hero__kicker::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--green);
	transform: skewX(var(--skew));
	box-shadow: var(--shadow-green);
}

.hero h1 {
	margin: 0;
	font-size: clamp(4rem, 10.5vw, 11rem);
}

.hero h1 em,
.join h2 em {
	color: var(--green);
	font-style: normal;
}

.hero__intro {
	max-width: 42ch;
	margin: 1.9rem 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1.04rem, 1.4vw, 1.26rem);
	line-height: 1.58;
	overflow-wrap: anywhere;
}

.hero__actions {
	margin-top: 2.6rem;
	display: flex;
	align-items: center;
	gap: 1.8rem;
}

.hero__rail {
	margin: 0;
	padding-top: 1.4rem;
	border-top: 2px solid rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

/* ---------------------------------------------------------------- Sections */
.section {
	position: relative;
	padding: var(--space-section) var(--gutter);
}

.section__inner {
	width: min(100%, var(--content));
	margin: auto;
}

.display-title {
	max-width: 16ch;
	margin: 0;
	font-size: clamp(3rem, 6.6vw, 6.8rem);
}

/* Intro = GREEN SLAB cutting diagonally up into the hero */
.intro {
	position: relative;
	z-index: 3;
	margin-top: calc(var(--skew-h) * -1);
	padding-top: calc(clamp(2.75rem, 5vw, 5rem) + var(--skew-h));
	padding-bottom: clamp(2.75rem, 5vw, 5rem);
	background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
	color: var(--slab-ink);
	clip-path: polygon(0 var(--skew-h), 100% 0, 100% 100%, 0 100%);
	overflow: hidden;
}

/* Subtle diagonal texture so the open green field reads with depth */
.intro::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: repeating-linear-gradient(115deg, transparent 0 46px, rgba(5, 24, 12, 0.045) 46px 48px);
}

.intro__grid {
	position: relative;
	z-index: 1;
	display: block;
}

/* Headline + lead share the top across the full slab width */
.intro__grid > div:not(.stats) {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 1.2rem clamp(2rem, 5vw, 5rem);
	align-items: end;
	margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
}

.intro .display-title {
	grid-column: 1;
	max-width: 22ch;
	margin: 0;
	font-size: clamp(2.2rem, 4vw, 4.2rem);
	color: var(--slab-ink);
}

.intro__copy {
	grid-column: 2;
	max-width: 36ch;
	margin: 0 0 0.6rem;
	color: var(--slab-ink-soft);
	font-size: clamp(1.05rem, 1.4vw, 1.3rem);
	line-height: 1.5;
	font-weight: 500;
}

/* Stats reworked into bold dark tiles: one featured number + two stacked */
.stats {
	position: relative;
	z-index: 1;
	grid-column: auto;
	margin-top: 0;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: clamp(0.9rem, 1.6vw, 1.4rem);
	border-top: 0;
}

.stats p {
	position: relative;
	margin: 0;
	padding: clamp(1.5rem, 2.4vw, 2.4rem);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 0.4rem;
	min-height: clamp(104px, 8.5vw, 132px);
	background: var(--slab-ink);
	color: var(--white);
	border: 0;
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--shadow-pop);
	transition: transform 380ms var(--ease);
}

.stats p::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 4px;
	background: var(--green);
}

/* Featured first stat fills the left column at full height. The glow is a
   corner radial baked into the background so it fades fully to transparent
   (no visible box edge cutting across the tile). */
.stats p:first-child {
	grid-row: 1 / span 2;
	justify-content: flex-end;
	background:
		radial-gradient(125% 90% at 82% 116%, var(--green-glow), transparent 60%),
		var(--slab-ink);
}

.stats p:hover {
	transform: translateY(-6px);
}

.stats strong {
	position: relative;
	font-family: var(--display);
	font-size: clamp(2.3rem, 3vw, 3.2rem);
	font-weight: 400;
	line-height: 0.84;
	letter-spacing: -0.02em;
	color: var(--green);
	font-feature-settings: "tnum";
}

.stats p:first-child strong {
	font-size: clamp(3.4rem, 5.5vw, 5.6rem);
}

.stats span {
	position: relative;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.section--dark {
	background: var(--bg-deep);
}

.section-heading {
	margin-bottom: clamp(3rem, 6vw, 5.5rem);
	display: grid;
	grid-template-columns: 1.6fr 0.7fr;
	align-items: end;
	gap: 2rem;
}

.section-heading__copy {
	margin: 0 0 0.4rem;
	color: var(--ink-soft);
	font-size: 1.05rem;
	line-height: 1.6;
}

.section-heading--inline {
	grid-template-columns: 1fr auto;
	align-items: end;
}

.section-heading--inline .text-link {
	margin-bottom: 0.7rem;
}

/* Sports — oversized ghost numerals + diagonal energy */
.sports__layout {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: clamp(2rem, 6vw, 6rem);
	align-items: start;
}

.sports__visual {
	position: sticky;
	top: calc(var(--header-height) + 2rem);
	min-height: 600px;
	overflow: hidden;
	border-radius: var(--r-lg);
	clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
	box-shadow: var(--shadow-pop);
}

.sports__visual::after {
	position: absolute;
	inset: auto 0 0;
	height: 55%;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
	content: "";
}

.sports__visual img {
	width: 100%;
	height: 600px;
	object-fit: cover;
	object-position: center;
	filter: saturate(1);
	transition: transform 800ms var(--ease);
}

.sports__visual:hover img {
	transform: scale(1.05);
}

.sports__visual span {
	position: absolute;
	z-index: 2;
	right: 1.7rem;
	bottom: 2rem;
	left: 1.7rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.sports__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sports__list li {
	border-top: 2px solid var(--line);
}

.sports__list li:last-child {
	border-bottom: 2px solid var(--line);
}

.sports__list a {
	position: relative;
	min-height: 160px;
	padding: 2rem 1rem 2rem 0;
	display: grid;
	grid-template-columns: minmax(72px, auto) 1fr auto;
	align-items: center;
	gap: 1.4rem;
	overflow: hidden;
	transition: padding 420ms var(--ease);
}

.sports__list a::before {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	background: linear-gradient(90deg, rgba(40, 214, 93, 0.14), transparent);
	content: "";
	transition: width 420ms var(--ease);
}

.sports__list a:hover {
	padding-left: 1.6rem;
}

.sports__list a:hover::before {
	width: 100%;
}

.sports__number {
	position: relative;
	align-self: center;
	font-family: var(--display);
	font-size: clamp(2.6rem, 5vw, 4.6rem);
	font-weight: 400;
	line-height: 0.8;
	letter-spacing: -0.02em;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--green);
	text-stroke: 1.5px var(--green);
	font-feature-settings: "tnum";
	transition: color 280ms ease;
}

.sports__list a:hover .sports__number {
	color: var(--green);
}

.sports__text {
	position: relative;
	display: grid;
	gap: 0.55rem;
}

.sports__text strong {
	font-family: var(--display);
	font-size: clamp(2.2rem, 4.4vw, 4.6rem);
	font-weight: 400;
	letter-spacing: 0.005em;
	line-height: 0.96;
	text-transform: uppercase;
	transition: transform 280ms var(--ease), color 250ms ease;
}

.sports__list a:hover .sports__text strong {
	color: var(--green);
	transform: translateX(4px);
}

.sports__text small {
	max-width: 52ch;
	color: var(--ink-faint);
	font-size: 0.9rem;
	line-height: 1.55;
}

.sports__arrow {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	background: var(--surface-2);
	color: var(--ink-faint);
	font-size: 1.2rem;
	clip-path: polygon(0.4rem 0, 100% 0, calc(100% - 0.4rem) 100%, 0 100%);
	transition: transform 280ms var(--ease), color 250ms ease, background 250ms ease;
}

.sports__list a:hover .sports__arrow {
	color: var(--green-ink);
	background: var(--green);
	transform: translate(4px, -4px);
}

/* News — first card featured, image-led */
.news {
	background: var(--bg);
}

.news__grid,
.archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(2.5rem, 4vw, 3.6rem) clamp(1.5rem, 3vw, 2.6rem);
}

.news-card {
	position: relative;
	display: flex;
	flex-direction: column;
}

.news-card__image {
	position: relative;
	aspect-ratio: 4 / 3;
	display: block;
	overflow: hidden;
	border-radius: var(--r-md);
	background: var(--surface);
}

.news-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(6, 7, 8, 0.55), transparent 55%);
	opacity: 0;
	transition: opacity 300ms ease;
}

.news-card:hover .news-card__image::after {
	opacity: 1;
}

.news-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 800ms var(--ease);
}

.news-card:hover .news-card__image img {
	transform: scale(1.06);
}

.news-card__meta {
	margin-top: 1.3rem;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	color: var(--ink-faint);
	font-size: 0.61rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.news-card__meta span {
	color: var(--green);
}

.news-card h3 {
	margin: 0.9rem 0 0;
	font-family: var(--display);
	font-size: clamp(1.7rem, 2.5vw, 2.5rem);
	font-weight: 400;
	letter-spacing: 0.005em;
	line-height: 1.04;
	text-transform: uppercase;
	text-wrap: balance;
}

.news-card h3 a {
	transition: color 200ms ease;
}

.news-card h3 a:hover {
	color: var(--green);
}

.news-card p {
	margin: 0.9rem 0 1.3rem;
	color: var(--ink-soft);
	font-size: 0.92rem;
	line-height: 1.62;
}

.news-card .text-link {
	margin-top: auto;
	align-self: flex-start;
}

/* Place / stadium — diagonal cut between media and content */
.place {
	min-height: min(840px, 84svh);
	padding: 0;
	display: grid;
	grid-template-columns: 1.32fr 0.68fr;
	background: var(--bg-deep);
}

.place__media {
	position: relative;
	min-height: 640px;
	overflow: hidden;
}

.place__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1000ms var(--ease);
}

.place:hover .place__media img {
	transform: scale(1.04);
}

.place__content {
	position: relative;
	padding: clamp(3rem, 7vw, 6.5rem);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	background: var(--bg-deepest);
}

.place__content::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -6vw;
	width: 12vw;
	background: var(--bg-deepest);
	transform: skewX(var(--skew));
	z-index: 1;
}

.place__content > * {
	position: relative;
	z-index: 2;
}

.place__content h2 {
	margin: 0;
	font-size: clamp(3.2rem, 6.4vw, 6.4rem);
}

.place__content p:not(.section-label) {
	max-width: 38ch;
	margin: 1.6rem 0 2.2rem;
	color: var(--ink-soft);
	line-height: 1.62;
}

/* Join — bold deep-green block, diagonal top, motion stripes */
.join {
	position: relative;
	overflow: hidden;
	margin-top: calc(var(--skew-h) * -1);
	padding-top: calc(var(--space-section) + var(--skew-h));
	background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-darker) 100%);
	color: var(--white);
	clip-path: polygon(0 var(--skew-h), 100% 0, 100% 100%, 0 100%);
}

.join::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(115deg, transparent 0 46px, rgba(255, 255, 255, 0.035) 46px 48px);
	pointer-events: none;
}

.join::after {
	position: absolute;
	right: -5vw;
	bottom: -28%;
	width: min(48vw, 640px);
	height: min(62vw, 820px);
	background: url("assets/images/logo.png") center / contain no-repeat;
	content: "";
	opacity: 0.1;
	transform: rotate(8deg);
}

.join__inner {
	position: relative;
	z-index: 1;
}

.join .section-label {
	color: var(--green-bright);
}

.join .section-label::before {
	background: rgba(4, 20, 10, 0.85);
}

.join h2 {
	margin: 0;
	font-size: clamp(4.6rem, 11.5vw, 12rem);
}

.join h2 em {
	color: var(--green-bright);
}

.join p:not(.section-label) {
	max-width: 46ch;
	margin: 1.8rem 0 2.2rem;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(1.02rem, 1.5vw, 1.32rem);
	line-height: 1.54;
}

/* ---------------------------------------------------------------- Footer */
.site-footer {
	position: relative;
	padding: clamp(4rem, 8vw, 7.5rem) var(--gutter) 2rem;
	background: var(--bg-deepest);
	color: var(--ink);
}

.site-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--green);
}

.site-footer__top,
.site-footer__grid,
.site-footer__base {
	width: min(100%, var(--content));
	margin-inline: auto;
}

.site-footer__top {
	padding-bottom: clamp(3rem, 6vw, 5rem);
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	border-bottom: 1px solid var(--line);
}

.site-footer .eyebrow {
	display: inline-block;
	margin-bottom: 1rem;
	color: var(--green);
}

.site-footer h2 {
	max-width: 16ch;
	margin: 0;
	font-size: clamp(3rem, 5.6vw, 6rem);
}

.site-footer__grid {
	padding-block: clamp(3rem, 5vw, 4.5rem);
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 2.5rem 2rem;
}

.site-footer__brand {
	display: grid;
	gap: 1.2rem;
	align-content: start;
}

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

.site-footer__brand p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.84rem;
	line-height: 1.9;
}

.site-footer__brand a:hover {
	color: var(--green);
}

.footer-col h3 {
	margin: 0 0 1.3rem;
	color: var(--green);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.footer-col ul {
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.7rem;
	list-style: none;
}

.footer-col a {
	color: var(--ink-soft);
	font-size: 0.88rem;
	transition: color 180ms ease, padding-left 220ms var(--ease);
}

.footer-col a:hover {
	padding-left: 0.35rem;
	color: var(--green);
}

.site-footer__base {
	padding-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	border-top: 1px solid var(--line);
}

.site-footer__base p {
	margin: 0;
	color: var(--ink-faint);
	font-size: 0.72rem;
	letter-spacing: 0.04em;
}

/* ---------------------------------------------- Content templates / legacy */
.content-shell {
	min-height: 70svh;
	padding: calc(var(--header-height) + clamp(3rem, 7vw, 6.5rem)) var(--gutter) clamp(5rem, 9vw, 9rem);
	background: var(--bg);
}

.content-shell > *,
.article {
	width: min(100%, var(--content));
	margin-inline: auto;
}

.page-hero {
	max-width: var(--narrow);
	margin-bottom: clamp(2.4rem, 5vw, 4rem);
}

.breadcrumb {
	margin: 0 0 1.6rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem;
	color: var(--ink-faint);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.breadcrumb a:hover {
	color: var(--green);
}

.breadcrumb span[aria-current] {
	color: var(--ink);
}

.breadcrumb .sep {
	color: var(--green);
}

.section-nav {
	margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
	padding-bottom: 1.8rem;
	border-bottom: 1px solid var(--line);
}

.section-nav__label {
	display: block;
	margin-bottom: 1rem;
	color: var(--green);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.section-nav ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	list-style: none;
}

.section-nav a {
	display: inline-flex;
	padding: 0.62rem 1.2rem;
	background: var(--surface);
	color: var(--ink-soft);
	font-size: 0.71rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	clip-path: polygon(0.4rem 0, 100% 0, calc(100% - 0.4rem) 100%, 0 100%);
	transition: background 200ms ease, color 200ms ease, transform 200ms var(--ease);
}

.section-nav a:hover {
	background: var(--surface-2);
	color: var(--ink);
	transform: translateY(-2px);
}

.section-nav a.is-current {
	background: var(--green);
	color: var(--green-ink);
}

.page-links {
	margin-top: 2.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
}

.page-links a,
.page-links > span {
	min-width: 40px;
	padding: 0.45rem 0.65rem;
	display: inline-grid;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
}

.page-links a:hover {
	border-color: var(--green);
	color: var(--green);
}

.page-hero h1 {
	font-size: clamp(3.4rem, 8.4vw, 8.4rem);
	overflow-wrap: anywhere;
}

.page-hero > p:not(.section-label) {
	color: var(--ink-soft);
	font-size: 1.1rem;
}

.page-hero__meta {
	margin: 1.4rem 0 0;
	color: var(--green);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.page-hero--center {
	text-align: center;
	margin-inline: auto;
}

.page-hero--center .button {
	margin-top: 1rem;
}

.article__hero {
	width: min(100%, 1200px);
	max-height: 720px;
	margin: 0 auto clamp(3rem, 6vw, 5rem);
	overflow: hidden;
	border-radius: var(--r-lg);
}

.article__hero img {
	width: 100%;
	max-height: 720px;
	object-fit: cover;
}

.article__content {
	max-width: 74ch;
	margin-inline: 0;
	color: var(--ink-soft);
	font-size: clamp(1.04rem, 1.25vw, 1.18rem);
	line-height: 1.78;
}

.article__content > * + * {
	margin-top: 1.4em;
}

.article__content > p:first-of-type {
	color: var(--ink);
	font-size: 1.1em;
	line-height: 1.7;
}

.article__content h2,
.article__content h3,
.article__content h4 {
	margin-top: 2em;
	margin-bottom: 0.6em;
	color: var(--ink);
	line-height: 1.18;
	letter-spacing: -0.015em;
	text-wrap: balance;
}

.article__content h2 {
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	font-weight: 800;
}

.article__content h2::after {
	display: block;
	width: 54px;
	height: 4px;
	margin-top: 0.7rem;
	background: var(--green);
	content: "";
	transform: skewX(var(--skew));
}

.article__content h3 {
	font-size: clamp(1.3rem, 2vw, 1.7rem);
	font-weight: 700;
}

.article__content h4 {
	font-size: 1.16rem;
	font-weight: 700;
}

.article__content ul,
.article__content ol {
	padding-left: 1.3em;
}

.article__content li + li {
	margin-top: 0.45em;
}

.article__content li::marker {
	color: var(--green);
}

.article__content blockquote {
	margin-inline: 0;
	padding: 0.6rem 0 0.6rem 1.7rem;
	border-left: 4px solid var(--green);
	color: var(--ink);
	font-size: 1.15em;
}

.article__content hr {
	margin-block: 2.6em;
	border: 0;
	border-top: 1px solid var(--line);
}

.article__content a {
	color: var(--green);
	text-decoration: underline;
	text-decoration-color: rgba(40, 214, 93, 0.4);
	text-underline-offset: 0.18em;
	transition: text-decoration-color 200ms ease;
}

.article__content a:hover {
	text-decoration-color: var(--green);
}

.article__content img {
	height: auto;
	border-radius: var(--r-md);
}

.article__content figure,
.article__content .wp-block-image {
	margin-inline: 0;
}

.article__content figcaption {
	margin-top: 0.6rem;
	color: var(--ink-faint);
	font-size: 0.82rem;
}

.article__content table {
	display: table;
	width: 100% !important;
	max-width: 100%;
	height: auto !important;
	margin-block: 0;
	border: 1px solid var(--line) !important;
	border-radius: var(--r-md);
	border-collapse: separate !important;
	border-spacing: 0;
	overflow: hidden;
	background: var(--surface);
	color: var(--ink);
	font-size: 0.94rem;
}

.article__content table + table {
	margin-top: -1px;
}

.article__content tr {
	border: 0 !important;
}

.article__content th,
.article__content td {
	height: auto !important;
	padding: 0.78rem 1rem !important;
	border: 0 !important;
	border-bottom: 1px solid var(--line) !important;
	border-right: 1px solid var(--line) !important;
	background-image: none !important;
	color: var(--ink);
	vertical-align: middle;
	text-align: left;
}

.article__content td:last-child,
.article__content th:last-child {
	border-right: 0 !important;
}

.article__content tr:last-child td {
	border-bottom: 0 !important;
}

.article__content tbody tr,
.article__content td {
	background-color: transparent !important;
}

.article__content tbody tr:nth-child(even) {
	background-color: rgba(255, 255, 255, 0.035) !important;
}

.article__content th {
	background: var(--surface-2) !important;
	color: var(--ink) !important;
	font-weight: 700;
	letter-spacing: 0.02em;
}

@media (max-width: 600px) {
	.article__content table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	/* Keep cells on one line so the table scrolls instead of squishing
	   legacy schedule/contact data into unreadable stacks. */
	.article__content th,
	.article__content td {
		white-space: nowrap;
	}
}

.article__content iframe {
	max-width: 100%;
	border-radius: var(--r-md);
}

.article__content [style*="background"] {
	background-color: transparent !important;
}

.article__content [style*="color:#000"],
.article__content [style*="color: #000"],
.article__content [style*="color:black"],
.article__content [style*="color: black"],
.article__content [style*="color:#0000"],
.article__content [style*="color: #0000"],
.article__content [style*="color:#111"],
.article__content [style*="color:#222"],
.article__content [style*="color:#333"] {
	color: var(--ink) !important;
}

/* Contact Form 7 */
.wpcf7 {
	max-width: 680px;
	margin-top: 2.5rem;
	padding: clamp(1.6rem, 3vw, 2.6rem);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--surface);
	box-shadow: var(--shadow-pop);
}

.wpcf7 p {
	margin: 0 0 1.1rem;
}

.wpcf7 label {
	display: block;
	color: var(--ink);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.6;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	margin-top: 0.45rem;
	padding: 0.85rem 1rem;
	border: 1px solid var(--line-strong);
	border-radius: var(--r-sm);
	background: var(--bg-deep);
	color: var(--ink);
	font: inherit;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
	color: var(--ink-faint);
}

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

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
	border-color: var(--green);
	outline: none;
	box-shadow: 0 0 0 3px rgba(40, 214, 93, 0.2);
}

.wpcf7-form input[type="submit"] {
	min-height: 54px;
	margin-top: 0.5rem;
	padding: 0.9rem 2rem;
	border: 0;
	background: var(--green);
	color: var(--green-ink);
	font-size: 0.73rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	clip-path: polygon(0.6rem 0, 100% 0, calc(100% - 0.6rem) 100%, 0 100%);
	transition: background 220ms ease, transform 220ms var(--ease);
}

.wpcf7-form input[type="submit"]:hover {
	background: var(--green-bright);
	transform: translateY(-3px);
}

.wpcf7-form .wpcf7-list-item {
	display: inline-block;
	margin: 0.2rem 1rem 0.2rem 0;
}

.wpcf7-not-valid-tip {
	color: #ff6b5e;
	font-size: 0.82rem;
}

.wpcf7-response-output {
	margin: 1rem 0 0 !important;
	padding: 0.85rem 1rem !important;
	border-width: 1px !important;
	border-radius: var(--r-sm);
	color: var(--ink);
	font-size: 0.9rem;
}

.wpcf7 .wpcf7-spinner {
	margin-left: 0.6rem;
}

/* Archive + pagination */
.archive-grid {
	width: min(100%, var(--content));
	margin-inline: auto;
}

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

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.page-numbers {
	min-width: 44px;
	min-height: 44px;
	padding: 0.5rem;
	display: grid;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	color: var(--ink-soft);
	font-size: 0.75rem;
	font-weight: 800;
	transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.page-numbers.current {
	border-color: var(--green);
	background: var(--green);
	color: var(--green-ink);
}

.page-numbers:hover {
	border-color: var(--green);
	color: var(--ink);
}

/* ---------------------------------------------------------------- Motion */
.reveal {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
}

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

.news__grid .reveal:nth-child(2),
.archive-grid .reveal:nth-child(2) { transition-delay: 90ms; }
.news__grid .reveal:nth-child(3),
.archive-grid .reveal:nth-child(3) { transition-delay: 180ms; }
.archive-grid .reveal:nth-child(4) { transition-delay: 90ms; }
.archive-grid .reveal:nth-child(5) { transition-delay: 180ms; }
.archive-grid .reveal:nth-child(6) { transition-delay: 270ms; }

.sports__list li:nth-child(2) { transition-delay: 90ms; }
.sports__list li:nth-child(3) { transition-delay: 180ms; }
.sports__list li:nth-child(4) { transition-delay: 270ms; }

@keyframes hero-scale {
	from { opacity: 0; transform: scale(1.07); }
	to { opacity: 1; transform: scale(1); }
}

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

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

/* ---------------------------------------------------------------- Responsive */
@media (max-width: 1080px) {
	:root {
		--header-height: 78px;
	}

	.brand__crest,
	.custom-logo {
		width: 44px;
		height: 54px;
	}

	.menu-toggle {
		position: absolute;
		top: 50%;
		right: var(--gutter);
		display: inline-flex;
		align-items: center;
		transform: translateY(-50%);
	}

	.site-nav {
		position: fixed;
		top: var(--header-height);
		right: 0;
		bottom: 0;
		left: 0;
		height: auto;
		padding: 1.8rem var(--gutter) 2.5rem;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 1.1rem;
		overflow-y: auto;
		overscroll-behavior: contain;
		background: var(--bg-deep);
		color: var(--ink);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-10px);
		transition: opacity 220ms ease, transform 300ms var(--ease);
	}

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

	.site-nav .menu {
		display: block;
		width: 100%;
		overflow-y: auto;
	}

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

	.site-nav .menu > li > a {
		padding: 0.6rem 0 0.65rem;
		font-family: var(--display);
		font-size: clamp(2rem, 7vw, 3rem);
		font-weight: 400;
		letter-spacing: 0;
		line-height: 1.1;
		white-space: normal;
	}

	.site-nav .menu > li > a::after {
		display: none;
	}

	.site-nav .menu > li.menu-item-has-children > a::before {
		display: none;
	}

	.site-nav .menu .sub-menu {
		position: static;
		min-width: 0;
		margin: 0.2rem 0 0.9rem;
		padding: 0 0 0 0.1rem;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		columns: 2;
		column-gap: 1.2rem;
	}

	.site-nav .menu .sub-menu li {
		break-inside: avoid;
	}

	.site-nav .menu .sub-menu a {
		padding: 0.38rem 0;
		color: var(--ink-faint);
		font-size: 0.92rem;
		font-weight: 700;
		letter-spacing: 0.06em;
	}

	.site-nav .menu .sub-menu a:hover {
		padding-left: 0;
		background: transparent;
		color: var(--green);
	}

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

	.place {
		grid-template-columns: 1.05fr 0.95fr;
	}

	.place__content::before {
		left: -4vw;
		width: 8vw;
	}

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

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

@media (max-width: 820px) {
	:root {
		--skew-h: 2.2rem;
	}

	.hero__media::before {
		background: linear-gradient(0deg, rgba(5, 18, 10, 0.96) 0%, rgba(5, 18, 10, 0.4) 70%);
	}

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

	.hero__content {
		padding-bottom: 3rem;
	}

	.hero h1,
	.join h2 {
		font-size: clamp(3.6rem, 16vw, 6.6rem);
	}

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

	.hero__rail {
		white-space: nowrap;
		overflow: hidden;
	}

	.intro__grid,
	.section-heading,
	.sports__layout {
		grid-template-columns: 1fr;
	}

	.intro__grid > div:not(.stats) {
		grid-template-columns: 1fr;
	}

	.intro .display-title,
	.intro__copy {
		grid-column: auto;
	}

	.intro__copy {
		margin-top: 0.4rem;
	}

	.stats {
		grid-column: 1;
	}

	.section-heading__copy {
		max-width: 540px;
	}

	.sports__visual {
		position: relative;
		top: auto;
		min-height: 420px;
	}

	.sports__visual img {
		height: 420px;
	}

	.news__grid,
	.archive-grid {
		grid-template-columns: 1fr 1fr;
	}

	.news__grid .news-card:first-child,
	.archive-grid .news-card:first-child {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.news__grid .news-card:first-child .news-card__image {
		aspect-ratio: 16 / 8;
	}

	.place {
		min-height: 0;
		grid-template-columns: 1fr;
	}

	.place__media {
		min-height: 460px;
	}

	.place__content {
		padding: 3.5rem var(--gutter);
	}

	.place__content::before {
		display: none;
	}

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

@media (max-width: 580px) {
	:root {
		--gutter: 1.2rem;
	}

	.brand__name strong {
		font-size: 1.1rem;
	}

	.brand__name span {
		font-size: 0.54rem;
	}

	.menu-toggle span {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
	}

	.menu-toggle i {
		margin-left: 0;
	}

	.hero__inner {
		padding-bottom: 1.4rem;
	}

	.hero__intro {
		font-size: 0.96rem;
	}

	.display-title {
		font-size: clamp(3rem, 14vw, 4.6rem);
	}

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

	.stats p:first-child {
		grid-row: auto;
	}

	.stats strong {
		font-size: 3.6rem;
	}

	.stats p:first-child strong {
		font-size: 5rem;
	}

	.sports__list a {
		min-height: 0;
		padding-block: 1.6rem;
		grid-template-columns: minmax(52px, auto) 1fr auto;
		gap: 1rem;
	}

	.sports__text strong {
		font-size: 2.4rem;
	}

	.sports__text small {
		display: none;
	}

	.sports__arrow {
		width: 46px;
		height: 46px;
	}

	.section-heading--inline {
		grid-template-columns: 1fr;
	}

	.news__grid,
	.archive-grid {
		grid-template-columns: 1fr;
	}

	.news__grid .news-card:first-child .news-card__image {
		aspect-ratio: 4 / 3;
	}

	.place__media {
		min-height: 340px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem 1.5rem;
	}

	.content-shell {
		padding-top: calc(var(--header-height) + 2.5rem);
	}

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