/* =====================================================================
   Colorado Elite Outdoor Contractors — site stylesheet
   High-end + conservative. Navy + red on cream. No yellow fills.
   Gold is used ONLY for review star glyphs (trust convention).
   ===================================================================== */

:root {
  /* Brand — Lynnwood Construction: charcoal + gold on cream.
     Variable NAMES kept from the CEOC base (navy/red) so every reference
     recolors at once: --navy = charcoal dark, --red = deep gold action color. */
  /* BRAND IDENTITY = maroon + gold. Navy kept only as a rare supporting tint.
     --navy token now carries MAROON so all structure (header, footer, dark
     sections, headings) recolors to the brand maroon at once. */
  --navy:        #650119;   /* MAROON — primary brand: header, headings, dark sections, footer */
  --navy-2:      #500114;   /* darker maroon (gradient depth, cards) */
  --navy-3:      #7E0A22;   /* lighter maroon */
  --red:         #650119;   /* maroon accent — eyebrows, icons, links, rules on light */
  --red-dark:    #520114;   /* deeper maroon */
  --slate:       #2A3D67;   /* supporting navy (rare, subtle use only) */
  --cream:       #FFFFFF;   /* page canvas — clean white */
  --cream-warm:  #ECECEC;   /* alt band — light gray */
  --white:       #FFFFFF;
  --ink:         #494949;   /* body text */
  --ink-soft:    #6E6E6E;   /* muted */
  --line:        #E2E2E2;   /* hairline on white/gray */
  --line-navy:   rgba(255,255,255,0.14);
  --gold-btn:    #CD9933;   /* CTA gold — buttons (dark text) + accents on dark navy */
  --gold-btn-h:  #B9862A;   /* button hover */
  --star:        #CD9933;   /* gold — stars */

  /* Social proof pops OUTSIDE the brand palette — neon green (per QQ standard) */
  --green:        #16C047;
  --green-deep:   #0F9A37;
  --green-border: rgba(22,192,71,0.48);
  --green-ring:   rgba(22,192,71,0.10);
  --green-glow:   rgba(22,80,40,0.34);

  --font-display: "Lora", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;

  --wrap: 1200px;
  --r: 6px;       /* small radius */
  --r-lg: 12px;   /* card radius */

  --s-1: 8px;  --s-2: 16px;  --s-3: 24px;  --s-4: 32px;
  --s-5: 48px; --s-6: 64px;  --s-7: 96px;  --s-8: 128px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-3);
}
h1 { font-size: clamp(38px, 5.4vw, 62px); }
h2 { font-size: clamp(30px, 3.8vw, 46px); }
h3 { font-size: clamp(21px, 2vw, 26px); }
p { margin: 0 0 var(--s-3); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--s-7) 0; }
.section--tight { padding: var(--s-6) 0; }
.center { text-align: center; }
.lead { font-size: clamp(18px, 1.6vw, 21px); color: var(--ink-soft); line-height: 1.65; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red-dark); /* deeper gold for legible contrast on cream */
  margin: 0 0 var(--s-2);
}
.eyebrow--navy { color: var(--navy-3); }
.measure { max-width: 720px; }
.measure-sm { max-width: 560px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 30px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  border: 1.5px solid transparent; border-radius: var(--r); cursor: pointer;
  transition: background-color .18s, color .18s, border-color .18s;
}
.btn--primary { background: var(--gold-btn); color: #1B1B1B; }
.btn--primary:hover { background: var(--gold-btn-h); }
.btn--ghost { background: transparent; color: var(--navy); border-color: rgba(52,4,16,0.25); }
.btn--ghost:hover { border-color: var(--navy); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--lg { min-height: 58px; padding: 0 38px; }

.tel-link { font-weight: 600; font-size: 15px; color: #F3EFE6; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.tel-link:hover { color: var(--gold-btn); }

/* ---- Stars ---- */
.stars { color: var(--star); letter-spacing: 2px; font-size: 16px; line-height: 1; }
.rating-row { display: inline-flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--navy); }
.rating-row b { font-weight: 700; }
.rating-row .dot { color: var(--line); }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(101,1,25,0.96); /* deep navy so the white "Construction" wordmark reads */
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.brand__txt { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--navy); line-height: 1.05; }
.brand__txt small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; font-size: 14.5px; font-weight: 500; color: #F3EFE6; transition: color .15s; }
.nav a:hover { color: var(--gold-btn); }
.nav__cta { display: none; color: #fff !important; }
.dropdown__all { font-weight: 700 !important; color: var(--red) !important; border-top: 1px solid var(--line); margin-top: 4px; padding-top: 12px !important; }
.header-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; color: #F3EFE6; cursor: pointer; }

/* =====================================================================
   HERO — owners-forward
   ===================================================================== */
.hero { background: var(--cream); padding: var(--s-6) 0 var(--s-6); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; grid-template-areas: "head form" "rest form"; column-gap: var(--s-6); row-gap: var(--s-4); align-items: start; }
.hero__head { grid-area: head; }
.hero__rest { grid-area: rest; }
.hero__form { grid-area: form; align-self: start; }
.hero__title { margin-bottom: var(--s-3); }
.hero__sub { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-soft); line-height: 1.6; max-width: 560px; margin-bottom: var(--s-4); }
.hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-bottom: var(--s-4); }
.hero__rating { margin-bottom: var(--s-4); }
.trust-pills { display: flex; flex-wrap: wrap; gap: 10px 12px; }
.trust-pill { font-size: 13px; font-weight: 600; color: var(--navy-2); background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: 7px 15px; display: inline-flex; align-items: center; gap: 7px; }
.trust-pill svg { width: 15px; height: 15px; }

