/*
Theme Name: Jade Ridge Outdoor Lighting
Theme URI: https://jaderidgelighting.com/
Author: Jade Ridge Outdoor Lighting, LLC
Description: A custom lead-generation theme for Jade Ridge Outdoor Lighting.
Version: 0.3.0
Requires at least: 6.6
Requires PHP: 8.1
Text Domain: jade-ridge-lighting
*/

:root {
	--jade: #2a4a39;
	--jade-dark: #173126;
	--jade-light: #dce9df;
	--charcoal: #202522;
	--charcoal-soft: #393b39;
	--ivory: #fbf8f0;
	--paper: #ffffff;
	--amber: #d99b45;
	--amber-light: #f5d89b;
	--line: rgba(42, 74, 57, 0.18);
	--shadow: 0 22px 70px rgba(20, 35, 28, 0.14);
	--radius: 1.25rem;
	--container: min(1160px, calc(100% - 2rem));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 7rem;
}

body {
	margin: 0;
	background: var(--ivory);
	color: var(--charcoal);
	font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 1rem;
	line-height: 1.65;
}

body.menu-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--jade);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--jade-dark);
}

button,
input,
select,
textarea {
	font: inherit;
}

:focus-visible {
	outline: 3px solid var(--amber);
	outline-offset: 4px;
}

.skip-link {
	position: fixed;
	z-index: 1000;
	top: 0.75rem;
	left: 0.75rem;
	padding: 0.8rem 1rem;
	transform: translateY(-150%);
	border-radius: 0.5rem;
	background: var(--paper);
	color: var(--charcoal);
	font-weight: 700;
}

.skip-link:focus {
	transform: translateY(0);
}

.container {
	width: var(--container);
	margin-inline: auto;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	margin: 0 0 1rem;
	color: var(--jade);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	line-height: 1.3;
	text-transform: uppercase;
}
h1,
h2,
h3 {
	margin-top: 0;
	color: var(--charcoal);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

h1 {
	font-size: clamp(3rem, 7vw, 6.7rem);
}

h2 {
	font-size: clamp(2.3rem, 5vw, 4.25rem);
}

h3 {
	font-size: clamp(1.45rem, 2.5vw, 2rem);
}

p {
	margin-top: 0;
}

.section {
	padding-block: clamp(4.75rem, 9vw, 8rem);
}

.section-heading {
	max-width: 760px;
	margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.section-heading p:last-child {
	max-width: 650px;
	margin-bottom: 0;
	font-size: 1.08rem;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
}

.button {
	display: inline-flex;
	min-height: 3.25rem;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.25rem;
	border: 2px solid transparent;
	border-radius: 999px;
	background: var(--jade);
	color: var(--paper);
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
	background: var(--jade-dark);
	color: var(--paper);
}

.button--amber {
	background: var(--amber);
	color: #172019;
}

.button--amber:hover {
	background: var(--amber-light);
	color: #172019;
}

.button--ghost {
	border-color: rgba(255, 255, 255, 0.5);
	background: transparent;
	color: var(--paper);
}

.button--ghost:hover {
	background: var(--paper);
	color: var(--jade-dark);
}

.announcement {
	padding: 0.55rem 1rem;
	background: var(--jade-dark);
	color: var(--paper);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.035em;
	text-align: center;
}

.site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	border-bottom: 1px solid var(--line);
	background: rgba(251, 248, 240, 0.96);
	backdrop-filter: blur(16px);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: flex;
	min-height: 5.75rem;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.brand img {
	width: clamp(150px, 18vw, 220px);
	max-height: 68px;
}

.nav-toggle {
	display: none;
	width: 3rem;
	height: 3rem;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: transparent;
	color: var(--charcoal);
	cursor: pointer;
}

.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
	display: block;
	width: 1.2rem;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform 180ms ease;
}

.nav-toggle__lines {
	position: relative;
}

.nav-toggle__lines::before {
	position: absolute;
	top: -0.38rem;
}

.nav-toggle__lines::after {
	position: absolute;
	top: 0.38rem;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2vw, 1.75rem);
}

.primary-nav a {
	color: var(--charcoal);
	font-size: 0.93rem;
	font-weight: 750;
	text-decoration: none;
}

.primary-nav a:hover {
	color: var(--jade);
}

.primary-nav .button {
	color: var(--paper);
}

