/* ============================================================
   Bella Lawn Care — Stylesheet
   Direction: "Fresh & Friendly" — bright, approachable, warm, neighborly
   All component colors reference semantic tokens (no raw hex below :root).
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
	/* Brand palette (raw — only used to define semantic tokens) */
	--c-spring-green: #3DBA6F;
	--c-deep-leaf: #1E7A47;
	--c-leaf-700: #166038;
	--c-sunny: #FFD166;
	--c-sunny-soft: #FFE39B;
	--c-sky: #BFE3FF;
	--c-warm-white: #FCFCF7;
	--c-dark-bg: #122A1E;

	/* Semantic tokens — LIGHT (default) */
	--bg: #FCFCF7;
	--bg-tint: #F2F8F0;
	--surface: #FFFFFF;
	--surface-2: #F4F9F2;
	--surface-3: #EAF4E8;
	--text: #15291C;
	--text-strong: #0E2014;
	--muted: #4F6356;
	--muted-2: #6B7E72;
	--primary: #2E9F5B;
	--primary-600: #1E7A47;
	--primary-700: #166038;
	--on-primary: #FFFFFF;
	--accent: #FFD166;
	--accent-strong: #B57F12;
	--accent-soft: #FFF3D4;
	--soft-sky: #BFE3FF;
	--border: #DBE7DC;
	--border-strong: #C4D6C6;
	--ring: #1E7A47;

	/* Footer is intentionally dark-green in BOTH themes — its own constant tokens */
	--footer-bg: #122A1E;
	--footer-text: #D6E8DC;
	--footer-heading: #FFFFFF;
	--footer-muted: #8FB39D;
	--footer-blurb: #AFC9B7;
	--footer-hairline: rgba(255, 255, 255, 0.10);

	--shadow-color: 150 30% 22%;
	--shadow-sm: 0 1px 2px hsl(var(--shadow-color) / 0.08), 0 2px 6px hsl(var(--shadow-color) / 0.06);
	--shadow-md: 0 6px 16px hsl(var(--shadow-color) / 0.10), 0 2px 6px hsl(var(--shadow-color) / 0.06);
	--shadow-lg: 0 18px 40px hsl(var(--shadow-color) / 0.16), 0 6px 14px hsl(var(--shadow-color) / 0.08);
	--hero-glow: rgba(61, 186, 111, 0.10);

	/* Type */
	--font-display: "Baloo 2", "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
	--font-body: "Nunito Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

	/* Spacing scale (4px base) */
	--sp-1: 4px;
	--sp-2: 8px;
	--sp-3: 12px;
	--sp-4: 16px;
	--sp-5: 24px;
	--sp-6: 32px;
	--sp-7: 48px;
	--sp-8: 64px;
	--sp-9: 96px;

	/* Radii */
	--r-sm: 10px;
	--r-md: 16px;
	--r-lg: 22px;
	--r-xl: 30px;
	--r-pill: 999px;

	/* Layout */
	--container: 1160px;
	--header-h: 72px;

	/* Motion */
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--dur: 220ms;
}

html[data-theme="dark"] {
	--bg: #0F2318;
	--bg-tint: #122A1E;
	--surface: #163020;
	--surface-2: #1B3A28;
	--surface-3: #214733;
	--text: #E9F4EB;
	--text-strong: #FBFEFB;
	--muted: #A9C2B2;
	--muted-2: #88A593;
	--primary: #4FCB85;
	--primary-600: #6FD89B;
	--primary-700: #8FE3B2;
	--on-primary: #07301A;
	--accent: #FFD166;
	--accent-strong: #FFDE8A;
	--accent-soft: #2C3A24;
	--soft-sky: #2A4A4E;
	--border: #2A4A36;
	--border-strong: #385C46;
	--ring: #8FE3B2;
	--footer-bg: #0A1B12;
	--shadow-color: 150 60% 4%;
	--shadow-sm: 0 1px 2px hsl(var(--shadow-color) / 0.5), 0 2px 6px hsl(var(--shadow-color) / 0.4);
	--shadow-md: 0 6px 18px hsl(var(--shadow-color) / 0.55), 0 2px 6px hsl(var(--shadow-color) / 0.4);
	--shadow-lg: 0 20px 44px hsl(var(--shadow-color) / 0.6), 0 6px 14px hsl(var(--shadow-color) / 0.45);
	--hero-glow: rgba(79, 203, 133, 0.12);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 16px);
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