.hero__media { position: relative; }
.hero__media img { width: 100%; height: 100%; max-height: 560px; object-fit: cover; border-radius: var(--r-lg); }
.hero__caption {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  background: rgba(52,4,16,0.86); color: #fff; backdrop-filter: blur(4px);
  border-radius: var(--r); padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.hero__caption b { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.hero__caption span { font-size: 12.5px; color: rgba(255,255,255,0.75); display: block; }
.hero__caption .chip { text-align: right; }
.hero__caption .chip b { color: var(--star); font-family: var(--font-body); font-size: 18px; }

/* =====================================================================
   TRUST STRIP
   ===================================================================== */
.trust-strip { background: var(--navy); color: #fff; }
.trust-strip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; padding: 22px 24px; text-align: center; }
.trust-strip__item { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.92); display: inline-flex; align-items: center; gap: 9px; letter-spacing: 0.01em; }
.trust-strip__item .stars { font-size: 15px; }
.trust-strip__sep { width: 1px; height: 18px; background: var(--line-navy); }

/* =====================================================================
   FEATURED QUOTE BAND
   ===================================================================== */
.quote-band { background: var(--cream-warm); }
.quote-band__inner { max-width: 900px; margin: 0 auto; text-align: center; padding: var(--s-6) 24px; }
.quote-band blockquote {
  font-family: var(--font-body); font-weight: 500; font-style: normal;
  font-size: clamp(20px, 2.4vw, 27px); line-height: 1.45; color: var(--ink);
  margin: var(--s-3) 0 var(--s-3);
}
.quote-band cite { font-style: normal; font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.quote-band cite small { display: block; font-weight: 500; color: var(--ink-soft); opacity: 0.8; }

/* =====================================================================
   SERVICE CARDS
   ===================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); align-items: center; }
.svc-card {
  position: relative; display: block; text-decoration: none;
  border-radius: var(--r-lg); overflow: hidden; background: var(--navy);
  aspect-ratio: 4 / 3; color: #fff;
}
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(52,4,16,0) 35%, rgba(52,4,16,0.85) 100%); }
.svc-card:hover img { transform: scale(1.05); }
.svc-card__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px; }
.svc-card__body h3 { color: #fff; margin: 0 0 4px; font-size: 22px; }
.svc-card__body p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.85); }
.svc-card__link { margin-top: 10px; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; display: inline-flex; gap: 6px; }
.svc-card--solid { background: var(--navy-2); }
.svc-card--solid .svc-card__body { top: 50%; bottom: auto; transform: translateY(-50%); }

/* =====================================================================
   OWNER STORY
   ===================================================================== */
.story { background: var(--white); }
.story__media img { border-radius: var(--r-lg); width: 100%; object-fit: cover; }
.story__points { list-style: none; margin: var(--s-3) 0 0; padding: 0; display: grid; gap: var(--s-2); }
.story__points li { display: flex; gap: 12px; font-size: 16px; color: var(--ink); }
.story__points svg { flex: none; width: 22px; height: 22px; color: var(--red); margin-top: 2px; }
.story-quote { border-left: 3px solid var(--red); padding: 4px 0 4px 20px; margin: var(--s-4) 0 0; }
.story-quote p { font-family: var(--font-body); font-style: normal; font-weight: 500; font-size: 17px; line-height: 1.5; color: var(--ink); margin: 0 0 6px; }
.story-quote cite { font-style: normal; font-size: 14px; font-weight: 600; color: var(--ink-soft); }

/* =====================================================================
   FEATURED PROJECTS
   ===================================================================== */
.projects { background: var(--cream); }
.proj-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-2); }
.proj { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 1; }
.proj img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.proj:hover img { transform: scale(1.06); }
.proj figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; background: linear-gradient(transparent, rgba(52,4,16,0.8)); color: #fff; font-size: 13px; font-weight: 600; }
.proj figcaption small { display: block; font-weight: 400; opacity: 0.8; }
.proj--wide { grid-column: span 2; aspect-ratio: 2 / 1; }

/* =====================================================================
   BUILT FOR COLORADO
   ===================================================================== */
.colorado { background: var(--navy); color: #fff; }
.colorado h2, .colorado h3 { color: #fff; }
.colorado .eyebrow { color: #fff; opacity: 0.7; }
.colorado .lead { color: rgba(255,255,255,0.78); }
.climate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); margin-top: var(--s-5); }
.climate { background: var(--navy-2); border: 1px solid var(--line-navy); border-radius: var(--r-lg); padding: 26px; }
.climate svg { width: 30px; height: 30px; color: var(--red); margin-bottom: 14px; }
.climate h3 { font-size: 19px; margin-bottom: 8px; }
.climate p { font-size: 14.5px; color: rgba(255,255,255,0.72); margin: 0; line-height: 1.6; }
/* light variant — use .climate cards on a cream section (white card, dark heading) */
.climate-grid.is-light .climate { background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 34px -22px rgba(101,1,25,0.28); }
.climate-grid.is-light .climate h3 { color: var(--navy); }
.climate-grid.is-light .climate p { color: var(--ink-soft); }
.colorado__quote { margin-top: var(--s-5); text-align: center; font-family: var(--font-body); font-style: normal; font-weight: 500; font-size: clamp(18px,2vw,24px); line-height: 1.5; color: #fff; max-width: 760px; margin-left: auto; margin-right: auto; }
.colorado__quote cite { display: block; font-style: normal; font-family: var(--font-body); font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.6); margin-top: 14px; }

/* =====================================================================
   REVIEWS WALL
   ===================================================================== */
.reviews { background: var(--cream-warm); }
.review-grid { columns: 3; column-gap: var(--s-3); margin-top: var(--s-5); }
.review { break-inside: avoid; background: var(--white); border: 1.5px solid var(--green-border); border-radius: var(--r-lg); padding: 24px; margin-bottom: var(--s-3); box-shadow: 0 0 0 3px var(--green-ring), 0 14px 32px -22px var(--green-glow); }
.review .stars { margin-bottom: 12px; }
.review p { font-size: 15.5px; line-height: 1.62; color: var(--ink); margin: 0 0 16px; }
.review__who { display: flex; align-items: center; gap: 12px; }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex: none; }
.review__name { font-weight: 700; font-size: 14.5px; color: var(--navy); }
.review__meta { font-size: 12.5px; color: var(--ink-soft); }

