/* =========================================================
   WDN Home Improvement LLC — Site Stylesheet
   Brand: warm orange + deep ink, clean + trust-focused
   ========================================================= */

:root {
	--brand: #e67817;
	--brand-dark: #c4621a;
	--brand-soft: #fef4ea;
	--accent: #a05a2c;
	--ink: #1a1a1a;
	--ink-2: #3a3a3a;
	--ink-3: #6b6b6b;
	--paper: #ffffff;
	--paper-2: #faf7f2;
	--paper-3: #f1ebe1;
	--line: #e5e0d7;
	--success: #2e7d32;
	--radius: 10px;
	--radius-lg: 18px;
	--shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.06), 0 1px 3px rgba(26, 26, 26, 0.08);
	--shadow-md: 0 4px 12px rgba(26, 26, 26, 0.08), 0 2px 6px rgba(26, 26, 26, 0.04);
	--shadow-lg: 0 20px 40px rgba(26, 26, 26, 0.12);
	--maxw: 1200px;
	--container-pad: clamp(20px, 4vw, 40px);
	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink-2);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
html { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brand-dark); }
h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--ink);
	margin: 0 0 0.5em;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }

/* Layout */
.container {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--container-pad);
}
.section { padding: clamp(50px, 8vw, 100px) 0; }
.section--tight { padding: clamp(40px, 6vw, 70px) 0; }
.section--paper { background: var(--paper-2); }
.section--ink { background: var(--ink); color: #d6d2cb; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--brand { background: var(--brand); color: #fff; }
.section--brand h2, .section--brand h3 { color: #fff; }

.text-center { text-align: center; }
.eyebrow {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--brand);
	margin-bottom: 0.8em;
}
.lead { font-size: 1.125rem; color: var(--ink-2); max-width: 60ch; }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: var(--radius);
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn.btn--primary:hover { background: var(--brand-dark); color: #fff; box-shadow: var(--shadow-md); }
.btn.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn.btn--ghost-light:hover { background: #fff; color: var(--ink); }
.btn--lg { padding: 18px 32px; font-size: 1rem; }

/* Header / Nav */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--line);
}
.top-bar {
	background: var(--ink);
	color: #cfcac2;
	font-size: 0.82rem;
}
.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 8px;
	padding-bottom: 8px;
	gap: 16px;
	flex-wrap: wrap;
}
.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--brand); }
.top-bar .sep { color: var(--brand); margin: 0 8px; }

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	gap: 20px;
}
.brand {
	display: inline-flex;
	align-items: center;
	color: var(--ink);
	text-decoration: none;
	line-height: 1;
}
.brand:hover { color: var(--ink); }
.brand__logo {
	display: block;
	height: 54px;
	width: auto;
	max-width: 100%;
}
.site-footer .brand__logo { height: 60px; }
@media (max-width: 560px) {
	.brand__logo { height: 44px; }
}

.nav {
	display: flex;
	align-items: center;
	gap: 30px;
}
.nav__list {
	display: flex;
	list-style: none;
	padding: 0; margin: 0;
	gap: 28px;
}
.nav__list a {
	color: var(--ink);
	font-weight: 600;
	font-size: 0.95rem;
	position: relative;
	padding: 6px 0;
}
.nav__list a:hover, .nav__list a.active { color: var(--brand); }
.nav__list a.active::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: -2px;
	height: 2px;
	background: var(--brand);
	border-radius: 2px;
}

