/* =========================================================
   Martinez Spray Deck — main stylesheet
   Elegant, minimalist design: warm paper tones, charcoal ink,
   bronze accent, Marcellus display serif + Inter body.
   ========================================================= */

:root {
	--paper: #f4f1ea;
	--paper-soft: #ece8de;
	--ink: #1a1712;
	--ink-soft: #625c50;
	--line: rgba(26, 23, 18, 0.14);
	--line-light: rgba(244, 241, 234, 0.2);
	--accent: #b07a45;
	--dark: #14110d;
	--font-display: 'Marcellus', 'Georgia', serif;
	--font-body: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
	--container: 1200px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */

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

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

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}

p {
	margin: 0 0 1.2em;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.12;
	margin: 0 0 0.5em;
	letter-spacing: 0.01em;
}

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

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--ink);
	color: var(--paper);
	padding: 0.6em 1.2em;
}

.skip-link:focus {
	left: 0;
}

/* ---------- Layout helpers ---------- */

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 48px);
}

.container--narrow {
	max-width: 800px;
}

.section {
	padding: clamp(72px, 10vw, 140px) 0;
}

.section--dark {
	background: var(--dark);
	color: var(--paper);
}

.section-title {
	font-size: clamp(2rem, 4.2vw, 3.4rem);
	max-width: 18em;
}

.section-head {
	margin-bottom: clamp(40px, 6vw, 72px);
}

.section-head--split {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.section-head__note {
	max-width: 380px;
	color: var(--ink-soft);
	font-size: 0.95rem;
	margin: 0;
}

/* Small uppercase label */
.kicker {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 1.4em;
}

.kicker--light {
	color: var(--accent);
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 1em 2.4em;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: var(--paper);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}

.btn--light {
	background: var(--paper);
	border-color: var(--paper);
	color: var(--ink);
}

.btn--light:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}

.btn--ghost {
	background: transparent;
	border-color: rgba(244, 241, 234, 0.5);
	color: var(--paper);
}

.btn--ghost:hover {
	background: var(--paper);
	border-color: var(--paper);
	color: var(--ink);
}

.btn--small {
	padding: 0.7em 1.6em;
}

.text-link {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--accent);
	padding-bottom: 0.4em;
	color: var(--ink);
}

.text-link:hover {
	color: var(--accent);
}

/* Reveal-on-scroll */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	html {
		scroll-behavior: auto;
	}
}

/* ---------- Header ---------- */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 14px clamp(20px, 4vw, 48px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

/* Transparent over the front-page hero until scrolled */
.site-header--overlay:not(.is-scrolled) {
	background: transparent;
	border-bottom-color: var(--line-light);
	color: var(--paper);
}

.site-header.is-scrolled {
	box-shadow: 0 6px 24px rgba(26, 23, 18, 0.06);
}

.site-brand {
	display: flex;
	align-items: center;
	gap: 16px;
}

.site-brand .brand-icon {
	width: 112px;
	height: auto;
	flex-shrink: 0;
}

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

.site-brand__name {
	font-family: var(--font-display);
	font-size: 1.9rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.site-brand__sub {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--accent);
	margin-top: 4px;
}

@media (max-width: 480px) {
	.site-brand .brand-icon {
		width: 74px;
	}

	.site-brand__name {
		font-size: 1.4rem;
	}
}

.site-nav {
	display: flex;
	align-items: center;
	gap: clamp(20px, 3vw, 44px);
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: clamp(18px, 2.4vw, 36px);
}

.nav-menu a {
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 0.4em 0;
	border-bottom: 1px solid transparent;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
	border-bottom-color: var(--accent);
	color: var(--accent);
}

.site-nav__contact {
	display: flex;
	align-items: center;
	gap: 20px;
}

.site-nav__phone {
	font-family: var(--font-display);
	font-size: 1.1rem;
	letter-spacing: 0.06em;
}

.site-nav__phone:hover {
	color: var(--accent);
}

/* The header button needs to stay visible over the hero */
.site-header--overlay:not(.is-scrolled) .btn--small {
	background: transparent;
	border-color: rgba(244, 241, 234, 0.55);
	color: var(--paper);
}

.site-header--overlay:not(.is-scrolled) .btn--small:hover {
	background: var(--paper);
	color: var(--ink);
}

/* Mobile toggle */
.nav-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 10px 4px;
	flex-direction: column;
	gap: 7px;
}

