/*
Theme Name: Game With Gliddon
Theme URI: https://gamewithgliddon.com/
Description: Custom child theme for Game With Gliddon — private softball instruction in Pine Mountain, Georgia. Sister brand to NFP Softball; light-mode inversion of the same purple/blue palette. Procedural PHP, Hello Elementor parent.
Author: Game With Gliddon
Author URI: https://gamewithgliddon.com/
Template: hello-elementor
Version: 0.2.0
Text Domain: gwg
*/

:root {
	--gwg-purple:        #6B246A;
	--gwg-purple-dark:   #4D1A4D;
	--gwg-purple-light:  #8E3D8D;
	--gwg-blue:          #11AFEC;
	--gwg-blue-dark:     #0A8FC2;
	--gwg-blue-light:    #4DC2F0;
	--gwg-canvas:        #FFFFFF;
	--gwg-canvas-soft:   #F7F5FA;
	--gwg-canvas-tint:   #FAF7FC;
	--gwg-text:          #1D2027;
	--gwg-text-muted:    #5A5F6B;
	--gwg-text-subtle:   #8A8F9B;
	--gwg-border:        rgba(29, 32, 39, 0.12);
	--gwg-border-soft:   rgba(29, 32, 39, 0.06);
	--font-display:      'Barlow Condensed', Impact, 'Arial Narrow', sans-serif;
	--font-body:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--font-serif:        'Source Serif 4', 'Source Serif Pro', Georgia, 'Times New Roman', serif;
	--container:         1180px;
	--container-narrow:  880px;
	--radius-sm:         6px;
	--radius:            10px;
	--radius-lg:         16px;
	--radius-pill:       999px;
	--shadow-soft:       0 6px 24px -12px rgba(29, 32, 39, 0.18);
	--shadow-lift:       0 12px 32px -16px rgba(107, 36, 106, 0.25);
	--ease:              cubic-bezier(0.2, 0.8, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--gwg-text);
	background: var(--gwg-canvas);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: var(--gwg-purple);
	text-decoration: none;
	transition: color 0.18s var(--ease);
}
a:hover { color: var(--gwg-blue); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.01em;
	color: var(--gwg-text);
	margin: 0 0 0.5em;
}

h1 { font-size: clamp(40px, 7vw, 72px); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 4.5vw, 44px); font-weight: 900; }
h3 { font-size: clamp(22px, 3vw, 28px); }
h4 { font-size: 20px; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--gwg-purple);
	color: #fff;
	padding: 10px 16px;
	z-index: 9999;
	font-weight: 700;
}
.skip-link:focus { left: 16px; top: 16px; color: #fff; }

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

.gwg-container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}
.gwg-container--narrow { max-width: var(--container-narrow); }

.gwg-section { padding: 80px 0; }
.gwg-section--soft { background: var(--gwg-canvas-soft); }
.gwg-section--tint { background: var(--gwg-canvas-tint); }

.gwg-section__head {
	text-align: center;
	margin-bottom: 36px;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.gwg-section__eyebrow {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gwg-blue);
	margin-bottom: 12px;
}
.gwg-section__title { margin-bottom: 8px; }
.gwg-section__sub {
	color: var(--gwg-text-muted);
	font-size: 16px;
	max-width: 640px;
	margin: 0 auto;
}

@media (max-width: 720px) {
	.gwg-section { padding: 56px 0; }
}

.gwg-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	border: 2px solid transparent;
	border-radius: var(--radius-pill);
	cursor: pointer;
	text-align: center;
	transition: transform 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.gwg-btn--primary {
	background: var(--gwg-purple);
	color: #fff;
	border-color: var(--gwg-purple);
}
.gwg-btn--primary:hover {
	background: var(--gwg-purple-dark);
	border-color: var(--gwg-purple-dark);
	color: #fff;
	transform: translateY(-1px);
}

.gwg-btn--accent {
	background: var(--gwg-blue);
	color: #0a2540;
	border-color: var(--gwg-blue);
}
.gwg-btn--accent:hover {
	background: var(--gwg-blue-dark);
	border-color: var(--gwg-blue-dark);
	color: #fff;
	transform: translateY(-1px);
}

.gwg-btn--ghost {
	background: transparent;
	color: var(--gwg-text);
	border-color: var(--gwg-border);
}
.gwg-btn--ghost:hover {
	border-color: var(--gwg-purple);
	color: var(--gwg-purple);
}

