/* ============================================================================
   Green Leaf Landscaping — "Botanical Minimal"
   Vanilla CSS. All component colors reference semantic tokens (light + dark).
   ============================================================================ */

/* ---- Design tokens ------------------------------------------------------- */
:root {
	/* Brand raw palette (referenced only inside token definitions) */
	--c-green: #2e5e3a; /* deep green   */
	--c-green-700: #244b2e;
	--c-green-300: #5f8a6a;
	--c-sage: #8da88f; /* sage         */
	--c-sage-200: #b9cabb;
	--c-cream: #f7f6f1; /* off-white bg */
	--c-cream-100: #fbfaf5;
	--c-paper: #ffffff;
	--c-charcoal: #1a211c; /* text         */
	--c-charcoal-60: #4a554d;
	--c-darkbg: #14241a; /* dark bg      */
	--c-darkbg-700: #182c1f;
	--c-darkbg-600: #1f3a2a;

	/* Semantic tokens — LIGHT (default) */
	--bg: var(--c-cream);
	--bg-tint: #eef0e8; /* subtle banded background */
	--surface: var(--c-paper);
	--surface-2: var(--c-cream-100);
	--text: var(--c-charcoal);
	--muted: #586259;
	--primary: var(--c-green);
	--primary-strong: var(--c-green-700);
	--primary-contrast: var(--c-cream-100);
	--accent: var(--c-sage);
	--accent-soft: #e4ebe3;
	--border: #dce0d4;
	--border-strong: #c6cdba;
	--ring: #2e5e3a;
	--shadow-color: 30 50 40;
	--chip-bg: #ffffff;
	--chip-border: #d6ddca;

	/* Type */
	--font-display: "Hanken Grotesk", "Segoe UI", "Helvetica Neue", Helvetica,
		sans-serif;
	--font-body: "Karla", "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;

	/* Fluid type scale */
	--fs-300: 0.8125rem; /* 13px — eyebrows */
	--fs-400: 1rem; /* 16px — body     */
	--fs-450: 1.0625rem; /* 17px — lead body*/
	--fs-500: clamp(1.125rem, 0.9rem + 0.6vw, 1.375rem); /* sub-lead */
	--fs-600: clamp(1.375rem, 1.1rem + 1vw, 1.875rem); /* h3 */
	--fs-700: clamp(1.75rem, 1.3rem + 1.9vw, 2.75rem); /* h2 */
	--fs-900: clamp(2.5rem, 1.6rem + 4vw, 4.25rem); /* hero h1 */

	/* Spacing scale (4 / 8 px rhythm) */
	--sp-1: 0.25rem;
	--sp-2: 0.5rem;
	--sp-3: 0.75rem;
	--sp-4: 1rem;
	--sp-5: 1.5rem;
	--sp-6: 2rem;
	--sp-7: 3rem;
	--sp-8: 4rem;
	--sp-9: 6rem;

	--radius-sm: 8px;
	--radius: 14px;
	--radius-lg: 22px;
	--radius-pill: 999px;

	--container: 1120px;
	--measure: 65ch;

	--ease: cubic-bezier(0.33, 0.8, 0.36, 1);
	--dur: 220ms;

	color-scheme: light;
}

html[data-theme="dark"] {
	--bg: var(--c-darkbg);
	--bg-tint: #0f1d14;
	--surface: var(--c-darkbg-700);
	--surface-2: var(--c-darkbg-600);
	--text: #eef2ec;
	--muted: #a9b9ac;
	--primary: #6fae7f; /* lightened for contrast on dark */
	--primary-strong: #8cc398;
	--primary-contrast: #0e1b13;
	--accent: var(--c-sage);
	--accent-soft: #1f3a2a;
	--border: #2c4233;
	--border-strong: #3a5743;
	--ring: #8fc79e;
	--shadow-color: 0 0 0;
	--chip-bg: #1c3325;
	--chip-border: #335041;

	color-scheme: dark;
}

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

* {
	margin: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 5.5rem; /* offset for sticky header on anchor jumps */
}

body {
	font-family: var(--font-body);
	font-size: var(--fs-400);
	line-height: 1.6;
	color: var(--text);
	background-color: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: hidden; /* belt-and-suspenders against 375px overflow */
}

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

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

a:hover {
	text-decoration: underline;
}

button {
	font: inherit;
	cursor: pointer;
}

