/* ============================================================
   Bright Solar — design system v3 "heritage"
   Old money: quiet, assured, timeless. Ivory grounds,
   linen #E7D6B4 carries warmth, antique brass
   #A8822D draws the hairlines. Bright gold #FBCA07 is
   reserved for the primary call to action only.
   Display: Cormorant Garamond. Body: Source Serif 4.
   Contrast rule: brass text on ivory uses --brass-text
   (AA-safe); on navy, --brass-light. Gold #FBCA07 text
   never appears on ivory.
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;1,8..60,400&display=swap");

:root {
  --ivory: #FAF7F0;
  --ivory-deep: #F3EDDE;
  --eggshell: #EDE3C9;
  --paper: #FFFDF7;
  --ink: #221D12;
  --muted: #6B6252;
  --linen: #E7D6B4;          /* replaces navy: light linen */
  --linen-deep: #D6BD8F;    /* replaces navy-deep */
  --linen-ink: #F3E9D3;     /* replaces navy-ink */
  --navy: var(--linen);
  --navy-deep: var(--linen-deep);
  --navy-ink: var(--linen-ink);
  --brass: #A8822D;            /* decorative hairlines, borders */
  --brass-deep: #8C6B23;
  --brass-text: #6E5418;       /* AA-safe brass text on ivory */
  --brass-light: #C9A961;      /* brass text on navy */
  --gold: #FBCA07;             /* primary CTA only */
  --blue: #2B5B85;             /* served states on map: deep Oxford blue */
  --blue-deep: #1D4266;        /* served-state stroke / hover */
  --line: #E2D9C0;             /* hairline borders */
  --line-soft: #EFE7D1;
  --card-shadow: 0 1px 2px rgba(34, 29, 18, 0.05), 0 8px 24px rgba(34, 29, 18, 0.06);
  --radius: 4px;
  --radius-sm: 3px;
  --font: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(168, 130, 45, 0.28); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brass-text); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

/* ============ Display typography ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 0.55em;
  color: var(--ink);
  text-wrap: balance;
  line-height: 1.12;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.3rem); line-height: 1.06; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

/* Brass keyword hits: deep brass on ivory, light brass on navy */
.hl { color: var(--brass-text); font-style: normal; }
.band-navy .hl,
.page-hero .hl,
.hero .hl,
.site-header .hl,
.footer-bottom .hl,
.band-gold .hl { color: var(--brass-text); }

p { margin: 0 0 1.05em; }
.lede { font-size: 1.18rem; color: var(--muted); max-width: 46rem; line-height: 1.7; }
.small { font-size: 0.92rem; color: var(--muted); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ============ Sections & rhythm ============ */
.section { padding: clamp(4.5rem, 8vw, 7rem) 0; position: relative; }
.section-soft { background: var(--ivory-deep); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-head { max-width: 50rem; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }

/* Eyebrow labels: serif small caps, letterspaced, hairline rule */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display);
  font-variant: small-caps; font-size: 1.02rem; font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--brass-text); margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 2.5rem; height: 1px; background: var(--brass);
  flex: 0 0 auto;
}
.band-navy .eyebrow, .page-hero .eyebrow, .hero .eyebrow { color: var(--brass-text); }

/* Hairline divider utility */
.divider-gold {
  border: 0; height: 1px; width: 76px; background: var(--brass);
  margin: 1.6rem 0;
}
.divider-gold.center { margin-left: auto; margin-right: auto; }

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy); color: var(--ink); padding: 0.75rem 1.25rem; z-index: 200; font-weight: 600; }
.skip-link:focus { left: 1rem; }

/* ============ Header / nav ============ */
.site-header {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--ink); position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 14px rgba(93, 74, 42, 0.28);
  border-bottom: 1px solid var(--brass);
}
.header-inner { display: flex; align-items: center; gap: 1rem; padding-top: 0.65rem; padding-bottom: 0.65rem; }
.brand { display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--ink); }
.brand-logo { display: inline-block; width: 46px; height: 46px; border-radius: 50%; overflow: hidden; background: var(--navy-deep); flex: 0 0 auto; border: 1px solid rgba(201, 169, 97, 0.6); }
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand-logo.on-white { background: var(--navy); padding: 4px; }
.brand-word { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.02em; line-height: 1.1; }
.brand-word strong { font-weight: 400; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.6rem; margin-left: auto; min-width: 48px; min-height: 48px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 6px 0; transition: transform .25s, opacity .25s; }

.primary-nav { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.primary-nav > ul { display: flex; align-items: center; gap: 0.1rem; list-style: none; margin: 0; padding: 0; min-width: 0; }
.nav-link {
  display: inline-block; color: var(--ink); text-decoration: none; font-weight: 600;
  font-family: var(--font-display); font-variant: small-caps; font-size: 1.08rem;
  letter-spacing: 0.08em; padding: 0.8rem 0.85rem;
  background: none; border: 0; cursor: pointer; white-space: nowrap;
  transition: color .2s;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--brass-text); outline: none; }
