/* Hallmark · macrostructure: Marquee Hero · tone: editorial-athletic · anchor hue: electric-blue
 * theme: custom (vibe: "warrior matchday, condensed, premium" · paper ink #0A1020 · accent blue #4775FF · Big Shoulders Display + Inter)
 * V2 direction recoloured: gold accent → vivid royal blue, per the blue-and-white brand.
 */

:root {
	--wf-ink: #0A1020;
	--wf-ink-2: #111A33;
	--wf-navy: #10204A;
	--wf-royal: #2E54C8;
	--wf-royal-deep: #1C3A8F;
	--wf-sky: #6E97EC;
	--wf-accent: #FF3D8B;
	--wf-accent-soft: #FFA6CC;
	--wf-blue: #4775FF;
	--wf-bone: #F4F1E9;
	--wf-bone-2: #EAE5D8;
	--wf-paper-ink: #14182A;
	--wf-steel: #8A93A6;
	--wf-slate: #444C60;

	--wf-wide: 1280px;
	--wf-pad: clamp(1.25rem, 5vw, 5rem);
	--wf-ease: cubic-bezier(0.22, 1, 0.36, 1);

	--wf-disp: var(--wp--preset--font-family--display);
	--wf-body: var(--wp--preset--font-family--body);
	--wf-logo: var(--wp--preset--font-family--logo);
}

/* ---------------- Base ---------------- */
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
	background: var(--wf-bone);
	color: var(--wf-ink);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
::selection { background: var(--wf-accent); color: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.wf-main { overflow: clip; }

/* No gap/padding above the fixed-header hero — kill WordPress root block spacing
   so the dark hero sits flush to the top (removes the cream strip at the top). */
.wp-site-blocks { padding-top: 0 !important; }
.wp-site-blocks > * { margin-block-start: 0 !important; margin-block-end: 0 !important; }
.wp-block-template-part { margin: 0 !important; }
.wf-main { margin-top: 0 !important; }

.wf-disp,
.wf-hero__word,
.wf-creed__word,
.wf-creed__head,
.wf-sports__title,
.wf-disc__name,
.wf-disc__no,
.wf-creed__no,
.wf-stat__num,
.wf-about__head,
.wf-cta__title,
.wf-pagehero__title,
.wf-section__title,
.wf-card__title,
.wf-pagecta__title,
.wf-brand__name,
.wf-footer__big {
	font-family: var(--wf-disp);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.005em;
	line-height: 0.92;
}

.wf-kicker {
	font-family: var(--wf-body);
	font-weight: 700;
	font-size: 0.74rem;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--wf-accent);
	margin: 0 0 1.1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
}
.wf-kicker::before { content: ""; width: 30px; height: 2px; background: currentColor; }
.wf-kicker--gold { color: var(--wf-accent); }