h1,
h2,
h3 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--text);
	text-wrap: balance;
}

p {
	text-wrap: pretty;
}

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

/* Skip link */
.skip-link {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -120%);
	z-index: 100;
	background: var(--primary);
	color: var(--primary-contrast);
	padding: var(--sp-2) var(--sp-4);
	border-radius: 0 0 var(--radius-sm) var(--radius-sm);
	transition: transform var(--dur) var(--ease);
}

.skip-link:focus {
	transform: translate(-50%, 0);
	text-decoration: none;
}

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

.section {
	padding-block: clamp(var(--sp-8), 6vw, var(--sp-9));
}

.section--tint {
	background: var(--bg-tint);
	border-block: 1px solid var(--border);
}

.section-head {
	max-width: 52ch;
	margin-bottom: var(--sp-7);
}

.section-head--center {
	margin-inline: auto;
	text-align: center;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	font-family: var(--font-display);
	font-size: var(--fs-300);
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--primary-strong);
	margin-bottom: var(--sp-3);
}

.eyebrow::before {
	content: "";
	width: 22px;
	height: 1px;
	background: currentColor;
	opacity: 0.6;
}

.section-head--center .eyebrow {
	justify-content: center;
}

h2.section-title {
	font-size: var(--fs-700);
}

.section-lede {
	margin-top: var(--sp-4);
	font-size: var(--fs-450);
	color: var(--muted);
	max-width: var(--measure);
}

.section-head--center .section-lede {
	margin-inline: auto;
}

/* ---- Buttons ------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-2);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: var(--fs-400);
	line-height: 1;
	padding: 0.85rem 1.4rem;
	border-radius: var(--radius-pill);
	border: 1.5px solid transparent;
	transition: background-color var(--dur) var(--ease),
		border-color var(--dur) var(--ease), color var(--dur) var(--ease),
		transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

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

.btn:active {
	transform: translateY(1px);
}

.btn--primary {
	background: var(--primary);
	color: var(--primary-contrast);
	box-shadow: 0 1px 2px rgb(var(--shadow-color) / 0.18);
}

.btn--primary:hover {
	background: var(--primary-strong);
	box-shadow: 0 6px 18px rgb(var(--shadow-color) / 0.22);
	transform: translateY(-1px);
}

.btn--ghost {
	background: transparent;
	color: var(--text);
	border-color: var(--border-strong);
}

.btn--ghost:hover {
	border-color: var(--primary);
	color: var(--primary-strong);
	background: var(--accent-soft);
}

.btn--lg {
	padding: 1.05rem 1.8rem;
	font-size: var(--fs-450);
}

.btn svg {
	width: 1.15em;
	height: 1.15em;
	flex: none;
}

/* ---- Header / nav -------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: color-mix(in srgb, var(--bg) 82%, transparent);
	backdrop-filter: saturate(1.4) blur(12px);
	-webkit-backdrop-filter: saturate(1.4) blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color var(--dur) var(--ease),
		background-color var(--dur) var(--ease);
}

.site-header[data-scrolled="true"] {
	border-bottom-color: var(--border);
	background: color-mix(in srgb, var(--bg) 92%, transparent);
}

.nav {
	display: flex;
	align-items: center;
	gap: var(--sp-4);
	min-height: 4.5rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-3);
	margin-right: auto;
	color: var(--text);
}

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

.brand__mark {
	width: 40px;
	height: 40px;
	flex: none;
	color: var(--primary);
}

.brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.brand__name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.18rem;
	letter-spacing: -0.02em;
}

.brand__sub {
	font-family: var(--font-display);
	font-size: 0.7rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
}

.nav__links {
	display: none;
	align-items: center;
	gap: var(--sp-2);
	list-style: none;
	padding: 0;
}

.nav__links a {
	display: inline-block;
	padding: var(--sp-2) var(--sp-3);
	border-radius: var(--radius-sm);
	color: var(--muted);
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.95rem;
	transition: color var(--dur) var(--ease),
		background-color var(--dur) var(--ease);
}

.nav__links a:hover {
	color: var(--text);
	background: var(--accent-soft);
	text-decoration: none;
}

.nav__actions {
	display: flex;
	align-items: center;
	gap: var(--sp-2);
}

/* Icon button (theme toggle) */
.icon-btn {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: var(--radius-pill);
	border: 1.5px solid var(--border-strong);
	background: var(--surface);
	color: var(--text);
	transition: background-color var(--dur) var(--ease),
		border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.icon-btn:hover {
	border-color: var(--primary);
	color: var(--primary-strong);
}

.icon-btn svg {
	width: 20px;
	height: 20px;
}

/* Show/hide sun vs moon by theme */
.icon-btn .icon-sun {
	display: none;
}

.icon-btn .icon-moon {
	display: block;
}

html[data-theme="dark"] .icon-btn .icon-sun {
	display: block;
}

html[data-theme="dark"] .icon-btn .icon-moon {
	display: none;
}

.nav__cta {
	display: none;
}

/* ---- Hero ---------------------------------------------------------------- */
.hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: var(--bg);
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.92;
}