.has-dropdown { position: relative; }
.dropdown-toggle::after { content: "▾"; font-size: 0.7em; margin-left: 0.35em; color: var(--brass-text); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 270px;
  background: var(--paper); border-radius: var(--radius-sm); box-shadow: var(--card-shadow);
  border: 1px solid var(--line); border-top: 1px solid var(--brass);
  list-style: none; margin: 0; padding: 0.5rem; display: none; z-index: 120;
}
.has-dropdown.open .dropdown { display: block; }
.dropdown a { display: block; padding: 0.65rem 0.95rem; color: var(--ink); text-decoration: none; font-size: 1rem; font-weight: 400; }
.dropdown a:hover, .dropdown a:focus-visible { background: var(--ivory-deep); color: var(--brass-text); }
.dropdown-group a { font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; color: var(--brass-text); padding-top: .85rem; }
.dropdown-group { border-top: 1px solid var(--line); margin-top: .35rem; }
.dropdown-group:first-child { border-top: 0; margin-top: 0; }
.dropdown-group:first-child a { padding-top: .65rem; }
@media (hover: hover) { .has-dropdown:hover .dropdown { display: block; } }
.nav-cta { margin-left: 0.75rem; flex-shrink: 0; white-space: nowrap; }
.nav-phone { margin-left: 0.75rem; flex-shrink: 0; white-space: nowrap; }

/* Mobile nav */
@media (max-width: 1199px) {
  .nav-toggle { display: block; }
  .primary-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-deep); flex-direction: column; align-items: stretch;
    padding: 1rem 1.25rem 1.5rem; gap: 0; box-shadow: 0 18px 30px rgba(93,74,42,.35);
    max-height: calc(100vh - 70px); overflow-y: auto; border-bottom: 1px solid var(--brass);
  }
  .site-header.nav-open .primary-nav { display: flex; }
  .primary-nav > ul { flex-direction: column; align-items: stretch; }
  .has-dropdown .dropdown { position: static; box-shadow: none; margin: 0 0 0.5rem; border: 0; border-left: 1px solid var(--brass); border-radius: 0; background: transparent; }
  .has-dropdown .dropdown a { color: var(--ink); }
  .has-dropdown .dropdown a:hover { background: rgba(120,95,55,.12); color: var(--brass-text); }
  .nav-link { width: 100%; text-align: left; }
  .dropdown-toggle { display: flex; justify-content: space-between; align-items: center; }
  .nav-cta { margin: 0.75rem 0 0; text-align: center; }
  .nav-phone { margin: 0.75rem 0 0; text-align: center; }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ============ Buttons — refined, quiet authority ============ */
.btn {
  display: inline-block; font-family: var(--font-display);
  font-weight: 600; font-size: 1.12rem; letter-spacing: 0.05em;
  padding: 0.95rem 2.4rem; border-radius: var(--radius-sm); border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  text-align: center; line-height: 1.4;
}
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 4px 14px rgba(251,202,7,.28); }
.btn-gold:hover { background: #ffd21f; color: var(--ink); box-shadow: 0 6px 18px rgba(251,202,7,.36); }
.btn-navy { background: var(--navy); color: var(--ink); border-color: var(--brass-deep); }
.btn-navy:hover { background: var(--navy-deep); color: var(--ink); border-color: var(--brass); }
.btn-outline { background: transparent; color: var(--brass-text); border-color: var(--brass-text); }
.btn-outline:hover { background: var(--brass-text); border-color: var(--brass-text); color: #fff; }
.btn-outline-light { background: transparent; color: var(--ink); border-color: rgba(34,29,18,.55); }
.btn-outline-light:hover { border-color: var(--brass-text); color: var(--brass-text); }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.nav-cta.btn, .nav-phone.btn { padding: 0.62rem 1.5rem; font-size: 1rem; font-variant: small-caps; letter-spacing: 0.1em; }

/* Tighten desktop nav spacing so the full menu fits at >=1200px */
@media (min-width: 1200px) {
  .nav-link { padding: 0.8rem 0.6rem; font-size: 1rem; }
  .nav-cta.btn, .nav-phone.btn { padding: 0.62rem 1.1rem; }
}

/* ============ Forms ============ */
label { display: block; font-weight: 600; margin: 0 0 0.35rem; font-size: 1rem; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
select, textarea {
  width: 100%; font-family: inherit; font-size: 1rem; padding: 0.85rem 1.1rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(168,130,45,.18); }
textarea { min-height: 130px; resize: vertical; }
.field { margin-bottom: 1.15rem; }
.field-hint { font-size: 0.9rem; color: var(--muted); margin-top: 0.3rem; font-weight: 400; }
.form-card {
  background: var(--paper); border-radius: var(--radius); box-shadow: var(--card-shadow);
  padding: 2rem; border: 1px solid var(--line);
  outline: 1px solid rgba(168,130,45,.3); outline-offset: 6px;
}
@media (min-width: 700px) { .form-card { padding: 2.75rem; } }

/* ZIP inline form (hero / CTA bars) */
.zip-form { display: flex; gap: 0.6rem; max-width: 560px; }
.zip-form input { border-radius: var(--radius-sm); padding: 0.95rem 1.3rem; border: 1px solid var(--line); font-size: 1.02rem; }
.zip-form .btn { flex: 0 0 auto; white-space: nowrap; }
@media (max-width: 560px) { .zip-form { flex-direction: column; } .zip-form .btn { width: 100%; } }

/* ============ Homepage hero — stately, assured ============ */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy-deep);
  padding: clamp(5.5rem, 11vw, 8.5rem) 0;
  border-bottom: 1px solid var(--brass);
}
.hero-grid { display: block; position: relative; z-index: 1; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(237,227,201,.80) 20%, rgba(231,214,180,.60) 55%, rgba(231,214,180,.30) 100%);
}
.hero-copy { position: relative; z-index: 2; max-width: 46rem; color: var(--ink); }
.hero .sub {
  font-family: var(--font-display); font-variant: small-caps; font-size: 1.1rem;
  font-weight: 600; letter-spacing: 0.26em; color: var(--brass-text); margin-bottom: 1.2rem;
}
.hero h1 { color: var(--ink); margin-bottom: 1.3rem; max-width: 18ch; }
.hero h1::after {
  content: ""; display: block; width: 76px; height: 1px;
  background: var(--brass); margin-top: 1.4rem;
}
.hero-copy p.lede { color: rgba(34,29,18,.85); margin-bottom: 2.1rem; font-size: 1.22rem; }
.hero .zip-form { margin-bottom: 0.5rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.9rem; align-items: center; }
.hero-badges span {
  background: transparent; border: 1px solid rgba(201,169,97,.55);
  border-radius: 999px; padding: 0.45rem 1.15rem; font-size: 0.95rem; color: var(--ink);
  font-family: var(--font-display); font-variant: small-caps; letter-spacing: 0.1em;
}
.hero-badges .trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brass); border: none; padding: 0; flex: 0 0 auto; }

