/* =========================================================================
   Big Easy Paver Patios :: design system
   Built with Sonic. One responsive foundation, every page inherits it.
   Palette: cypress green + clay terracotta. Type: Sora / Inter.
   ========================================================================= */

:root {
  /* color */
  --green: #1F3A2E;
  --green-dark: #15291F;
  --clay: #C8602B;
  --clay-dark: #A94E20;
  --sand: #EFE7DA;
  --ink: #222018;
  --ink-soft: #5C574C;
  --line: #D9D3C7;
  --paper: #FAF7F1;
  --white: #ffffff;

  /* type scale (fluid, no media queries needed) */
  --step--1: clamp(.83rem,.78rem + .25vw,.95rem);
  --step-0: clamp(1rem,.95rem + .3vw,1.125rem);
  --step-1: clamp(1.2rem,1.05rem + .6vw,1.5rem);
  --step-2: clamp(1.5rem,1.25rem + 1vw,2rem);
  --step-3: clamp(1.9rem,1.5rem + 1.8vw,2.75rem);
  --step-4: clamp(2.3rem,1.7rem + 3vw,4rem);

  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --serif: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 10px 30px rgba(21,41,31,.12);
  --shadow-lg: 0 24px 60px rgba(21,41,31,.18);
  --section-y: clamp(3rem, 8vw, 7rem);
}