html[data-theme="dark"] .hero__bg {
	opacity: 0.16;
}

/* gradient veil to keep text readable + fade into page */
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(
		180deg,
		color-mix(in srgb, var(--bg) 35%, transparent) 0%,
		color-mix(in srgb, var(--bg) 10%, transparent) 40%,
		var(--bg) 100%
	);
}

.hero__inner {
	padding-block: clamp(var(--sp-8), 12vh, 10rem);
	max-width: 38rem;
}

.hero h1 {
	font-size: var(--fs-900);
	margin-bottom: var(--sp-5);
}

.hero h1 .accentword {
	color: var(--primary-strong);
	white-space: nowrap;
}

.hero__lede {
	font-size: var(--fs-500);
	color: var(--muted);
	max-width: 34ch;
	margin-bottom: var(--sp-6);
}

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-3);
	margin-bottom: var(--sp-7);
}

/* Trust chips */
.trust {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2) var(--sp-5);
	padding: 0;
	margin: 0;
	list-style: none;
}

.trust li {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	font-size: 0.95rem;
	color: var(--text);
	font-weight: 500;
}

.trust svg {
	width: 18px;
	height: 18px;
	color: var(--primary-strong);
	flex: none;
}

/* ---- About --------------------------------------------------------------- */
.about__grid {
	display: grid;
	gap: var(--sp-7);
	align-items: start;
}

.about__lede {
	font-size: var(--fs-500);
	font-family: var(--font-display);
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--text);
	line-height: 1.35;
}

.about__body p + p {
	margin-top: var(--sp-4);
}

.about__body p {
	color: var(--muted);
	max-width: var(--measure);
}

.cred-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: var(--sp-3);
}

.cred-list li {
	display: flex;
	gap: var(--sp-3);
	align-items: flex-start;
	padding: var(--sp-4);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
}

.cred-list svg {
	width: 22px;
	height: 22px;
	color: var(--primary);
	flex: none;
	margin-top: 1px;
}

.cred-list strong {
	font-family: var(--font-display);
	display: block;
	font-size: 1rem;
	margin-bottom: 2px;
}

.cred-list span {
	color: var(--muted);
	font-size: 0.92rem;
}

/* ---- Services ------------------------------------------------------------ */
.cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-4);
}

.card {
	position: relative;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--sp-6);
	transition: border-color var(--dur) var(--ease),
		transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.card:hover {
	border-color: var(--border-strong);
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgb(var(--shadow-color) / 0.1);
}

.card__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: var(--radius);
	background: var(--accent-soft);
	color: var(--primary-strong);
	margin-bottom: var(--sp-4);
}

.card__icon svg {
	width: 26px;
	height: 26px;
}

.card h3 {
	font-size: var(--fs-600);
	margin-bottom: var(--sp-2);
}

.card p {
	color: var(--muted);
	font-size: 0.98rem;
}

/* ---- Pricing ------------------------------------------------------------- */
.price-wrap {
	display: grid;
	gap: var(--sp-6);
}

.price-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	font-variant-numeric: tabular-nums;
}

.price-table caption {
	text-align: left;
	padding: var(--sp-5) var(--sp-5) 0;
	color: var(--muted);
	font-size: 0.9rem;
	caption-side: top;
}

.price-table th,
.price-table td {
	padding: var(--sp-4) var(--sp-5);
	text-align: left;
	border-bottom: 1px solid var(--border);
}

.price-table thead th {
	font-family: var(--font-display);
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	font-weight: 600;
}

.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(--accent-soft);
}

.price-table .svc {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--text);
}

.price-table .svc small {
	display: block;
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--muted);
	font-size: 0.85rem;
	margin-top: 2px;
}

