/* =============================================================
   GREEN CONCEPTION - Brand Design System
   Per official Marketing Handoff (v1, June 2026)
   Palette: Brand Green #96BF43 (primary accent) + Teal-Blue #4FA0B3 (secondary accent)
            Charcoal #515251 (workhorse) · Sky #9CD1D3 · White canvas
   Neutrals: cloud #F6F7F6 · mist #EDEEED · fog #D6D7D6 · ink #2B2C2B
   Type: Open Sans (workhorse) + Roboto Slab (display)
   Signature: green italic "pill", radius ~22px, once per view
   ============================================================= */

:root {
  /* Core palette — green primary, teal-blue secondary (mixed accents) */
  --green: #96BF43;
  --green-deep: #7BA233;
  --green-soft: #EAF2DC;
  --teal: #4FA0B3;
  --teal-deep: #3D8294;
  --teal-soft: #E2F0F3;
  --charcoal: #515251;
  --sky: #9CD1D3;
  --sky-soft: #E4F1F1;
  --white: #FFFFFF;

  /* Neutral scale */
  --cloud: #F6F7F6;
  --mist: #EDEEED;
  --fog: #D6D7D6;
  --ink: #2B2C2B;

  /* Semantic */
  --text: #2B2C2B;
  --text-soft: #515251;
  --text-muted: #6E706E;
  --border: #E0E1E0;
  --bg: #FFFFFF;

  /* Type */
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Roboto Slab', Georgia, serif;

  /* Rhythm */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-pill: 22px;
  --shadow-sm: 0 1px 3px rgba(43,44,43,0.08), 0 1px 2px rgba(43,44,43,0.04);
  --shadow-md: 0 6px 20px rgba(43,44,43,0.10);
  --shadow-lg: 0 18px 50px rgba(43,44,43,0.16);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Type scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-soft); line-height: 1.6; }

/* Eyebrow */
.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.9rem;
  display: inline-block;
}
.eyebrow.on-dark { color: #BCE3EC; text-shadow: 0 1px 3px rgba(0,0,0,0.85), 0 2px 10px rgba(0,0,0,0.7); }

/* Subhead italic per brand */
.subhead-italic { font-style: italic; color: var(--text-soft); font-weight: 400; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.center { text-align: center; }
.section-head { max-width: 760px; margin: 0 auto 3rem; }
.center .section-head { margin-left: auto; margin-right: auto; }

/* ---------- The Pill (signature element) ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green);
  color: var(--ink);
  font-style: italic;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(150,191,67,0.35);
  white-space: nowrap;
}
.pill-lg { font-size: clamp(1.1rem, 2vw, 1.5rem); padding: 0.6rem 1.5rem; }
/* Offer pill — clean white, dark text for max legibility over the hero photo */
.pill-offer {
  background: var(--white);
  color: var(--ink);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  padding: 0.72rem 1.8rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  text-shadow: none;
}
@media (max-width: 560px) {
  .hero-pill-line .pill-lg { white-space: normal; max-width: 100%; line-height: 1.3; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.7rem;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--ink); }
.btn-primary:hover { background: var(--green-deep); color: var(--white); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--fog); }
.btn-ghost:hover { border-color: var(--charcoal); }
.btn-ghost.on-dark { color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-ghost.on-dark:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

/* ---------- Announcement strip (sitewide offer) ---------- */
.announce-strip {
  background: var(--green);
  text-align: center;
}
.announce-strip .wrap { min-height: 38px; display: flex; align-items: center; justify-content: center; padding: 0.35rem 1rem; }
.announce-strip a {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.announce-strip a:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .announce-strip a { font-size: 0.82rem; line-height: 1.3; }
}

/* ---------- Utility bar ---------- */
.utility-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
}
.utility-bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; flex-wrap: wrap; }
.utility-bar a { color: rgba(255,255,255,0.92); }
.utility-bar a:hover { color: var(--green); }
.utility-left { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.utility-left .sep { color: rgba(255,255,255,0.35); }
.utility-social { display: flex; gap: 0.9rem; align-items: center; }
.utility-social a { display: inline-flex; }
.utility-social svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 1.5rem; }
.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img { height: 38px; width: auto; display: block; }