/* SITE HEADER — runs edge-to-edge */
.gwg-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: saturate(160%) blur(12px);
	-webkit-backdrop-filter: saturate(160%) blur(12px);
	border-bottom: 1px solid var(--gwg-border);
}

.gwg-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 32px;
	width: 100%;
	position: relative;
}

/* HEADER LEFT GROUP — brand + inline socials sit together on the left */
.gwg-header__left {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
}

/* INLINE SOCIAL — small icons next to the brand */
.gwg-social-inline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-left: 14px;
	border-left: 1px solid var(--gwg-border);
}
.gwg-social-inline a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(135deg, var(--gwg-purple) 0%, var(--gwg-blue) 100%);
	box-shadow: 0 2px 8px -3px rgba(107, 36, 106, 0.4);
	transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), filter 0.18s var(--ease);
}
.gwg-social-inline a:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px -3px rgba(107, 36, 106, 0.5);
	filter: brightness(1.08);
	color: #fff;
}
.gwg-social-inline__fb {
	background: linear-gradient(135deg, var(--gwg-blue) 0%, var(--gwg-purple) 100%) !important;
}
.gwg-social-inline svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

@media (max-width: 980px) {
	.gwg-social-inline {
		padding-left: 10px;
		gap: 4px;
	}
	.gwg-social-inline a {
		width: 28px;
		height: 28px;
	}
	.gwg-social-inline svg {
		width: 16px;
		height: 16px;
	}
}
@media (max-width: 560px) {
	.gwg-social-inline { display: none; }
}

/* BRAND — shield + wordmark stack with tagline */
.gwg-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: var(--gwg-text);
	line-height: 1;
	text-decoration: none;
	transition: opacity 0.18s var(--ease);
}
.gwg-brand:hover { opacity: 0.85; color: var(--gwg-text); }

.gwg-brand__shield {
	height: 52px;
	width: auto;
	flex-shrink: 0;
}

.gwg-brand__text {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
}

.gwg-brand__name {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	line-height: 1;
	color: var(--gwg-purple);
	white-space: nowrap;
}

.gwg-brand__tag {
	font-family: var(--font-body);
	font-style: italic;
	font-size: 11px;
	font-weight: 400;
	color: var(--gwg-blue);
	letter-spacing: 0.3px;
	line-height: 1;
	white-space: nowrap;
}

.gwg-brand__hash {
	color: var(--gwg-purple);
	font-style: normal;
	font-weight: 700;
}

@media (max-width: 720px) {
	.gwg-brand__tag { display: none; }
	.gwg-brand__name { font-size: 20px; }
	.gwg-brand__shield { height: 44px; }
	.gwg-header__inner { padding: 12px 20px; }
}
@media (max-width: 480px) {
	.gwg-brand__name { font-size: 17px; letter-spacing: 0.3px; }
	.gwg-brand__shield { height: 40px; }
}

/* PRIMARY NAV */
.gwg-nav ul {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gwg-nav a {
	display: inline-block;
	padding: 10px 14px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--gwg-text);
	border-radius: var(--radius-pill);
	transition: background 0.18s var(--ease), color 0.18s var(--ease);
	white-space: nowrap;
}
.gwg-nav a:hover,
.gwg-nav .current-menu-item > a,
.gwg-nav .current_page_item > a {
	background: rgba(107, 36, 106, 0.08);
	color: var(--gwg-purple);
}

/* Mobile-nav toggle */
.gwg-header .gwg-nav-toggle {
	display: none !important;
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 8px;
	margin: 0;
	cursor: pointer;
	color: var(--gwg-text);
	line-height: 0;
	border-radius: var(--radius-sm);
}
.gwg-header .gwg-nav-toggle:hover,
.gwg-header .gwg-nav-toggle:focus,
.gwg-header .gwg-nav-toggle:active {
	background: rgba(107, 36, 106, 0.08);
	border: 0;
	color: var(--gwg-purple);
	outline: none;
	box-shadow: none;
}
.gwg-header .gwg-nav-toggle:focus-visible {
	outline: 2px solid var(--gwg-blue);
	outline-offset: 2px;
}
.gwg-header .gwg-nav-toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background: currentColor;
	margin: 5px 0;
	border-radius: 2px;
	transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