.hero {
	position: relative;
	display: grid;
	min-height: min(760px, calc(100vh - 7rem));
	align-items: center;
	overflow: hidden;
	background-color: #0f211a;
	background-image:
		linear-gradient(90deg, rgba(8, 22, 17, 0.95) 0%, rgba(8, 22, 17, 0.76) 40%, rgba(8, 22, 17, 0.13) 75%),
		url("assets/images/holiday-hero.jpg");
	background-position: center;
	background-size: cover;
	color: var(--paper);
}

.hero::after {
	position: absolute;
	inset: auto 0 0;
	height: 10rem;
	background: linear-gradient(transparent, rgba(5, 16, 12, 0.46));
	content: "";
	pointer-events: none;
}

.hero__content {
	position: relative;
	z-index: 1;
	max-width: 720px;
	padding-block: clamp(5rem, 11vw, 9rem);
}

.hero .eyebrow,
.hero h1 {
	color: var(--paper);
}

.hero h1 {
	max-width: 700px;
	margin-bottom: 1.4rem;
}

.hero__lead {
	max-width: 650px;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	margin: 2rem 0 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
	font-weight: 650;
	list-style: none;
}

.hero__meta li::before {
	margin-right: 0.55rem;
	color: var(--amber-light);
	content: "✦";
}

.hero__note {
	position: absolute;
	z-index: 2;
	right: 1rem;
	bottom: 0.75rem;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.68rem;
	letter-spacing: 0.04em;
}

.trust-bar {
	position: relative;
	z-index: 2;
	margin-top: -2rem;
}

.trust-bar__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: var(--shadow);
}

.trust-item {
	padding: 1.55rem;
	text-align: center;
}

.trust-item + .trust-item {
	border-left: 1px solid var(--line);
}

.trust-item strong,
.trust-item span {
	display: block;
}

.trust-item strong {
	color: var(--jade-dark);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.25rem;
	font-weight: 500;
}

.trust-item span {
	margin-top: 0.25rem;
	color: #667069;
	font-size: 0.86rem;
}

.holiday {
	padding-top: clamp(6.5rem, 10vw, 10rem);
}

.holiday__grid,
.about__grid,
.quote__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2.5rem, 7vw, 7rem);
	align-items: center;
}

.feature-panel {
	position: relative;
	padding: clamp(2rem, 5vw, 4rem);
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--jade-dark);
	box-shadow: var(--shadow);
	color: rgba(255, 255, 255, 0.84);
}

.feature-panel::before {
	position: absolute;
	top: -5rem;
	right: -4rem;
	width: 15rem;
	height: 15rem;
	border: 1px solid rgba(245, 216, 155, 0.32);
	border-radius: 50%;
	box-shadow: 0 0 0 3rem rgba(245, 216, 155, 0.035), 0 0 0 6rem rgba(245, 216, 155, 0.025);
	content: "";
}

.feature-panel h2,
.feature-panel h3,
.feature-panel .eyebrow {
	position: relative;
	color: var(--paper);
}

.feature-list {
	position: relative;
	display: grid;
	gap: 1rem;
	margin: 1.75rem 0 0;
	padding: 0;
	list-style: none;
}

.feature-list li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.8rem;
	align-items: start;
}

.feature-list li::before {
	display: grid;
	width: 1.6rem;
	height: 1.6rem;
	place-items: center;
	border-radius: 50%;
	background: var(--amber);
	color: var(--jade-dark);
	content: "✓";
	font-size: 0.8rem;
	font-weight: 900;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.15rem;
}

.service-card {
	position: relative;
	display: flex;
	min-height: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}

.service-card__media {
	position: relative;
	aspect-ratio: 3 / 2;
	margin: 0;
	overflow: hidden;
	background: var(--jade-light);
}

.service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card__media figcaption {
	position: absolute;
	right: 0.65rem;
	bottom: 0.55rem;
	padding: 0.25rem 0.45rem;
	border-radius: 999px;
	background: rgba(12, 25, 19, 0.76);
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.62rem;
	letter-spacing: 0.04em;
}

.service-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(1.4rem, 3vw, 2rem);
}

.service-card h3 {
	margin: 0 0 0.75rem;
}

.service-card p {
	margin-bottom: 1.2rem;
	color: #616a64;
}

.service-card a {
	margin-top: auto;
	font-weight: 800;
}

.service-card--soon {
	background: var(--jade-light);
}

