/* ==========================================================================
   THE GAROE Group — about.css
   Page-specific styles for the About page. Enqueued for is_page('about').

   Resets, fonts, header, footer, .container and root tokens come from the
   theme (style.css / main.css) and are not repeated here. Shorthand tokens
   from the prototype have been reconciled to the theme's --color-* / --tier-*
   custom properties.

   NOTE: .page-hero here is the full-bleed photo hero from the prototype. The
   theme also defines a .page-hero band (main.css) used by page.php's title
   block — see the handover notes about the class-name overlap.
   ========================================================================== */

/* ════════════════════════
   HERO
   ════════════════════════ */
.page-hero {
	border-bottom: 1px solid var(--color-line-dark);
	min-height: 520px;
	display: flex;
	align-items: flex-end;
	padding: 0 0 80px;
	position: relative;
	overflow: hidden;
}
/* Stadium photo layer */
.page-hero-photo {
	position: absolute;
	inset: 0;
	background-image: url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?w=1800&q=80');
	background-size: cover;
	background-position: center 40%;
	background-repeat: no-repeat;
}
/* Dark base overlay — knocks the photo back hard */
.page-hero-dim {
	position: absolute;
	inset: 0;
	background: rgba(6, 5, 2, 0.72);
}
/* Gold-tinted gradient — bottom heavy so text sits on dark base */
.page-hero-gradient {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			to bottom,
			rgba(6, 5, 2, 0.30) 0%,
			rgba(6, 5, 2, 0.55) 45%,
			rgba(6, 5, 2, 0.90) 100%
		);
}
/* Very subtle gold cast over the whole image */
.page-hero-tint {
	position: absolute;
	inset: 0;
	background: rgba(180, 130, 50, 0.06);
	mix-blend-mode: screen;
	pointer-events: none;
}
.page-hero-content {
	position: relative;
	z-index: 2;
	max-width: 820px;
}
.page-eyebrow {
	color: var(--color-gold);
	display: block;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.26em;
	margin-bottom: 22px;
	opacity: 0.7;
	text-transform: uppercase;
}
.page-hero h1 {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 60px;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.08;
	margin-bottom: 0;
}
.page-hero h1 em {
	font-style: italic;
	color: rgba(240, 236, 228, 0.55);
}

/* ════════════════════════
   INTRO / MISSION
   ════════════════════════ */
.mission-section {
	background: var(--color-carbon-2);
	border-bottom: 1px solid var(--color-line-dark);
	padding: 80px 0;
}
.mission-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}
.mission-eyebrow {
	color: var(--color-gold);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	opacity: 0.65;
	display: block;
	margin-bottom: 20px;
}
.mission-heading {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 36px;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 24px;
}
.mission-body {
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.78;
}
.mission-body p + p { margin-top: 16px; }

.mission-right {
	padding-top: 6px;
}
/* Pull quote */
.pull-quote {
	border-left: 1px solid rgba(200, 169, 110, 0.35);
	padding: 4px 0 4px 28px;
	margin-bottom: 36px;
}
.pull-quote p {
	color: rgba(240, 236, 228, 0.80);
	font-family: var(--font-display);
	font-size: 22px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.5;
}
.mission-principles {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.principle {
	padding: 18px 0;
	border-bottom: 1px solid var(--color-line-dark);
	display: flex;
	gap: 18px;
	align-items: flex-start;
}
.principle:first-child { border-top: 1px solid var(--color-line-dark); }
.principle-marker {
	color: var(--color-gold);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	opacity: 0.55;
	flex-shrink: 0;
	padding-top: 2px;
	min-width: 68px;
}
.principle-text {
	color: rgba(240, 236, 228, 0.75);
	font-size: 13px;
	line-height: 1.65;
}

/* ════════════════════════
   WHAT WE DO
   ════════════════════════ */
.what-section {
	background: var(--color-carbon);
	border-bottom: 1px solid var(--color-line-dark);
	padding: 80px 0;
}
.what-header {
	margin-bottom: 52px;
}
.sec-eyebrow {
	color: var(--color-gold);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	opacity: 0.65;
	display: block;
	margin-bottom: 14px;
}
.sec-heading {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 36px;
	font-weight: 400;
	line-height: 1.2;
	max-width: 560px;
}
.what-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
}
.what-card {
	background: rgba(200, 169, 110, 0.03);
	border: 1px solid var(--color-line-dark);
	padding: 36px;
	position: relative;
}
.what-card-tier-bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 2px;
	height: 100%;
}
.bar-copper { background: var(--tier-copper); }
.bar-gold   { background: var(--color-gold); }
.what-card-label {
	color: var(--color-gold);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	opacity: 0.65;
	display: block;
	margin-bottom: 14px;
}
.what-card h3 {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 14px;
}
.what-card p {
	color: var(--color-muted);
	font-size: 13px;
	line-height: 1.72;
	margin-bottom: 22px;
}
.what-card-link {
	color: var(--color-gold);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.16em;
	text-decoration: none;
	text-transform: uppercase;
	opacity: 0.75;
	transition: opacity 0.15s;
}
.what-card-link:hover { opacity: 1; }