.nav-toggle {
	display: none;
	background: transparent;
	border: 0;
	width: 44px; height: 44px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
	content: '';
	display: block;
	width: 22px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after { transform: translateY(5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg) translateY(-2px); }

/* Hero (home) */
.hero {
	position: relative;
	padding: clamp(60px, 9vw, 120px) 0 clamp(50px, 8vw, 100px);
	background:
		radial-gradient(1100px 500px at 80% -10%, rgba(230,120,23,0.14), transparent 60%),
		radial-gradient(900px 500px at -10% 110%, rgba(230,120,23,0.08), transparent 60%),
		var(--paper-2);
	overflow: hidden;
}
.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 60px;
	align-items: center;
}
.hero h1 {
	font-size: clamp(2.2rem, 5.5vw, 4rem);
	line-height: 1.05;
	margin-bottom: 20px;
}
.hero h1 em {
	font-style: normal;
	color: var(--brand);
	background: linear-gradient(180deg, transparent 62%, rgba(230,120,23,0.18) 62%);
	padding: 0 4px;
}
.hero__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 22px 0 30px;
}
.tag {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 14px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ink);
}
.tag svg { color: var(--brand); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.hero__meta {
	display: flex; gap: 28px; margin-top: 36px;
	flex-wrap: wrap;
}
.hero__meta strong { display: block; color: var(--ink); font-size: 1.4rem; font-weight: 800; }
.hero__meta span { color: var(--ink-3); font-size: 0.85rem; }

.hero__card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--line);
}
.hero__card h3 { font-size: 1.1rem; margin-bottom: 18px; }
.hero__services { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero__service {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px;
	background: var(--paper-2);
	border-radius: var(--radius);
	border: 1px solid transparent;
	transition: border-color 0.15s, background 0.15s;
	text-decoration: none;
	color: var(--ink);
}
.hero__service:hover { border-color: var(--brand); background: #fff; color: var(--ink); }
.hero__service__icon {
	flex: 0 0 38px;
	width: 38px; height: 38px;
	background: var(--brand-soft);
	color: var(--brand);
	border-radius: 9px;
	display: grid; place-items: center;
}
.hero__service__icon svg { width: 20px; height: 20px; }
.hero__service strong { display: block; font-size: 0.95rem; }
.hero__service span { font-size: 0.78rem; color: var(--ink-3); }

/* ==========================================================
   Cinematic hero (index page) — full-bleed, crossfading real
   project photos, prominent logo, rotating service headline
   ========================================================== */
.hero-cinema {
	position: relative;
	width: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	max-height: 900px;
	overflow: hidden;
	background: #0a0a0a;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 110px; /* reserves clean space for the scroll indicator */
	isolation: isolate;
}
.hero-cinema__bg { position: absolute; inset: 0; z-index: 0; }
.hero-cinema__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	animation: heroCrossfade 28s infinite;
	will-change: opacity, transform;
	transform: scale(1.05);
}
.hero-cinema__slide:nth-child(1) { animation-delay:   0s; }
.hero-cinema__slide:nth-child(2) { animation-delay:   7s; }
.hero-cinema__slide:nth-child(3) { animation-delay:  14s; }
.hero-cinema__slide:nth-child(4) { animation-delay:  21s; }

@keyframes heroCrossfade {
	0%   { opacity: 0; transform: scale(1.08); }
	3%   { opacity: 1; }
	22%  { opacity: 1; transform: scale(1.02); }
	28%  { opacity: 0; }
	100% { opacity: 0; transform: scale(1.08); }
}

.hero-cinema__overlay {
	position: absolute; inset: 0; z-index: 1;
	background:
		linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 35%, rgba(10,10,10,0.88) 100%),
		radial-gradient(1200px 600px at 50% 120%, rgba(230,120,23,0.25), transparent 60%);
}

.hero-cinema__content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: clamp(40px, 6vh, 80px) var(--container-pad);
	max-width: 960px;
	width: 100%;
	animation: heroFadeUp 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes heroFadeUp {
	0%   { opacity: 0; transform: translateY(28px); }
	100% { opacity: 1; transform: translateY(0); }
}

.hero-cinema__logo {
	display: block;
	margin: 0 auto 28px;
	width: clamp(200px, 28vw, 340px);
	height: auto;
	filter: drop-shadow(0 8px 30px rgba(0,0,0,0.5));
}