/* =====================================================================
   SERVICE AREAS
   ===================================================================== */
.areas { background: var(--white); }
.areas__cols { columns: 4; column-gap: var(--s-4); margin-top: var(--s-4); }
.areas__cols a { display: block; text-decoration: none; font-size: 16px; font-weight: 500; color: var(--navy); padding: 9px 0; border-bottom: 1px solid var(--line); transition: color .15s, padding-left .15s; }
.areas__cols a:hover { color: var(--red); padding-left: 6px; }

/* =====================================================================
   PROCESS
   ===================================================================== */
.process { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); margin-top: var(--s-5); counter-reset: step; }
.step { position: relative; }
.step__num { font-family: var(--font-display); font-size: 40px; color: var(--red); line-height: 1; margin-bottom: 14px; }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { background: var(--white); }
.faq__list { max-width: 820px; margin: var(--s-5) auto 0; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 24px 40px 24px 0; position: relative; font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--navy); }
.faq__q::after { content: "+"; position: absolute; right: 4px; top: 22px; font-size: 26px; color: var(--red); font-family: var(--font-body); transition: transform .2s; }
.faq__item[open] .faq__q::after { content: "\2212"; }
.faq__a { padding: 0 40px 24px 0; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
details.faq__item summary { list-style: none; }
details.faq__item summary::-webkit-details-marker { display: none; }

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.final-cta { background: var(--red); color: #fff; text-align: center; }
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.9); font-size: 19px; max-width: 600px; margin: 0 auto var(--s-4); }
.final-cta .btn--white { background: var(--gold-btn); color: #1B1B1B; }
.final-cta .btn--white:hover { background: var(--gold-btn-h); color: #1B1B1B; }
.final-cta__call { display: block; margin-top: 18px; color: #fff; font-weight: 600; text-decoration: none; font-size: 16px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--navy); color: rgba(255,255,255,0.72); padding: var(--s-6) 0 var(--s-4); font-size: 14.5px; }
.footer a { color: rgba(255,255,255,0.72); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--s-4); }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__wordmark { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: #fff; line-height: 1.05; margin-bottom: 16px; }
.footer__wordmark span { display: block; font-family: var(--font-body); font-weight: 600; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px; }
.footer__legal { border-top: 1px solid var(--line-navy); margin-top: var(--s-5); padding-top: var(--s-3); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.5); }


/* =====================================================================
   NAV DROPDOWN (Services)
   ===================================================================== */
.has-dropdown { position: relative; }
.nav__trigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; background: none; border: 0; font-family: var(--font-body); font-size: 14.5px; font-weight: 500; color: #F3EFE6; padding: 0; }
.nav__trigger:hover, .has-dropdown:hover .nav__trigger, .has-dropdown:focus-within .nav__trigger { color: var(--gold-btn); }
.nav__trigger svg { width: 13px; height: 13px; transition: transform .2s; }
.has-dropdown:hover .nav__trigger svg, .has-dropdown:focus-within .nav__trigger svg { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 230px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 8px; box-shadow: 0 16px 40px rgba(52,4,16,0.14); opacity: 0; visibility: hidden; transition: opacity .16s, transform .16s; z-index: 60; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--r); font-size: 14px; font-weight: 500; color: var(--navy); text-decoration: none; }
.dropdown a:hover { background: var(--cream-warm); color: var(--red); }
.dropdown a svg { width: 17px; height: 17px; color: var(--red); flex: none; }

/* =====================================================================
   GOOGLE-VERIFIED REVIEWS (icon, date, verified badge)
   ===================================================================== */
.gicon { width: 18px; height: 18px; flex: none; }
.review__head { display: flex; align-items: center; gap: 9px; margin-bottom: 13px; flex-wrap: wrap; }
.review__head .stars { font-size: 15px; }
.review__verified { font-size: 11.5px; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.01em; display: inline-flex; align-items: center; gap: 4px; }
.review__date { font-size: 12px; color: var(--ink-soft); margin-left: auto; }

/* Featured photo-proof reviews (Google review + real project photo) */
.rev-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); margin-top: var(--s-5); }
.rev-proof { margin: 0; background: var(--white); border: 1.5px solid var(--green-border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 0 0 4px var(--green-ring), 0 18px 42px -22px var(--green-glow); }
.rev-proof__photo { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.rev-proof__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.rev-proof__head { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 8px; margin-bottom: 12px; }
.rev-proof__head .stars { font-size: 15px; }
.rev-proof__verified { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--green-deep); margin-left: auto; white-space: nowrap; }
.rev-proof blockquote { margin: 0 0 16px; font-size: 15.5px; line-height: 1.6; color: var(--ink); }
.rev-proof figcaption { margin-top: auto; display: flex; align-items: center; gap: 11px; }
.rev-proof__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex: none; }
.rev-proof__name { font-weight: 700; font-size: 14px; color: var(--navy); }
.rev-proof__meta { font-size: 12.5px; color: var(--ink-soft); }

