/* Big Easy Patios :: design system v3 "Blue Collar Pro".
   Navy + construction orange, Barlow / Barlow Semi Condensed, lead-gen
   architecture: form in the hero, badge bar, checkmark trust, navy bands.
   Palette matches the client's real gazebo logo (navy mark, orange word). */

:root {
	--navy: #12395B;
	--navy-d: #0D2A44;
	--navy-l: #24537A;
	--orange: #F26722;
	--orange-d: #D95514;
	--orange-soft: #FFB37E;
	--paper: #F4F6F8;
	--panel: #EDF2F6;
	--line: #DFE5EA;
	--ink: #1C2733;
	--muted: #4B5A68;
	--soft: #7A8794;
	--radius: 10px;
	--shadow: 0 6px 22px rgba(18, 57, 91, .1);
	--shadow-lg: 0 16px 38px rgba(18, 57, 91, .18);
	--font-display: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
	--font-body: "Barlow", "Segoe UI", sans-serif;
	--step--1: clamp(.83rem, .8rem + .18vw, .95rem);
	--step-0: clamp(1rem, .96rem + .22vw, 1.1rem);
	--step-1: clamp(1.14rem, 1.08rem + .3vw, 1.35rem);
	--step-2: clamp(1.4rem, 1.28rem + .6vw, 1.8rem);
	--step-3: clamp(1.7rem, 1.5rem + 1.1vw, 2.4rem);
	--step-4: clamp(2.2rem, 1.8rem + 2vw, 3.6rem);
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-d); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
	outline: 3px solid var(--orange);
	outline-offset: 2px;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: .01em;
	text-transform: uppercase;
	color: var(--navy);
	margin: 0 0 .5em;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p { margin: 0 0 1em; }

.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 999;
	background: var(--navy); color: #fff; padding: .6rem 1rem;
}
.skip-link:focus { left: 0; }

.container { width: min(1180px, calc(100% - 2.4rem)); margin-inline: auto; }
.container--narrow { width: min(780px, calc(100% - 2.4rem)); }
.center { text-align: center; }
.measure { max-width: 660px; }
.lead { font-size: var(--step-1); color: var(--muted); line-height: 1.55; }

.eyebrow {
	font-family: var(--font-body);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--orange);
	margin: 0 0 .8rem;
}

/* ------------------------------------------------------------------ */
/* Utility strip + header                                               */
/* ------------------------------------------------------------------ */
.util-strip { background: var(--navy-d); color: #B9C9D8; font-size: .82rem; }
.util-strip .container { display: flex; gap: 1.6rem; align-items: center; padding: .42rem 0; }
.util-strip span { display: inline-flex; align-items: center; gap: .4rem; }
.util-strip .bpt-ico { color: var(--orange); }
.util-strip a { color: var(--orange-soft); text-decoration: none; font-weight: 800; font-size: .95rem; }
.util-phone { margin-left: auto; }

.site-header {
	position: sticky; top: 0; z-index: 60;
	background: #fff;
	border-bottom: 4px solid var(--orange);
	box-shadow: 0 2px 14px rgba(18, 57, 91, .08);
}
.header-bar { display: flex; align-items: center; gap: 1.4rem; padding: .6rem 0; }
.brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--ink); }
.brand-logo-img { display: block; image-rendering: -webkit-optimize-contrast; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-big { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; text-transform: uppercase; color: var(--navy); }
.brand-sub { font-size: .68rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; color: var(--orange); margin-top: .2rem; }

/* 3-zone header: logo left, nav centered, phone/CTA right. The nav takes
   the middle track so leftover space splits evenly on both sides instead
   of pooling into one dead gap. */
.nav-primary { flex: 1; display: flex; justify-content: center; min-width: 0; }
.nav-primary .menu { list-style: none; display: flex; gap: .1rem; margin: 0; padding: 0; }
.nav-primary a {
	display: block; padding: .55rem .7rem; text-decoration: none;
	color: var(--ink); font-weight: 700; font-size: .92rem;
	text-transform: uppercase; letter-spacing: .03em;
}
.nav-primary > .menu > li > a:hover { color: var(--orange); }
.nav-primary li { position: relative; }
.sub-menu {
	list-style: none; margin: 0; padding: .5rem 0;
	position: absolute; top: 100%; left: 0; min-width: 260px;
	background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--orange);
	box-shadow: var(--shadow-lg);
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: .18s ease;
	z-index: 70;
}
.nav-primary li:hover > .sub-menu,
.nav-primary li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.sub-menu a { padding: .48rem 1rem; font-weight: 600; text-transform: none; letter-spacing: 0; }
.sub-menu a:hover { background: var(--panel); color: var(--navy); }