.main-nav { display: flex; align-items: center; gap: 0.4rem; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-weight: 600; font-size: 0.97rem; color: var(--charcoal);
  padding: 0.6rem 0.9rem; border-radius: 8px; cursor: pointer;
}
.nav-link:hover { color: var(--ink); background: var(--cloud); }
.nav-link svg { width: 11px; height: 11px; fill: currentColor; opacity: 0.6; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 0.5rem; min-width: 264px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 0.6rem 0.8rem; border-radius: 8px; font-size: 0.93rem; font-weight: 600; color: var(--charcoal); }
.dropdown a:hover { background: var(--green-soft); color: var(--green-deep); }
.dropdown a span { display: block; font-weight: 400; font-size: 0.8rem; color: var(--text-muted); margin-top: 1px; }

.header-cta { display: flex; align-items: center; gap: 0.8rem; }
.header-phone { font-weight: 700; color: var(--ink); font-size: 0.97rem; }
.header-phone:hover { color: var(--green-deep); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; color: var(--white); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43,44,43,0.55) 0%, rgba(43,44,43,0.35) 45%, rgba(43,44,43,0.72) 100%); }
.hero-inner { position: relative; z-index: 1; padding: clamp(4rem, 11vw, 8rem) 0 clamp(3rem, 7vw, 5rem); max-width: 760px; }
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 .pill { vertical-align: middle; margin-top: 0.4rem; }
.hero .subhead { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: rgba(255,255,255,0.92); line-height: 1.55; max-width: 620px; margin-bottom: 1.8rem; }
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-pill-line { margin-bottom: 1.2rem; }

/* Floating proof card */
.proof-card {
  position: absolute; right: var(--gutter); bottom: clamp(3rem, 7vw, 5rem); z-index: 2;
  background: var(--white); color: var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.1rem 1.3rem; max-width: 230px;
}
.proof-card .stars { color: var(--green-deep); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.05em; }
.proof-card .big { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; line-height: 1; margin: 0.3rem 0; }
.proof-card .sub { font-size: 0.82rem; color: var(--text-muted); }

/* Hero trust strip */
.trust-strip { background: var(--charcoal); color: rgba(255,255,255,0.92); }
.trust-strip .wrap { display: flex; align-items: center; justify-content: center; gap: 1rem 2.4rem; flex-wrap: wrap; min-height: 58px; padding-top: 0.8rem; padding-bottom: 0.8rem; font-size: 0.92rem; font-weight: 600; }
.trust-strip .item { display: inline-flex; align-items: center; gap: 0.5rem; }
.trust-strip .item svg { width: 18px; height: 18px; fill: var(--teal); flex: none; }
.trust-strip .sep { color: rgba(255,255,255,0.3); }

/* ---------- Offer banner ---------- */
.offer-banner { background: var(--ink); color: var(--white); }
.offer-banner .wrap { display: flex; align-items: center; justify-content: center; gap: 0.85rem 1.4rem; flex-wrap: wrap; padding-top: 0.85rem; padding-bottom: 0.85rem; text-align: center; }
.offer-tag { display: inline-flex; align-items: center; background: var(--green); color: var(--ink); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.28rem 0.7rem; border-radius: 999px; }
.offer-text { font-weight: 700; font-size: clamp(1rem, 2.2vw, 1.18rem); color: var(--white); }
.offer-cta { display: inline-flex; align-items: center; background: var(--green); color: var(--ink); font-weight: 700; font-size: 0.9rem; padding: 0.5rem 1.1rem; border-radius: 10px; transition: background 0.2s, color 0.2s; }
.offer-cta:hover { background: var(--green-deep); color: var(--white); }
@media (max-width: 560px) { .offer-cta { width: 100%; justify-content: center; } }

