/*
Theme Name: Haven Painting
Theme URI: https://havenpainting.example/
Author: Haven Painting
Author URI: https://havenpainting.example/
Description: A premium custom theme for Haven Painting — a family-owned painting company. Deep navy and brush-stroke orange branding, elegant Fraunces/Inter typography, interactive before & after galleries, a multi-step estimate form, process timeline, testimonials, and conversion-focused calls to action throughout. No page builder required.
Version: 1.24.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: havenpaint
Tags: one-column, custom-menu, custom-logo, featured-images, translation-ready
*/

/* =============================================================
   1. Design tokens
   ============================================================= */
:root {
	--hp-navy: #13294B;
	--hp-navy-deep: #0D1E3A;
	--hp-navy-soft: #1D3560;
	--hp-navy-line: #2C4266;
	--hp-orange: #F26B1D;
	--hp-orange-dark: #D9560C;
	--hp-orange-soft: #FDEADD;
	--hp-canvas: #F7F4EF;
	--hp-linen: #EFEAE1;
	--hp-white: #FFFFFF;
	--hp-ink: #1A2333;
	--hp-slate: #5A6675;
	--hp-mist: #8FA3BF;
	--hp-line: #E4DED2;
	--hp-green: #1D7A55;
	--hp-red: #B3362B;
	--hp-font-display: "Source Serif 4", Georgia, serif;
	--hp-font-body: "Inter", system-ui, -apple-system, sans-serif;
	--hp-font-brand: "Montserrat", "Inter", sans-serif;
	--hp-radius: 14px;
	--hp-radius-sm: 9px;
	--hp-shadow: 0 18px 45px -18px rgba(13, 30, 58, 0.28);
	--hp-shadow-sm: 0 8px 22px -10px rgba(13, 30, 58, 0.22);
	--hp-container: 1160px;
	--hp-section-y: clamp(64px, 9vw, 116px);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--hp-font-body);
	font-size: 17px;
	line-height: 1.7;
	color: var(--hp-ink);
	background: var(--hp-canvas);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--hp-orange-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--hp-orange); }
h1, h2, h3, h4 { font-family: var(--hp-font-display); font-weight: 600; line-height: 1.15; color: var(--hp-navy); margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(38px, 5.4vw, 62px); }
h2 { font-size: clamp(30px, 3.8vw, 44px); }
h3 { font-size: clamp(21px, 2.4vw, 26px); }
p { margin: 0 0 1.2em; }
:focus-visible { outline: 3px solid var(--hp-orange); outline-offset: 2px; border-radius: 2px; }
::selection { background: var(--hp-orange); color: #fff; }

.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--hp-navy); color: #fff; padding: 12px 20px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.hp-container { max-width: var(--hp-container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.hp-section { padding: var(--hp-section-y) 0; }
.hp-section--linen { background: var(--hp-linen); }
.hp-section--navy { background: var(--hp-navy); color: var(--hp-canvas); }
.hp-section--navy h2, .hp-section--navy h3 { color: var(--hp-canvas); }
.hp-section--navy p { color: var(--hp-mist); }

/* Eyebrow + heading + spray stroke */
.hp-eyebrow {
	font-family: var(--hp-font-brand); font-weight: 700; font-size: 12px;
	letter-spacing: 0.32em; text-transform: uppercase; color: var(--hp-orange);
	display: block; margin-bottom: 14px;
}
.hp-heading { max-width: 640px; }
.hp-heading--center { margin-left: auto; margin-right: auto; text-align: center; }
.hp-stroke { display: block; margin: 18px 0 0; }
.hp-heading--center .hp-stroke { margin-left: auto; margin-right: auto; }
.hp-lede { font-size: 19px; color: var(--hp-slate); max-width: 620px; }
.hp-heading--center .hp-lede { margin-left: auto; margin-right: auto; }

/* =============================================================
   3. Buttons
   ============================================================= */