@media (max-width: 980px) {
	.gwg-header .gwg-nav-toggle { display: block !important; }
	.gwg-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid var(--gwg-border);
		padding: 12px 24px 20px;
		transform: translateY(-8px);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
	}
	.gwg-nav ul {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}
	.gwg-nav a {
		padding: 12px 14px;
		text-align: left;
	}
	.gwg-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}
}

/* HOME · HERO */
.gwg-hero {
	position: relative;
	padding: 90px 24px 80px;
	background: linear-gradient(135deg, var(--gwg-canvas-tint) 0%, #EAF6FE 100%);
	overflow: hidden;
}
.gwg-hero::before,
.gwg-hero::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	pointer-events: none;
}
.gwg-hero::before {
	top: -120px; right: -80px;
	width: 380px; height: 380px;
	background: rgba(17, 175, 236, 0.18);
}
.gwg-hero::after {
	bottom: -140px; left: -100px;
	width: 420px; height: 420px;
	background: rgba(107, 36, 106, 0.16);
}

.gwg-hero__inner {
	position: relative;
	max-width: var(--container-narrow);
	margin: 0 auto;
	text-align: center;
}

.gwg-hero__eyebrow {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 4px;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gwg-blue);
	margin-bottom: 18px;
}

.gwg-hero h1 {
	font-size: clamp(28px, 8vw, 84px);
	font-weight: 900;
	letter-spacing: -0.02em;
	margin-bottom: 16px;
	white-space: nowrap;
}

.gwg-hero__w--purple { color: var(--gwg-purple); }
.gwg-hero__w--blue { color: var(--gwg-blue); }
.gwg-hero__w--blend {
	background: linear-gradient(90deg, var(--gwg-purple) 0%, var(--gwg-blue) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--gwg-purple); /* fallback if background-clip unsupported */
}

.gwg-hero__memorial {
	font-style: italic;
	font-size: clamp(15px, 1.6vw, 17px);
	color: var(--gwg-text);
	margin: 0 auto 14px;
	letter-spacing: 0.5px;
}
.gwg-hero__memorial strong {
	color: var(--gwg-purple);
	font-style: normal;
	font-weight: 700;
}

.gwg-hero__sub {
	font-size: clamp(15px, 1.8vw, 18px);
	color: var(--gwg-text-muted);
	margin: 0 auto 32px;
	max-width: 640px;
	line-height: 1.5;
}

.gwg-hero__cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

@media (max-width: 720px) {
	.gwg-hero { padding: 60px 20px 60px; }
}

/* HOME · FOUR PILLARS */
.gwg-pillars {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 22px;
	margin-top: 8px;
}

.gwg-card {
	display: block;
	background: var(--gwg-canvas);
	border: 1px solid var(--gwg-border);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	color: var(--gwg-text);
	transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.gwg-card:hover {
	transform: translateY(-3px);
	border-color: rgba(17, 175, 236, 0.4);
	box-shadow: var(--shadow-lift);
	color: var(--gwg-text);
}
.gwg-card__tag {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gwg-blue);
	margin-bottom: 12px;
}
.gwg-card h3 { margin-bottom: 8px; }
.gwg-card p {
	color: var(--gwg-text-muted);
	font-size: 15px;
}
.gwg-card__more {
	display: inline-block;
	margin-top: 14px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gwg-purple);
}

/* FOE SECTION */
.gwg-foe {
	padding: 70px 24px;
	text-align: center;
	background: linear-gradient(135deg, rgba(107, 36, 106, 0.07), rgba(17, 175, 236, 0.05));
	border-top: 1px solid rgba(107, 36, 106, 0.15);
	border-bottom: 1px solid rgba(107, 36, 106, 0.15);
}
.gwg-foe__inner {
	max-width: 680px;
	margin: 0 auto;
}
.gwg-foe__eyebrow {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 12px;
	letter-spacing: 3.5px;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gwg-purple);
	margin-bottom: 12px;
}
.gwg-foe__eyebrow .dot {
	display: inline-block;
	margin: 0 10px;
	color: var(--gwg-text-subtle);
}
.gwg-foe h2 {
	font-size: clamp(32px, 4.5vw, 44px);
	font-weight: 900;
	color: var(--gwg-text);
	margin-bottom: 18px;
	letter-spacing: -0.01em;
}
.gwg-foe__quote {
	font-style: italic;
	font-size: clamp(16px, 1.9vw, 19px);
	color: var(--gwg-text);
	line-height: 1.55;
	margin: 0 0 14px;
}
.gwg-foe__attr {
	display: block;
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gwg-text-muted);
}

