/*
Theme Name: SEOrun
Theme URI: https://seorun.ru
Author: SEOrun
Author URI: https://seorun.ru
Description: Тема для SEO-агентства SEOrun. Полный набор страниц, билингвальный интерфейс (RU/EN), адаптивный дизайн.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.2
License: GPL-2.0-or-later
Text Domain: seorun
Tags: one-column, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ============================ Base ============================ */

:root {
	--bg: #f6f8fb;
	--bg-alt: #ffffff;
	--ink: #0b1120;
	--muted: #55617a;
	--line: #e3e8f0;
	--primary: #2563eb;
	--primary-2: #06b6d4;
	--accent: #f59e0b;
	--radius: 16px;
	--shadow: 0 12px 32px rgba(11, 17, 32, 0.08);
	--font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
	--font-head: 'Unbounded', var(--font);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-head);
	line-height: 1.2;
	margin: 0 0 0.5em;
	font-weight: 600;
}

p { margin: 0 0 1em; }

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.section-head p { color: var(--muted); }

.section-cta { text-align: center; margin-top: 40px; }

.eyebrow {
	display: inline-block;
	font-family: var(--font);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary-2);
	background: rgba(6, 182, 212, 0.1);
	border: 1px solid rgba(6, 182, 212, 0.25);
	border-radius: 999px;
	padding: 6px 14px;
	margin-bottom: 18px;
}

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

/* ============================ Buttons ============================ */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font);
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	padding: 14px 26px;
	border-radius: 12px;
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35); }