.badge {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	z-index: 1;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: var(--jade);
	color: var(--paper);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.process {
	background: var(--paper);
}

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.step {
	position: relative;
	padding-top: 4rem;
}

.step::before {
	position: absolute;
	top: 1.3rem;
	left: 2.5rem;
	width: calc(100% - 2rem);
	height: 1px;
	background: var(--line);
	content: "";
}

.step:last-child::before {
	display: none;
}

.step__number {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	display: grid;
	width: 2.7rem;
	height: 2.7rem;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--ivory);
	color: var(--jade);
	font-weight: 850;
}

.step strong {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--jade-dark);
}

.step p {
	color: #69716c;
	font-size: 0.92rem;
}

.service-area {
	overflow: hidden;
	padding-block: clamp(3.5rem, 6vw, 5rem);
	background: var(--jade);
	color: rgba(255, 255, 255, 0.84);
}

.service-area__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: center;
}

.service-area__layout h2 {
	margin-bottom: 0;
}

.service-area__summary {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.05rem;
}

.service-area h2,
.service-area .eyebrow {
	color: var(--paper);
}

.area-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.area-list li {
	padding: 0.7rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--paper);
	font-weight: 700;
}

.about__story {
	font-size: 1.12rem;
}

.about__profile {
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: var(--shadow);
}

.about__portrait {
	aspect-ratio: 4 / 3;
	margin: 0;
	overflow: hidden;
	background: var(--jade-light);
}

.about__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 29%;
}

.about__details {
	padding: clamp(1.5rem, 4vw, 2rem);
	border-top: 3px solid var(--amber);
	background: var(--paper);
}

.about__details strong {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--jade);
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.about__details p:last-child {
	margin-bottom: 0;
}

.faq-list {
	display: grid;
	max-width: 860px;
	gap: 0.75rem;
}

.faq-list details {
	border: 1px solid var(--line);
	border-radius: 0.9rem;
	background: var(--paper);
}

.faq-list summary {
	padding: 1.1rem 3rem 1.1rem 1.25rem;
	color: var(--jade-dark);
	font-weight: 800;
	cursor: pointer;
}

.faq-list details p {
	padding: 0 1.25rem 1.25rem;
	margin: 0;
	color: #626b65;
}

#process,
#faq {
	padding-block: clamp(3.75rem, 7vw, 5.75rem);
}

#process .section-heading,
#faq .section-heading {
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.quote {
	background: var(--charcoal);
	color: rgba(255, 255, 255, 0.82);
}

.quote h2,
.quote h3,
.quote .eyebrow {
	color: var(--paper);
}

.quote__contact {
	display: grid;
	gap: 1rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.quote__contact a {
	color: var(--amber-light);
	font-size: 1.08rem;
	font-weight: 800;
}

.quote__promises {
	display: grid;
	gap: 0.55rem;
	margin: 1.5rem 0 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.92rem;
	font-weight: 700;
	list-style: none;
}

.quote__promises li::before {
	margin-right: 0.6rem;
	color: var(--amber-light);
	content: "✓";
}

.quote-form {
	padding: clamp(1.4rem, 4vw, 2.5rem);
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: var(--shadow);
	color: var(--charcoal);
}

.quote-form--embed {
	min-height: 32rem;
}

.quote-form__privacy {
	margin-bottom: 1.25rem;
	color: #5e6861;
	font-size: 0.86rem;
}

.quote-form--embed noscript {
	display: block;
	padding: 1rem;
	border: 1px solid var(--line);
	border-radius: 0.7rem;
	background: var(--ivory);
}

.quote-form--embed noscript p {
	margin: 0;
}

.quote-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.field--full {
	grid-column: 1 / -1;
}

.field label,
.field legend {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--charcoal);
	font-size: 0.87rem;
	font-weight: 800;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	border: 1px solid #bdc7c0;
	border-radius: 0.55rem;
	background: #fff;
	color: var(--charcoal);
}

.field input,
.field select {
	min-height: 3.1rem;
	padding: 0.7rem 0.8rem;
}

.field textarea {
	min-height: 9rem;
	padding: 0.8rem;
	resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--jade);
	outline: 3px solid rgba(42, 74, 57, 0.18);
}

.field__hint {
	display: block;
	margin-top: 0.35rem;
	color: #6d756f;
	font-size: 0.78rem;
}

.checkbox-field {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.7rem;
	align-items: start;
}

.checkbox-field input {
	width: 1.2rem;
	height: 1.2rem;
	margin-top: 0.22rem;
	accent-color: var(--jade);
}

