/*
Theme Name: Brightpath
Theme URI:
Author: Greg Rosenquist
Author URI:
Description: A custom theme for Brightpath, hand-built from a custom design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brightpath
*/

/* ==========================================================================
   The header comment ABOVE is what makes WordPress recognize this as a theme.
   Everything below is normal CSS, organized into sections:
     1. Design tokens (colors, fonts) as CSS variables
     2. Base / reset
     3. Typography
     4. Layout helpers (container, sections, eyebrow, section headings)
     5. Buttons
     6. Site header + navigation (with mobile hamburger)
     7. Site footer
     8. Page sections (hero, cards, services, resources, about, contact)
     9. FLUX image placeholders
   ========================================================================== */

/* 1. DESIGN TOKENS ========================================================= */
:root {
	/* Brand palette sampled from the mockups */
	--green: #374e3b;          /* primary: buttons, dark bands, logo */
	--green-dark: #2b3d2e;     /* button hover */
	--green-soft: #e6eae5;     /* light sage: icon chips, hovers */
	--sage: #87948c;           /* muted accent text/borders */

	--cream: #f4efeb;          /* warm off-white section background */
	--bg: #ffffff;             /* page + cards */
	--ink: #1c241a;            /* headings + strong text */
	--body: #5b6058;           /* secondary/body copy (warm gray) */
	--border: #e6e3dd;         /* hairlines, card borders */

	/* Type */
	--font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
	--font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	/* Rhythm */
	--container: 1180px;
	--radius: 14px;
	--radius-sm: 10px;
	--shadow: 0 18px 40px rgba(28, 36, 26, 0.08);
	--shadow-sm: 0 6px 18px rgba(28, 36, 26, 0.06);
}

/* 2. BASE ================================================================== */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

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

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

a {
	color: var(--green);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* 3. TYPOGRAPHY ============================================================ */
h1, h2, h3, h4 {
	font-family: var(--font-serif);
	color: var(--ink);
	line-height: 1.12;
	margin: 0 0 0.5em;
	font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

/* 4. LAYOUT HELPERS ======================================================== */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 24px;
}

.section {
	padding-block: clamp(3.5rem, 7vw, 6rem);
}

.section--cream { background: var(--cream); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

/* Small uppercase label above headings (e.g. "EDUCATE. EMPOWER. SUCCEED.") */
.eyebrow {
	display: inline-block;
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sage);
	margin-bottom: 1rem;
}

/* Centered heading block for section intros */
.section-head {
	max-width: 640px;
	margin: 0 auto clamp(2rem, 4vw, 3rem);
	text-align: center;
}

.section-head .eyebrow { color: var(--sage); }
.section-head p { font-size: 1.05rem; }

/* 5. BUTTONS =============================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1;
	padding: 0.85rem 1.5rem;
	border-radius: var(--radius-sm);
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
	text-decoration: none;
}

.btn:hover { text-decoration: none; }

.btn--primary {
	background: var(--green);
	color: #fff;
}
.btn--primary:hover { background: var(--green-dark); color: #fff; }

.btn--outline {
	background: transparent;
	color: var(--ink);
	border-color: var(--border);
}
.btn--outline:hover { border-color: var(--green); color: var(--green); }

.btn--ghost-light {
	background: #fff;
	color: var(--green);
}
.btn--ghost-light:hover { background: var(--green-soft); }

/* 6. SITE HEADER + NAVIGATION ============================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(180%) blur(8px);
	border-bottom: 1px solid var(--border);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 74px;
}

/* Branding (leaf icon + wordmark) */
.site-branding {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	text-decoration: none;
}
.site-branding:hover { text-decoration: none; }
.site-branding__icon { color: var(--green); font-size: 1.5rem; line-height: 1; }
/* Header logo icon only — slightly larger than the wordmark (footer keeps default) */
.site-header .site-branding__icon { font-size: 2rem; }
.site-branding__name {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 1.35rem;
	color: var(--ink);
}
.site-branding__sub {
	display: block;
	font-family: var(--font-sans);
	font-size: 0.6rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--sage);
	margin-top: -2px;
	margin-left: 0.8rem; /* shift "Learning" to start around the end of the "B" */
}