/* HOME · TESTIMONIAL */
.gwg-testimonial {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	font-family: var(--font-body);
	font-size: clamp(20px, 2.6vw, 26px);
	font-weight: 500;
	line-height: 1.4;
	color: var(--gwg-text);
}
.gwg-testimonial__quote { margin: 0; }
.gwg-testimonial__quote::before {
	content: '\201C';
	color: var(--gwg-blue);
	margin-right: 4px;
	font-family: var(--font-display);
}
.gwg-testimonial__quote::after {
	content: '\201D';
	color: var(--gwg-blue);
	margin-left: 2px;
	font-family: var(--font-display);
}
.gwg-testimonial__attr {
	display: block;
	margin-top: 18px;
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gwg-text-muted);
}

/* "Let's get you started" CTA BLOCK */
.gwg-cta-block {
	text-align: center;
	padding: 70px 24px;
	background: var(--gwg-canvas-soft);
}
.gwg-cta-block h2 {
	font-size: clamp(28px, 4vw, 38px);
	margin-bottom: 24px;
}
.gwg-cta-block__row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

/* GENERIC PAGE TEMPLATE */
.gwg-page-hero {
	padding: 70px 24px 50px;
	background: linear-gradient(135deg, var(--gwg-canvas-tint) 0%, #EAF6FE 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.gwg-page-hero h1 {
	font-size: clamp(40px, 6.5vw, 64px);
	margin-bottom: 0;
}

.gwg-page-content {
	max-width: var(--container);
	margin: 0 auto;
	padding: 60px 24px;
	font-family: var(--font-serif);
	font-size: 17px;
	line-height: 1.7;
}
/* Constrain prose to narrow reading width; hero / headers / dividers run wide */
.gwg-page-content p,
.gwg-page-content ul,
.gwg-page-content ol,
.gwg-page-content blockquote,
.gwg-page-content .gwg-pullquote,
.gwg-page-content .gwg-signature {
	max-width: var(--container-narrow);
	margin-left: auto;
	margin-right: auto;
}
/* But the hero's own paragraphs should NOT be constrained — they live inside the hero block already */
.gwg-page-content .gwg-article-hero p,
.gwg-page-content .gwg-article-hero ul,
.gwg-page-content .gwg-coach-hero p,
.gwg-page-content .gwg-coach-hero ul,
.gwg-page-content .gwg-signature p {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}
.gwg-page-content h1,
.gwg-page-content h2,
.gwg-page-content h3,
.gwg-page-content h4 {
	font-family: var(--font-serif);
	font-weight: 700;
	letter-spacing: -0.005em;
	line-height: 1.15;
}
.gwg-page-content h1 {
	font-size: clamp(36px, 5.5vw, 52px);
	margin-bottom: 0.4em;
}
.gwg-page-content h2 {
	margin-top: 1.6em;
	font-size: clamp(26px, 3.6vw, 34px);
}
.gwg-page-content h3 { margin-top: 1.4em; font-size: 22px; }
.gwg-page-content ul { padding-left: 22px; }
.gwg-page-content li { margin-bottom: 6px; }
.gwg-page-content a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

/* ARTICLE HERO — for About-style page intros with brand-name title */
.gwg-article-hero {
	padding: 8px 0 32px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--gwg-border);
}
.gwg-article-hero__stamp {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	padding: 5px 14px;
	background: var(--gwg-purple);
	color: #fff;
	border-radius: var(--radius-pill);
	margin-bottom: 18px;
}
.gwg-article-hero__title {
	font-family: var(--font-display);
	font-size: clamp(36px, 6vw, 64px);
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: -0.02em;
	margin: 0 0 14px;
	white-space: nowrap;
}
.gwg-article-hero__title .gwg-w-purple { color: var(--gwg-purple); }
.gwg-article-hero__title .gwg-w-blue { color: var(--gwg-blue); }
.gwg-article-hero__title .gwg-w-blend {
	background: linear-gradient(90deg, var(--gwg-purple) 0%, var(--gwg-blue) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--gwg-purple);
}
.gwg-article-hero__slogan {
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gwg-blue);
	margin: 0 0 16px;
}
.gwg-article-hero__slogan .gwg-hash { color: var(--gwg-purple); }
.gwg-article-hero__lede {
	font-size: 17px;
	line-height: 1.6;
	color: var(--gwg-text);
	margin: 0;
	max-width: 580px;
}