.checkbox-field label {
	font-size: 0.83rem;
	line-height: 1.5;
}

.form-status {
	margin-bottom: 1.25rem;
	padding: 0.9rem 1rem;
	border-radius: 0.55rem;
	font-weight: 750;
}

.form-status--success {
	border: 1px solid #8bb898;
	background: #edf7ef;
	color: #174526;
}

.form-status--error {
	border: 1px solid #d49a93;
	background: #fff0ee;
	color: #7d2419;
}

.form-honeypot {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	white-space: nowrap !important;
}

.site-footer {
	padding-block: 4rem 2rem;
	background: #141a17;
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 1fr;
	gap: 3rem;
}

.site-footer img {
	width: 210px;
	margin-bottom: 1.5rem;
	padding: 0.75rem;
	border-radius: 0.6rem;
	background: var(--ivory);
}

.site-footer h2 {
	color: var(--paper);
	font-family: inherit;
	font-size: 0.82rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer li + li {
	margin-top: 0.55rem;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.86);
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	font-size: 0.8rem;
}

.service-page .section {
	padding-block: clamp(4rem, 7vw, 6.25rem);
}

.service-hero {
	position: relative;
	display: grid;
	min-height: clamp(600px, 72vh, 720px);
	align-items: center;
	overflow: hidden;
	background-color: #0f211a;
	background-image:
		linear-gradient(90deg, rgba(8, 22, 17, 0.96) 0%, rgba(8, 22, 17, 0.78) 46%, rgba(8, 22, 17, 0.18) 78%),
		url("assets/images/holiday-hero.jpg");
	background-position: center;
	background-size: cover;
	color: var(--paper);
}

.service-hero::after {
	position: absolute;
	inset: auto 0 0;
	height: 9rem;
	background: linear-gradient(transparent, rgba(5, 16, 12, 0.48));
	content: "";
	pointer-events: none;
}

.service-hero__content {
	position: relative;
	z-index: 1;
	max-width: 780px;
	padding-block: clamp(4.5rem, 9vw, 7rem);
}

.service-hero .eyebrow,
.service-hero h1 {
	color: var(--paper);
}

.service-hero h1 {
	max-width: 760px;
	margin-bottom: 1.35rem;
	font-size: clamp(3rem, 6.5vw, 6rem);
}

.service-hero__lead {
	max-width: 700px;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.service-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	margin: 1.75rem 0 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.9rem;
	font-weight: 700;
	list-style: none;
}

.service-hero__meta li::before {
	margin-right: 0.5rem;
	color: var(--amber-light);
	content: "✓";
}

.service-page__trust {
	margin-top: -2rem;
}

.service-page__included {
	padding-top: clamp(6.5rem, 9vw, 8rem) !important;
}

.service-page__audience {
	background: #f1eee5;
}

.service-page__audience-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.service-page__audience-card {
	padding: clamp(1.75rem, 4vw, 3rem);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: 0 16px 45px rgba(20, 35, 28, 0.08);
}