.hp-btn {
	position: relative; overflow: hidden;
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--hp-font-body); font-weight: 600; font-size: 16px;
	padding: 15px 28px; border-radius: var(--hp-radius-sm);
	border: 2px solid transparent; cursor: pointer; text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
		transform 0.18s ease, box-shadow 0.22s ease;
}
.hp-btn::before {
	content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 55%;
	background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.32), transparent);
	transform: skewX(-18deg); transition: left 0.55s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
}
.hp-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(13, 30, 58, 0.45); }
.hp-btn:hover::before { left: 125%; }
.hp-btn:active { transform: translateY(1px); box-shadow: none; }
@media (prefers-reduced-motion: reduce) {
	.hp-btn, .hp-btn::before, .hp-nav a::after, .hp-nav, .hp-nav li, .hp-nav__cta { transition: none; }
	.hp-btn:hover { transform: none; }
}
.hp-btn--primary { background: var(--hp-orange); color: #FFF9F4; }
.hp-btn--primary:hover { background: var(--hp-orange-dark); color: #fff; }
.hp-btn--ghost { background: transparent; border-color: var(--hp-navy); color: var(--hp-navy); }
.hp-btn--ghost:hover { background: var(--hp-navy); color: var(--hp-canvas); }
.hp-btn--ghost-light { background: transparent; border-color: rgba(247, 244, 239, 0.55); color: var(--hp-canvas); }
.hp-btn--ghost-light:hover { border-color: var(--hp-orange); color: var(--hp-orange); }
.hp-btn--sm { padding: 11px 20px; font-size: 14.5px; }

/* =============================================================
   Header & navigation (rebuilt in 1.11.1)
   ============================================================= */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--hp-navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 200; }
.skip-link:focus { left: 0; }
.hp-header {
	position: sticky; top: 0; z-index: 90;
	/* Solid header: backdrop-filter on a sticky element can leave faint
	   GPU repaint smudges on the page during scroll (Chromium quirk).
	   The bar was 94% opaque anyway — solid is visually identical. */
	background: var(--hp-canvas);
	border-bottom: 1px solid var(--hp-line);
}
.hp-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 78px; }
.hp-brand { display: inline-flex; align-items: center; text-decoration: none; }
.hp-brand__img { display: block; width: auto; height: 52px; }
@media (max-width: 640px) { .hp-brand__img { height: 42px; } }
.hp-nav { display: flex; align-items: center; gap: 6px; }
.hp-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.hp-nav li { margin: 0; }
.hp-nav a {
	position: relative; display: block; padding: 10px 14px; font-size: 15px; font-weight: 500;
	color: var(--hp-navy); text-decoration: none; border-radius: 8px;
	transition: color 0.2s ease, background 0.25s ease;
}
.hp-nav a::after {
	content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 4px;
	background: linear-gradient(90deg, var(--hp-orange) 0%, #FF8A3D 78%, var(--hp-orange-dark) 100%);
	border-radius: 3px 5px 4px 3px;
	transform: skewX(-14deg) scaleX(0);
	transform-origin: left center;
	opacity: 0.9;
	transition: transform 0.34s cubic-bezier(0.34, 1.35, 0.64, 1);
}
.hp-nav a:hover { background: var(--hp-linen); color: var(--hp-navy); }
.hp-nav a:hover::after, .hp-nav .current-menu-item > a::after, .hp-nav .current_page_item > a::after { transform: skewX(-14deg) scaleX(1); }
.hp-nav .current-menu-item > a, .hp-nav .current_page_item > a { color: var(--hp-orange-dark); }
.hp-nav__cta { margin-left: 10px; }
.hp-nav-toggle {
	display: none; background: none; border: 2px solid var(--hp-navy); border-radius: 8px;
	padding: 8px 12px; font: inherit; font-weight: 600; color: var(--hp-navy); cursor: pointer;
}
@media (max-width: 920px) {
	.hp-nav-toggle { display: inline-flex; align-items: center; gap: 8px; position: relative; z-index: 96; transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease; }
	.hp-nav-toggle[aria-expanded="true"] { background: var(--hp-orange); border-color: var(--hp-orange); color: #fff; }
	.hp-nav {
		position: fixed; inset: 0; z-index: 85;
		background: rgba(13, 30, 58, 0.82);
		-webkit-backdrop-filter: blur(16px) saturate(1.2);
		backdrop-filter: blur(16px) saturate(1.2);
		display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
		padding: 118px 26px calc(52px + env(safe-area-inset-bottom));
		opacity: 0; pointer-events: none; visibility: hidden;
		transform: scale(1.03);
		transition: opacity 0.32s ease, visibility 0.32s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
		overflow: hidden;
		overscroll-behavior: contain;
	}
	.hp-nav.is-open { opacity: 1; pointer-events: auto; visibility: visible; transform: none; }
	body.hp-nav-open { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }
	.hp-nav::before {
		content: ""; position: absolute; width: 380px; height: 380px; right: -140px; top: -90px;
		border-radius: 50%; background: radial-gradient(circle, rgba(242, 107, 29, 0.20), transparent 68%);
		pointer-events: none;
	}
	.hp-nav__brand { display: flex; justify-content: center; padding-bottom: 4px; }
	.hp-nav__brand img { width: min(175px, 44vw); height: auto; }
	.hp-nav ul { flex-direction: column; width: 100%; gap: 2px; margin: auto 0; }
	.hp-nav ul a {
		display: block; text-align: center;
		padding: clamp(7px, 1.6vh, 12px) 10px; border-radius: 12px;
		font-family: var(--hp-font-display); font-size: clamp(22px, 5.9vw, 27px); font-weight: 600;
		color: var(--hp-canvas); letter-spacing: 0.005em;
	}
	.hp-nav ul a:hover { background: rgba(247, 244, 239, 0.07); color: #fff; }
	.hp-nav ul a:active { transform: scale(0.965); background: rgba(247, 244, 239, 0.1); }
	.hp-nav ul a { transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease; }
	.hp-nav a::after { display: none; }
	/* Current page: a small centered paint dash under the label */
	.hp-nav ul .current-menu-item > a::after, .hp-nav ul .current_page_item > a::after {
		content: ""; display: block; position: static;
		width: 46px; height: 4px; margin: 6px auto 0;
		background: linear-gradient(90deg, var(--hp-orange), #FF8A3D);
		border-radius: 3px 5px 4px 3px;
		transform: skewX(-14deg) scaleX(1);
	}
	.hp-nav .current-menu-item > a, .hp-nav .current_page_item > a { color: var(--hp-orange); }
	.hp-nav li { opacity: 0; transform: translateY(18px); transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
	.hp-nav.is-open li { opacity: 1; transform: none; }
	.hp-nav.is-open li:nth-child(1) { transition-delay: 0.06s; }
	.hp-nav.is-open li:nth-child(2) { transition-delay: 0.11s; }
	.hp-nav.is-open li:nth-child(3) { transition-delay: 0.16s; }
	.hp-nav.is-open li:nth-child(4) { transition-delay: 0.21s; }
	.hp-nav.is-open li:nth-child(5) { transition-delay: 0.26s; }
	.hp-nav.is-open li:nth-child(6) { transition-delay: 0.31s; }
	.hp-nav.is-open li:nth-child(7) { transition-delay: 0.36s; }
	.hp-nav.is-open li:nth-child(8) { transition-delay: 0.41s; }
	.hp-nav a.hp-nav__cta {
		display: inline-flex; align-items: center; justify-content: center;
		width: 100%; text-align: center;
		margin: 18px 0 10px; font-size: 17px; font-weight: 700; letter-spacing: 0.015em;
		padding: 16px 20px; border-radius: 14px;
		box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.5);
		opacity: 0; transform: translateY(18px);
		transition: opacity 0.4s ease 0.46s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.46s, background 0.2s ease;
	}
	.hp-nav.is-open .hp-nav__cta { opacity: 1; transform: none; }
	.hp-nav__brand { opacity: 0; transform: translateY(-12px); transition: opacity 0.4s ease 0.05s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.05s; }
	.hp-nav.is-open .hp-nav__brand { opacity: 1; transform: none; }
	.hp-nav::after {
		content: ""; position: absolute; left: -2%; right: -2%; bottom: -4px; height: 14px;
		background: linear-gradient(90deg, var(--hp-orange), #FF8A3D 60%, var(--hp-orange-dark));
		transform: rotate(-0.7deg);
	}
}

/* =============================================================
   5. Hero
   ============================================================= */
.hp-hero { background: var(--hp-navy); color: var(--hp-canvas); overflow: hidden; position: relative; }
.hp-hero__inner {
	display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(32px, 5vw, 72px); align-items: center;
	padding-top: clamp(64px, 9vw, 120px);
	padding-bottom: clamp(72px, 10vw, 130px);
}
.hp-hero h1 { color: #fff; margin-bottom: 22px; }
.hp-hero__accent { position: relative; white-space: nowrap; }
.hp-hero__accent .txt { position: relative; z-index: 1; }
.hp-hero__accent .swipe {
	position: absolute; left: -4%; right: -4%; bottom: 6%; height: 38%;
	background: var(--hp-orange); border-radius: 6px; z-index: 0;
	transform-origin: left center;
}
.hp-hero__lede { font-size: 19px; color: var(--hp-mist); max-width: 520px; margin-bottom: 34px; }
.hp-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hp-hero__proof { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--hp-navy-line); }
.hp-hero__proof .item strong { display: block; font-family: var(--hp-font-display); font-size: 26px; color: #fff; font-weight: 600; }
.hp-hero__proof .item span { font-size: 13px; color: var(--hp-mist); letter-spacing: 0.04em; }
.hp-hero__art { position: relative; min-height: 340px; }
.hp-hero__art svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.35)); }
@media (max-width: 880px) {
	.hp-hero__inner { grid-template-columns: 1fr; }
	.hp-hero__art { max-width: 480px; margin: 0 auto; min-height: 0; }
}
@media (prefers-reduced-motion: no-preference) {
	.hp-hero__accent .swipe { animation: hpSwipe 0.9s cubic-bezier(0.65, 0, 0.35, 1) 0.35s both; }
	@keyframes hpSwipe { from { transform: scaleX(0); } to { transform: scaleX(1); } }
	.hp-hero__art .swatch { animation: hpFloat 7s ease-in-out infinite; }
	.hp-hero__art .swatch:nth-child(2) { animation-delay: 1.4s; }
	.hp-hero__art .swatch:nth-child(3) { animation-delay: 2.8s; }
	@keyframes hpFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
}

/* =============================================================
   6. Trust bar
   ============================================================= */
.hp-trust { background: var(--hp-navy-deep); border-top: 1px solid var(--hp-navy-line); }
.hp-trust__inner {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 18px; padding-top: 26px; padding-bottom: 26px;
}
.hp-trust__item { display: flex; align-items: center; gap: 13px; color: var(--hp-canvas); font-size: 14.5px; font-weight: 500; }
.hp-trust__item svg { flex: none; }

/* =============================================================
   7. Service cards
   ============================================================= */
.hp-grid { display: grid; gap: 24px; margin-top: 46px; }
.hp-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.hp-card {
	background: var(--hp-white); border: 1px solid var(--hp-line); border-radius: var(--hp-radius);
	padding: 32px 28px 28px; display: flex; flex-direction: column; gap: 14px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.hp-card:hover { transform: translateY(-5px); box-shadow: var(--hp-shadow); border-color: transparent; }
.hp-card__icon {
	width: 54px; height: 54px; border-radius: 13px; background: var(--hp-orange-soft);
	display: flex; align-items: center; justify-content: center; color: var(--hp-orange-dark);
}
.hp-card h3 { margin: 4px 0 0; }
.hp-card p { color: var(--hp-slate); font-size: 15.5px; margin: 0; flex: 1; }
.hp-card__link {
	background: none; border: 0; padding: 0; font: inherit; font-weight: 600; font-size: 15px;
	color: var(--hp-orange-dark); cursor: pointer; text-align: left; display: inline-flex; align-items: center; gap: 7px;
}
.hp-card__link:hover { color: var(--hp-orange); }

/* Service detail dialog */
.hp-dialog { border: 0; border-radius: var(--hp-radius); padding: 0; max-width: 560px; width: calc(100% - 40px); box-shadow: var(--hp-shadow); }
.hp-dialog::backdrop { background: rgba(13, 30, 58, 0.6); backdrop-filter: blur(2px); }
.hp-dialog__body { padding: 36px 34px 30px; }
.hp-dialog__body h3 { margin-top: 10px; }
.hp-dialog__body ul { margin: 14px 0 20px; padding-left: 20px; color: var(--hp-slate); }
.hp-dialog__body li { margin-bottom: 6px; }
.hp-dialog__close {
	position: absolute; top: 14px; right: 14px; background: var(--hp-linen); border: 0;
	width: 38px; height: 38px; border-radius: 50%; font-size: 20px; line-height: 1;
	cursor: pointer; color: var(--hp-navy);
}
.hp-dialog__close:hover { background: var(--hp-orange-soft); color: var(--hp-orange-dark); }

/* =============================================================
   8. Process timeline
   ============================================================= */
.hp-process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; margin-top: 52px; counter-reset: step; position: relative; }
.hp-step { position: relative; padding-top: 26px; }
.hp-step::before {
	counter-increment: step; content: counter(step, decimal-leading-zero);
	font-family: var(--hp-font-brand); font-weight: 800; font-size: 13px; letter-spacing: 0.14em;
	color: var(--hp-orange); display: block; margin-bottom: 10px;
}
.hp-step::after {
	content: ""; position: absolute; top: 0; left: 0; right: 26px; height: 5px; border-radius: 3px;
	background-color: var(--hp-navy-line);
}
.hp-step:nth-child(1)::after { background-image: linear-gradient(to right, var(--hp-orange) 0 25%, transparent 25%); }
.hp-step:nth-child(2)::after { background-image: linear-gradient(to right, var(--hp-orange) 0 50%, transparent 50%); }
.hp-step:nth-child(3)::after { background-image: linear-gradient(to right, var(--hp-orange) 0 75%, transparent 75%); }
.hp-step:nth-child(4)::after { background-image: linear-gradient(to right, var(--hp-orange) 0 100%, transparent 100%); }
.hp-step:last-child::after { right: 0; }
.hp-step h3 { color: var(--hp-canvas); font-size: 21px; }
.hp-step p { font-size: 15px; margin: 0; }

/* =============================================================
   9. Before / After gallery
   ============================================================= */
.hp-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 34px; }
.hp-filter {
	background: var(--hp-white); border: 1px solid var(--hp-line); border-radius: 999px;
	padding: 9px 20px; font: inherit; font-size: 14px; font-weight: 600; color: var(--hp-slate); cursor: pointer;
	transition: all 0.2s ease;
}
.hp-filter:hover { border-color: var(--hp-orange); color: var(--hp-orange-dark); }
.hp-filter.is-active { background: var(--hp-navy); border-color: var(--hp-navy); color: #fff; }
.hp-ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; margin-top: 40px; }
.hp-ba { border-radius: var(--hp-radius); overflow: hidden; background: var(--hp-white); border: 1px solid var(--hp-line); box-shadow: var(--hp-shadow-sm); }
.hp-ba.is-hidden { display: none; }
.hp-ba__stage { position: relative; aspect-ratio: 4 / 3; overflow: hidden; touch-action: none; user-select: none; }
.hp-ba__img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hp-ba__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-ba__img--after { clip-path: inset(0 0 0 50%); }
.hp-ba__handle {
	position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff;
	transform: translateX(-50%); cursor: ew-resize; box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}
.hp-ba__handle::after {
	content: "⟷"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	background: var(--hp-orange); color: #fff; width: 42px; height: 42px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center; font-size: 17px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.hp-ba__tag {
	position: absolute; top: 12px; font-family: var(--hp-font-brand); font-weight: 700; font-size: 11px;
	letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 11px; border-radius: 5px; z-index: 2;
}
.hp-ba__tag--before { left: 12px; background: rgba(13,30,58,0.8); color: #fff; }
.hp-ba__tag--after { right: 12px; background: var(--hp-orange); color: #fff; }
.hp-ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.hp-ba__meta { padding: 18px 22px 20px; }
.hp-ba__meta h3 { font-size: 19px; margin-bottom: 4px; }
.hp-ba__meta p { font-size: 14px; color: var(--hp-slate); margin: 0; }
.hp-ba__badges { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.hp-badge {
	font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--hp-navy);
	background: var(--hp-linen); border-radius: 5px; padding: 4px 10px;
}

/* =============================================================
   10. Testimonials
   ============================================================= */
.hp-quote__stars { color: var(--hp-orange); letter-spacing: 3px; font-size: 17px; }
.hp-quote blockquote { margin: 0; font-family: var(--hp-font-display); font-size: 19px; line-height: 1.5; color: var(--hp-navy); flex: 1; }
.hp-quote__who { display: flex; align-items: center; gap: 13px; }
.hp-quote__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--hp-navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 15px; flex: none; }
.hp-quote__who strong { display: block; font-size: 15px; color: var(--hp-ink); }
.hp-quote__who span { font-size: 13px; color: var(--hp-slate); }

/* =============================================================
   11. Color inspiration
   ============================================================= */
.hp-swatches { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; margin-top: 44px; }
.hp-swatch { border-radius: var(--hp-radius-sm); overflow: hidden; border: 1px solid var(--hp-line); background: var(--hp-white); }
.hp-swatch__chip { height: 110px; }
.hp-swatch__meta { padding: 13px 15px; }
.hp-swatch__meta strong { display: block; font-size: 14px; color: var(--hp-ink); }
.hp-swatch__meta span { font-size: 12px; color: var(--hp-slate); letter-spacing: 0.03em; }

/* =============================================================
   12. CTA band
   ============================================================= */
.hp-cta { background: var(--hp-orange); color: #fff; }
.hp-cta .hp-container { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding-top: clamp(44px, 6vw, 72px); padding-bottom: clamp(44px, 6vw, 72px); }
.hp-cta h2 { color: #fff; margin: 0; max-width: 560px; }
.hp-cta p { color: rgba(255,255,255,0.9); margin: 8px 0 0; }
.hp-cta .hp-btn { background: var(--hp-navy); color: #fff; }
.hp-cta .hp-btn:hover { background: var(--hp-navy-deep); }

/* =============================================================
   13. Footer
   ============================================================= */
.hp-footer { background: var(--hp-navy-deep); color: var(--hp-mist); font-size: 15px; }
.hp-footer a { color: var(--hp-canvas); text-decoration: none; }
.hp-footer a:hover { color: var(--hp-orange); }
.hp-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding: clamp(52px, 7vw, 84px) 0 44px; }
.hp-footer__brand svg { max-width: 260px; height: auto; }
.hp-footer h4 { color: var(--hp-canvas); font-family: var(--hp-font-body); font-weight: 600; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.hp-footer ul { list-style: none; margin: 0; padding: 0; }
.hp-footer li { margin-bottom: 9px; }
.hp-footer__legal { border-top: 1px solid var(--hp-navy-line); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
@media (max-width: 880px) { .hp-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .hp-footer__grid { grid-template-columns: 1fr; } }

/* Sticky quote button */
.hp-fab {
	position: fixed; right: 22px; bottom: 22px; z-index: 80;
	background: var(--hp-orange); color: #fff; text-decoration: none;
	font-weight: 600; font-size: 15px; padding: 15px 24px; border-radius: 999px;
	box-shadow: 0 14px 30px -8px rgba(217, 86, 12, 0.55);
	display: inline-flex; align-items: center; gap: 9px;
	transition: transform 0.2s ease, background 0.2s ease;
}
.hp-fab:hover { background: var(--hp-orange-dark); color: #fff; transform: translateY(-3px); }

/* =============================================================
   14. Quote form (multi-step)
   ============================================================= */
.hp-quoteform { background: var(--hp-white); border: 1px solid var(--hp-line); border-radius: var(--hp-radius); box-shadow: var(--hp-shadow-sm); max-width: 760px; margin: 46px auto 0; overflow: hidden; }
.hp-qf__progress { display: flex; background: var(--hp-linen); }
.hp-qf__progress span { flex: 1; height: 6px; background: transparent; transition: background 0.3s ease; }
.hp-qf__progress span.is-done { background: var(--hp-orange); }
.hp-qf__body { padding: clamp(28px, 4vw, 44px); }
.hp-qf__stepnum { font-family: var(--hp-font-brand); font-weight: 700; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--hp-orange); }
.hp-qf__step h3 { margin: 8px 0 6px; }
.hp-qf__step > p { color: var(--hp-slate); font-size: 15.5px; }
.hp-qf__step { display: none; }
.hp-qf__step.is-active { display: block; animation: hpFade 0.3s ease; }
@keyframes hpFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.hp-qf__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }
.hp-qf__grid--tight { gap: 12px; }
@media (max-width: 620px) { .hp-qf__grid { grid-template-columns: 1fr; } }
.hp-choice { position: relative; }
.hp-choice input { position: absolute; opacity: 0; }
.hp-choice label {
	display: flex; flex-direction: column; gap: 4px; border: 2px solid var(--hp-line); border-radius: var(--hp-radius-sm);
	padding: 18px; cursor: pointer; transition: border-color 0.2s ease, background 0.2s ease; height: 100%;
}
.hp-choice label strong { font-size: 16px; color: var(--hp-navy); }
.hp-choice label span { font-size: 13.5px; color: var(--hp-slate); }
.hp-choice input:checked + label { border-color: var(--hp-orange); background: var(--hp-orange-soft); }
.hp-choice input:focus-visible + label { outline: 3px solid var(--hp-orange); outline-offset: 2px; }
.hp-field { margin-top: 20px; }
.hp-field label { display: block; font-weight: 600; font-size: 14.5px; margin-bottom: 8px; color: var(--hp-navy); }
.hp-field .hint { font-weight: 400; color: var(--hp-slate); font-size: 13px; }
.hp-field input[type=text], .hp-field input[type=email], .hp-field input[type=tel], .hp-field input[type=number],
.hp-field select, .hp-field textarea {
	width: 100%; border: 1.5px solid var(--hp-line); border-radius: var(--hp-radius-sm);
	padding: 13px 15px; font: inherit; font-size: 16px; background: #fff; color: var(--hp-ink);
}
.hp-field input:focus, .hp-field select:focus, .hp-field textarea:focus { border-color: var(--hp-orange); outline: none; box-shadow: 0 0 0 3px var(--hp-orange-soft); }
.hp-field input[type=range] { width: 100%; accent-color: var(--hp-orange); }
.hp-range-out { font-family: var(--hp-font-display); font-size: 26px; color: var(--hp-navy); font-weight: 600; }
.hp-field input[type=file] { font-size: 14px; }
.hp-qf__nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--hp-line); }
.hp-error { color: var(--hp-red); font-size: 14px; font-weight: 600; margin-top: 14px; display: none; }
.hp-error.is-visible { display: block; }

/* Notices (quote / contact confirmations) */
.hp-notice { border-radius: var(--hp-radius-sm); padding: 18px 22px; margin: 26px auto 0; max-width: 760px; font-weight: 500; }
.hp-notice--ok { background: #E4F3EB; color: var(--hp-green); border: 1px solid #BCE0CC; }
.hp-notice--err { background: #FBE9E7; color: var(--hp-red); border: 1px solid #F2C7C0; }

/* =============================================================
   15. Contact page
   ============================================================= */
.hp-contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 60px); margin-top: 48px; align-items: start; }
@media (max-width: 860px) { .hp-contact-grid { grid-template-columns: 1fr; } }
.hp-contact-card { background: var(--hp-white); border: 1px solid var(--hp-line); border-radius: var(--hp-radius); padding: 34px 32px; box-shadow: var(--hp-shadow-sm); }
.hp-contact-info { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 16px; }
.hp-contact-info li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; }
.hp-contact-info svg { flex: none; color: var(--hp-orange-dark); margin-top: 3px; }
.hp-map { border-radius: var(--hp-radius); overflow: hidden; border: 1px solid var(--hp-line); min-height: 380px; background: var(--hp-linen); box-shadow: var(--hp-shadow-sm); }
.hp-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.hp-map__empty { padding: 40px; color: var(--hp-slate); font-size: 15px; }

/* =============================================================
   16. About page
   ============================================================= */
.hp-legacy { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(30px, 6vw, 80px); align-items: center; }
@media (max-width: 860px) { .hp-legacy { grid-template-columns: 1fr; } }
.hp-legacy figure { margin: 0; }
.hp-legacy__frame { border-radius: var(--hp-radius); overflow: hidden; box-shadow: var(--hp-shadow); }
.hp-timeline { border-left: 3px solid var(--hp-orange); margin: 44px 0 0 8px; padding-left: 32px; display: grid; gap: 32px; }
.hp-timeline__item { position: relative; }
.hp-timeline__item::before { content: ""; position: absolute; left: -41px; top: 6px; width: 15px; height: 15px; border-radius: 50%; background: var(--hp-orange); border: 3px solid var(--hp-canvas); }
.hp-timeline__year { font-family: var(--hp-font-brand); font-weight: 800; color: var(--hp-orange-dark); font-size: 14px; letter-spacing: 0.1em; }
.hp-timeline__item h3 { margin: 4px 0 6px; font-size: 21px; }
.hp-timeline__item p { color: var(--hp-slate); margin: 0; font-size: 15.5px; }
.hp-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 44px; }

/* =============================================================
   17. Generic content, blog, 404
   ============================================================= */
.hp-page-hero { background: var(--hp-navy); color: var(--hp-canvas); padding: clamp(56px, 8vw, 96px) 0; }
.hp-page-hero h1 { color: #fff; margin-bottom: 10px; }
.hp-page-hero p { color: var(--hp-mist); max-width: 620px; margin: 0; font-size: 18px; }
.hp-entry { max-width: 760px; margin: 0 auto; }
.hp-entry img { border-radius: var(--hp-radius-sm); }
.hp-entry h2, .hp-entry h3 { margin-top: 1.4em; }
.hp-entry blockquote { border-left: 4px solid var(--hp-orange); margin: 1.6em 0; padding: 4px 0 4px 22px; font-family: var(--hp-font-display); font-size: 20px; color: var(--hp-navy); }
.hp-post-list { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin-top: 40px; }
.hp-404 { text-align: center; padding: clamp(70px, 10vw, 130px) 0 0; }
.hp-404__inner { padding-bottom: clamp(70px, 10vw, 120px); }
.hp-404__code {
	display: inline-flex; align-items: center; gap: 0.06em;
	font-family: var(--hp-font-display); font-weight: 600; line-height: 1;
	font-size: clamp(96px, 17vw, 180px); color: var(--hp-navy);
}
.hp-404__zero {
	display: inline-grid; place-items: center;
	width: 0.92em; height: 0.92em; border-radius: 50%;
	background: var(--hp-orange-soft); color: var(--hp-orange-dark);
	border: 3px solid var(--hp-orange);
}
.hp-404__zero svg { width: 0.5em; height: 0.5em; }
.hp-404__stroke { display: block; width: min(300px, 70vw); height: auto; margin: 18px auto 30px; }
.hp-404 h1 { font-size: clamp(26px, 4vw, 40px); margin: 0 0 14px; }
.hp-404 p { color: var(--hp-slate); max-width: 520px; margin: 0 auto; line-height: 1.7; }
.hp-404__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.hp-404__links { margin-top: 26px; font-size: 14.5px; }
.hp-404__links a { font-weight: 600; }
.hp-404 > .hp-edge { display: block; margin-bottom: -1px; }
@media (prefers-reduced-motion: no-preference) {
	.hp-404__zero svg { animation: hp404Roll 5s ease-in-out infinite; }
	@keyframes hp404Roll {
		0%, 100% { transform: rotate(0deg); }
		50% { transform: rotate(-12deg); }
	}
}

/* =============================================================
   18. Scroll reveal & reduced motion
   ============================================================= */
.hp-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.hp-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
	.hp-reveal { opacity: 1; transform: none; }
}

/* WordPress core compatibility */
.alignwide { max-width: 1000px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; }
.wp-caption { max-width: 100%; }
.screen-reader-text {
	border: 0; clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden;
	padding: 0; position: absolute; width: 1px; word-wrap: normal;
}


/* =============================================================
   v1.1 — SEO content columns, FAQ accordion, finished-work gallery
   ============================================================= */
.hp-container--narrow { max-width: 840px; }

.hp-seo__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 34px; }
.hp-seo h3 { font-family: var(--hp-font-display); font-size: 22px; color: var(--hp-navy); margin: 0 0 10px; }
.hp-seo p { color: var(--hp-slate); margin: 0 0 22px; }
@media (max-width: 820px) { .hp-seo__cols { grid-template-columns: 1fr; gap: 8px; } }

.hp-faq { margin-top: 34px; display: grid; gap: 14px; }
.hp-faq__item {
	background: var(--hp-white);
	border: 1px solid var(--hp-line);
	border-radius: var(--hp-radius-sm);
	box-shadow: var(--hp-shadow-sm);
	padding: 0 22px;
	overflow: hidden;
}
.hp-faq__item summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 0;
	font-weight: 600;
	color: var(--hp-navy);
	font-size: 16.5px;
}
.hp-faq__item summary::-webkit-details-marker { display: none; }
.hp-faq__item summary:focus-visible { outline: 3px solid var(--hp-orange); outline-offset: 4px; border-radius: 6px; }
.hp-faq__chev {
	flex: 0 0 auto;
	width: 26px; height: 26px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: var(--hp-orange-soft);
	color: var(--hp-orange);
	font-weight: 700;
	transition: transform 0.25s ease;
}
.hp-faq__item[open] .hp-faq__chev { transform: rotate(45deg); }
.hp-faq__item > p { margin: 0 0 20px; color: var(--hp-slate); }