h1, h2, h3, .brand-name, .stat-num, .price {
	font-family: var(--font-display);
	color: var(--text-strong);
	line-height: 1.12;
	letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 1.3rem + 3.6vw, 3.7rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.9vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.18rem; font-weight: 700; }

p { color: var(--text); }

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

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

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

button { font-family: inherit; font-size: inherit; cursor: pointer; }

:focus-visible {
	outline: 3px solid var(--ring);
	outline-offset: 3px;
	border-radius: 6px;
}

.sr-only {
	position: absolute; width: 1px; height: 1px;
	padding: 0; margin: -1px; overflow: hidden;
	clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
	position: absolute; left: 16px; top: -60px;
	z-index: 200;
	background: var(--primary-600); color: var(--on-primary);
	padding: 10px 16px; border-radius: var(--r-sm);
	font-weight: 700; transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 12px; text-decoration: none; }

/* ---------- Layout ---------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--sp-5);
}

.section { padding-block: clamp(var(--sp-7), 4vw + 2rem, var(--sp-9)); }

.section-head {
	max-width: 64ch;
	margin-bottom: var(--sp-6);
}
.section-eyebrow {
	display: inline-block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: var(--primary-600);
	background: var(--surface-3);
	padding: 5px 12px;
	border-radius: var(--r-pill);
	margin-bottom: var(--sp-3);
}
.section-sub {
	color: var(--muted);
	font-size: 1.06rem;
	margin-top: var(--sp-3);
	max-width: 58ch;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-2);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
	min-height: 46px;
	padding: 12px 20px;
	border: 2px solid transparent;
	border-radius: var(--r-pill);
	cursor: pointer;
	text-decoration: none;
	transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease),
		border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), color var(--dur) var(--ease);
	will-change: transform;
}
.btn:hover { text-decoration: none; }
.btn .icon { flex: none; }

.btn-primary {
	background: var(--primary-600);
	color: var(--on-primary);
	box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--primary-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
	background: var(--surface);
	color: var(--text-strong);
	border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--primary); transform: translateY(-2px); }

.btn-lg { min-height: 54px; padding: 15px 26px; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: color-mix(in srgb, var(--bg) 95%, transparent);
	backdrop-filter: saturate(1.4) blur(10px);
	-webkit-backdrop-filter: saturate(1.4) blur(10px);
	border-bottom: 1px solid var(--border);
}
.header-inner {
	display: flex;
	align-items: center;
	gap: var(--sp-4);
	min-height: var(--header-h);
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-3);
	color: var(--text-strong);
	flex: none;
}
.brand:hover { text-decoration: none; }
.brand-mark { display: inline-flex; filter: drop-shadow(0 2px 4px hsl(var(--shadow-color) / 0.18)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 1.28rem; font-weight: 800; }
.brand-tag { font-size: 0.72rem; color: var(--muted); font-weight: 600; letter-spacing: 0.02em; }

.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; gap: 2px; }
.primary-nav a {
	display: inline-block;
	padding: 9px 13px;
	border-radius: var(--r-sm);
	color: var(--text);
	font-weight: 700;
	font-size: 0.95rem;
	transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.primary-nav a:hover { background: var(--surface-3); color: var(--primary-700); text-decoration: none; }

.header-actions { display: flex; align-items: center; gap: var(--sp-3); margin-left: auto; }
.primary-nav + .header-actions { margin-left: var(--sp-2); }

.theme-toggle {
	display: inline-grid;
	place-items: center;
	width: 44px; height: 44px;
	border-radius: var(--r-pill);
	border: 2px solid var(--border-strong);
	background: var(--surface);
	color: var(--text-strong);
	transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.theme-toggle:hover { background: var(--surface-2); border-color: var(--primary); transform: translateY(-1px); }
.theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.header-cta { min-height: 44px; padding: 10px 18px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(var(--sp-7), 5vw, var(--sp-9)); }
.hero-bg {
	position: absolute; inset: 0;
	background:
		radial-gradient(60% 55% at 82% 12%, var(--hero-glow), transparent 70%),
		radial-gradient(50% 45% at 8% 90%, var(--hero-glow), transparent 70%),
		linear-gradient(180deg, var(--bg-tint), var(--bg) 60%);
	z-index: -1;
}
.hero-inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: clamp(var(--sp-6), 4vw, var(--sp-8));
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--primary-700);
	background: var(--surface-3);
	border: 1px solid var(--border-strong);
	padding: 7px 14px 7px 12px;
	border-radius: var(--r-pill);
	margin-bottom: var(--sp-4);
}
.eyebrow .icon { color: var(--primary-600); }
.hero h1 { margin-bottom: var(--sp-4); }
.hero h1 .hl {
	color: var(--primary-700);
	background: linear-gradient(180deg, transparent 62%, var(--accent-soft) 62%);
	padding-inline: 2px;
}
.lede {
	font-size: clamp(1.06rem, 1rem + 0.4vw, 1.2rem);
	color: var(--muted);
	max-width: 56ch;
	margin-bottom: var(--sp-5);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-6); }

.trust-chips { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-3); }
.trust-chips li {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--text);
	background: var(--surface);
	border: 1px solid var(--border);
	padding: 8px 14px;
	border-radius: var(--r-pill);
	box-shadow: var(--shadow-sm);
}
.trust-chips .icon { color: var(--primary-600); flex: none; }

/* Hero art */
.hero-art { position: relative; }
.hero-card {
	border-radius: var(--r-xl);
	overflow: hidden;
	border: 3px solid var(--surface);
	box-shadow: var(--shadow-lg);
	background: var(--soft-sky);
	transform: rotate(-1.2deg);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 11; }