.price-table .amt {
	text-align: right;
	white-space: nowrap;
}

.price-table .amt b {
	font-family: var(--font-display);
	font-size: 1.15rem;
	color: var(--primary-strong);
}

.price-table .amt span {
	color: var(--muted);
	font-size: 0.82rem;
}

.price-from {
	display: inline-block;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.disclaimer {
	display: flex;
	gap: var(--sp-3);
	align-items: flex-start;
	padding: var(--sp-4) var(--sp-5);
	background: var(--accent-soft);
	border: 1px dashed var(--border-strong);
	border-radius: var(--radius);
	color: var(--muted);
	font-size: 0.92rem;
	max-width: var(--measure);
}

.disclaimer svg {
	width: 20px;
	height: 20px;
	color: var(--primary-strong);
	flex: none;
	margin-top: 1px;
}

.disclaimer strong {
	color: var(--text);
}

/* ---- Gallery ------------------------------------------------------------- */
.gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-4);
}

.gallery__item {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--surface-2);
	aspect-ratio: 4 / 3;
}

.gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms var(--ease);
}

.gallery__item:hover img {
	transform: scale(1.04);
}

.gallery__tag {
	position: absolute;
	left: var(--sp-3);
	top: var(--sp-3);
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--primary-contrast);
	background: color-mix(in srgb, var(--primary) 90%, black 6%);
	padding: 0.3rem 0.7rem;
	border-radius: var(--radius-pill);
}

/* ---- Service area -------------------------------------------------------- */
.area {
	position: relative;
	overflow: hidden;
}

.area__grid {
	display: grid;
	gap: var(--sp-7);
	align-items: center;
	position: relative;
	z-index: 1;
}

.area__count {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.03em;
	font-size: clamp(3.5rem, 2rem + 7vw, 6rem);
	line-height: 0.9;
	color: var(--primary-strong);
}

.area__count span {
	display: block;
	font-size: var(--fs-400);
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: var(--sp-2);
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-3);
	padding: 0;
	margin: 0;
	list-style: none;
}

.chip {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	padding: 0.6rem 1.05rem;
	background: var(--chip-bg);
	border: 1px solid var(--chip-border);
	border-radius: var(--radius-pill);
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.98rem;
	color: var(--text);
	transition: border-color var(--dur) var(--ease),
		background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.chip:hover {
	border-color: var(--primary);
	transform: translateY(-2px);
}

.chip svg {
	width: 15px;
	height: 15px;
	color: var(--accent);
	flex: none;
}

.area__note {
	margin-top: var(--sp-5);
	color: var(--muted);
	font-size: 0.95rem;
	max-width: 48ch;
}

/* decorative leaf motif behind the area section */
.area__motif {
	position: absolute;
	right: -4rem;
	bottom: -6rem;
	width: min(46vw, 420px);
	color: var(--primary);
	opacity: 0.06;
	z-index: 0;
	pointer-events: none;
}

html[data-theme="dark"] .area__motif {
	opacity: 0.14;
}

/* ---- Contact ------------------------------------------------------------- */
.contact__grid {
	display: grid;
	gap: var(--sp-7);
	align-items: start;
}

.contact__cta {
	display: grid;
	gap: var(--sp-4);
}

.call-card {
	display: flex;
	align-items: center;
	gap: var(--sp-4);
	padding: var(--sp-5);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	color: var(--text);
	transition: border-color var(--dur) var(--ease),
		box-shadow var(--dur) var(--ease);
}

.call-card:hover {
	text-decoration: none;
	border-color: var(--primary);
	box-shadow: 0 10px 26px rgb(var(--shadow-color) / 0.1);
}

.call-card__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: var(--radius-pill);
	background: var(--primary);
	color: var(--primary-contrast);
	flex: none;
}

.call-card__icon svg {
	width: 26px;
	height: 26px;
}

.call-card__meta {
	display: flex;
	flex-direction: column;
}

.call-card__meta span {
	font-size: 0.82rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--muted);
}

.call-card__meta b {
	font-family: var(--font-display);
	font-size: 1.5rem;
	letter-spacing: -0.02em;
}

.hours {
	padding: var(--sp-5);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--surface-2);
}

.hours h3 {
	font-size: 1.05rem;
	margin-bottom: var(--sp-3);
}

.hours dl {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: var(--sp-2) var(--sp-4);
	margin: 0;
	font-size: 0.95rem;
}