.service-page__card-label {
	display: block;
	margin-bottom: 0.75rem;
	color: var(--jade);
	font-size: 0.75rem;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.service-page__audience-card h3 {
	margin-bottom: 0.85rem;
}

.service-page__audience-card p {
	margin-bottom: 0;
	color: #616a64;
}

.service-page__process .steps {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-page__faq {
	background: var(--ivory);
}

.service-page__cta {
	background: var(--charcoal);
	color: rgba(255, 255, 255, 0.84);
}

.service-page__cta-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: center;
}

.service-page__cta h2,
.service-page__cta .eyebrow {
	color: var(--paper);
}

.service-page__cta h2 {
	margin-bottom: 1rem;
}

.service-page__cta p:last-child {
	max-width: 720px;
	margin-bottom: 0;
}

.service-page__cta-actions {
	display: grid;
	gap: 0.8rem;
	align-items: center;
}

.service-page__cta-actions .button {
	margin-bottom: 0.25rem;
}

.service-page__cta-actions > a:not(.button) {
	color: var(--amber-light);
	font-weight: 800;
	text-align: center;
}

.content-page {
	min-height: 55vh;
	padding-block: clamp(4rem, 8vw, 7rem);
}

.content-page__inner {
	max-width: 820px;
}

.content-page h1 {
	font-size: clamp(2.6rem, 6vw, 5rem);
}

.content-page__content {
	font-size: 1.06rem;
}

.content-page__content h2 {
	margin-top: 2.5rem;
	font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	white-space: nowrap;
}

@media (max-width: 900px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.primary-nav {
		position: absolute;
		inset: 100% 0 auto;
		display: none;
		max-height: calc(100vh - 5.75rem);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		overflow-y: auto;
		padding: 1rem;
		border-top: 1px solid var(--line);
		background: var(--ivory);
		box-shadow: 0 20px 40px rgba(20, 35, 28, 0.16);
	}

	.primary-nav.is-open {
		display: flex;
	}

	.primary-nav a {
		padding: 0.9rem;
	}

	.primary-nav .button {
		margin-top: 0.5rem;
	}

	.hero {
		background-image:
			linear-gradient(90deg, rgba(8, 22, 17, 0.93) 0%, rgba(8, 22, 17, 0.68) 72%, rgba(8, 22, 17, 0.35) 100%),
			url("assets/images/holiday-hero.jpg");
		background-position: 62% center;
	}

	.service-hero {
		background-image:
			linear-gradient(90deg, rgba(8, 22, 17, 0.95) 0%, rgba(8, 22, 17, 0.72) 72%, rgba(8, 22, 17, 0.38) 100%),
			url("assets/images/holiday-hero.jpg");
		background-position: 62% center;
	}

	.holiday__grid,
	.about__grid,
	.quote__grid {
		grid-template-columns: 1fr;
	}

	.service-area__layout {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.service-grid {
		grid-template-columns: 1fr 1fr;
	}

	.steps {
		grid-template-columns: 1fr 1fr;
		gap: 2rem 1.5rem;
	}

	.service-page__process .steps {
		grid-template-columns: 1fr 1fr;
	}

	.step::before {
		display: none;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.service-page__cta-inner {
		grid-template-columns: 1fr;
	}

	.service-page__cta-actions {
		max-width: 340px;
	}
}

@media (max-width: 620px) {
	:root {
		--container: min(100% - 1.25rem, 1160px);
	}

	.announcement {
		padding: 0.4rem 0.65rem;
		font-size: 0.68rem;
		line-height: 1.35;
	}

	.site-header__inner {
		min-height: 4.35rem;
		gap: 0.75rem;
	}

	.brand img {
		width: 132px;
	}

	.nav-toggle {
		width: 2.7rem;
		height: 2.7rem;
	}

	.primary-nav {
		max-height: calc(100vh - 4.35rem);
	}

	.hero {
		min-height: clamp(560px, calc(100svh - 5rem), 650px);
		background-position: 69% center;
	}

	.hero__content {
		align-self: center;
		padding-block: 3rem 4.25rem;
	}

	.hero h1 {
		margin-bottom: 0.9rem;
		font-size: clamp(2.65rem, 12vw, 3.75rem);
	}

	.hero__lead {
		margin-bottom: 1.25rem;
		font-size: 1.02rem;
		line-height: 1.5;
	}

	.button-row .button {
		width: 100%;
		min-height: 3rem;
	}

	.hero__meta {
		display: grid;
		gap: 0.45rem;
		margin-top: 1.25rem;
		font-size: 0.78rem;
	}

	.service-hero {
		min-height: 610px;
		background-position: 69% center;
	}

	.service-hero__content {
		padding-block: 3.25rem 4.5rem;
	}

	.service-hero h1 {
		margin-bottom: 0.9rem;
		font-size: clamp(2.6rem, 11.5vw, 3.7rem);
	}

	.service-hero__lead {
		margin-bottom: 1.25rem;
		font-size: 1rem;
		line-height: 1.5;
	}

	.service-hero__meta {
		display: grid;
		gap: 0.4rem;
		margin-top: 1.2rem;
		font-size: 0.77rem;
	}

	.trust-bar {
		margin-top: 0;
		background: var(--paper);
	}

	.trust-bar .container {
		width: 100%;
	}

	.trust-bar__inner {
		grid-template-columns: repeat(3, 1fr);
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.trust-item + .trust-item {
		border-left: 1px solid var(--line);
	}

	.trust-item {
		padding: 0.85rem 0.4rem;
	}

	.trust-item strong {
		font-size: 0.92rem;
	}

	.trust-item span {
		font-size: 0.68rem;
		line-height: 1.35;
	}

	.service-grid,
	.steps,
	.service-page__audience-grid,
	.service-page__process .steps,
	.quote-form__grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: 0;
	}

	.site-footer__bottom {
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