.hero-badge {
	position: absolute;
	left: -14px; bottom: -18px;
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 12px 16px;
	box-shadow: var(--shadow-md);
}
.hero-badge .icon {
	color: var(--on-primary);
	background: var(--primary-600);
	border-radius: var(--r-pill);
	padding: 8px;
	width: 38px; height: 38px;
	flex: none;
}
.hero-badge div { display: flex; flex-direction: column; line-height: 1.2; }
.hero-badge strong { font-family: var(--font-display); color: var(--text-strong); font-size: 1rem; }
.hero-badge span { color: var(--muted); font-size: 0.85rem; font-weight: 600; }

/* ---------- About ---------- */
.about-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.9fr;
	gap: clamp(var(--sp-6), 4vw, var(--sp-8));
	align-items: start;
}
.about-copy p { color: var(--muted); margin-top: var(--sp-4); max-width: 62ch; }
.about-copy h2 { margin-top: var(--sp-1); }

.value-list { margin-top: var(--sp-6); display: grid; gap: var(--sp-4); }
.value-list li { display: flex; gap: var(--sp-4); align-items: flex-start; }
.value-ico {
	flex: none;
	display: inline-grid; place-items: center;
	width: 48px; height: 48px;
	border-radius: var(--r-md);
	background: var(--surface-3);
	color: var(--primary-700);
	border: 1px solid var(--border);
}
.value-list strong { font-family: var(--font-display); display: block; color: var(--text-strong); font-size: 1.05rem; }
.value-list p { margin-top: 2px; font-size: 0.97rem; }

.about-side { position: sticky; top: calc(var(--header-h) + 16px); }
.stat-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: var(--sp-5);
	box-shadow: var(--shadow-md);
	display: grid;
	gap: var(--sp-4);
}
.stat { display: flex; align-items: baseline; gap: var(--sp-3); }
.stat-num {
	font-size: 2.2rem; font-weight: 800;
	color: var(--primary-600);
	min-width: 44px;
	font-variant-numeric: tabular-nums;
}
.stat-label { color: var(--muted); font-weight: 600; font-size: 0.98rem; }
.stat-card .btn { margin-top: var(--sp-2); }
.stat-note { text-align: center; color: var(--muted); font-size: 0.92rem; }
.stat-note a { font-weight: 800; color: var(--primary-700); }

