/* ==========================================================================
   USA Tree Trimming — design system
   1. Tokens   2. Base   3. Layout   4. Buttons   5. Header   6. Hero
   7. Sections 8. Footer 9. Motion   10. Responsive
   ========================================================================== */

/* 1. Tokens ------------------------------------------------------------- */
:root {
	--forest-950: #06170F;
	--forest-900: #0A2A1D;
	--forest-800: #103A29;
	--forest-700: #17604A;
	--forest-600: #1E7A5C;
	--forest-500: #2A9673;
	--forest-100: #D8EDE4;
	--forest-50: #EDF7F2;

	--amber-600: #C96A05;
	--amber-500: #E8890B;
	--amber-400: #F5A524;
	--amber-50: #FFF6E8;

	--ink: #0C1F17;
	--ink-soft: #3D5449;
	--body: #566D62;
	--muted: #7C9188;
	--line: #E2EDE7;
	--line-soft: #EEF5F1;
	--surface: #FFFFFF;
	--surface-2: #F6FBF8;

	--radius: 16px;
	--radius-lg: 22px;
	--radius-xl: 28px;
	--radius-pill: 999px;

	--shadow-xs: 0 1px 2px rgba(10, 42, 29, .05);
	--shadow-sm: 0 1px 2px rgba(10, 42, 29, .04), 0 10px 22px -14px rgba(10, 42, 29, .18);
	--shadow-md: 0 2px 4px rgba(10, 42, 29, .04), 0 18px 36px -18px rgba(10, 42, 29, .22);
	--shadow-lg: 0 30px 60px -28px rgba(10, 42, 29, .32);

	--section-y: clamp(56px, 7vw, 104px);
	--gutter: clamp(18px, 4vw, 32px);
	--font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* 2. Base --------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 1.0125rem;
	line-height: 1.72;
	color: var(--body);
	background: var(--surface);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .6em;
	color: var(--ink);
	font-weight: 800;
	line-height: 1.16;
	letter-spacing: -.022em;
	text-wrap: balance;
}

h1 { font-size: 3rem; }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + .4vw, 1.35rem); }
h4 { font-size: 1.0625rem; font-weight: 700; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a {
	color: var(--forest-700);
	text-decoration: none;
	transition: color .18s ease;
}
a:hover { color: var(--amber-600); }

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

img { height: auto; }

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

strong { color: var(--ink); font-weight: 700; }

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

.icon {
	width: 22px;
	height: 22px;
	flex: none;
}
.icon-sm { width: 16px; height: 16px; }

.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;
}

/* 3. Layout ------------------------------------------------------------- */
.wrap {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section-tint { background: var(--surface-2); }
.section-line { border-top: 1px solid var(--line-soft); }

.grid {
	display: grid;
	gap: clamp(16px, 2vw, 26px);
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 5vw, 68px);
	align-items: center;
}
.split-media { order: -1; }
.split-wide { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); align-items: start; }

/* side panel */
.panel {
	padding: clamp(24px, 2.6vw, 32px);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
	box-shadow: var(--shadow-md);
}
.panel h3 { margin-bottom: 1em; }
.panel-list {
	display: grid;
	gap: 13px;
	margin-bottom: 26px;
}
.panel-list li {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	font-size: .95rem;
	font-weight: 600;
	color: var(--ink-soft);
}
.panel-list svg {
	flex: none;
	margin-top: 4px;
	color: var(--forest-600);
}
.panel-note {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 16px 0 0;
	font-size: .85rem;
	font-weight: 600;
	color: var(--muted);
}

.section-head {
	max-width: 720px;
	margin-bottom: clamp(28px, 4vw, 48px);
}
.section-head-center {
	margin-inline: auto;
	text-align: center;
}
.section-head h2 { margin-bottom: .45em; }
.section-head .lead { margin: 0; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--forest-600);
}
.eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	border-radius: 2px;
	background: var(--amber-400);
}
.section-head-center .eyebrow { justify-content: center; }