.nav-toggle__bar {
	display: block;
	width: 26px;
	height: 1.5px;
	background: currentColor;
	transition: transform 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
	transform: translateY(4.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
	transform: translateY(-4.5px) rotate(-45deg);
}

@media (max-width: 900px) {
	.nav-toggle {
		display: flex;
	}

	.site-nav {
		position: fixed;
		inset: 0;
		background: var(--dark);
		color: var(--paper);
		flex-direction: column;
		justify-content: center;
		gap: 40px;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.35s var(--ease), visibility 0.35s;
	}

	.site-nav.is-open {
		opacity: 1;
		visibility: visible;
	}

	.nav-menu {
		flex-direction: column;
		align-items: center;
		gap: 26px;
	}

	.nav-menu a {
		font-family: var(--font-display);
		font-size: 1.5rem;
		letter-spacing: 0.12em;
		text-transform: none;
	}

	.site-nav__contact {
		flex-direction: column;
		gap: 18px;
	}

	.site-nav__contact .btn--small {
		background: transparent;
		border-color: rgba(244, 241, 234, 0.55);
		color: var(--paper);
	}

	body.nav-open {
		overflow: hidden;
	}

	/* Keep the toggle above the open panel */
	.nav-toggle {
		position: relative;
		z-index: 110;
	}

	body.nav-open .nav-toggle {
		color: var(--paper);
	}
}

/* ---------- Hero ---------- */

.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	color: var(--paper);
}

/* WebGL water canvas sits over the CSS background, under the scrim */
.hero__water {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.2s var(--ease);
}

.hero__water.is-ready {
	opacity: 1;
}

.hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(20, 17, 13, 0.55), rgba(20, 17, 13, 0.35) 45%, rgba(20, 17, 13, 0.72));
}

.hero__inner {
	position: relative;
	width: 100%;
	padding-top: 120px;
	padding-bottom: 80px;
}

.hero__title {
	font-size: clamp(3rem, 9vw, 7rem);
	line-height: 1.02;
	margin: 0 0 0.35em;
	max-width: 9em;
}

.hero__title em {
	font-style: italic;
	color: var(--accent);
}

.hero__sub {
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	max-width: 34em;
	color: rgba(244, 241, 234, 0.85);
	margin-bottom: 2.4em;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hero__sound {
	position: absolute;
	right: 28px;
	bottom: 28px;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(20, 17, 13, 0.35);
	border: 1px solid rgba(244, 241, 234, 0.4);
	border-radius: 50%;
	color: var(--paper);
	transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.hero__sound svg {
	width: 20px;
	height: 20px;
}

.hero__sound:hover {
	background: var(--paper);
	color: var(--ink);
}

.hero__scroll {
	position: absolute;
	bottom: 36px;
	left: 50%;
	width: 1px;
	height: 56px;
	background: rgba(244, 241, 234, 0.3);
	overflow: hidden;
}

.hero__scroll span {
	position: absolute;
	top: -50%;
	left: 0;
	width: 100%;
	height: 50%;
	background: var(--paper);
	animation: scroll-hint 2.2s var(--ease) infinite;
}

@keyframes scroll-hint {
	0% { top: -50%; }
	100% { top: 110%; }
}

/* ---------- Marquee ---------- */

.marquee {
	background: var(--dark);
	color: var(--paper);
	overflow: hidden;
	padding: 18px 0;
	border-top: 1px solid var(--line-light);
}

.marquee__track {
	display: flex;
	align-items: center;
	gap: 2.4em;
	width: max-content;
	white-space: nowrap;
	font-family: var(--font-display);
	font-size: 0.95rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	animation: marquee 28s linear infinite;
}

.marquee__dot {
	color: var(--accent);
}

@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.marquee__track {
		animation: none;
	}
}

/* ---------- About ---------- */

.about__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(40px, 6vw, 96px);
	align-items: center;
}

.about__text p {
	color: var(--ink-soft);
	max-width: 34em;
}

.about__text .text-link {
	margin-top: 1em;
}

.about__media {
	position: relative;
}