.hp-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.hp-gallery__item {
	margin: 0;
	border-radius: var(--hp-radius);
	overflow: hidden;
	background: var(--hp-white);
	border: 1px solid var(--hp-line);
	box-shadow: var(--hp-shadow-sm);
}
.hp-gallery__item img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.hp-gallery__item figcaption { padding: 13px 16px; font-size: 14px; font-weight: 500; color: var(--hp-slate); }
@media (max-width: 900px) { .hp-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hp-gallery { grid-template-columns: 1fr; } }

/* Five-item layout: the first photo becomes a wide feature tile, giving
   two perfectly full rows (feature + one, then three). */
.hp-gallery--five .hp-gallery__item:first-child { grid-column: span 2; }
.hp-gallery--five .hp-gallery__item:first-child img { aspect-ratio: auto; height: 100%; min-height: 0; }
.hp-gallery--five .hp-gallery__item { display: flex; flex-direction: column; }
.hp-gallery--five .hp-gallery__item img { flex: 1; }
@media (max-width: 560px) {
	.hp-gallery--five .hp-gallery__item:first-child { grid-column: auto; }
	.hp-gallery--five .hp-gallery__item:first-child img { aspect-ratio: 4 / 3; height: auto; }
}


/* =============================================================
   v1.2 — photo hero collage, drip divider, marquee, tool icons
   ============================================================= */