/* Primary nav */
.site-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-left: auto;
}
.site-nav__menu {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-nav__menu a {
	font-family: var(--font-sans);
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--ink);
	text-decoration: none;
}
.site-nav__menu a:hover,
.site-nav__menu .current-menu-item > a { color: var(--green); }
.site-nav__menu a:hover { text-decoration: underline; text-underline-offset: 6px; }

/* Hamburger toggle — hidden on desktop, shown under the breakpoint */
.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	background: #fff;
	color: var(--ink);
	font-size: 1.4rem;
	cursor: pointer;
}
.nav-toggle .bi-x-lg { display: none; }
.nav-toggle[aria-expanded="true"] .bi-list { display: none; }
.nav-toggle[aria-expanded="true"] .bi-x-lg { display: inline-block; }

/* 7. SITE FOOTER ========================================================== */
.site-footer {
	background: var(--bg);
	border-top: 1px solid var(--border);
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 2.5rem;
	padding-block: clamp(2.5rem, 5vw, 4rem);
}
.footer-brand__name {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 1.3rem;
	color: var(--ink);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}
.footer-brand p { margin-top: 1rem; max-width: 26ch; font-size: 0.95rem; }
.footer-col h4 {
	font-family: var(--font-sans);
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a, .footer-col span { color: var(--body); font-size: 0.95rem; }
.footer-col a:hover { color: var(--green); }

.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: #fff;
	font-size: 1rem;
}
.footer-social a:hover { text-decoration: none; opacity: 0.9; }
.footer-social .is-facebook { background: #1877f2; }
.footer-social .is-instagram { background: #e1306c; }
.footer-social .is-linkedin { background: var(--green); }

.site-footer__bar {
	border-top: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	padding-block: 1.25rem;
	font-size: 0.9rem;
	color: var(--body);
}
.site-footer__bar nav { display: flex; gap: 1.5rem; }

/* 9. FLUX IMAGE PLACEHOLDERS =============================================== */
.flux-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	width: 100%;
	max-width: 100%;
	padding: 1rem;
	background: #e5e7eb;
	border: 2px dashed #9ca3af;
	color: #4b5563;
	text-align: center;
	overflow: hidden;
	border-radius: var(--radius);
}
.flux-placeholder__icon { font-size: 1.75rem; line-height: 1; }
.flux-placeholder__file {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.9rem;
	font-weight: 600;
	color: #1f2937;
	word-break: break-all;
}
.flux-placeholder__dims { font-size: 0.8rem; letter-spacing: 0.02em; }
.flux-placeholder__alt { font-size: 0.8rem; font-style: italic; max-width: 40ch; }

.flux-bg-missing {
	background-color: #e5e7eb;
	background-image: repeating-linear-gradient(
		45deg,
		#d1d5db 0, #d1d5db 12px,
		#e5e7eb 12px, #e5e7eb 24px
	);
}

/* 8. PAGE SECTIONS ========================================================= */

/* Shared: small icon chip + "Learn More ->" text link + 3-up card grid ----- */
.feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--green);
	font-size: 1.3rem;
	line-height: 1;
	flex: 0 0 auto;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--green);
}
.text-link:hover { text-decoration: none; }
.text-link i { transition: transform 0.15s ease; }
.text-link:hover i { transform: translateX(3px); }

.cards-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}
.card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.card__media img {
	width: 100%;
	height: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.card__media .flux-placeholder { border-radius: 0; border-inline: 0; border-top: 0; }
.card__body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.5rem;
	flex: 1;
}
.card__body h3 { margin: 0; }
.card__body p { font-size: 0.95rem; margin: 0; flex: 1; }
.card__body .text-link { margin-top: 0.5rem; }

/* Hero -------------------------------------------------------------------- */
.hero {
	background: linear-gradient(110deg, #ffffff 0%, #ffffff 38%, var(--cream) 100%);
	overflow: hidden;
}
.hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: stretch;
	padding-block: clamp(3rem, 6vw, 5rem);
}
.hero__content { align-self: center; }
.hero__content { max-width: 560px; }
.hero__sub {
	font-size: 1.1rem;
	max-width: 46ch;
	margin-bottom: 1.75rem;
}
.hero__actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}
.hero__features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}
.hero__features li { display: flex; gap: 0.6rem; }
.feature-text {
	display: flex;
	flex-direction: column;
	font-size: 0.84rem;
	line-height: 1.4;
	color: var(--body);
}
.feature-text strong { color: var(--ink); font-size: 0.92rem; margin-bottom: 1px; }
.hero__media { display: flex; }
.hero__media img {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 380px;
}
.hero__media .flux-placeholder { min-height: 380px; }