.about__media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.about__badge {
	position: absolute;
	left: -28px;
	bottom: 40px;
	background: var(--dark);
	color: var(--paper);
	padding: 26px 30px;
	max-width: 220px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.about__badge-num {
	font-family: var(--font-display);
	font-size: 2.6rem;
	line-height: 1;
	color: var(--accent);
}

.about__badge-label {
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	line-height: 1.6;
}

@media (max-width: 900px) {
	.about__grid {
		grid-template-columns: 1fr;
	}

	.about__badge {
		left: 16px;
	}
}

/* ---------- Services (front page) ---------- */

.services .section-title {
	color: var(--paper);
}

.services__list {
	border-top: 1px solid var(--line-light);
}

.service-row {
	display: grid;
	grid-template-columns: 70px 1fr 180px 60px;
	gap: clamp(20px, 3vw, 48px);
	align-items: center;
	padding: clamp(28px, 4vw, 44px) 0;
	border-bottom: 1px solid var(--line-light);
	color: var(--paper);
}

.service-row__num {
	font-family: var(--font-display);
	font-size: 1rem;
	letter-spacing: 0.2em;
	color: var(--accent);
}

.service-row__title {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	margin-bottom: 0.35em;
	transition: color 0.3s var(--ease);
}

.service-row__blurb {
	display: block;
	font-size: 0.92rem;
	color: rgba(244, 241, 234, 0.6);
	max-width: 44em;
	line-height: 1.7;
}

.service-row__thumb {
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.service-row__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(35%);
	transform: scale(1.01);
	transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.service-row__arrow {
	font-size: 1.5rem;
	justify-self: end;
	transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}

.service-row:hover .service-row__title {
	color: var(--accent);
}

.service-row:hover .service-row__thumb img {
	transform: scale(1.08);
	filter: grayscale(0%);
}

.service-row:hover .service-row__arrow {
	transform: translateX(8px);
	color: var(--accent);
}

@media (max-width: 760px) {
	.service-row {
		grid-template-columns: 48px 1fr;
	}

	.service-row__thumb,
	.service-row__arrow {
		display: none;
	}
}

/* ---------- Works grid (front page) ---------- */

.work__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(14px, 2vw, 28px);
}

.work-card {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.work-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--ease);
}

.work-card__label {
	position: absolute;
	left: 18px;
	bottom: 16px;
	background: rgba(20, 17, 13, 0.82);
	color: var(--paper);
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	padding: 0.7em 1.2em;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.work-card:hover img {
	transform: scale(1.06);
}

.work-card:hover .work-card__label {
	opacity: 1;
	transform: none;
}

.work__more {
	text-align: center;
	margin-top: clamp(40px, 5vw, 64px);
}

@media (max-width: 760px) {
	.work__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
	background: var(--dark);
	color: var(--paper);
	padding: clamp(150px, 20vw, 220px) 0 clamp(56px, 8vw, 96px);
}

.page-hero__title {
	font-size: clamp(2.2rem, 5vw, 4rem);
	max-width: 18em;
	margin-bottom: 0.3em;
}

.page-hero__sub {
	color: rgba(244, 241, 234, 0.7);
	max-width: 40em;
	margin: 0;
}

.page-hero__phone {
	display: inline-block;
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 3.4vw, 2.4rem);
	color: var(--accent);
	margin-top: 0.4em;
}

.page-hero__phone:hover {
	color: var(--paper);
}

/* ---------- Services page ---------- */

.service-detail--alt {
	background: var(--paper-soft);
}

.service-detail__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: clamp(40px, 6vw, 96px);
	align-items: start;
}

.service-detail__text p {
	color: var(--ink-soft);
	max-width: 34em;
}

.service-detail__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 28px;
	margin-top: 1.6em;
}

.service-detail__media {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.service-detail__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.service-detail__media img:first-child {
	grid-column: 1 / -1;
	aspect-ratio: 16 / 9;
}

@media (max-width: 860px) {
	.service-detail__grid {
		grid-template-columns: 1fr;
	}
}

/* ---------- Gallery page ---------- */

.gallery-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: clamp(32px, 5vw, 56px);
}

.gallery-filter__btn {
	background: none;
	border: 1px solid var(--line);
	color: var(--ink-soft);
	padding: 0.7em 1.6em;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	transition: all 0.3s var(--ease);
}

.gallery-filter__btn:hover {
	border-color: var(--ink);
	color: var(--ink);
}

.gallery-filter__btn.is-active {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--paper);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(14px, 2vw, 24px);
}

.gallery-item {
	position: relative;
	display: block;
	padding: 0;
	border: 0;
	background: var(--paper-soft);
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--ease);
}

.gallery-item__label {
	position: absolute;
	left: 14px;
	bottom: 12px;
	background: rgba(20, 17, 13, 0.82);
	color: var(--paper);
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 0.6em 1.1em;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.gallery-item:hover img {
	transform: scale(1.06);
}

.gallery-item:hover .gallery-item__label {
	opacity: 1;
	transform: none;
}

.gallery-item.is-hidden {
	display: none;
}

@media (max-width: 760px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.gallery-grid {
		grid-template-columns: 1fr;
	}
}

/* ---------- Lightbox ---------- */

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(15, 13, 10, 0.94);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(16px, 4vw, 56px);
}

.lightbox[hidden] {
	display: none;
}

.lightbox__figure {
	margin: 0;
	max-width: min(1100px, 92vw);
	text-align: center;
}

.lightbox__figure img {
	max-width: 100%;
	max-height: 80vh;
	width: auto;
	height: auto;
	margin: 0 auto;
	object-fit: contain;
}

.lightbox__caption {
	color: rgba(244, 241, 234, 0.7);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	margin-top: 16px;
}