/* COACH HERO — article hero variant with portrait beside the text */
.gwg-coach-hero {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 36px;
	align-items: center;
	padding: 8px 0 32px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--gwg-border);
}
.gwg-coach-hero__photo img {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	object-position: center 20%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	display: block;
}
.gwg-coach-hero__text { min-width: 0; }
.gwg-coach-hero__title { white-space: normal; } /* allow Coach / Bill to wrap on tight viewports if needed */

@media (max-width: 720px) {
	.gwg-coach-hero {
		grid-template-columns: 1fr;
		gap: 24px;
		text-align: center;
	}
	.gwg-coach-hero__photo {
		max-width: 240px;
		margin: 0 auto;
	}
	.gwg-coach-hero__text .gwg-article-hero__lede {
		margin-left: auto;
		margin-right: auto;
	}
}

/* MIRROR GRADIENTS — for paired words like "Coach Bill" */
.gwg-w-grad-pb {
	background: linear-gradient(90deg, var(--gwg-purple) 0%, var(--gwg-blue) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--gwg-purple);
}
.gwg-w-grad-bp {
	background: linear-gradient(90deg, var(--gwg-blue) 0%, var(--gwg-purple) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--gwg-blue);
}

/* ARTICLE SECTION HEADERS — underlined accent that pages can use to break long copy */
.gwg-page-content h2.gwg-h2-rule {
	display: block;
	width: 50%;
	padding-bottom: 10px;
	border-bottom: 3px solid var(--gwg-blue);
	margin-top: 1.8em;
}
.gwg-page-content h2.gwg-h2-rule.is-purple { border-bottom-color: var(--gwg-purple); }

/* PULL QUOTES */
.gwg-page-content .gwg-pullquote {
	font-family: var(--font-serif);
	font-size: clamp(20px, 2.4vw, 24px);
	font-weight: 600;
	font-style: italic;
	line-height: 1.4;
	color: var(--gwg-text);
	border-left: 4px solid var(--gwg-blue);
	padding: 6px 22px;
	margin: 28px 0;
}
.gwg-page-content .gwg-pullquote.is-purple { border-left-color: var(--gwg-purple); }

/* SIGNATURE BLOCK — for closing paragraphs / Coach Bill sign-offs */
.gwg-page-content .gwg-signature {
	margin: 36px 0 0;
	padding: 24px 26px;
	background: var(--gwg-canvas-tint);
	border-left: 4px solid var(--gwg-purple);
	font-size: 16px;
	line-height: 1.7;
}
.gwg-page-content .gwg-signature p {
	font-style: italic;
	margin: 0 0 12px;
}
.gwg-page-content .gwg-signature p:last-child { margin: 0; }
.gwg-page-content .gwg-signature .gwg-signature__attr {
	display: block;
	margin-top: 14px;
	font-family: var(--font-display);
	font-style: normal;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gwg-purple);
}

/* PAGE CLOSER — tagline + hashtag ending bar */
.gwg-page-content .gwg-page-closer {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--gwg-border);
	text-align: center;
	font-style: italic;
	color: var(--gwg-text-muted);
	font-size: 14px;
}
.gwg-page-content .gwg-page-closer strong {
	color: var(--gwg-purple);
	font-style: normal;
	font-weight: 700;
}

.gwg-page-content a.gwg-btn { text-decoration: none; }

/* DIVIDERS — match the article-hero bottom border so all section breaks read the same */
.gwg-page-content hr.gwg-divider {
	border: 0;
	border-top: 1px solid var(--gwg-border);
	height: 0;
	background: none;
	margin: 48px 0;
	max-width: none;
	opacity: 1;
}

/* Ornamented divider variant — gradient line with a centered #32 medallion */
.gwg-page-content .gwg-divider--ornament {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin: 48px 0;
	color: var(--gwg-text-subtle);
}
.gwg-page-content .gwg-divider--ornament::before,
.gwg-page-content .gwg-divider--ornament::after {
	content: '';
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gwg-border), var(--gwg-border));
	max-width: 200px;
}
.gwg-page-content .gwg-divider--ornament::after {
	background: linear-gradient(90deg, var(--gwg-border), var(--gwg-border), transparent);
}
.gwg-page-content .gwg-divider--ornament span {
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gwg-purple);
	white-space: nowrap;
}

