/* ==========================================================================
   Baltic Organic - main.css
   ========================================================================== */

:root {
	--primary: #265544;
	--primary-dark: #163527;
	--primary-mid: #357360;
	--primary-light: #4a9178;
	--primary-pale: #eaf2ef;
	--accent: #7ab648;
	--accent-dark: #5d9236;
	--cream: #f8faf9;
	--text: #1a2e26;
	--text-light: #55766a;
	--border: #dfe9e4;
	--white: #ffffff;
	--radius: 10px;
	--radius-lg: 18px;
	--container: 1180px;
	--shadow: 0 10px 40px rgba(22, 53, 39, 0.08);
	--shadow-lg: 0 20px 60px rgba(22, 53, 39, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
	color: var(--text);
	background: var(--white);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 28px;
}

section { position: relative; }

.eyebrow {
	display: inline-block;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--accent-dark);
	margin: 0 0 14px;
}

h1, h2, h3, h4 { font-weight: 700; color: var(--primary-dark); line-height: 1.2; margin: 0 0 16px; }
h1 { font-size: 46px; letter-spacing: -0.5px; }
h2 { font-size: 32px; letter-spacing: -0.3px; }
h3 { font-size: 20px; }
p { margin: 0 0 16px; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

.section-head { max-width: 640px; margin: 0 0 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--accent);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.3px;
	padding: 14px 28px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: background .2s ease, transform .15s ease;
}
.btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn.outline {
	background: transparent;
	border: 1.5px solid rgba(255,255,255,0.5);
	color: #fff;
}
.btn.outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn.dark { background: var(--primary-dark); }
.btn.dark:hover { background: var(--primary); }