.hero-cinema__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 8px 16px;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 999px;
	backdrop-filter: blur(8px);
	margin-bottom: 24px;
}
.hero-cinema__eyebrow::before {
	content: '';
	width: 7px; height: 7px;
	border-radius: 50%;
	background: #ff3b3b;
	box-shadow: 0 0 12px #ff3b3b;
	animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.hero-cinema__title {
	font-size: clamp(2rem, 5.4vw, 3.8rem);
	font-weight: 900;
	line-height: 1.1;
	color: #fff;
	letter-spacing: -0.025em;
	margin: 0 0 18px;
	text-shadow: 0 4px 30px rgba(0,0,0,0.4);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.hero-cinema__title-line { display: block; }

/* Rotating service headline */
.hero-cinema__rotator {
	position: relative;
	display: block;
	width: 100%;
	height: 1.25em;
}
.hero-cinema__word {
	position: absolute;
	left: 0; right: 0; top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: normal;
	color: var(--brand);
	opacity: 0;
	transform: translateY(14px);
	animation: wordCycle 28s infinite;
	will-change: opacity, transform;
	line-height: 1.2;
}
.hero-cinema__word:nth-child(1) { animation-delay:  0s; }
.hero-cinema__word:nth-child(2) { animation-delay:  7s; }
.hero-cinema__word:nth-child(3) { animation-delay: 14s; }
.hero-cinema__word:nth-child(4) { animation-delay: 21s; }

@keyframes wordCycle {
	0%   { opacity: 0; transform: translateY(14px); }
	3%   { opacity: 1; transform: translateY(0); }
	22%  { opacity: 1; transform: translateY(0); }
	28%  { opacity: 0; transform: translateY(-14px); }
	100% { opacity: 0; transform: translateY(14px); }
}

.hero-cinema__lead {
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	color: rgba(255,255,255,0.92);
	max-width: 620px;
	margin: 28px auto 0;
	line-height: 1.55;
	text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-cinema__actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 36px;
}

.hero-cinema__badges {
	display: flex;
	gap: 22px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 44px;
	color: rgba(255,255,255,0.75);
	font-size: 0.86rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}
.hero-cinema__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.hero-cinema__badge svg { color: var(--brand); flex: 0 0 auto; }

.hero-cinema__scroll {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	color: rgba(255,255,255,0.7);
	font-size: 0.74rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-cinema__scroll::after {
	content: '';
	width: 1px;
	height: 32px;
	background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent);
}
@keyframes scrollBounce {
	0%,100% { transform: translate(-50%, 0); }
	50%     { transform: translate(-50%, 8px); }
}

@media (max-width: 720px) {
	.hero-cinema {
		min-height: auto;
		padding: 90px 0 70px;
		max-height: none;
	}
	.hero-cinema__content {
		padding: 0 var(--container-pad);
	}
	.hero-cinema__logo {
		width: clamp(160px, 45vw, 240px);
		margin-bottom: 20px;
	}
	.hero-cinema__eyebrow {
		font-size: 0.68rem;
		letter-spacing: 0.18em;
		padding: 7px 14px;
		margin-bottom: 18px;
	}
	.hero-cinema__title {
		font-size: clamp(1.75rem, 7vw, 2.4rem);
		line-height: 1.15;
		gap: 4px;
		margin-bottom: 14px;
	}
	.hero-cinema__rotator {
		height: 2.5em;
	}
	.hero-cinema__word {
		padding: 0 4px;
		line-height: 1.2;
	}
	.hero-cinema__lead {
		font-size: 0.98rem;
		margin-top: 18px;
		line-height: 1.5;
	}
	.hero-cinema__actions {
		flex-direction: column;
		gap: 12px;
		margin-top: 28px;
		width: 100%;
	}
	.hero-cinema__actions .btn {
		width: 100%;
		justify-content: center;
	}
	.hero-cinema__badges {
		gap: 10px 18px;
		font-size: 0.72rem;
		margin-top: 30px;
	}
	.hero-cinema__scroll { display: none; }
}
@media (max-width: 420px) {
	.hero-cinema__title { font-size: 1.55rem; }
	.hero-cinema__eyebrow { font-size: 0.62rem; letter-spacing: 0.14em; }
	.hero-cinema__badges { font-size: 0.68rem; gap: 8px 14px; }
}
@media (prefers-reduced-motion: reduce) {
	.hero-cinema__slide,
	.hero-cinema__word,
	.hero-cinema__scroll { animation: none; }
	.hero-cinema__slide:first-child { opacity: 1; }
	.hero-cinema__word:first-child { opacity: 1; transform: none; }
}

/* Page hero (non-home) */
.page-hero {
	padding: clamp(50px, 7vw, 90px) 0 clamp(40px, 6vw, 70px);
	background:
		radial-gradient(800px 400px at 80% -20%, rgba(230,120,23,0.12), transparent 60%),
		var(--paper-2);
	border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 14px; }
.breadcrumbs {
	font-size: 0.85rem;
	color: var(--ink-3);
	margin-bottom: 14px;
}
.breadcrumbs a { color: var(--ink-3); }
.breadcrumbs a:hover { color: var(--brand); }

/* Section heading */
.section-heading { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-heading h2 { margin-bottom: 14px; }
.section-heading p { color: var(--ink-3); font-size: 1.05rem; }

/* Service cards grid */
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
}
.service-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px;
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	overflow: hidden;
}
.service-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: var(--brand);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
	width: 56px; height: 56px;
	background: var(--brand-soft);
	color: var(--brand);
	border-radius: 12px;
	display: grid; place-items: center;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { margin: 0; }
.service-card ul { margin: 0; padding-left: 1.1em; color: var(--ink-2); font-size: 0.92rem; }
.service-card ul li { margin-bottom: 4px; }
.service-card__link {
	margin-top: auto;
	color: var(--brand);
	font-weight: 600;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.service-card__link:hover { gap: 10px; }

/* Full service sections (services.html) */
.service-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(30px, 5vw, 70px);
	align-items: center;
	padding: clamp(40px, 6vw, 70px) 0;
}
.service-row + .service-row { border-top: 1px solid var(--line); }
.service-row:nth-of-type(even) .service-row__media { order: 2; }
.service-row__media {
	aspect-ratio: 4/3;
	background: var(--paper-3);
	border-radius: var(--radius-lg);
	overflow: hidden;
	position: relative;
	display: grid;
	place-items: center;
	/* allow use as <button> */
	border: 0;
	padding: 0;
	margin: 0;
	font: inherit;
	color: inherit;
	cursor: zoom-in;
	width: 100%;
	appearance: none;
	transition: transform 0.25s, box-shadow 0.25s;
}
.service-row__media:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-row__media img { transition: transform 0.35s; }
.service-row__media:hover img { transform: scale(1.04); }
.service-row__media__count {
	position: absolute;
	bottom: 14px; right: 14px;
	background: rgba(0,0,0,0.65);
	color: #fff;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	backdrop-filter: blur(6px);
	z-index: 2;
}
.service-row__media__count svg { width: 14px; height: 14px; }
.service-row__media__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px; height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,0.95);
	color: var(--ink);
	border: 0;
	cursor: pointer;
	display: grid;
	place-items: center;
	box-shadow: var(--shadow-md);
	transition: background 0.15s, color 0.15s, transform 0.15s;
	z-index: 2;
	opacity: 0;
}
.service-row__media:hover .service-row__media__arrow,
.service-row__media:focus-within .service-row__media__arrow { opacity: 1; }
@media (max-width: 720px) {
	.service-row__media__arrow { opacity: 1; width: 40px; height: 40px; }
}
.service-row__media__arrow:hover { background: var(--brand); color: #fff; }
.service-row__media__arrow--prev { left: 14px; }
.service-row__media__arrow--next { right: 14px; }
.service-row__media__arrow svg { width: 20px; height: 20px; }
.service-row__media__dots {
	position: absolute;
	bottom: 14px; left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	z-index: 2;
}
.service-row__media__dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,0.55);
	border: 0;
	padding: 0;
	cursor: pointer;
	transition: background 0.15s, width 0.15s;
}
.service-row__media__dot.is-active { background: var(--brand); width: 22px; border-radius: 4px; }
.service-row__media img { width: 100%; height: 100%; object-fit: cover; }
.service-row__media svg.illustration { width: 100%; height: 100%; display: block; }
.service-row__media--electric { background: linear-gradient(135deg, #fff4e4 0%, #ffe2c0 100%); }
.service-row__media--plumbing { background: linear-gradient(135deg, #e6f3fb 0%, #cfe6f5 100%); }
.service-row__media--solar    { background: linear-gradient(135deg, #fff6d9 0%, #ffd97a 100%); }
.service-row__media--handyman { background: linear-gradient(135deg, #f1ebe1 0%, #d7ccb8 100%); }
.service-row__media__badge {
	position: absolute;
	top: 20px; left: 20px;
	background: #fff;
	color: var(--brand);
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: var(--shadow-sm);
}
.service-row__content h2 { margin-bottom: 12px; }
.service-row__content .eyebrow { margin-bottom: 6px; }
.service-row__list {
	list-style: none;
	padding: 0;
	margin: 20px 0 28px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 24px;
}
.service-row__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--ink);
	font-weight: 500;
	font-size: 0.95rem;
}
.service-row__list svg {
	flex: 0 0 18px;
	color: var(--brand);
	margin-top: 4px;
}

/* Why us (pillars) */
.pillars {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}
.pillar {
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
}
.pillar__num {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: var(--brand);
	margin-bottom: 14px;
}
.pillar h3 { margin-bottom: 10px; }
.pillar p { margin: 0; color: var(--ink-2); font-size: 0.95rem; }

/* CTA banner */
.cta-banner {
	background: var(--ink);
	color: #fff;
	border-radius: var(--radius-lg);
	padding: clamp(36px, 5vw, 56px);
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 30px;
	position: relative;
	overflow: hidden;
}
.cta-banner::after {
	content: '';
	position: absolute;
	right: -60px; top: -60px;
	width: 260px; height: 260px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(230,120,23,0.25), transparent 70%);
}
.cta-banner h2 { color: #fff; margin-bottom: 6px; }
.cta-banner p { color: #cfcac2; margin: 0; }
.cta-banner__phone {
	display: block;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 800;
	color: #fff;
	margin-top: 8px;
	letter-spacing: -0.01em;
}
.cta-banner__phone:hover { color: var(--brand); }

/* Footer */
.site-footer {
	background: #0f0f0f;
	color: #a7a299;
	padding: 70px 0 0;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	gap: 40px;
}
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { margin: 0 0 8px; font-size: 0.9rem; }
.footer-brand strong { color: #fff; }
.site-footer h4 {
	color: #fff;
	font-size: 0.85rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.site-footer ul {
	list-style: none;
	padding: 0; margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.site-footer a:not(.btn) { color: #a7a299; font-size: 0.92rem; }
.site-footer a:not(.btn):hover { color: var(--brand); }
.hours-row {
	display: flex;
	justify-content: space-between;
	font-size: 0.88rem;
	padding: 4px 0;
	border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.hours-row:last-child { border-bottom: 0; }
.hours-row strong { color: #d6d2cb; font-weight: 500; }
.socials {
	display: flex !important;
	flex-direction: row !important;
	gap: 10px !important;
}
.socials a {
	width: 38px; height: 38px;
	display: grid; place-items: center;
	background: rgba(255,255,255,0.06);
	color: #fff !important;
	border-radius: 10px;
	transition: background 0.15s, color 0.15s;
}
.socials a:hover { background: var(--brand); color: #fff !important; }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
	margin-top: 50px;
	padding: 24px 0;
	border-top: 1px solid rgba(255,255,255,0.08);
	font-size: 0.85rem;
	text-align: center;
	color: #6f6a61;
}

/* Contact page */
.contact-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 50px;
}
.contact-form {
	background: #fff;
	padding: 40px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 6px;
	letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font: inherit;
	color: var(--ink);
	background: var(--paper-2);
	transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: 0;
	border-color: var(--brand);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(230,120,23,0.15);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 0.82rem; color: var(--ink-3); margin-top: 10px; }

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.info-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 26px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.info-card__icon {
	flex: 0 0 44px;
	width: 44px; height: 44px;
	background: var(--brand-soft);
	color: var(--brand);
	border-radius: 10px;
	display: grid; place-items: center;
}
.info-card__icon svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 1rem; margin-bottom: 4px; }
.info-card p, .info-card a:not(.btn):not(.social-icons__link) { margin: 0; color: var(--ink-2); font-size: 0.95rem; line-height: 1.5; }
.info-card a:not(.btn):not(.social-icons__link) { color: var(--ink); font-weight: 600; }
.info-card a:not(.btn):not(.social-icons__link):hover { color: var(--brand); }

.map-wrap {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	margin-top: 60px;
	aspect-ratio: 16/6;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Emergency strip */
.emergency-strip {
	background: var(--brand);
	color: #fff;
	padding: 16px var(--container-pad);
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.02em;
	font-size: clamp(0.88rem, 2.4vw, 1rem);
	line-height: 1.45;
}
.emergency-strip a { color: #fff; text-decoration: underline; }
.emergency-strip a:hover { color: #fff; }

/* Gallery */
.gallery-filters {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 40px;
}
.gallery-filters button {
	appearance: none;
	background: transparent;
	border: 1px solid var(--line);
	color: var(--ink);
	padding: 10px 18px;
	border-radius: 999px;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.gallery-filters button:hover { border-color: var(--brand); color: var(--brand); }
.gallery-filters button.active {
	background: var(--brand);
	color: #fff;
	border-color: var(--brand);
}

.gallery-grid {
	columns: 3;
	column-gap: 16px;
}
@media (max-width: 960px) { .gallery-grid { columns: 2; } }
@media (max-width: 560px) { .gallery-grid { columns: 1; } }

.gallery-item {
	break-inside: avoid;
	margin: 0 0 16px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	position: relative;
	display: block;
	background: var(--paper-3);
	cursor: zoom-in;
	border: 0;
	padding: 0;
	width: 100%;
	appearance: none;
	font: inherit;
	text-align: left;
	transition: transform 0.25s, box-shadow 0.25s;
}
.gallery-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.gallery-item img,
.gallery-item video {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item__overlay {
	position: absolute;
	inset: auto 0 0 0;
	padding: 20px 16px 14px;
	background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75));
	color: #fff;
	opacity: 0;
	transition: opacity 0.2s;
	font-size: 0.88rem;
	font-weight: 600;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__badge {
	position: absolute;
	top: 12px; left: 12px;
	background: rgba(255,255,255,0.96);
	color: var(--brand);
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.gallery-item__play {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: #fff;
	background: rgba(0,0,0,0.25);
	pointer-events: none;
}
.gallery-item__play svg {
	width: 60px; height: 60px;
	background: rgba(0,0,0,0.6);
	border-radius: 50%;
	padding: 16px;
}

.lightbox {
	border: 0;
	padding: 0;
	background: rgba(10,10,10,0.95);
	color: #fff;
	max-width: 92vw;
	max-height: 92vh;
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.lightbox::backdrop { background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); }
.lightbox img, .lightbox video {
	display: block;
	max-width: 92vw;
	max-height: 82vh;
	width: auto;
	height: auto;
}
.lightbox__close {
	position: absolute;
	top: 16px; right: 16px;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	color: #fff;
	border: 0;
	cursor: pointer;
	display: grid; place-items: center;
	transition: background 0.15s;
}
.lightbox__close:hover { background: var(--brand); }
.lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px; height: 48px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	color: #fff;
	border: 0;
	cursor: pointer;
	display: grid; place-items: center;
	transition: background 0.15s;
}
.lightbox__nav:hover { background: var(--brand); }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

/* Blog */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 28px;
}
.blog-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	text-decoration: none;
	color: var(--ink);
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
	position: relative;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--ink); border-color: transparent; }
.blog-card__cover {
	aspect-ratio: 16/9;
	background: linear-gradient(135deg, var(--brand-soft), var(--paper-3));
	display: grid;
	place-items: center;
	position: relative;
	overflow: hidden;
}
.blog-card__cover::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(400px 200px at 80% 30%, rgba(230,120,23,0.2), transparent 60%);
}
.blog-card__cover__icon {
	width: 72px; height: 72px;
	background: rgba(255,255,255,0.9);
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--brand);
	box-shadow: var(--shadow-sm);
	position: relative;
	z-index: 1;
}
.blog-card__cover__icon svg { width: 32px; height: 32px; }
.blog-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.blog-card__meta {
	display: flex;
	gap: 12px;
	align-items: center;
	font-size: 0.78rem;
	color: var(--ink-3);
	font-weight: 600;
	letter-spacing: 0.03em;
}
.blog-card__meta .tag-mini {
	background: var(--brand-soft);
	color: var(--brand);
	padding: 4px 10px;
	border-radius: 999px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.7rem;
}
.blog-card h3 { font-size: 1.15rem; line-height: 1.3; margin: 0; }
.blog-card p { margin: 0; color: var(--ink-2); font-size: 0.92rem; line-height: 1.55; }
.blog-card__read {
	margin-top: auto;
	padding-top: 8px;
	color: var(--brand);
	font-weight: 700;
	font-size: 0.88rem;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.blog-card:hover .blog-card__read { gap: 10px; }

/* Article pages */
.article {
	padding: clamp(40px, 6vw, 70px) 0 clamp(50px, 7vw, 80px);
}
.article__container {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 var(--container-pad);
}
.article__meta {
	display: flex;
	gap: 12px;
	align-items: center;
	color: var(--ink-3);
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 14px;
}
.article__meta .tag-mini {
	background: var(--brand-soft);
	color: var(--brand);
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.article h1 {
	font-size: clamp(1.9rem, 4vw, 2.6rem);
	line-height: 1.15;
	margin-bottom: 16px;
}
.article__lead {
	font-size: 1.125rem;
	color: var(--ink-2);
	margin-bottom: 32px;
	line-height: 1.6;
}
.article__cover {
	aspect-ratio: 16/8;
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin: 0 0 40px;
	background: linear-gradient(135deg, var(--brand-soft), var(--paper-3));
	display: grid; place-items: center;
}
.article__cover__icon {
	width: 96px; height: 96px;
	background: rgba(255,255,255,0.9);
	border-radius: 50%;
	display: grid; place-items: center;
	color: var(--brand);
	box-shadow: var(--shadow-sm);
}
.article__cover__icon svg { width: 44px; height: 44px; }
.article__body h2 {
	margin: 36px 0 14px;
	font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}
.article__body h3 {
	margin: 26px 0 10px;
	font-size: 1.15rem;
}
.article__body p {
	font-size: 1.02rem;
	line-height: 1.75;
	color: var(--ink-2);
	margin: 0 0 18px;
}
.article__body ul, .article__body ol {
	margin: 0 0 22px;
	padding-left: 1.4em;
	color: var(--ink-2);
	font-size: 1.02rem;
	line-height: 1.7;
}
.article__body li { margin-bottom: 8px; }
.article__body strong { color: var(--ink); }
.article__body a:not(.btn) { color: var(--brand); font-weight: 600; }
.article__body a:not(.btn):hover { text-decoration: underline; }
.article__callout {
	background: var(--brand-soft);
	border-left: 4px solid var(--brand);
	border-radius: var(--radius);
	padding: 20px 24px;
	margin: 28px 0;
	font-size: 0.98rem;
	color: var(--ink);
}
.article__callout strong { color: var(--brand-dark); display: block; margin-bottom: 4px; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.article__cta {
	margin: 50px 0 10px;
	padding: 30px;
	background: var(--ink);
	color: #fff;
	border-radius: var(--radius-lg);
	text-align: center;
}
.article__cta h3 { color: #fff; margin-bottom: 6px; }
.article__cta p { color: #cfcac2; margin-bottom: 18px; }

/* Language picker + Google Translate cleanup */
.goog-te-banner-frame,
.skiptranslate > iframe,
.goog-te-balloon-frame { display: none !important; }
body { top: 0 !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: transparent !important; box-shadow: none !important; }
#google_translate_element { display: none !important; }

.lang-picker {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	padding: 3px 6px 3px 10px;
	color: #fff;
	font-size: 0.78rem;
	line-height: 1;
}
.lang-picker svg { width: 13px; height: 13px; opacity: 0.85; flex: none; }
.lang-picker select {
	background: transparent;
	color: #fff;
	border: 0;
	font: inherit;
	cursor: pointer;
	padding: 4px 18px 4px 4px;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none' stroke='white' stroke-width='1.6'><path d='M1 1l4 4 4-4'/></svg>");
	background-repeat: no-repeat;
	background-position: right 4px center;
}
.lang-picker select:focus { outline: 1px solid rgba(255,255,255,0.35); outline-offset: 2px; border-radius: 4px; }
.lang-picker select option { color: #000; background: #fff; }

/* Social icons (contact page) */
.social-icons {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.social-icons__link {
	display: inline-grid;
	place-items: center;
	width: 42px; height: 42px;
	flex: 0 0 42px;
	border-radius: 10px;
	background: var(--paper-2);
	color: var(--ink);
	border: 1px solid var(--line);
	transition: transform 0.15s, background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.info-card .social-icons__link svg,
.social-icons .social-icons__link svg {
	width: 20px !important;
	height: 20px !important;
	flex: none;
}
.social-icons__link:hover {
	transform: translateY(-2px);
	color: #fff;
	box-shadow: var(--shadow-md);
	border-color: transparent;
}
.social-icons__link--facebook:hover { background: #1877f2; }
.social-icons__link--instagram:hover {
	background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Form success/error modal */
.form-modal {
	position: fixed; inset: 0; z-index: 100;
	display: flex; align-items: center; justify-content: center;
	padding: 20px;
}
.form-modal[hidden] { display: none; }
.form-modal__backdrop {
	position: absolute; inset: 0;
	background: rgba(10, 10, 10, 0.55);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.22s ease;
}
.form-modal.is-open .form-modal__backdrop { opacity: 1; }
.form-modal__dialog {
	position: relative;
	background: #fff;
	width: 100%; max-width: 460px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 40px 32px 32px;
	text-align: center;
	opacity: 0;
	transform: translateY(16px) scale(0.97);
	transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.form-modal.is-open .form-modal__dialog { opacity: 1; transform: translateY(0) scale(1); }
.form-modal__close {
	position: absolute; top: 14px; right: 14px;
	width: 36px; height: 36px;
	border-radius: 50%;
	background: transparent;
	border: 0;
	color: var(--ink-3);
	cursor: pointer;
	display: grid; place-items: center;
	transition: background 0.15s, color 0.15s;
}
.form-modal__close:hover { background: var(--paper-2); color: var(--ink); }
.form-modal__icon {
	width: 72px; height: 72px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: grid; place-items: center;
	animation: modalPop 0.35s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.form-modal__icon svg { width: 36px; height: 36px; }
.form-modal__icon--success { background: rgba(46, 125, 50, 0.12); color: var(--success); }
.form-modal__icon--error { background: rgba(220, 60, 60, 0.12); color: #c0392b; }
@keyframes modalPop {
	0%   { transform: scale(0.4); opacity: 0; }
	60%  { transform: scale(1.08); opacity: 1; }
	100% { transform: scale(1); }
}
.form-modal__title {
	font-size: 1.4rem;
	color: var(--ink);
	margin: 0 0 12px;
}
.form-modal__text {
	color: var(--ink-2);
	font-size: 0.98rem;
	line-height: 1.55;
	margin: 0 0 24px;
}
.form-modal__text a { color: var(--brand); font-weight: 700; }
.form-modal__actions {
	display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.form-modal__actions .btn { padding: 12px 22px; font-size: 0.92rem; }
@media (max-width: 480px) {
	.form-modal__dialog { padding: 32px 22px 24px; }
	.form-modal__actions { flex-direction: column; }
	.form-modal__actions .btn { width: 100%; justify-content: center; }
}

/* Utility */
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: 14px; }
.mt-md { margin-top: 28px; }
.stack > * + * { margin-top: 1rem; }

/* Responsive */
@media (max-width: 900px) {
	.hero__grid { grid-template-columns: 1fr; gap: 40px; }
	.contact-grid { grid-template-columns: 1fr; gap: 30px; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.service-row { grid-template-columns: 1fr; }
	.service-row:nth-of-type(even) .service-row__media { order: 0; }
	.service-row__list { grid-template-columns: 1fr; }
	.cta-banner { grid-template-columns: 1fr; text-align: left; }
}
@media (max-width: 960px) {
	.nav-toggle { display: grid; }
	.nav {
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: #fff;
		border-bottom: 1px solid var(--line);
		padding: 0;
		flex-direction: column;
		align-items: stretch;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.25s ease;
		box-shadow: var(--shadow-md);
		visibility: hidden;
	}
	.nav[data-open="true"] {
		max-height: 520px;
		padding: 10px 0 20px;
		visibility: visible;
	}
	.nav__list {
		flex-direction: column;
		gap: 0;
		padding: 0 var(--container-pad);
	}
	.nav__list a {
		padding: 14px 0;
		border-bottom: 1px solid var(--line);
	}
	.nav__list li:last-child a { border-bottom: 0; }
	.nav .btn { margin: 14px var(--container-pad) 0; }
	.nav-wrap { position: relative; }
}
@media (max-width: 720px) {
	.hero__services { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 30px; }
	.top-bar { font-size: 0.74rem; }
	.top-bar .container {
		justify-content: center;
		text-align: center;
		gap: 6px 10px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.top-bar .sep { display: none; }
	.service-card { padding: 24px; }
	.section { padding: clamp(40px, 10vw, 70px) 0; }
	.section-heading { margin-bottom: 30px; }
	.service-row {
		gap: 24px;
		padding: 30px 0;
	}
	.service-row__media { aspect-ratio: 16/11; }
	.service-row__list { margin: 16px 0 22px; }
}
@media (max-width: 560px) {
	.hero__actions { flex-direction: column; align-items: stretch; }
	.hero__actions .btn { width: 100%; justify-content: center; }
	.btn--lg { padding: 15px 22px; font-size: 0.95rem; }
	h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
	h2 { font-size: clamp(1.4rem, 5.5vw, 2rem); }
	.hero__meta { gap: 18px; margin-top: 26px; }
	.hero__meta strong { font-size: 1.2rem; }
	.page-hero { padding: 40px 0 30px; }
}