/* State pills (locations links) */
.cert-badges { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; justify-content: center; }
.cert-badges span {
  background: var(--paper); border: 1px solid var(--brass);
  border-radius: 999px; padding: 0.55rem 1.5rem;
  font-family: var(--font-display); font-variant: small-caps;
  font-size: 1.05rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--brass-text);
}
.cert-badges a { color: inherit; text-decoration: none; }
.cert-badges a:hover span, .cert-badges span:hover { background: var(--navy-deep); color: var(--ink); border-color: var(--navy-deep); }
.band-navy .cert-badges span { background: transparent; border-color: rgba(201,169,97,.6); color: var(--ink); }

/* Certified-installer logo cards (real brand marks) */
.cert-logos {
  display: grid; gap: 1.25rem; margin-top: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) { .cert-logos { grid-template-columns: repeat(3, 1fr); } }
.cert-logo {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.75rem 1.25rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.85rem; min-height: 120px; box-shadow: var(--card-shadow);
  margin: 0;
}
.cert-logo img { max-height: 54px; width: auto; max-width: 100%; object-fit: contain; }
.cert-logo .brand-text { font-family: var(--font-display); font-size: 1.65rem; color: var(--ink); letter-spacing: .02em; line-height: 1.2; text-align: center; }
.cert-logo figcaption {
  font-family: var(--font-display); font-variant: small-caps;
  font-size: 1.05rem; font-weight: 600; letter-spacing: 0.16em;
  color: var(--brass-text); margin: 0;
}

/* Legacy text brand list (kept quiet, where still used) */
.cert-list { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: 0; }
.cert-list li { padding: 1rem 0.25rem; border-bottom: 1px solid var(--line-soft); }
.cert-list li strong { color: var(--ink); font-family: var(--font-display); font-size: 1.1rem; }

/* ============ Interior page heroes — quiet statements ============ */
.page-hero {
  position: relative; overflow: hidden; color: var(--ink);
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
  background: linear-gradient(165deg, var(--navy-ink) 0%, var(--navy) 55%, var(--navy-deep) 100%);
  border-bottom: 1px solid var(--brass);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--ink); margin-bottom: 1rem; max-width: 22ch; }
.page-hero h1::after {
  content: ""; display: block; width: 68px; height: 1px;
  background: var(--brass); margin-top: 1.3rem;
}
.page-hero p { color: rgba(34,29,18,.84); max-width: 46rem; margin: 0; font-size: 1.14rem; }
/* Light eggshell hero (reviews page) */
.page-hero-light {
  background: var(--eggshell);
  border-bottom: 1px solid var(--brass);
}
.page-hero-light h1 { color: var(--ink); }
.page-hero-light p { color: var(--ink); }
.page-hero-light .breadcrumb { color: var(--muted); }
.breadcrumb {
  font-family: var(--font-display); font-variant: small-caps;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.14em;
  color: var(--muted); margin-bottom: 1.4rem;
}
.breadcrumb a { color: var(--brass-text); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }

/* ============ Cards — ivory, hairline, restrained ============ */
.cards-2, .cards-3, .cards-4 { display: grid; gap: 1.75rem; }
@media (min-width: 700px) { .cards-2 { grid-template-columns: repeat(2, 1fr); } .cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } .cards-4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--paper); border-radius: var(--radius); box-shadow: var(--card-shadow);
  padding: 2.1rem; border: 1px solid var(--line);
  transition: border-color .25s, box-shadow .25s;
}
.card:hover { border-color: var(--brass); box-shadow: 0 2px 4px rgba(34,29,18,.05), 0 14px 34px rgba(34,29,18,.09); }
.card h3 { margin-bottom: 0.6rem; font-size: 1.35rem; }
.card p { color: var(--muted); margin-bottom: 1.1rem; }
.card .card-link {
  font-weight: 600; color: var(--ink); text-decoration: none;
  font-family: var(--font-display); font-variant: small-caps;
  font-size: 1.05rem; letter-spacing: 0.1em;
  border-bottom: 1px solid var(--brass); padding-bottom: 2px;
}
.card .card-link:hover { color: var(--brass-text); }
.card-icon {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--brass); background: var(--ivory);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem;
  font-size: 1.5rem; color: var(--brass-text);
  font-family: var(--font-display); font-weight: 600;
}
.band-navy .card { background: var(--paper); box-shadow: none; border: 1px solid rgba(201,169,97,.35); }
.plan-card { border-top: 2px solid var(--brass); }
.plan-card.plan-featured { border: 1px solid var(--brass); border-top: 3px solid var(--brass); }
.plan-price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--ink); margin-bottom: 0.8rem; }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.band-navy .card h3 { color: var(--ink); }
.band-navy .card p { color: var(--muted); }
.band-navy .card .card-link { color: var(--brass-text); border-color: var(--brass); }