/* ── HEADER ── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(248,250,249,0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
}
.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 84px;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo img { height: 64px; width: auto; }
.main-nav ul { display: flex; align-items: center; gap: 36px; }
.main-nav a {
	font-weight: 600;
	font-size: 15px;
	color: var(--primary-dark);
	position: relative;
	padding: 6px 0;
}
.main-nav a::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 0; height: 2px;
	background: var(--accent);
	transition: width .2s ease;
}
.main-nav a:hover::after,
.main-nav .current-menu-item a::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 22px; }
.header-phone { font-weight: 700; font-size: 14px; color: var(--primary-dark); display: flex; align-items: center; gap: 8px; }
.menu-toggle {
	display: none;
	background: none; border: none; cursor: pointer;
	width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--primary-dark); display: block; }

/* ── HERO ── */
.hero {
	background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: #fff;
	padding: 100px 0 90px;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute; top: -120px; right: -120px;
	width: 420px; height: 420px; border-radius: 50%;
	background: rgba(122,182,72,0.14);
}
.hero .container { position: relative; z-index: 1; max-width: 780px; text-align: left; }
.hero .eyebrow { color: #a8d87a; }
.hero h1 { color: #fff; font-size: 50px; margin-bottom: 20px; }
.hero p.lead { color: rgba(255,255,255,0.82); font-size: 18px; max-width: 620px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero.with-image {
	background-size: cover;
	background-position: center;
}
.hero.with-image::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(100deg, rgba(19,42,32,0.92) 20%, rgba(19,42,32,0.55) 75%);
}
.hero.with-image .container { z-index: 2; }

.hero.small { padding: 70px 0 64px; }

/* ── HOME HERO (split layout) ── */
.home-hero { background: var(--primary-dark); overflow: hidden; }
.home-hero-inner {
	display: grid;
	grid-template-columns: minmax(380px, 45%) 1fr;
	align-items: stretch;
	min-height: 620px;
}
.home-hero-content {
	position: relative;
	z-index: 2;
	padding: 90px 48px 90px 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 560px;
	margin-left: auto;
}
.home-hero-content .eyebrow { color: #a8d87a; }
.home-hero-content h1 { color: #fff; font-size: 46px; margin-bottom: 18px; }
.home-hero-content .lead { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 480px; margin-bottom: 30px; }

.home-hero-media { position: relative; overflow: hidden; }
.home-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 460px; }
.home-hero-media::before {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(100deg, var(--primary-dark) 0%, rgba(19,42,32,0.35) 12%, transparent 32%);
	z-index: 1;
}
.home-hero-media::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(19,42,32,0) 55%, rgba(19,42,32,0.55) 100%);
	z-index: 1;
}

.home-hero-badge {
	position: absolute;
	left: 36px; bottom: 36px;
	z-index: 3;
	background: #fff;
	border-radius: 16px;
	padding: 18px 24px;
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	gap: 14px;
}
.home-hero-badge .badge-ico {
	width: 42px; height: 42px; border-radius: 11px;
	background: var(--primary-pale); color: var(--primary);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.home-hero-badge .badge-ico svg { width: 22px; height: 22px; }
.home-hero-badge .badge-value { display: block; font-size: 22px; font-weight: 800; color: var(--primary-dark); line-height: 1.1; }
.home-hero-badge .badge-label { display: block; font-size: 11.5px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.4px; line-height: 1.3; margin-top: 2px; }

/* ── PILLARS (Ko mēs darām) ── */
.pillars { padding: 100px 0; background: var(--cream); }
.pillars .section-head { max-width: 720px; margin-bottom: 56px; }
.pillars-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	align-items: stretch;
}
.pillar-item {
	position: relative;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 34px 28px 30px;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pillar-item::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0;
	height: 4px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s ease;
}
.pillar-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pillar-item:hover::before { transform: scaleX(1); }
.pillar-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border-radius: 10px;
	background: var(--primary-pale);
	color: var(--primary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	position: relative;
	z-index: 1;
	margin-bottom: 18px;
}
.pillar-body { position: relative; z-index: 1; }
.pillar-body h3 { font-size: 19px; margin-bottom: 10px; line-height: 1.3; }
.pillar-body p { font-size: 14.5px; margin: 0; }
.pillar-ghost {
	position: absolute;
	right: -6px;
	bottom: -30px;
	font-size: 128px;
	font-weight: 800;
	line-height: 1;
	color: var(--primary);
	opacity: 0.055;
	pointer-events: none;
	user-select: none;
	z-index: 0;
}

/* ── PRODUCTS SHOWCASE (home) ── */
.products-showcase { padding: 100px 0; }
.pshow-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.pshow-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--border);
	background: #fff;
	transition: transform .25s ease, box-shadow .25s ease;
}
.pshow-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pshow-img { height: 230px; position: relative; }
.pshow-img img { width: 100%; height: 100%; object-fit: cover; }
.pshow-badge {
	position: absolute; top: 16px; left: 16px;
	background: rgba(19,42,32,0.85);
	color: #fff; font-size: 11px; font-weight: 700;
	letter-spacing: 0.6px; text-transform: uppercase;
	padding: 7px 13px; border-radius: 20px;
}
.pshow-body { padding: 30px 28px 32px; }
.pshow-body h3 { font-size: 24px; margin-bottom: 6px; }
.pshow-tagline { color: var(--primary-light); font-weight: 600; font-size: 13.5px; margin-bottom: 18px; display: block; }
.pshow-specs {
	display: flex;
	background: var(--primary);
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 24px;
}
.pshow-spec {
	flex: 1;
	text-align: center;
	padding: 16px 8px;
	position: relative;
}
.pshow-spec + .pshow-spec::before {
	content: '';
	position: absolute; left: 0; top: 20%; bottom: 20%;
	width: 1px; background: rgba(255,255,255,0.16);
}
.pshow-spec .v { display: block; font-weight: 800; color: #fff; font-size: 19px; line-height: 1; }
.pshow-spec .l { display: block; font-size: 10px; color: rgba(255,255,255,0.62); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 6px; }
.pshow-feats { margin: 0 0 24px; padding: 0; list-style: none; }
.pshow-feats li { font-size: 14px; color: var(--text); padding: 6px 0 6px 24px; position: relative; }
.pshow-feats li::before { content: '✓'; position: absolute; left: 0; top: 6px; color: var(--accent-dark); font-weight: 700; }
.pshow-cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--primary-dark); font-size: 14.5px; }
.pshow-cta span { transition: transform .2s ease; }
.pshow-cta:hover { color: var(--accent-dark); }
.pshow-cta:hover span { transform: translateX(4px); }

.mission-badges {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 8px 0;
}
.mission-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 30px;
	font-weight: 700;
	font-size: 13.5px;
	color: var(--primary-dark);
	border-left: 1px solid var(--border);
	white-space: nowrap;
}
.mission-badge:first-child { border-left: none; }
.mission-badge-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px; height: 22px;
	flex-shrink: 0;
}
.mission-badge-ico img { width: 100%; height: 100%; object-fit: contain; }