/* ---------- Services ---------- */
.services { background: var(--bg-tint); }
.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
	gap: var(--sp-4);
}
.service-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: var(--sp-5);
	box-shadow: var(--shadow-sm);
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.service-ico {
	display: inline-grid; place-items: center;
	width: 54px; height: 54px;
	border-radius: var(--r-md);
	background: linear-gradient(150deg, var(--surface-3), var(--accent-soft));
	color: var(--primary-700);
	border: 1px solid var(--border);
	margin-bottom: var(--sp-4);
}
.service-card h3 { margin-bottom: var(--sp-2); }
.service-card p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Pricing ---------- */
.pricing-wrap {
	display: grid;
	grid-template-columns: 1.3fr 0.85fr;
	gap: var(--sp-6);
	align-items: start;
}
.table-scroll { overflow-x: auto; border-radius: var(--r-lg); }
.price-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.price-table th, .price-table td {
	text-align: left;
	padding: 16px 20px;
	border-bottom: 1px solid var(--border);
}
.price-table thead th {
	font-family: var(--font-display);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--muted);
	background: var(--surface-2);
}
.price-table thead th:last-child { text-align: right; }
.price-table tbody th {
	font-family: var(--font-body);
	font-weight: 700;
	color: var(--text-strong);
	font-size: 1.02rem;
}
.price-table tbody td { text-align: right; white-space: nowrap; }
.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr { transition: background-color var(--dur) var(--ease); }
.price-table tbody tr:hover { background: var(--surface-2); }
.price {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--primary-700);
	font-variant-numeric: tabular-nums;
}
.unit { color: var(--muted); font-weight: 700; font-size: 0.9rem; margin-left: 2px; }

.pricing-aside { display: grid; gap: var(--sp-4); position: sticky; top: calc(var(--header-h) + 16px); }
.disclaimer {
	display: flex;
	gap: var(--sp-3);
	background: var(--accent-soft);
	border: 1px solid var(--accent);
	border-radius: var(--r-md);
	padding: var(--sp-4);
}
.disclaimer .icon { color: var(--accent-strong); flex: none; margin-top: 1px; }
.disclaimer p { font-size: 0.95rem; color: var(--text); }
.disclaimer strong { color: var(--text-strong); }
.aside-note { color: var(--muted); font-size: 0.92rem; }
.aside-note a { font-weight: 800; }

