:root {
	--color-primary: #155097;
	--color-primary-dark: #0e3a72;
	--color-secondary: #4793a3;
	--color-pale: #e1eff2;
	--color-white: #fff;
	--color-ink: #191919;
	--color-muted: #5e6670;
	--color-line: #d9e0e5;
	--color-dark: #11263c;
	--font-heading: Montserrat, "Arial Narrow", Arial, sans-serif;
	--font-body: Roboto, Arial, sans-serif;
	--site-max: 1920px;
	--gutter: 20px;
	--reading-width: 760px;
	--radius-small: 8px;
	--radius: 16px;
	--shadow: 0 18px 45px rgb(17 38 60 / 10%);
	--section-space: clamp(4.5rem, 9vw, 9rem);
	--header-height: 76px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }

body {
	margin: 0;
	background: var(--color-white);
	color: var(--color-ink);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.menu-is-open { overflow: hidden; }

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

iframe,
video { max-width: 100%; }

a { color: var(--color-primary); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--color-primary-dark); }

button,
input,
textarea,
select { font: inherit; }

h1,
h2,
h3,
h4 {
	margin: 0 0 0.7em;
	color: inherit;
	font-family: var(--font-heading);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

h1 { font-size: clamp(3rem, 8vw, 7.5rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }

p { margin: 0 0 1.25em; }

:focus-visible { outline: 3px solid var(--color-secondary); outline-offset: 4px; }

.site-container {
	width: min(calc(100% - (var(--gutter) * 2)), var(--site-max));
	margin-inline: auto;
}

.content-narrow { max-width: var(--reading-width); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { top: 10px; left: 10px; z-index: 9999; width: auto; height: auto; padding: 12px 18px; clip: auto; background: var(--color-white); color: var(--color-ink); }

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	min-height: var(--header-height);
	background: var(--color-primary);
	border-bottom: 1px solid rgb(255 255 255 / 14%);
	backdrop-filter: blur(12px);
}

.site-header__inner { display: flex; min-height: var(--header-height); align-items: center; justify-content: space-between; gap: 24px; }
.site-branding { position: relative; z-index: 102; flex: 0 1 270px; }
.site-branding__link,
.site-branding .custom-logo-link { display: flex; width: fit-content; align-items: center; padding: 0; background: var(--color-primary); }
.site-branding__logo,
.site-branding .custom-logo { width: min(100%, 233px); max-height: 30px; object-fit: contain; object-position: left center; }

.menu-toggle {
	position: relative;
	z-index: 102;
	display: inline-flex;
	min-width: 48px;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--color-white);
	cursor: pointer;
}
.menu-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.menu-toggle__icon { display: grid; width: 26px; gap: 5px; }
.menu-toggle__icon span { display: block; height: 2px; background: currentcolor; transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
	position: fixed;
	inset: var(--header-height) 0 0;
	display: none;
	padding: 32px var(--gutter);
	background: var(--color-primary);
	overflow-y: auto;
}
.site-nav.is-open { display: block; }
.site-nav__list,
.footer-nav__list,
.social-nav__list { margin: 0; padding: 0; list-style: none; }
.site-nav__list { display: grid; gap: 4px; }
.site-nav__list a { display: flex; min-height: 52px; align-items: center; color: var(--color-white); font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.site-nav__list a:hover,
.site-nav__list a:focus-visible { color: rgb(255 255 255 / 72%); }
.site-nav__cta { width: 100%; margin-top: 24px; }
.site-nav .site-nav__cta { border-color: #000; background: #000; color: var(--color-white); text-transform: uppercase; }
.site-nav .site-nav__cta:hover,
.site-nav .site-nav__cta:focus-visible { border-color: #191919; background: #191919; color: var(--color-white); }

.button,
button.button,
input[type="submit"] {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.45rem;
	border: 2px solid var(--color-primary);
	border-radius: 999px;
	background: var(--color-primary);
	color: var(--color-white);
	font-family: var(--font-heading);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.055em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover,
input[type="submit"]:hover { border-color: var(--color-primary-dark); background: var(--color-primary-dark); color: var(--color-white); transform: translateY(-2px); }
.button--small { min-height: 44px; padding-inline: 1.2rem; font-size: 0.78rem; }
.button--outline { background: transparent; color: var(--color-primary); }
.button--outline:hover { color: var(--color-white); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 2rem; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; font-family: var(--font-heading); font-weight: 700; text-decoration: none; }

.eyebrow { margin-bottom: 1rem; color: var(--color-secondary); font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; line-height: 1.3; text-transform: uppercase; }
.section--dark .eyebrow { color: #85d0dd; }

.hero { position: relative; display: grid; min-height: clamp(240px, 42vw, 360px); place-items: center; overflow: hidden; background-color: #0d0e10; background-image: url("../images/homepage-sled.webp"); background-position: center; background-repeat: no-repeat; background-size: cover; }
.hero__content { position: relative; z-index: 1; display: flex; width: min(100% - 32px, 1120px); flex-direction: column; align-items: center; transform: translateY(-10px); text-align: center; }
.hero__insurance { width: clamp(58px, 8vw, 145px); }
.hero__heading { margin: clamp(12px, 2.2vw, 30px) 0 0; color: var(--color-white); font-size: clamp(1.2rem, 3.35vw, 4rem); font-weight: 700; letter-spacing: 0.025em; line-height: 1.08; text-shadow: 0 2px 16px rgb(0 0 0 / 34%); text-transform: uppercase; }
.hero__heading span { display: block; white-space: nowrap; }
.hero__heading strong { color: #2678dc; font: inherit; }
.hero__scroll { position: absolute; bottom: clamp(8px, 1.7vw, 28px); left: 50%; display: grid; width: 44px; height: 44px; place-items: center; color: var(--color-white); transform: translateX(-50%); }
.hero__scroll:hover,
.hero__scroll:focus-visible { color: #2678dc; }
.hero__scroll svg { width: 24px; height: 24px; fill: currentcolor; }
.section-media { position: relative; min-height: 320px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.section-media img,
.section-media video,
.section-media iframe { width: 100%; height: 100%; object-fit: cover; }
.media-placeholder { background: linear-gradient(145deg, var(--color-secondary), var(--color-primary)); }
.media-placeholder::after { position: absolute; inset: 18px; border: 1px solid rgb(255 255 255 / 26%); border-radius: calc(var(--radius) - 5px); content: ""; }

.trust-strip { position: relative; z-index: 2; background: var(--color-primary); color: var(--color-white); }
.trust-strip__grid { display: grid; }
.trust-strip__grid > div { display: grid; padding: 24px 0; border-bottom: 1px solid rgb(255 255 255 / 18%); }
.trust-strip__grid > div:last-child { border-bottom: 0; }
.trust-strip strong { font-family: var(--font-heading); font-size: 1.05rem; }
.trust-strip span { color: rgb(255 255 255 / 75%); font-size: 0.92rem; }

.section { padding-block: var(--section-space); }
.section--pale { background: var(--color-pale); }
.section--dark { background: var(--color-dark); color: var(--color-white); }
.section--dark .prose { color: rgb(255 255 255 / 78%); }
.section-heading { margin-bottom: clamp(2.25rem, 5vw, 4.5rem); }
.section-heading--row { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; max-width: none; }
.section-copy h2,
.section-heading h2 { max-width: 13ch; }
.split-layout { display: grid; gap: 38px; align-items: center; }
.section-media { aspect-ratio: 4 / 3; min-height: 280px; }
.section-media--portrait { aspect-ratio: 4 / 5; max-height: 760px; }
.section-copy .button { margin-top: 2rem; }
.homepage-intro__heading { max-width: 22ch; font-size: clamp(1.7rem, 3.2vw, 2.75rem); line-height: 1.18; }
.homepage-facility { text-align: center; }
.homepage-facility .section-copy { margin-inline: auto; }
.homepage-facility .section-copy h2 { max-width: none; }
.prose { color: var(--color-muted); }
.prose > *:last-child { margin-bottom: 0; }
.prose h2,
.prose h3,
.prose h4 { margin-top: 1.75em; color: var(--color-ink); }
.prose ul,
.prose ol { padding-left: 1.4em; }
.prose img { margin-block: 2rem; border-radius: var(--radius-small); }
.prose blockquote { margin: 2.5rem 0; padding: 1.5rem 0 1.5rem 1.5rem; border-left: 5px solid var(--color-secondary); color: var(--color-ink); font-size: 1.2rem; }

.feature-grid,
.result-grid,
.post-grid { display: grid; gap: 24px; }
.feature-card { padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid var(--color-line); border-radius: var(--radius); background: var(--color-white); }
.feature-card::before { display: block; width: 46px; height: 5px; margin-bottom: 2rem; border-radius: 99px; background: var(--color-secondary); content: ""; }
.feature-card p { margin-bottom: 0; color: var(--color-muted); }
.result-card,
.post-card { overflow: hidden; border-radius: var(--radius); background: var(--color-white); box-shadow: var(--shadow); }
.result-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.result-card__media { aspect-ratio: 16 / 10; background: var(--color-dark); }
.result-card__media .wp-video,
.result-card__media .mejs-container,
.result-card__media video { width: 100% !important; height: 100% !important; }
.result-card__body { padding: 1.5rem; }
.result-card__body p { margin-bottom: 0; color: var(--color-muted); }
.result-card blockquote { margin: 0; }
.result-card blockquote p::before { color: var(--color-primary); content: "“"; font-family: Georgia, serif; font-size: 2.5rem; font-weight: 700; line-height: 0; vertical-align: -0.32em; }
.homepage-journey { text-align: center; }
.homepage-journey p { margin: 0; font-weight: 600; }
.homepage-journey .button-row { justify-content: center; }
.section--compact { padding-top: 0; padding-bottom: var(--section-space); }
.result-card--spotlight h3 { margin: 0; font-size: clamp(1.05rem, 1.8vw, 1.35rem); }

.google-reviews { overflow: hidden; }
.google-reviews__header { display: flex; flex-direction: column; gap: 24px; margin-bottom: clamp(2rem, 5vw, 4rem); }
.google-reviews__header h2 { margin-bottom: 0; }
.google-reviews__summary { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--color-muted); }
.google-reviews__summary strong { color: var(--color-ink); font-family: var(--font-heading); font-size: 1.15rem; }
.review-stars { color: #f4b400; font-size: 1.05rem; letter-spacing: 0.08em; line-height: 1; }
.review-slider { position: relative; }
.review-slider__controls { display: flex; justify-content: flex-end; gap: 10px; margin-bottom: 18px; }
.review-slider__button { display: grid; width: 46px; height: 46px; padding: 0; place-items: center; border: 1px solid var(--color-line); border-radius: 50%; background: var(--color-white); color: var(--color-primary); cursor: pointer; transition: border-color 180ms ease, background 180ms ease, color 180ms ease; }
.review-slider__button:hover,
.review-slider__button:focus-visible { border-color: var(--color-primary); background: var(--color-primary); color: var(--color-white); }
.review-slider__button:disabled { border-color: var(--color-line); background: #f4f6f7; color: #9aa2a8; cursor: not-allowed; }
.review-slider__button svg { width: 24px; height: 24px; fill: currentcolor; }
.review-slider__track { display: flex; gap: 24px; padding: 4px 4px 34px; margin-inline: -4px; overflow-x: auto; scroll-padding-inline: 4px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.review-slider__track::-webkit-scrollbar { display: none; }
.review-card { display: flex; flex: 0 0 min(88%, 420px); flex-direction: column; padding: clamp(1.5rem, 3vw, 2rem); border: 1px solid var(--color-line); border-radius: var(--radius); background: var(--color-white); box-shadow: var(--shadow); scroll-snap-align: start; }
.review-card__topline { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 1.5rem; }
.review-card__source { color: #4285f4; font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700; }
.review-card blockquote { margin: 0; }
.review-card__content { color: var(--color-muted); }
.review-card__content > *:last-child { margin-bottom: 0; }
.review-card__footer { display: grid; gap: 2px; margin-top: auto; padding-top: 1.5rem; }
.review-card__footer strong { color: var(--color-ink); font-family: var(--font-heading); }
.review-card__footer span { color: var(--color-muted); font-size: 0.85rem; }
.google-reviews__link { margin: 0; }

.post-card { display: flex; flex-direction: column; }
.post-card__media { display: block; overflow: hidden; background: var(--color-pale); }
.post-card__media img,
.post-card__placeholder { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 300ms ease; }
.post-card__placeholder { background: linear-gradient(145deg, var(--color-secondary), var(--color-primary)); }
.post-card:hover .post-card__media img { transform: scale(1.025); }
.post-card__body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 1.5rem; }
.post-card__meta,
.article-header__meta { margin-bottom: 0.8rem; color: var(--color-secondary); font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.post-card__title { font-size: clamp(1.35rem, 2.3vw, 1.75rem); }
.post-card__title a { color: var(--color-ink); text-decoration: none; }
.post-card__excerpt { color: var(--color-muted); }
.post-card__body .text-link { margin-top: auto; }

.contact-section { background: var(--color-primary); color: var(--color-white); }
.contact-section .eyebrow { color: #a9dfE8; }
.contact-section .prose { color: rgb(255 255 255 / 80%); }
.contact-section__lead { color: var(--color-white); font-size: clamp(1.15rem, 1.7vw, 1.4rem); line-height: 1.45; }
.contact-section__lead strong { font-weight: 700; }
.contact-section__subheading { display: block; margin: 0 0 5px; color: var(--color-white); font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.09em; line-height: 1.3; text-transform: uppercase; }
.contact-section__grid { display: grid; gap: 42px; }
.contact-details { display: grid; gap: 8px; margin-top: 2rem; }
.contact-details a { width: fit-content; color: var(--color-white); font-weight: 600; }
.contact-social { margin-top: 1.5rem; }
.contact-social ul { display: flex; gap: 12px; margin: 0; padding: 0; list-style: none; }
.contact-social a { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgb(255 255 255 / 55%); border-radius: 50%; color: var(--color-white); transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease; }
.contact-social a:hover,
.contact-social a:focus-visible { border-color: var(--color-white); background: var(--color-white); color: var(--color-primary); transform: translateY(-2px); }
.contact-social svg { width: 21px; height: 21px; fill: currentcolor; }
.contact-form-shell { padding: clamp(1.5rem, 4vw, 3rem); border-radius: var(--radius); background: var(--color-white); color: var(--color-ink); box-shadow: var(--shadow); }
.contact-form-shell label { color: var(--color-ink); font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; }
.contact-form-shell input:not([type="submit"]),
.contact-form-shell textarea,
.contact-form-shell select { width: 100%; min-height: 52px; padding: 0.8rem 1rem; border: 1px solid #cbd4da; border-radius: var(--radius-small); background: #f7f9fa; color: var(--color-ink); outline: 0; transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.contact-form-shell input:not([type="submit"]):focus,
.contact-form-shell textarea:focus,
.contact-form-shell select:focus { border-color: var(--color-primary); background: var(--color-white); box-shadow: 0 0 0 3px rgb(21 80 151 / 13%); }
.contact-form-shell textarea { min-height: 170px; resize: vertical; }
.contact-form-shell ::placeholder { color: #7b858d; opacity: 1; }
.contact-form-shell .ff-el-group { margin-bottom: 20px; }
.contact-form-shell .ff-el-input--label { margin-bottom: 7px; }
.contact-form-shell .ff-el-input--label.ff-el-is-required label::after { color: #b42318; }
.contact-form-shell .ff-el-is-error .ff-el-form-control { border-color: #b42318; }
.contact-form-shell .text-danger { color: #b42318; font-size: 0.82rem; }
.contact-form-shell .ff-btn-submit { display: inline-flex; width: 100%; min-height: 52px; align-items: center; justify-content: center; padding: 0.8rem 1.5rem; border: 2px solid var(--color-primary); border-radius: 999px; background: var(--color-primary); color: var(--color-white); font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700; letter-spacing: 0.055em; text-transform: uppercase; cursor: pointer; transition: background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.contact-form-shell .ff-btn-submit:hover,
.contact-form-shell .ff-btn-submit:focus-visible { border-color: var(--color-primary-dark); background: var(--color-primary-dark); transform: translateY(-2px); }

.page-hero,
.article-header { padding-block: clamp(4rem, 8vw, 8rem); background: linear-gradient(135deg, var(--color-pale), #fff); }
.page-hero > .site-container,
.article-header > .site-container { max-width: var(--site-max); }
.page-hero--compact h1,
.article-header h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
.article-header__intro,
.archive-description { max-width: var(--reading-width); }
.article-header__intro { color: var(--color-muted); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.article-featured-image { margin-top: clamp(-3rem, -4vw, -1.5rem); }
.article-featured-image img { width: 100%; max-height: 780px; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.section--article { padding-top: clamp(3rem, 6vw, 6rem); }
.entry-content { font-size: clamp(1rem, 1.3vw, 1.12rem); }
.article-footer { padding-bottom: var(--section-space); }
.post-navigation .nav-links { display: grid; gap: 16px; }
.post-navigation a { display: grid; min-height: 80px; padding: 1.2rem; border: 1px solid var(--color-line); border-radius: var(--radius-small); color: var(--color-ink); text-decoration: none; }
.post-navigation span { color: var(--color-muted); font-size: 0.8rem; }
.navigation.pagination { margin-top: 3rem; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; border: 1px solid var(--color-line); border-radius: 99px; text-decoration: none; }
.page-numbers.current { border-color: var(--color-primary); background: var(--color-primary); color: var(--color-white); }
.page-numbers.prev,
.page-numbers.next { width: 44px; padding: 0; }
.page-numbers svg { width: 20px; height: 20px; fill: currentcolor; }
.not-found { display: grid; min-height: 65vh; align-items: center; padding-block: var(--section-space); }
.not-found h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
.empty-state { padding-block: 2rem; }

.page-intro { margin-bottom: clamp(2.5rem, 5vw, 5rem); }
.testimonial-grid { display: grid; gap: 24px; align-items: stretch; }
.testimonial-card { display: flex; height: 100%; flex-direction: column; overflow: hidden; border: 1px solid var(--color-line); border-radius: var(--radius); background: var(--color-white); box-shadow: var(--shadow); }
.testimonial-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.testimonial-card__body { display: flex; flex: 1; flex-direction: column; padding: clamp(1.4rem, 3vw, 2rem); }
.testimonial-card blockquote { margin: 0; }
.testimonial-card blockquote p { margin: 0; color: var(--color-muted); }
.testimonial-card__name { margin: auto 0 0; padding-top: 1.25rem; color: var(--color-primary); font-family: var(--font-heading); font-weight: 700; }
.testimonial-cta { background: var(--color-pale); text-align: center; }
.testimonial-cta .button { margin-top: 1rem; }

.site-footer { padding-block: clamp(3.5rem, 7vw, 6rem); background: #000; color: var(--color-white); }
.site-footer__inner { display: flex; flex-direction: column; align-items: center; gap: clamp(1.5rem, 3vw, 2.25rem); text-align: center; }
.site-footer__logo-link { display: flex; width: 100%; justify-content: center; }
.site-footer__logo { display: block; width: min(100%, 310px); }
.site-footer__insurance { width: 108px; height: auto; }
.footer-nav__list,
.social-nav__list { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.footer-nav__list { gap: 14px; }
.footer-nav__list li:not(:last-child)::after { margin-left: 14px; color: rgb(255 255 255 / 55%); content: "|"; }
.footer-nav a,
.site-footer__legal a { color: var(--color-white); text-decoration: none; }
.footer-nav a { font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-nav a:hover,
.footer-nav a:focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible { color: var(--color-primary); }
.site-footer__tagline { margin: 0; font-family: var(--font-heading); font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; }
.social-nav__list { gap: 12px; }
.social-nav a { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgb(255 255 255 / 50%); border-radius: 50%; color: var(--color-white); transition: border-color 180ms ease, color 180ms ease, transform 180ms ease; }
.social-nav a:hover,
.social-nav a:focus-visible { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); }
.social-nav svg { width: 22px; height: 22px; fill: currentcolor; }
.site-footer__legal { display: grid; gap: 6px; color: rgb(255 255 255 / 65%); font-size: 0.85rem; }
.site-footer__legal p { margin: 0; }

@media (min-width: 600px) {
	:root { --gutter: 32px; }
	.trust-strip__grid { grid-template-columns: repeat(3, 1fr); }
	.trust-strip__grid > div { padding: 25px 20px; border-right: 1px solid rgb(255 255 255 / 18%); border-bottom: 0; }
	.trust-strip__grid > div:first-child { padding-left: 0; }
	.trust-strip__grid > div:last-child { padding-right: 0; border-right: 0; }
	.feature-grid,
	.result-grid,
	.post-grid,
	.testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.section-heading--row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
	.post-navigation .nav-links { grid-template-columns: repeat(2, 1fr); }
	.nav-next { text-align: right; }
	.review-card { flex-basis: calc((100% - 24px) / 2); }
}

@media (min-width: 900px) {
	:root { --gutter: 48px; }
	.hero { min-height: clamp(420px, 28vw, 540px); }
	.split-layout { grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr); gap: clamp(50px, 8vw, 140px); }
	.split-layout--media-first .section-copy { grid-column: 2; grid-row: 1; }
	.split-layout--media-first .section-media { grid-column: 1; grid-row: 1; }
	.split-layout--reverse .section-copy { grid-column: 2; grid-row: 1; }
	.split-layout--reverse .section-media { grid-column: 1; grid-row: 1; }
	.feature-grid,
	.result-grid,
	.post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.contact-section__grid { grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr); gap: clamp(60px, 9vw, 170px); align-items: start; }
	.google-reviews__header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
	.review-card { flex-basis: calc((100% - 48px) / 3); }
}

@media (min-width: 1100px) {
	:root { --header-height: 92px; }
	body.menu-is-open { overflow: visible; }
	.menu-toggle { display: none; }
	.site-nav { position: static; display: flex; flex: 1; align-items: center; justify-content: flex-end; gap: clamp(20px, 3vw, 44px); padding: 0; overflow: visible; }
	.site-nav__list { display: flex; align-items: center; gap: clamp(12px, 1.7vw, 32px); }
	.site-nav__list a { min-height: 44px; font-size: 0.88rem; }
	.site-nav__cta { width: auto; margin-top: 0; }
}

@media (min-width: 1500px) {
	:root { --gutter: 80px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
	.site-header,
	.site-footer,
	.button,
	.post-navigation { display: none !important; }
	.site-container { width: 100%; }
	body { color: #000; }
}