/* ---------- Slogan band (No Reps. No Commissions. Better Prices.) ---------- */
.slogan-band { background: var(--charcoal); }
.slogan-band .wrap { display: flex; align-items: center; justify-content: center; padding-top: 0.95rem; padding-bottom: 0.95rem; }
.slogan-band p {
  margin: 0; text-align: center;
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: -0.01em; line-height: 1.2;
  font-size: clamp(1.15rem, 3.4vw, 1.9rem);
  color: var(--white); text-transform: uppercase;
}
.slogan-band .accent { color: var(--teal); }
.slogan-band sup { font-size: 0.5em; vertical-align: super; }

/* ---------- Trust bar (logos) ---------- */
.logo-bar { background: var(--cloud); }
.logo-bar h2 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-align: center; color: var(--text-muted); margin-bottom: 1.8rem; }
.logo-row { display: flex; align-items: center; justify-content: center; gap: clamp(0.9rem, 2.4vw, 2rem); flex-wrap: nowrap; }
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  height: 46px; flex: 0 1 auto; min-width: 0;
}
.logo-mark img {
  max-height: 42px; width: auto; max-width: 110px;
  object-fit: contain; display: block;
  filter: grayscale(1); opacity: 0.62;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.logo-mark img:hover { filter: grayscale(0); opacity: 1; }
/* Allow wrapping only on smaller screens where one row won't fit */
@media (max-width: 900px) { .logo-row { flex-wrap: wrap; gap: clamp(1.2rem, 4vw, 2.4rem); } }
@media (max-width: 640px) { .logo-mark, .logo-mark img { height: 38px; max-height: 38px; } }

/* ---------- Services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.4rem; }
.svc-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--ink); color: var(--white); min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.5s ease; }
.svc-card:hover img { transform: scale(1.04); }
.svc-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(43,44,43,0) 30%, rgba(43,44,43,0.88) 100%); }
.svc-card .svc-body { position: relative; z-index: 2; padding: 1.5rem; }
.svc-card .svc-num { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; color: var(--green); margin-bottom: 0.4rem; }
.svc-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 0.4rem; }
.svc-card p { color: rgba(255,255,255,0.85); font-size: 0.92rem; margin: 0 0 0.8rem; }
.svc-card .svc-link { display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 700; font-size: 0.9rem; color: var(--teal-deep); }
.svc-card .svc-link svg { width: 14px; height: 14px; fill: currentColor; transition: transform 0.2s; }
.svc-card:hover .svc-link svg { transform: translateX(3px); }

/* ---------- All-in-one split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split-media .pill { position: absolute; left: 1.2rem; bottom: 1.2rem; }
.feature-points { margin: 1.6rem 0; display: grid; gap: 1rem; }
.feature-points li { display: flex; gap: 0.8rem; align-items: flex-start; }
.feature-points .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--green-soft); display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.feature-points .ck svg { width: 14px; height: 14px; fill: var(--green-deep); }
.feature-points h4 { margin-bottom: 1px; }
.feature-points span { color: var(--text-soft); font-size: 0.95rem; }

/* ---------- Process ---------- */
.process-band { background: var(--cloud); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }
.step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem 1.5rem; position: relative; }
.step .step-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 0.8rem; }
.step h4 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.step p { color: var(--text-soft); font-size: 0.93rem; margin: 0; }

/* ---------- Financing band ---------- */
.financing { background: var(--charcoal); color: var(--white); }
.financing .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.financing h2 { color: var(--white); }
.financing .fin-points { display: grid; gap: 0.9rem; margin: 1.4rem 0 1.8rem; }
.financing .fin-points li { display: flex; gap: 0.7rem; align-items: center; color: rgba(255,255,255,0.92); font-weight: 600; }
.financing .fin-points svg { width: 20px; height: 20px; fill: var(--green); flex: none; }
.financing .big-stat { text-align: center; }
.financing .big-stat .num { font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 6rem); font-weight: 700; color: var(--green); line-height: 0.95; }
.financing .big-stat .lbl { font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: 0.04em; }