/* reset / base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--sans); font-size: var(--step-0);
  line-height: 1.65; color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--clay-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.12; color: var(--green); margin: 0 0 .5em; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
p { margin: 0 0 1.1em; }
:focus-visible { outline: 3px solid var(--clay); outline-offset: 2px; }

/* layout */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.container--narrow { max-width: 820px; }
.section { padding-block: var(--section-y); }
.section--sand { background: var(--sand); }
.section--green { background: var(--green); color: #ece7dd; }
.section--green h2, .section--green h3 { color: #fff; }
.eyebrow { font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: var(--step--1); color: var(--clay); margin: 0 0 .6rem; }
.section--green .eyebrow { color: #E6A77E; }
.lead { font-size: var(--step-1); color: var(--ink-soft); }
.section--green .lead { color: #cdd6cd; }
.center { text-align: center; }
.measure { max-width: 60ch; }
.center .measure, .measure.center { margin-inline: auto; }
/* Section intros: let the heading run on one line; keep the lead paragraph readable */
.center.measure { max-width: none; }
.center.measure .eyebrow, .center.measure .lead { max-width: 60ch; margin-inline: auto; }

/* grid */
.grid { display: grid; gap: clamp(1rem, 3vw, 2rem); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--sans); font-weight: 600; font-size: var(--step-0); line-height: 1; padding: .95rem 1.5rem; border-radius: 100px; border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, background .15s ease, box-shadow .15s ease; min-height: 48px; text-decoration: none; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--clay); color: #fff; box-shadow: 0 8px 20px rgba(200,96,43,.32); }
.btn-primary:hover { background: var(--clay-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--green); border-color: var(--green); }
.btn-ghost:hover { background: var(--green); color: #fff; }
.section--green .btn-ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.section--green .btn-ghost:hover { background: #fff; color: var(--green); }
.btn .bep-ico { width: 18px; height: 18px; color: currentColor; }

/* icons */
.bep-ico { color: var(--clay); flex: none; }
.ico-circle { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 16px; background: rgba(200,96,43,.1); color: var(--clay); }
.ico-circle .bep-ico { width: 30px; height: 30px; }

/* ---------------- header ---------------- */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(250,247,241,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
/* Header uses the inner-page 1400px container on EVERY page (incl. home) so the nav is identical site-wide. */
.site-header .container.header-bar { max-width: 1400px; }
.header-bar { display: flex; align-items: center; justify-content: space-between; gap: clamp(1rem, 2.5vw, 2.2rem); min-height: 72px; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; white-space: nowrap; }
.brand:hover { text-decoration: none; }
.brand-mark { display: flex; flex: none; }
.brand-mark-svg { display: block; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word small { font-family: var(--sans); font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.brand-word strong { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--green); margin-top: .2em; }
.brand-word strong em { font-style: normal; color: var(--clay); margin-left: .28em; }

.nav-primary ul { display: flex; gap: 1.75rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-primary li { position: relative; }
.nav-primary a { color: var(--ink); font-weight: 500; font-size: .96rem; text-decoration: none; white-space: nowrap; display: inline-flex; align-items: center; gap: .2rem; }
.nav-primary a:hover { color: var(--clay-dark); }
.menu-item-has-children > a::after { content: ""; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-left: .15rem; margin-top: -3px; opacity: .55; transition: transform .2s ease; }

/* dropdown (desktop) */
.sub-menu { position: absolute; top: calc(100% + 6px); left: 0; min-width: 210px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-lg); padding: .3rem; margin: 0; list-style: none; display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .18s ease, transform .18s ease; z-index: 80; }
.sub-menu::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.nav-primary li:hover > .sub-menu, .nav-primary li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.sub-menu li { width: 100%; }
.sub-menu a { display: block; width: 100%; padding: .4rem .7rem; border-radius: 7px; font-size: .9rem; line-height: 1.3; color: var(--ink); }
.sub-menu a:hover { background: var(--sand); color: var(--green); }
.header-cta { display: flex; align-items: center; gap: .85rem; }
.header-phone { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--green); white-space: nowrap; }
.header-phone:hover { text-decoration: none; color: var(--clay-dark); }
.nav-toggle { display: none; background: var(--green); color: #fff; border: 0; width: 46px; height: 46px; border-radius: 10px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; stroke: #fff; }

/* ---------------- hero ---------------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, rgba(21,41,31,.86) 0%, rgba(21,41,31,.62) 55%, rgba(21,41,31,.32) 100%); }
.hero-inner { padding-block: clamp(3.5rem, 11vw, 8rem); max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero .eyebrow { color: #E6A77E; }
.hero-sub { font-size: var(--step-1); color: #ece7dd; margin-bottom: 1.6rem; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.6rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem; align-items: center; font-size: .95rem; color: #e7e2d7; }
.hero-trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust .bep-ico { color: #E6A77E; width: 20px; height: 20px; }
.stars { color: #E6A77E; letter-spacing: 2px; }

/* ---------------- cards ---------------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { font-size: var(--step-1); margin-bottom: .4rem; }
.card p { margin-bottom: 0; color: var(--ink-soft); font-size: .98rem; }
.card .ico-circle { margin-bottom: 1rem; }
.card-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; font-weight: 600; color: var(--clay-dark); }
.card-media { margin: -1.6rem -1.6rem 1.2rem; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; aspect-ratio: 4/3; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }

/* problem list */
.pain { display: flex; gap: .9rem; align-items: flex-start; padding: 1.2rem 1.3rem; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--clay); border-radius: var(--radius-sm); }
.pain .bep-ico { color: var(--clay); margin-top: .2rem; }
.pain b { color: var(--green); display: block; }
.pain p { margin: .2rem 0 0; font-size: .96rem; color: var(--ink-soft); }

/* process steps */
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 1.5rem 1.5rem; box-shadow: var(--shadow); }
.step-n { position: absolute; top: -22px; left: 1.5rem; width: 46px; height: 46px; border-radius: 12px; background: var(--green); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; }
.step h3 { font-size: var(--step-1); margin-top: .3rem; }
.step p { margin-bottom: 0; color: var(--ink-soft); font-size: .97rem; }

/* stats */
.stat { text-align: center; }
.stat-n { font-family: var(--serif); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--clay); line-height: 1; }
.section--green .stat-n { color: #E6A77E; }
.stat-l { font-size: .96rem; color: var(--ink-soft); margin-top: .3rem; }
.section--green .stat-l { color: #cdd6cd; }

/* testimonials */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.quote .stars { margin-bottom: .6rem; display: block; }
.quote p { font-size: 1.02rem; color: var(--ink); }
.quote footer { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; font-size: .9rem; }
.quote .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--green); font-family: var(--serif); }
.quote cite { font-style: normal; font-weight: 700; color: var(--green); }
.quote .loc { color: var(--ink-soft); display: block; font-weight: 400; }

/* split content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.checklist { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .6rem; align-items: flex-start; }
.checklist .bep-ico { color: var(--green); margin-top: .15rem; width: 22px; height: 22px; }

/* areas served */
.area-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.area-tags span { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); padding: .5rem 1rem; border-radius: 100px; font-size: .95rem; }
.area-tags a { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); padding: .5rem 1rem; border-radius: 100px; font-size: .95rem; color: #fff; text-decoration: none; transition: background .15s ease, border-color .15s ease; }
.area-tags a:hover { background: var(--clay); border-color: var(--clay); color: #fff; text-decoration: none; }

/* checklist on a dark/green section */
.section--green .checklist li, .checklist--light li { color: #ece7dd; }
.section--green .checklist .bep-ico, .checklist--light .bep-ico { color: #E6A77E; }

/* crew photo fallback (until a real team photo is set) */
.crew-fallback { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .7rem; aspect-ratio: 4/3; background: var(--sand); border: 1px dashed var(--line); border-radius: var(--radius); color: var(--ink-soft); font-weight: 600; text-align: center; padding: 1rem; }
.crew-fallback .bep-ico { color: var(--clay); width: 56px; height: 56px; }

/* testimonial author photo */
.quote .avatar--photo { padding: 0; overflow: hidden; }
.quote .avatar--photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* crew grid (Meet the Crew) */
.crew-card { text-align: center; }
.crew-photo { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 1rem; background: var(--sand); }
.crew-photo img { width: 100%; height: 100%; object-fit: cover; }
.crew-card h3 { font-size: var(--step-1); margin-bottom: .1rem; }
.crew-role { color: var(--clay-dark); font-weight: 600; margin: 0; }

/* instagram (elfsight) feed */
.ig-feed { min-height: 120px; }

/* =========================================================================
   2026-06-22 homepage redesign additions
   ========================================================================= */

/* --- crisper section separation --- */
.section--sand + .section, .section + .section--sand { position: relative; }

/* --- process (3-step, redesigned) --- */
.process-expert { font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; }
.process-expert .bep-ico { color: var(--clay); }
.process-track { position: relative; }
.process-track::before { content: ""; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--clay) 0 10px, transparent 10px 20px); opacity: .35; z-index: 0; }
.process-step { position: relative; z-index: 1; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.6rem 1.6rem 1.6rem; box-shadow: var(--shadow); text-align: center; }
.process-num { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: var(--green); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 1.5rem; margin: 0 auto 1rem; border: 4px solid var(--sand); }
.process-step h3 { font-size: var(--step-1); margin-bottom: .4rem; }
.process-step p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
@media (max-width: 980px) { .process-track::before { display: none; } }

/* --- testimonials (redesigned) --- */
.quote { position: relative; padding: 2.4rem 1.7rem 1.6rem; display: flex; flex-direction: column; }
.quote .quote-mark { position: absolute; top: .4rem; left: 1.2rem; font-family: var(--serif); font-size: 4rem; line-height: 1; color: var(--clay); opacity: .18; }
.quote .stars { position: relative; }
.quote p { flex: 1; }
.quote footer { border-top: 1px solid var(--line); padding-top: 1rem; }

/* --- work gallery --- */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(.8rem, 2vw, 1.4rem); }
.work-tile { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.work-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.work-tile:hover img { transform: scale(1.06); }

/* --- service areas + map --- */
.areas-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.areas-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 360px; }
.areas-map iframe { display: block; width: 100%; height: 100%; min-height: 360px; }
.areas-side { display: flex; flex-direction: column; justify-content: center; }
.area-tags a { display: inline-flex; align-items: center; gap: .4rem; }
.area-tags a .bep-ico { color: #E6A77E; width: 16px; height: 16px; }
@media (max-width: 860px) { .areas-layout { grid-template-columns: 1fr; } .areas-map { min-height: 280px; } }

/* --- crew (no face cropping) --- */
.crew-photo { aspect-ratio: 4/5; }
.crew-photo img { object-position: center top; }

/* --- FAQ 2-column with image --- */
.faq-split { grid-template-columns: 1.5fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); }
.faq-media { align-self: stretch; position: relative; min-height: 360px; }
.faq-media img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); object-fit: cover; }
.faq-cta { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--clay); border-radius: var(--radius-sm); padding: 1.2rem 1.3rem; margin-top: 1.2rem; }
.faq-cta p { margin: 0 0 .8rem; color: var(--ink-soft); }
.faq-cta .btn { width: 100%; justify-content: center; }
@media (max-width: 860px) {
  .faq-media { align-self: auto; position: static; min-height: 0; }
  .faq-media img { position: static; height: auto; aspect-ratio: 4/3; }
}