/* ---------- Gallery ---------- */
.gallery { background: var(--bg-tint); }
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: var(--sp-4);
}
.gallery-item {
	position: relative;
	grid-column: span 2;
	border-radius: var(--r-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
	background: var(--surface);
}
.gallery-item.gallery-wide { grid-column: span 3; }
.gallery-item img {
	width: 100%; height: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
	transition: transform var(--dur) var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
	position: absolute;
	left: var(--sp-3); top: var(--sp-3);
	background: color-mix(in srgb, var(--surface) 86%, transparent);
	color: var(--text-strong);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.85rem;
	padding: 5px 12px;
	border-radius: var(--r-pill);
	border: 1px solid var(--border);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

/* ---------- Testimonials ---------- */
.review-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--sp-5);
}
.review-card {
	position: relative;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: var(--sp-6) var(--sp-5) var(--sp-5);
	box-shadow: var(--shadow-md);
	overflow: hidden;
}
.review-card::before {
	content: "";
	position: absolute; left: 0; top: 0; bottom: 0;
	width: 5px;
	background: linear-gradient(180deg, var(--primary), var(--accent));
}
.quote-mark {
	font-family: var(--font-display);
	font-size: 3.4rem;
	line-height: 0.6;
	color: var(--primary);
	opacity: 0.35;
	display: block;
	margin-bottom: var(--sp-2);
}
.review-card blockquote p {
	font-size: 1.12rem;
	line-height: 1.55;
	color: var(--text-strong);
	font-weight: 600;
}
.review-card figcaption {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	margin-top: var(--sp-5);
	padding-top: var(--sp-4);
	border-top: 1px solid var(--border);
}
.review-avatar {
	display: inline-grid; place-items: center;
	width: 44px; height: 44px;
	border-radius: var(--r-pill);
	background: var(--surface-3);
	color: var(--primary-700);
	border: 1px solid var(--border);
	flex: none;
}
.review-who { display: flex; flex-direction: column; line-height: 1.25; }
.review-who strong { font-family: var(--font-display); color: var(--text-strong); }
.review-who span { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

/* ---------- Service area ---------- */
.area { background: var(--bg-tint); }
.area-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: clamp(var(--sp-6), 4vw, var(--sp-8));
	align-items: center;
}
.area-copy p { color: var(--muted); margin-top: var(--sp-3); max-width: 58ch; }
.area-chips { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-5); }
.area-chips li {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.98rem;
	color: var(--text-strong);
	background: var(--surface);
	border: 1px solid var(--border-strong);
	padding: 10px 16px;
	border-radius: var(--r-pill);
	box-shadow: var(--shadow-sm);
	transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.area-chips li:hover { transform: translateY(-2px); border-color: var(--primary); }
.area-chips .icon { color: var(--primary-600); flex: none; }

.area-motif {
	position: relative;
	border-radius: var(--r-xl);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
}
.area-motif svg { width: 100%; height: auto; display: block; }
.motif-note {
	position: absolute;
	right: var(--sp-3); bottom: var(--sp-3);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.82rem;
	color: var(--text-strong);
	background: color-mix(in srgb, var(--surface) 88%, transparent);
	padding: 5px 12px;
	border-radius: var(--r-pill);
	border: 1px solid var(--border);
}

/* ---------- Contact ---------- */
.contact-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: clamp(var(--sp-6), 4vw, var(--sp-8));
	align-items: start;
}
.contact-copy p { color: var(--muted); margin-top: var(--sp-3); max-width: 50ch; }
.contact-phone {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-3);
	margin-top: var(--sp-5);
	padding: var(--sp-3) var(--sp-4);
	background: var(--surface);
	border: 1px solid var(--border-strong);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-sm);
	transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.contact-phone:hover { text-decoration: none; transform: translateY(-2px); border-color: var(--primary); box-shadow: var(--shadow-md); }
.contact-phone-ico {
	display: inline-grid; place-items: center;
	width: 50px; height: 50px;
	border-radius: var(--r-md);
	background: var(--primary-600);
	color: var(--on-primary);
	flex: none;
}
.contact-phone-text { display: flex; flex-direction: column; line-height: 1.2; }
.contact-phone-num { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--text-strong); }
.contact-phone-sub { color: var(--muted); font-size: 0.9rem; font-weight: 600; }

.contact-points { margin-top: var(--sp-5); display: grid; gap: var(--sp-3); }
.contact-points li { display: flex; align-items: center; gap: var(--sp-3); color: var(--text); font-weight: 600; }
.contact-points .icon { color: var(--primary-600); flex: none; }

/* Form */
.contact-form-wrap {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: clamp(var(--sp-5), 3vw, var(--sp-6));
	box-shadow: var(--shadow-md);
}
.form-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--text-strong);
	margin-bottom: var(--sp-4);
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp-4); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.field label { font-weight: 700; font-size: 0.9rem; color: var(--text-strong); }
.field input, .field textarea {
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--text);
	background: var(--bg);
	border: 1.5px solid var(--border-strong);
	border-radius: var(--r-sm);
	padding: 12px 14px;
	width: 100%;
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 28%, transparent);
}
.field textarea { resize: vertical; min-height: 110px; }