.header-cta { display: flex; align-items: center; gap: .9rem; }
.header-phone {
	display: inline-flex; align-items: center; gap: .45rem;
	text-decoration: none; color: var(--navy); font-weight: 800; font-size: .95rem;
	white-space: nowrap;
}
.header-phone:hover { color: var(--orange-d); }

.nav-toggle {
	display: none; background: none; border: 1.5px solid var(--line);
	padding: .45rem .55rem; color: var(--navy); cursor: pointer; border-radius: 8px;
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }

/* ------------------------------------------------------------------ */
/* Buttons                                                              */
/* ------------------------------------------------------------------ */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	padding: .85rem 1.6rem; border-radius: 6px;
	font-family: var(--font-body); font-weight: 800; font-size: .93rem;
	text-transform: uppercase; letter-spacing: .04em;
	text-decoration: none; border: 2px solid transparent; cursor: pointer;
	transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(242, 103, 34, .35); }
.btn-primary:hover { background: var(--orange-d); }
/* Call button lives on navy heroes: solid white for contrast (navy-on-navy
   was invisible); orange stays reserved for the estimate CTA. */
.btn-call { background: #fff; color: var(--navy); box-shadow: 0 6px 18px rgba(0, 0, 0, .25); }
.btn-call:hover { background: var(--panel); color: var(--navy-d); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-l); }
.btn-ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn-block { width: 100%; }
.header-quote { padding: .6rem 1.2rem; font-size: .85rem; }