/* --- free estimate form --- */
.estimate-split { gap: clamp(1.5rem, 4vw, 3.5rem); }
.estimate-or { margin-top: 1.4rem; font-weight: 600; }
.estimate-or a { color: #fff; display: inline-flex; align-items: center; gap: .4rem; text-decoration: underline; }
.estimate-or a .bep-ico { color: #E6A77E; }
.estimate-form-wrap { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: clamp(1.4rem, 3vw, 2.2rem); max-height: 620px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
/* GHL embed grows to its full height via form_embed.js; the wrapper scrolls so the section stays short (matches bigeasywindows.com .bew-ghl-form) */
.estimate-form-wrap .bep-ghl-embed { min-height: 0; }
.estimate-form label { display: block; font-weight: 600; color: var(--green); font-size: .92rem; margin-bottom: .9rem; }
.estimate-form .opt { font-weight: 400; color: var(--ink-soft); }
.estimate-form input, .estimate-form select, .estimate-form textarea { width: 100%; margin-top: .35rem; padding: .7rem .8rem; border: 1px solid var(--line); border-radius: var(--radius-sm); font: inherit; font-weight: 400; color: var(--ink); background: var(--paper); }
.estimate-form input:focus, .estimate-form select:focus, .estimate-form textarea:focus { outline: 2px solid var(--clay); border-color: var(--clay); }
.ef-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.estimate-form button { margin-top: .4rem; }
.ef-fine { font-size: .82rem; color: var(--ink-soft); text-align: center; margin: .9rem 0 0; }
.estimate-success { text-align: center; padding: 1.5rem 1rem; }
.estimate-success .bep-ico { color: var(--green); width: 48px; height: 48px; margin: 0 auto .6rem; }
.estimate-success h3 { color: var(--green); }
.estimate-success p { color: var(--ink-soft); margin: 0; }
@media (max-width: 520px) { .ef-row { grid-template-columns: 1fr; } }

/* =========================================================================
   2026-06-22 r2 redesign
   ========================================================================= */

/* hero "Call Us Now" button — solid, high-visibility on the dark hero */
.btn-call { background: #fff; color: var(--green); border-color: #fff; }
.btn-call:hover { background: var(--sand); color: var(--green); border-color: var(--sand); }
.btn-call .bep-ico { color: var(--clay); }

/* problem section (editorial numbered list, problem-only) */
.problem-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 860px) { .problem-split { grid-template-columns: 1fr; gap: 1.5rem; } }
.problem-intro { position: sticky; top: 90px; }
@media (max-width: 860px) { .problem-intro { position: static; } }
.problem-list { display: flex; flex-direction: column; }
.problem-row { display: grid; grid-template-columns: auto 1fr; gap: clamp(1rem, 2vw, 1.4rem); padding: 1.6rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.problem-row:first-child { padding-top: 0; }
.problem-row:last-child { border-bottom: none; }
.problem-num { font-family: var(--serif); font-size: clamp(2.1rem, 5vw, 2.8rem); line-height: 1; color: var(--clay); font-weight: 600; opacity: .85; }
.problem-row h3 { font-size: var(--step-1); margin: 0 0 .3em; display: flex; align-items: center; gap: .5rem; }
.problem-rico { display: inline-flex; flex: none; color: var(--clay); }
.problem-rico .bep-ico { width: 20px; height: 20px; }
.problem-row > div > p { color: var(--ink-soft); margin: 0; }

/* service cards with photos */
.card--photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card--photo .card-media { margin: 0; aspect-ratio: 16/10; position: relative; }
.card--photo .card-badge { position: absolute; left: 14px; bottom: 14px; width: 46px; height: 46px; border-radius: 12px; background: #fff; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; }
.card--photo .card-badge .bep-ico { color: var(--clay); }
.card--photo h3 { margin: 1.4rem 1.5rem .4rem; font-size: var(--step-1); }
.card--photo > p { margin: 0 1.5rem; color: var(--ink-soft); font-size: .97rem; }
.card--photo .card-link { margin: 1rem 1.5rem 1.5rem; }

/* process (Big Easy Method, redesigned) */
.process-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 3vw, 2rem); position: relative; }
.process-track::before { content: ""; position: absolute; top: 46px; left: 16%; right: 16%; height: 2px; background: repeating-linear-gradient(90deg, var(--clay) 0 10px, transparent 10px 20px); opacity: .4; }
.process-step { position: relative; z-index: 1; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.4rem 1.6rem 1.6rem; box-shadow: var(--shadow); text-align: center; overflow: hidden; }
.process-watermark { position: absolute; top: -14px; right: 6px; font-family: var(--serif); font-weight: 700; font-size: 5.5rem; line-height: 1; color: var(--clay); opacity: .1; pointer-events: none; }
.process-ico { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 74px; height: 74px; border-radius: 50%; background: var(--green); margin-bottom: 1rem; border: 4px solid var(--sand); }
.process-ico .bep-ico { color: #fff; width: 28px; height: 28px; }
.process-step h3 { font-size: var(--step-1); margin-bottom: .4rem; }
.process-step p { margin: 0; color: var(--ink-soft); font-size: .97rem; }
@media (max-width: 860px) { .process-track { grid-template-columns: 1fr; } .process-track::before { display: none; } }

/* featured testimonial */
.testimonial-featured { display: grid; grid-template-columns: .8fr 1.2fr; background: var(--green); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.tf-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.tf-body { position: relative; padding: clamp(1.6rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.tf-body .quote-mark { position: absolute; top: .4rem; left: 1.4rem; font-family: var(--serif); font-size: 6rem; line-height: 1; color: #E6A77E; opacity: .22; }
.tf-body .stars { color: #E6A77E; margin-bottom: .8rem; position: relative; letter-spacing: 2px; }
.tf-body p { position: relative; font-size: var(--step-1); color: #fff; font-family: var(--serif); line-height: 1.4; margin-bottom: 1.2rem; }
.tf-body cite { font-style: normal; font-weight: 700; color: #fff; display: block; }
.tf-body .loc { color: #cdd6cd; font-size: .9rem; }
@media (max-width: 760px) { .testimonial-featured { grid-template-columns: 1fr; } .tf-photo img { min-height: 240px; } }

/* faq centered CTAs */
.faq-actions { margin-top: 2.5rem; display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.faq-split { gap: clamp(1.5rem, 4vw, 3rem); }

/* crew photo: show the head (uncropped 'large' image, anchored to top) */
.crew-photo { aspect-ratio: 4/5; }
.crew-photo img { object-fit: cover; object-position: center top; }

/* featured testimonial reduced ~40% + reviews carousel (2026-06-22 r3) */
.testimonial-featured .tf-photo img { min-height: 200px; }
.testimonial-featured .tf-body { padding: clamp(1.2rem, 3vw, 1.8rem); }
.testimonial-featured .tf-body p { font-size: var(--step-0); line-height: 1.45; margin-bottom: .9rem; }
.testimonial-featured .tf-body .quote-mark { font-size: 4rem; top: .2rem; left: 1rem; }
.testimonial-featured .tf-body .stars { margin-bottom: .5rem; }

.testimonial-carousel { position: relative; margin-inline: auto; }
.tc-track { display: flex; gap: clamp(1rem, 2vw, 1.4rem); overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: .4rem .2rem 1.2rem; -ms-overflow-style: none; scrollbar-width: none; }
.tc-track::-webkit-scrollbar { display: none; }
.tc-slide { flex: 0 0 clamp(280px, 31.5%, 360px); scroll-snap-align: start; }
.tc-btn { position: absolute; top: 42%; transform: translateY(-50%); z-index: 5; width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); color: var(--green); font-size: 1.7rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s ease, color .15s ease; }
.tc-btn:hover { background: var(--clay); color: #fff; border-color: var(--clay); }
.tc-prev { left: -6px; }
.tc-next { right: -6px; }
@media (max-width: 600px) { .tc-slide { flex-basis: 86%; } .tc-prev { left: 0; } .tc-next { right: 0; } }

/* faq */
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .7rem 1.1rem; margin-bottom: .55rem; }
.faq summary { font-family: var(--serif); font-weight: 600; font-size: var(--step-0); line-height: 1.35; color: var(--green); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--clay); font-family: var(--sans); font-size: 1.3rem; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] summary { margin-bottom: .55rem; }
.faq p { margin: 0; color: var(--ink-soft); }

/* final cta band */
.cta-band { text-align: center; }
.cta-band .btn { margin: .4rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.4rem; }

/* prose (the_content) */
.prose > h2 { margin-top: 1.8em; }
.prose > h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }
.prose img { border-radius: var(--radius); margin: 1.5em 0; }

/* ---------------- footer ---------------- */
.site-footer { background: var(--green-dark); color: #c7cfc6; padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem; font-size: .95rem; }
.site-footer a { color: #e7e2d7; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-family: var(--sans); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; margin: 0 0 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-brand b { font-family: var(--serif); font-size: 1.3rem; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.3rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .85rem; color: #9aa79a; }

/* mobile sticky call bar */
.mobile-callbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; background: var(--green); box-shadow: 0 -6px 20px rgba(0,0,0,.18); }
.mobile-callbar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem; color: #fff; font-weight: 700; text-decoration: none; min-height: 54px; }
.mobile-callbar a + a { border-left: 1px solid rgba(255,255,255,.2); background: var(--clay); }
.mobile-callbar svg { width: 20px; height: 20px; stroke: #fff; }

/* reveal on scroll (progressive enhancement: hidden ONLY when JS is active) */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* =========================================================================
   2026-06-23 inner-page architecture additions
   (nav dropdowns, trust bar, refined logo lockup, 4-step method)
   ========================================================================= */

/* --- refined brand lockup: mark + wordmark read as one logo --- */
.brand { gap: .65rem; }
.brand-mark-svg { filter: drop-shadow(0 4px 10px rgba(21,41,31,.18)); border-radius: 12px; }
.brand-word small { font-size: .62rem; letter-spacing: .26em; color: var(--clay-dark); font-weight: 800; }
.brand-word strong { font-size: 1.42rem; letter-spacing: -.015em; margin-top: .12em; }
.brand-word strong em { margin-left: .1em; }

/* --- "View all" footer link inside a dropdown --- */
.sub-menu-viewall { margin-top: .25rem; border-top: 1px solid var(--line); color: var(--clay-dark) !important; font-weight: 600 !important; }

/* --- in-content image for service + location pages --- */
.content-figure { margin: 0 0 2rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.content-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.content-figure figcaption { display: flex; align-items: center; gap: .45rem; padding: .7rem 1rem; background: #fff; border: 1px solid var(--line); border-top: none; font-size: .85rem; color: var(--ink-soft); font-weight: 600; }
.content-figure figcaption .bep-ico { color: var(--clay); width: 16px; height: 16px; }

/* --- inner-page trust bar (sits directly under the hero) --- */
.trust-bar { background: var(--green); color: #ece7dd; border-bottom: 3px solid var(--clay); }
.trust-bar-inner { list-style: none; margin: 0; padding: .9rem 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.4rem; }
.trust-bar-inner li { display: inline-flex; align-items: center; gap: .5rem; font-size: .95rem; font-weight: 600; color: #ece7dd; }
.trust-bar-inner .bep-ico { color: #E6A77E; width: 20px; height: 20px; }
.trust-bar-inner .stars { color: #E6A77E; letter-spacing: 1px; }

/* --- 4-step method: keep the connector tidy across four cards --- */
.process-track[style*="repeat(4"]::before { left: 12%; right: 12%; }
@media (max-width: 1024px) { .process-track[style*="repeat(4"] { grid-template-columns: repeat(2,1fr) !important; } .process-track[style*="repeat(4"]::before { display: none; } }
@media (max-width: 560px)  { .process-track[style*="repeat(4"] { grid-template-columns: 1fr !important; } }

@media (max-width: 720px) {
  .trust-bar-inner { gap: .6rem 1.4rem; }
  .trust-bar-inner li { font-size: .85rem; }
  .brand-word strong { font-size: 1.2rem; }
}

/* =========================================================================
   2026-06-23 PREMIUM inner-page elevation
   Editorial content + sticky estimate sidebar, paver-pattern showcase,
   photo-overlay related cards, photo reviews, city cards, breadcrumb.
   ========================================================================= */

/* --- inner pages breathe wider to kill the big side margins (homepage keeps its width) --- */
body:not(.home) .container { max-width: 1400px; }

/* --- content layout (hubs): text left, image right sized to the content height (no dead space below) --- */
.content-layout { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: stretch; }
@media (min-width: 980px) { .content-layout { grid-template-columns: minmax(0, 1fr) clamp(380px, 38%, 540px); } }
.content-layout .content-main { max-width: 780px; }
.content-layout .content-aside { display: flex; }
.content-layout .content-aside .content-figure { margin: 0; width: 100%; display: flex; flex-direction: column; }
.content-layout .content-aside .content-figure img { flex: 1 1 auto; min-height: 280px; aspect-ratio: auto; }
@media (max-width: 980px) {
  .content-layout .content-main { max-width: none; }
  .content-layout .content-aside .content-figure { display: block; }
  .content-layout .content-aside .content-figure img { aspect-ratio: 16/10; min-height: 0; flex: none; }
}

/* --- FULL-BLEED content: readable text left (aligned to the page), image to the right screen edge --- */
.content-bleed { display: grid; align-items: start; grid-template-columns: minmax(0, 1fr) clamp(380px, 40vw, 720px); gap: clamp(1.6rem, 3.5vw, 4rem); padding-left: clamp(1.5rem, 8vw, 150px); padding-right: clamp(1.5rem, 9vw, 170px); }
.content-bleed > .content-main { max-width: 860px; }
.content-bleed > .content-main > * { max-width: 820px; }
.content-bleed > .content-aside { position: sticky; top: 88px; }
.content-bleed > .content-aside img { width: 100%; height: clamp(320px, 44vh, 460px); object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-lg); display: block; }
@media (max-width: 980px) {
  .content-bleed { grid-template-columns: 1fr; gap: 1.6rem; padding-inline: clamp(1rem, 4vw, 2.5rem); }
  .content-bleed > .content-main { max-width: none; }
  .content-bleed > .content-main > * { max-width: none; }
  .content-bleed > .content-aside { position: static; }
  .content-bleed > .content-aside img { height: auto; aspect-ratio: 16/10; }
}

/* --- editorial entry: left-aligned, image floats hard-right to the container edge --- */
.entry { max-width: none; }
.entry:not(:has(> .content-figure)) { max-width: 820px; } /* text-only pages stay readable */
.entry > .content-figure { float: right; width: 40%; max-width: 460px; margin: .3rem 0 1.4rem 2.6rem; }
.entry::after { content: ""; display: table; clear: both; }
.faq-wrap { max-width: 820px; margin-inline: auto; }
@media (max-width: 760px) {
  .entry > .content-figure { float: none; width: 100%; max-width: none; margin: 0 0 1.5rem; }
}

/* --- hero breadcrumb + rating chip --- */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; font-size: .85rem; color: #cdd6cd; margin-bottom: 1.1rem; }
.breadcrumb a { color: #e7e2d7; text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: #E6A77E; }
.hero-rating { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: .4rem .9rem; border-radius: 100px; font-size: .9rem; margin-bottom: 1rem; backdrop-filter: blur(4px); }
.hero-rating .stars { color: #E6A77E; letter-spacing: 1px; }

/* --- editorial content + sticky sidebar layout --- */
.sp-layout { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: clamp(2rem,4vw,3.6rem); align-items: start; }
.sp-aside { position: sticky; top: 92px; display: grid; gap: 1.2rem; }

/* premium prose */
.prose--rich { font-size: 1.06rem; }
.prose--rich > p:first-of-type { font-size: 1.2rem; line-height: 1.6; color: var(--ink); }
.prose--rich > p:first-of-type::first-letter { font-family: var(--serif); font-weight: 700; font-size: 3.3rem; line-height: .8; float: left; margin: .12em .12em 0 0; color: var(--clay); }
.prose--rich h2 { font-size: var(--step-2); margin-top: 1.7em; }
.prose--rich h2::before { content: ""; display: block; width: 48px; height: 3px; background: var(--clay); border-radius: 2px; margin-bottom: .7rem; }
.prose--rich h3 { margin-top: 1.4em; font-size: var(--step-1); }
.prose--rich ul { list-style: none; padding-left: 0; margin: 1.2em 0; display: grid; gap: .65em; }
.prose--rich ul li { position: relative; padding-left: 2.1rem; }
.prose--rich ul li::before { content: "\2713"; position: absolute; left: 0; top: .05em; width: 1.45rem; height: 1.45rem; line-height: 1.45rem; text-align: center; border-radius: 50%; background: var(--green); color: #fff; font-size: .78rem; font-weight: 700; }
.prose--rich .content-figure { margin: 0 0 1.8rem; }

/* sticky quote card */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.quote-card-head { background: var(--green); color: #fff; padding: 1.3rem 1.4rem; }
.quote-card-head .eyebrow { color: #E6A77E; margin-bottom: .3rem; }
.quote-card-head h3 { color: #fff; margin: 0; font-size: var(--step-1); }
.quote-card-body { padding: 1.3rem 1.4rem; }
.quote-card .btn { width: 100%; justify-content: center; }
.quote-card-phone { display: flex; align-items: center; justify-content: center; gap: .5rem; margin: .8rem 0 0; font-family: var(--serif); font-weight: 700; font-size: 1.35rem; color: var(--green); }
.quote-card-phone:hover { color: var(--clay-dark); text-decoration: none; }
.quote-card-fine { text-align: center; font-size: .82rem; color: var(--ink-soft); margin: .5rem 0 0; }
.quote-card-trust { list-style: none; margin: 1.1rem 0 0; padding: 1.1rem 0 0; border-top: 1px solid var(--line); display: grid; gap: .6rem; }
.quote-card-trust li { display: flex; align-items: center; gap: .55rem; font-size: .92rem; color: var(--ink); font-weight: 500; }
.quote-card-trust .bep-ico { color: var(--green); flex: none; }
.aside-links { background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.4rem; }
.aside-links h4 { font-family: var(--sans); text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; color: var(--ink-soft); margin: 0 0 .8rem; }
.aside-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .15rem; }
.aside-links a { display: flex; align-items: center; gap: .5rem; padding: .5rem 0; color: var(--green); font-weight: 600; font-size: .95rem; border-bottom: 1px solid rgba(0,0,0,.05); }
.aside-links a:hover { color: var(--clay-dark); text-decoration: none; }
.aside-links a .bep-ico { color: var(--clay); width: 16px; height: 16px; }
@media (max-width: 940px) {
  .sp-layout { grid-template-columns: 1fr; }
  .sp-aside { position: static; grid-template-columns: 1fr; }
}

/* --- paver patterns showcase --- */
.pattern-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(1rem,2vw,1.5rem); }
.pattern-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease; }
.pattern-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pattern-swatch { aspect-ratio: 5/4; overflow: hidden; line-height: 0; }
.pattern-swatch svg { display: block; width: 100%; height: 100%; }
.pattern-card h3 { font-size: var(--step-0); margin: 1rem 1.1rem .25rem; }
.pattern-card p { margin: 0 1.1rem 1.2rem; font-size: .86rem; color: var(--ink-soft); }
@media (max-width: 860px) { .pattern-grid { grid-template-columns: repeat(2,1fr); } }

/* --- photo-overlay related-service cards --- */
.rel-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2.5vw,1.6rem); }
.rel-card { position: relative; min-height: 260px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; align-items: flex-end; isolation: isolate; }
.rel-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s ease; }
.rel-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(21,41,31,.94) 8%, rgba(21,41,31,.55) 48%, rgba(21,41,31,.15) 100%); }
.rel-card:hover img { transform: scale(1.07); }
.rel-card-body { padding: 1.4rem; color: #fff; }
.rel-card-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 11px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2); margin-bottom: .7rem; }
.rel-card-icon .bep-ico { color: #fff; }
.rel-card-body h3 { color: #fff; margin: 0 0 .2rem; font-size: var(--step-1); }
.rel-card-body p { margin: 0 0 .6rem; color: #e0dccf; font-size: .92rem; }
.rel-card-cta { color: #E6A77E; font-weight: 700; font-size: .92rem; display: inline-flex; align-items: center; gap: .35rem; }
.rel-card:hover .rel-card-cta { gap: .6rem; }
@media (max-width: 860px) { .rel-grid { grid-template-columns: 1fr; } }

/* --- photo reviews (premium) --- */
.review-head { display: flex; align-items: center; gap: .8rem; margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.review-head img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex: none; }
.review-head cite { font-style: normal; font-weight: 700; color: var(--green); display: block; }
.review-head .loc { color: var(--clay-dark); font-size: .85rem; font-weight: 600; }

/* --- city cards --- */
.city-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; }
.city-card { display: flex; align-items: center; gap: .7rem; padding: 1rem 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); color: var(--green); font-weight: 600; transition: transform .15s ease, box-shadow .15s ease; }
.city-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); text-decoration: none; color: var(--green); }
.city-card .bep-ico { color: var(--clay); flex: none; }
.city-card .city-arrow { margin-left: auto; color: var(--clay); transition: transform .15s ease; }
.city-card:hover .city-arrow { transform: translateX(3px); }
@media (max-width: 680px) { .city-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .city-grid { grid-template-columns: 1fr; } }

/* --- refined trust bar: subtle separators --- */
.trust-bar-inner li:not(:last-child) { border-right: 1px solid rgba(255,255,255,.16); padding-right: 2.4rem; }
@media (max-width: 720px) { .trust-bar-inner li:not(:last-child) { border-right: none; padding-right: 0; } }

/* =========================================================================
   The single shared media block (mobile foundation).
   ========================================================================= */

/* The 7-item nav (BEW-style 1.75rem spacing) + phone + Free Estimate CTA needs
   ~1300px to fit on one row; below that, switch the NAV to the drawer so the CTA
   never clips. Layout breakpoints (grids/hero/footer) stay at 980 in the block below. */
@media (max-width: 1300px) {
  .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--paper); }
  .nav-primary { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); background: var(--paper); display: flex; flex-direction: column; padding: 5rem 1.6rem 2rem; transform: translateX(100%); transition: transform .25s ease; box-shadow: var(--shadow-lg); z-index: 65; overflow-y: auto; }
  .nav-primary.open { transform: none; }
  .nav-primary ul { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-primary li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-primary > ul > li > a, .nav-primary a { display: flex; padding: .85rem 0; width: 100%; }
  .nav-primary .menu-item-has-children > a { justify-content: space-between; }
  .menu-item-has-children > a::after { margin-left: auto; margin-top: 0; opacity: .7; }
  .menu-item-has-children.open > a::after { transform: rotate(225deg); }
  .nav-primary .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding: 0 0 .5rem .9rem; min-width: 0; display: none; }
  .nav-primary .sub-menu::before { display: none; }
  .nav-primary .menu-item-has-children.open > .sub-menu { display: flex; }
  .nav-primary .sub-menu li { border-bottom: none; }
  .nav-primary .sub-menu a { padding: .5rem 0; font-size: .9rem; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 980px) {
  /* backdrop-filter on the header would trap the fixed drawer inside the header box; disable it here so the drawer fills the viewport */
  .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--paper); }
  .nav-primary { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); background: var(--paper); display: flex; flex-direction: column; padding: 5rem 1.6rem 2rem; transform: translateX(100%); transition: transform .25s ease; box-shadow: var(--shadow-lg); z-index: 65; overflow-y: auto; }
  .nav-primary.open { transform: none; }
  .nav-primary ul { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-primary li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-primary > ul > li > a, .nav-primary a { display: flex; padding: .85rem 0; width: 100%; }
  .nav-primary .menu-item-has-children > a { justify-content: space-between; }
  .menu-item-has-children > a::after { margin-left: auto; margin-top: 0; opacity: .7; }
  .menu-item-has-children.open > a::after { transform: rotate(225deg); }
  /* mobile submenu = accordion */
  .nav-primary .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding: 0 0 .5rem .9rem; min-width: 0; display: none; }
  .nav-primary .sub-menu::before { display: none; }
  .nav-primary .menu-item-has-children.open > .sub-menu { display: flex; }
  .nav-primary .sub-menu li { border-bottom: none; }
  .nav-primary .sub-menu a { padding: .5rem 0; font-size: .9rem; }
  .nav-toggle { display: inline-flex; }
  .header-phone span { display: none; }
  .grid-2, .grid-3, .grid-4, .split { grid-template-columns: 1fr; }
  .hero-inner { text-align: center; margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-callbar { display: flex; }
  body { padding-bottom: 54px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions .btn { width: 100%; }
}

/* ============ About / Contact / Blog-post additions (v1.9.0) ============ */

/* About: recent-work image strip */
.work-strip { margin-top: 2.5rem; }
.work-card { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.work-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .3s ease; }
.work-card:hover img { transform: scale(1.04); }

/* Contact page */
.contact-layout { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 980px) { .contact-layout { grid-template-columns: 1fr clamp(360px, 42%, 520px); } }
.contact-details { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.contact-details li { display: flex; align-items: flex-start; gap: .9rem; }
.contact-details .bep-ico { color: var(--clay); flex: none; margin-top: .15rem; }
.contact-details span { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); font-weight: 700; }
.contact-details a, .contact-details p { font-weight: 600; color: var(--green); margin: 0; }
.contact-details a:hover { color: var(--clay-dark); text-decoration: none; }
.contact-form-col h2 { margin-bottom: .4rem; }
.contact-form-col .lead { color: var(--ink-soft); margin-bottom: 1.4rem; }

/* Blog post: hero meta + two-column body + sidebar */
.post-meta-line { display: inline-flex; align-items: center; gap: .45rem; color: #e7e2d7; font-size: .92rem; margin-top: .4rem; }
.post-meta-line .bep-ico { color: #E6A77E; }
.post-layout { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (min-width: 980px) { .post-layout { grid-template-columns: minmax(0,1fr) clamp(300px, 32%, 380px); } }
.post-main { max-width: 780px; }
.post-aside { display: grid; gap: 1.4rem; }
@media (min-width: 980px) { .post-aside { position: sticky; top: 88px; } }
.aside-figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.aside-figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; box-shadow: var(--shadow); }
.aside-card h3 { font-size: var(--step-1); margin-bottom: .5rem; }
.aside-cta { background: var(--green); color: #ece7dd; border-color: var(--green); }
.aside-cta h3 { color: #fff; }
.aside-cta p { color: #cdd6cd; font-size: .95rem; margin-bottom: 1.1rem; }
.aside-cta .btn { width: 100%; justify-content: center; margin-bottom: .6rem; }
.aside-cta .btn:last-child { margin-bottom: 0; }
.aside-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .1rem; }
.aside-list a { display: flex; align-items: center; gap: .5rem; padding: .5rem 0; color: var(--green); font-weight: 600; font-size: .94rem; border-bottom: 1px solid rgba(0,0,0,.06); }
.aside-list li:last-child a { border-bottom: none; }
.aside-list a:hover { color: var(--clay-dark); text-decoration: none; }
.aside-list a .bep-ico { color: var(--clay); flex: none; }

/* About aside: contained, sticky image matching the service-page size (v1.9.1) */
.content-layout .content-aside--fixed { display: block; align-self: start; }
@media (min-width: 980px) { .content-layout .content-aside--fixed { position: sticky; top: 88px; } }
.content-layout .content-aside--fixed .content-figure { margin: 0; display: block; }
.content-layout .content-aside--fixed .content-figure img { flex: none; aspect-ratio: auto; height: clamp(320px, 44vh, 460px); min-height: 0; object-fit: cover; }
@media (max-width: 979px) { .content-layout .content-aside--fixed .content-figure img { height: auto; aspect-ratio: 16/10; } }

/* ============ Testimonials infinite carousel: arrows + touch (v1.9.3) ============ */
.testimonials .tcar { position: relative; margin-top: 2.6rem; }
.tcar-track { display: flex; gap: clamp(1rem, 2vw, 1.4rem); overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: .4rem .2rem 1.2rem; -ms-overflow-style: none; scrollbar-width: none; -webkit-overflow-scrolling: touch; user-select: none; -webkit-user-select: none; }
.tcar-track::-webkit-scrollbar { display: none; }
.tcar .tm-card { flex: 0 0 clamp(280px, 31%, 360px); scroll-snap-align: start; margin: 0; }
.tcar-btn { position: absolute; top: 44%; transform: translateY(-50%); z-index: 5; width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); color: var(--green); font-size: 1.7rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s ease, color .15s ease; }
.tcar-btn:hover { background: var(--clay); color: #fff; border-color: var(--clay); }
.tcar-prev { left: -8px; }
.tcar-next { right: -8px; }
@media (max-width: 600px) { .tcar .tm-card { flex-basis: 86%; } .tcar-prev { left: 0; } .tcar-next { right: 0; } }

/* Clear divide between the closing CTA band and the footer (v1.9.2) */
.site-footer { background: #11201A; border-top: 4px solid var(--clay); }

/* Gallery page grid (v1.9.2) */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: clamp(.8rem, 1.5vw, 1.2rem); }
.gallery-tile { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.gallery-tile:hover img { transform: scale(1.05); }

/* Pattern swatches now use real photos (v1.9.2) */
.pattern-swatch img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Gallery tiles clickable + lightbox (v1.9.3) */
.gallery-tile { display: block; cursor: pointer; }
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(17,32,26,.92); display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 4rem); opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.55); }
.lightbox-close { position: absolute; top: 1rem; right: 1.4rem; width: 48px; height: 48px; color: #fff; font-size: 2.2rem; line-height: 1; background: rgba(255,255,255,.12); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* Footer brand logo lockup (v1.9.6) */
.footer-logo { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; text-decoration: none; }
.footer-logo:hover { text-decoration: none; }
.footer-logo .brand-word small { color: #9aa79a; font-family: var(--sans); font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.footer-logo .brand-word strong { color: #fff; font-family: var(--serif); font-size: 1.3rem; font-weight: 700; margin-top: .2em; }
.footer-logo .brand-word strong em { font-style: normal; color: var(--clay); margin-left: .28em; }

/* ===== GHL estimate forms: inline embed + popup modal ===== */
.bep-ghl-embed { width:100%; min-height:600px; border:none; border-radius:12px; display:block; background:#fff; }
.bep-modal-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(21,41,31,.72);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  display: none; align-items: flex-start; justify-content: center;
  padding: 40px 16px; overflow-y: auto;
}
.bep-modal-overlay.is-open { display: flex; }
.bep-modal {
  position: relative; background: #fff; border-radius: 12px;
  width: 100%; max-width: 480px; margin: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  animation: bep-modal-in .25s ease;
}
@keyframes bep-modal-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.bep-modal-close {
  position: absolute; top: -16px; right: -16px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: #fff; color: #1F3A2E; 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;
}
.bep-modal-close:hover { transform: scale(1.08); }
.bep-modal-iframe {
  width: 100%; height: 600px; border: none; border-radius: 12px;
  display: block; background: #fff;
}
@media (max-width: 540px) {
  .bep-modal-overlay { padding: 16px 8px; }
  .bep-modal-close { top: 8px; right: 8px; background: rgba(255,255,255,.92); width: 34px; height: 34px; font-size: 22px; }
}

/* Contact page: trim top dead space below the hero + top-align the intro column with the form */
.section:has(> .container > .contact-layout) { padding-top: clamp(1.4rem, 3vw, 2.4rem); }
.contact-info .entry > :first-child { margin-top: 0; }

/* Skip-to-content link (WCAG 2.1 AA) — visually hidden until focused */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100000; background: var(--clay); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 8px 0; font-weight: 600; text-decoration: none; }
.skip-link:focus { left: 0; }