/* ── STATS (animated counters) ── */
.stats { background: var(--cream); padding: 64px 0; color: var(--text); }
.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.stat-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 24px 22px;
	overflow: hidden;
	transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}
.stat-card::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s ease;
}
.stat-card:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateY(-3px); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-icon {
	position: relative;
	z-index: 1;
	display: flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; border-radius: 10px;
	background: var(--primary-pale); color: var(--primary);
	margin-bottom: 14px;
}
.stat-icon svg { width: 20px; height: 20px; }
.stat-num { position: relative; z-index: 1; display: block; font-size: 30px; font-weight: 800; color: var(--primary-dark); line-height: 1; margin-bottom: 6px; font-variant-numeric: tabular-nums; }
.stat-label { position: relative; z-index: 1; font-size: 13px; color: var(--text-light); }

/* ── CONTACT v2 ── */
.contact-section { padding: 96px 0; }
.contact-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 36px; }
.contact-tile {
	display: flex; flex-direction: column; gap: 6px;
	background: var(--cream);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 26px 24px;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-tile:not(.no-hover):hover { transform: translateY(-4px); box-shadow: var(--shadow); background: #fff; }
.contact-tile-ico {
	width: 40px; height: 40px; border-radius: 10px;
	background: var(--primary-pale); color: var(--primary);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 8px;
}
.contact-tile-ico svg { width: 20px; height: 20px; }
.contact-tile-lbl { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-light); font-weight: 700; }
.contact-tile-val { font-size: 15.5px; font-weight: 700; color: var(--primary-dark); }
.contact-legal {
	text-align: center; font-size: 13px; color: var(--text-light);
	border-top: 1px solid var(--border); padding-top: 26px; line-height: 1.9;
}

/* ── GALLERY / MOOD ── */
.gallery-section { padding: 96px 0; background: var(--cream); }
.gallery-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	grid-auto-rows: 190px;
	grid-auto-flow: dense;
	gap: 16px;
}
.gallery-grid .g-item {
	border-radius: var(--radius-lg);
	overflow: hidden;
	position: relative;
}
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid .g-item:hover img { transform: scale(1.06); }
.gallery-grid .g-1 { grid-row: span 2; grid-column: 1; }
.gallery-grid .g-item .g-caption {
	position: absolute; left: 0; right: 0; bottom: 0;
	padding: 16px 18px;
	background: linear-gradient(180deg, transparent, rgba(15,35,26,0.75));
	color: #fff; font-weight: 600; font-size: 13.5px;
}

