/* ============================================================
   CAPITAL FOODS — HOMEPAGE v4
   Loaded only on the front page (see functions.php).
   Interior pages are unaffected.
   ============================================================ */

:root {
	--bg: #f7f2e9;
	--bg-2: #fdfaf3;
	--ink: #1a2560;
	--ink-soft: #2d3a7e;
	--accent: #cc1a20;
	--accent-dark: #a01419;
	--muted: #726e68;
	--border: #e3dccd;
	--rule: #d9d0bd;

	--font-display: "Playfair Display", Georgia, serif;
	--font-body: "Inter", system-ui, sans-serif;

	--container: 1280px;
	--radius: 4px;
	--radius-lg: 10px;

	--shadow-sm: 0 1px 2px rgba(26,37,96,0.05);
	--shadow-md: 0 6px 22px rgba(26,37,96,0.08);
	--shadow-lg: 0 18px 48px rgba(26,37,96,0.12);

	--rail-width: 200px;
}

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

body.cf-home {
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body.cf-home a { text-decoration: none; color: var(--ink); }
body.cf-home h1, body.cf-home h2, body.cf-home h3 { font-family: var(--font-display); font-weight: 500; margin: 0; letter-spacing: -0.015em; line-height: 1.08; }
body.cf-home h2 em, body.cf-home h1 em { font-style: italic; color: var(--accent); font-weight: 500; }

/* Buttons need explicit colors at higher specificity than body.cf-home a */
body.cf-home a.btn-primary { color: #fff; }
body.cf-home a.btn-primary:hover { color: #fff; }
body.cf-home a.btn-ghost { color: var(--ink); }
body.cf-home a.btn-ghost:hover { color: #fff; }
body.cf-home a.nav-cta { color: #fff; }
body.cf-home a.nav-cta:hover { color: #fff; }
body.cf-home .cta-card a.btn-primary { color: #fff; }
body.cf-home .cta-card a.btn-primary:hover { color: var(--ink); }
body.cf-home .cta-card a.btn-ghost { color: #fff; }
body.cf-home .cta-card a.btn-ghost:hover { color: var(--ink); }
body.cf-home .pl-pitch a.btn-primary { color: #fff; }
body.cf-home .pl-pitch a.btn-primary:hover { color: var(--ink); }
body.cf-home .brand-card-face.back a.spec-cta { color: #f0a9ac; }

.cf-container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
@media (max-width: 720px) { .cf-container { padding: 0 1.25rem; } }

body.cf-home .eyebrow {
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent);
}
body.cf-home .rule { display: block; width: 2.5rem; height: 2px; background: var(--accent); margin: 1rem 0; }

/* ===== SCROLL-REVEAL ============================================ */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--delay, 0ms),
	            transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ===== HEADER =================================================== */
.site-header {
	position: sticky; top: 0; z-index: 60;
	background: color-mix(in srgb, var(--bg) 92%, transparent);
	backdrop-filter: saturate(1.2) blur(10px);
	-webkit-backdrop-filter: saturate(1.2) blur(10px);
	border-bottom: 1px solid var(--border);
}
.site-header-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 1.1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}
.brand-mark { display: flex; align-items: center; line-height: 1; }
.brand-mark img { display: block; height: 42px; width: auto; max-width: 100%; }
@media (max-width: 720px) { .brand-mark img { height: 34px; } }
.brand-mark.footer-mark {
	flex-direction: column;
	align-items: flex-start;
	line-height: 1;
}
.brand-mark.footer-mark .fm-name {
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: #fff;
	font-weight: 500;
	letter-spacing: -0.01em;
}
.brand-mark.footer-mark .fm-sub {
	font-family: var(--font-body);
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 0.35rem;
}

.site-nav { display: flex; gap: 2rem; align-items: center; }
.site-nav a { font-size: 0.82rem; font-weight: 500; transition: color 150ms; }
.site-nav a:hover { color: var(--accent); }
.nav-cta {
	padding: 0.6rem 1rem;
	background: var(--accent);
	color: #fff !important;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 0.78rem !important;
	letter-spacing: 0.04em;
	box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--accent-dark); color: #fff !important; }

/* Mobile nav toggle */
.cf-menu-toggle { display: none; background: none; border: none; padding: 0.5rem; cursor: pointer; }
.cf-menu-toggle-bar { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform 220ms ease, opacity 220ms ease; }

@media (max-width: 720px) {
	.cf-menu-toggle { display: block; }
	.site-nav {
		position: fixed;
		top: 0; right: 0;
		width: min(80vw, 320px);
		height: 100vh;
		background: var(--bg);
		border-left: 1px solid var(--border);
		padding: 6rem 2rem 2rem;
		flex-direction: column;
		align-items: stretch;
		gap: 1.25rem;
		transform: translateX(100%);
		transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
		z-index: 55;
		box-shadow: -12px 0 30px rgba(26,37,96,0.15);
	}
	[data-cf-nav="open"] .site-nav { transform: none; }
	.site-nav a { font-size: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--rule); }
	.site-nav a.nav-cta { text-align: center; margin-top: 0.5rem; border-bottom: none; }
	[data-cf-nav="open"] .cf-menu-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	[data-cf-nav="open"] .cf-menu-toggle-bar:nth-child(2) { opacity: 0; }
	[data-cf-nav="open"] .cf-menu-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
	html[data-cf-nav="open"] body { overflow: hidden; }
}

/* ===== LAYOUT: sticky section rail + content ==================== */
.shell {
	max-width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: var(--rail-width) 1fr;
	gap: 4rem;
	padding: 0 2rem;
	position: relative;
}
@media (max-width: 960px) { .shell { grid-template-columns: 1fr; gap: 0; padding: 0 1.25rem; } }

.rail {
	position: sticky;
	top: 5rem;
	align-self: start;
	padding-top: 5rem;
	height: calc(100vh - 5rem);
}
@media (max-width: 960px) { .rail { display: none; } }
.rail-title {
	font-family: var(--font-body);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--rule);
}
.rail ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.35rem; }
.rail a {
	display: grid;
	grid-template-columns: 2rem 1fr;
	gap: 0.5rem;
	padding: 0.55rem 0;
	font-size: 0.82rem;
	color: var(--muted);
	position: relative;
	transition: color 180ms ease;
}
.rail a .num {
	font-family: var(--font-display);
	font-size: 0.85rem;
	color: var(--ink-soft);
	transition: color 180ms ease;
}
.rail a:hover { color: var(--ink); }
.rail a.active { color: var(--accent); }
.rail a.active .num { color: var(--accent); }
.rail a.active::before {
	content: "";
	position: absolute;
	left: -1rem;
	top: 50%;
	width: 8px; height: 2px;
	background: var(--accent);
	transform: translateY(-50%);
}

.content { padding: 5rem 0 0; }

/* ===== SECTION COMMON =========================================== */
.section {
	padding: 4rem 0 6rem;
	border-bottom: 1px solid var(--border);
}
.section:last-of-type { border-bottom: none; }
.section-head {
	display: flex;
	align-items: baseline;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}
.section-head .num {
	font-family: var(--font-display);
	font-size: 1rem;
	color: var(--accent);
	font-weight: 500;
	letter-spacing: 0.02em;
	position: relative;
	top: -0.1rem;
}
.section-head .label {
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
}

/* ===== 01 · HERO ================================================ */
.hero h1 {
	font-size: clamp(2.75rem, 5.5vw, 5rem);
	line-height: 1.0;
	letter-spacing: -0.025em;
	margin-bottom: 2rem;
	max-width: 20ch;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 4rem;
	align-items: start;
	padding-top: 1rem;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.hero-lede { font-size: 1.125rem; color: var(--muted); line-height: 1.7; margin-bottom: 2.5rem; max-width: 34rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.95rem 1.6rem;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 0.88rem;
	letter-spacing: 0.02em;
	transition: all 180ms ease;
	border: 1px solid transparent;
	cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 2rem 0 0; border-top: 1px solid var(--rule); }
.hero-stat .big { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--ink); line-height: 1; display: block; margin-bottom: 0.35rem; letter-spacing: -0.02em; }
.hero-stat .lab { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }

.hero-plate { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); position: relative; }
.hero-plate::before {
	content: "INDEX № 01";
	position: absolute;
	top: -0.6rem; left: 1.5rem;
	background: var(--bg);
	padding: 0 0.65rem;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: var(--accent);
}
.hero-plate h3 { font-size: 1.35rem; margin-bottom: 1rem; }
.hero-plate dl { margin: 0; display: grid; gap: 0.5rem; }
.hero-plate .row { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: 0.55rem 0; font-size: 0.9rem; border-bottom: 1px dashed var(--rule); }
.hero-plate .row:last-child { border-bottom: none; }
.hero-plate dt { color: var(--muted); }
.hero-plate dd { margin: 0; font-weight: 600; text-align: right; color: var(--ink); }

/* ===== 02 · BRAND CARDS (hover-flip) ============================ */
.brands-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; max-width: 22ch; }
.brands-head p { color: var(--muted); max-width: 40rem; line-height: 1.7; font-size: 1.02rem; margin-bottom: 3rem; }

.brand-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 720px) { .brand-grid { grid-template-columns: 1fr; } }

.brand-card { perspective: 1400px; aspect-ratio: 5 / 3; cursor: pointer; }
.brand-card-inner {
	position: relative;
	width: 100%; height: 100%;
	transform-style: preserve-3d;
	transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.brand-card.flipped .brand-card-inner,
.brand-card:hover .brand-card-inner { transform: rotateY(180deg); }

.brand-card-face {
	position: absolute; inset: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	background: var(--bg-2);
	padding: 2rem;
	display: flex; flex-direction: column;
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}
.brand-card-face.front { justify-content: space-between; }
.brand-card-face.back {
	transform: rotateY(180deg);
	background: var(--ink);
	color: #fff;
	justify-content: space-between;
	border-color: var(--ink);
}
.brand-card-face.back .eyebrow { color: #f0a9ac; }

.brand-top { display: flex; justify-content: space-between; align-items: flex-start; }
.brand-top .num { font-family: var(--font-display); font-size: 0.95rem; color: var(--accent); font-weight: 500; }
.brand-top .kind { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

.brand-name { margin: auto 0; display: flex; flex-direction: column; gap: 0.75rem; }
.brand-logo-plate { display: flex; align-items: center; justify-content: flex-start; min-height: 90px; margin-bottom: 0.25rem; }
.brand-logo-plate img { display: block; max-height: 80px; max-width: 70%; width: auto; height: auto; object-fit: contain; }
.brand-name h3 { font-size: clamp(1.1rem, 1.5vw, 1.25rem); letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; color: var(--muted); margin: 0; }
.brand-name .cjk { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--accent); margin-right: 0.5rem; }
.brand-name .tag { color: var(--ink); font-size: 0.95rem; line-height: 1.5; }

.brand-hint { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 0.35rem; }
.brand-hint::before { content: "↻"; font-size: 1rem; }

.brand-card-face.back h3 { color: #fff; font-size: 1.6rem; margin: 0.5rem 0 1rem; }
.brand-card-face.back .spec-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1.5rem; }
.brand-card-face.back .spec-list li { font-size: 0.85rem; color: rgba(255,255,255,0.82); padding-bottom: 0.4rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.brand-card-face.back .spec-list strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; color: #fff; margin-bottom: 0.1rem; }
.brand-card-face.back .spec-cta { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #f0a9ac; display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.5rem; transition: color 160ms; }
.brand-card-face.back .spec-cta:hover { color: #fff; }
.brand-card-face.back .spec-cta-row { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.brand-card-face.back .spec-cta-dim { color: rgba(255,255,255,0.55); }
body.cf-home .brand-card-face.back a.spec-cta-dim { color: rgba(255,255,255,0.55); }
body.cf-home .brand-card-face.back a.spec-cta-dim:hover { color: #fff; }

/* ===== 03 · BUYERS ============================================== */
.buyers-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; max-width: 22ch; }
.buyers-head p { color: var(--muted); max-width: 38rem; line-height: 1.7; font-size: 1.02rem; margin-bottom: 3rem; }
.buyer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 960px) { .buyer-grid { grid-template-columns: 1fr; } }
.buyer { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; position: relative; transition: background 200ms ease, border-color 200ms ease, transform 200ms ease; }
.buyer:hover { background: var(--bg); border-color: var(--ink-soft); transform: translateY(-2px); }
.buyer .num { position: absolute; top: 1rem; right: 1.25rem; font-family: var(--font-display); font-size: 2rem; font-style: italic; color: var(--accent); opacity: 0.25; line-height: 1; }
.buyer h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.buyer ul { list-style: none; padding: 0; margin: 0; }
.buyer li { font-size: 0.92rem; color: var(--ink); padding: 0.5rem 0 0.5rem 1.25rem; position: relative; border-bottom: 1px dashed var(--rule); }
.buyer li:last-child { border-bottom: none; }
.buyer li::before { content: "—"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ===== 04 · PRIVATE LABEL ======================================= */
.pl-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; max-width: 22ch; }
.pl-head p { color: var(--muted); max-width: 42rem; line-height: 1.7; font-size: 1.02rem; margin-bottom: 3rem; }

.pl-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: stretch; }
@media (max-width: 960px) { .pl-grid { grid-template-columns: 1fr; } }

.pl-caps { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.pl-caps h3 { font-size: 1.25rem; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--rule); }
.pl-caps .cap-row { display: grid; grid-template-columns: 9rem 1fr; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px dashed var(--rule); align-items: baseline; }
.pl-caps .cap-row:last-child { border-bottom: none; }
.pl-caps dt { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.pl-caps dd { margin: 0; font-size: 0.95rem; color: var(--ink); line-height: 1.55; }

.pl-pitch { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 2rem; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem; }
.pl-pitch::before { content: ""; position: absolute; top: -40%; right: -20%; width: 80%; height: 160%; background: radial-gradient(ellipse at center, rgba(204,26,32,0.22), transparent 60%); pointer-events: none; }
.pl-pitch > * { position: relative; z-index: 1; }
.pl-pitch .eyebrow { color: #f0a9ac; }
.pl-pitch h3 { font-size: 1.75rem; color: #fff; margin: 0.75rem 0 1rem; letter-spacing: -0.02em; }
.pl-pitch h3 em { color: #f0a9ac; font-style: italic; }
.pl-pitch p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.65; }
.pl-pitch .btn { align-self: flex-start; margin-top: 0.5rem; }
.pl-pitch .btn-primary { background: var(--accent); }
.pl-pitch .btn-primary:hover { background: #fff; color: var(--ink); }

/* ===== 05 · HERITAGE — milestone grid =========================== */
.heritage-head { max-width: 44rem; margin-bottom: 3rem; }
.heritage-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; max-width: 22ch; }
.heritage-head p { color: var(--muted); line-height: 1.75; font-size: 1.02rem; }

.milestones { position: relative; padding: 3rem 0 1rem; }
.milestone-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.milestone-grid::before {
	content: ""; position: absolute;
	top: 9px; left: 9px; right: 9px;
	height: 2px;
	background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 85%, var(--rule) 100%);
	opacity: 0.55;
	z-index: 0;
}
.ms { position: relative; padding-top: 2.5rem; }
.ms::before {
	content: ""; position: absolute;
	top: 3px; left: 0;
	width: 14px; height: 14px;
	border-radius: 50%;
	background: var(--bg);
	border: 2px solid var(--accent);
	z-index: 1;
}
.ms.current::before { background: var(--accent); box-shadow: 0 0 0 4px rgba(204, 26, 32, 0.12); }
.ms .year { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.75rem); line-height: 1; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.ms strong { display: block; font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.ms p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; margin: 0; }

@media (max-width: 720px) {
	.milestone-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding-left: 1.5rem;
	}
	.milestone-grid::before {
		top: 0; bottom: 0; left: 6px; right: auto;
		width: 2px; height: auto;
		background: linear-gradient(180deg, var(--accent) 0%, var(--accent) 85%, var(--rule) 100%);
	}
	.ms { padding-top: 0; padding-left: 0; }
	.ms::before { top: 0.35rem; left: -1.5rem; }
}

/* ===== 06 · CTA ================================================= */
.cta-card { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 4rem; position: relative; overflow: hidden; margin-top: 2rem; }
.cta-card::before { content: ""; position: absolute; top: -40%; right: -10%; width: 50%; height: 180%; background: radial-gradient(ellipse at center, rgba(204,26,32,0.25), transparent 65%); pointer-events: none; }
.cta-card .eyebrow { color: #f0a9ac; }
.cta-card h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 1rem 0 1.5rem; color: #fff; max-width: 22ch; line-height: 1.05; }
.cta-card h2 em { color: #f0a9ac; font-style: italic; }
.cta-card p { color: rgba(255,255,255,0.8); max-width: 36rem; margin-bottom: 2rem; font-size: 1.0625rem; line-height: 1.65; }
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-card .btn-primary { background: var(--accent); }
.cta-card .btn-primary:hover { background: #fff; color: var(--ink); }
.cta-card .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-card .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ===== FOOTER =================================================== */
.site-footer { background: #0f154a; color: rgba(255,255,255,0.72); padding: 4rem 0 2rem; margin-top: 4rem; }
.site-footer a { color: #fff; }
.site-footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
@media (max-width: 720px) { .site-footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 0 1.25rem; } }
.site-footer h4 { font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin: 0 0 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; font-size: 0.88rem; }
.site-footer-bottom { max-width: var(--container); margin: 2.5rem auto 0; padding: 1.5rem 2rem 0; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 0.5rem; }

/* ===== MOBILE-SPECIFIC ========================================== */
@media (max-width: 720px) {
	.content { padding-top: 2rem; }
	.section { padding: 2.5rem 0 3.5rem; }
	.hero h1 { font-size: 2.5rem; }
	.hero-ctas, .cta-buttons { flex-direction: column; align-items: stretch; }
	.btn { justify-content: center; }
	.hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
	.cta-card { padding: 2.5rem 1.75rem; }

	/* Brand cards: no flip on mobile — show front + spec stacked */
	.brand-card {
		aspect-ratio: auto;
		perspective: none;
		cursor: default;
		height: auto;
	}
	.brand-card-inner {
		transform-style: flat;
		position: static;
		height: auto;
		transition: none;
	}
	.brand-card.flipped .brand-card-inner,
	.brand-card:hover .brand-card-inner { transform: none; }
	.brand-card-face {
		position: static;
		transform: none !important;
		-webkit-backface-visibility: visible;
		backface-visibility: visible;
		height: auto;
	}
	.brand-card-face.front {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		border-bottom: none;
		padding-bottom: 1.25rem;
		box-shadow: none;
	}
	.brand-card-face.back {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		padding: 1.5rem 1.75rem;
		box-shadow: none;
	}
	.brand-card-face.back .brand-top { display: none; }
	.brand-card-face.back h3 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #f0a9ac; margin: 0 0 1rem; font-family: var(--font-body); }
	.brand-card-face.back .spec-list li { font-size: 0.8rem; }
	.brand-card-face.back .spec-list strong { font-size: 0.95rem; }
	.brand-hint { display: none; }
}

/* ===== SKIP LINK (a11y) ========================================= */
.cf-skip-link {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.cf-skip-link:focus {
	position: fixed;
	top: 1rem; left: 1rem;
	width: auto; height: auto;
	background: var(--ink);
	color: #fff;
	padding: 0.6rem 1rem;
	border-radius: var(--radius);
	z-index: 100;
}
