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

   Resets, fonts, header, footer, .container and root tokens come from the theme
   (style.css / main.css) and are not repeated here. The prototype-only "hero
   variant" toggle bar and its centred-hero overrides have been dropped.

   Shorthand prototype tokens reconciled to theme tokens:
     --carbon*  → --color-carbon*      --rule / --gold-dim → --color-line-dark
     --gold     → --color-gold         --muted             → --color-muted
     --copper   → --tier-copper        --silver            → --tier-silver
     --gold-tier→ --tier-gold          --black-tier        → --tier-black
   ========================================================================== */

/* ════════════════════════ BUTTONS ════════════════════════ */
.btn-primary {
	background: var(--color-gold);
	border: none;
	color: var(--color-carbon);
	cursor: pointer;
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	padding: 14px 32px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 0.15s;
}
.btn-primary:hover { background: var(--color-gold-light); }
.btn-outline {
	background: transparent;
	border: 1px solid rgba(200, 169, 110, 0.55);
	color: var(--color-gold);
	cursor: pointer;
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	padding: 14px 32px;
	text-decoration: none;
	text-transform: uppercase;
	transition: border-color 0.15s;
}
.btn-outline:hover { border-color: var(--color-gold); }

/* ════════════════════════ SHARED SECTION UTILITIES ════════════════════════ */
.sec-eyebrow {
	color: var(--color-gold);
	display: block;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.24em;
	margin-bottom: 12px;
	opacity: 0.75;
	text-transform: uppercase;
}
.sec-rule { height: 1px; background: var(--color-line-dark); }