/* SERVICE OFFER GRID — pricing cards used on Lessons / Camps / Facility / Parties */
.gwg-page-content .gwg-offer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 18px;
	margin: 22px 0 8px;
	max-width: none;
}
.gwg-page-content .gwg-offer {
	background: #fff;
	border: 1px solid var(--gwg-border);
	border-left: 4px solid var(--gwg-purple);
	border-radius: var(--radius-lg);
	padding: 22px 24px;
	font-family: var(--font-serif);
}
.gwg-page-content .gwg-offer.is-blue { border-left-color: var(--gwg-blue); }
.gwg-page-content .gwg-offer__eyebrow {
	font-family: var(--font-display);
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gwg-purple);
	margin-bottom: 8px;
}
.gwg-page-content .gwg-offer.is-blue .gwg-offer__eyebrow { color: var(--gwg-blue); }
.gwg-page-content .gwg-offer__name {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 22px;
	line-height: 1.2;
	margin: 0 0 8px;
	color: var(--gwg-text);
}
.gwg-page-content .gwg-offer__price {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.5px;
	color: var(--gwg-text);
	margin-bottom: 14px;
}
.gwg-page-content .gwg-offer__price .gwg-offer__unit {
	color: var(--gwg-text-muted);
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0;
	margin-left: 4px;
}
.gwg-page-content .gwg-offer__desc {
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--gwg-text);
	margin: 0 0 14px;
	max-width: none;
}
.gwg-page-content .gwg-offer__desc:last-child { margin-bottom: 0; }
.gwg-page-content .gwg-offer__bestfor {
	font-size: 13px;
	line-height: 1.55;
	color: var(--gwg-text-muted);
	padding-top: 12px;
	border-top: 1px solid var(--gwg-border-soft);
	max-width: none;
}
.gwg-page-content .gwg-offer__bestfor strong {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 11px;
	color: var(--gwg-purple);
	display: block;
	margin-bottom: 4px;
	font-style: normal;
}
.gwg-page-content .gwg-offer.is-blue .gwg-offer__bestfor strong { color: var(--gwg-blue); }

/* RATE CARDS — for cage rentals showing dual prices (cage / +machine) */
.gwg-page-content .gwg-rate-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 18px;
	margin: 22px 0 8px;
	max-width: none;
}
.gwg-page-content .gwg-rate {
	background: #fff;
	border: 1px solid var(--gwg-border);
	border-left: 4px solid var(--gwg-purple);
	border-radius: var(--radius-lg);
	padding: 20px 22px;
}
.gwg-page-content .gwg-rate.is-blue { border-left-color: var(--gwg-blue); }
.gwg-page-content .gwg-rate__eyebrow {
	font-family: var(--font-display);
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gwg-purple);
	margin-bottom: 6px;
}
.gwg-page-content .gwg-rate.is-blue .gwg-rate__eyebrow { color: var(--gwg-blue); }
.gwg-page-content .gwg-rate__name {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 19px;
	margin: 0 0 8px;
	color: var(--gwg-text);
}
.gwg-page-content .gwg-rate__prices {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	align-items: baseline;
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid var(--gwg-border-soft);
}
.gwg-page-content .gwg-rate__line {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin: 0;
	max-width: none;
}
.gwg-page-content .gwg-rate__label {
	font-family: var(--font-display);
	font-size: 11px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gwg-text-muted);
	font-weight: 700;
}
.gwg-page-content .gwg-rate__num {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 22px;
	color: var(--gwg-text);
}