.hours dt {
	color: var(--muted);
}

.hours dd {
	margin: 0;
	text-align: right;
	font-variant-numeric: tabular-nums;
	color: var(--text);
}

/* Form */
.form {
	display: grid;
	gap: var(--sp-4);
	padding: var(--sp-6);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
}

.field {
	display: grid;
	gap: var(--sp-2);
}

.field label {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--text);
}

.field input,
.field textarea {
	font: inherit;
	color: var(--text);
	background: var(--bg);
	border: 1.5px solid var(--border-strong);
	border-radius: var(--radius);
	padding: 0.8rem 0.95rem;
	width: 100%;
	transition: border-color var(--dur) var(--ease),
		box-shadow var(--dur) var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
	color: var(--muted);
	opacity: 0.7;
}

.field input:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 22%, transparent);
}

.field textarea {
	resize: vertical;
	min-height: 120px;
}

.field-row {
	display: grid;
	gap: var(--sp-4);
}

.form__note {
	font-size: 0.85rem;
	color: var(--muted);
}

/* demo form feedback message */
.form__status {
	display: none;
	align-items: flex-start;
	gap: var(--sp-3);
	padding: var(--sp-4);
	border-radius: var(--radius);
	background: var(--accent-soft);
	border: 1px solid var(--border-strong);
	color: var(--text);
	font-size: 0.95rem;
}

.form__status.is-visible {
	display: flex;
}

.form__status svg {
	width: 20px;
	height: 20px;
	color: var(--primary-strong);
	flex: none;
	margin-top: 1px;
}

/* ---- Footer -------------------------------------------------------------- */
.site-footer {
	border-top: 1px solid var(--border);
	background: var(--surface);
	padding-block: var(--sp-7) var(--sp-6);
}

.footer__top {
	display: grid;
	gap: var(--sp-6);
	padding-bottom: var(--sp-6);
	border-bottom: 1px solid var(--border);
}

.footer__brand {
	max-width: 34ch;
}

.footer__brand .brand {
	margin-bottom: var(--sp-3);
}

.footer__brand p {
	color: var(--muted);
	font-size: 0.95rem;
}

.footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-4) var(--sp-6);
}

.footer__nav a {
	color: var(--muted);
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.95rem;
}

.footer__nav a:hover {
	color: var(--text);
}

.footer__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-3) var(--sp-5);
	justify-content: space-between;
	align-items: center;
	padding-top: var(--sp-5);
	color: var(--muted);
	font-size: 0.85rem;
}

.footer__concept {
	font-style: italic;
	opacity: 0.85;
	max-width: 60ch;
}

/* ---- Reveal-on-load animation ------------------------------------------- */
.reveal {
	opacity: 0;
	transform: translateY(16px);
}

.reveal.is-in {
	opacity: 1;
	transform: none;
	transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

/* ---- Responsive ---------------------------------------------------------- */
@media (min-width: 600px) {
	.field-row {
		grid-template-columns: 1fr 1fr;
	}

	.cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.container {
		padding-inline: var(--sp-6);
	}

	.nav__cta {
		display: inline-flex;
	}

	.about__grid {
		grid-template-columns: 1.4fr 1fr;
		gap: var(--sp-8);
	}

	.price-wrap {
		grid-template-columns: 1.5fr 1fr;
		align-items: start;
	}

	.area__grid {
		grid-template-columns: auto 1fr;
		gap: var(--sp-8);
	}

	.contact__grid {
		grid-template-columns: 1fr 1.2fr;
		gap: var(--sp-8);
	}

	.footer__top {
		grid-template-columns: 1.3fr 1fr;
		align-items: start;
	}
}

@media (min-width: 1024px) {
	.nav__links {
		display: flex;
	}

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

	.gallery {
		grid-template-columns: repeat(3, 1fr);
	}

	.gallery__item--wide {
		grid-column: span 2;
		aspect-ratio: 16 / 9;
	}

	.hero__inner {
		max-width: 40rem;
	}
}

/* ---- Reduced motion ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}

	.gallery__item:hover img,
	.card:hover,
	.btn:hover,
	.chip:hover {
		transform: none;
	}
}

/* ---- Print --------------------------------------------------------------- */
@media print {
	.site-header,
	.hero__cta,
	.form,
	.icon-btn {
		display: none;
	}
}