.btn-outline { border-color: var(--line); color: var(--primary); background: #fff; }
.btn-outline:hover { border-color: var(--primary); }

.btn-accent { background: linear-gradient(135deg, #f59e0b, #fb7185); color: #fff; }
.btn-accent:hover { box-shadow: 0 18px 40px rgba(245, 158, 11, 0.35); }

.btn-ghost { border-color: rgba(255, 255, 255, 0.25); color: #fff; background: transparent; }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

/* ============================ Header ============================ */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow); }

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 14px;
	padding-bottom: 14px;
}

.site-logo {
	font-family: var(--font-head);
	font-size: 26px;
	font-weight: 700;
	color: var(--ink);
	text-decoration: none;
	letter-spacing: -0.02em;
}
.site-logo span { color: var(--primary); }
.site-logo:hover { text-decoration: none; }

.site-nav .nav-list {
	display: flex;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-nav .nav-list a {
	display: block;
	padding: 8px 14px;
	border-radius: 10px;
	color: var(--ink);
	font-weight: 500;
	font-size: 15px;
}
.site-nav .nav-list a:hover { background: var(--bg); text-decoration: none; color: var(--primary); }
.site-nav .nav-list .current-menu-item a,
.site-nav .nav-list .current a { color: var(--primary); background: rgba(37, 99, 235, 0.08); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ============================ Hero ============================ */

.hero {
	background:
		radial-gradient(1000px 500px at 85% -10%, rgba(6, 182, 212, 0.18), transparent 60%),
		radial-gradient(800px 500px at 0% 10%, rgba(37, 99, 235, 0.16), transparent 55%),
		var(--bg);
	padding: 88px 0 96px;
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}

.hero-title { font-size: clamp(30px, 4.6vw, 52px); letter-spacing: -0.02em; }
.hero-text { color: var(--muted); font-size: 18px; max-width: 540px; }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin: 8px 0 36px; }

.hero-metrics { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-metric strong { display: block; font-family: var(--font-head); font-size: 30px; color: var(--primary); }
.hero-metric span { color: var(--muted); font-size: 14px; }

/* Dashboard visual */
.hero-visual { position: relative; }

.dashboard {
	background: var(--ink);
	color: #e8edf7;
	border-radius: var(--radius);
	box-shadow: 0 30px 70px rgba(11, 17, 32, 0.35);
	padding: 18px;
	max-width: 460px;
	margin: 0 auto;
	transform: rotate(-1deg);
}
.dash-head {
	display: flex;
	align-items: center;
	gap: 6px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 16px;
}
.dash-head span:last-child { margin-left: 8px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #fb7185; }
.dot:nth-child(2) { background: #fbbf24; }
.dot:nth-child(3) { background: #34d399; }

.dash-row {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
	font-size: 14px;
}
.dash-row strong { color: #34d399; font-family: var(--font-head); }

.dash-chart {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	height: 130px;
	margin: 18px 0 8px;
}
.dash-chart span {
	flex: 1;
	background: linear-gradient(180deg, var(--primary-2), var(--primary));
	border-radius: 4px 4px 0 0;
	min-height: 10px;
	opacity: 0.9;
}
.dash-tag {
	display: inline-block;
	margin-top: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #0b1120;
	background: #34d399;
	padding: 6px 12px;
	border-radius: 8px;
}

/* ============================ Cards ============================ */

.cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.card {
	background: var(--bg-alt);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(37, 99, 235, 0.3); }

.service-card h3 { font-size: 19px; font-family: var(--font); font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 15px; }

.service-icon {
	font-size: 30px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(37, 99, 235, 0.08);
	border-radius: 14px;
	margin-bottom: 18px;
}

.card-link { font-weight: 600; font-size: 14px; }

.case-card .case-head { margin-bottom: 12px; }
.case-domain {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	color: var(--primary);
	background: rgba(37, 99, 235, 0.08);
	padding: 4px 10px;
	border-radius: 6px;
	margin-bottom: 10px;
}
.case-card h3 { font-size: 17px; font-family: var(--font); }
.case-result { font-size: 22px; font-weight: 700; color: var(--primary); }

.case-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; padding: 0; }
.case-chips li {
	font-size: 13px;
	font-weight: 500;
	color: var(--ink);
	background: rgba(6, 182, 212, 0.1);
	border-radius: 999px;
	padding: 5px 12px;
}

/* ============================ About strip / stats ============================ */

.about-strip { background: var(--ink); color: #e8edf7; }
.about-strip .eyebrow { color: #7dd3fc; border-color: rgba(125, 211, 252, 0.3); background: rgba(125, 211, 252, 0.1); }
.about-strip p, .about-strip li { color: #b6c2d9; }

.about-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 56px;
	align-items: center;
}

.check-list { list-style: none; margin: 20px 0 0; padding: 0; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.check-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #fff;
	background: var(--primary-2);
	border-radius: 50%;
}

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.stat {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	padding: 26px 24px;
}
.stat strong { display: block; font-family: var(--font-head); font-size: 30px; color: #fff; margin-bottom: 6px; }
.stat span { color: #b6c2d9; font-size: 14px; }

.about-metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.about-metrics-grid .stat { background: #fff; border-color: var(--line); }
.about-metrics-grid .stat strong { color: var(--primary); }

/* ============================ Steps ============================ */

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { border-top: 3px solid var(--primary); padding-top: 22px; }
.step-num {
	font-family: var(--font-head);
	font-size: 22px;
	color: var(--primary-2);
	display: block;
	margin-bottom: 12px;
}
.step h3 { font-size: 19px; font-family: var(--font); font-weight: 600; }
.step p { color: var(--muted); font-size: 15px; }

/* ============================ Testimonials ============================ */

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
	margin: 0;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.testimonial p { color: var(--muted); font-size: 15px; flex: 1; }
.testimonial footer strong { display: block; font-family: var(--font); font-size: 15px; }
.testimonial footer span { color: var(--muted); font-size: 13px; }

/* ============================ CTA band ============================ */

.cta-band {
	background: linear-gradient(120deg, var(--primary), var(--primary-2));
	padding: 76px 0;
	color: #fff;
}
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(255, 255, 255, 0.9); font-size: 17px; margin-bottom: 28px; }

/* ============================ Page hero ============================ */

.page-hero {
	background:
		radial-gradient(700px 320px at 80% -20%, rgba(6, 182, 212, 0.16), transparent 60%),
		var(--bg);
	padding: 72px 0 56px;
	text-align: center;
}
.page-hero .container { max-width: 820px; }
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); }
.page-hero p { color: var(--muted); font-size: 17px; }

/* ============================ Services page ============================ */

.services-list { display: grid; gap: 26px; }
.service-block {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 24px;
	align-items: start;
}
.service-block-icon {
	font-size: 26px;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(37, 99, 235, 0.08);
	border-radius: 14px;
}
.service-block h2 { font-size: 21px; font-family: var(--font); font-weight: 700; }
.service-block p { color: var(--muted); }

.note-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: rgba(37, 99, 235, 0.06);
	border: 1px dashed rgba(37, 99, 235, 0.3);
	border-radius: var(--radius);
	padding: 26px 30px;
	margin-top: 40px;
	flex-wrap: wrap;
}
.note-box p { margin: 0; font-weight: 500; }

/* ============================ Cases page ============================ */

.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.case-block {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px;
}
.case-block .case-result { font-size: 26px; }
.case-rev { color: var(--muted); margin-top: 18px; font-size: 15px; }

/* ============================ About page ============================ */

.mission-grid {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 56px;
	align-items: center;
}
.mission-stat { text-align: center; }
.stat-big { font-family: var(--font-head); font-size: 64px; color: var(--primary); display: block; margin-bottom: 8px; }
.mission-stat p { color: var(--muted); }

.value-card .step-num { margin-bottom: 14px; }
.value-card h3 { font-family: var(--font); }

.tools-cloud { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.tool-chip {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 10px 20px;
	font-weight: 500;
	font-size: 15px;
}

/* ============================ Contacts ============================ */

.contacts-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 48px;
	align-items: start;
}

.contact-form-wrap {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px;
	box-shadow: var(--shadow);
}

.form-row { display: flex; gap: 18px; margin-bottom: 18px; }
.form-row-2 .form-field { flex: 1; }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.form-field input,
.form-field textarea {
	width: 100%;
	font-family: var(--font);
	font-size: 15px;
	color: var(--ink);
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 12px 14px;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field textarea:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
	background: #fff;
}
.form-field textarea { resize: vertical; }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-footer { display: flex; align-items: center; gap: 18px; margin-bottom: 0; flex-wrap: wrap; }
.form-note { color: var(--muted); font-size: 13px; margin: 0; max-width: 320px; }

.form-status { display: none; margin-top: 16px; padding: 14px 18px; border-radius: 10px; font-weight: 500; }
.form-status-ok { display: block; background: rgba(52, 211, 153, 0.15); color: #065f46; }
.form-status-error { display: block; background: rgba(251, 113, 133, 0.15); color: #9f1239; }

.contact-info { display: grid; gap: 18px; }
.info-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px 24px;
}
.info-card h3 { font-size: 15px; font-family: var(--font); color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.info-card p { margin: 0; font-weight: 500; }
.info-card a { font-weight: 600; }

.map-placeholder {
	background:
		repeating-linear-gradient(0deg, rgba(11,17,32,0.05) 0 1px, transparent 1px 34px),
		repeating-linear-gradient(90deg, rgba(11,17,32,0.05) 0 1px, transparent 1px 34px),
		#e6ecf6;
	border: 1px dashed rgba(11, 17, 32, 0.2);
	border-radius: var(--radius);
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
}

/* ============================ Blog ============================ */

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-thumb { display: block; max-height: 220px; overflow: hidden; }
.blog-thumb img { width: 100%; object-fit: cover; transition: transform 0.3s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card-body h3 { font-size: 18px; font-family: var(--font); font-weight: 700; }
.blog-card-body p { color: var(--muted); font-size: 14px; flex: 1; }
.cat {
	font-size: 12px;
	font-weight: 600;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 10px;
	display: inline-block;
}
.blog-meta { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 13px; }
.read-more { font-weight: 600; }

.pagination { display: flex; justify-content: center; margin-top: 48px; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fff;
	color: var(--ink);
	font-weight: 500;
}
.pagination .page-numbers.current { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ============================ Single post ============================ */

.single-post { background: #fff; }
.single-header { padding: 60px 0 40px; text-align: center; }
.single-header .cat { text-transform: uppercase; }
.single-header h1 { max-width: 820px; margin: 0 auto 14px; font-size: clamp(26px, 3.6vw, 40px); }
.single-meta { display: flex; gap: 22px; justify-content: center; color: var(--muted); font-size: 14px; flex-wrap: wrap; }
.single-body { max-width: 800px; padding-bottom: 80px; }
.single-thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 30px; }
.entry-content { color: #263042; font-size: 17px; }
.entry-content h2, .entry-content h3 { margin-top: 1.6em; }
.entry-content img, .entry-content .wp-block-image img { border-radius: 12px; }
.entry-content a { text-decoration: underline; }
.single-nav {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 56px;
	padding-top: 26px;
	border-top: 1px solid var(--line);
}
.single-nav a { font-weight: 600; }

/* ============================ 404 / empty ============================ */

.error-page { text-align: center; padding: 120px 0; }
.error-code {
	font-family: var(--font-head);
	font-size: clamp(80px, 12vw, 140px);
	line-height: 1;
	background: linear-gradient(135deg, var(--primary), var(--primary-2));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin: 0 0 10px;
}
.empty-state { text-align: center; padding: 60px 0; }

/* ============================ Footer ============================ */

.site-footer {
	background: var(--ink);
	color: #b6c2d9;
	padding: 72px 0 0;
}
.site-footer .site-logo { color: #fff; }
.site-footer .site-logo span { color: var(--primary-2); }

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.7fr 1fr 1.1fr;
	gap: 40px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col h4 { color: #fff; font-size: 15px; font-family: var(--font); letter-spacing: 0.04em; margin-bottom: 18px; }
.footer-about p { font-size: 14px; }

.footer-menu,
.footer-contacts {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}
.footer-menu a,
.footer-contacts a { color: #b6c2d9; font-size: 14px; }
.footer-menu a:hover,
.footer-contacts a:hover { color: #fff; }
.footer-contacts li { font-size: 14px; }

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	padding: 24px 0;
	font-size: 13px;
}
.footer-bottom a { color: #b6c2d9; }
.footer-bottom a:hover { color: #fff; }

/* ============================ Responsive ============================ */

@media (max-width: 1024px) {
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.cards-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
	.cases-grid { grid-template-columns: 1fr; }
	.testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
	.about-grid { grid-template-columns: 1fr; gap: 40px; }
	.about-metrics-grid { grid-template-columns: repeat(2, 1fr); }
	.mission-grid { grid-template-columns: 1fr; gap: 30px; }
	.contacts-grid { grid-template-columns: 1fr; }
	.hero-grid { grid-template-columns: 1fr; }
	.hero-visual { max-width: 460px; margin: 0 auto; }
	.service-block { grid-template-columns: 1fr; }
	.steps-grid { grid-template-columns: 1fr; max-width: 520px; }
}

@media (max-width: 720px) {
	.nav-toggle { display: flex; }
	.site-nav {
		position: fixed;
		inset: 64px 0 auto 0;
		background: #fff;
		border-bottom: 1px solid var(--line);
		padding: 16px 20px 24px;
		transform: translateY(-130%);
		transition: transform 0.25s ease;
		box-shadow: var(--shadow);
		z-index: 99;
	}
	.site-nav.open { transform: translateY(0); }
	.site-nav .nav-list { flex-direction: column; gap: 4px; }
	.cards-grid, .blog-grid { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: 1fr; }
	.about-metrics-grid { grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 28px; }
	.hero { padding: 56px 0 64px; }
	.section { padding: 56px 0; }
	.form-row { flex-direction: column; gap: 0; }
	.hero-metrics { gap: 24px; }
}

/* ============================ WP core ============================ */

.simple-content { max-width: 800px; }
.simple-content .entry-content { font-size: 17px; color: #263042; }

.alignwide, .alignfull { margin-left: 0; margin-right: 0; }
.wp-caption { max-width: 100%; }
.screen-reader-text, .screen-reader-shortcut { position: absolute !important; clip: rect(1px, 1px, 1px, 1px); }
.bypostauthor { display: block; }
.sticky { display: block; }