/* MEMBERSHIP TIER GRID */
.gwg-page-content .gwg-tier-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
	margin: 28px 0 8px;
	max-width: none;
}
.gwg-page-content .gwg-tier {
	background: #fff;
	border: 1px solid var(--gwg-border);
	border-radius: var(--radius-lg);
	padding: 24px 24px 26px;
	display: flex;
	flex-direction: column;
}
.gwg-page-content .gwg-tier.is-featured {
	border: 2px solid var(--gwg-purple);
	position: relative;
	box-shadow: var(--shadow-lift);
}
.gwg-page-content .gwg-tier.is-featured::before {
	content: 'Most Popular';
	position: absolute;
	top: -11px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gwg-purple);
	color: #fff;
	font-family: var(--font-display);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: var(--radius-pill);
	white-space: nowrap;
}
.gwg-page-content .gwg-tier__name {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 28px;
	letter-spacing: -0.01em;
	margin: 0;
	line-height: 1;
}
.gwg-page-content .gwg-tier__name--purple { color: var(--gwg-purple); }
.gwg-page-content .gwg-tier__name--blue { color: var(--gwg-blue); }
.gwg-page-content .gwg-tier__name--blend {
	background: linear-gradient(90deg, var(--gwg-purple) 0%, var(--gwg-blue) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--gwg-purple);
}
.gwg-page-content .gwg-tier__tag {
	font-family: var(--font-display);
	font-size: 11px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gwg-text-muted);
	font-weight: 700;
	margin: 4px 0 16px;
}
.gwg-page-content .gwg-tier__price {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 38px;
	line-height: 1;
	color: var(--gwg-text);
}
.gwg-page-content .gwg-tier__per {
	font-size: 13px;
	color: var(--gwg-text-muted);
	font-weight: 400;
	letter-spacing: 0;
	margin-left: 4px;
	font-family: var(--font-serif);
}
.gwg-page-content .gwg-tier__perks {
	list-style: none;
	padding: 0;
	margin: 18px 0 0;
	flex: 1;
	max-width: none;
	font-family: var(--font-serif);
}
.gwg-page-content .gwg-tier__perks li {
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--gwg-text);
	padding: 8px 0 8px 22px;
	margin: 0;
	position: relative;
	border-bottom: 1px solid var(--gwg-border-soft);
}
.gwg-page-content .gwg-tier__perks li:last-child { border-bottom: 0; }
.gwg-page-content .gwg-tier__perks li::before {
	content: '';
	position: absolute;
	left: 4px;
	top: 16px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gwg-blue);
}
.gwg-page-content .gwg-tier.is-featured .gwg-tier__perks li::before { background: var(--gwg-purple); }
.gwg-page-content .gwg-tier__perks li strong { font-weight: 700; }

/* ANNUAL PREPAY CALLOUT */
.gwg-page-content .gwg-annual-save {
	margin: 18px auto 0;
	padding: 16px 22px;
	background: var(--gwg-canvas-soft);
	border-radius: var(--radius);
	font-size: 15px;
	color: var(--gwg-text);
	text-align: center;
	max-width: var(--container-narrow);
}
.gwg-page-content .gwg-annual-save strong {
	color: var(--gwg-purple);
	font-weight: 700;
}

/* FULL FACILITY RENTAL GRID — compact 3-up cards */
.gwg-page-content .gwg-ff-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
	margin: 22px 0 8px;
	max-width: none;
}
.gwg-page-content .gwg-ff {
	background: #fff;
	border: 1px solid var(--gwg-border);
	border-left: 4px solid var(--gwg-purple);
	border-radius: var(--radius-lg);
	padding: 18px 20px;
}
.gwg-page-content .gwg-ff.is-blue { border-left-color: var(--gwg-blue); }
.gwg-page-content .gwg-ff__name {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 19px;
	color: var(--gwg-text);
	margin: 0;
	line-height: 1.1;
}
.gwg-page-content .gwg-ff__price {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 24px;
	color: var(--gwg-text);
	margin: 8px 0 0;
}
.gwg-page-content .gwg-ff__desc {
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--gwg-text-muted);
	margin: 6px 0 0;
	max-width: none;
}

/* COMING SOON SPLASH OVERLAY
   Wraps a full page in two layers:
     .gwg-coming-soon__behind  — the real, finished page content (blurred + dimmed)
     .gwg-coming-soon__splash  — the announcement card sitting on top
   When the page goes live, remove the wrapping <div class="gwg-coming-soon"> in
   the page content (or toggle a class) and the splash disappears, revealing the
   page underneath untouched. */
.gwg-page-content .gwg-coming-soon {
	position: relative;
	min-height: 480px;
	max-width: none;
}
.gwg-page-content .gwg-coming-soon__behind {
	filter: blur(2px);
	opacity: 0.35;
	pointer-events: none;
	user-select: none;
	max-width: none;
}
.gwg-page-content .gwg-coming-soon__splash {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 60px;
	pointer-events: none;
	z-index: 5;
}
.gwg-page-content .gwg-coming-soon__card {
	pointer-events: auto;
	text-align: center;
	padding: 40px 44px 36px;
	background: #fff;
	border: 1px solid var(--gwg-border);
	border-radius: var(--radius-lg);
	box-shadow: 0 18px 48px -20px rgba(107, 36, 106, 0.35);
	max-width: 520px;
	margin: 0 24px;
	position: sticky;
	top: 80px;
}
.gwg-page-content .gwg-coming-soon__eyebrow {
	font-family: var(--font-display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gwg-blue);
	margin-bottom: 12px;
}
.gwg-page-content .gwg-coming-soon__title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(28px, 4vw, 38px);
	line-height: 1.05;
	color: var(--gwg-purple);
	margin: 0 0 14px;
	letter-spacing: -0.01em;
}
.gwg-page-content .gwg-coming-soon__msg {
	font-family: var(--font-serif);
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--gwg-text);
	margin: 0 0 14px;
	max-width: none;
}
.gwg-page-content .gwg-coming-soon__msg:last-of-type { margin-bottom: 22px; }
.gwg-page-content .gwg-coming-soon__stamp {
	font-family: var(--font-display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gwg-purple);
	margin-top: 18px;
}