/* ------------------------------------------------------------------ */
/* Hero: navy lead-gen with background photo + estimate form            */
/* ------------------------------------------------------------------ */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; opacity: .26; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(100deg, rgba(13, 42, 68, .92) 0%, rgba(13, 42, 68, .55) 55%, rgba(13, 42, 68, .3) 100%);
	pointer-events: none;
}
.hero-grid {
	position: relative; z-index: 2;
	display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem;
	align-items: center; padding: 3.4rem 0 3.8rem;
}
.hero--home .hero-grid { padding: 4rem 0 4.4rem; }
.hero--plain .hero-grid { grid-template-columns: 1fr; }
.hero h1 { color: #fff; max-width: 22ch; text-wrap: balance; }
/* Inner-page heroes are full-width (no form column): let the title run one
   line whenever it fits; balance keeps long titles from orphaning 1-2 words. */
.hero--plain h1 { max-width: none; }
.hero h1 em { font-style: normal; color: var(--orange-soft); }
.hero-sub { font-size: var(--step-1); color: #C7D5E2; max-width: 56ch; }
.herolist { list-style: none; margin: 1.3rem 0 0; padding: 0; display: grid; gap: .55rem; font-weight: 600; }
.herolist li { display: flex; gap: .6rem; align-items: baseline; }
.herolist li::before { content: "\2714"; color: var(--orange); font-weight: 800; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.5rem; }
.hero-trust {
	display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.4rem;
	margin-top: 1.6rem; font-size: .88rem; color: #C7D5E2; font-weight: 600;
}
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-trust .bpt-ico { color: var(--orange-soft); }
.stars { color: #F5A623; letter-spacing: .1em; }

.hero-form .estimate-form-wrap { margin: 0; }

.breadcrumb { font-size: .8rem; color: #9FB4C6; margin-bottom: .9rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.breadcrumb a { color: #C7D5E2; text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { margin-inline: .4rem; opacity: .6; }
.breadcrumb .current { color: #fff; }

/* Badge bar */
.badge-bar { background: #fff; border-bottom: 1px solid var(--line); }
.badge-bar-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2.4rem; padding: .95rem 0; }
.badge-item { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; font-size: .9rem; color: var(--navy); }
.badge-item .bpt-ico { color: var(--orange); background: var(--panel); border-radius: 50%; padding: .4rem; width: 34px; height: 34px; }

/* ------------------------------------------------------------------ */
/* Sections                                                             */
/* ------------------------------------------------------------------ */
.section { padding: 4.2rem 0; }
.section--sand { background: var(--panel); }
.section--dusk { background: var(--navy); color: #E8EEF3; }
.section--dusk h2, .section--dusk h3 { color: #fff; }
.section--dusk .lead { color: #C7D5E2; }
.section--dusk a:not(.btn) { color: var(--orange-soft); }
.section--cities { background: var(--panel); }
.stats-band { padding: 2.4rem 0; }

/* ------------------------------------------------------------------ */
/* Grid + cards                                                         */
/* ------------------------------------------------------------------ */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
	display: flex; flex-direction: column;
	background: #fff; border-radius: var(--radius); overflow: hidden;
	padding: 0 0 1.25rem; text-decoration: none; color: var(--ink);
	box-shadow: var(--shadow);
	transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { padding: 0 1.2rem; margin-top: 1.05rem; }
.card p { padding: 0 1.2rem; color: var(--muted); font-size: .93rem; flex-grow: 1; margin-bottom: .8rem; }
.card-media { position: relative; overflow: hidden; aspect-ratio: 4/2.7; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-badge { display: none; }
.card-link {
	display: inline-flex; align-items: center; gap: .4rem;
	padding: 0 1.2rem; font-weight: 800; font-size: .85rem;
	text-transform: uppercase; letter-spacing: .06em; color: var(--orange);
}
.card-date { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--soft); font-weight: 600; margin: .15rem 1.2rem .4rem; }

/* Stats (navy band) */
.stat { text-align: center; padding: .6rem; border-left: 1px solid var(--navy-l); }
.grid-4 .stat:first-child, .grid-2 .stat:nth-child(odd) { border-left: 0; }
.stat-n { font-family: var(--font-display); font-weight: 800; font-size: var(--step-3); color: var(--orange-soft); line-height: 1; }
.stat-l { margin-top: .45rem; font-size: .85rem; color: #C7D5E2; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }

/* Why us checks */
.why-split { grid-template-columns: 1.05fr .95fr; }
.checks { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .9rem; }
.checks li {
	display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: center;
	background: #fff; border-radius: 8px; padding: .95rem 1.1rem;
	box-shadow: var(--shadow); font-weight: 600;
}
.checks li::before {
	content: "\2714"; color: #fff; background: var(--orange);
	width: 26px; height: 26px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center; font-size: .8rem;
}
.why-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ------------------------------------------------------------------ */
/* Process                                                              */
/* ------------------------------------------------------------------ */
.process-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.process-step {
	position: relative; background: #fff; border-radius: var(--radius);
	border-top: 5px solid var(--navy);
	padding: 1.8rem 1.4rem 1.4rem; box-shadow: var(--shadow);
}
.process-watermark {
	position: absolute; top: -19px; left: 1.2rem;
	background: var(--orange); color: #fff;
	font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
	width: 38px; height: 38px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 6px 14px rgba(242, 103, 34, .4);
}
.process-ico { display: none; }
.process-step h3 { margin-top: .3rem; }
.process-step p { color: var(--muted); font-size: .93rem; margin: 0; }
.process-expert { font-weight: 700; }
.process-expert a { color: var(--orange-d); text-decoration: none; }
.process-expert .bpt-ico { color: var(--orange); vertical-align: middle; }

/* ------------------------------------------------------------------ */
/* Exterior remodeling band (navy)                                      */
/* ------------------------------------------------------------------ */
.exterior-cards { display: grid; gap: 1rem; }
.exterior-card {
	display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
	background: rgba(255,255,255,.05); border: 1px solid var(--navy-l);
	border-left: 4px solid var(--orange);
	border-radius: 8px; padding: 1.15rem 1.25rem;
	color: #fff; text-decoration: none; transition: background .18s ease, transform .18s ease;
}
.exterior-card:hover { background: rgba(255,255,255,.1); transform: translateX(4px); }
.exterior-card h3 { margin-bottom: .2rem; color: #fff; }
.exterior-card p { margin: 0; color: #C7D5E2; font-size: .92rem; }
.exterior-card .card-link { color: var(--orange-soft); grid-column: 2; padding: 0; }
.exterior-ico { display: inline-flex; padding: .55rem; background: var(--orange); color: #fff; border-radius: 8px; }

/* ------------------------------------------------------------------ */
/* Split + checklist                                                    */
/* ------------------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.checklist li { display: grid; grid-template-columns: auto 1fr; gap: .6rem; align-items: start; font-weight: 600; }
.checklist .bpt-ico { color: var(--orange); margin-top: .1rem; }
.checklist--light { color: #DDE7EF; }

/* ------------------------------------------------------------------ */
/* Testimonials carousel                                                */
/* ------------------------------------------------------------------ */
.tcar { position: relative; margin-top: 2.4rem; }
.tcar-track {
	display: flex; gap: 1.2rem; overflow-x: auto; scroll-behavior: smooth;
	scrollbar-width: none; padding: .2rem .2rem 1rem;
}
.tcar-track::-webkit-scrollbar { display: none; }
.tm-card { flex: 0 0 min(400px, 86vw); }
.quote {
	margin: 0; background: #fff; border-radius: var(--radius);
	padding: 1.5rem 1.5rem 1.3rem; box-shadow: var(--shadow);
	display: flex; flex-direction: column;
}
.quote p { color: #33414E; font-size: .96rem; flex-grow: 1; margin: .6rem 0 1rem; }
.quote footer, .review-head { display: flex; align-items: center; gap: .7rem; }
.quote cite { font-style: normal; font-weight: 800; display: block; color: var(--navy); }
.quote .loc { display: block; font-size: .8rem; color: var(--soft); }
.avatar--photo img, .review-head img { border-radius: 50%; width: 46px; height: 46px; object-fit: cover; }
.tcar-btn {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 44px; height: 44px; border-radius: 50%;
	border: 1px solid var(--line); background: #fff; color: var(--navy);
	font-size: 1.5rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow);
	z-index: 3;
}
.tcar-prev { left: -8px; }
.tcar-next { right: -8px; }
.tcar-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ------------------------------------------------------------------ */
/* Work / gallery                                                       */
/* ------------------------------------------------------------------ */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.work-tile, .work-card { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.work-tile img, .work-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .3s ease; }
.work-tile:hover img, .work-card:hover img { transform: scale(1.04); }
.work-strip { margin-top: 2.2rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery-tile { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .3s ease; }
.gallery-tile:hover img { transform: scale(1.05); }

.lightbox {
	position: fixed; inset: 0; z-index: 200; display: none;
	align-items: center; justify-content: center;
	background: rgba(13, 42, 68, .92); padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; width: auto; height: auto; border-radius: 8px; }
.lightbox-close {
	position: absolute; top: 1rem; right: 1.4rem;
	background: none; border: 0; color: #fff; font-size: 2.4rem; cursor: pointer;
}

/* ------------------------------------------------------------------ */
/* Areas                                                                */
/* ------------------------------------------------------------------ */
.areas-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2.4rem; }
.areas-map { min-height: 340px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.area-tags { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.area-tags a {
	display: flex; align-items: center; gap: .55rem;
	background: rgba(255,255,255,.06); border: 1px solid var(--navy-l);
	border-left: 4px solid var(--orange);
	color: #fff; text-decoration: none; font-weight: 700; font-size: .92rem;
	padding: .85rem 1rem; border-radius: 6px; transition: background .15s ease;
}
.area-tags a:hover { background: var(--orange); border-color: var(--orange); }
.section--sand .area-tags a, .section--cities .area-tags a, .section:not(.section--dusk) .area-tags a {
	background: #fff; border-color: var(--line); border-left-color: var(--orange);
	color: var(--navy); box-shadow: 0 4px 14px rgba(18, 57, 91, .08);
}
.section:not(.section--dusk) .area-tags a:hover { background: var(--navy); color: #fff; }

.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
.city-card {
	display: flex; align-items: center; gap: .6rem;
	background: #fff; border-radius: 6px; border-left: 4px solid var(--orange);
	padding: .95rem 1.1rem; text-decoration: none; color: var(--navy); font-weight: 700;
	box-shadow: 0 4px 14px rgba(18, 57, 91, .08);
	transition: transform .15s ease, background .15s ease, color .15s ease;
}
.city-card:hover { transform: translateY(-3px); background: var(--navy); color: #fff; }
.city-card .bpt-ico { color: var(--orange); flex-shrink: 0; }
.city-arrow { margin-left: auto; color: var(--orange); }

/* ------------------------------------------------------------------ */
/* FAQ                                                                  */
/* ------------------------------------------------------------------ */
.faq details {
	background: #fff; border-radius: 8px;
	margin-bottom: .7rem; box-shadow: 0 4px 14px rgba(18, 57, 91, .08);
	padding: 0 1.2rem;
}
.faq summary {
	list-style: none; cursor: pointer; font-weight: 700; font-size: 1rem;
	padding: 1.05rem 2rem 1.05rem 0; position: relative; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q "; color: var(--orange); font-weight: 800; }
.faq summary::after {
	content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
	font-family: var(--font-display); font-size: 1.5rem; color: var(--orange);
}
.faq details[open] summary::after { content: "\2212"; }
.faq details > p { padding: 0 0 1.1rem; margin: 0; color: var(--muted); }
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-split { grid-template-columns: 1.15fr 1fr; }
.faq-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); position: sticky; top: 140px; }
.faq-actions { margin-top: 2rem; display: flex; gap: .9rem; justify-content: center; }

/* ------------------------------------------------------------------ */
/* Estimate form                                                        */
/* ------------------------------------------------------------------ */
.estimate-split { grid-template-columns: 1fr 1fr; }
.estimate-form-wrap {
	background: #fff; color: var(--ink);
	border-radius: var(--radius); border-top: 6px solid var(--orange);
	padding: 1.6rem; box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}
.estimate-form-wrap h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.estimate-form-wrap--ghl { padding: 1.2rem 1.2rem 1rem; }
.bpt-ghl-form { display: block; width: 100%; border: 0; border-radius: 8px; background: #fff; }
.bpt-ghl-form--hero { height: 560px; }
.bpt-ghl-form--contact { height: 720px; }
.form-fineprint { font-size: .78rem; color: var(--soft); text-align: center; margin: .8rem 0 0; }
.estimate-or { margin-top: 1.3rem; font-weight: 700; }
.estimate-or a { display: inline-flex; align-items: center; gap: .4rem; color: var(--orange-soft); text-decoration: none; }

/* ------------------------------------------------------------------ */
/* CTA band                                                             */
/* ------------------------------------------------------------------ */
.cta-band { text-align: center; background: linear-gradient(100deg, var(--navy) 0%, var(--navy-d) 100%); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 1.6rem; }
.cta-fineprint { margin-top: 1.2rem; font-size: .9rem; color: #9FB4C6; }

/* ------------------------------------------------------------------ */
/* Trust bar (inner pages)                                              */
/* ------------------------------------------------------------------ */
.trust-bar { background: #fff; color: var(--navy); padding: .8rem 0; border-bottom: 1px solid var(--line); }
.trust-bar-inner {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-wrap: wrap; gap: .5rem 2.2rem; justify-content: center;
	font-size: .88rem; font-weight: 700;
}
.trust-bar-inner li { display: inline-flex; align-items: center; gap: .45rem; }
.trust-bar .bpt-ico { color: var(--orange); }

/* ------------------------------------------------------------------ */
/* Content layouts (inner pages)                                        */
/* ------------------------------------------------------------------ */
.content-bleed {
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 40%);
	gap: 3rem; width: min(1180px, calc(100% - 2.4rem)); margin-inline: auto;
}
.content-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr); gap: 3rem; }
.content-aside img { border-radius: var(--radius); box-shadow: var(--shadow-lg); position: sticky; top: 140px; }
.content-figure { margin: 0; position: sticky; top: 140px; }
.content-figure img { position: static; }
.content-figure figcaption {
	display: flex; align-items: center; gap: .45rem;
	font-size: .84rem; color: var(--muted); font-weight: 600; margin-top: .7rem;
}

.prose h2 { font-size: var(--step-2); margin-top: 1.6em; }
.prose h3 { font-size: var(--step-1); margin-top: 1.4em; }
.prose h2:first-child { margin-top: 0; }
.prose h2::after { content: ""; display: block; width: 44px; height: 3px; background: var(--orange); margin-top: .5rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--orange-d); font-weight: 700; }
.prose--rich > p:first-of-type { font-size: var(--step-1); color: var(--ink); }

/* ------------------------------------------------------------------ */
/* Related cards (photo top, white body)                                */
/* ------------------------------------------------------------------ */
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.rel-card {
	position: relative; display: flex; flex-direction: column;
	background: #fff; border-radius: var(--radius); overflow: hidden;
	text-decoration: none; box-shadow: var(--shadow);
	transition: transform .15s ease, box-shadow .15s ease;
	min-height: 0;
}
.rel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.rel-card > img { position: static; width: 100%; aspect-ratio: 4/2.7; object-fit: cover; opacity: 1; }
.rel-card-body {
	position: static; min-height: 0; background: none;
	display: flex; flex-direction: column; align-items: flex-start;
	padding: 1.05rem 1.2rem 1.2rem; flex: 1;
}
.rel-card h3 { color: var(--navy); margin-bottom: .3rem; }
.rel-card p { color: var(--muted); font-size: .9rem; margin: 0 0 .6rem; }
.rel-card-icon { display: none; }
.rel-card-cta {
	color: var(--orange); font-weight: 800; font-size: .85rem;
	text-transform: uppercase; letter-spacing: .06em;
	display: inline-flex; align-items: center; gap: .4rem; margin-top: auto;
}

/* ------------------------------------------------------------------ */
/* Contact                                                              */
/* ------------------------------------------------------------------ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3rem; align-items: start; }
.contact-details { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.contact-details li {
	display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start;
	background: #fff; border-radius: 8px; padding: 1rem 1.1rem;
	box-shadow: 0 4px 14px rgba(18, 57, 91, .08);
}
.contact-details .bpt-ico { color: var(--orange); margin-top: .15rem; }
.contact-details span { display: block; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--soft); }
.contact-details a { font-weight: 800; color: var(--navy); text-decoration: none; font-size: 1.05rem; }
.contact-details p { margin: 0; }

/* ------------------------------------------------------------------ */
/* Footer                                                               */
/* ------------------------------------------------------------------ */
.site-footer { background: var(--navy-d); color: #B9C9D8; padding: 3.4rem 0 5.4rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.4rem; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; }
.footer-brand address { font-style: normal; font-size: .92rem; margin-bottom: .8rem; display: block; }
.footer-brand a { color: var(--orange-soft); font-weight: 700; text-decoration: none; }
.footer-hours { display: inline-flex; align-items: center; gap: .4rem; font-size: .87rem; }
.site-footer ul.footer-social {
	list-style: none; display: flex; flex-direction: row; flex-wrap: wrap;
	gap: .7rem; margin: 1rem 0 0; padding: 0;
}
.footer-social a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 50%;
	background: rgba(255,255,255,.07); border: 1px solid var(--navy-l);
	color: #C7D5E2; transition: background .15s ease, color .15s ease, transform .15s ease;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }
.site-footer h4 {
	color: #fff; font-size: .85rem; letter-spacing: .16em; margin-bottom: .9rem;
}
.site-footer h4::after { content: ""; display: block; width: 26px; height: 3px; background: var(--orange); margin-top: .45rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.site-footer ul a { color: #B9C9D8; text-decoration: none; font-size: .92rem; }
.site-footer ul a:hover { color: #fff; }
.footer-bottom {
	display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between;
	border-top: 1px solid var(--navy-l); margin-top: 2.6rem; padding-top: 1.4rem;
	font-size: .84rem;
}
.footer-legal a { color: #B9C9D8; }

/* Mobile call bar */
.mobile-callbar {
	position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
	display: none; grid-template-columns: 1fr 1fr;
	background: var(--navy-d); border-top: 1px solid var(--navy-l);
	padding-bottom: env(safe-area-inset-bottom);
}
.mobile-callbar a {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	padding: .95rem .5rem; color: #fff; font-weight: 800; text-decoration: none; font-size: .92rem;
	text-transform: uppercase; letter-spacing: .04em;
}
.mobile-callbar a:first-child { background: var(--orange); }
.mobile-callbar svg { width: 19px; height: 19px; }

/* ------------------------------------------------------------------ */
/* Blog                                                                 */
/* ------------------------------------------------------------------ */
.post-hero { background: var(--navy); color: #fff; padding: 3.2rem 0; }
.post-hero h1 { color: #fff; max-width: 24ch; }
.post-hero .eyebrow { color: var(--orange-soft); }
.post-meta { color: #C7D5E2; font-size: .9rem; display: inline-flex; align-items: center; gap: .5rem; }
.post-body { max-width: 760px; margin-inline: auto; }
.post-body img { border-radius: var(--radius); }

/* ------------------------------------------------------------------ */
/* Reveal animation                                                     */
/* ------------------------------------------------------------------ */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.js .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------ */
/* Responsive                                                           */
/* ------------------------------------------------------------------ */
@media (max-width: 1300px) {
	.nav-primary {
		position: fixed; inset: 0; top: 0; z-index: 100;
		background: var(--navy-d); padding: 5rem 1.6rem 2rem;
		transform: translateX(100%); transition: transform .25s ease;
		overflow-y: auto; margin: 0;
	}
	.nav-primary.open { transform: none; }
	.nav-primary .menu { flex-direction: column; gap: .1rem; }
	.nav-primary a { color: #fff; font-size: 1.05rem; padding: .8rem .6rem; }
	.nav-primary a:hover { background: rgba(255,255,255,.07); }
	.sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none;
		background: transparent; border: 0; box-shadow: none; display: none;
		padding: 0 0 0 1rem;
	}
	.nav-primary li.open > .sub-menu { display: block; }
	.sub-menu a { color: #B9C9D8; font-size: .95rem; }
	.sub-menu a:hover { background: transparent; }
	/* Nav is off-canvas here, so the CTA cluster right-aligns itself. */
	.header-cta { margin-left: auto; }
	.nav-toggle { display: inline-flex; z-index: 110; position: relative; }
	body:has(.nav-primary.open) .nav-toggle { color: #fff; border-color: var(--navy-l); }
	.header-phone span { display: none; }
	.util-strip .util-lic { display: none; }
}

@media (max-width: 980px) {
	.grid-3, .grid-4, .rel-grid, .work-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.process-track { grid-template-columns: 1fr !important; gap: 2rem; }
	.split, .why-split, .areas-layout, .content-bleed, .content-layout, .contact-layout, .estimate-split, .faq-split, .hero-grid { grid-template-columns: 1fr; }
	.hero-grid { gap: 2.2rem; }
	.content-aside img, .content-figure, .faq-media img { position: static; }
	.city-grid { grid-template-columns: repeat(2, 1fr); }
	.header-quote { display: none; }
	.grid-4 .stat { border-left: 0; }
}

@media (max-width: 640px) {
	.section { padding: 3.2rem 0; }
	.grid-2, .grid-3, .grid-4, .rel-grid, .work-grid, .gallery-grid, .city-grid, .area-tags { grid-template-columns: 1fr; }
	.util-strip .util-hours { display: none; }
	.mobile-callbar { display: grid; }
	.site-footer { padding-bottom: 7rem; }
	.footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
	.tcar-prev { left: 2px; }
	.tcar-next { right: 2px; }
	.header-bar .brand-logo-img { height: 52px !important; }
}

/* ------------------------------------------------------------------ */
/* Our Team: full-bleed crew banner + overlapping crew cards            */
/* ------------------------------------------------------------------ */
.crew-banner { position: relative; min-height: 400px; display: flex; align-items: flex-end; overflow: hidden; background: var(--navy); }
.crew-banner-bg { position: absolute; inset: 0; }
.crew-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.crew-banner::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(12deg, rgba(13, 42, 68, .94) 18%, rgba(13, 42, 68, .5) 60%, rgba(13, 42, 68, .16));
	pointer-events: none;
}
.crew-banner-copy { position: relative; z-index: 2; color: #fff; padding: 5.6rem 0 4.8rem; }
.crew-banner-copy h2 { color: #fff; max-width: 18ch; }
.crew-banner-copy .lead { color: #D5E1EC; max-width: 54ch; margin: 0; }
.crew-cards { margin-top: -3.2rem; position: relative; z-index: 3; padding-bottom: 3.4rem; }
.crew-card {
	background: #fff; border-radius: var(--radius); overflow: hidden;
	border-top: 4px solid var(--orange); box-shadow: var(--shadow-lg);
	text-align: center; padding-bottom: 1.3rem;
}
.crew-photo img { width: 100%; height: auto; }
.crew-card h3 { margin: 1.1rem 1rem 0; }

/* ------------------------------------------------------------------ */
/* Instagram feed (Elfsight embed, shared fleet widget)                 */
/* ------------------------------------------------------------------ */
.ig-feed { min-height: 120px; }

@media (max-width: 860px) {
	.crew-banner { min-height: 320px; }
	.crew-banner-copy { padding: 4rem 0 4.4rem; }
}

/* ------------------------------------------------------------------ */
/* Estimate popup modal (GHL form, lazy-loaded on first open)          */
/* ------------------------------------------------------------------ */
.bpt-modal-overlay {
	position: fixed; inset: 0; z-index: 99999;
	background: rgba(13, 42, 68, .74);
	-webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
	display: none; align-items: flex-start; justify-content: center;
	padding: 40px 16px; overflow-y: auto;
}
.bpt-modal-overlay.is-open { display: flex; }
.bpt-modal {
	position: relative; background: #fff; border-radius: var(--radius);
	border-top: 6px solid var(--orange);
	width: 100%; max-width: 480px; margin: auto;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
	animation: bpt-modal-in .25s ease;
}
@keyframes bpt-modal-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.bpt-modal-close {
	position: absolute; top: -16px; right: -16px; z-index: 2;
	width: 40px; height: 40px; border-radius: 50%; border: none;
	background: #fff; color: var(--navy); font-size: 26px; line-height: 1;
	cursor: pointer; box-shadow: 0 4px 14px rgba(0, 0, 0, .28);
	display: flex; align-items: center; justify-content: center;
	transition: transform .15s;
}
.bpt-modal-close:hover { transform: scale(1.08); }
.bpt-modal-iframe {
	width: 100%; height: 600px; border: none; border-radius: var(--radius);
	display: block; background: #fff;
}
@media (max-width: 540px) {
	.bpt-modal-overlay { padding: 16px 8px; }
	.bpt-modal-close { top: 8px; right: 8px; background: rgba(255, 255, 255, .92); width: 34px; height: 34px; font-size: 22px; }
}

/* ------------------------------------------------------------------ */
/* Thank You page                                                       */
/* ------------------------------------------------------------------ */
.thankyou-wrap { max-width: 860px; text-align: center; }
.thankyou-badge {
	width: 74px; height: 74px; margin: 0 auto 1.4rem; border-radius: 50%;
	background: var(--orange); color: #fff;
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow-lg);
}
.thankyou-wrap .lead { max-width: 56ch; margin-inline: auto; }
.thankyou-steps {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
	margin: 2.6rem 0 2.2rem; text-align: left;
}
.thankyou-step {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 1.4rem 1.3rem; box-shadow: var(--shadow);
}
.thankyou-num {
	font-family: var(--font-display); font-weight: 800; font-size: 1.6rem;
	color: var(--orange); display: block; margin-bottom: .4rem;
}
.thankyou-step h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.thankyou-step p { font-size: .92rem; color: var(--muted); margin: 0; }
.thankyou-urgent { font-weight: 600; margin-bottom: 1.6rem; }
.thankyou-urgent a { color: var(--orange-d); font-weight: 800; text-decoration: none; }
.thankyou-wrap .cta-actions { justify-content: center; }
.thankyou-wrap .btn-ghost { color: var(--navy); }
@media (max-width: 860px) {
	.thankyou-steps { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------ */
/* Single post: two-column layout + sticky aside (fleet post arc)      */
/* ------------------------------------------------------------------ */
.post-layout {
	display: grid; grid-template-columns: minmax(0, 1fr) 340px;
	gap: clamp(1.8rem, 3.5vw, 3.4rem); align-items: start;
}
.post-main .post-lead-img { margin-bottom: 1.6rem; border-radius: 14px; }
.post-aside { position: sticky; top: 96px; display: grid; gap: 1.2rem; }
.aside-card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 1.3rem 1.25rem; box-shadow: var(--shadow);
}
.aside-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.aside-cta {
	background: var(--navy); border: 0; color: #E8EEF3;
	border-top: 6px solid var(--orange);
}
.aside-cta h3 { color: #fff; }
.aside-cta p { font-size: .92rem; color: #C7D5E2; }
.aside-cta .btn { margin-top: .35rem; }
.aside-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .15rem; }
.aside-list a {
	display: flex; gap: .5rem; align-items: baseline;
	padding: .45rem .2rem; text-decoration: none;
	color: var(--ink); font-weight: 600; font-size: .92rem; line-height: 1.4;
	border-bottom: 1px solid var(--line);
}
.aside-list li:last-child a { border-bottom: 0; }
.aside-list a:hover { color: var(--orange-d); }
.aside-list .bpt-ico { flex: none; color: var(--orange); }
@media (max-width: 980px) {
	.post-layout { grid-template-columns: 1fr; }
	.post-aside { position: static; }
}

/* ------------------------------------------------------------------ */
/* WP alignment classes for post content (fleet blog pattern: images   */
/* float right at ~400px and the article text wraps around them)       */
/* ------------------------------------------------------------------ */
.post-body img.alignright, .post-body img.alignleft, .post-body img.aligncenter, .post-body img.alignnone {
	height: auto; border-radius: 10px; box-shadow: var(--shadow);
}
.post-body img.alignright {
	float: right; max-width: min(46%, 420px);
	margin: .35rem 0 1.1rem 1.6rem;
}
.post-body img.alignleft {
	float: left; max-width: min(46%, 420px);
	margin: .35rem 1.6rem 1.1rem 0;
}
.post-body img.aligncenter, .post-body img.alignnone {
	display: block; margin: 1.4rem auto; max-width: 100%;
}
.post-body h2 { clear: both; }
@media (max-width: 680px) {
	.post-body img.alignright, .post-body img.alignleft {
		float: none; max-width: 100%; margin: 1.2rem 0;
	}
}