.lead {
	font-size: 1.075rem;
	line-height: 1.75;
	color: var(--body);
}

/* 4. Buttons and chips -------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 26px;
	border: 1px solid transparent;
	border-radius: var(--radius-pill);
	font: inherit;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	text-decoration: none;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
	background: linear-gradient(180deg, var(--amber-400), var(--amber-500));
	color: #fff;
	box-shadow: 0 10px 24px -10px rgba(201, 106, 5, .65);
}
.btn-primary:hover {
	background: linear-gradient(180deg, var(--amber-500), var(--amber-600));
	color: #fff;
	box-shadow: 0 16px 30px -12px rgba(201, 106, 5, .7);
}

.btn-dark {
	background: var(--forest-800);
	color: #fff;
	box-shadow: 0 10px 24px -14px rgba(10, 42, 29, .7);
}
.btn-dark:hover { background: var(--forest-700); color: #fff; }

.btn-outline {
	background: rgba(255, 255, 255, .7);
	border-color: var(--line);
	color: var(--forest-800);
	backdrop-filter: blur(6px);
}
.btn-outline:hover {
	border-color: var(--forest-500);
	color: var(--forest-700);
	background: #fff;
}

.btn-lg { padding: 17px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.stars {
	display: inline-flex;
	gap: 2px;
	color: var(--amber-400);
}

/* 5. Header ------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255, 255, 255, .88);
	backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--line-soft);
	transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-stuck {
	box-shadow: 0 10px 30px -22px rgba(10, 42, 29, .45);
	background: rgba(255, 255, 255, .95);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 74px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	margin-right: auto;
	color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 13px;
	background: linear-gradient(150deg, var(--forest-600), var(--forest-800));
	color: #fff;
	box-shadow: 0 8px 18px -10px rgba(16, 58, 41, .8);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { display: grid; line-height: 1.15; }
.brand-name {
	font-size: 1.06rem;
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--ink);
}
.brand-sub {
	font-size: .715rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
	padding: 9px 14px;
	border-radius: var(--radius-pill);
	font-size: .95rem;
	font-weight: 600;
	color: var(--ink-soft);
}
.nav a:hover {
	background: var(--forest-50);
	color: var(--forest-700);
}
.nav a[aria-current="page"] {
	background: var(--forest-50);
	color: var(--forest-700);
}

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-weight: 700;
	color: var(--ink);
}
.header-phone svg { color: var(--forest-600); }
.header-phone small {
	display: block;
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--muted);
}

.nav-toggle {
	display: none;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	color: var(--ink);
	cursor: pointer;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }

/* 6. Hero --------------------------------------------------------------- */
.hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-block: clamp(48px, 6vw, 86px) clamp(56px, 7vw, 96px);
	background:
		radial-gradient(1100px 520px at 8% -8%, #FFFFFF 0%, rgba(255, 255, 255, 0) 60%),
		radial-gradient(760px 420px at 92% 4%, var(--amber-50) 0%, rgba(255, 246, 232, 0) 62%),
		linear-gradient(168deg, var(--forest-50) 0%, #F7FCF9 46%, #FFFDF8 100%);
}
.hero::before,
.hero::after {
	content: "";
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	filter: blur(6px);
	opacity: .5;
}
.hero::before {
	inset: -180px auto auto -140px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle at 35% 35%, rgba(42, 150, 115, .22), rgba(42, 150, 115, 0) 68%);
}
.hero::after {
	inset: auto -120px -220px auto;
	width: 480px;
	height: 480px;
	background: radial-gradient(circle at 60% 40%, rgba(245, 165, 36, .2), rgba(245, 165, 36, 0) 66%);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 7px 15px 7px 9px;
	margin-bottom: 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, .8);
	box-shadow: var(--shadow-xs);
	font-size: .85rem;
	font-weight: 600;
	color: var(--ink-soft);
}
.hero-badge b { color: var(--ink); font-weight: 800; }