/* CONTACT FORM */
.gwg-form {
	max-width: 640px;
	margin: 24px 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.gwg-form__row {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.gwg-form label {
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gwg-text);
}
.gwg-form label .req { color: var(--gwg-purple); }
.gwg-form input[type="text"],
.gwg-form input[type="email"],
.gwg-form input[type="tel"],
.gwg-form select,
.gwg-form textarea {
	width: 100%;
	padding: 12px 14px;
	font-family: var(--font-body);
	font-size: 16px;
	color: var(--gwg-text);
	background: #fff;
	border: 1px solid var(--gwg-border);
	border-radius: var(--radius);
	transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.gwg-form input:focus,
.gwg-form select:focus,
.gwg-form textarea:focus {
	outline: none;
	border-color: var(--gwg-blue);
	box-shadow: 0 0 0 3px rgba(17, 175, 236, 0.15);
}
.gwg-form textarea {
	resize: vertical;
	min-height: 120px;
	line-height: 1.5;
}
.gwg-form__check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	color: var(--gwg-text-muted);
	line-height: 1.5;
}
.gwg-form__check input[type="checkbox"] {
	margin-top: 3px;
	width: auto;
}
.gwg-form button[type="submit"] {
	align-self: flex-start;
	border: none;
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
.gwg-form-status {
	padding: 14px 18px;
	border-radius: var(--radius);
	margin-bottom: 18px;
	font-size: 15px;
}
.gwg-form-status--sent {
	background: rgba(17, 175, 236, 0.1);
	border-left: 3px solid var(--gwg-blue);
	color: var(--gwg-text);
}
.gwg-form-status--error {
	background: rgba(220, 53, 69, 0.08);
	border-left: 3px solid #dc3545;
	color: var(--gwg-text);
}

/* FOOTER */
.gwg-footer {
	background: var(--gwg-text);
	color: rgba(255, 255, 255, 0.78);
	padding: 60px 32px 28px;
	font-size: 14px;
}
.gwg-footer a { color: rgba(255, 255, 255, 0.78); }
.gwg-footer a:hover { color: #fff; }

.gwg-footer__cols {
	max-width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 36px;
	padding-bottom: 36px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gwg-footer__col h4 {
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gwg-blue);
	margin: 0 0 14px;
}

.gwg-footer__col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.gwg-footer__col li { margin-bottom: 6px; }

.gwg-footer__brand {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 22px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 12px;
}

.gwg-footer__tagline {
	max-width: var(--container);
	margin: 28px auto 0;
	text-align: center;
	font-style: italic;
	font-size: 15px;
	color: #fff;
	letter-spacing: 0.5px;
}
.gwg-footer__tagline strong {
	color: var(--gwg-blue);
	font-style: normal;
	font-weight: 700;
}

.gwg-footer__memorial {
	max-width: var(--container);
	margin: 12px auto 0;
	text-align: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}
.gwg-footer__memorial .heart { margin-right: 6px; }

.gwg-footer__legal {
	max-width: var(--container);
	margin: 18px auto 0;
	text-align: center;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.gwg-social {
	display: flex;
	gap: 10px;
	margin-top: 8px;
}
.gwg-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px; height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.gwg-social a:hover { background: var(--gwg-blue); color: #fff; }
.gwg-social svg { width: 18px; height: 18px; fill: currentColor; }

.gwg-post-list { list-style: none; padding: 0; margin: 0; }
.gwg-post-list li { padding: 18px 0; border-bottom: 1px solid var(--gwg-border-soft); }
.gwg-post-list li:last-child { border-bottom: 0; }