/* ============ Bands ============ */
.band-navy {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--ink); border-top: 1px solid var(--brass); border-bottom: 1px solid var(--brass);
}
.band-navy h2, .band-navy h3 { color: var(--ink); }
.band-navy p { color: rgba(34,29,18,.82); }
.band-navy .lede { color: rgba(34,29,18,.78); }
/* Gold band: deeper linen wash (bright gold reserved for CTAs) */
.band-gold { background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%); color: var(--ink); border-top: 1px solid var(--brass); border-bottom: 1px solid var(--brass); }
.band-gold h2 { color: var(--ink); }
.band-gold p { color: rgba(34,29,18,.82); }
.band-gold .lede { color: rgba(34,29,18,.78); }

/* CTA bar above footer — navy, brass hairlines, one gold button */
.cta-bar { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); padding: 3.25rem 0; border-top: 1px solid var(--brass); }
.cta-bar-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; justify-content: space-between; }
.cta-bar p { margin: 0; font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; color: var(--ink); }
.cta-bar .zip-form input { background: #fff; border-color: var(--line); }

/* ============ Steps / process ============ */
.steps { display: grid; gap: 2rem; counter-reset: step; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--paper); border-radius: var(--radius); box-shadow: var(--card-shadow); padding: 2.1rem; position: relative; border: 1px solid var(--line); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: 2.6rem; color: var(--brass); line-height: 1; margin-bottom: 0.4rem;
}
.step::after {
  content: ""; display: block; width: 44px; height: 1px; background: var(--brass);
  margin: 0.9rem 0 1.1rem;
}
.step h3 { font-size: 1.35rem; }

/* ============ FAQ accordion ============ */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: none; border: 0; padding: 1.35rem 0.25rem; font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600; color: var(--ink); cursor: pointer; text-align: left;
}
.faq-q:hover { color: var(--brass-text); }
.faq-q .faq-icon {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--brass); color: var(--brass-text);
  font-weight: 400; font-size: 1.35rem; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s, background .25s;
}
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); background: var(--brass-text); color: #fff; border-color: var(--brass-text); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 0.25rem 1.6rem; color: var(--muted); max-width: 52rem; }

/* ============ Article / guide layout ============ */
.article-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1000px) { .article-grid { grid-template-columns: 1fr 320px; align-items: start; } }
.article-body { max-width: 46rem; }
.article-body h2 { margin-top: 3.2rem; padding-top: 0.5rem; }
.article-body h3 { margin-top: 2.1rem; }
.article-body ul, .article-body ol { padding-left: 1.4rem; margin: 0 0 1.25em; }
.article-body li { margin-bottom: 0.5em; }
.article-body li::marker { color: var(--brass-text); }
.article-body figure { margin: 2.2rem 0; }
.article-body figure img { border-radius: var(--radius-sm); box-shadow: var(--card-shadow); border: 1px solid var(--line); }
.article-body figcaption { font-size: 0.9rem; color: var(--muted); margin-top: 0.6rem; font-style: italic; }
.callout {
  background: var(--paper); border: 1px solid var(--line); border-left: 2px solid var(--brass);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.5rem 1.7rem; margin: 2.1rem 0; box-shadow: var(--card-shadow);
}
.callout.navy { background: linear-gradient(160deg, var(--navy-ink) 0%, var(--navy) 100%); color: var(--ink); border: 1px solid var(--navy-deep); border-left: 2px solid var(--brass); }
.callout.navy p { color: rgba(34,29,18,.88); }
.callout p:last-child { margin-bottom: 0; }
.toc { background: var(--paper); border-radius: var(--radius); padding: 1.75rem 2rem; border: 1px solid var(--line); box-shadow: var(--card-shadow); }
.toc h3 { font-size: 1.15rem; margin-bottom: 0.75rem; font-variant: small-caps; letter-spacing: 0.1em; color: var(--brass-text); }
.toc ol { margin: 0; padding-left: 1.3rem; }
.toc li { margin-bottom: 0.4em; }
.toc a { color: var(--brass-text); text-decoration: none; }
.toc a:hover { color: var(--brass-text); }
.sidebar-card { background: var(--paper); border-radius: var(--radius); box-shadow: var(--card-shadow); padding: 1.75rem; margin-bottom: 1.75rem; border: 1px solid var(--line); border-top: 2px solid var(--brass); }
.sidebar-card.gold { border-top: 2px solid var(--brass); }
.sidebar-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }

/* Comparison table */
.table-wrap { overflow-x: auto; margin: 1.75rem 0; border-radius: var(--radius-sm); box-shadow: var(--card-shadow); border: 1px solid var(--line); }
table.compare { width: 100%; border-collapse: collapse; background: var(--paper); font-size: 0.98rem; min-width: 560px; }
table.compare th, table.compare td { padding: 1rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
table.compare thead th {
  background: var(--navy-deep); color: var(--ink); font-weight: 600;
  font-family: var(--font-display); font-variant: small-caps; letter-spacing: 0.12em; font-size: 1.02rem;
}
table.compare tbody tr:nth-child(even) { background: var(--ivory-deep); }
table.compare td:first-child { font-weight: 600; }

/* Stat band — quiet navy, brass numerals */
.stat-band { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); border-top: 1px solid var(--brass); border-bottom: 1px solid var(--brass); }
.stat-grid { display: grid; gap: 2rem; text-align: center; padding: 3.5rem 0; }
@media (min-width: 800px) { .stat-grid { grid-template-columns: repeat(3, 1fr); } }
.stat-grid .stat-num { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 500; color: var(--brass-text); line-height: 1; margin-bottom: 0.6rem; }
.stat-grid .stat-label { font-family: var(--font-display); font-variant: small-caps; font-weight: 600; color: var(--muted); letter-spacing: 0.16em; font-size: 1rem; }