/* =====================================================================
   MAP EMBED (service areas)
   ===================================================================== */
.areas__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); align-items: start; margin-top: var(--s-4); }
.map-embed { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--cream-warm); aspect-ratio: 4 / 3; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }
.map-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--ink-soft); text-align: center; padding: 24px; }
.map-placeholder svg { width: 34px; height: 34px; color: var(--navy-3); }
.areas__cols--compact { columns: 2; column-gap: var(--s-4); }
.areas__note { background: var(--cream-warm); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-4); }
.areas__note h3 { font-family: var(--font-display); font-size: 25px; line-height: 1.2; margin: 0 0 12px; color: var(--navy); }
.areas__note p { color: var(--ink-soft); margin: 0 0 var(--s-3); }

/* =====================================================================
   PROOF-GLOW snippet (green-glow review, drops into any section + optional CTA)
   ===================================================================== */
.proof-glow-wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; margin-top: var(--s-5); }
.proof-glow { width: 100%; max-width: 600px; margin: 0 auto; /* reset default <figure> margin so it never overflows */ background: var(--white); border: 1.5px solid var(--green-border); border-radius: var(--r-lg); padding: 18px 22px; box-shadow: 0 0 0 4px var(--green-ring), 0 18px 42px -22px var(--green-glow); text-align: left; }
.proof-glow__head { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.proof-glow__head .gicon { width: 17px; height: 17px; }
.proof-glow__head .stars { font-size: 14px; }
.proof-glow__verified { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--green-deep); margin-left: auto; }
.proof-glow__text { font-family: var(--font-body); font-style: normal; font-weight: 500; font-size: 16px; line-height: 1.55; color: var(--ink); margin: 0 0 10px; }
.proof-glow__name { font-size: 13.5px; font-weight: 700; color: var(--green-deep); }
.colorado .proof-glow { border-color: rgba(22,192,71,0.6); box-shadow: 0 0 0 4px rgba(22,192,71,0.16), 0 0 46px -6px rgba(22,192,71,0.5); }

/* Mid-page CTA helper */
.section-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: var(--s-5); }

/* =====================================================================
   BLOG — index + article + listicle
   ===================================================================== */
.blog-hero { background: var(--cream); padding: var(--s-7) 0 var(--s-5); border-bottom: 1px solid var(--line); }
.crumbs { font-size: 13px; color: var(--ink-soft); margin: 0 0 var(--s-3); }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--red); }
.crumbs span { color: var(--line); margin: 0 8px; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); margin-top: var(--s-5); }
.post-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; text-decoration: none; transition: box-shadow .18s, transform .18s; }
.post-card:hover { box-shadow: 0 18px 40px -24px rgba(52,4,16,0.35); transform: translateY(-2px); }
.post-card__img { aspect-ratio: 16/9; object-fit: cover; width: 100%; background: var(--cream-warm); }
.post-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__cat { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.post-card__title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--navy); line-height: 1.2; margin: 0 0 8px; }
.post-card__excerpt { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; margin: 0 0 14px; flex: 1; }
.post-card__meta { font-size: 12.5px; color: var(--ink-soft); }

/* Article */
.article { padding: var(--s-6) 0 var(--s-7); }
.article__wrap { max-width: 740px; margin: 0 auto; padding: 0 24px; }
.article__cat { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin: 0 0 var(--s-2); }
.article__title { font-size: clamp(30px, 4.4vw, 46px); line-height: 1.12; margin: 0 0 var(--s-3); }
.article__meta { display: flex; align-items: center; gap: 12px; padding-bottom: var(--s-4); margin-bottom: var(--s-4); border-bottom: 1px solid var(--line); }
.article__meta img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; object-position: center top; }
.article__meta-txt { font-size: 13.5px; color: var(--ink-soft); line-height: 1.4; }
.article__meta-txt b { color: var(--navy); font-weight: 700; display: block; font-size: 14.5px; }
.article__body { font-size: 17px; line-height: 1.75; color: var(--ink); }
.article__body > p { margin: 0 0 var(--s-3); }
.article__body h2 { font-size: 27px; margin: var(--s-5) 0 var(--s-2); }
.article__body h3 { font-size: 21px; margin: var(--s-4) 0 var(--s-2); }
.article__body ul, .article__body ol { margin: 0 0 var(--s-3); padding-left: 22px; }
.article__body li { margin-bottom: 8px; line-height: 1.65; }
.article__body strong { font-weight: 700; color: var(--navy); }
.article__body a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.article__body a.btn { text-decoration: none; }
.article__body a.btn--primary { color: #1B1B1B; }
.article__body a.btn--white { color: var(--red); }
.article__body a.btn--ghost { color: var(--navy); }
.article__lead { font-size: 19px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 var(--s-4); }

.callout { background: var(--cream-warm); border-left: 4px solid var(--red); border-radius: 0 var(--r) var(--r) 0; padding: 20px 24px; margin: var(--s-4) 0; }
.callout p { margin: 0; font-size: 16px; }
.callout .btn { margin-top: 14px; }

.article-author { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 24px; margin: var(--s-5) 0; }
.article-author img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: center top; flex: none; }
.article-author h3 { font-size: 17px; margin: 0 0 4px; }
.article-author p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* Listicle ("best builders") entries */
.rank { display: flex; gap: 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 24px; margin: 0 0 var(--s-3); }
.rank--top { border: 1.5px solid var(--green-border); box-shadow: 0 0 0 4px var(--green-ring), 0 18px 42px -22px var(--green-glow); }
.rank__num { font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--red); line-height: 1; flex: none; width: 40px; }
.rank--top .rank__num { color: var(--green-deep); }
.rank__name { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--navy); margin: 0 0 4px; }
.rank__badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; background: var(--green); border-radius: 99px; padding: 3px 11px; margin-bottom: 8px; }
.rank__body p { font-size: 15px; line-height: 1.6; color: var(--ink); margin: 0 0 8px; }
.rank__stars { color: var(--star); font-size: 14px; letter-spacing: 1px; }