.hp-hero__photo { margin: 0; border-radius: var(--hp-radius); overflow: hidden; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5); }
.hp-hero__photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hp-hero__photo--main { position: relative; aspect-ratio: 17 / 12; border: 4px solid rgba(247, 244, 239, 0.12); }
.hp-hero__photo--main img { animation: hpKenBurns 22s ease-in-out infinite alternate; }
.hp-hero__photo--float {
	position: absolute;
	right: -18px;
	bottom: -34px;
	width: 46%;
	aspect-ratio: 4 / 3;
	border: 4px solid var(--hp-canvas);
	animation: hpFloat 7s ease-in-out infinite;
}
.hp-hero__badge {
	position: absolute;
	top: -18px;
	left: -18px;
	background: var(--hp-orange);
	color: #fff;
	border-radius: 50%;
	width: 92px;
	height: 92px;
	display: grid;
	place-content: center;
	text-align: center;
	line-height: 1.1;
	box-shadow: var(--hp-shadow);
	transform: rotate(-8deg);
}
.hp-hero__badge span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.9; }
.hp-hero__badge strong { font-family: var(--hp-font-brand); font-size: 24px; }
@keyframes hpKenBurns { from { transform: scale(1); } to { transform: scale(1.09) translate(-1.5%, -1%); } }
@media (max-width: 900px) {
	.hp-hero__photo--float { right: 4px; bottom: -22px; }
	.hp-hero__badge { left: 4px; }
}
@media (prefers-reduced-motion: reduce) {
	.hp-hero__photo--main img, .hp-hero__photo--float { animation: none; }
}



