/* =============================================================
   FUTURE WARRIORS ACADEMY — page stylesheet
   Term 3 · 2026
   -------------------------------------------------------------
   Complete, self-contained styles for
     templates/page-future-warriors-academy.php

   Drop-in replacement for:
     assets/css/page-future-warriors-academy.css

   Depends on the theme brand tokens (defined globally in
   style.css) with hard fallbacks so the page renders even if a
   token name differs. The following are NOT redefined here —
   they live in play-shared.css and remain the single source of
   truth:
       .jd-bmf (+ children)   — dark Behavioural Framework band
       .wba-fade-up           — scroll reveal
       .wba-countup           — number count-up
   ============================================================= */

:root {
	--fwa-maxw: 1240px;
	/* Sticky anchor-bar offset. If your site header is sticky and
	   overlaps the anchor bar, set this to the header's height. */
	--fwa-anchor-top: 0px;
}

.fwa {
	font-family: "Montserrat", system-ui, -apple-system, sans-serif;
	color: var(--wba-dark, #1a1a1a);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
.fwa *,
.fwa *::before,
.fwa *::after { box-sizing: border-box; }

/* =============================================================
   SHARED PRIMITIVES
   ============================================================= */

/* Eyebrow label (shared across sections) */
.fwa-eyebrow,
.fwa-eligibility__eyebrow,
.fwa-register__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wba-muted, #888888);
}
.fwa-eyebrow svg,
.fwa-eligibility__eyebrow svg,
.fwa-register__eyebrow svg {
	width: 15px;
	height: 15px;
	color: var(--wba-red, #c1272d);
	flex-shrink: 0;
}

/* Buttons */
.fwa-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 28px;
	font-family: inherit;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: lowercase;
	text-decoration: none;
	border-radius: 4px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
	white-space: nowrap;
}
.fwa-btn svg { width: 14px; height: 14px; }
.fwa-btn--primary {
	background: var(--wba-red, #c1272d);
	color: #fff;
	border-color: var(--wba-red, #c1272d);
	font-weight: 800;
}
.fwa-btn--primary:hover {
	background: var(--wba-dark, #1a1a1a);
	color: #fff;
	border-color: var(--wba-dark, #1a1a1a);
	transform: translateY(-2px);
}
.fwa-btn--ghost {
	background: transparent;
	color: var(--wba-dark, #1a1a1a);
	border-color: var(--wba-border, #e6e6e2);
}
.fwa-btn--ghost:hover {
	background: var(--wba-cream, #f8f8f6);
	border-color: var(--wba-dark, #1a1a1a);
}

/* Generic display headline treatment */
.fwa-glance__headline,
.fwa-eligibility__headline,
.fwa-about__headline,
.fwa-blocks__headline,
.fwa-schedule__headline,
.fwa-curriculum__headline,
.fwa-session__headline,
.fwa-pricing__headline,
.fwa-coaches__headline,
.fwa-faq__headline,
.fwa-register__headline {
	font-family: "Montserrat", system-ui, sans-serif;
	font-weight: 800;
	font-size: clamp(1.9rem, 4.2vw, 3rem);
	line-height: 1.05;
	letter-spacing: -0.015em;
	color: var(--wba-dark, #1a1a1a);
	margin: 14px 0 0;
}
.fwa-glance__headline em,
.fwa-eligibility__headline em,
.fwa-about__headline em,
.fwa-blocks__headline em,
.fwa-schedule__headline em,
.fwa-curriculum__headline em,
.fwa-session__headline em,
.fwa-pricing__headline em,
.fwa-coaches__headline em,
.fwa-faq__headline em,
.fwa-register__headline em {
	font-style: italic;
	font-weight: 400;
}

/* =============================================================
   1. HERO  (inner-page hero = 58vh, subordinate to homepage)
   ============================================================= */
.fwa-hero {
	position: relative;
	height: 58vh;
	min-height: 480px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: var(--wba-dark, #1a1a1a);
	background-size: cover;
	background-position: center 30%;
	background-repeat: no-repeat;
	color: #fff;
}
.fwa-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(105deg, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.72) 50%, rgba(26,26,26,0.40) 100%),
		radial-gradient(circle at 78% 50%, rgba(193,39,45,0.32) 0%, transparent 55%);
}
.fwa-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--fwa-maxw);
	margin: 0 auto;
	padding: 0 var(--gutter-d, 40px);
}
.fwa-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.85);
	padding: 9px 18px;
	border: 1px solid rgba(193,39,45,0.45);
	border-radius: 999px;
	background: rgba(193,39,45,0.10);
	margin-bottom: 28px;
}
.fwa-hero__eyebrow svg { width: 12px; height: 12px; color: var(--wba-red, #c1272d); }
.fwa-hero__headline {
	margin: 0 0 22px;
	font-weight: 800;
	font-size: clamp(2.6rem, 7.5vw, 6rem);
	line-height: 0.95;
	letter-spacing: -0.025em;
	color: #fff;
}
/* Logo variant — image replaces the text headline. Keeps the same
   0 0 22px bottom margin so the hero's centred content block, and
   therefore the top/bottom breathing room, is unchanged. */
.fwa-hero__headline--logo { margin: 0 0 22px; line-height: 1; }
.fwa-hero__logo {
	display: block;
	width: auto;
	height: auto;
	max-width: 460px;
	max-height: 180px;
	margin: 0;
}
/* Text fallback only shows if there's no logo, or the image fails
   (onerror adds .is-nologo to the <h1>). */
.fwa-hero__text-fallback { display: none; }
.fwa-hero__headline.is-nologo .fwa-hero__text-fallback { display: block; }
.fwa-hero__word { font-weight: 800; }
.fwa-hero__qualifier {
	display: block;
	font-style: italic;
	font-weight: 300;
	color: var(--wba-red, #c1272d);
	letter-spacing: -0.012em;
	margin-top: 6px;
}
.fwa-hero__tagline {
	max-width: 600px;
	margin: 0 0 36px;
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	line-height: 1.5;
	color: rgba(255,255,255,0.85);
}
.fwa-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.fwa-hero__ctas .fwa-btn--ghost {
	color: #fff;
	border-color: rgba(255,255,255,0.4);
}
.fwa-hero__ctas .fwa-btn--ghost:hover {
	color: #fff;
	background: rgba(255,255,255,0.1);
	border-color: #fff;
}

/* =============================================================
   2. STICKY ANCHOR NAV
   ============================================================= */
.fwa-anchors {
	position: sticky;
	top: var(--fwa-anchor-top, 0px);
	z-index: 30;
	background: var(--wba-white, #fff);
	border-top: 3px solid var(--wba-red, #c1272d);
	border-bottom: 1px solid var(--wba-border, #e6e6e2);
}
.fwa-anchors__inner {
	max-width: var(--fwa-maxw);
	margin: 0 auto;
	padding: 0 var(--gutter-d, 40px);
	display: flex;
	align-items: center;
	gap: 28px;
	overflow-x: auto;
	scrollbar-width: none;
}
.fwa-anchors__inner::-webkit-scrollbar { display: none; }
.fwa-anchors a {
	position: relative;
	flex-shrink: 0;
	padding: 18px 2px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: lowercase;
	text-decoration: none;
	color: var(--wba-dark, #1a1a1a);
	white-space: nowrap;
	transition: color 0.2s;
}
.fwa-anchors a:not(.is-cta)::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: var(--wba-red, #c1272d);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s;
}
.fwa-anchors a:not(.is-cta):hover { color: var(--wba-red, #c1272d); }
.fwa-anchors a:not(.is-cta):hover::after { transform: scaleX(1); }
.fwa-anchors a.is-cta {
	margin-left: auto;
	padding: 9px 18px;
	background: var(--wba-red, #c1272d);
	color: #fff;
	border-radius: 4px;
	font-weight: 800;
	transition: background 0.2s, transform 0.2s;
}
.fwa-anchors a.is-cta:hover {
	background: var(--wba-dark, #1a1a1a);
	color: #fff;
	transform: translateY(-1px);
}

/* =============================================================
   SECTION RHYTHM + BACKGROUNDS (alternating white / off-white)
   ============================================================= */
.fwa-glance,
.fwa-eligibility,
.fwa-about,
.fwa-blocks,
.fwa-schedule,
.fwa-curriculum,
.fwa-session,
.fwa-testimonial,
.fwa-pricing,
.fwa-coaches,
.fwa-faq,
.fwa-register {
	padding: clamp(48px, 8vw, 104px) 0;
}
.fwa-glance,
.fwa-about,
.fwa-schedule,
.fwa-session,
.fwa-pricing,
.fwa-faq { background: var(--wba-white, #ffffff); }

.fwa-eligibility,
.fwa-blocks,
.fwa-curriculum,
.fwa-testimonial,
.fwa-coaches,
.fwa-register { background: var(--wba-cream, #f8f8f6); }

.fwa-glance__inner,
.fwa-eligibility__inner,
.fwa-about__inner,
.fwa-blocks__inner,
.fwa-schedule__inner,
.fwa-session__inner,
.fwa-pricing__inner,
.fwa-faq__inner,
.fwa-register__inner {
	max-width: var(--fwa-maxw);
	margin: 0 auto;
	padding: 0 var(--gutter-d, 40px);
}
.fwa-curriculum,
.fwa-coaches { }
.fwa-curriculum__head,
.fwa-curriculum__grid,
.fwa-coaches__head,
.fwa-coaches__grid {
	max-width: var(--fwa-maxw);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--gutter-d, 40px);
	padding-right: var(--gutter-d, 40px);
}

/* =============================================================
   3. GLANCE  (asymmetric: tall dark hero cell + 5 fact cells)
   ============================================================= */
.fwa-glance__head { max-width: 680px; margin-bottom: clamp(28px, 4vw, 46px); }

.fwa-glance__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
@media (min-width: 900px) {
	.fwa-glance__grid {
		grid-template-columns: 1.3fr 1fr 1fr;
		grid-auto-rows: 1fr;
	}
	.fwa-glance__hero {
		grid-column: 1;
		grid-row: 1 / span 3;
	}
}

.fwa-glance__hero {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	padding: 34px 32px;
	background: var(--wba-dark, #1a1a1a);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 210px;
}
.fwa-glance__hero::after {
	content: "";
	position: absolute;
	top: -40%;
	right: -30%;
	width: 80%;
	height: 120%;
	background: radial-gradient(circle, rgba(193,39,45,0.55) 0%, rgba(193,39,45,0) 68%);
	pointer-events: none;
}
.fwa-glance__hero-eyebrow {
	position: relative;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.6);
}
.fwa-glance__hero-value {
	position: relative;
	margin-top: 10px;
	font-weight: 800;
	font-size: clamp(2.8rem, 6vw, 4.2rem);
	line-height: 0.95;
	letter-spacing: -0.02em;
}
.fwa-glance__hero-value em {
	display: block;
	font-style: normal;
	font-weight: 700;
	font-size: 0.32em;
	letter-spacing: 0.04em;
	color: rgba(255,255,255,0.55);
	margin-top: 6px;
}
.fwa-glance__hero-detail {
	position: relative;
	margin: 16px 0 0;
	font-size: 0.86rem;
	line-height: 1.5;
	color: rgba(255,255,255,0.72);
}

.fwa-glance__cell {
	background: var(--wba-white, #fff);
	border: 1px solid var(--wba-border, #e6e6e2);
	border-radius: 14px;
	padding: 22px 22px 20px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.fwa-glance__cell:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(26,26,26,0.07);
	border-color: #d9d9d3;
}
.fwa-glance__cell-icon { color: var(--wba-red, #c1272d); }
.fwa-glance__cell-icon svg { width: 22px; height: 22px; }
.fwa-glance__cell-label {
	margin-top: 8px;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wba-muted, #888888);
}
.fwa-glance__cell-value {
	font-weight: 800;
	font-size: 1.32rem;
	letter-spacing: -0.01em;
	color: var(--wba-dark, #1a1a1a);
}
.fwa-glance__cell-detail {
	font-size: 0.82rem;
	color: var(--wba-muted, #888888);
}

/* =============================================================
   4. ELIGIBILITY BAND  (red "built for" + dark "not for")
   ============================================================= */
.fwa-eligibility__inner { max-width: 960px; text-align: center; }
.fwa-eligibility__headline { max-width: 640px; margin-left: auto; margin-right: auto; }
.fwa-eligibility__grid {
	margin-top: clamp(28px, 4vw, 42px);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	text-align: left;
}
.fwa-eligibility__col {
	border-radius: 14px;
	padding: 26px 26px 24px;
}
.fwa-eligibility__col--fit {
	background: var(--wba-white, #fff);
	border: 1px solid var(--wba-border, #e6e6e2);
	border-top: 3px solid var(--wba-red, #c1272d);
}
.fwa-eligibility__col--not {
	background: var(--wba-dark, #1a1a1a);
	color: #fff;
}
.fwa-eligibility__col p {
	margin: 14px 0 0;
	font-size: 0.98rem;
	line-height: 1.6;
}
.fwa-eligibility__col--not p { color: rgba(255,255,255,0.82); }
.fwa-eligibility__pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 14px;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border-radius: 999px;
}
.fwa-eligibility__pill svg { width: 14px; height: 14px; }
.fwa-eligibility__pill--yes { background: var(--wba-red, #c1272d); color: #fff; }
.fwa-eligibility__pill--no { background: rgba(255,255,255,0.12); color: #fff; }
.fwa-eligibility__note {
	margin: 26px auto 0;
	max-width: 640px;
	font-size: 0.92rem;
	font-style: italic;
	color: var(--wba-muted, #888888);
}

/* =============================================================
   5. ABOUT
   ============================================================= */
.fwa-about__inner {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: clamp(28px, 5vw, 64px);
	align-items: start;
}
.fwa-about__lede {
	margin: 18px 0 0;
	font-size: 1.05rem;
	line-height: 1.75;
	color: #444;
}
.fwa-about__pull {
	position: relative;
	background: var(--wba-cream, #f8f8f6);
	border: 1px solid var(--wba-border, #e6e6e2);
	border-left: 3px solid var(--wba-red, #c1272d);
	border-radius: 14px;
	padding: 30px 28px;
}
.fwa-about__pull-mark {
	display: block;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 3.4rem;
	line-height: 0.4;
	color: var(--wba-red, #c1272d);
	margin-bottom: 14px;
}
.fwa-about__pull p {
	margin: 0;
	font-size: 1.2rem;
	font-style: italic;
	font-weight: 500;
	line-height: 1.45;
	color: var(--wba-dark, #1a1a1a);
}

/* =============================================================
   6. TWO AGE BLOCKS
   ============================================================= */
.fwa-blocks__head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.fwa-blocks__intro {
	margin: 16px 0 0;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--wba-muted, #888888);
	max-width: 640px;
}
.fwa-blocks__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.fwa-block {
	border: 1px solid var(--wba-border, #e6e6e2);
	border-radius: 14px;
	background: var(--wba-white, #fff);
	padding: 28px 28px 24px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.fwa-block:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(26,26,26,0.08);
	border-color: #d9d9d3;
}
.fwa-block__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--wba-border, #e6e6e2);
}
.fwa-block__name {
	font-weight: 800;
	font-size: 1.35rem;
	letter-spacing: -0.01em;
	color: var(--wba-dark, #1a1a1a);
}
.fwa-block__time {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wba-red, #c1272d);
	white-space: nowrap;
}
.fwa-block__time svg { width: 14px; height: 14px; }
.fwa-block__divisions {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin-bottom: 18px;
}
.fwa-block__division {
	background: var(--wba-cream, #f8f8f6);
	border: 1px solid var(--wba-border, #e6e6e2);
	border-radius: 11px;
	padding: 16px 14px;
	text-align: center;
}
.fwa-block__division-age {
	display: block;
	font-weight: 800;
	font-size: 1.6rem;
	line-height: 1;
	color: var(--wba-dark, #1a1a1a);
}
.fwa-block__division-born {
	display: block;
	margin-top: 6px;
	font-size: 0.74rem;
	font-weight: 600;
	color: var(--wba-muted, #888888);
}
.fwa-block__note {
	margin: 0;
	font-size: 0.82rem;
	font-style: italic;
	color: var(--wba-muted, #888888);
}

/* =============================================================
   7. TERM 3 SCHEDULE
   ============================================================= */
.fwa-schedule__head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 46px); }
.fwa-schedule__intro {
	margin: 16px 0 0;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--wba-muted, #888888);
	max-width: 640px;
}
.fwa-schedule__table-wrap {
	overflow-x: auto;
	border: 1px solid var(--wba-border, #e6e6e2);
	border-radius: 14px;
	background: var(--wba-white, #fff);
	-webkit-overflow-scrolling: touch;
}
.fwa-schedule__table {
	width: 100%;
	border-collapse: collapse;
	min-width: 520px;
}
.fwa-schedule__table thead th {
	text-align: left;
	padding: 16px 20px;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
	background: var(--wba-dark, #1a1a1a);
	white-space: nowrap;
}
.fwa-schedule__table thead th span {
	display: block;
	margin-top: 3px;
	font-size: 0.6rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: none;
	color: rgba(255,255,255,0.6);
}
.fwa-schedule__table tbody td {
	padding: 14px 20px;
	font-size: 0.9rem;
	color: var(--wba-dark, #1a1a1a);
	border-top: 1px solid var(--wba-border, #e6e6e2);
	white-space: nowrap;
}
.fwa-schedule__table tbody tr:nth-child(odd) td { background: var(--wba-cream, #f8f8f6); }
.fwa-schedule__wk { font-weight: 800; color: var(--wba-red, #c1272d); width: 64px; }
.fwa-schedule__date { font-weight: 700; }

/* =============================================================
   8. CURRICULUM  (6-card numbered grid)
   ============================================================= */
.fwa-curriculum__head { max-width: 680px; margin-bottom: clamp(28px, 4vw, 48px); }
.fwa-curriculum__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.fwa-curriculum__card {
	position: relative;
	overflow: hidden;
	background: var(--wba-white, #fff);
	border: 1px solid var(--wba-border, #e6e6e2);
	border-radius: 14px;
	padding: 26px 26px 24px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.fwa-curriculum__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 34px rgba(26,26,26,0.08);
	border-color: #d9d9d3;
}
.fwa-curriculum__num {
	display: block;
	font-weight: 800;
	font-size: 2.6rem;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--wba-border, #e6e6e2);
}
.fwa-curriculum__title {
	margin: 14px 0 0;
	font-weight: 800;
	font-size: 1.14rem;
	letter-spacing: -0.01em;
	color: var(--wba-dark, #1a1a1a);
}
.fwa-curriculum__pill {
	display: inline-block;
	margin: 10px 0 0;
	padding: 5px 11px;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wba-red, #c1272d);
	background: rgba(193,39,45,0.08);
	border-radius: 999px;
}
.fwa-curriculum__body {
	margin: 12px 0 0;
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--wba-muted, #888888);
}

/* =============================================================
   9. SESSION  (visual time bar + two phases)
   ============================================================= */
.fwa-session__head { max-width: 680px; margin-bottom: clamp(26px, 4vw, 40px); }
.fwa-session__intro {
	margin: 16px 0 0;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--wba-muted, #888888);
	max-width: 620px;
}
.fwa-session__bar {
	display: flex;
	height: 58px;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 26px;
}
.fwa-session__bar-skills,
.fwa-session__bar-game {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.fwa-session__bar-skills { background: var(--wba-red, #c1272d); }
.fwa-session__bar-game { background: var(--wba-dark, #1a1a1a); }
.fwa-session__phases {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}
.fwa-session__phase {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	background: var(--wba-white, #fff);
	border: 1px solid var(--wba-border, #e6e6e2);
	border-radius: 14px;
	padding: 24px 24px;
}
.fwa-session__phase-time {
	flex-shrink: 0;
	text-align: center;
	min-width: 66px;
}
.fwa-session__phase-num {
	display: block;
	font-weight: 800;
	font-size: 2.6rem;
	line-height: 1;
	color: var(--wba-red, #c1272d);
}
.fwa-session__phase-unit {
	display: block;
	margin-top: 4px;
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wba-muted, #888888);
}
.fwa-session__phase-body h3 {
	margin: 0;
	font-weight: 800;
	font-size: 1.1rem;
	color: var(--wba-dark, #1a1a1a);
}
.fwa-session__phase-body p {
	margin: 8px 0 0;
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--wba-muted, #888888);
}

/* =============================================================
   10. TESTIMONIAL
   ============================================================= */
.fwa-testimonial__inner {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 var(--gutter-d, 40px);
	text-align: center;
	position: relative;
}
.fwa-testimonial__mark {
	display: block;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 5rem;
	line-height: 0.6;
	color: var(--wba-red, #c1272d);
	margin-bottom: 8px;
}
.fwa-testimonial__quote {
	margin: 0;
	font-weight: 300;
	font-size: clamp(1.35rem, 3vw, 2.1rem);
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--wba-dark, #1a1a1a);
}
.fwa-testimonial__cite {
	display: block;
	margin-top: 22px;
	font-style: normal;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wba-muted, #888888);
}

/* =============================================================
   11. PRICING
   ============================================================= */
.fwa-pricing__inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(28px, 5vw, 60px);
	align-items: center;
}
.fwa-pricing__headline { }
.fwa-pricing__headline em {
	font-style: normal;
	color: var(--wba-red, #c1272d);
}
.fwa-pricing__lede {
	margin: 18px 0 0;
	font-size: 1.02rem;
	line-height: 1.7;
	color: #444;
}
.fwa-pricing__note {
	margin: 16px 0 0;
	font-size: 0.85rem;
	font-style: italic;
	color: var(--wba-muted, #888888);
}
.fwa-pricing__panel {
	background: var(--wba-white, #fff);
	border: 1px solid var(--wba-border, #e6e6e2);
	border-radius: 16px;
	padding: 30px 30px 28px;
	box-shadow: 0 18px 44px rgba(26,26,26,0.06);
}
.fwa-pricing__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
}
.fwa-pricing__row-label { font-size: 0.94rem; color: var(--wba-dark, #1a1a1a); }
.fwa-pricing__row-label small { color: var(--wba-muted, #888888); font-size: 0.8rem; }
.fwa-pricing__row-value { font-weight: 800; font-size: 1.1rem; }
.fwa-pricing__divider {
	height: 1px;
	background: var(--wba-border, #e6e6e2);
	margin: 8px 0;
}
.fwa-pricing__total-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 0;
}
.fwa-pricing__total-row--alt .fwa-pricing__total-value { color: var(--wba-muted, #888888); }
.fwa-pricing__total-label {
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wba-muted, #888888);
}
.fwa-pricing__total-value {
	font-weight: 800;
	font-size: 1.6rem;
	color: var(--wba-red, #c1272d);
}
.fwa-pricing__cta {
	margin-top: 22px;
	width: 100%;
	justify-content: center;
}

/* =============================================================
   12. COACHES  (two lead-coach cards, marquee)
   ============================================================= */
.fwa-coaches__head { max-width: 720px; margin-bottom: clamp(30px, 4vw, 50px); }
.fwa-coaches__intro {
	margin: 16px 0 0;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--wba-muted, #888888);
	max-width: 640px;
}
.fwa-coaches__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 26px;
}
.fwa-coach {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: var(--wba-white, #fff);
	border: 1px solid var(--wba-border, #e6e6e2);
	border-radius: 16px;
	padding-bottom: 6px;
}
.fwa-coach__media {
	position: relative;
	width: 140px;
	height: 140px;
	margin: 32px auto 0;
	border-radius: 50%;
	border: 3px solid var(--wba-border, #e6e6e2);
	background: var(--wba-cream, #f8f8f6);
	overflow: hidden;
	flex: none;
}
.fwa-coach__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.fwa-coach__media-fallback {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--wba-dark, #1a1a1a);
	color: #fff;
	font-weight: 800;
	font-size: 2.4rem;
}
.fwa-coach__court-pill {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 6px 12px;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	background: var(--wba-red, #c1272d);
	border-radius: 6px;
}
.fwa-coach__body { padding: 18px 30px 30px; width: 100%; }
.fwa-coach__role {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wba-red, #c1272d);
}
.fwa-coach__name {
	margin: 8px 0 0;
	font-weight: 800;
	font-size: 1.5rem;
	letter-spacing: -0.01em;
	color: var(--wba-dark, #1a1a1a);
}
.fwa-coach__tagline {
	margin: 6px 0 0;
	font-size: 0.9rem;
	font-style: italic;
	color: var(--wba-muted, #888888);
}
.fwa-coach__credentials {
	margin-top: 22px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px 24px;
	text-align: left;
}
.fwa-coach__cred-title {
	margin: 0 0 10px;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wba-red, #c1272d);
	padding-bottom: 8px;
	border-bottom: 1px solid var(--wba-border, #e6e6e2);
}
.fwa-coach__cred-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.fwa-coach__cred-list li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 0.85rem;
	line-height: 1.45;
	color: #444;
}
.fwa-coach__cred-list li svg {
	width: 13px;
	height: 13px;
	margin-top: 3px;
	flex-shrink: 0;
	color: var(--wba-red, #c1272d);
}

/* =============================================================
   13. FAQ  (accordion)
   ============================================================= */
.fwa-faq__inner { max-width: 820px; }
.fwa-faq__head { text-align: center; margin-bottom: clamp(26px, 4vw, 42px); }
.fwa-faq__item {
	border: 1px solid var(--wba-border, #e6e6e2);
	border-radius: 12px;
	background: var(--wba-white, #fff);
	margin-bottom: 12px;
	overflow: hidden;
}
.fwa-faq__item[open] { border-color: #d9d9d3; box-shadow: 0 10px 26px rgba(26,26,26,0.05); }
.fwa-faq__q {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 22px;
	cursor: pointer;
	list-style: none;
}
.fwa-faq__q::-webkit-details-marker { display: none; }
.fwa-faq__q-num {
	font-weight: 800;
	font-size: 0.85rem;
	color: var(--wba-red, #c1272d);
	flex-shrink: 0;
}
.fwa-faq__q-text {
	flex: 1;
	font-weight: 700;
	font-size: 1rem;
	color: var(--wba-dark, #1a1a1a);
}
.fwa-faq__q-icon {
	flex-shrink: 0;
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 1;
	color: var(--wba-red, #c1272d);
	transition: transform 0.25s ease;
}
.fwa-faq__item[open] .fwa-faq__q-icon { transform: rotate(45deg); }
.fwa-faq__a {
	padding: 0 22px 22px 56px;
	color: var(--wba-muted, #888888);
}
.fwa-faq__a p {
	margin: 0 0 10px;
	font-size: 0.94rem;
	line-height: 1.65;
}
.fwa-faq__a p:last-child { margin-bottom: 0; }
.fwa-faq__a strong { color: var(--wba-dark, #1a1a1a); }

/* =============================================================
   15. REGISTER  (per-block PlayHQ links)
   ============================================================= */
.fwa-register__inner { max-width: 980px; text-align: center; }
.fwa-register__headline { margin-left: auto; margin-right: auto; }
.fwa-register__headline em { font-style: normal; color: var(--wba-red, #c1272d); }
.fwa-register__lede {
	margin: 16px auto 0;
	max-width: 620px;
	font-size: 1.02rem;
	line-height: 1.65;
	color: #444;
}
.fwa-register__facts {
	margin: 28px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 34px;
}
.fwa-register__fact { display: flex; flex-direction: column; gap: 4px; }
.fwa-register__fact-label {
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wba-muted, #888888);
}
.fwa-register__fact-value {
	font-weight: 800;
	font-size: 1rem;
	color: var(--wba-dark, #1a1a1a);
}
.fwa-register__split {
	margin: 34px auto 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	text-align: center;
}
.fwa-register__col {
	background: var(--wba-white, #fff);
	border: 1px solid var(--wba-border, #e6e6e2);
	border-radius: 14px;
	padding: 28px 26px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.fwa-register__col-icon { color: var(--wba-red, #c1272d); }
.fwa-register__col-icon svg { width: 26px; height: 26px; }
.fwa-register__col-label {
	margin-top: 12px;
	font-weight: 800;
	font-size: 1.3rem;
	color: var(--wba-dark, #1a1a1a);
}
.fwa-register__col-detail {
	margin-top: 4px;
	font-size: 0.86rem;
	color: var(--wba-muted, #888888);
}
.fwa-register__col-cta {
	margin-top: 20px;
	width: 100%;
	justify-content: center;
}
.fwa-register__ctas {
	margin-top: 26px;
	display: flex;
	justify-content: center;
}

/* =============================================================
   14. BMF — Behavioural Framework (dark section, red tiles)
   -------------------------------------------------------------
   Normally supplied by play-shared.css. Defined here too so the
   page is self-contained; this rule loads after play-shared and
   wins if both are present.
   ============================================================= */
.jd-bmf {
	background: var(--wba-dark, #1a1a1a);
	color: #fff;
	padding: clamp(48px, 8vw, 104px) 0;
}
.jd-bmf__inner {
	max-width: var(--fwa-maxw);
	margin: 0 auto;
	padding: 0 var(--gutter-d, 40px);
}
.jd-bmf__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}
.jd-bmf__eyebrow svg { width: 15px; height: 15px; color: var(--wba-red, #c1272d); }
.jd-bmf__headline {
	margin: 14px 0 0;
	font-weight: 800;
	font-size: clamp(1.9rem, 4.2vw, 3rem);
	line-height: 1.05;
	letter-spacing: -0.015em;
	color: #fff;
	max-width: 760px;
}
.jd-bmf__headline em { font-style: italic; font-weight: 400; color: rgba(255, 255, 255, 0.85); }
.jd-bmf__lede {
	margin: 16px 0 0;
	max-width: 640px;
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.72);
}
.jd-bmf__grid {
	margin-top: clamp(30px, 4vw, 48px);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.jd-bmf__tile {
	background: var(--wba-red, #c1272d);
	border-radius: 14px;
	padding: 28px 26px;
}
.jd-bmf__tile-num {
	display: block;
	font-weight: 800;
	font-size: 2rem;
	line-height: 1;
	color: rgba(255, 255, 255, 0.5);
}
.jd-bmf__tile h3 {
	margin: 14px 0 0;
	font-weight: 800;
	font-size: 1.18rem;
	color: #fff;
}
.jd-bmf__tile p {
	margin: 10px 0 0;
	font-size: 0.9rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

/* =============================================================
   STRUCTURAL WRAPPERS — overflow guards for grid children
   ============================================================= */
.fwa-about__copy,
.fwa-pricing__copy,
.fwa-coach__cred-block { min-width: 0; }
.fwa-schedule__col-wk { width: 64px; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 900px) {
	.fwa-about__inner { grid-template-columns: 1fr; }
	.fwa-pricing__inner { grid-template-columns: 1fr; }
	.fwa-coaches__grid { grid-template-columns: 1fr; }
	.fwa-curriculum__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
	.fwa-blocks__grid { grid-template-columns: 1fr; }
	.fwa-eligibility__grid { grid-template-columns: 1fr; }
	.fwa-session__phases { grid-template-columns: 1fr; }
	.fwa-register__split { grid-template-columns: 1fr; }
	.jd-bmf__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.fwa-curriculum__grid { grid-template-columns: 1fr; }
	.fwa-coach__credentials { grid-template-columns: 1fr; }
	.fwa-hero { min-height: 440px; background-position: 68% center; }
	.fwa-hero__inner,
	.fwa-anchors__inner { padding-left: var(--gutter-m, 24px); padding-right: var(--gutter-m, 24px); }
	.fwa-hero__eyebrow { font-size: 0.6rem; letter-spacing: 0.18em; margin-bottom: 20px; }
	.fwa-hero__logo { max-width: 260px; max-height: 130px; }
	.fwa-hero__ctas { flex-direction: column; align-items: stretch; }
	.fwa-hero__ctas .fwa-btn { justify-content: center; }
	.fwa-anchors__inner { gap: 22px; }
}