/* ════════════════════════
   CREDENTIALS / PROOF
   ════════════════════════ */
.proof-section {
	background: var(--color-carbon-2);
	border-bottom: 1px solid var(--color-line-dark);
	padding: 80px 0;
}
.proof-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 52px;
	gap: 40px;
}
.proof-subhead {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.7;
	max-width: 400px;
	margin-top: 12px;
}

.proof-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	margin-bottom: 52px;
}
.stat-block {
	background: rgba(200, 169, 110, 0.03);
	border: 1px solid var(--color-line-dark);
	padding: 32px 28px;
	text-align: left;
}
.stat-value {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 44px;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 8px;
	display: block;
}
.stat-value em {
	color: var(--color-gold);
	font-style: normal;
}
.stat-label {
	color: var(--color-muted);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	line-height: 1.55;
	display: block;
}

.proof-clubs-label {
	color: var(--color-gold);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	opacity: 0.65;
	display: block;
	margin-bottom: 20px;
}
.proof-clubs {
	display: flex;
	gap: 2px;
	flex-wrap: wrap;
}
.club-chip {
	background: rgba(200, 169, 110, 0.03);
	border: 1px solid var(--color-line-dark);
	color: rgba(240, 236, 228, 0.6);
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	padding: 10px 18px;
	text-transform: uppercase;
}

/* ════════════════════════
   FOUNDING / TEAM (PLACEHOLDER)
   ════════════════════════ */
.team-section {
	background: var(--color-carbon-3);
	border-bottom: 1px solid var(--color-line-dark);
	padding: 80px 0;
}
.team-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.team-placeholder-note {
	display: inline-block;
	background: rgba(200, 169, 110, 0.06);
	border: 1px solid rgba(200, 169, 110, 0.2);
	color: rgba(200, 169, 110, 0.5);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.16em;
	padding: 6px 12px;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.team-heading {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 36px;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 18px;
}
.team-body {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.78;
}
.team-body p + p { margin-top: 14px; }

.team-card-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
}
.team-card {
	background: rgba(200, 169, 110, 0.03);
	border: 1px solid var(--color-line-dark);
	padding: 28px 24px;
}
.team-card-avatar {
	width: 44px;
	height: 44px;
	background: rgba(200, 169, 110, 0.08);
	border: 1px solid rgba(200, 169, 110, 0.2);
	border-radius: 50%;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.team-card-avatar-init {
	color: rgba(200, 169, 110, 0.5);
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.08em;
	font-weight: 600;
}
.team-card-name {
	color: var(--color-white);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 4px;
}
.team-card-role {
	color: var(--color-muted);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.team-card-placeholder {
	background: rgba(200, 169, 110, 0.02);
	border: 1px dashed rgba(200, 169, 110, 0.12);
	padding: 28px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.team-card-placeholder-label {
	color: rgba(200, 169, 110, 0.2);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-align: center;
}

/* ════════════════════════
   CTA
   ════════════════════════ */
.cta-section {
	background: var(--color-carbon);
	border-top: 1px solid var(--color-line-dark);
	padding: 96px 0;
	text-align: center;
}
.cta-section h2 {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 44px;
	font-weight: 400;
	line-height: 1.1;
	margin-bottom: 14px;
}
.cta-section h2 span { color: var(--color-gold); }
.cta-tagline {
	color: rgba(200, 169, 110, 0.5);
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.2em;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.cta-section p {
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.75;
	margin: 0 auto 44px;
	max-width: 480px;
}
.btn-primary {
	background: var(--color-gold);
	border: none;
	color: var(--color-carbon);
	cursor: pointer;
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	padding: 16px 40px;
	text-transform: uppercase;
	transition: background 0.15s;
	display: inline-block;
	text-decoration: none;
}
.btn-primary:hover { background: var(--color-gold-light); }

/* ════════════════════════
   RESPONSIVE
   ════════════════════════ */
@media (max-width: 960px) {
	.mission-grid,
	.what-grid,
	.team-inner { grid-template-columns: 1fr; gap: 40px; }
	.proof-stats { grid-template-columns: 1fr 1fr; }
	.proof-header { flex-direction: column; align-items: flex-start; }
	.page-hero h1 { font-size: 40px; }
	.cta-section h2 { font-size: 34px; }
}