/* Recent work marquee */
.hp-marquee-section { background: var(--hp-navy); padding: 34px 0; overflow: hidden; }
.hp-marquee { display: flex; width: max-content; gap: 18px; animation: hpMarquee 42s linear infinite; }
.hp-marquee:hover { animation-play-state: paused; }
.hp-marquee__track { display: flex; gap: 18px; }
.hp-marquee__track img {
	display: block;
	width: 340px;
	height: 255px;
	object-fit: cover;
	border-radius: var(--hp-radius-sm);
	border: 3px solid rgba(247, 244, 239, 0.14);
}
@keyframes hpMarquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 9px)); } }
@media (prefers-reduced-motion: reduce) {
	.hp-marquee { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
	.hp-marquee__track[aria-hidden="true"] { display: none; }
}
@media (max-width: 640px) { .hp-marquee__track img { width: 240px; height: 180px; } }

/* Legacy frame photo polish */
.hp-legacy__frame img { border-radius: var(--hp-radius); }


/* =============================================================
   v1.3 — hover micro-interactions & consent banner
   ============================================================= */
.hp-card { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.hp-card__icon { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease; }
.hp-card:hover .hp-card__icon { transform: rotate(-6deg) scale(1.08); }
.hp-card:hover h3 { color: var(--hp-orange-dark); }
.hp-card h3 { transition: color 0.2s ease; }

.hp-filter { transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.15s ease; }
.hp-filter:hover { transform: translateY(-1px); border-color: var(--hp-orange); color: var(--hp-orange-dark); }

.hp-swatch { transition: transform 0.22s ease; }
.hp-swatch:hover { transform: translateY(-4px); }
.hp-swatch__chip { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hp-swatch:hover .hp-swatch__chip { transform: scale(1.05); box-shadow: var(--hp-shadow-sm); }

.hp-fab svg { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.hp-fab:hover svg { transform: rotate(-12deg) scale(1.12); }

.hp-gallery__item { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.hp-gallery__item img { transition: transform 0.5s ease; }
.hp-gallery__item:hover { transform: translateY(-4px); box-shadow: var(--hp-shadow); }
.hp-gallery__item:hover img { transform: scale(1.045); }

@media (prefers-reduced-motion: reduce) {
	.hp-card, .hp-card__icon, .hp-filter, .hp-swatch, .hp-swatch__chip,
	.hp-fab svg, .hp-gallery__item, .hp-gallery__item img { transition: none; }
}

/* Cookie / analytics consent */
.hp-consent {
	position: fixed; left: 18px; bottom: 18px; z-index: 120;
	max-width: 380px;
	background: var(--hp-white);
	border: 1px solid var(--hp-line);
	border-radius: var(--hp-radius);
	box-shadow: var(--hp-shadow);
	padding: 18px 20px;
	animation: hpConsentIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.hp-consent p { margin: 0 0 14px; font-size: 14px; line-height: 1.55; color: var(--hp-slate); }
.hp-consent a { color: var(--hp-orange-dark); }
.hp-consent__actions { display: flex; gap: 10px; }
@keyframes hpConsentIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (max-width: 480px) { .hp-consent { left: 12px; right: 12px; bottom: 12px; max-width: none; } }
@media (prefers-reduced-motion: reduce) { .hp-consent { animation: none; } }


/* =============================================================
   v1.4 — mobile/custom logo safeguards, drips sizing
   ============================================================= */
/* The header logo must be visible at every breakpoint, whether the
   theme image or a Customizer-uploaded custom logo is in use. */
.hp-header .hp-brand, .hp-header .custom-logo-link { display: inline-flex; align-items: center; flex: 0 0 auto; }
.hp-header .custom-logo-link img, .hp-header .custom-logo {
	display: block; width: auto; height: auto; max-height: 52px; max-width: 220px;
}
@media (max-width: 640px) {
	.hp-header .custom-logo-link img, .hp-header .custom-logo { max-height: 42px; max-width: 170px; }
	.hp-header__inner { min-height: 64px; gap: 12px; }
}


.hp-prose h2 { font-family: var(--hp-font-display); color: var(--hp-navy); font-size: 26px; margin: 40px 0 12px; }
.hp-prose p { color: var(--hp-slate); margin: 0 0 18px; }


/* =============================================================
   v1.5 — angled roller edge, testimonial grid
   ============================================================= */
/* The hero ends in a gentle diagonal — a fresh roller pass with a thin
   orange wet edge — instead of a novelty divider. */
.hp-edge { display: block; width: 100%; height: 44px; color: var(--hp-canvas); margin-bottom: -1px; }
@media (max-width: 640px) { .hp-edge { height: 26px; } }

/* Testimonials: elegant grid, nothing clipped, no scrollbars */
.hp-quotes-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 44px;
}
.hp-quotes-grid .hp-quote {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	background: var(--hp-white);
	border: 1px solid var(--hp-line);
	border-radius: var(--hp-radius);
	box-shadow: var(--hp-shadow-sm);
	padding: 30px 30px 26px;
	min-width: 0;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hp-quotes-grid .hp-quote:hover { transform: translateY(-4px); box-shadow: var(--hp-shadow); }
.hp-quote--feature { border-top: 4px solid var(--hp-orange); }
.hp-quote__mark {
	position: absolute;
	top: 8px;
	right: 22px;
	font-family: var(--hp-font-display);
	font-size: 96px;
	line-height: 1;
	color: var(--hp-orange-soft);
	pointer-events: none;
	user-select: none;
}
.hp-quotes-grid .hp-quote__stars { color: var(--hp-orange); letter-spacing: 3px; font-size: 15px; }
.hp-quotes-grid blockquote {
	margin: 0;
	font-family: var(--hp-font-display);
	font-size: 19px;
	line-height: 1.55;
	color: var(--hp-navy);
	position: relative;
	z-index: 1;
}
.hp-quotes-grid .hp-quote__who { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 6px; }
.hp-quotes-grid .hp-quote__avatar {
	width: 46px; height: 46px; border-radius: 50%;
	display: grid; place-items: center;
	background: linear-gradient(135deg, var(--hp-navy), var(--hp-navy-soft));
	color: var(--hp-canvas);
	font-weight: 700; font-size: 14px;
	box-shadow: 0 0 0 2px var(--hp-white), 0 0 0 4px var(--hp-orange);
}
.hp-quotes-grid .hp-quote__who strong { display: block; color: var(--hp-ink); font-size: 15.5px; }
.hp-quotes-grid .hp-quote__who span:not(.hp-quote__avatar) { color: var(--hp-slate); font-size: 13.5px; }
@media (max-width: 760px) {
	.hp-quotes-grid { grid-template-columns: 1fr; }
	.hp-quote__mark { font-size: 76px; }
}
@media (prefers-reduced-motion: reduce) { .hp-quotes-grid .hp-quote { transition: none; } }


/* =============================================================
   v1.6 — admin bar offset, roller-edge variants
   ============================================================= */
/* Logged-in admins: WordPress adds a fixed 32px toolbar (46px on
   mobile). Offset the sticky header so nothing is hidden beneath it. */
body.admin-bar .hp-header { top: 32px; }
@media (max-width: 782px) {
	body.admin-bar .hp-header { top: 46px; }
}

.hp-edge--flip { transform: scaleX(-1); }
.hp-footer > .hp-edge { display: block; margin-top: -1px; }
.hp-page-hero { padding-bottom: 0; }
.hp-page-hero .hp-container { padding-bottom: clamp(38px, 5.5vw, 62px); }
.hp-page-hero .hp-edge, .hp-section--navy .hp-edge, .hp-marquee-section .hp-edge { margin-bottom: -1px; }
.hp-section--navy { padding-bottom: 0; }
.hp-section--navy .hp-container { padding-bottom: var(--hp-section-y); }
.hp-marquee-section { padding-bottom: 0; }
.hp-marquee-section .hp-marquee { margin-bottom: 34px; }


/* =============================================================
   v1.7 — header CTA contrast, page-hero scale, contact redesign,
          branded map, footer credit
   ============================================================= */
/* Header CTA: white text always (defeats .hp-nav a specificity) */
.hp-nav a.hp-nav__cta, .hp-header a.hp-nav__cta { color: #FFF9F4; background: var(--hp-orange); }
.hp-nav a.hp-nav__cta:hover, .hp-header a.hp-nav__cta:hover { color: #fff; background: var(--hp-orange-dark); }
.hp-nav a.hp-nav__cta::after { display: none; }

/* Bigger, prouder page-hero titles now the roller edge frames them */
.hp-page-hero h1 { font-size: clamp(42px, 5.4vw, 68px); line-height: 1.05; letter-spacing: -0.01em; }
.hp-page-hero .hp-eyebrow { font-size: 14px; letter-spacing: 0.28em; }
.hp-page-hero p { font-size: 19px; }

/* Contact: navy side panel */
.hp-contact-side {
	background: var(--hp-navy);
	color: var(--hp-mist);
	border-radius: var(--hp-radius);
	padding: 36px 32px;
	align-self: start;
	position: sticky;
	top: 110px;
}
.hp-contact-side h2 { color: #fff; font-family: var(--hp-font-display); font-size: 26px; margin: 0 0 18px; }
.hp-contact-side__phone {
	display: flex; align-items: center; gap: 12px;
	background: var(--hp-orange); color: #FFF9F4; text-decoration: none;
	font-weight: 700; font-size: 20px;
	padding: 15px 20px; border-radius: var(--hp-radius-sm);
	transition: background 0.2s ease, transform 0.18s ease;
}
a.hp-contact-side__phone:hover { background: var(--hp-orange-dark); color: #FFF9F4; transform: translateY(-2px); }
.hp-contact-side__phone svg { flex: none; }
.hp-contact-side__rows { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 20px; }
.hp-contact-side__rows li { display: flex; gap: 14px; align-items: flex-start; }
.hp-contact-side__rows svg { color: var(--hp-orange); flex: none; margin-top: 2px; }
.hp-contact-side__rows strong { display: block; color: #fff; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.hp-contact-side__rows span { display: block; color: var(--hp-mist); line-height: 1.5; }
.hp-contact-side__note { margin: 26px 0 0; padding-top: 20px; border-top: 1px solid rgba(247, 244, 239, 0.16); font-size: 14.5px; color: var(--hp-mist); }

.hp-section--tight { padding-top: 0; }

/* Footer credit */
.hp-footer__credit { text-align: center; padding: 16px 0 22px; }
.hp-footer__credit a { font-size: 12px; letter-spacing: 0.04em; color: var(--hp-slate); text-decoration: none; opacity: 0.85; }
.hp-footer__credit a:hover { color: var(--hp-orange); opacity: 1; }


/* =============================================================
   v1.8 — city pages, instant estimator, blog polish
   ============================================================= */

/* City landing pages */
.hp-city-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.hp-city-intro h2 { margin-top: 36px; }
.hp-city-services { list-style: none; margin: 24px 0 8px; padding: 0; display: grid; gap: 16px; }
.hp-city-services li { display: flex; gap: 16px; align-items: flex-start; background: var(--hp-white); border: 1px solid var(--hp-line); border-radius: var(--hp-radius-sm); padding: 16px 18px; }
.hp-city-services__icon { color: var(--hp-navy); background: var(--hp-orange-soft); border-radius: 10px; padding: 9px; display: grid; place-items: center; flex: none; }
.hp-city-services strong { display: block; color: var(--hp-navy); margin-bottom: 2px; }
.hp-city-services span { color: var(--hp-slate); font-size: 14.5px; }
.hp-city-intro .hp-faq__item { margin-bottom: 12px; }
.hp-city-aside { position: sticky; top: 110px; display: grid; gap: 22px; }
.hp-city-card { background: var(--hp-navy); color: var(--hp-mist); border-radius: var(--hp-radius); padding: 30px 28px; }
.hp-city-card h3 { color: #fff; font-family: var(--hp-font-display); font-size: 23px; margin: 0 0 10px; }
.hp-city-card p { margin: 0 0 18px; font-size: 15px; }
.hp-city-card .hp-btn { width: 100%; justify-content: center; }
.hp-city-card__phone { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 12px; color: #fff; font-weight: 600; text-decoration: none; }
.hp-city-card__phone:hover { color: var(--hp-orange); }
.hp-city-card__list { list-style: none; margin: 20px 0 0; padding: 18px 0 0; border-top: 1px solid rgba(247, 244, 239, 0.16); display: grid; gap: 8px; font-size: 14px; }
.hp-city-card__list li::before { content: "✓"; color: var(--hp-orange); font-weight: 700; margin-right: 9px; }
.hp-city-photo { margin: 0; border-radius: var(--hp-radius); overflow: hidden; box-shadow: var(--hp-shadow-sm); }
.hp-city-photo img { display: block; width: 100%; height: auto; }
@media (max-width: 880px) { .hp-city-grid { grid-template-columns: 1fr; } .hp-city-aside { position: static; } }

/* Blog polish */
.hp-post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hp-post-list .hp-card h3 { font-family: var(--hp-font-display); font-size: 21px; line-height: 1.3; }
@media (max-width: 900px) { .hp-post-list { grid-template-columns: 1fr; } }
.hp-post-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 44px; background: var(--hp-orange-soft); border: 1px solid var(--hp-line); border-radius: var(--hp-radius); padding: 24px 28px; }
.hp-post-cta strong { display: block; color: var(--hp-navy); font-size: 17px; }
.hp-post-cta span { color: var(--hp-slate); font-size: 14.5px; }

/* Footer service areas */
.hp-footer__areas { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }


/* =============================================================
   v1.10 — services 2x2 layout, boxed CTA, painted nav swoosh
   ============================================================= */
/* Four services, displayed as a deliberate 2x2 of wide cards:
   icon chip left, content right. No orphan card. */
.hp-grid--services { grid-template-columns: repeat(2, 1fr); }
.hp-grid--services .hp-card {
	display: grid;
	grid-template-columns: 64px 1fr;
	column-gap: 22px;
	row-gap: 8px;
	align-items: start;
	padding: 30px 30px 26px;
}
.hp-grid--services .hp-card__icon { grid-row: 1 / span 3; width: 64px; height: 64px; border-radius: 16px; }
.hp-grid--services .hp-card h3 { grid-column: 2; margin: 4px 0 0; }
.hp-grid--services .hp-card p { grid-column: 2; }
.hp-grid--services .hp-card__link { grid-column: 2; justify-self: start; }
@media (max-width: 820px) {
	.hp-grid--services { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	.hp-grid--services .hp-card { grid-template-columns: 52px 1fr; column-gap: 16px; }
	.hp-grid--services .hp-card__icon { grid-row: 1; width: 52px; height: 52px; }
}

/* CTA: boxed rounded panel floating on canvas — clear separation from
   the footer's roller-edge cut lines below it. */
.hp-cta { background: transparent; color: #fff; padding: clamp(10px, 2vw, 24px) 0 clamp(64px, 8vw, 110px); }
.hp-cta .hp-container {
	background: linear-gradient(120deg, var(--hp-orange) 0%, var(--hp-orange-dark) 100%);
	border-radius: 22px;
	box-shadow: 0 30px 60px -24px rgba(217, 95, 23, 0.55);
	padding: clamp(40px, 5vw, 60px) clamp(28px, 5vw, 60px);
	position: relative;
	overflow: hidden;
}
.hp-cta .hp-container::before {
	content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
	pointer-events: none;
}
@media (max-width: 640px) {
	.hp-cta { padding-left: 14px; padding-right: 14px; }
}


/* =============================================================
   v1.11 — footer contact column with hours
   ============================================================= */
.hp-footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.hp-footer__contact a { font-weight: 600; }
.hp-footer__hours-label {
	margin-top: 14px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(247, 244, 239, 0.55);
}


/* =============================================================
   v1.12 — mobile hero polish, tighter page rhythm
   ============================================================= */
/* First content section after a page hero sits closer to it */
.hp-page-hero + .hp-section { padding-top: clamp(30px, 4.5vw, 54px); }

/* Mobile hero: stacked full-width buttons, breathing room from the FAB */
@media (max-width: 640px) {
	.hp-hero__actions { flex-direction: column; align-items: stretch; gap: 12px; }
	.hp-hero__actions .hp-btn { width: 100%; justify-content: center; text-align: center; }
	.hp-hero__inner { padding-bottom: clamp(56px, 12vw, 80px); }
	.hp-hero__proof { gap: 8px; }
}


/* =============================================================
   v1.13 — compact mobile footer, home mini-features
   ============================================================= */
/* Home: three compact feature blurbs replace the long SEO columns */
.hp-seo-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px; }
.hp-seo-mini__icon {
	display: inline-grid; place-items: center; width: 52px; height: 52px;
	border-radius: 14px; background: var(--hp-orange-soft); color: var(--hp-orange-dark); margin-bottom: 14px;
}
.hp-seo-mini h3 { margin: 0 0 8px; font-size: 19px; }
.hp-seo-mini p { margin: 0; color: var(--hp-slate); font-size: 15px; line-height: 1.65; }
@media (max-width: 820px) { .hp-seo-mini { grid-template-columns: 1fr; gap: 24px; } }

/* Mobile footer: minimal and centered — brand, phone, hours, legal.
   Explore duplicates the main menu and the city links are a desktop
   feature, so both are hidden on phones. */
@media (max-width: 540px) {
	.hp-footer__grid { grid-template-columns: 1fr; gap: 22px; padding-top: 40px; padding-bottom: 16px; text-align: center; }
	.hp-footer__grid > div:nth-child(2),
	.hp-footer__grid > div:nth-child(3) { display: none; }
	.hp-footer__brand img { margin: 0 auto; }
	.hp-footer__brand p { font-size: 14px; max-width: 34ch; margin-left: auto; margin-right: auto; }
	.hp-footer h4 { margin-bottom: 10px; }
	.hp-footer__contact { gap: 6px; justify-items: center; }
	.hp-footer__contact a { font-size: 20px; }
	.hp-footer__hours-label { margin-top: 12px; }
	.hp-footer__legal { flex-direction: column; gap: 5px; text-align: center; padding-top: 18px; }
	.hp-footer__credit { padding: 10px 0 16px; }
}


/* =============================================================
   v1.14 — smart FAB, trust bar polish, home tightening
   ============================================================= */
/* Menu brand only exists inside the mobile panel */
.hp-nav__brand { display: none; }
@media (max-width: 920px) { .hp-nav__brand { display: flex; } }

/* Floating quote button: slides away while reading/scrolling down,
   returns on scroll-up; hidden at the very top and near the footer CTA */
.hp-fab { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, background 0.2s ease; }
.hp-fab.hp-fab--hidden { transform: translateY(150%); opacity: 0; pointer-events: none; }

/* Trust bar: solid wedge match under the hero edge + centered items on phones */
.hp-hero > .hp-edge { display: block; margin-top: -1px; background: var(--hp-navy-deep); }
@media (max-width: 640px) {
	/* One centered column with a shared left edge: icons align vertically,
	   the whole block sits centered. */
	.hp-trust__inner { grid-template-columns: max-content; justify-content: center; gap: 15px; }
	.hp-trust__item { justify-content: flex-start; }
}

/* Home before/after: three highlights in one balanced row */
.hp-ba-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }


/* =============================================================
   v1.15.1 — subtle staff lock (overrides the plugin's inline styles)
   ============================================================= */
.hp-tc-lock {
	z-index: 60 !important;
	width: 30px !important;
	height: 30px !important;
	opacity: 0.22 !important;
	background: rgba(19, 41, 75, 0.5) !important;
	border-color: rgba(247, 244, 239, 0.18) !important;
	box-shadow: none !important;
}
.hp-tc-lock:hover, .hp-tc-lock:focus-visible { opacity: 1 !important; }


/* =============================================================
   v1.16 — hover life, everywhere
   ============================================================= */
/* 1) Mini features -> interactive cards */
.hp-seo-mini > div {
	background: var(--hp-white); border: 1px solid var(--hp-line);
	border-radius: var(--hp-radius); padding: 26px 24px 24px;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.hp-seo-mini > div:hover { transform: translateY(-6px); box-shadow: var(--hp-shadow); border-color: transparent; }
.hp-seo-mini__icon { transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), background 0.25s ease, color 0.25s ease; }
.hp-seo-mini > div:hover .hp-seo-mini__icon { transform: rotate(-7deg) scale(1.1); background: var(--hp-orange); color: #fff; }

/* Read-more: hero-grade button with a travelling arrow */
.hp-seo .hp-seo-mini__more, .hp-seo-mini__more { margin: 64px 0 0; text-align: center; }
.hp-seo-mini__more a.hp-seo-mini__cta { color: #FFF9F4; }
.hp-seo-mini__cta {
	border-radius: 999px; gap: 9px; padding: 16px 30px; font-size: 16px;
	box-shadow: 0 18px 36px -14px rgba(217, 95, 23, 0.55);
}
.hp-seo-mini__cta:hover { transform: translateY(-2px); }
.hp-arrow { display: inline-block; transition: transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1); }
.hp-seo-mini__cta:hover .hp-arrow { transform: translateX(5px); }

/* 2) Service & value cards: icon chips come alive, links nudge */
.hp-card__icon { transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), background 0.25s ease, color 0.25s ease; }
.hp-card:hover .hp-card__icon { transform: rotate(-7deg) scale(1.08); background: var(--hp-orange); color: #fff; }
.hp-card__link { display: inline-block; transition: transform 0.25s ease, color 0.2s ease; }
.hp-card:hover .hp-card__link { transform: translateX(4px); color: var(--hp-orange); }

/* 3) Sitewide sweep */
.hp-quote { transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease; }
.hp-quote:hover { transform: translateY(-5px); box-shadow: var(--hp-shadow); border-color: transparent; }

.hp-ba { transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.hp-ba:hover { box-shadow: var(--hp-shadow); transform: translateY(-4px); }
.hp-ba:hover .hp-ba__handle { box-shadow: 0 0 0 7px rgba(242, 107, 29, 0.22); }
.hp-ba__handle { transition: box-shadow 0.3s ease; }

.hp-gallery figure { overflow: hidden; }
.hp-gallery figure img { transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.hp-gallery figure:hover img { transform: scale(1.05); }

.hp-faq__item summary { transition: color 0.2s ease; }
.hp-faq__item summary:hover { color: var(--hp-orange-dark); }

.hp-marquee:hover .hp-marquee__track { animation-play-state: paused; }

.hp-city-services li { transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease; }
.hp-city-services li:hover { transform: translateY(-4px); box-shadow: var(--hp-shadow-sm); border-color: var(--hp-orange); }
.hp-city-services__icon { transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), background 0.25s ease, color 0.25s ease; }
.hp-city-services li:hover .hp-city-services__icon { transform: rotate(-7deg) scale(1.08); background: var(--hp-orange); color: #fff; }

@media (prefers-reduced-motion: reduce) {
	.hp-seo-mini > div, .hp-seo-mini__icon, .hp-arrow, .hp-card__icon, .hp-card__link,
	.hp-quote, .hp-quote__avatar, .hp-ba, .hp-ba__handle, .hp-gallery figure img,
	.hp-city-services li, .hp-city-services__icon { transition: none; }
	.hp-seo-mini > div:hover, .hp-quote:hover, .hp-ba:hover, .hp-city-services li:hover { transform: none; }
	.hp-gallery figure:hover img { transform: none; }
}


/* =============================================================
   v1.17 — icon entrance choreography + edged linen section
   ============================================================= */
/* Icons pop in as the cards reveal, then bob gently; hover takes over */
@keyframes hpIconPop {
	0% { transform: scale(0.4) rotate(-14deg); opacity: 0; }
	62% { transform: scale(1.14) rotate(4deg); opacity: 1; }
	100% { transform: none; opacity: 1; }
}
@keyframes hpIconBob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}
.hp-seo-mini > div.is-in .hp-seo-mini__icon {
	animation: hpIconPop 0.6s cubic-bezier(0.34, 1.5, 0.64, 1) both, hpIconBob 5.5s ease-in-out 1.5s infinite;
}
.hp-seo-mini > div:nth-child(2).is-in .hp-seo-mini__icon { animation-delay: 0.14s, 1.7s; }
.hp-seo-mini > div:nth-child(3).is-in .hp-seo-mini__icon { animation-delay: 0.28s, 1.9s; }
.hp-seo-mini > div:hover .hp-seo-mini__icon { animation: none; }

/* Generic "section that ends in a roller edge" helper */
.hp-section--edged { padding-bottom: 0; }
.hp-section--edged > .hp-container { padding-bottom: var(--hp-section-y); }
.hp-section--edged > .hp-edge { display: block; margin-bottom: -1px; }

@media (prefers-reduced-motion: reduce) {
	.hp-seo-mini > div.is-in .hp-seo-mini__icon { animation: none; }
	.hp-seo-mini__cta, .hp-arrow { transition: none; }
}


/* =============================================================
   v1.17.2 — icon accents follow the hover color
   ============================================================= */
/* Tool icons carry orange accent strokes; when a chip fills orange on
   hover, every stroke must switch to the chip's text color or the
   accents vanish orange-on-orange. */
.hp-seo-mini > div:hover .hp-seo-mini__icon svg *,
.hp-card:hover .hp-card__icon svg *,
.hp-city-services li:hover .hp-city-services__icon svg * {
	stroke: currentColor;
}


/* =============================================================
   v1.18 — quote form hover life
   ============================================================= */
.hp-choice label {
	transition: border-color 0.2s ease, background 0.2s ease,
		transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}
.hp-choice label:hover {
	border-color: var(--hp-orange);
	transform: translateY(-3px);
	box-shadow: var(--hp-shadow-sm);
}
.hp-choice label:hover strong { color: var(--hp-orange-dark); }
.hp-choice label strong { transition: color 0.2s ease; }
.hp-choice input:checked + label { box-shadow: 0 10px 24px -12px rgba(217, 95, 23, 0.45); }
.hp-choice input:focus-visible + label { outline: 3px solid rgba(242, 107, 29, 0.45); outline-offset: 2px; }

.hp-field input, .hp-field select, .hp-field textarea { transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.hp-field input:hover, .hp-field select:hover, .hp-field textarea:hover { border-color: var(--hp-orange-light, #FF8A3D); }
.hp-field input:focus, .hp-field select:focus, .hp-field textarea:focus {
	border-color: var(--hp-orange);
	box-shadow: 0 0 0 4px rgba(242, 107, 29, 0.16);
	outline: none;
}

@media (prefers-reduced-motion: reduce) {
	.hp-choice label { transition: border-color 0.2s ease, background 0.2s ease; }
	.hp-choice label:hover { transform: none; }
}


/* =============================================================
   v1.19 — quote form: guided, priceless, alive
   ============================================================= */
/* Reassurance line under the progress bar */
.hp-qf__note { text-align: center; font-size: 13.5px; color: var(--hp-slate); margin: 12px 0 0; }

/* "Choose one" chips beside required group headings */
.hp-choose {
	display: inline-block; vertical-align: middle; margin-left: 10px;
	font-family: var(--hp-font-body); font-size: 11.5px; font-weight: 700;
	letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--hp-orange-dark); background: var(--hp-orange-soft);
	padding: 4px 10px; border-radius: 999px;
}
.hp-qf__subhead { font-family: var(--hp-font-display); font-size: 19px; color: var(--hp-navy); margin: 22px 0 0; }

/* Unanswered required group: gentle point, not a slap */
@keyframes hpNudge {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-5px); }
	75% { transform: translateX(5px); }
}
.hp-qf__grid.is-missing { animation: hpNudge 0.35s ease; }
.hp-qf__grid.is-missing .hp-choice label { border-color: var(--hp-orange); background: var(--hp-orange-soft); }

/* Chosen tiles wear a paint check */
.hp-choice label { position: relative; }
@keyframes hpCheckPop {
	0% { transform: scale(0.3) rotate(-20deg); opacity: 0; }
	70% { transform: scale(1.15) rotate(3deg); opacity: 1; }
	100% { transform: none; opacity: 1; }
}
.hp-choice input:checked + label::after {
	content: "✓"; position: absolute; top: 10px; right: 10px;
	width: 24px; height: 24px; display: grid; place-items: center;
	background: linear-gradient(135deg, var(--hp-orange), var(--hp-orange-dark));
	color: #fff; font-size: 13px; font-weight: 800; border-radius: 50%;
	box-shadow: 0 4px 10px -3px rgba(217, 95, 23, 0.6);
	animation: hpCheckPop 0.35s cubic-bezier(0.34, 1.5, 0.64, 1) both;
}

/* Progress bar as five paint dashes filling left to right */
.hp-qf__progress { background: transparent; gap: 7px; padding: 18px 24px 0; }
.hp-qf__progress span {
	height: 7px; border-radius: 4px; transform: skewX(-14deg);
	background: var(--hp-linen);
	transition: background 0.35s ease, box-shadow 0.35s ease;
}
.hp-qf__progress span.is-done {
	background: linear-gradient(90deg, var(--hp-orange) 0%, #FF8A3D 70%, var(--hp-orange-dark) 100%);
	box-shadow: 0 3px 8px -2px rgba(217, 95, 23, 0.5);
}

/* Steps glide in */
@keyframes hpStepIn {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: none; }
}
.hp-qf__step.is-active { animation: hpStepIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both; }

/* Recap: your project at a glance */
.hp-recap {
	background: var(--hp-navy); border-radius: var(--hp-radius-sm);
	padding: 20px 22px; margin: 0 0 22px;
}
.hp-recap__title {
	display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em;
	text-transform: uppercase; color: var(--hp-orange-light, #FF8A3D); margin-bottom: 12px;
}
.hp-recap__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.hp-recap__chips span {
	display: inline-block; padding: 7px 14px; border-radius: 999px;
	background: rgba(247, 244, 239, 0.1); border: 1px solid rgba(247, 244, 239, 0.22);
	color: var(--hp-canvas); font-size: 13.5px; font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
	.hp-qf__grid.is-missing { animation: none; }
	.hp-choice input:checked + label::after { animation: none; }
	.hp-qf__step.is-active { animation: none; }
}


/* =============================================================
   v1.20 — the wow layer (all scoped to body.hp-wow; master
   switch: HAVENPAINT_WOW in functions.php)
   ============================================================= */
/* Heading strokes draw themselves in as sections reveal */
.hp-wow .hp-reveal .hp-stroke {
	transform: scaleX(0); transform-origin: left;
	transition: transform 0.65s cubic-bezier(0.34, 1.3, 0.64, 1) 0.25s;
}
.hp-wow .hp-reveal.is-in .hp-stroke { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
	.hp-wow .hp-reveal .hp-stroke { transition: none; transform: none; }
}


/* =============================================================
   v1.23 — form toast
   ============================================================= */
.hp-toast {
	position: fixed; left: 50%; bottom: 26px; z-index: 300;
	transform: translateX(-50%) translateY(24px); opacity: 0;
	display: flex; align-items: center; gap: 12px;
	max-width: min(480px, calc(100vw - 32px));
	background: var(--hp-navy); color: var(--hp-canvas);
	padding: 15px 18px; border-radius: 14px;
	box-shadow: 0 24px 50px -18px rgba(13, 30, 58, 0.6);
	font-size: 15px; line-height: 1.5;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.hp-toast.is-in { transform: translateX(-50%) translateY(0); opacity: 1; }
.hp-toast__icon {
	flex: none; width: 28px; height: 28px; display: grid; place-items: center;
	border-radius: 50%; font-weight: 800; font-size: 15px; color: #fff;
}
.hp-toast--ok .hp-toast__icon { background: linear-gradient(135deg, var(--hp-orange), var(--hp-orange-dark)); }
.hp-toast--err .hp-toast__icon { background: #B3372B; }
.hp-toast__close {
	flex: none; margin-left: 4px; width: 28px; height: 28px;
	border: 0; border-radius: 8px; background: rgba(247, 244, 239, 0.12);
	color: var(--hp-canvas); font-size: 17px; line-height: 1; cursor: pointer;
	transition: background 0.2s ease;
}
.hp-toast__close:hover { background: rgba(247, 244, 239, 0.24); }
@media (prefers-reduced-motion: reduce) { .hp-toast { transition: opacity 0.2s ease; transform: translateX(-50%); } }