.lightbox__close,
.lightbox__nav {
	position: absolute;
	background: none;
	border: 1px solid rgba(244, 241, 234, 0.3);
	color: var(--paper);
	width: 52px;
	height: 52px;
	font-size: 1.3rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s var(--ease);
}

.lightbox__close:hover,
.lightbox__nav:hover {
	background: var(--paper);
	color: var(--ink);
}

.lightbox__close {
	top: 24px;
	right: 24px;
	font-size: 1.7rem;
}

.lightbox__nav--prev {
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
}

.lightbox__nav--next {
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
}

body.lightbox-open {
	overflow: hidden;
}

/* ---------- Get Quote page ---------- */

.quote__grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: clamp(40px, 6vw, 96px);
	align-items: start;
}

.quote__info {
	background: var(--paper-soft);
	padding: clamp(28px, 4vw, 48px);
}

.quote__info-title {
	font-size: 1.5rem;
}

.quote__facts {
	margin: 0;
}

.quote__facts dt {
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--accent);
	margin-top: 1.6em;
}

.quote__facts dd {
	margin: 0.3em 0 0;
	font-size: 1rem;
}

.quote__facts a:hover {
	color: var(--accent);
}

.quote__sms {
	display: inline-block;
	margin-top: 4px;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	border-bottom: 1px solid var(--accent);
	padding-bottom: 2px;
}

.quote__sms:hover {
	color: var(--ink);
	border-color: var(--ink);
}

.quote__form-wrap h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	margin-bottom: 1em;
}

.quote-form label {
	display: block;
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--ink-soft);
	margin-bottom: 0.7em;
}

.quote-form input,
.quote-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	background: #fff;
	padding: 0.9em 1.1em;
	font-family: inherit;
	font-size: 0.95rem;
	color: var(--ink);
	transition: border-color 0.3s var(--ease);
}

.quote-form input:focus,
.quote-form textarea:focus {
	outline: none;
	border-color: var(--accent);
}

.quote-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.quote-form p {
	margin-bottom: 1.4em;
}

/* Honeypot — hidden from humans */
.quote-form__hp {
	position: absolute !important;
	left: -9999px;
}

.form-notice {
	padding: 1em 1.4em;
	font-size: 0.9rem;
	border-left: 3px solid;
	margin-bottom: 2em;
}

.form-notice--ok {
	background: #eef3e8;
	border-color: #6d8f4e;
}

.form-notice--error {
	background: #f6e9e4;
	border-color: #b3512f;
}

@media (max-width: 860px) {
	.quote__grid {
		grid-template-columns: 1fr;
	}

	.quote-form__row {
		grid-template-columns: 1fr;
	}
}

/* ---------- Blog / generic entries ---------- */

.entry-content a {
	color: var(--accent);
	text-decoration: underline;
}

.entry-summary {
	border-bottom: 1px solid var(--line);
	padding: 2em 0;
}

.entry-summary__title {
	font-size: 1.6rem;
}

/* ---------- Footer ---------- */

.site-footer {
	background: var(--dark);
	color: rgba(244, 241, 234, 0.72);
	padding-top: clamp(64px, 8vw, 110px);
}

.site-footer a:hover {
	color: var(--accent);
}

.site-footer__cta {
	text-align: center;
	border-bottom: 1px solid var(--line-light);
	padding-bottom: clamp(48px, 7vw, 88px);
	margin-bottom: clamp(48px, 6vw, 80px);
}

.site-footer__phone {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 6vw, 4.4rem);
	color: var(--paper);
	margin: 0.1em 0 0.5em;
}

.site-footer__phone:hover {
	color: var(--accent);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	padding-bottom: clamp(40px, 5vw, 64px);
}

.site-footer__col--brand .brand-icon {
	width: 120px;
	height: auto;
	margin-bottom: 18px;
}

.site-footer__brand {
	font-family: var(--font-display);
	font-size: 1.5rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--paper);
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.site-footer__brand span {
	font-family: var(--font-body);
	font-size: 0.58rem;
	font-weight: 600;
	letter-spacing: 0.34em;
	color: var(--accent);
	margin-top: 4px;
}

.site-footer__col p {
	font-size: 0.92rem;
}

.site-footer__col h4 {
	font-family: var(--font-body);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--paper);
	margin: 0 0 0.9em;
}

.site-footer__col h4 + p + h4 {
	margin-top: 2em;
}

.site-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__links li {
	margin-bottom: 0.5em;
	font-size: 0.92rem;
}

.site-footer__bottom {
	border-top: 1px solid var(--line-light);
	padding: 26px 0;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
}

.site-footer__bottom p {
	margin: 0;
}

@media (max-width: 760px) {
	.site-footer__grid {
		grid-template-columns: 1fr;
	}
}