/* ── CONTACT ── */
.contact-section { padding: 96px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-card {
	background: var(--primary);
	color: #fff;
	border-radius: var(--radius-lg);
	padding: 40px;
}
.contact-card h3 { color: #fff; font-size: 18px; margin-bottom: 18px; }
.contact-line { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.12); font-size: 14.5px; }
.contact-line:last-child { border-bottom: none; }
.contact-line .lbl { color: rgba(255,255,255,0.6); min-width: 96px; flex-shrink: 0; }
.contact-line a { color: #fff; font-weight: 600; }
.contact-info h3 { font-size: 18px; margin-bottom: 10px; }
.contact-info-list { margin-top: 20px; }
.contact-info-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .ico {
	width: 40px; height: 40px; border-radius: 10px;
	background: var(--primary-pale); color: var(--primary);
	display: flex; align-items: center; justify-content: center; flex-shrink: 0;
	font-weight: 700;
}
.contact-info-item .txt strong { display: block; font-size: 14px; color: var(--primary-dark); margin-bottom: 2px; }
.contact-info-item .txt span, .contact-info-item .txt a { font-size: 14px; color: var(--text-light); }

/* ── FOOTER ── */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.75); padding: 50px 0 24px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo img { height: 46px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-logo p { max-width: 280px; font-size: 13.5px; color: rgba(255,255,255,0.55); }
.footer-nav { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 { color: #fff; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 12.5px; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,0.45); }

/* ── PRODUCT PAGE ── */
.products-intro { padding: 80px 0 40px; }
.products-list { padding: 0 0 96px; display: flex; flex-direction: column; gap: 28px; }
.product-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: #fff;
	scroll-margin-top: 110px;
}
.product-card-top {
	display: grid;
	grid-template-columns: 300px 1fr;
}
.product-card-img { position: relative; min-height: 260px; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { padding: 34px 38px; display: flex; flex-direction: column; justify-content: center; }
.product-tagline { font-weight: 600; color: var(--primary-light); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.product-card-body h3 { font-size: 26px; margin-bottom: 10px; }
.product-quick-specs { display: flex; gap: 26px; margin: 18px 0 24px; flex-wrap: wrap; }
.qspec { text-align: left; }
.qspec .qval { font-size: 22px; font-weight: 700; color: var(--primary); }
.qspec .qlbl { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; }
.product-card-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.toggle-details {
	background: var(--primary-pale);
	color: var(--primary-dark);
	border: none;
	font-weight: 700;
	font-size: 14px;
	padding: 13px 24px;
	border-radius: 6px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background .2s ease;
}
.toggle-details:hover { background: #ddeae4; }
.toggle-details .chevron { transition: transform .25s ease; font-size: 11px; }
.product-card.open .toggle-details .chevron { transform: rotate(180deg); }

.product-details {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease;
	border-top: 1px solid var(--border);
}
.product-card.open .product-details { max-height: 2400px; }
.product-details-inner { padding: 36px 38px; background: var(--cream); }

/* reuse of earlier product spec styling, scoped */
.op-wrap, .opp1-wrap { box-shadow: none; max-width: none; }

/* ── BIOGAS PAGE ── */
.bio-block { padding: 88px 0; }
.bio-block.alt { background: var(--cream); }
.bio-block .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.bio-block .num-badge {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 10px;
	background: var(--primary-pale); color: var(--primary);
	font-weight: 700; margin-bottom: 20px;
}
.bio-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.bio-visual img { width: 100%; height: 340px; object-fit: cover; }
.bio-block.reverse .container { direction: rtl; }
.bio-block.reverse .container > * { direction: ltr; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; }
.why-card .ico { font-size: 26px; margin-bottom: 16px; }

/* ── ABOUT PAGE ── */
.about-lead { padding: 90px 0 60px; }
.about-lead .container { max-width: 820px; text-align: center; }
.team-section { padding: 0 0 96px; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.team-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.team-photo { height: 300px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 28px 30px; }
.team-body h3 { font-size: 20px; margin-bottom: 4px; }
.team-role { color: var(--primary-light); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; display: block; }
.team-body p { font-size: 14.5px; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
	.home-hero-inner { grid-template-columns: 1fr; min-height: 0; }
	.home-hero-content { max-width: none; margin-left: 0; padding: 64px 24px 44px; }
	.home-hero-content h1 { font-size: 36px; }
	.home-hero-media { min-height: 320px; }
	.home-hero-media img { min-height: 320px; }
	.home-hero-badge { left: 20px; bottom: 20px; padding: 14px 18px; }
	.pillars-list { grid-template-columns: 1fr; }
	.pshow-grid { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: repeat(3, 1fr); }
	.gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
	.gallery-grid .g-1 { grid-row: span 1; grid-column: 1 / 3; height: 240px; }
	.contact-grid { grid-template-columns: 1fr; }
	.contact-grid-v2 { grid-template-columns: 1fr; }
	.product-card-top { grid-template-columns: 1fr; }
	.product-card-img { min-height: 200px; }
	.bio-block .container { grid-template-columns: 1fr; }
	.bio-block.reverse .container { direction: ltr; }
	.why-grid { grid-template-columns: 1fr; }
	.team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
	.main-nav, .header-phone { display: none; }
	.menu-toggle { display: flex; }
	.site-header.nav-open .main-nav {
		display: block;
		position: absolute; top: 84px; left: 0; right: 0;
		background: #fff; border-top: 1px solid var(--border);
		padding: 20px 28px;
	}
	.site-header.nav-open .main-nav ul { flex-direction: column; align-items: flex-start; gap: 18px; }
	.hero h1 { font-size: 34px; }
	h2 { font-size: 26px; }
	.stats-grid { grid-template-columns: 1fr 1fr; }
	.mission-badges { flex-direction: column; align-items: center; }
	.mission-badge { border-left: none; border-top: 1px solid var(--border); width: 100%; justify-content: center; }
	.mission-badge:first-child { border-top: none; }
	.pillar-ghost { font-size: 90px; }
	.footer-top { flex-direction: column; }
	.footer-nav { gap: 34px; }
	.product-quick-specs { gap: 18px; }
}