/* ============ Blog ============ */
.blog-grid { display: grid; gap: 2rem; }
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card { background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow); transition: border-color .25s; display: flex; flex-direction: column; border: 1px solid var(--line); }
.post-card:hover { border-color: var(--brass); }
.post-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.post-card-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.post-tag {
  display: inline-block; font-family: var(--font-display); font-variant: small-caps;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.18em;
  color: var(--brass-text); margin-bottom: 0.6rem;
}
.post-card h3 { margin-bottom: 0.6rem; }
.post-card h3 a { color: var(--ink); text-decoration: none; }
.post-card h3 a:hover { color: var(--brass-text); }
.post-card p { color: var(--muted); font-size: 0.99rem; flex: 1; }

/* ============ Careers ============ */
.job-search { display: grid; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 800px) { .job-search { grid-template-columns: 1fr 1fr 1fr auto; align-items: end; } }
.job-list { display: grid; gap: 1.25rem; }
.job-card { background: var(--paper); border-radius: var(--radius); box-shadow: var(--card-shadow); padding: 1.75rem 2rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; border: 1px solid var(--line); border-left: 2px solid var(--brass); }
.job-card h3 { margin: 0 0 0.25rem; }
.job-meta { color: var(--muted); font-size: 0.95rem; }
.empty-state { text-align: center; background: var(--paper); border-radius: var(--radius); padding: 3.5rem 2rem; border: 1px dashed var(--brass); }
.empty-state h3 { margin-bottom: 0.5rem; }

/* ============ Quote multi-step ============ */
.step-progress { display: flex; gap: 0.6rem; margin-bottom: 2.25rem; }
.step-progress .bar { flex: 1; height: 3px; border-radius: 999px; background: var(--line); }
.step-progress .bar.done { background: var(--brass); }
.step-progress .bar.now { background: var(--brass-deep); }
.quote-step[hidden] { display: none; }
.quote-nav { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.form-2col { display: grid; gap: 0 1.25rem; }
@media (min-width: 700px) { .form-2col { grid-template-columns: 1fr 1fr; } }
.check-row { display: flex; gap: 0.6rem; align-items: flex-start; font-weight: 400; font-size: 0.95rem; }
.check-row input { width: auto; margin-top: 0.35rem; }

/* ============ Footer ============ */
.footer-main { background: var(--ivory-deep); padding: 4rem 0 3rem; border-top: 1px solid var(--brass); }
.footer-grid { display: grid; gap: 2.25rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; } }
.footer-brand p { color: var(--muted); font-size: 0.99rem; }
.footer-brand .brand-logo { width: 62px; height: 62px; margin-bottom: 1rem; }
.site-footer h3 {
  font-family: var(--font-display); font-variant: small-caps;
  font-size: 1.05rem; font-weight: 600; letter-spacing: 0.18em;
  color: var(--brass-text); margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 0.6rem; }
.site-footer ul a { color: var(--ink); text-decoration: none; font-size: 0.99rem; font-weight: 400; }
.site-footer ul a:hover { color: var(--brass-text); }
.footer-contact li { color: var(--muted); font-size: 0.99rem; }
.social-row { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--brass); color: var(--brass-text); background: transparent;
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none;
  font-weight: 600; font-size: 0.85rem; font-family: var(--font-display);
  transition: background .2s, color .2s;
}
.social-row a:hover { background: var(--brass-text); color: #fff; border-color: var(--brass-text); }
.footer-bottom { background: var(--navy-deep); color: var(--muted); padding: 1.4rem 0; font-size: 0.9rem; border-top: 1px solid var(--brass); }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; align-items: center; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--brass-text); }

/* ============ Misc ============ */
.tbd { background: var(--ivory-deep); border: 1px dashed var(--brass); border-radius: var(--radius-sm); padding: 0.15rem 0.5rem; font-size: 0.85em; font-weight: 600; color: var(--brass-text); white-space: nowrap; }
.checklist-note { font-size: 0.9rem; color: var(--muted); }
.map-graphic { background: linear-gradient(160deg, var(--navy-ink) 0%, var(--navy) 100%); border-radius: var(--radius); padding: 2.5rem; text-align: center; color: var(--ink); border: 1px solid var(--brass); }
.map-graphic svg { max-width: 320px; margin: 0 auto 1rem; }