/* ---------- Work gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery a { display: block; position: relative; height: 100%; color: inherit; text-decoration: none; }
.gallery img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 0.5s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 2.2rem 1rem 0.95rem; color: var(--white); font-size: 0.88rem; font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);
  background: linear-gradient(180deg, rgba(31,35,41,0) 0%, rgba(31,35,41,0.55) 45%, rgba(31,35,41,0.92) 100%);
}

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq-list { display: grid; gap: 0.7rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 1.03rem; color: var(--ink);
  padding: 1.15rem 1.3rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q .ico { flex: none; width: 22px; height: 22px; position: relative; transition: transform 0.25s; }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: var(--green-deep); border-radius: 2px; }
.faq-q .ico::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.faq-q .ico::after { left: 10px; top: 2px; bottom: 2px; width: 2px; transition: transform 0.25s; }
.faq-item[open] .faq-q .ico::after { transform: rotate(90deg); }
.faq-a { padding: 0 1.3rem 1.25rem; color: var(--text-soft); font-size: 0.97rem; line-height: 1.6; }
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-side { background: var(--green-soft); border-radius: var(--radius); padding: 2rem; position: sticky; top: 100px; }
.faq-side h3 { margin-bottom: 0.6rem; }
.faq-side p { color: var(--text-soft); font-size: 0.95rem; }
.faq-side .btn { margin-top: 0.4rem; width: 100%; }
.faq-side .or { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin: 0.8rem 0 0.4rem; }

/* ---------- Final CTA band ---------- */
.final-cta { background: var(--white); color: var(--ink); text-align: center; border-top: 1px solid var(--border); }
.final-cta h2 { color: var(--ink); margin-bottom: 0.6rem; }
.final-cta .lead { color: var(--text-soft); max-width: 540px; margin: 0 auto 1.8rem; }
.final-cta .cta-row { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-primary { background: var(--ink); color: var(--white); }
.final-cta .btn-primary:hover { background: #000; }
.final-cta .btn-ghost { border-color: rgba(43,44,43,0.4); color: var(--ink); }
.final-cta .btn-ghost:hover { border-color: var(--ink); background: rgba(43,44,43,0.06); }

/* ---------- Stats row ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; color: var(--green-deep); line-height: 1; }
.stat .lbl { color: var(--text-soft); font-size: 0.92rem; font-weight: 600; margin-top: 0.4rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.78); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .brand-logo { margin-bottom: 1rem; }
.footer-brand .brand-logo img { height: 42px; }
.footer-brand p { color: rgba(255,255,255,0.7); max-width: 320px; margin-bottom: 1.2rem; line-height: 1.6; }
.footer-meta { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-meta strong { color: rgba(255,255,255,0.85); font-weight: 700; }
.footer-col h4 { color: var(--white); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 700; }
.footer-col a { display: block; color: rgba(255,255,255,0.72); padding: 0.32rem 0; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.8rem; padding-top: 1.6rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--green); }
.footer-bottom .legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.7); }
.footer-social a:hover svg { fill: var(--green); }

/* ---------- Generic content (service/location pages) ---------- */
.page-hero { position: relative; color: var(--white); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43,44,43,0.5) 0%, rgba(43,44,43,0.75) 100%); }
.page-hero-inner { position: relative; z-index: 1; padding: clamp(3.5rem, 8vw, 6rem) 0; max-width: 720px; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .subhead { font-size: clamp(1.02rem, 1.6vw, 1.25rem); color: rgba(255,255,255,0.92); margin-bottom: 1.6rem; max-width: 580px; }

.breadcrumb { font-size: 0.85rem; color: var(--text-muted); padding: 1rem 0; }
.breadcrumb a:hover { color: var(--green-deep); }
.breadcrumb .sep { margin: 0 0.5rem; color: var(--fog); }

.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.benefit-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; transition: box-shadow 0.2s, transform 0.2s; }
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.benefit-card .b-ico { width: 44px; height: 44px; border-radius: 11px; background: var(--green-soft); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.benefit-card .b-ico svg { width: 22px; height: 22px; fill: var(--green-deep); }
.benefit-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.benefit-card p { color: var(--text-soft); font-size: 0.94rem; margin: 0; }

.prose { max-width: 760px; }
.prose h2 { margin: 2rem 0 1rem; }
.prose h3 { margin: 1.6rem 0 0.7rem; }
.prose p { color: var(--text-soft); margin-bottom: 1.1rem; }
.prose ul.bullets { display: grid; gap: 0.7rem; margin: 1rem 0 1.5rem; }
.prose ul.bullets li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--text-soft); }
.prose ul.bullets svg { flex: none; width: 20px; height: 20px; fill: var(--green-deep); margin-top: 2px; }