/* Local "what we see here" cards (reusable on every location page) */
.cr-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); margin-top: var(--s-5); }
.cr-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 24px; }
.cr-item h3 { font-size: 19px; margin: 0 0 8px; }
.cr-item p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* =====================================================================
   HERO quote form + owner byline
   ===================================================================== */
.hero__byline { display: flex; align-items: center; gap: 12px; margin-top: var(--s-4); }
.hero__byline img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid #fff; box-shadow: 0 3px 10px rgba(52,4,16,0.18); flex: none; }
.hero__byline span { font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }
.hero__byline b { color: var(--navy); font-weight: 700; }
.hero__form { align-self: start; }
.quote-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 24px 20px; box-shadow: 0 24px 56px -30px rgba(52,4,16,0.45); }
.quote-form__rating { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.quote-form__rating .stars { font-size: 14px; }
.quote-form__head h2 { font-size: 25px; margin: 0 0 4px; }
.quote-form__head p { font-size: 14px; color: var(--ink-soft); margin: 0 0 18px; }
.quote-form .field { margin-bottom: 13px; }
.quote-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-form label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.02em; color: var(--navy); margin: 0 0 5px; }
.quote-form input, .quote-form select { width: 100%; height: 46px; border: 1px solid var(--line); border-radius: var(--r); padding: 0 13px; font-family: var(--font-body); font-size: 15px; color: var(--ink); background: #fff; }
.quote-form input:focus, .quote-form select:focus { outline: none; border-color: var(--navy-3); box-shadow: 0 0 0 3px rgba(46,68,119,0.13); }
.quote-form .btn { width: 100%; margin-top: 6px; }
.quote-form__fine { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--ink-soft); margin: 13px 0 0; }
.quote-form__fine svg { width: 13px; height: 13px; flex: none; color: var(--green-deep); }