/* ============ Service-area US map ============ */
.market-map { max-width: 920px; margin: 0 auto; }
.us-map { width: 100%; height: auto; display: block; }
.us-map .st { fill: var(--eggshell); stroke: var(--brass); stroke-width: 1.1; }
.us-map a.map-state-link { outline: none; }
.us-map a.map-state-link .st.served { fill: var(--blue); stroke: var(--blue-deep); stroke-width: 1.4; cursor: pointer; transition: fill .25s ease; }
.us-map a.map-state-link:hover .st.served,
.us-map a.map-state-link:focus-visible .st.served { fill: var(--blue-deep); }
.us-map a.map-state-link:focus-visible { outline: 2px solid var(--brass-deep); outline-offset: 4px; }
.us-map .map-label { font-family: var(--font-display); font-weight: 700; font-size: 24px; fill: var(--ink); pointer-events: none; }
.us-map a.map-state-link .map-label { fill: var(--ivory); }
.map-legend { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; font-size: .95rem; color: var(--muted); }
.map-legend .swatch { display: inline-block; width: 1rem; height: 1rem; border-radius: 2px; margin-right: .4rem; vertical-align: -2px; border: 1px solid var(--brass); }
.map-legend .swatch.served { background: var(--blue); }
.map-legend .swatch.rest { background: var(--eggshell); }
.prose-narrow { max-width: 46rem; }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; } .mb-2 { margin-bottom: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

/* ============ Scroll-reveal — slow, subtle (JS adds .reveal) ============ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 1.1s ease, transform 1.1s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Privacy policy page */
.last-updated { color: var(--brass-text); font-weight: 600; }
.policy-defs { margin: 0 0 1.25rem; }
.policy-defs dt { font-weight: 600; color: var(--brass-text); font-family: var(--font-display); font-size: 1.1rem; }
.policy-defs dd { margin: 0 0 0.9rem; }
.signoff { font-weight: 600; color: var(--brass-text); line-height: 1.6; }

/* ============ Form choice cards, quote extras, contact hooks ============ */
.choice {
  display: flex; align-items: center; gap: 0.8rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.9rem 1.15rem; margin: 0 0 0.7rem; cursor: pointer;
  font-weight: 400; transition: border-color .2s, background .2s;
  background: #fff;
}
.choice:hover { border-color: var(--brass); background: var(--ivory-deep); }
.choice input { width: 1.2rem; height: 1.2rem; accent-color: var(--brass-deep); flex: 0 0 auto; }
.choice:has(input:checked) { border-color: var(--brass-deep); background: #fff; box-shadow: 0 0 0 2px rgba(168,130,45,.18); border-left: 2px solid var(--brass); }
.choice:has(input:focus-visible) { outline: 2px solid var(--brass); outline-offset: 2px; }
fieldset.field { border: 0; padding: 0; margin: 0 0 1.1rem; }
fieldset.field legend { font-weight: 600; margin-bottom: 0.6rem; padding: 0; font-size: 1.02rem; }

.step-count {
  display: inline-block; font-family: var(--font-display); font-variant: small-caps;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.2em;
  color: var(--brass-text); border: 1px solid var(--brass); border-radius: 999px;
  padding: 0.35rem 1.2rem; margin-bottom: 1.1rem; background: var(--paper);
}

.steps-list { list-style: none; padding: 0; margin: 1.25rem 0; counter-reset: nxt; display: grid; gap: 0.9rem; }
.steps-list li {
  counter-increment: nxt; background: var(--paper); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem 1rem 3.75rem; position: relative; border: 1px solid var(--line);
}
.steps-list li::before {
  content: counter(nxt); position: absolute; left: 1.2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--brass);
}

.contact-list { list-style: none; padding: 0; margin: 0 0 1.25rem; display: grid; gap: 0.7rem; }
.contact-list li { background: var(--paper); border-radius: var(--radius-sm); padding: 0.85rem 1.15rem; border: 1px solid var(--line); border-left: 2px solid var(--brass); }
.contact-list li strong { color: var(--brass-text); font-family: var(--font-display); font-size: 1.05rem; }
.reassurance { font-weight: 600; color: var(--brass-text); display: flex; align-items: center; gap: 0.6rem; }
.reassurance::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brass); flex: 0 0 auto; }
.areas-note { font-size: 0.95rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 1rem; margin-top: 1.25rem; }
.optional { font-weight: 400; color: var(--muted); font-size: 0.88em; }
.renter-note { border-left: 2px solid var(--brass); padding-left: 0.9rem; }
.faq-mt { margin-top: 2.5rem; }
.sidebar-card-soft { background: var(--ivory-deep); border-radius: var(--radius); padding: 1.75rem; margin-bottom: 1.75rem; border: 1px solid var(--line); border-top: 2px solid var(--brass); }
.sidebar-card-soft h3 { font-size: 1.2rem; }