/* Shared: icon chip + dark CTA band -------------------------------------- */
.icon-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: var(--green-soft);
	color: var(--green);
	font-size: 1.45rem;
	flex: 0 0 auto;
}

.cta-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.5rem;
	background: var(--green);
	color: #fff;
	border-radius: var(--radius);
	padding: clamp(1.75rem, 4vw, 2.5rem);
	margin-top: clamp(2rem, 4vw, 3rem);
}
.cta-band h2, .cta-band h3 { color: #fff; margin: 0 0 0.25rem; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin: 0; }

/* Services list ----------------------------------------------------------- */
.service-list {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 0.5rem clamp(1.25rem, 3vw, 2rem);
}
.service-row {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: 0; }
.service-row__text { flex: 1; }
.service-row__text h3 { margin: 0 0 0.25rem; font-size: 1.15rem; }
.service-row__text p { margin: 0; font-size: 0.95rem; }
.service-row .btn { flex: 0 0 auto; }

/* Shared: split page hero + round icon ----------------------------------- */
.page-hero { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.page-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.page-hero__content { max-width: 520px; }
.page-hero__content h1 { font-size: clamp(2.2rem, 4.5vw, 3rem); }
.page-hero__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.page-hero__media .flux-placeholder { min-height: 340px; }

.icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--green-soft);
	color: var(--green);
	font-size: 1.6rem;
	margin-bottom: 0.5rem;
}

/* About: stats + approach ------------------------------------------------- */
.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	text-align: center;
}
.stat__num {
	font-family: var(--font-serif);
	font-weight: 800;
	font-size: clamp(2.2rem, 5vw, 3rem);
	color: var(--green);
	line-height: 1;
}
.stat__label { color: var(--body); font-size: 0.95rem; margin-top: 0.35rem; }

.approach {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.approach__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.4rem;
}
.approach__item h3 { margin: 0; }
.approach__item p { margin: 0; font-size: 0.95rem; max-width: 30ch; }

.center-cta { text-align: center; margin-top: clamp(1.5rem, 3vw, 2.5rem); }

/* Resources: search bar, topics, badges, newsletter ---------------------- */
.search-bar {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 0.4rem;
	max-width: 460px;
	box-shadow: var(--shadow-sm);
}
.search-bar__icon { display: inline-flex; align-items: center; color: var(--sage); padding-left: 0.5rem; }
.search-bar input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 0.5rem 0.5rem;
	font: inherit;
	color: var(--ink);
	outline: none;
}

.cards-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.topics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.25rem;
}
.topic-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.5rem;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 1.5rem 1.25rem;
}
.topic-card h4 { font-family: var(--font-serif); font-size: 1.05rem; margin: 0; color: var(--ink); }
.topic-card p { font-size: 0.85rem; margin: 0; flex: 1; }
.topic-card .text-link { font-size: 0.85rem; }

.card__media { position: relative; }
.badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	background: rgba(55, 78, 59, 0.92);
	color: #fff;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.3rem 0.6rem;
	border-radius: 6px;
}

.newsletter {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	background: var(--green-soft);
	border-radius: var(--radius);
	padding: clamp(1.75rem, 4vw, 2.5rem);
}
.newsletter__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #fff;
	color: var(--green);
	font-size: 1.6rem;
	flex: 0 0 auto;
}
.newsletter__text { flex: 1; min-width: 240px; }
.newsletter__text h2 { margin: 0 0 0.25rem; font-size: clamp(1.4rem, 3vw, 1.8rem); }
.newsletter__text p { margin: 0; font-size: 0.95rem; }
.newsletter__form { display: flex; flex-direction: column; gap: 0.4rem; }
.newsletter__row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.newsletter__row input {
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 0.75rem 1rem;
	font: inherit;
	min-width: 220px;
	background: #fff;
	color: var(--ink);
}
.newsletter small { color: var(--body); font-size: 0.8rem; }

/* Mini feature row (hero reassurance points) ----------------------------- */
.mini-features {
	list-style: none;
	margin: 1.75rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}
.mini-features li { display: flex; gap: 0.6rem; }