/* Testimonial */
.testimonial { background: var(--cloud); }
.testimonial blockquote { max-width: 760px; margin: 0 auto; font-family: var(--font-display); font-size: clamp(1.2rem, 2.4vw, 1.7rem); line-height: 1.5; color: var(--ink); font-weight: 400; }
.testimonial .cite { display: block; margin-top: 1.2rem; font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--green-deep); }
.testimonial .stars { color: var(--green-deep); font-weight: 800; letter-spacing: 0.1em; margin-bottom: 1rem; }

/* Material/type list */
.type-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.type-item { display: flex; gap: 0.9rem; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.2rem; }
.type-item .tn { font-family: var(--font-display); font-weight: 700; color: var(--green); font-size: 1.1rem; flex: none; }
.type-item span { font-weight: 600; color: var(--ink); }

/* Cross-sell */
.crosssell { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.crosssell-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; }
.crosssell-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.crosssell-card p { color: var(--text-soft); font-size: 0.94rem; margin-bottom: 1rem; }
.crosssell-card a { font-weight: 700; color: var(--green-deep); display: inline-flex; align-items: center; gap: 0.3rem; }
.crosssell-card a svg { width: 14px; height: 14px; fill: currentColor; }

/* Local SEO blocks */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.info-card { background: var(--cloud); border-radius: var(--radius); padding: 1.6rem; border-left: 3px solid var(--green); }
.info-card h4 { margin-bottom: 0.5rem; color: var(--green-deep); }
.info-card p { color: var(--text-soft); font-size: 0.94rem; margin: 0; }

/* Link matrix */
.link-cloud { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.link-cloud a { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 0.5rem 0.9rem; font-size: 0.9rem; font-weight: 600; color: var(--charcoal); transition: all 0.2s; }
.link-cloud a:hover { border-color: var(--green); color: var(--green-deep); background: var(--green-soft); }

/* CTA inline band */
.cta-inline { background: var(--sky-soft); border-radius: var(--radius); padding: clamp(2rem, 4vw, 3rem); text-align: center; }
.cta-inline h2 { margin-bottom: 0.8rem; }
.cta-inline p { color: var(--text-soft); max-width: 520px; margin: 0 auto 1.5rem; }
.cta-inline .cta-row { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* Reveal on scroll (calm) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }
/* Safety: if JS/IntersectionObserver is slow or blocked, never leave content invisible */
.no-js .reveal, .reveal-ready .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .split, .financing .wrap, .faq-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .faq-side { position: static; }
}
@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); padding: 0.8rem var(--gutter) 1.2rem; gap: 0.2rem;
  }
  .main-nav.open .nav-item { width: 100%; }
  .main-nav.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0.4rem 1rem; min-width: 0; }
  .main-nav.open .nav-item:hover .nav-link svg { transform: none; }
  .header-phone { display: none; }
  .header-cta { gap: 0.5rem; }
  .header-cta .btn-primary { padding: 0.55rem 0.85rem; font-size: 0.85rem; }
  .utility-bar { font-size: 0.78rem; }
  .utility-bar .wrap { flex-wrap: nowrap; justify-content: center; gap: 0.6rem; min-height: 36px; }
  .utility-left { justify-content: center; gap: 0.6rem; flex-wrap: nowrap; white-space: nowrap; }
  .utility-left .since { display: none; }
  .utility-left .sep.since { display: none; }
  .utility-social { display: none; }
  .proof-card { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .trust-strip .wrap { flex-direction: column; gap: 0.4rem; }
  .trust-strip .sep { display: none; }
  .financing .big-stat { order: -1; }
}
@media (max-width: 440px) {
  .header-cta .btn-primary { display: none; }
  .site-header .wrap { gap: 0.5rem; }
  .brand-logo img { height: 32px; }
  /* Keep only the phone on the smallest screens so the bar never overflows */
  .utility-left span:not(.since) { display: none; }
  .utility-left .sep { display: none; }
  .utility-bar .wrap { justify-content: center; }
}