/* Mobile refinements */
@media (max-width: 700px) {
  .hero-media::after {
    background: linear-gradient(180deg, rgba(237,227,201,.82) 0%, rgba(231,214,180,.62) 55%, rgba(231,214,180,.42) 100%);
  }
  .hero { padding: 4.5rem 0; }
  .btn { width: 100%; }
  .zip-form .btn { width: 100%; }
  .nav-cta.btn, .nav-phone.btn { width: auto; }
  .quote-nav .btn { width: auto; }
  .cert-logos { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Project gallery ---- */
.gallery-grid { columns: 3; column-gap: 1.5rem; }
.gallery-item { break-inside: avoid; margin: 0 0 1.5rem; background: #fff; border: 1px solid var(--line-soft); padding: .55rem; transition: border-color .4s ease; }
.gallery-item:hover { border-color: var(--brass); }
.gallery-item img { display: block; width: 100%; height: auto; cursor: zoom-in; }
.gallery-item figcaption { padding: .8rem .35rem .35rem; font-size: .95rem; font-style: italic; color: var(--muted); line-height: 1.5; }
.lightbox { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; background: rgba(46,36,18,.96); padding: 2.5rem 4.5rem; }
.lightbox.open { display: flex; }
.lb-img { max-width: 100%; max-height: 78vh; border: 1px solid var(--brass); }
.lb-caption { position: absolute; bottom: 1.25rem; left: 0; right: 0; text-align: center; color: #fff; font-style: italic; padding: 0 2rem; }
.lb-close, .lb-prev, .lb-next { position: absolute; background: none; border: 0; color: var(--brass-light); font-size: 3rem; line-height: 1; cursor: pointer; padding: .5rem 1rem; }
.lb-close { top: .5rem; right: 1rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold); }
.work-teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.work-teaser-grid figure { margin: 0; border: 1px solid var(--line-soft); background: #fff; padding: .55rem; }
.work-teaser-grid img { display: block; width: 100%; height: 230px; object-fit: cover; }
@media (max-width: 900px) { .gallery-grid { columns: 2; } .work-teaser-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-grid { columns: 1; } .work-teaser-grid { grid-template-columns: 1fr; } .lightbox { padding: 3.5rem 1rem 4rem; } .lb-prev { left: 0; } .lb-next { right: 0; } }

/* ---- Review stacks (oscillating review cards) ---- */
.platform-cards { display: grid; gap: 1.5rem; max-width: 880px; margin: 0 auto 1.25rem; }
@media (min-width: 760px) { .platform-cards { grid-template-columns: 1fr 1fr; } }
.platform-card {
  display: grid; gap: 0.4rem; justify-items: center; text-align: center;
  background: var(--paper); border: 1px solid var(--line); border-top: 2px solid var(--brass);
  border-radius: var(--radius); padding: 2rem 1.5rem; box-shadow: var(--card-shadow);
  text-decoration: none; transition: border-color .25s, box-shadow .25s;
}
.platform-card:hover { border-color: var(--brass); box-shadow: 0 2px 4px rgba(34,29,18,.05), 0 14px 34px rgba(34,29,18,.09); }
.platform-name {
  font-family: var(--font-display); font-variant: small-caps;
  font-size: 1.15rem; font-weight: 600; letter-spacing: 0.18em; color: var(--brass-text);
}
.stars { color: var(--brass-deep); letter-spacing: 0.28em; font-size: 1.25rem; line-height: 1; }
.platform-score { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--ink); }
.platform-score span { font-size: 1.05rem; font-weight: 400; color: var(--muted); font-family: var(--font); }
.platform-link {
  font-family: var(--font-display); font-variant: small-caps; font-size: 1.05rem;
  font-weight: 600; letter-spacing: 0.1em; color: var(--brass-text);
  border-bottom: 1px solid var(--brass); padding-bottom: 2px;
}
.platform-card:hover .platform-link { color: var(--brass-text); }

.rstack { max-width: 780px; margin: 0 auto; }
.rstack-viewport { position: relative; padding: 0.5rem 0.5rem 2.75rem; }
.rcard {
  position: absolute; top: 0.5rem; left: 0.5rem; right: 0.5rem;
  background: var(--paper); border: 1px solid var(--line); border-top: 2px solid var(--brass);
  border-radius: var(--radius); box-shadow: var(--card-shadow);
  padding: 2rem 2.25rem 1.75rem;
  opacity: 0; transform: translateY(18px) scale(0.97); pointer-events: none; visibility: hidden;
  transition: opacity 0.65s ease, transform 0.65s ease, visibility 0.65s;
}
.rcard.active, .rcard.b1, .rcard.b2 { visibility: visible; }
.rcard.active { position: relative; top: auto; left: auto; right: auto; opacity: 1; transform: none; pointer-events: auto; z-index: 3; }
.rcard.b1 { opacity: 0.85; transform: translateY(14px) rotate(-1.1deg); z-index: 2; }
.rcard.b2 { opacity: 0.5; transform: translateY(26px) rotate(1.2deg); z-index: 1; }
.rcard-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.rcard-top .stars { font-size: 1.1rem; }
.source-badge {
  font-family: var(--font-display); font-variant: small-caps; font-size: 0.98rem;
  font-weight: 600; letter-spacing: 0.16em; color: var(--brass-text);
  border: 1px solid var(--brass); border-radius: 999px; padding: 0.25rem 1rem; white-space: nowrap;
}
.rcard-title { font-size: 1.5rem; margin-bottom: 0.7rem; }
.rcard-body { color: var(--ink); font-size: 1.04rem; line-height: 1.7; }
.rcard-body p { margin: 0; }
.rcard-body:not(.expanded) { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.rcard-more {
  background: none; border: 0; padding: 0.6rem 0 0; cursor: pointer;
  font-family: var(--font-display); font-variant: small-caps; font-size: 1.05rem;
  font-weight: 600; letter-spacing: 0.1em; color: var(--brass-text);
  border-bottom: 1px solid var(--brass);
}
.rcard-more:hover { color: var(--brass-text); }
.rcard-foot {
  margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; align-items: baseline; justify-content: space-between;
}
.rcard-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--ink); }
.rcard-date { font-size: 0.95rem; color: var(--muted); font-style: italic; }

.rstack-controls { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 1.25rem; }
.rstack-arrow {
  background: none; border: 1px solid var(--brass); border-radius: 50%;
  width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--brass-text); font-size: 1.5rem; line-height: 1;
  transition: background .2s, color .2s, border-color .2s; flex: 0 0 auto;
}
.rstack-arrow:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: var(--ink); }
/* Alternate arrow colours: previous in blue, next in gold */
.rstack-arrow[data-prev] { border-color: var(--navy-deep); color: var(--brass-text); }
.rstack-arrow[data-prev]:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: var(--ink); }
.rstack-arrow[data-next] { border-color: var(--gold); color: var(--gold); }
.rstack-arrow[data-next]:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.rstack-dots { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.review-row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.review-by { font-weight: 600; color: var(--muted); margin-bottom: 0; }.rdot { width: 11px; height: 11px; border-radius: 50%; border: 1px solid var(--brass); background: transparent; padding: 0; cursor: pointer; }
.rdot.on { background: var(--brass); }

@media (max-width: 600px) {
  .rcard { padding: 1.5rem 1.4rem 1.35rem; }
  .rstack-viewport { padding-bottom: 2.25rem; }
}

/* ---- Homepage aggregate ratings strip ---- */
.ratings-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.75rem 1.75rem; margin-top: 2.25rem; padding: 1.4rem 1.75rem;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.ratings-strip a { text-decoration: none; color: var(--ink); display: inline-flex; align-items: center; gap: 0.55rem; }
.ratings-strip a:hover .rsrc, .ratings-strip a:hover .rall { color: var(--brass-text); }
.ratings-strip .stars { font-size: 1.05rem; }
.ratings-strip .rscore { font-weight: 600; font-family: var(--font-display); font-size: 1.2rem; }
.ratings-strip .rsrc {
  font-family: var(--font-display); font-variant: small-caps; font-size: 1.1rem;
  font-weight: 600; letter-spacing: 0.12em; color: var(--brass-text);
}
.ratings-strip .rall {
  font-family: var(--font-display); font-variant: small-caps; font-size: 1.1rem;
  font-weight: 600; letter-spacing: 0.1em; color: var(--brass-text);
  border-bottom: 1px solid var(--brass);
}
.ratings-sep { width: 1px; height: 1.6rem; background: var(--brass); }
@media (max-width: 560px) { .ratings-sep { display: none; } }

/* BrightDZN site credit badge — fixed pill, bottom-right, all pages */
.dzn-badge {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  background: #221D12;
  color: #EDE3C9;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 97, .45);
  box-shadow: 0 4px 14px rgba(34, 29, 18, .28);
  opacity: .94;
  pointer-events: none;
  white-space: nowrap;
}
.dzn-badge strong { color: #FBCA07; font-weight: 600; }
@media (max-width: 560px) {
  .dzn-badge { right: .75rem; bottom: .75rem; font-size: .62rem; }
}

/* --- Punch-list additions: proof bar, pathways, roofing band, partner quotes --- */
.proof-bar { background: #221D12; color: #EDE3C9; }
.proof-bar-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; row-gap: 1.2rem; padding: 1.4rem 0; }
.proof-item { text-align: center; padding: 0 .5rem; }
.proof-item + .proof-item { border-left: 1px solid rgba(201,169,97,.35); }
.proof-item:nth-child(3n+1) { border-left: none; }
.proof-item strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: #FBCA07; letter-spacing: .02em; }
.proof-item span { font-size: .82rem; color: #CFC6AE; }
@media (max-width: 760px) {
  .proof-bar-inner { grid-template-columns: repeat(2, 1fr); row-gap: 1.2rem; }
  .proof-item:nth-child(3n+1) { border-left: 1px solid rgba(201,169,97,.35); }
  .proof-item:nth-child(odd) { border-left: none; }
}
.hero-secondary { margin: .9rem 0 0; }
.hero-secondary .btn { font-size: .92rem; padding: .65rem 1.2rem; }
.pathway-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pathway { border-radius: var(--radius); padding: 2rem; box-shadow: var(--card-shadow); border-top: 4px solid var(--brass); }
.pathway-home { background: var(--paper); }
.pathway-biz { background: #221D12; color: #EDE3C9; border-top-color: #FBCA07; }
.pathway-biz h3 { color: #FBCA07; }
.pathway-biz .eyebrow { color: #C9A961; }
.pathway-biz p { color: #CFC6AE; }
.pathway h3 { margin: .4rem 0 .6rem; font-size: 1.6rem; }
.pathway-list { margin: 0 0 1.4rem; padding-left: 1.1rem; }
.pathway-list li { margin: .3rem 0; }
.pathway-biz .pathway-list li { color: #EDE3C9; }
@media (max-width: 760px) { .pathway-grid { grid-template-columns: 1fr; } }
.roofing-band { display: flex; align-items: center; justify-content: space-between; gap: 2rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 2.2rem; box-shadow: var(--card-shadow); }
@media (max-width: 760px) { .roofing-band { flex-direction: column; align-items: flex-start; } }
.partner-quotes { margin-top: 2.5rem; }
.card-slim { padding: 1.4rem; }
/* sticky mobile conversion bar */
.sticky-cta { display: none; }
@media (max-width: 760px) {
  .sticky-cta { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: rgba(34,29,18,.97); border-top: 1px solid rgba(201,169,97,.4);
    padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom)); gap: .6rem; }
  .sticky-cta a { flex: 1; text-align: center; padding: .7rem .5rem; border-radius: 6px; font-weight: 600; font-size: .95rem; text-decoration: none; }
  .sticky-cta .sticky-quote { background: #FBCA07; color: #221D12; }
  .sticky-cta .sticky-call { background: transparent; color: #EDE3C9; border: 1px solid rgba(201,169,97,.6); }
  body { padding-bottom: 64px; }
}

/* ============ Subagent mobile audit fixes (2026-09-16) — appended, no existing rules edited ============ */
/* The fixed .dzn-badge credit pill sits behind/over the full-width .sticky-cta bar on
   mobile (<=760px). Hide the badge there; the sticky conversion bar takes priority. */
@media (max-width: 760px) {
  .dzn-badge { display: none; }
}

/* Services menu: plain group labels (non-linked) match linked group headers */
.dropdown-label { display: block; padding: 0.85rem 0.95rem 0.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; color: var(--brass-text); border-top: 1px solid var(--line); margin-top: .35rem; }
@media (max-width: 900px) {
  .has-dropdown .dropdown-label { color: var(--brass-text); border-top: 0; border-left: 0; margin-top: .5rem; }
}