/* Contact: form + info card + FAQ ----------------------------------------- */
.contact-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 2rem;
	align-items: start;
}
.contact-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: clamp(1.5rem, 3vw, 2rem);
}
.contact-card > h2 { font-size: clamp(1.5rem, 3vw, 1.9rem); margin-bottom: 0.25rem; }
.contact-card > p { margin-bottom: 1.5rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
	width: 100%;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 0.7rem 0.9rem;
	font: inherit;
	color: var(--ink);
	background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus,
.search-bar input:focus, .newsletter__row input:focus {
	outline: 2px solid var(--green);
	outline-offset: 1px;
	border-color: var(--green);
}
.form-consent { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.85rem; margin-bottom: 1.25rem; }
.form-consent input { margin-top: 0.2rem; }

.info-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.info-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.info-item .icon-circle { width: 44px; height: 44px; font-size: 1.15rem; margin: 0; flex: 0 0 auto; }
.info-item h4 { margin: 0 0 0.15rem; font-family: var(--font-sans); font-size: 0.95rem; color: var(--ink); }
.info-item p { margin: 0; font-size: 0.9rem; }

.schedule-box { background: var(--green-soft); border-radius: var(--radius-sm); padding: 1.25rem; margin-top: 1.5rem; }
.schedule-box h4 { margin: 0 0 0.2rem; font-family: var(--font-serif); font-size: 1.05rem; color: var(--ink); }
.schedule-box p { margin: 0 0 0.5rem; font-size: 0.9rem; }

.icon-chip--sm { width: 38px; height: 38px; font-size: 1.05rem; border-radius: 9px; }

.faq { display: flex; flex-direction: column; gap: 0.75rem; max-width: 820px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq summary {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1rem 1.25rem;
	cursor: pointer;
	font-weight: 600;
	color: var(--ink);
	list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq__chev { margin-left: auto; color: var(--sage); display: inline-flex; transition: transform 0.2s ease; }
.faq details[open] .faq__chev { transform: rotate(90deg); }
.faq__body { padding: 0 1.25rem 1.25rem calc(1.25rem + 38px + 0.85rem); font-size: 0.95rem; color: var(--body); }

/* Generic page.php fallback ----------------------------------------------- */
.container--narrow { max-width: 760px; }
.page-title { margin-bottom: 1rem; }
.entry-content h2 { margin-top: 2rem; }
.entry-content ul { padding-left: 1.25rem; }

/* ==========================================================================
   RESPONSIVE — mobile navigation + stacking
   ========================================================================== */
@media (max-width: 900px) {
	.nav-toggle { display: inline-flex; }

	.site-nav {
		position: fixed;
		inset: 74px 0 auto 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: #fff;
		border-bottom: 1px solid var(--border);
		box-shadow: var(--shadow);
		padding: 0.5rem 0 1rem;
		margin: 0;
		transform: translateY(-12px);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.18s ease, transform 0.18s ease;
	}
	.site-nav.is-open {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}
	.site-nav__menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}
	.site-nav__menu a {
		display: block;
		padding: 0.85rem 24px;
		font-size: 1.05rem;
	}
	.site-nav .btn { margin: 0.75rem 24px 0; justify-content: center; }

	.site-footer__grid { grid-template-columns: 1fr 1fr; }

	.hero__inner { grid-template-columns: 1fr; }
	.hero__media { order: -1; }
	.hero__features { grid-template-columns: 1fr; gap: 0.85rem; }
}

@media (max-width: 760px) {
	.cards-3 { grid-template-columns: 1fr; }

	.service-row { flex-wrap: wrap; }
	.service-row__text { flex-basis: calc(100% - 66px); }
	.service-row .btn { width: 100%; justify-content: center; margin-left: 66px; }

	.cta-band { flex-direction: column; align-items: flex-start; }

	.page-hero__inner { grid-template-columns: 1fr; }
	.page-hero__media { order: -1; }
	.approach { grid-template-columns: 1fr; }

	.contact-grid { grid-template-columns: 1fr; }
	.mini-features { grid-template-columns: 1fr; gap: 0.85rem; }
}

@media (max-width: 560px) {
	.form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
	.cards-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
	.stats { grid-template-columns: 1fr; gap: 1.75rem; }
	.cards-4 { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
	.site-footer__grid { grid-template-columns: 1fr; }
	.site-footer__bar { justify-content: flex-start; }
}