/* ---- Guides (AEO pillar content) ---- */
.guide-layout { display: grid; grid-template-columns: 1fr 300px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.guide-toc { position: sticky; top: 90px; }
.toc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.toc-card h4 { margin: 0 0 0.9rem; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-deep); }
.toc-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.toc-card ul li a { color: var(--text-soft); font-size: 0.92rem; line-height: 1.4; border-left: 2px solid var(--border); padding-left: 0.8rem; display: block; transition: all 0.18s; }
.toc-card ul li a:hover { color: var(--green-deep); border-left-color: var(--green); }
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; }
.guide-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; transition: all 0.2s; }
.guide-card:hover { border-color: var(--green); box-shadow: 0 12px 30px rgba(0,0,0,0.07); transform: translateY(-3px); }
.guide-card .g-eyebrow { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-deep); font-weight: 700; }
.guide-card h3 { margin: 0.6rem 0 0.7rem; font-size: 1.18rem; line-height: 1.3; color: var(--charcoal); }
.guide-card p { color: var(--text-soft); font-size: 0.93rem; line-height: 1.55; margin: 0 0 1.1rem; flex: 1; }
.guide-card .g-read { font-weight: 700; color: var(--green-deep); font-size: 0.92rem; }
@media (max-width: 860px) {
  .guide-layout { grid-template-columns: 1fr; }
  .guide-toc { position: static; }
}

/* ---------- AEO answer-first "In Short" block ---------- */
.answer-block{
  background:var(--green-soft);
  border-left:4px solid var(--green-deep);
  border-radius:6px;
  padding:1.1rem 1.3rem;
  margin:0 0 1.6rem;
}
.answer-label{
  display:inline-block;
  font-family:'Roboto Slab',serif;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--green-deep);
  margin-bottom:.4rem;
}
.answer-text{
  margin:0;
  font-size:1.06rem;
  line-height:1.6;
  font-weight:600;
  color:var(--ink);
}

/* ---------- AEO comparison tables ---------- */
.compare-table-wrap{overflow-x:auto;margin:1.6rem 0;}
table.compare{
  width:100%;
  border-collapse:collapse;
  font-size:.96rem;
  background:#fff;
  border:1px solid var(--mist);
  border-radius:8px;
  overflow:hidden;
}
table.compare caption{
  caption-side:top;
  text-align:left;
  font-family:'Roboto Slab',serif;
  font-weight:700;
  color:var(--ink);
  padding:0 0 .6rem;
}
table.compare th,table.compare td{
  text-align:left;
  padding:.7rem .9rem;
  border-bottom:1px solid var(--mist);
  vertical-align:top;
}
table.compare thead th{
  background:var(--charcoal);
  color:#fff;
  font-size:.82rem;
  letter-spacing:.03em;
  text-transform:uppercase;
}
table.compare tbody tr:nth-child(even){background:var(--cloud);}
table.compare tbody th{font-weight:700;color:var(--ink);white-space:nowrap;}