/* Multi-step quote form (.qf) — one question at a time */
#qfMount { display: block; min-height: 440px; } /* reserve space so the JS-injected form doesn't shift layout */
.qf { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px; box-shadow: 0 24px 56px -30px rgba(52,4,16,0.45); }
.qf__owner { display: flex; align-items: center; gap: 11px; padding-bottom: 13px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.qf__owner img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid #fff; box-shadow: 0 2px 8px rgba(52,4,16,0.16); flex: none; }
.qf__owner-name { font-size: 13.5px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.qf__owner-rating { font-size: 12.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; margin-top: 3px; }
.qf__owner-rating .stars { font-size: 12px; }
.qf__quote { display: flex; align-items: center; gap: 8px; font-size: 12.5px; line-height: 1.35; color: var(--ink); background: rgba(22,192,71,0.06); border: 1px solid var(--green-border); border-radius: var(--r); padding: 9px 11px; margin-bottom: 14px; }
.qf__quote .gicon { width: 15px; height: 15px; flex: none; }
.qf__quote b { color: var(--green-deep); font-weight: 700; }
.qf__value { margin-bottom: 13px; }
.qf__value h2 { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--navy); margin: 0 0 5px; line-height: 1.15; }
.qf__value p { font-size: 12.5px; line-height: 1.45; color: var(--ink-soft); margin: 0; }
.qf__value p b { color: var(--green-deep); font-weight: 700; }
.qf__continue { width: 100%; margin-top: 13px; }
.qf__opt { font-size: 11.5px; font-weight: 500; color: var(--ink-soft); }
.qf__bar { height: 4px; background: var(--line); border-radius: 99px; overflow: hidden; margin-bottom: 14px; }
.qf__bar-fill { height: 100%; background: var(--green); border-radius: 99px; transition: width .3s ease; width: 25%; }
.qf__step-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.qf__q { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--navy); margin: 0 0 13px; line-height: 1.2; }
.qf__step { display: none; }
.qf__step.is-active { display: block; }
.qf__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.qf__tile { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; text-align: left; background: #fff; border: 1.5px solid var(--line); border-radius: var(--r); padding: 13px 14px; cursor: pointer; font-family: var(--font-body); transition: border-color .15s, background .15s; position: relative; min-height: 58px; justify-content: center; }
.qf__tile:hover { border-color: var(--green); background: rgba(22,192,71,0.05); }
.qf__tile-title { font-size: 14.5px; font-weight: 700; color: var(--navy); }
.qf__tile-sub { font-size: 11.5px; color: var(--ink-soft); }
.qf__tile-badge { position: absolute; top: -8px; right: 8px; font-size: 9px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; background: var(--green); color: #fff; padding: 2px 8px; border-radius: 99px; }
.qf__field { margin-bottom: 11px; }
.qf__field label { display: block; font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.qf__field input { width: 100%; height: 46px; border: 1px solid var(--line); border-radius: var(--r); padding: 0 13px; font-family: var(--font-body); font-size: 15px; color: var(--ink); background: #fff; }
.qf__field input:focus { outline: none; border-color: var(--navy-3); box-shadow: 0 0 0 3px rgba(46,68,119,0.13); }
.qf__hint { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: var(--green-deep); background: rgba(22,192,71,0.08); border-radius: 99px; padding: 4px 11px; margin-bottom: 12px; }
.qf__hint svg { width: 13px; height: 13px; }
.qf__submit { width: 100%; margin-top: 4px; }
.qf__fine { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--ink-soft); margin: 12px 0 0; }
.qf__fine svg { width: 13px; height: 13px; flex: none; color: var(--green-deep); }
.qf__back { background: none; border: 0; color: var(--ink-soft); font-size: 12.5px; font-weight: 600; cursor: pointer; padding: 0; margin-top: 14px; display: inline-flex; align-items: center; gap: 5px; }
.qf__back:hover { color: var(--navy); }
.qf__done { text-align: center; padding: 16px 0; }
.qf__done svg.qf__check { width: 46px; height: 46px; color: var(--green); margin-bottom: 8px; }

/* =====================================================================
   FLOATING CTA BAR (Lynnwood pattern — navy bar, phone + pulsing pill)
   ===================================================================== */
@keyframes ceo-pulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(201,169,97,0.45), 0 0 0 0 rgba(201,169,97,0.55); }
  50%      { box-shadow: 0 8px 22px rgba(201,169,97,0.45), 0 0 0 8px rgba(201,169,97,0); }
}
.float-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 65;
  display: none; grid-template-columns: 1fr auto; align-items: stretch; gap: 0;
  background: rgba(101,1,25,0.97); border-top: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 -12px 36px rgba(0,0,0,0.32); backdrop-filter: blur(10px);
  padding: max(10px, env(safe-area-inset-bottom)) 14px 10px;
  transform: translateY(0); opacity: 1; transition: transform .28s ease, opacity .22s ease;
}
.float-cta--hidden { transform: translateY(110%); opacity: 0; pointer-events: none; }
.float-cta__call { display: inline-flex; align-items: center; gap: 10px; padding: 6px 8px; color: #fff; text-decoration: none; }
.float-cta__call-icon { width: 22px; height: 22px; flex: none; color: #fff; }
.float-cta__call-stack { display: flex; flex-direction: column; line-height: 1.1; }
.float-cta__call-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.float-cta__call-num { font-size: 16px; font-weight: 700; color: #fff; margin-top: 1px; }
.float-cta__cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; background: var(--gold-btn); color: #1B1B1B; text-decoration: none; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 100px; white-space: nowrap; align-self: center; animation: ceo-pulse 2.4s ease-in-out infinite; }
.float-cta__cta:hover { background: var(--gold-btn-h); animation: none; }
.float-cta__cta svg { width: 16px; height: 16px; }

/* =====================================================================
   FOOTER trust badges
   ===================================================================== */
.footer__badges { display: flex; flex-wrap: wrap; gap: 10px 14px; margin: 14px 0 0; }
.footer__badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); border: 1px solid var(--line-navy); border-radius: 100px; padding: 6px 13px; }
.footer__badge .stars { font-size: 12px; }
.footer__badge svg { width: 14px; height: 14px; color: #fff; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .header-cta .tel-link { display: none; }
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; top: 76px; left: 0; right: 0; z-index: 70; flex-direction: column; align-items: stretch; gap: 0; background: var(--cream); border-bottom: 1px solid var(--line); padding: 0 0 18px; max-height: calc(100vh - 76px); overflow-y: auto; box-shadow: 0 22px 36px -22px rgba(52,4,16,0.4); }
  .nav.nav--open { display: flex; }
  .nav a { color: var(--navy); } /* mobile menu panel is cream, so links go dark again */
  .nav > a { padding: 15px 24px; font-size: 16px; border-top: 1px solid var(--line); }
  .nav .has-dropdown { border-top: 1px solid var(--line); padding: 4px 0 6px; }
  .nav__trigger { width: 100%; justify-content: space-between; padding: 12px 24px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
  .nav__trigger svg { width: 16px; height: 16px; transform: none; }
  .nav__cta { display: flex !important; margin: 18px 24px 0; }
  .float-cta { display: grid; }
  body { padding-bottom: 78px; }
  .hero__grid { display: flex; flex-direction: column; gap: var(--s-4); grid-template-areas: none; }
  .hero__head { order: 1; }
  .hero__form { order: 2; }
  .hero__rest { order: 3; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: var(--s-4); }
  .climate-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { columns: 2; }
  .rev-proof-grid { grid-template-columns: 1fr 1fr; }
  .areas__grid { grid-template-columns: 1fr; }
  .areas__cols { columns: 2; }
  .nav .has-dropdown .dropdown { position: static; transform: none; box-shadow: none; border: 0; border-radius: 0; padding: 0; opacity: 1; visibility: visible; min-width: 0; background: transparent; }
  .nav .dropdown a { padding: 12px 24px; font-size: 15.5px; border-radius: 0; }
  .steps { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: var(--s-6) 0; }
  .hero { padding-top: var(--s-3); }
  .hero__title { font-size: 30px; line-height: 1.12; }
  .hero__head { margin-bottom: 2px; }
  .grid-3, .climate-grid, .review-grid, .rev-proof-grid, .areas__cols, .steps, .cr-list, .post-grid { grid-template-columns: 1fr; columns: 1; }
  .rank { flex-direction: column; gap: 8px; }
  .proj-grid { grid-template-columns: 1fr; }
  .proj, .proj--wide { grid-column: auto; aspect-ratio: 16 / 10; }
  .trust-strip__sep { display: none; }
  .trust-strip__inner { flex-direction: column; gap: 12px; padding: 20px 24px; }
  .trust-strip__item { justify-content: center; font-size: 15px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .quote-form__row { grid-template-columns: 1fr; }
  .header-cta .btn--primary { display: none; }
  .site-header__inner { min-height: 64px; }
  .brand img { height: 40px; }
  .footer__grid { grid-template-columns: 1fr; }
  body { padding-bottom: 78px; }
}

/* ============ SPLIT HERO (homepage) + photo slideshow ============ */
.hero--split { background: var(--navy); color: #fff; padding: 0; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: stretch; min-height: min(760px, calc(100vh - 84px)); isolation: isolate; }
.hero--split .hero--split__left { padding: var(--s-6) var(--s-5); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.hero--split__in { width: 100%; max-width: 480px; }
.hero--split .eyebrow { color: var(--gold-btn, #CD9933); }
.hero--split .hero__title { color: #fff; font-size: clamp(34px, 3.6vw, 52px); line-height: 1.05; margin: 10px 0 16px; }
.hero--split__sub { color: rgba(255,255,255,0.82); font-size: clamp(16px, 1.4vw, 18px); line-height: 1.6; margin: 0 auto 22px; max-width: 440px; }
.hero--split__left .quote-form { text-align: left; }
.hero--split__right { position: relative; overflow: hidden; background: #101b30; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.1s ease-in-out; will-change: opacity; }
.hero-slide.is-on { opacity: 1; }
.hero--split__right::after { content: ""; position: absolute; inset: 0; z-index: 5; background: linear-gradient(90deg, rgba(101,1,25,0.55) 0%, rgba(101,1,25,0) 24%); pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .hero-slide { transition: none; } }
@media (max-width: 900px) {
  .hero--split { grid-template-columns: 1fr; min-height: 0; }
  .hero--split__right { order: -1; min-height: 300px; }
  .hero--split .hero--split__left { padding: var(--s-5) var(--s-4); }
}

/* ============ Slim ZIP door (hero, JAC-style) ============ */
#qfMount { min-height: 120px; }
#qfMount .qf-e { display: block; }
.qf-e__bar { display: flex; gap: 8px; background: #fff; border-radius: 12px; padding: 7px; box-shadow: 0 26px 50px -26px rgba(0,0,0,0.55); }
.qf-e__bar input { flex: 1; min-width: 0; border: 0; height: 50px; padding: 0 14px; font-size: 15px; font-family: var(--font-body); color: var(--ink); background: transparent; outline: none; }
.qf-e__bar .btn { white-space: nowrap; min-height: 50px; padding: 0 22px; }
.qf-e__rev { display: flex; gap: 11px; align-items: flex-start; text-align: left; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.qf-e__rev svg { flex: none; margin-top: 1px; }
.qf-e__rev .stars { color: var(--star); font-size: 14px; }
.qf-e__rev p { margin: 3px 0 4px; font-size: 14px; line-height: 1.45; color: var(--ink); }
.qf-e__n { font-size: 12.5px; color: var(--ink-soft); }
.qf-e__n b { color: var(--navy); font-weight: 600; }
/* on the dark split hero, flip the review text to light */
.hero--split .qf-e__rev { border-top-color: rgba(255,255,255,0.16); }
.hero--split .qf-e__rev p { color: rgba(255,255,255,0.9); }
.hero--split .qf-e__n { color: rgba(255,255,255,0.65); }
.hero--split .qf-e__n b { color: #fff; }
@media (max-width: 560px) { .qf-e__bar { flex-direction: column; gap: 8px; padding: 8px; } .qf-e__bar input { width: 100%; text-align: center; } .qf-e__bar .btn { width: 100%; } }

/* ============ Per-service detail rows (JAC-style) ============ */
.section--tight { padding: var(--s-6) 0 var(--s-2); }
.svc-row { padding: var(--s-6) 0; background: var(--white); }
.svc-row:nth-of-type(even) { background: var(--cream); }
.svc-row + .svc-row { border-top: 1px solid var(--line); }
.svc-row__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6); align-items: center; }
.svc-row--flip .svc-row__media { order: 2; }
.svc-row__media { border-radius: var(--r-lg); overflow: hidden; position: relative; aspect-ratio: 4 / 3; box-shadow: 0 24px 56px -34px rgba(52,4,16,0.5); }
.svc-row__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-row__tag { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-dark, var(--red)); margin: 0 0 8px; }
.svc-row h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 10px; }
.svc-row p { color: var(--ink-soft); font-size: 17px; line-height: 1.6; }
.svc-row__points { list-style: none; margin: 18px 0 24px; padding: 0; display: grid; gap: 10px; }
.svc-row__points li { display: flex; gap: 11px; font-size: 15.5px; color: var(--ink); }
.svc-row__points svg { flex: none; width: 20px; height: 20px; color: var(--red); margin-top: 2px; }
@media (max-width: 760px) { .svc-row__grid { grid-template-columns: 1fr; gap: var(--s-4); } .svc-row--flip .svc-row__media { order: 0; } }

/* ============ Cinema hero (Upterra-style full-bleed + slideshow) ============ */
.hero--cinema { position: relative; isolation: isolate; background: var(--navy) var(--hero-img, none) center/cover no-repeat; color: #fff; padding: var(--s-7) 0 var(--s-6); overflow: hidden; }
.hero--cinema .hero__byline span { color: rgba(255,255,255,0.82); }
.hero--cinema .hero__byline b { color: #fff; }
.hero__slideshow { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--navy); }
.hero--cinema .hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.1s ease-in-out; will-change: opacity; }
.hero--cinema .hero-slide.is-on { opacity: 1; }
.hero__scrim { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(100deg, rgba(101,1,25,0.94) 0%, rgba(101,1,25,0.86) 34%, rgba(101,1,25,0.55) 62%, rgba(101,1,25,0.32) 100%),
  linear-gradient(to bottom, rgba(101,1,25,0.55) 0%, rgba(101,1,25,0) 24%, rgba(101,1,25,0) 66%, rgba(101,1,25,0.82) 100%); }
.hero--cinema .hero__grid { align-items: center; row-gap: var(--s-3); }
.hero--cinema .hero__title { color: #fff; }
.hero--cinema .eyebrow { color: var(--gold-btn, #CD9933); }
.hero--cinema .hero__sub { color: rgba(255,255,255,0.85); max-width: 520px; }
.hero__rule { width: 68px; height: 1px; background: var(--gold-btn, #CD9933); margin: 4px 0 var(--s-3); }
.hero__trustline { display: flex; align-items: center; gap: 11px; margin: 16px 0 0; font-size: 14.5px; line-height: 1.4; color: rgba(255,255,255,0.85); }
.hero__trustline .hero__stars { color: var(--star); font-size: 15px; letter-spacing: 1px; flex: none; }
.hero__trustline b { color: #fff; font-weight: 700; }
.hero--cinema .trust-pill { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); color: rgba(255,255,255,0.92); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.hero-proof { margin-top: 14px; display: grid; gap: 8px; }
.hero-proof__item { display: flex; align-items: center; gap: 11px; padding: 9px 13px; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.16); border-radius: 10px; }
.hero-proof__stars { color: var(--star); font-size: 12.5px; letter-spacing: 1px; flex: none; }
.hero-proof__txt { font-size: 13.5px; line-height: 1.35; color: rgba(255,255,255,0.9); }
.hero-proof__txt b { color: #fff; font-weight: 600; display: block; }
.hero-proof__txt span { color: rgba(255,255,255,0.6); font-weight: 600; }
.hero__credit { position: absolute; left: 0; right: 0; bottom: 14px; z-index: 1; font-size: 11.5px; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.42); }
.hero__credit .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.qf__submit { width: 100%; margin-top: 4px; }
.qf__fine { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--ink-soft); margin: 12px 0 0; }
.qf__fine svg { width: 14px; height: 14px; flex: none; color: var(--green-deep); }
@media (prefers-reduced-motion: reduce) { .hero--cinema .hero-slide { transition: none; } }
@media (max-width: 900px) { .hero__credit { display: none; } }

/* =====================================================================
   PALETTE CONTEXT (2026 rebrand): accent adapts to its background.
   Maroon (--red) reads on LIGHT; gold (--gold-btn) reads on DARK navy.
   ===================================================================== */
.hero--cinema .eyebrow,
.hero .eyebrow,
.colorado .eyebrow,
.final-cta .eyebrow,
.trust-strip .eyebrow { color: var(--gold-btn); }
/* "Difference" cards are navy by default -> gold icons; white (is-light) -> maroon icons */
.climate svg { color: var(--gold-btn); }
.climate-grid.is-light .climate svg { color: var(--red); }

/* Deeper maroon footer for depth + separation from the maroon final-cta band */
.footer { background: #4C0316; }

/* =====================================================================
   BALANCED MAROON (2026-09-18): keep maroon as frame + accent + CTA,
   but pull the FLOOD back so it reads premium, not heavy.
   - Section headings -> warm near-black (maroon stays for eyebrows/links)
   - Trust strip -> light divider bar (not another maroon band)
   - Hero scrim -> deep oxblood (rich, not bright red)
   Dark-section headings keep their explicit white/maroon overrides.
   ===================================================================== */
h1, h2, h3, h4 { color: #241C1E; }               /* warm near-black */
.hero--cinema .hero__title, .hero--split .hero__title,
.svc-card__body h3, .colorado h2, .colorado h3, .final-cta h2, .footer h4 { color: #fff; }
.climate-grid.is-light .climate h3, .areas__note h3, .qf__value h2 { color: var(--red); } /* maroon accent headings kept */

.trust-strip { background: #F4F3F1; color: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip__item { color: var(--ink); }
.trust-strip__sep { background: var(--line); }

.hero__scrim { background:
  linear-gradient(100deg, rgba(52,4,16,0.93) 0%, rgba(52,4,16,0.82) 34%, rgba(52,4,16,0.50) 62%, rgba(52,4,16,0.26) 100%),
  linear-gradient(to bottom, rgba(52,4,16,0.50) 0%, rgba(52,4,16,0) 24%, rgba(52,4,16,0) 66%, rgba(52,4,16,0.82) 100%); }
.hero--cinema { background: #340410 var(--hero-img, none) center/cover no-repeat; }
/* Dark "difference" cards: white heading (was inheriting base heading color) */
.climate h3 { color: #fff; }
.climate-grid.is-light .climate h3 { color: var(--red); }

/* A11y: visible, on-brand keyboard focus (maroon ring on light, gold on the maroon header) */
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--red); outline-offset: 2px; border-radius: 3px;
}
.site-header a:focus-visible, .nav a:focus-visible, .nav__trigger:focus-visible,
.tel-link:focus-visible, .nav-toggle:focus-visible { outline-color: var(--gold-btn); }
/* Input focus ring recolored off old navy -> maroon */
.quote-form input:focus, .quote-form select:focus, .qf__field input:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(101,1,25,0.14);
}

/* Desktop hero: tone the maroon DOWN to a deeper, less-bright oxblood (mobile is fine as-is) */
@media (min-width: 761px) {
  .hero--cinema { background-color: #240309; }
  .hero__scrim { background:
    linear-gradient(100deg, rgba(34,3,11,0.95) 0%, rgba(34,3,11,0.86) 42%, rgba(34,3,11,0.62) 72%, rgba(34,3,11,0.46) 100%),
    linear-gradient(to bottom, rgba(34,3,11,0.45) 0%, rgba(34,3,11,0) 30%, rgba(34,3,11,0) 60%, rgba(34,3,11,0.85) 100%); }
}