/* ════════════════════════ HERO ════════════════════════ */
.hero {
	background: var(--color-carbon);
	min-height: 480px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 64px;
	overflow: hidden;
	position: relative;
	padding: 100px 80px;
}
/* Ruled-paper grid — tighter than homepage, feels like ledger lines */
.hero-grid {
	background-image:
		linear-gradient(rgba(200, 169, 110, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(200, 169, 110, 0.025) 1px, transparent 1px);
	background-size: 48px 48px;
	position: absolute;
	inset: 0;
}
.hero-vignette {
	background: radial-gradient(ellipse 90% 100% at 0% 50%, transparent 30%, rgba(10, 10, 10, 0.92) 100%);
	position: absolute;
	inset: 0;
}
/* Gold vertical accent line — the page's signature structural element */
.hero-accent-line {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(to bottom, transparent, var(--color-gold) 20%, var(--color-gold) 80%, transparent);
	opacity: 0.6;
	z-index: 1;
}
.hero-content {
	max-width: 600px;
	flex: 1 1 600px;
	position: relative;
	z-index: 2;
}
.hero-programme-label {
	color: rgba(200, 169, 110, 0.5);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.hero-programme-label::after {
	content: '';
	display: block;
	width: 32px;
	height: 1px;
	background: rgba(200, 169, 110, 0.3);
}
.hero-title {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 64px;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.05;
	margin-bottom: 24px;
}
.hero-title em {
	color: var(--color-gold);
	font-style: italic;
}
.hero-statement {
	color: rgba(240, 236, 228, 0.55);
	font-size: 15px;
	line-height: 1.7;
	max-width: 520px;
	margin-bottom: 40px;
}
.hero-proof-row {
	display: flex;
	gap: 0;
	border-top: 1px solid var(--color-line-dark);
	padding-top: 28px;
}
.hero-proof-item {
	flex: 1;
	padding-right: 28px;
	border-right: 1px solid var(--color-line-dark);
	margin-right: 28px;
}
.hero-proof-item:last-child {
	border-right: none;
	margin-right: 0;
	padding-right: 0;
}
.hero-proof-milestone {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 18px;
	line-height: 1.2;
	margin-bottom: 3px;
}
.hero-proof-name {
	color: var(--color-gold);
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1px;
}
.hero-proof-club {
	color: var(--color-muted);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.hero-video-zone {
	position: relative;
	flex: 1 1 480px;
	max-width: 560px;
	width: 100%;
	aspect-ratio: 4/3;
	background: rgba(200, 169, 110, 0.04);
	border: 1px solid var(--color-line-dark);
	overflow: hidden;
	z-index: 2;
}
.hero-video-zone svg { opacity: 0.25; }
.hero-video-label {
	color: rgba(200, 169, 110, 0.3);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-align: center;
}

/* ════════════════════════ PRODUCT SECTION ════════════════════════ */
.product-section {
	background: var(--color-carbon-2);
	border-top: 1px solid var(--color-line-dark);
	padding: 96px 0;
}
.product-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}
.product-text .sec-eyebrow { margin-bottom: 14px; }
.product-text h2 {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 40px;
	font-weight: 400;
	line-height: 1.12;
	margin-bottom: 20px;
}
.product-text p {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.78;
	margin-bottom: 20px;
	max-width: 440px;
}
.product-specs {
	margin-top: 32px;
	border-top: 1px solid var(--color-line-dark);
	padding-top: 24px;
}
.product-spec-row {
	display: flex;
	align-items: baseline;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(200, 169, 110, 0.08);
}
.product-spec-row:last-child { border-bottom: none; }
.product-spec-key {
	color: rgba(200, 169, 110, 0.45);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	flex: 0 0 140px;
}
.product-spec-val {
	color: rgba(240, 236, 228, 0.75);
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.05em;
}

/* Plaque gallery */
.product-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 12px;
}
.plaque-card {
	background: #0e0d0b;
	border: 1px solid var(--color-line-dark);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 12px;
	aspect-ratio: 3/4;
	position: relative;
	overflow: hidden;
}
.plaque-card-finish {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Simulated plaque backgrounds — each tier colour */
.plaque-cu .plaque-card-finish { background: linear-gradient(135deg, #5c3010 0%, #a0561e 40%, #7a3d14 100%); }
.plaque-si .plaque-card-finish { background: linear-gradient(135deg, #2a2a30 0%, #4a4a52 40%, #343438 100%); }
.plaque-go .plaque-card-finish { background: linear-gradient(135deg, #5a3e10 0%, #a0781a 40%, #7a5820 100%); }

.plaque-card-finish-inner {
	width: 60%;
	height: 70%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
}
/* SVG shirt inside plaque */
.plaque-shirt-name {
	color: rgba(255, 255, 255, 0.8);
	font-family: var(--font-mono);
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.plaque-shirt-number {
	color: var(--color-white);
	font-family: var(--font-mono);
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1;
}
.plaque-card-meta {
	text-align: center;
	padding-top: 8px;
	position: relative;
	z-index: 2;
	width: 100%;
}
.plaque-card-appearance {
	color: rgba(240, 236, 228, 0.6);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.plaque-card-tier {
	font-family: var(--font-mono);
	font-size: 8px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-top: 2px;
}
.plaque-cu .plaque-card-tier { color: var(--tier-copper); }
.plaque-si .plaque-card-tier { color: var(--tier-silver); }
.plaque-go .plaque-card-tier { color: var(--color-gold); }

/* Main photo zone below */
.product-photo-row {
	margin-top: 12px;
	height: 360px;
}
.product-photo-zone {
	background: rgba(200, 169, 110, 0.04);
	border: 1px solid var(--color-line-dark);
	height: 100%;
	overflow: hidden;
	position: relative;
}
.product-photo-zone.is-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 32px 20px;
}
.product-photo-zone img {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
	display: block !important;
}
.product-photo-zone svg { opacity: 0.22; }
.product-photo-label {
	color: rgba(200, 169, 110, 0.3);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-align: center;
}

/* ════════════════════════ MILESTONE FRAMEWORK ════════════════════════ */
.framework-section {
	background: var(--color-carbon);
	border-top: 1px solid var(--color-line-dark);
	padding: 96px 0;
}
.framework-header {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 80px;
	margin-bottom: 64px;
}
.framework-header h2 {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 40px;
	font-weight: 400;
	line-height: 1.12;
	margin-bottom: 14px;
}
.framework-header p {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.75;
}
.framework-note {
	color: rgba(200, 169, 110, 0.45);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-top: 16px;
	line-height: 1.6;
	max-width: 320px;
}

/* Tier grid — 4 columns, one per tier */
.framework-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--color-line-dark);
	border: 1px solid var(--color-line-dark);
}
.framework-col {
	background: var(--color-carbon);
	padding: 32px 28px 40px;
}
.framework-col:hover { background: #0d0d0d; }
.framework-tier-bar {
	height: 2px;
	margin-bottom: 24px;
	width: 48px;
}
.fw-cu .framework-tier-bar { background: var(--tier-copper); }
.fw-si .framework-tier-bar { background: var(--tier-silver); }
.fw-go .framework-tier-bar { background: var(--tier-gold); }
.fw-bk .framework-tier-bar { background: var(--tier-black); }

.framework-tier-label {
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.fw-cu .framework-tier-label { color: var(--tier-copper); }
.fw-si .framework-tier-label { color: var(--tier-silver); }
.fw-go .framework-tier-label { color: var(--tier-gold); }
.fw-bk .framework-tier-label { color: var(--tier-black); }

.framework-tier-title {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 17px;
	line-height: 1.25;
	margin-bottom: 20px;
}
.framework-category {
	margin-bottom: 20px;
}
.framework-category-label {
	color: rgba(200, 169, 110, 0.4);
	font-family: var(--font-mono);
	font-size: 8px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 8px;
	padding-bottom: 6px;
	border-bottom: 1px solid rgba(200, 169, 110, 0.08);
}
.framework-milestone {
	color: rgba(240, 236, 228, 0.65);
	font-size: 12px;
	line-height: 1.5;
	padding: 4px 0;
	border-bottom: 1px solid rgba(200, 169, 110, 0.05);
	font-family: var(--font-body);
}
.framework-milestone:last-child { border-bottom: none; }

/* ════════════════════════ HOW IT WORKS ════════════════════════ */
.process-section {
	background: var(--color-carbon-3);
	border-top: 1px solid var(--color-line-dark);
	padding: 96px 0;
}
.process-header {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 80px;
	align-items: start;
}
.process-header h2 {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 40px;
	font-weight: 400;
	line-height: 1.12;
	margin-bottom: 14px;
}
.process-header p {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.75;
}
.process-steps {
	margin-top: 56px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}
/* Connecting line */
.process-steps::before {
	content: '';
	position: absolute;
	top: 15px;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(to right, var(--tier-copper), var(--tier-silver) 33%, var(--tier-gold) 66%, var(--tier-black));
	z-index: 0;
}
.process-step {
	padding: 0 32px 0 0;
	position: relative;
	z-index: 1;
}
.process-step:last-child { padding-right: 0; }
.process-step-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-carbon);
	margin-bottom: 20px;
	flex-shrink: 0;
	border: 2px solid;
	position: relative;
}
.process-step:nth-child(1) .process-step-dot { border-color: var(--tier-copper); }
.process-step:nth-child(2) .process-step-dot { border-color: var(--tier-silver); }
.process-step:nth-child(3) .process-step-dot { border-color: var(--tier-gold); }
.process-step:nth-child(4) .process-step-dot { border-color: var(--tier-black); }

.process-step-label {
	font-family: var(--font-mono);
	font-size: 8px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.process-step:nth-child(1) .process-step-label { color: var(--tier-copper); }
.process-step:nth-child(2) .process-step-label { color: var(--tier-silver); }
.process-step:nth-child(3) .process-step-label { color: var(--tier-gold); }
.process-step:nth-child(4) .process-step-label { color: var(--tier-black); }

.process-step-title {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 18px;
	line-height: 1.2;
	margin-bottom: 10px;
}
.process-step-desc {
	color: var(--color-muted);
	font-size: 13px;
	line-height: 1.72;
}
.process-managed-note {
	margin-top: 40px;
	border-top: 1px solid var(--color-line-dark);
	padding-top: 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}
.process-note-item {
	border-left: 2px solid rgba(200, 169, 110, 0.25);
	padding-left: 16px;
}
.process-note-tier {
	color: rgba(200, 169, 110, 0.5);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.process-note-text {
	color: rgba(240, 236, 228, 0.6);
	font-size: 13px;
	line-height: 1.65;
	font-family: var(--font-display);
	font-style: italic;
}

/* ════════════════════════ SERVICE TIERS ════════════════════════ */
.tiers-section {
	background: var(--color-carbon-2);
	border-top: 1px solid var(--color-line-dark);
	padding: 96px 0;
}
.tiers-intro {
	margin-bottom: 56px;
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 80px;
	align-items: end;
}
.tiers-intro h2 {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 40px;
	font-weight: 400;
	line-height: 1.12;
	margin-bottom: 14px;
}
.tiers-intro p {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.75;
}
/* Lead paragraph (was an inline style on the prototype) */
.tiers-intro-lead {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.75;
}
.tiers-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--color-line-dark);
	border: 1px solid var(--color-line-dark);
}
.tier-card {
	background: var(--color-carbon);
	padding: 40px 36px 44px;
	position: relative;
	display: flex;
	flex-direction: column;
}
.tier-card.tier-recommended {
	background: #0f0f0d;
	border-top: 2px solid var(--color-gold);
	margin-top: -1px;
}
.tier-recommended-badge {
	position: absolute;
	top: -1px;
	right: 28px;
	background: var(--color-gold);
	color: var(--color-carbon);
	font-family: var(--font-mono);
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 4px 10px;
}
.tier-card-name {
	color: var(--color-muted);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.tier-recommended .tier-card-name { color: var(--color-gold); }
.tier-card-headline {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 24px;
	line-height: 1.2;
	margin-bottom: 6px;
}
.tier-card-summary {
	color: rgba(200, 169, 110, 0.55);
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--color-line-dark);
}
.tier-card-price-block {
	margin-bottom: 28px;
}
.tier-price-primary {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 20px;
	margin-bottom: 4px;
}
.tier-price-secondary {
	color: var(--color-muted);
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.06em;
}
.tier-price-note {
	color: rgba(200, 169, 110, 0.35);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.06em;
	margin-top: 4px;
}
.tier-features {
	list-style: none;
	margin-bottom: 32px;
	flex: 1;
}
.tier-features li {
	color: rgba(240, 236, 228, 0.6);
	font-size: 13px;
	line-height: 1.5;
	padding: 7px 0;
	border-bottom: 1px solid rgba(200, 169, 110, 0.07);
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.tier-features li:last-child { border-bottom: none; }
.tier-features li::before {
	content: '';
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--color-line-dark);
	flex-shrink: 0;
	margin-top: 6px;
}
.tier-recommended .tier-features li::before { background: var(--color-gold); opacity: 0.6; }
.tier-card-cta {
	color: var(--color-gold);
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-decoration: none;
	text-transform: uppercase;
	margin-top: auto;
	display: block;
}
.tier-card-cta:hover { opacity: 0.7; }

/* ════════════════════════ PRESENTATION MOMENTS ════════════════════════ */
.moments-section {
	background: var(--color-carbon);
	border-top: 1px solid var(--color-line-dark);
	padding: 96px 0;
}
.moments-header {
	margin-bottom: 48px;
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 80px;
	align-items: end;
}
.moments-header h2 {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 40px;
	font-weight: 400;
	line-height: 1.12;
	margin-bottom: 8px;
}
.moments-header h2 em {
	color: var(--color-gold);
	font-style: italic;
}
.moments-header .moments-subtext {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.75;
}
/* Editorial photo grid — asymmetric layout treating photos as documentary evidence */
.moments-grid {
	display: grid;
	grid-template-columns: 2fr 1.2fr 1fr;
	grid-template-rows: 280px 220px;
	gap: 8px;
}
.moment-zone {
	background: rgba(200, 169, 110, 0.04);
	border: 1px solid var(--color-line-dark);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
}
.moment-zone svg { opacity: 0.18; }
.moment-zone-label {
	color: rgba(200, 169, 110, 0.28);
	font-family: var(--font-mono);
	font-size: 8px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-align: center;
	padding: 0 20px;
}
.moment-zone-caption {
	position: absolute;
	bottom: 12px;
	left: 12px;
	right: 12px;
	color: rgba(200, 169, 110, 0.22);
	font-family: var(--font-mono);
	font-size: 7px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.mz-main  { grid-column: 1; grid-row: 1 / 3; }
.mz-tl    { grid-column: 2; grid-row: 1; }
.mz-tr    { grid-column: 3; grid-row: 1; }
.mz-bl    { grid-column: 2; grid-row: 2; }
.mz-br    { grid-column: 3; grid-row: 2; }

/* ════════════════════════ FAQ ════════════════════════ */
.faq-section {
	background: var(--color-carbon-2);
	border-top: 1px solid var(--color-line-dark);
	padding: 96px 0;
}
.faq-layout {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 80px;
	align-items: start;
}
.faq-intro h2 {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 40px;
	font-weight: 400;
	line-height: 1.12;
	margin-bottom: 14px;
}
.faq-intro p {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.75;
	margin-bottom: 28px;
}
.faq-contact-prompt {
	color: rgba(200, 169, 110, 0.5);
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1.7;
}
.faq-item {
	border-top: 1px solid var(--color-line-dark);
	overflow: hidden;
}
.faq-item:last-child { border-bottom: 1px solid var(--color-line-dark); }
.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 0;
	cursor: pointer;
	background: transparent;
	border: none;
	width: 100%;
	text-align: left;
}
.faq-question-text {
	color: rgba(240, 236, 228, 0.85);
	font-size: 14px;
	line-height: 1.5;
	font-family: var(--font-body);
}
.faq-toggle {
	width: 20px;
	height: 20px;
	border: 1px solid rgba(200, 169, 110, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: border-color 0.15s;
	position: relative;
}
.faq-toggle-icon {
	color: rgba(200, 169, 110, 0.6);
	font-size: 16px;
	line-height: 1;
	font-family: var(--font-mono);
	transition: transform 0.25s;
}
.faq-item.open .faq-toggle-icon { transform: rotate(45deg); }
.faq-item.open .faq-toggle { border-color: rgba(200, 169, 110, 0.55); }
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
	color: var(--color-muted);
	font-size: 13.5px;
	line-height: 1.78;
	padding: 0 0 24px;
	max-width: 580px;
}

/* ════════════════════════ CTA SECTION ════════════════════════ */
.cta-section {
	background: var(--color-carbon-3);
	border-top: 1px solid var(--color-line-dark);
	padding: 96px 0;
	text-align: center;
}
.cta-section .sec-eyebrow { text-align: center; margin-bottom: 16px; }
.cta-section h2 {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 48px;
	font-weight: 400;
	line-height: 1.08;
	margin-bottom: 14px;
}
.cta-section h2 span { color: var(--color-gold); font-style: italic; }
.cta-section p {
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.75;
	margin: 0 auto 44px;
	max-width: 480px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; align-items: center; }

/* ════════════════════════ RESPONSIVE ════════════════════════ */
@media (max-width: 1024px) {
	.hero { flex-direction: column; padding: 64px 56px; gap: 40px; }
	.hero-video-zone { width: 100%; max-width: 100%; flex: none; aspect-ratio: 16/9; }
	.hero-content { max-width: 100%; flex: none; }
	.hero-title { font-size: 48px; }
	.product-layout,
	.framework-header,
	.process-header,
	.tiers-intro,
	.moments-header,
	.faq-layout { grid-template-columns: 1fr; gap: 40px; }
	.framework-grid { grid-template-columns: repeat(2, 1fr); }
	.tiers-cards { grid-template-columns: 1fr; gap: 1px; }
	.moments-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
	.mz-main { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 16/9; }
	.mz-tl, .mz-tr, .mz-bl, .mz-br { grid-column: auto; grid-row: auto; height: 200px; }
}
@media (max-width: 768px) {
	.hero { padding: 80px 0; justify-content: center; }
	.hero-content { padding: 0 32px; text-align: center; }
	.hero-programme-label { justify-content: center; }
	.hero-programme-label::after { display: none; }
	.hero-statement { margin-left: auto; margin-right: auto; }
	.hero-accent-line { display: none; }
	.hero-title { font-size: 36px; }
	.hero-proof-row { flex-direction: column; gap: 0; }
	.hero-proof-item { border-right: none; padding-right: 0; margin-right: 0; border-bottom: 1px solid var(--color-line-dark); padding-bottom: 16px; margin-bottom: 16px; text-align: left; }
	.hero-proof-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
	.framework-grid { grid-template-columns: 1fr; }
	.process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
	.process-steps::before { display: none; }
	.process-managed-note { grid-template-columns: 1fr; gap: 24px; }
	.product-gallery { grid-template-columns: repeat(3, 1fr); }
	.cta-section h2 { font-size: 34px; }
	.cta-actions { flex-direction: column; }
	.product-section, .framework-section, .process-section, .tiers-section, .moments-section, .faq-section, .cta-section { padding: 64px 0; }
}