.hero h1 { margin-bottom: .35em; }
.hero h1 .accent {
	background: linear-gradient(100deg, var(--forest-600), var(--amber-500));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero-lead {
	max-width: 56ch;
	margin-bottom: 26px;
	font-size: clamp(1.02rem, .98rem + .25vw, 1.15rem);
	color: var(--ink-soft);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 26px;
}

.hero-proof {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 20px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
	font-size: .92rem;
	font-weight: 600;
	color: var(--ink-soft);
}
.hero-proof-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof-item svg { color: var(--forest-600); }

/* hero media */
.hero-media { position: relative; }
.hero-photo-frame {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	background: var(--forest-100);
}
.hero-photo-frame::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
	background: linear-gradient(180deg, rgba(6, 23, 15, 0) 55%, rgba(6, 23, 15, .35) 100%);
}
.hero-photo {
	width: 100%;
	aspect-ratio: 13 / 10;
	object-fit: cover;
	object-position: center;
}

.hero-float {
	position: absolute;
	left: -14px;
	bottom: -24px;
	display: grid;
	gap: 4px;
	padding: 16px 20px;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--line-soft);
}
.hero-float-value {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -.02em;
}
.hero-float-label {
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--muted);
}

.hero-tag {
	position: absolute;
	right: -10px;
	top: 22px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 11px 16px;
	border-radius: var(--radius-pill);
	background: var(--forest-800);
	color: #fff;
	font-size: .875rem;
	font-weight: 700;
	box-shadow: var(--shadow-md);
}
.hero-tag svg { color: var(--amber-400); }

/* compact hero for inner pages */
.hero-compact { padding-block: clamp(36px, 4.5vw, 62px) clamp(40px, 5vw, 70px); }

.crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-bottom: 18px;
	font-size: .85rem;
	font-weight: 600;
	color: var(--muted);
}
.crumbs a { color: var(--forest-700); }
.crumbs svg { width: 14px; height: 14px; color: var(--line); }
.crumbs [aria-current] { color: var(--ink-soft); }

/* 7. Sections ----------------------------------------------------------- */

/* stat band */
.stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 22px);
}
.stat {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: clamp(20px, 2.4vw, 28px);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	background: #fff;
	box-shadow: var(--shadow-sm);
}
.stat-icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	flex: none;
	border-radius: 15px;
	background: var(--forest-50);
	color: var(--forest-600);
}
.stat-value {
	display: flex;
	align-items: baseline;
	gap: 2px;
	font-size: clamp(1.5rem, 1.2rem + .9vw, 2rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -.03em;
	color: var(--ink);
}
.stat-label {
	font-size: .9rem;
	font-weight: 600;
	color: var(--muted);
}

/* service cards */
.card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: clamp(22px, 2.4vw, 30px);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
	box-shadow: var(--shadow-xs);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover {
	transform: translateY(-5px);
	border-color: var(--forest-100);
	box-shadow: var(--shadow-md);
}
.card-icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 18px;
	border-radius: 15px;
	background: var(--forest-50);
	color: var(--forest-700);
	transition: background .22s ease, color .22s ease, transform .22s ease;
}
.card:hover .card-icon {
	background: var(--forest-700);
	color: #fff;
	transform: rotate(-4deg);
}
.card h3 { margin-bottom: .5em; }
.card h3 a { color: inherit; }
.card:hover h3 a { color: var(--forest-700); }
.card p {
	margin-bottom: 20px;
	font-size: .97rem;
}
.card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	font-weight: 700;
	font-size: .95rem;
	color: var(--amber-600);
}
.card-link svg { transition: transform .22s ease; }
.card:hover .card-link svg { transform: translateX(4px); }
.card.is-current {
	border-color: var(--forest-500);
	box-shadow: 0 0 0 4px var(--forest-50), var(--shadow-sm);
}
.card.is-current .card-icon { background: var(--forest-700); color: #fff; }

/* the card title link covers the whole card */
.card h3 a::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
}