.form-status {
	margin-top: var(--sp-3);
	padding: 12px 14px;
	border-radius: var(--r-sm);
	font-weight: 700;
	background: var(--surface-3);
	border: 1px solid var(--primary);
	color: var(--primary-700);
	display: flex;
	align-items: center;
	gap: var(--sp-2);
}
html[data-theme="dark"] .form-status { color: var(--text-strong); }
.form-fineprint { margin-top: var(--sp-3); font-size: 0.9rem; color: var(--muted); text-align: center; }
.form-fineprint a { font-weight: 800; }

/* ---------- Footer ---------- */
.site-footer {
	background: var(--footer-bg);
	color: var(--footer-text);
	margin-top: var(--sp-8);
}
html[data-theme="dark"] .site-footer { border-top: 1px solid var(--border); }
.footer-inner {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: var(--sp-6);
	padding-block: var(--sp-8) var(--sp-6);
}
.footer-brand { display: flex; gap: var(--sp-3); align-items: flex-start; }
.footer-name { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--footer-heading); display: block; }
.footer-blurb { color: var(--footer-blurb); font-size: 0.95rem; margin-top: 6px; max-width: 38ch; }
.footer-h {
	font-family: var(--font-display);
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.10em;
	color: var(--footer-muted);
	margin-bottom: var(--sp-3);
	font-weight: 700;
}
.footer-nav ul { display: grid; gap: var(--sp-2); }
.footer-nav a { color: var(--footer-text); font-weight: 600; }
.footer-nav a:hover { color: var(--footer-heading); }
.footer-contact p { color: var(--footer-text); margin-bottom: 4px; }
.footer-phone { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--footer-heading); }
.footer-phone:hover { color: var(--accent); }
.footer-muted { color: var(--footer-muted); font-size: 0.9rem; }

.footer-bar { border-top: 1px solid var(--footer-hairline); }
.footer-bar-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: var(--sp-2);
	padding-block: var(--sp-4);
}
.footer-bar p { color: var(--footer-muted); font-size: 0.85rem; }
.footer-disclaimer { font-style: italic; }

/* ============================================================
   Page-load reveal (gated by prefers-reduced-motion)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
	.reveal {
		opacity: 0;
		transform: translateY(16px);
		animation: reveal-in 600ms var(--ease) forwards;
	}
	.hero-copy.reveal { animation-delay: 80ms; }
	.hero-art.reveal { animation-delay: 220ms; }
}
@keyframes reveal-in {
	to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
	.hero-inner { grid-template-columns: 1fr; }
	.hero-art { order: -1; max-width: 560px; }
	.about-grid { grid-template-columns: 1fr; }
	.about-side { position: static; }
	.pricing-wrap { grid-template-columns: 1fr; }
	.pricing-aside { position: static; }
	.area-grid { grid-template-columns: 1fr; }
	.contact-grid { grid-template-columns: 1fr; }
	.footer-inner { grid-template-columns: 1fr 1fr; }
	.footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
	.primary-nav { display: none; }
	.header-actions { margin-left: auto; }
}

@media (max-width: 768px) {
	body { font-size: 16px; }
	.gallery-grid { grid-template-columns: 1fr 1fr; }
	.gallery-item, .gallery-item.gallery-wide { grid-column: span 1; }
	.hero-badge { left: 50%; transform: translateX(-50%); bottom: -22px; }
	.brand-tag { display: none; }
}

@media (max-width: 560px) {
	.container { padding-inline: var(--sp-4); }
	.field-row { grid-template-columns: 1fr; }
	.gallery-grid { grid-template-columns: 1fr; }
	.footer-inner { grid-template-columns: 1fr; gap: var(--sp-5); }
	.footer-bar-inner { flex-direction: column; }
	.hero-cta .btn { width: 100%; }
	.header-cta span { display: none; }
	.header-cta { width: 44px; padding: 0; }
}

@media (max-width: 380px) {
	.trust-chips li { font-size: 0.85rem; }
	.contact-phone-num { font-size: 1.2rem; }
}

/* High-contrast: strengthen borders */
@media (prefers-contrast: more) {
	:root { --border: #9DB6A1; --border-strong: #6F8C77; }
	html[data-theme="dark"] { --border: #4F7560; --border-strong: #6F9580; }
	.btn-primary { border-color: var(--primary-700); }
}