/* ---------------- Marquee ---------------- */
.wf-marquee { overflow: hidden; width: 100%; user-select: none; }
.wf-marquee__track {
	display: flex;
	width: max-content;
	animation: wf-scrollx 34s linear infinite;
}
.wf-marquee__track > span {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	font-family: var(--wf-disp);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
.wf-marquee i { font-style: normal; color: var(--wf-accent); margin: 0 0.6em; font-size: 0.7em; }

.wf-marquee--hero {
	position: absolute;
	left: 0; bottom: 0;
	border-top: 1px solid rgba(255,255,255,0.12);
	padding: 0.85rem 0;
	z-index: 3;
}
.wf-marquee--hero .wf-marquee__track > span { font-size: clamp(1.1rem, 2.4vw, 1.6rem); color: rgba(255,255,255,0.85); }

.wf-marquee--cta .wf-marquee__track > span {
	font-size: clamp(3rem, 9vw, 8rem);
	color: transparent;
	-webkit-text-stroke: 1px rgba(156,182,255,0.45);
	margin-right: 0.4em;
}
.wf-marquee--cta { position: absolute; top: 8%; left: 0; z-index: 1; opacity: 0.5; }
.wf-marquee--cta .wf-marquee__track { animation-duration: 48s; }

/* ---------------- Buttons ---------------- */
.wf-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--wf-disp);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 1.15rem;
	line-height: 1;
	padding: 0.95rem 1.6rem;
	border: 2px solid transparent;
	transition: transform 0.25s var(--wf-ease), background 0.25s var(--wf-ease), color 0.25s var(--wf-ease), border-color 0.25s var(--wf-ease);
	will-change: transform;
}
.wf-btn__arr, .wf-btn span[aria-hidden] { transition: transform 0.25s var(--wf-ease); }
.wf-btn:hover .wf-btn__arr { transform: translateX(5px); }
.wf-btn--gold { background: var(--wf-accent); color: #fff; }
.wf-btn--gold:hover { background: var(--wf-royal); transform: translateY(-3px); }
.wf-btn--ghost {
	background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.4);
}
.wf-btn--ghost:hover { background: #fff; color: var(--wf-ink); border-color: #fff; transform: translateY(-3px); }
.wf-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.wf-btn--ghost-light:hover { background: #fff; color: var(--wf-ink); transform: translateY(-3px); }
.wf-btn--ink { background: var(--wf-ink); color: #fff; }
.wf-btn--ink:hover { background: var(--wf-accent); transform: translateY(-3px); }

/* Core-block button bridge — core/button puts the wf-btn--* class on the
   .wp-block-button wrapper, so map the design onto the inner link. Keeps the
   button fully editable (label + link) in the Site Editor. */
.wp-block-button[class*="wf-btn--"] > .wp-block-button__link {
	display: inline-flex; align-items: center; gap: 0.6rem;
	font-family: var(--wf-disp); font-weight: 700; text-transform: uppercase;
	letter-spacing: 0.05em; font-size: 1.15rem; line-height: 1;
	padding: 0.95rem 1.6rem; border: 2px solid transparent; border-radius: 0;
	transition: transform 0.25s var(--wf-ease), background 0.25s var(--wf-ease), color 0.25s var(--wf-ease), border-color 0.25s var(--wf-ease);
}
.wp-block-button.wf-btn--gold > .wp-block-button__link { background: var(--wf-accent); color: #fff; }
.wp-block-button.wf-btn--gold > .wp-block-button__link:hover { background: var(--wf-royal); transform: translateY(-3px); }
.wp-block-button.wf-btn--ghost > .wp-block-button__link { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.4); }
.wp-block-button.wf-btn--ghost > .wp-block-button__link:hover { background: #fff; color: var(--wf-ink); border-color: #fff; transform: translateY(-3px); }
.wp-block-button.wf-btn--ghost-light > .wp-block-button__link { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.wp-block-button.wf-btn--ghost-light > .wp-block-button__link:hover { background: #fff; color: var(--wf-ink); transform: translateY(-3px); }
.wp-block-button.wf-btn--ink > .wp-block-button__link { background: var(--wf-ink); color: #fff; }
.wp-block-button.wf-btn--ink > .wp-block-button__link:hover { background: var(--wf-accent); transform: translateY(-3px); }
/* arrow affordance on the primary (gold) + ink buttons, via pseudo so label stays clean */
.wp-block-button.wf-btn--gold > .wp-block-button__link::after,
.wp-block-button.wf-btn--ink > .wp-block-button__link::after { content: "\2192"; transition: transform 0.25s var(--wf-ease); }
.wp-block-button.wf-btn--gold > .wp-block-button__link:hover::after,
.wp-block-button.wf-btn--ink > .wp-block-button__link:hover::after { transform: translateX(5px); }

/* ---------------- Header ---------------- */
.wf-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	transition: background 0.35s var(--wf-ease), border-color 0.35s var(--wf-ease), box-shadow 0.35s var(--wf-ease);
	border-bottom: 1px solid transparent;
}
.wf-header.is-scrolled {
	background: rgba(10,16,32,0.9);
	backdrop-filter: saturate(150%) blur(14px);
	-webkit-backdrop-filter: saturate(150%) blur(14px);
	border-bottom-color: rgba(255,255,255,0.1);
}
.wf-header__inner {
	max-width: 1320px;
	margin-inline: auto;
	padding: 1rem clamp(1rem, 4vw, 2.5rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1rem, 3vw, 2.5rem);
}
.wf-brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.wf-brand__crest { display: block; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4)); }
.wf-brand__text { display: flex; flex-direction: column; line-height: 1; }
.wf-brand__name { font-family: var(--wf-logo); font-weight: 400; font-size: 1.4rem; color: #fff; letter-spacing: 0.01em; }
.wf-brand__tag {
	font-family: var(--wf-logo); font-weight: 400;
	font-size: 0.64rem; letter-spacing: 0.06em; text-transform: uppercase;
	color: var(--wf-accent-soft); margin-top: 0.4rem;
}
.wf-nav { display: flex; flex: 1; justify-content: center; }
.wf-nav__list { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.4rem); list-style: none; margin: 0; padding: 0; }
.wf-nav__list li { margin: 0; }
.wf-nav a {
	font-family: var(--wf-disp); font-weight: 600; text-transform: uppercase;
	letter-spacing: 0.08em; font-size: 1.05rem; color: rgba(255,255,255,0.8);
	position: relative; padding: 0.2rem 0; transition: color 0.2s var(--wf-ease);
}
.wf-nav a::after {
	content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 2px;
	background: var(--wf-accent); transform: scaleX(0); transform-origin: left;
	transition: transform 0.3s var(--wf-ease);
}
.wf-nav a:hover { color: #fff; }
.wf-nav a:hover::after { transform: scaleX(1); }
.wf-header__cta {
	font-family: var(--wf-disp); font-weight: 700; text-transform: uppercase;
	letter-spacing: 0.06em; font-size: 1.05rem; color: #fff;
	background: var(--wf-accent); padding: 0.6rem 1.2rem;
	display: inline-flex; gap: 0.5rem; align-items: center;
	transition: transform 0.25s var(--wf-ease), background 0.25s var(--wf-ease);
}
.wf-header__cta:hover { background: var(--wf-royal); transform: translateY(-2px); }

/* ---------------- Hero ---------------- */
.wf-hero {
	position: relative;
	min-height: 100svh;
	background: var(--wf-ink);
	color: #fff;
	overflow: hidden;
	display: flex;
	isolation: isolate;
}
/* editable background photo (core/image), styled as a full-bleed backdrop */
.wf-hero__photo { position: absolute; inset: 0; z-index: 0; margin: 0; }
.wf-hero__photo img {
	position: absolute; inset: 0; width: 100%; height: 100%;
	object-fit: cover; object-position: 70% 40%;
	filter: grayscale(0.35) contrast(1.08) brightness(0.7);
	opacity: 0.34;
	will-change: transform;
}
/* legibility wash */
.wf-hero::before {
	content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background:
		linear-gradient(90deg, var(--wf-ink) 8%, rgba(10,16,32,0.65) 48%, rgba(10,16,32,0.2) 100%),
		linear-gradient(0deg, var(--wf-ink) 4%, transparent 32%),
		radial-gradient(80% 60% at 78% 18%, rgba(71,117,255,0.4), transparent 60%);
}
/* crest watermark */
.wf-hero::after {
	content: ""; position: absolute; right: -8vw; top: 50%; transform: translateY(-50%);
	width: min(58vw, 760px); aspect-ratio: 392 / 572; z-index: 1; pointer-events: none;
	background: url("../images/warriors-crest.png") center / contain no-repeat;
	opacity: 0.1; filter: grayscale(0.2) brightness(1.4); mix-blend-mode: screen;
}
.wf-hero__grid {
	position: relative; z-index: 2;
	width: 100%;
	max-width: var(--wf-wide);
	margin-inline: auto;
	padding: clamp(7rem, 14vh, 10rem) var(--wf-pad) clamp(4.5rem, 9vh, 6.5rem);
	display: flex;
	flex-direction: column;
}
.wf-hero__eyebrow {
	display: inline-flex; align-items: center; gap: 0.8rem;
	font-family: var(--wf-body); font-weight: 700;
	font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--wf-accent-soft); margin: 0 0 auto;
}
/* towering title — three editable headings */
.wf-hero .wf-hero__title { display: block; margin: clamp(1.5rem, 4vh, 3rem) 0 0; }
.wf-hero__word {
	font-size: var(--wp--preset--font-size--display);
	line-height: 0.82; letter-spacing: -0.01em; margin: 0;
	overflow-wrap: anywhere; will-change: transform;
	opacity: 0; transform: translateY(40px);
	animation: wf-hero-rise 0.9s var(--wf-ease) forwards;
}
.wf-hero__word:nth-child(1) { animation-delay: 0.20s; }
.wf-hero__word:nth-child(2) { animation-delay: 0.34s; }
.wf-hero__word:nth-child(3) { animation-delay: 0.48s; }
.wf-hero__word--gold { color: var(--wf-accent); }
.wf-hero__lead {
	max-width: 38ch;
	font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
	line-height: 1.55;
	color: rgba(255,255,255,0.86);
	margin: 0;
}
.wf-hero .wf-hero__actions { margin-top: 2.2rem; gap: 0.9rem; flex-wrap: wrap; }
.wf-hero .wf-hero__foot { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-top: clamp(2rem, 5vh, 3.5rem); }
.wf-hero .wf-hero__meta {
	display: flex; gap: clamp(1.5rem, 4vw, 3rem); margin: clamp(2rem, 5vh, 3.5rem) 0 0;
	padding-bottom: 0.3rem; align-items: flex-start;
}
.wf-hero__meta-item { display: flex; flex-direction: column; gap: 0.35rem; }
.wf-hero__meta-dt {
	font-family: var(--wf-body); font-weight: 700; font-size: 0.66rem;
	letter-spacing: 0.2em; text-transform: uppercase; color: var(--wf-steel); margin: 0;
}
.wf-hero__meta-dd {
	margin: 0; font-family: var(--wf-disp); font-weight: 600; text-transform: uppercase;
	font-size: 1.15rem; letter-spacing: 0.03em; color: #fff;
}

/* ---------------- Creed ---------------- */
.wf-creed {
	max-width: var(--wf-wide);
	margin-inline: auto;
	padding: clamp(4.5rem, 9vw, 8rem) var(--wf-pad);
}
.wf-creed__intro { max-width: 30ch; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.wf-creed__head {
	font-size: clamp(2rem, 1.3rem + 3vw, 3.6rem);
	line-height: 0.98; margin: 0; letter-spacing: 0;
}
.wf-creed__list { list-style: none; margin: 0; padding: 0; counter-reset: wf-creed; }
/* native-block resets: neutralise the top margin WP block-gap injects, keep authored bottom margins */
.wf-creed__intro > *, .wf-creed__item > * { margin-block-start: 0; }
.wf-creed__item {
	display: grid;
	grid-template-columns: clamp(3.5rem, 7vw, 6rem) 1fr;
	grid-template-areas: "no word" ". body";
	gap: 0.4rem 1.5rem;
	align-items: start;
	padding: clamp(1.8rem, 3.5vw, 3rem) 0;
	border-top: 2px solid var(--wf-ink);
	position: relative;
}
.wf-creed__item:last-child { border-bottom: 2px solid var(--wf-ink); }
.wf-creed__item::before {
	counter-increment: wf-creed;
	content: counter(wf-creed, decimal-leading-zero);
	grid-area: no;
	font-family: var(--wf-disp);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.005em;
	line-height: 0.92;
	font-size: clamp(1.4rem, 2.5vw, 2.2rem);
	color: var(--wf-royal);
	padding-top: 0.5rem;
}
.wf-creed__word {
	grid-area: word;
	font-size: clamp(3.2rem, 1rem + 11vw, 9rem);
	letter-spacing: -0.015em;
	transition: transform 0.5s var(--wf-ease), color 0.4s var(--wf-ease);
	color: var(--wf-ink);
}
.wf-creed__word--gold { color: var(--wf-royal); }
.wf-creed__item:hover .wf-creed__word { transform: translateX(clamp(0.5rem, 2vw, 2rem)); color: var(--wf-accent); }
.wf-creed__item:hover .wf-creed__word--gold { color: var(--wf-accent); }
.wf-creed__body {
	grid-area: body;
	max-width: 46ch;
	font-size: 1.075rem; line-height: 1.6; color: var(--wf-slate); margin: 0;
	justify-self: end;
}

/* ---------------- Sports ---------------- */
.wf-sports {
	background: var(--wf-ink);
	color: #fff;
	padding: clamp(4.5rem, 9vw, 8rem) var(--wf-pad);
	position: relative;
	overflow: hidden;
}
.wf-sports::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(60% 90% at 100% 0%, rgba(71,117,255,0.3), transparent 55%);
	pointer-events: none;
}
.wf-sports__head, .wf-disc { max-width: var(--wf-wide); margin-inline: auto; position: relative; }
.wf-sports__head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.wf-sports__title { font-size: clamp(2.6rem, 1rem + 7vw, 6rem); margin: 0; }

/* Squad photo tiles */
.wf-squad-grid {
	max-width: var(--wf-wide); margin-inline: auto; position: relative;
	display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.5vw, 1.8rem);
	align-items: stretch;
}
/* neutralise WP block-gap so the 2nd grid item isn't pushed down 24px (mis-aligning the cards) */
.wf-squad-grid > * { margin-block-start: 0; }
.wf-squad { display: flex; flex-direction: column; height: 100%; }
.wf-squad > * { margin-block-start: 0; }
.wf-squad__media { position: relative; margin: 0 0 1.1rem; overflow: hidden; border-top: 4px solid var(--wf-accent); }
.wf-squad--netball .wf-squad__media { border-top-color: var(--wf-blue); }
.wf-squad__media img {
	display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
	transition: transform 0.6s var(--wf-ease);
}
.wf-squad:hover .wf-squad__media img { transform: scale(1.04); }
.wf-squad__media::before {
	content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background: linear-gradient(to top, rgba(10,16,32,0.55), transparent 42%);
}
.wf-squad__media::after {
	content: ""; position: absolute; left: 1rem; top: 1rem; z-index: 2;
	width: 56px; height: 56px; border-radius: 14px;
	background: #fff center / 32px no-repeat;
	box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}
.wf-squad--rugby .wf-squad__media::after { background-image: url("../images/rugby-ball.png"); }
.wf-squad--netball .wf-squad__media::after { background-image: url("../images/netball-ball.png"); }
.wf-squad__name { font-size: clamp(2.2rem, 1rem + 4.5vw, 3.6rem); line-height: 0.92; color: #fff; margin: 0 0 0.5rem; }
.wf-squad__meta {
	font-family: var(--wf-body); font-weight: 600; font-size: 0.78rem;
	letter-spacing: 0.05em; text-transform: uppercase; color: var(--wf-accent-soft); margin: 0 0 0.7rem;
}
.wf-squad__body { font-size: 1rem; line-height: 1.55; color: rgba(255,255,255,0.72); margin: 0 0 1.2rem; max-width: 44ch; }
/* pin the link to the bottom so both cards' CTAs align regardless of copy length */
.wf-squad__link { margin: auto 0 0; }
.wf-squad__link a {
	font-family: var(--wf-disp); font-weight: 700; text-transform: uppercase;
	letter-spacing: 0.05em; font-size: 1.05rem; color: var(--wf-accent); text-decoration: none;
	transition: color 0.25s var(--wf-ease);
}
.wf-squad__link a:hover { color: #fff; }

/* Club-life photo band */
.wf-life.wp-block-cover {
	min-height: clamp(420px, 60vh, 640px);
	padding: clamp(3rem, 8vw, 7rem) var(--wf-pad);
	align-items: center; justify-content: center;
}
.wf-life .wp-block-cover__inner-container { width: 100%; }
.wf-life__inner { max-width: var(--wf-wide); margin-inline: auto; text-align: center; }
.wf-life__inner > * { margin-block-start: 0; }
.wf-life .wf-kicker { justify-content: center; }
.wf-life__head {
	font-family: var(--wf-disp); font-weight: 700; text-transform: uppercase;
	font-size: clamp(2.6rem, 1rem + 8vw, 7rem); line-height: 0.9; letter-spacing: -0.01em;
	color: #fff; margin: 0 0 1.2rem;
}
.wf-life__lead { max-width: 54ch; margin: 0 auto; font-size: 1.15rem; line-height: 1.6; color: rgba(255,255,255,0.85); }

.wf-disc {
	display: grid;
	grid-template-columns: clamp(3rem, 5vw, 5rem) auto 1fr minmax(0, 36ch) auto;
	align-items: center;
	gap: clamp(1rem, 2.5vw, 2.5rem);
	padding: clamp(1.6rem, 3vw, 2.6rem) clamp(1rem, 2vw, 1.6rem);
	border-top: 1px solid rgba(255,255,255,0.16);
	color: #fff;
	transition: background 0.4s var(--wf-ease), color 0.4s var(--wf-ease), padding 0.4s var(--wf-ease);
}
.wf-disc:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.16); }
.wf-disc__no { font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--wf-accent); }
.wf-disc__icon {
	width: 64px; height: 64px; display: grid; place-items: center;
	background: #fff; border-radius: 14px; flex-shrink: 0;
	transition: transform 0.4s var(--wf-ease);
}
.wf-disc__icon img { width: 48px; height: 48px; object-fit: contain; }
.wf-disc__icon .wf-ico { width: 40px; height: 40px; display: block; color: var(--wf-ink); }
.wf-disc__main { display: flex; flex-direction: column; gap: 0.4rem; }
.wf-disc__name { font-size: clamp(2.4rem, 1rem + 5vw, 4.5rem); line-height: 0.9; }
.wf-disc__meta {
	font-family: var(--wf-body); font-weight: 600; font-size: 0.8rem;
	letter-spacing: 0.04em; text-transform: uppercase; color: var(--wf-accent-soft);
}
.wf-disc__body { font-size: 1rem; line-height: 1.55; color: rgba(255,255,255,0.72); }
.wf-disc__go { font-size: 2rem; color: var(--wf-accent); transition: transform 0.4s var(--wf-ease); }
.wf-disc:hover { background: var(--wf-accent); color: #fff; padding-inline: clamp(1.4rem, 2.6vw, 2.4rem); }
.wf-disc:hover .wf-disc__no,
.wf-disc:hover .wf-disc__meta,
.wf-disc:hover .wf-disc__body,
.wf-disc:hover .wf-disc__go { color: #fff; }
.wf-disc:hover .wf-disc__icon { transform: rotate(-8deg) scale(1.06); }
.wf-disc:hover .wf-disc__go { transform: translateX(8px); }

/* ---------------- Stats ---------------- */
.wf-stats {
	background: var(--wf-paper-ink);
	color: #fff;
	padding: clamp(3.5rem, 7vw, 6rem) var(--wf-pad);
	border-top: 2px solid var(--wf-accent);
}
.wf-stats__row {
	max-width: var(--wf-wide); margin-inline: auto;
	display: grid; grid-template-columns: repeat(4, 1fr);
	gap: clamp(1.5rem, 3vw, 3rem);
}
.wf-stat { display: flex; flex-direction: column; gap: 0.6rem; }
.wf-stat > *, .wf-stats__row > * { margin-block: 0; }
.wf-stat__num {
	font-size: clamp(3.5rem, 1.5rem + 6vw, 7rem);
	line-height: 0.85; color: #fff;
}
.wf-stat__num--gold { color: var(--wf-accent); }
.wf-stat__label {
	font-family: var(--wf-body); font-weight: 600; font-size: 0.82rem;
	letter-spacing: 0.06em; text-transform: uppercase; color: var(--wf-steel);
	line-height: 1.4;
}

/* ---------------- About ---------------- */
.wf-about {
	max-width: var(--wf-wide); margin-inline: auto;
	padding: clamp(4.5rem, 9vw, 8rem) var(--wf-pad);
	display: grid; grid-template-columns: 0.85fr 1fr;
	gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
}
.wf-about__media { position: relative; }
.wf-about__photo {
	position: relative; margin: 0; overflow: hidden;
	box-shadow: 0 30px 60px rgba(16,32,74,0.28);
}
.wf-about__photo img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
/* crest kept as an overlapping brand badge on the team photo */
.wf-about__media::after {
	content: ""; position: absolute; right: -12px; bottom: -12px; z-index: 2;
	width: clamp(74px, 13vw, 108px); aspect-ratio: 392 / 572;
	background: url("../images/warriors-crest.png") center / contain no-repeat;
	filter: drop-shadow(0 12px 22px rgba(0,0,0,0.3));
}
/* native-block resets: spacing comes from each element's own margins, not WP block-gap */
.wf-about__text > *, .wf-about__media > * { margin-block-start: 0; }
.wf-about__head { font-size: clamp(2rem, 1.2rem + 3.4vw, 4rem); margin: 0 0 1.4rem; line-height: 0.98; }
.wf-about__lead { font-size: 1.1rem; line-height: 1.65; color: var(--wf-slate); margin: 0 0 1.6rem; }
.wf-ticks { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 0.75rem; }
.wf-ticks li {
	position: relative; padding-left: 2.2rem; font-weight: 500; color: var(--wf-ink);
}
.wf-ticks li::before {
	content: ""; position: absolute; left: 0; top: 0;
	width: 1.5rem; height: 1.5rem; border-radius: 50%;
	background: var(--wf-accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* ---------------- CTA ---------------- */
.wf-cta {
	position: relative;
	background: var(--wf-ink);
	color: #fff;
	overflow: hidden;
	padding: clamp(5rem, 11vw, 9rem) var(--wf-pad);
	isolation: isolate;
}
.wf-cta__pattern {
	position: absolute; inset: 0; z-index: 0;
	background-image: var(--wf-pattern);
	background-size: 340px; background-repeat: repeat;
	opacity: 0.05;
	filter: invert(1);
}
.wf-cta::after {
	content: ""; position: absolute; inset: 0; z-index: 0;
	background: radial-gradient(70% 90% at 50% 120%, rgba(71,117,255,0.45), transparent 60%);
}
.wf-cta__inner { position: relative; z-index: 2; max-width: var(--wf-wide); margin-inline: auto; text-align: center; }
.wf-cta__inner > * { margin-block-start: 0; }
.wf-cta__title {
	font-size: clamp(3.5rem, 1rem + 12vw, 11rem);
	line-height: 0.82; margin: 0.5rem 0 1.4rem; letter-spacing: -0.01em;
}
.wf-cta__gold { color: var(--wf-blue); }
.wf-cta__lead { max-width: 50ch; margin: 0 auto 2.2rem; font-size: 1.15rem; line-height: 1.6; color: rgba(255,255,255,0.82); }
.wf-cta__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ---------------- Footer ---------------- */
.wf-footer { position: relative; overflow: hidden; background: var(--wf-paper-ink); color: var(--wf-steel); padding: clamp(6rem, 9vw, 8rem) var(--wf-pad) 2rem; border-top: 3px solid var(--wf-accent); }
/* tribal-wave brand ribbon across the top of the footer */
.wf-footer::before {
	content: ""; position: absolute; top: 0; left: 0; right: 0;
	height: clamp(90px, 11vw, 150px); z-index: 0; pointer-events: none;
	background: url("../images/tribal-pattern-wide.png") center center / cover no-repeat;
	filter: brightness(1.5);
	opacity: 0.09;
	-webkit-mask-image: linear-gradient(180deg, #000 45%, transparent 100%);
	mask-image: linear-gradient(180deg, #000 45%, transparent 100%);
}
.wf-footer > * { position: relative; z-index: 1; }
.wf-footer__top {
	max-width: var(--wf-wide); margin: 0 auto;
	display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
	padding-bottom: clamp(2rem, 4vw, 3rem); border-bottom: 1px solid rgba(255,255,255,0.12);
}
.wf-footer__inner {
	max-width: var(--wf-wide); margin: clamp(2rem, 4vw, 3rem) auto 0;
	display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem;
}
.wf-brand--footer .wf-brand__name { color: #fff; }
.wf-brand--footer .wf-brand__tag { color: var(--wf-accent-soft); }
.wf-footer__blurb { color: var(--wf-steel); margin-top: 1rem; max-width: 32ch; font-size: 0.95rem; line-height: 1.6; }
.wf-footer__head {
	font-family: var(--wf-disp); font-weight: 700; text-transform: uppercase;
	font-size: 0.95rem; letter-spacing: 0.12em; color: #fff; margin: 0 0 1rem;
}
.wf-footer__list, .wf-footer__col { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; }
.wf-footer__col > *, .wf-footer__list > * { margin-block-start: 0; }
.wf-footer__list a, .wf-footer__list li, .wf-footer__col a, .wf-footer__col span { color: var(--wf-steel); font-size: 0.95rem; transition: color 0.2s var(--wf-ease); }
.wf-footer__list a:hover, .wf-footer__col a:hover { color: var(--wf-accent); }
.wf-footer__big, .wf-footer__word { font-size: clamp(2.6rem, 1rem + 7vw, 7rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.03em; line-height: 0.82; color: #fff; }
.wf-footer__creed { font-family: var(--wf-disp); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--wf-accent); margin: 0; font-size: 0.95rem; }
.wf-footer__rule { max-width: var(--wf-wide); margin: clamp(2.5rem, 5vw, 4rem) auto 1.5rem; height: 1px; background: rgba(255,255,255,0.12); }
.wf-footer__bottom {
	max-width: var(--wf-wide); margin-inline: auto;
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
	font-size: 0.82rem; color: var(--wf-steel);
}
.wf-footer__bottom p { margin: 0; }
.wf-footer__by { color: var(--wf-steel); }
.wf-footer__bottom p a { color: var(--wf-accent-soft); transition: color 0.2s var(--wf-ease); }
.wf-footer__bottom p a:hover { color: var(--wf-accent); }
.wf-footer__about { display: flex; flex-direction: column; gap: 1rem; }
.wf-footer__about p { margin: 0; color: var(--wf-steel); max-width: 34ch; font-size: 0.95rem; line-height: 1.6; }
.wf-footer__about .wf-footer__crest { filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }

/* ---------------- Reveal ---------------- */
.wf-reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--wf-ease), transform 0.8s var(--wf-ease); will-change: opacity, transform; }
.wf-reveal.is-visible { opacity: 1; transform: none; }
.wf-creed__item.wf-reveal:nth-child(2) { transition-delay: 0.08s; }
.wf-creed__item.wf-reveal:nth-child(3) { transition-delay: 0.16s; }
.wf-creed__item.wf-reveal:nth-child(4) { transition-delay: 0.24s; }
.wf-stat.wf-reveal:nth-child(2) { transition-delay: 0.08s; }
.wf-stat.wf-reveal:nth-child(3) { transition-delay: 0.16s; }
.wf-stat.wf-reveal:nth-child(4) { transition-delay: 0.24s; }

/* ---------------- Keyframes ---------------- */
@keyframes wf-rise { to { transform: none; } }
@keyframes wf-hero-rise { to { opacity: 1; transform: none; } }
@keyframes wf-scrollx { to { transform: translateX(-50%); } }
@keyframes wf-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* ---------------- Inner page templates ---------------- */
.wf-main--inner { padding-top: 5rem; }
.wf-page-head { text-align: center; position: relative; overflow: hidden; }
.wf-page-title { position: relative; color: #fff; text-transform: uppercase; }
.wf-page-body :where(h2,h3) { color: var(--wf-ink); }

/* ---------------- Inner pages (page-wide) ---------------- */
.wf-main--page { overflow: clip; }

/* Page banner */
.wf-pagehero {
	position: relative; overflow: hidden; isolation: isolate;
	background: var(--wf-ink); color: #fff;
	padding: clamp(7rem, 16vh, 10rem) var(--wf-pad) clamp(3.5rem, 7vh, 5rem);
	border-bottom: 3px solid var(--wf-accent);
}
.wf-pagehero::after {
	content: ""; position: absolute; right: -6vw; top: 50%; transform: translateY(-50%);
	width: min(48vw, 600px); aspect-ratio: 392 / 572; z-index: 0; pointer-events: none;
	background: url("../images/warriors-crest.png") center / contain no-repeat;
	opacity: 0.08; filter: grayscale(0.2) brightness(1.5); mix-blend-mode: screen;
}
.wf-pagehero__inner { position: relative; z-index: 2; max-width: var(--wf-wide); margin-inline: auto; }
.wf-pagehero__inner > * { margin-block-start: 0; }
.wf-pagehero__title { font-size: clamp(2.8rem, 1rem + 9vw, 7rem); line-height: 0.9; letter-spacing: -0.01em; margin: 0.6rem 0 0; }
.wf-pagehero__lead { max-width: 56ch; margin: 1.4rem 0 0; font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem); line-height: 1.6; color: rgba(255,255,255,0.82); }
.wf-pagehero--404 { min-height: 68vh; display: flex; align-items: center; }

/* Content section */
.wf-section { max-width: var(--wf-wide); margin-inline: auto; padding: clamp(3.5rem, 7vw, 6rem) var(--wf-pad); }
.wf-section__head { max-width: 46ch; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.wf-section__head > * { margin-block-start: 0; }
.wf-section__title { font-size: clamp(1.8rem, 1.2rem + 2.6vw, 3.4rem); line-height: 0.98; margin: 0.4rem 0 0; }

/* Prose (long-form copy) */
.wf-prose { max-width: 70ch; }
.wf-prose > * { margin-block-start: 0; }
.wf-prose p { font-size: 1.075rem; line-height: 1.7; color: var(--wf-slate); margin: 0 0 1.2rem; }
.wf-prose h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); margin: 2.6rem 0 1rem; }
.wf-prose h3 { font-family: var(--wf-disp); text-transform: uppercase; letter-spacing: 0.01em; font-size: 1.35rem; margin: 2rem 0 0.6rem; color: var(--wf-ink); }

/* Card grid (age groups / programmes) */
.wf-cards { max-width: var(--wf-wide); margin-inline: auto; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(1rem, 2vw, 1.6rem); }
.wf-cards > * { margin-block-start: 0; }
.wf-card { background: #fff; border-top: 3px solid var(--wf-accent); padding: clamp(1.6rem, 2.5vw, 2.2rem); display: flex; flex-direction: column; }
.wf-card > * { margin-block-start: 0; }
.wf-card__no { font-family: var(--wf-disp); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--wf-accent); margin: 0; }
.wf-card__title { font-size: clamp(1.4rem, 1rem + 1.3vw, 2rem); line-height: 0.95; margin: 0.5rem 0 0.8rem; }
.wf-card__body { font-size: 0.98rem; line-height: 1.6; color: var(--wf-slate); margin: 0; }
.wf-card ul.wf-ticks { margin: 0.4rem 0 0; }
.wf-card ul.wf-ticks li { font-size: 0.95rem; }

/* Dark band variant */
.wf-band { background: var(--wf-ink); color: #fff; }
.wf-band .wf-section__title, .wf-band .wf-prose h2, .wf-band .wf-prose h3 { color: #fff; }
.wf-band .wf-prose p { color: rgba(255,255,255,0.78); }
.wf-band .wf-card { background: var(--wf-ink-2); }
.wf-band .wf-card__title { color: #fff; }

/* Inner-page CTA strip */
.wf-pagecta { background: var(--wf-ink); color: #fff; text-align: center; padding: clamp(3.5rem, 8vw, 6rem) var(--wf-pad); border-top: 3px solid var(--wf-accent); }
.wf-pagecta__inner { max-width: 60ch; margin-inline: auto; }
.wf-pagecta__inner > * { margin-block-start: 0; }
.wf-pagecta__title { font-size: clamp(2rem, 1.2rem + 3.4vw, 4rem); line-height: 0.95; margin: 0 0 1rem; }
.wf-pagecta__lead { color: rgba(255,255,255,0.8); font-size: 1.1rem; line-height: 1.6; margin: 0 0 1.8rem; }
.wf-pagecta .wp-block-buttons { justify-content: center; }

@media (max-width: 880px) { .wf-cards { grid-template-columns: 1fr; } }

/* Sponsor wall — flex so any number of logos stays centred and balanced */
.wf-sponsors { max-width: var(--wf-wide); margin-inline: auto; display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(0.6rem, 1.4vw, 1rem); }
.wf-sponsors > * { margin-block-start: 0; }
.wf-sponsor { flex: 1 1 190px; max-width: 240px; margin: 0; overflow: hidden; aspect-ratio: 1 / 1; background: #fff; }
.wf-sponsor a { display: block; width: 100%; height: 100%; }
.wf-sponsor img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--wf-ease); }
.wf-sponsor:hover img { transform: scale(1.05); }
@media (max-width: 600px) { .wf-sponsor { flex-basis: 140px; } }

/* ---------------- News ---------------- */
.wf-news__grid { margin: 0; padding: 0; list-style: none; gap: clamp(1.2rem, 2.5vw, 2rem); }
.wf-news__grid > li { background: #fff; border-top: 3px solid var(--wf-accent); display: flex; flex-direction: column; overflow: hidden; }
.wf-news__media { margin: 0; }
.wf-news__media img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 0.5s var(--wf-ease); }
.wf-news__grid > li:hover .wf-news__media img { transform: scale(1.04); }
.wf-news__date { font-family: var(--wf-body); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--wf-accent); margin: 1.2rem 1.4rem 0; }
.wf-news__title { margin: 0.4rem 1.4rem 0; line-height: 1.06; font-size: clamp(1.3rem, 1rem + 1vw, 1.7rem); }
.wf-news__title a { color: var(--wf-ink); text-decoration: none; }
.wf-news__title a:hover { color: var(--wf-accent); }
.wf-news__excerpt { margin: 0.7rem 1.4rem 1.5rem; font-size: 0.98rem; line-height: 1.6; color: var(--wf-slate); }
.wf-news__excerpt a { color: var(--wf-accent); font-weight: 600; text-decoration: none; }
.wf-news__pagination { margin-top: clamp(2rem, 4vw, 3rem); gap: 0.4rem; }
.wf-news__pagination a, .wf-news__pagination .wp-block-query-pagination-numbers { font-family: var(--wf-disp); text-transform: uppercase; color: var(--wf-ink); text-decoration: none; }
.wf-news__pagination a:hover { color: var(--wf-accent); }
.wf-news__pagination .current { color: var(--wf-accent); }

/* Single post */
.wf-pagehero--post .wf-kicker { color: var(--wf-accent); }
.wf-post__title { font-size: clamp(2.1rem, 1.2rem + 3.6vw, 4.2rem); }
.wf-post { max-width: 74ch; }
.wf-post__media { margin: 0 0 2rem; }
.wf-post__media img { width: 100%; height: auto; }
.wf-post .wp-block-post-content :where(p) { font-size: 1.1rem; line-height: 1.75; color: var(--wf-slate); margin: 0 0 1.3rem; }
.wf-post .wp-block-post-content :where(h2) { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); margin: 2.4rem 0 1rem; color: var(--wf-ink); }
.wf-post .wp-block-post-content :where(h3) { font-family: var(--wf-disp); text-transform: uppercase; font-size: 1.3rem; margin: 2rem 0 0.6rem; color: var(--wf-ink); }
.wf-post .wp-block-post-content :where(ul,ol) { margin: 0 0 1.3rem; padding-left: 1.3rem; color: var(--wf-slate); line-height: 1.7; }
.wf-post .wp-block-post-content :where(a) { color: var(--wf-royal); }
.wf-post__back { margin-top: 2.5rem; }
.wf-post__back a { font-family: var(--wf-disp); text-transform: uppercase; letter-spacing: 0.04em; color: var(--wf-accent); text-decoration: none; }

@media (max-width: 900px) { .wf-news__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .wf-news__grid { grid-template-columns: 1fr; } }

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) { .wf-nav { display: none; } }
@media (max-width: 781px) {
	.wf-stats__row { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
	.wf-about { grid-template-columns: 1fr; }
	.wf-about__media { max-width: 320px; margin-inline: auto; }
	.wf-squad-grid { grid-template-columns: 1fr; gap: 2.5rem; }
	.wf-squad__media img { aspect-ratio: 16 / 11; }
	.wf-disc {
		grid-template-columns: auto 1fr auto;
		grid-template-areas: "no name go" "icon body body";
		row-gap: 1rem;
	}
	.wf-disc__no { grid-area: no; }
	.wf-disc__main { grid-area: name; }
	.wf-disc__icon { grid-area: icon; }
	.wf-disc__body { grid-area: body; }
	.wf-disc__go { grid-area: go; }
	.wf-creed__body { justify-self: start; }
	.wf-hero__foot { flex-direction: column; align-items: flex-start; }
	.wf-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
	.wf-header__cta { display: none; }
	.wf-creed__item { grid-template-columns: 1fr; grid-template-areas: "no" "word" "body"; }
	.wf-stats__row { grid-template-columns: 1fr 1fr; }
	.wf-footer__inner { grid-template-columns: 1fr; }
}

/* ---------------- Reduced motion ---------------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
	.wf-reveal { opacity: 1; transform: none; }
	.wf-hero__word { opacity: 1; transform: none; animation: none; }
	.wf-marquee__track { animation: none; }
	.wf-about__crest { animation: none; }
	.wf-hero__photo img { transform: none !important; }
}