/* promise / value cards */
.promise {
	display: flex;
	gap: 16px;
	padding: clamp(20px, 2.2vw, 26px);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius);
	background: var(--surface-2);
}
.promise-icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	flex: none;
	border-radius: 13px;
	background: #fff;
	color: var(--forest-600);
	box-shadow: var(--shadow-xs);
}
.promise h3 {
	margin-bottom: .35em;
	font-size: 1.06rem;
	font-weight: 700;
}
.promise p {
	margin: 0;
	font-size: .95rem;
}

/* media in split sections */
.media-frame {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
.media-frame img {
	width: 100%;
	aspect-ratio: 13 / 10;
	object-fit: cover;
	object-position: center;
}
.media-note {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(8px);
	box-shadow: var(--shadow-sm);
	font-size: .92rem;
	font-weight: 600;
	color: var(--ink-soft);
}
.media-note svg { color: var(--forest-600); }

/* rich prose blocks (dynamic city copy) */
.prose > * + * { margin-top: 1.05em; }
.prose h4 {
	margin: 1.6em 0 .4em;
	padding-left: 14px;
	border-left: 3px solid var(--amber-400);
	font-size: 1.05rem;
	color: var(--ink);
}
.prose p { margin: 0; }

/* check list */
.check-list { display: grid; gap: 12px; }
.check-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-weight: 600;
	color: var(--ink-soft);
}
.check-list svg {
	flex: none;
	margin-top: 3px;
	padding: 3px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--forest-50);
	color: var(--forest-700);
}

/* steps */
.steps { counter-reset: step; }
.step {
	position: relative;
	padding: clamp(24px, 2.6vw, 32px);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
	box-shadow: var(--shadow-xs);
}
.step::before {
	counter-increment: step;
	content: "0" counter(step);
	display: block;
	margin-bottom: 14px;
	font-size: 1.4rem;
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--forest-100);
}
.step h3 { margin-bottom: .4em; }
.step p { margin: 0; font-size: .97rem; }

/* location links */
.loc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 10px;
}
.loc-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 13px 16px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	font-size: .95rem;
	font-weight: 600;
	color: var(--ink-soft);
	transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}
.loc-link::after {
	content: "";
	flex: none;
	width: 7px;
	height: 7px;
	border-top: 2px solid var(--muted);
	border-right: 2px solid var(--muted);
	border-radius: 1px;
	transform: rotate(45deg);
	transition: transform .18s ease, border-color .18s ease;
}
.loc-link:hover {
	transform: translateY(-2px);
	border-color: var(--forest-500);
	background: var(--forest-50);
	color: var(--forest-800);
}
.loc-link:hover::after {
	border-color: var(--forest-600);
	transform: rotate(45deg) translate(2px, -2px);
}

.pill-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.pill-links a {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius-pill);
	background: #fff;
	font-size: .9rem;
	font-weight: 600;
	color: var(--ink-soft);
}
.pill-links a:hover {
	background: var(--forest-800);
	border-color: var(--forest-800);
	color: #fff;
}

.map-card {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	background: var(--forest-50);
}
.map-card iframe {
	width: 100%;
	height: clamp(280px, 40vw, 420px);
	border: 0;
	display: block;
}

/* contact cards */
.contact-card {
	display: grid;
	gap: 6px;
	padding: clamp(22px, 2.4vw, 28px);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
	box-shadow: var(--shadow-xs);
	transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .card-icon { margin-bottom: 12px; }
.contact-card-label {
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
}
.contact-card-value {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--ink);
	overflow-wrap: anywhere;
}
.contact-card-value a { color: inherit; }
.contact-card-value a:hover { color: var(--forest-700); }

/* CTA band */
.cta {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-block: clamp(44px, 6vw, 76px);
	background: linear-gradient(140deg, var(--forest-900) 0%, var(--forest-800) 52%, var(--forest-700) 100%);
	color: rgba(255, 255, 255, .82);
}
.cta::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: auto -80px -160px auto;
	width: 460px;
	height: 460px;
	border-radius: 50%;
	background: radial-gradient(circle at 50% 50%, rgba(245, 165, 36, .28), rgba(245, 165, 36, 0) 65%);
}
.cta-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: clamp(24px, 4vw, 48px);
}
.cta h2 { color: #fff; margin-bottom: .4em; }
.cta p { margin: 0; max-width: 56ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* 8. Footer ------------------------------------------------------------- */
.site-footer {
	background: var(--forest-950);
	color: rgba(255, 255, 255, .68);
	font-size: .97rem;
}
.footer-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.2fr;
	gap: clamp(28px, 4vw, 56px);
	padding-block: clamp(44px, 5.5vw, 72px);
}
.site-footer h3 {
	margin-bottom: 1.1em;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: .02em;
}
.site-footer a { color: rgba(255, 255, 255, .72); }
.site-footer a:hover { color: var(--amber-400); }

.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 18px;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: rgba(255, 255, 255, .5); }
.footer-about { max-width: 38ch; margin-bottom: 22px; }

.footer-list { display: grid; gap: 12px; }
.footer-list li { display: flex; gap: 12px; align-items: flex-start; }
.footer-list svg { flex: none; margin-top: 3px; color: var(--forest-500); }

.footer-nav { display: grid; gap: 10px; }

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-block: 22px;
	border-top: 1px solid rgba(255, 255, 255, .09);
	font-size: .9rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }

/* floating call button */
.call-fab {
	position: fixed;
	right: clamp(14px, 3vw, 26px);
	bottom: clamp(14px, 3vw, 26px);
	z-index: 70;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 20px;
	border-radius: var(--radius-pill);
	background: linear-gradient(180deg, var(--amber-400), var(--amber-500));
	color: #fff;
	font-weight: 800;
	box-shadow: 0 16px 34px -12px rgba(201, 106, 5, .75);
	transition: transform .2s ease, box-shadow .2s ease;
}
.call-fab:hover {
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 22px 40px -14px rgba(201, 106, 5, .8);
}

/* 9. Motion ------------------------------------------------------------- */
.js [data-reveal] {
	opacity: 0;
	transform: translateY(16px);
}
.js [data-reveal].is-visible {
	opacity: 1;
	transform: none;
	transition: opacity .6s ease, transform .6s cubic-bezier(.22, .68, .36, 1);
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
	}
	.js [data-reveal] { opacity: 1; transform: none; }
}

/* 10. Responsive -------------------------------------------------------- */
@media (max-width: 1080px) {
	.footer-top { grid-template-columns: 1fr 1fr; }
	.hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); }
}

@media (max-width: 960px) {
	.nav-toggle { display: grid; }
	.nav {
		position: fixed;
		inset: 74px 0 auto;
		display: grid;
		gap: 4px;
		padding: 18px var(--gutter) 26px;
		background: #fff;
		border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow-md);
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
	}
	.nav.is-open {
		transform: none;
		opacity: 1;
		visibility: visible;
	}
	.nav a { padding: 13px 14px; font-size: 1rem; }
	.header-phone-text { display: none; }

	.hero-grid,
	.split {
		grid-template-columns: minmax(0, 1fr);
	}
	.split-media { order: 0; }
	.hero-media { max-width: 560px; }
	.grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.stat { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 700px) {
	body { font-size: .99rem; }
	.grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
	.stats { grid-template-columns: minmax(0, 1fr); }
	.stat { flex-direction: row; align-items: center; }
	.footer-top { grid-template-columns: minmax(0, 1fr); }
	.hero-actions .btn { width: 100%; }
	.hero-tag { display: none; }
	.hero-float { left: 12px; right: 12px; bottom: -18px; }
	.call-fab span { display: none; }
	.call-fab { padding: 16px; }
	.footer-bottom { justify-content: flex-start; }
}

@media (max-width: 380px) {
	.brand-sub { display: none; }
}
