/* ============================================================
   [COMPANY NAME] — an E&M Roofing company
   Electric gallery homepage — white base, electric accents
   Fraunces (bold serif headlines) + Archivo (sans).
   Palette: Gallery White / Ink Black / Neon Pink / Cyan / Lime
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --paper:    #FFFFFF;
  --base:     #FCFCFA;   /* gallery white page bg */
  --stone:    #F4F4F0;   /* alt panels / icon wells */
  --ink:      #16131F;   /* text + dark sections */
  --ink-2:    #201C2B;
  --ink-soft: #3C3947;
  --muted:    #716D7C;
  --hairline: #ECEBE5;
  --hairline-strong: #DCDAD2;

  /* electric palette */
  --pink:   #FF2E88;
  --cyan:   #12C7E0;
  --lime:   #C6FF3D;

  /* tweakable lead accent */
  --accent:    #12C7E0;
  --accent-2:  #0E9DB3;   /* darker, for text/links on light */
  --on-accent: #16131F;
  --btn:       #16131F;
  --btn-ink:   #FFFFFF;
  --scale:     1;

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-sans:    'Montserrat', system-ui, sans-serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 16px;
  --radius-lg: 22px;
  --radius-sm: 11px;
  --pill: 999px;

  --shadow-sm: 0 1px 2px rgba(22,19,31,.05), 0 8px 24px rgba(22,19,31,.06);
  --shadow-md: 0 2px 6px rgba(22,19,31,.06), 0 24px 48px rgba(22,19,31,.10);
  --shadow-lg: 0 8px 18px rgba(22,19,31,.08), 0 44px 88px rgba(22,19,31,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--base);
  font-size: 18px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  font-optical-sizing: auto;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
}
[data-heading="sans"] .display {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.035em;
}
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  line-height: 1;
  color: var(--on-accent);
  background: var(--accent);
  padding: 9px 16px;
  border-radius: var(--pill);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.eyebrow.c-pink   { background: var(--pink);   color: #fff; }
.eyebrow.c-cyan   { background: var(--cyan);   color: var(--ink); }
.eyebrow.c-lime   { background: var(--lime);   color: var(--ink); }
.lede { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.55; font-weight: 500; }
.muted { color: var(--muted); }
.eyebrow + .display, .eyebrow + h2.display, .eyebrow + h1.display { margin-top: 28px; }
.section-pad + .section-pad,
.trust-strip + .section-pad,
.trust-marquee + .section-pad { padding-top: clamp(20px, 3vw, 38px); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(70px, 9vw, 130px); }
.center { text-align: center; }

/* ---------- Buttons — clean, modern, minimal ---------- */
.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0;
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 26px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(0); }
.btn.btn-block { width: 100%; }

.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(22,19,31,.22); }

/* "Get a Free Estimate" nav CTA — color-flip on hover, like the hero button */
.btn-estimate {
  transition: background .22s ease, color .22s ease, transform .2s ease, box-shadow .22s ease;
}
.btn-estimate:hover {
  background: var(--accent);
  color: var(--on-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(22,19,31,.18);
}

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--hairline-strong); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn-ghost.on-dark { color: var(--paper); border-color: rgba(255,255,255,.3); }
.btn-ghost.on-dark:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn-sm { padding: 11px 20px; font-size: 0.92rem; border-radius: 10px; }

.link-arrow {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.link-arrow svg { color: var(--accent); transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Placeholder imagery ---------- */
.ph {
  position: relative;
  overflow: hidden;
  background-color: #E9E8E2;
  background-image: repeating-linear-gradient(-45deg, rgba(22,19,31,.045) 0 13px, rgba(22,19,31,0) 13px 26px);
  display: grid;
  place-items: center;
  border-radius: var(--radius);
}
.ph::after {
  /* Placeholder labels hidden for launch.
     Show again by replacing `content: ""` with `content: attr(data-label)`. */
  content: "";
}
.ph.dark { background-color: #211D2B; background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.05) 0 13px, rgba(255,255,255,0) 13px 26px); }

/* ---------- Logo mark + lockup ---------- */
.badge {
  --bsize: 50px;
  width: var(--bsize); height: var(--bsize);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  flex: none;
  border: 2px solid var(--ink);
}
.badge .badge-inner { display: grid; place-items: center; gap: 2px; }
.badge .badge-mark-svg { color: var(--accent); }
.badge .badge-est {
  font-family: var(--font-sans); font-weight: 700; letter-spacing: .12em;
  font-size: calc(var(--bsize) * .11); color: rgba(255,255,255,.7);
}
.badge.on-light { background: var(--paper); color: var(--ink); border-color: var(--ink); }
.badge.on-light .badge-est { color: var(--muted); }

.logo-lockup { display: flex; align-items: center; gap: 13px; }
.logo-word { line-height: 1.05; }
.logo-name {
  font-family: var(--font-display); font-weight: 900; font-size: 1.34rem;
  letter-spacing: -0.02em; display: block;
}
.logo-tag {
  font-family: var(--font-sans); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  font-size: 0.62rem; color: var(--accent); margin-top: 4px; display: block;
}

/* ============================================================
   UTILITY BAR — quiet info strip
   ============================================================ */
.utilbar {
  background: var(--ink);
  color: rgba(255,255,255,.72);
}
.util-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 42px; gap: 24px;
}
.util-left { display: flex; align-items: center; gap: 26px; min-width: 0; }
.util-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 500; font-size: 0.8rem;
  letter-spacing: 0.01em; color: rgba(255,255,255,.72); white-space: nowrap;
}
.util-item svg { width: 15px; height: 15px; flex: none; color: var(--lime); }
.util-sep { display: none; }

/* service-area dropdown */
.util-area { position: relative; }
.util-area-trigger { cursor: pointer; transition: color .15s ease; gap: 10px; }
.util-area:hover .util-area-trigger, .util-area:focus-within .util-area-trigger { color: #fff; }
.util-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.02em; color: var(--lime);
  background: rgba(198,255,61,.12);
  border: 1px solid rgba(198,255,61,.32);
  padding: 4px 9px 4px 11px; border-radius: 999px;
  transition: background .18s ease, border-color .18s ease;
}
.util-pill .util-chev { width: 13px; height: 13px; color: var(--lime); transition: transform .22s ease; }
.util-area:hover .util-pill, .util-area:focus-within .util-pill { background: rgba(198,255,61,.2); border-color: rgba(198,255,61,.5); }
.util-area:hover .util-pill .util-chev, .util-area:focus-within .util-pill .util-chev { transform: rotate(180deg); }
.util-area-pop {
  position: absolute; top: calc(100% + 8px); left: -14px; z-index: 80;
  min-width: 540px; width: max-content;
  background: var(--paper); color: var(--ink);
  border-radius: 14px; padding: 18px 24px 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.util-area:hover .util-area-pop, .util-area:focus-within .util-area-pop { opacity: 1; visibility: visible; transform: translateY(0); }
.util-area-pop::before {
  content: ""; position: absolute; top: -6px; left: 28px; width: 12px; height: 12px;
  background: var(--paper); transform: rotate(45deg); border-radius: 2px;
}
.uap-head, .uap-foot {
  display: block; font-family: var(--font-sans); font-weight: 700;
  font-size: 0.66rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--accent-2);
}
.uap-foot { color: var(--muted); font-weight: 500; letter-spacing: .02em; text-transform: none; margin-top: 10px; font-size: 0.78rem; }
.uap-grid { display: grid; grid-template-columns: repeat(3, max-content); gap: 10px 28px; margin-top: 12px; }
.uap-grid span {
  font-family: var(--font-sans); font-weight: 500; font-size: 0.86rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: 7px;
  white-space: nowrap;
}
.uap-grid span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--lime); flex: none; }
.uap-grid .uap-more { color: var(--muted); font-style: italic; }
.uap-grid .uap-more::before { background: var(--muted); }

.util-phone {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.82rem; color: #fff;
  transition: color .15s ease;
}
.util-phone svg { width: 15px; height: 15px; color: var(--lime); }
.util-phone:hover { color: var(--lime); }
.up-label { color: rgba(255,255,255,.55); font-weight: 500; }
.up-num { color: #fff; }

@media (max-width: 1040px) { .util-h3 { display: none; } }
@media (max-width: 860px)  { .util-h2 { display: none; } }
@media (max-width: 600px)  {
  .util-left { display: none; }
  .util-row { justify-content: center; }
  .up-label { display: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(252,252,250,.8);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.topbar.scrolled { box-shadow: var(--shadow-sm); border-color: var(--hairline); background: rgba(252,252,250,.94); }
.topbar .wrap { padding-inline: clamp(16px, 4vw, 40px); }
.nav { display: flex; align-items: center; gap: 40px; height: 78px; transition: height .25s ease; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand-logo { height: 46px; width: auto; display: block; transition: height .25s ease; }
.topbar.scrolled .nav { height: 66px; }
.topbar.scrolled .brand-logo { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-sans); font-weight: 500; letter-spacing: 0;
  font-size: 0.98rem; color: var(--ink-soft); position: relative; padding: 4px 0;
  transition: color .18s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--lime); border-radius: 2px;
  transform: scaleX(0); transform-origin: left center;
  transition: transform .26s cubic-bezier(.2,.7,.2,1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; background: var(--ink); color: var(--paper);
  border: none; border-radius: var(--radius-sm); width: 46px; height: 46px;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70; background: var(--base);
  display: flex; flex-direction: column; padding: 24px var(--gutter);
  transform: translateY(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1); visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; }
.brand-logo-mobile { height: 44px; width: auto; }
.footer-logo { height: 58px; width: auto; display: block; }
.why-logo { position: absolute; left: 50%; transform: translateX(-50%); bottom: 28px; width: 280px; height: auto; filter: drop-shadow(0 14px 30px rgba(10,11,26,.6)); z-index: 2; }
.hero-c-floatlogo { position: absolute; left: 24px; bottom: 22px; z-index: 3; width: 260px; height: auto; filter: drop-shadow(0 14px 30px rgba(10,11,26,.45)); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 2px; margin-top: 28px; }
.mobile-menu nav a {
  font-family: var(--font-display); font-weight: 900; font-size: 1.9rem; letter-spacing: -.02em;
  padding: 13px 0; border-bottom: 1px solid var(--hairline);
}
.mobile-menu .mm-group { border-bottom: 1px solid var(--hairline); }
.mobile-menu .mm-group summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 900; font-size: 1.9rem; letter-spacing: -.02em;
  padding: 13px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu .mm-group summary::-webkit-details-marker { display: none; }
.mobile-menu .mm-group summary::after {
  content: ""; width: 14px; height: 14px;
  border-right: 2.5px solid currentColor; border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg); transition: transform .25s ease;
}
.mobile-menu .mm-group[open] summary::after { transform: rotate(-135deg); margin-top: 8px; }
.mobile-menu .mm-sub { display: flex; flex-direction: column; padding: 0 0 14px 16px; }
.mobile-menu .mm-sub a {
  font-family: var(--font-sans); font-weight: 600; font-size: 1.05rem; letter-spacing: 0;
  padding: 10px 0; border-bottom: none; color: var(--ink-soft);
}
.mobile-menu .mm-sub a:hover { color: var(--ink); }
.mobile-menu .btn { margin-top: 26px; width: 100%; }
.mobile-menu .mobile-phone { margin-top: 22px; display: inline-flex; align-items: center; gap: 12px; }
.mobile-menu .mobile-phone svg { width: 26px; height: 26px; color: var(--ink); }
.mobile-menu .mobile-phone .mp-label { display: block; font-family: var(--font-sans); font-weight: 500; font-size: 0.78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.mobile-menu .mobile-phone .mp-num { display: block; font-family: var(--font-display); font-weight: 900; font-size: 1.6rem; letter-spacing: -.01em; color: var(--ink); }
[data-heading="sans"] .mobile-menu .mobile-phone .mp-num { font-family: var(--font-sans); font-weight: 800; }

/* ============================================================
   HERO — three switchable directions
   ============================================================ */
.hero { overflow: clip; }
.hero-variant { display: none; }
[data-hero="a"] .hero-a,
[data-hero="b"] .hero-b,
[data-hero="c"] .hero-c { display: block; }

.hero h1 { font-size: clamp(2.9rem, calc(6.8vw * var(--scale)), 6rem); }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-trust { margin-top: 30px; display: inline-flex; align-items: center; gap: 13px; font-size: 0.96rem; color: var(--muted); }
.hero-trust .stars { color: var(--pink); letter-spacing: 2px; font-size: 1rem; }

/* Variant A — Editorial split */
.hero-a .hero-a-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 4vw, 70px);
  align-items: center; padding-block: clamp(56px, 7vw, 104px);
}
.hero-a .ph { aspect-ratio: 4/5; height: 100%; min-height: 440px; border-radius: var(--radius-lg); }
.hero-a .hero-eyebrow { margin-bottom: 26px; }
.hero-a h1 { margin-bottom: 24px; }

/* Variant B — Signage overlay (full-bleed photo) */
.hero-b .hero-b-stage {
  position: relative; min-height: clamp(560px, 78vh, 800px);
  display: grid; place-items: center; text-align: center; overflow: hidden;
}
.hero-b .hero-b-photo { position: absolute; inset: 0; border-radius: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-b .hero-b-photo.ph { background-color: #211D2B; background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.04) 0 13px, rgba(255,255,255,0) 13px 26px); }
.hero-b .hero-b-photo.ph::after { background: rgba(15,13,21,.6); color: #B7B4BE; border-color: rgba(183,180,190,.26); }
.hero-b .hero-b-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,13,21,.5) 0%, rgba(15,13,21,.34) 42%, rgba(15,13,21,.76) 100%); }
.hero-b .hero-b-inner { position: relative; z-index: 2; max-width: 940px; padding: 60px var(--gutter); color: var(--paper); }
.hero-b h1 { margin: 20px 0 18px; font-weight: 700; font-size: clamp(2.3rem, calc(5vw * var(--scale)), 4.1rem); color: var(--paper); line-height: 1.08; letter-spacing: -0.02em; max-width: 20ch; margin-inline: auto; }
.hero-b h1 .hl { font-style: italic; font-weight: 600; color: var(--lime); letter-spacing: -0.01em; }
.lede-mobile { display: none; }
.hero-b .lede { color: rgba(255,255,255,.9); font-weight: 500; }
.hero-b .hero-cta-row { justify-content: center; }
.hero-b .hero-trust { justify-content: center; color: rgba(255,255,255,.78); }
.hero-b .btn-primary { background: var(--paper); color: var(--ink); }
.hero-b .btn-primary:hover { background: var(--accent); color: var(--on-accent); }
/* frosted credential bar layered on the photo */
.hero-b-stats {
  margin-top: 34px; display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 14px; border-radius: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}
.hb-cred {
  display: inline-flex; align-items: center; gap: 9px; padding: 0 16px;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.86rem;
  letter-spacing: .01em; color: #fff; white-space: nowrap;
}
.hb-cred svg { width: 18px; height: 18px; flex: none; color: var(--lime); }
.hb-div { width: 1px; align-self: stretch; background: rgba(255,255,255,.2); margin: 2px 0; }
@media (max-width: 760px) {
  .hero-b-stats { flex-direction: column; align-items: stretch; gap: 0; padding: 6px 18px; }
  .hb-cred { padding: 10px 0; justify-content: flex-start; }
  .hb-div { width: auto; height: 1px; margin: 0; }
}

/* Variant C — Ink block */
.hero-c .hero-c-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; align-items: stretch;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  margin-block: clamp(40px, 4.5vw, 72px); background: var(--ink);
}
.hero-c .hero-c-text {
  background: var(--ink); color: var(--paper); padding: clamp(42px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-c .hero-c-text h1 { color: var(--paper); margin: 24px 0; }
.hero-c .hero-c-text .lede { color: rgba(255,255,255,.74); }
.hero-c .hero-c-media { position: relative; min-height: 480px; }
.hero-c .hero-c-media .ph { position: absolute; inset: 0; border-radius: 0; }
.hero-c .hero-c-floatbadge { position: absolute; left: -34px; bottom: 38px; z-index: 3; --bsize: 96px; box-shadow: var(--shadow-lg); }
.hero-c .hero-c-floatbadge .badge-mark-svg { width: 38%; height: 38%; }
.hero-c .hero-trust { color: rgba(255,255,255,.66); }

/* ============================================================
   RES / COMM SPLIT
   ============================================================ */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.path-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); min-height: 380px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 40px;
  color: var(--paper); isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}
.path-card .ph { position: absolute; inset: 0; z-index: -2; border-radius: 0; }
.path-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,13,21,.1) 22%, rgba(15,13,21,.86) 100%); }
.path-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.path-card h3 { font-family: var(--font-display); font-weight: 900; font-size: 2.1rem; margin: 0 0 10px; letter-spacing: -.02em; }
[data-heading="sans"] .path-card h3 { font-family: var(--font-sans); font-weight: 800; }
.path-card p { margin: 0 0 20px; color: rgba(255,255,255,.86); max-width: 40ch; font-weight: 500; }
.path-card .eyebrow { margin-bottom: 16px; align-self: flex-start; }
.path-card .link-arrow { color: var(--paper); }
.path-card .link-arrow svg { color: var(--paper); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { background: var(--paper); border-block: 1px solid var(--hairline); }
/* ============================================================
   TRUST MARQUEE — rotating credentials strip
   ============================================================ */
.trust-marquee {
  background: var(--paper);
  border-block: 1px solid var(--hairline);
  overflow: hidden;
  position: relative;
}
.trust-marquee::before,
.trust-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.trust-marquee::before { left: 0; background: linear-gradient(90deg, var(--paper), rgba(255,255,255,0)); }
.trust-marquee::after { right: 0; background: linear-gradient(270deg, var(--paper), rgba(255,255,255,0)); }
.tm-track {
  display: flex; align-items: center; width: max-content;
  padding-block: 42px;
  animation: tm-marquee 60s linear infinite;
}
.trust-marquee:hover .tm-track { animation-play-state: paused; }
.tm-group {
  display: inline-flex; align-items: center; gap: clamp(28px, 4vw, 48px); padding-right: clamp(28px, 4vw, 48px);
}
.tm-item {
  display: inline-flex; align-items: center; gap: 13px; white-space: nowrap;
  font-family: var(--font-sans); font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  font-size: .9rem; color: var(--ink-soft);
}
.tm-item svg { width: 26px; height: 26px; flex: none; color: var(--ink); }
.tm-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--hairline-strong); flex: none; }
@keyframes tm-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .tm-track { animation: none; } }
@media (max-width: 560px) {
  .trust-marquee::before, .trust-marquee::after { width: 36px; }
  .tm-track { padding-block: 30px; animation-duration: 45s; }
  .tm-item { font-size: .78rem; gap: 10px; }
  .tm-item svg { width: 20px; height: 20px; }
  .tm-group { gap: 24px; padding-right: 24px; }
}
.trust-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; padding-block: 38px; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 13px; }
.trust-item .ic { width: 38px; height: 38px; color: var(--ink); display: grid; place-items: center; }
.trust-item .ic svg { width: 100%; height: 100%; }
.trust-item span {
  font-family: var(--font-sans); font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  font-size: .76rem; line-height: 1.25; color: var(--ink-soft);
}

/* ============================================================
   SERVICES GRID — bright icon tiles
   ============================================================ */
.services-head { display: flex; flex-direction: column; align-items: flex-start; gap: 0; margin-bottom: 52px; }
.services-head .eyebrow { margin-bottom: 0; }
.services-head h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 22ch; }
.services-head .lede { max-width: 64ch; margin: 18px 0 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card { text-decoration: none; color: inherit;
  background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 0; overflow: hidden; display: flex; flex-direction: column; height: 100%;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-photo { width: 100%; aspect-ratio: 16 / 9; border-radius: 0; flex: none; object-fit: cover; display: block; }
.svc-body { padding: 0 30px 32px; display: flex; flex-direction: column; flex: 1; }
.svc-ic {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  display: grid; place-items: center; margin: -30px 0 18px;
  position: relative; z-index: 2; border: 3px solid var(--paper); box-shadow: var(--shadow-sm);
  transition: transform .22s ease;
}
.svc-ic svg { width: 28px; height: 28px; }
.svc-card:hover .svc-ic { transform: rotate(-6deg) scale(1.05); }
.svc-card:nth-child(1) .svc-ic { background: var(--lime);   color: var(--ink); }
.svc-card:nth-child(2) .svc-ic { background: var(--pink);   color: #fff; }
.svc-card:nth-child(3) .svc-ic { background: var(--cyan);   color: var(--ink); }
.svc-card:nth-child(4) .svc-ic { background: var(--lime);   color: var(--ink); }
.svc-card:nth-child(5) .svc-ic { background: var(--pink);   color: #fff; }
.svc-card:nth-child(6) .svc-ic { background: var(--cyan);   color: var(--ink); }
.svc-card h3 { font-family: var(--font-display); font-weight: 900; font-size: 1.55rem; margin: 0 0 10px; letter-spacing: -.02em; }
[data-heading="sans"] .svc-card h3 { font-family: var(--font-sans); font-weight: 800; }
.svc-card p { margin: 0; color: var(--muted); font-size: 1rem; font-weight: 500; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.svc-tag {
  display: inline-block; margin-bottom: 16px;
  font-family: var(--font-sans); font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  font-size: .68rem; color: var(--accent-2);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why { background: var(--ink); color: var(--paper); }
.why .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,80px); align-items: center; }
.why h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--paper); margin: 0 0 30px; }
.why .btn-primary { background: var(--paper); color: var(--ink); }
.why .btn-primary:hover { background: var(--accent); color: var(--on-accent); }
.why-points { display: flex; flex-direction: column; gap: 26px; margin-top: 24px; }
.why-point { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.why-point .ic { width: 46px; height: 46px; border-radius: var(--radius-sm); flex: none; display: grid; place-items: center; }
.why-point:nth-child(1) .ic { background: var(--lime);   color: var(--ink); }
.why-point:nth-child(2) .ic { background: var(--cyan);   color: var(--ink); }
.why-point:nth-child(3) .ic { background: var(--pink); color: #fff; }
.why-point .ic svg { width: 22px; height: 22px; }
.why-point h4 { font-family: var(--font-display); font-weight: 900; font-size: 1.3rem; margin: 1px 0 6px; color: var(--paper); letter-spacing: -.015em; }
[data-heading="sans"] .why-point h4 { font-family: var(--font-sans); font-weight: 800; }
.why-point p { margin: 0; color: rgba(255,255,255,.68); font-size: 1rem; font-weight: 500; }
.why-media { position: relative; }
.why-media .ph { aspect-ratio: 4/5; border-radius: var(--radius-lg); }
.why-photo { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.why-media .badge { position: absolute; right: -22px; top: -22px; --bsize: 104px; box-shadow: var(--shadow-lg); background: var(--paper); color: var(--ink); border-color: var(--paper); }
.why-media .badge .badge-est { color: var(--muted); }
.why-media .badge .badge-mark-svg { width: 38%; height: 38%; }

/* ============================================================
   STAT BAND — lime pop
   ============================================================ */
.stats { background: var(--lime); }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: clamp(54px,6vw,84px); }
.stat { text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -12px; top: 18%; bottom: 18%; width: 2px; background: rgba(22,19,31,.16); }
.stat .num { font-family: var(--font-display); font-weight: 900; font-size: clamp(3rem, 6.2vw, 4.8rem); line-height: .9; letter-spacing: -.03em; color: var(--ink); }
[data-heading="sans"] .stat .num { font-family: var(--font-sans); font-weight: 800; }
.stat .num span { color: var(--ink); }
.stat .lab { font-family: var(--font-sans); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; margin-top: 14px; color: var(--ink); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-head { text-align: center; margin-bottom: 54px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.reviews-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 36px 34px; display: flex; flex-direction: column; gap: 18px;
  transition: box-shadow .22s ease, transform .22s ease;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-card .stars { color: var(--pink); letter-spacing: 3px; font-size: 1rem; }
.review-card blockquote { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 1.34rem; line-height: 1.36; letter-spacing: -.01em; color: var(--ink); }
.review-card .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.review-card .who .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; color: #fff; }
.review-card:nth-child(1) .who .av { background: var(--lime); color: var(--ink); }
.review-card:nth-child(2) .who .av { background: var(--pink); }
.review-card:nth-child(3) .who .av { background: var(--cyan); color: var(--ink); }
.review-card .who .nm { font-weight: 700; font-size: .98rem; }
.review-card .who .lo { font-size: .86rem; color: var(--muted); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.gallery-head .eyebrow { margin-bottom: 0; }
.gallery-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid .ph { width: 100%; height: 100%; border-radius: var(--radius); transition: transform .3s ease; }
.gallery-grid .ph:hover { transform: scale(1.012); }
.gallery-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); display: block; transition: transform .3s ease; }
.gallery-photo:hover { transform: scale(1.012); }
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area { background: var(--paper); border-block: 1px solid var(--hairline); }
.area .wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px,5vw,68px); align-items: end; }
.area h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 18px; }
.area-states { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.area-state { display: flex; align-items: center; gap: 16px; background: var(--base); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 18px 22px; }
.area-state .pin { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; flex: none; color: #fff; }
.area-state:nth-child(1) .pin { background: var(--pink); }
.area-state:nth-child(2) .pin { background: var(--lime); color: var(--ink); }
.area-state:nth-child(3) .pin { background: var(--cyan); color: var(--ink); }
.area-state .pin svg { width: 19px; height: 19px; }
.area-state b { font-family: var(--font-display); font-weight: 900; font-size: 1.2rem; letter-spacing: -.01em; }
[data-heading="sans"] .area-state b { font-family: var(--font-sans); font-weight: 800; }
.area-state span { color: var(--muted); font-size: .92rem; font-weight: 500; display: block; }
.area-map .ph { aspect-ratio: 5/4; border-radius: var(--radius-lg); }
.area-map-iframe { width: 100%; aspect-ratio: 5/4; border: 0; border-radius: var(--radius-lg); display: block; }

/* ============================================================
   ESTIMATE CTA BAND
   ============================================================ */
.estimate { background: var(--ink); color: var(--paper); }
.estimate .wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px,5vw,76px); align-items: center; }
.estimate h2 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); color: var(--paper); margin: 0 0 18px; }
.estimate > .wrap > .reveal > p { color: rgba(255,255,255,.72); max-width: 44ch; }
.estimate-form { background: var(--paper); color: var(--ink); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-sans); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1.02rem; padding: 15px 16px; border-radius: var(--radius-sm);
  border: 2px solid var(--hairline-strong); background: var(--paper); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: #A8A59C; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 26%, transparent); }
.field.error input, .field.error select { border-color: var(--pink); }
.field .err-msg { font-size: .8rem; color: var(--pink); display: none; }
.field.error .err-msg { display: block; }
.estimate-form .btn { width: 100%; margin-top: 6px; }
.estimate-form .form-note, .form-note { font-size: .82rem; color: var(--ink); text-align: center; margin: 14px 0 0; }
.form-note svg { color: var(--turq-ink, var(--ink-soft)); }

/* call box (left column) */
.estimate-or { display: flex; align-items: center; gap: 14px; margin: 32px 0 18px; color: rgba(255,255,255,.5); }
.estimate-or::before, .estimate-or::after { content: ""; height: 1px; flex: 1; background: rgba(255,255,255,.16); }
.estimate-or span { font-family: var(--font-sans); font-weight: 600; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.estimate-callbox {
  display: flex; align-items: center; gap: 20px; width: 100%;
  padding: 22px 26px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.estimate-callbox:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.24); }
.ecb-ic { width: 52px; height: 52px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--lime); color: var(--ink); }
.ecb-ic svg { width: 23px; height: 23px; }
.ecb-text { display: flex; flex-direction: column; gap: 5px; line-height: 1.2; }
.ecb-label { font-family: var(--font-sans); font-weight: 500; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.ecb-num { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #fff; letter-spacing: -.01em; }
.ecb-arrow { width: 22px; height: 22px; color: rgba(255,255,255,.45); margin-left: auto; flex: none; transition: transform .2s ease, color .2s ease; }
.estimate-callbox:hover .ecb-arrow { transform: translateX(4px); color: var(--lime); }

/* optional-fields accordion */
.form-more-toggle {
  width: 100%; margin-top: 16px; display: flex; align-items: center; gap: 10px;
  background: var(--base); border: 1.5px dashed var(--hairline-strong); border-radius: var(--radius-sm);
  padding: 13px 16px; cursor: pointer;
  font-family: var(--font-sans); font-weight: 600; font-size: .92rem; color: var(--ink-soft);
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.form-more-toggle:hover { border-color: var(--accent); color: var(--ink); }
.form-more-toggle > span:first-child { margin-right: auto; }
.fmt-tag { font-weight: 600; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); background: var(--stone); padding: 3px 8px; border-radius: 999px; }
.fmt-chev { width: 18px; height: 18px; transition: transform .25s ease; }
.form-more-toggle[aria-expanded="true"] .fmt-chev { transform: rotate(180deg); }
.form-more { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.form-more.open { grid-template-rows: 1fr; }
.form-more-inner { overflow: hidden; }
.form-more .form-grid { padding-top: 16px; }

/* photos → text us (free-tier friendly) */
.photo-text-note {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  border: 2px solid var(--hairline-strong); background: var(--base);
  transition: border-color .15s ease, background .15s ease;
}
.photo-text-note:hover { border-color: var(--accent); background: var(--paper); }
.photo-text-note svg { width: 22px; height: 22px; color: var(--accent); flex: none; }
.ptn-text { font-family: var(--font-body); font-size: .94rem; color: var(--ink-soft); font-weight: 500; }
.ptn-text strong { color: var(--ink); font-weight: 700; white-space: nowrap; }
.ptn-text em { color: var(--muted); font-style: normal; font-size: .86rem; }
.form-success { display: none; text-align: center; padding: 34px 10px; }
.form-success.show { display: block; }
.form-success .ok { width: 60px; height: 60px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success h3 { font-family: var(--font-display); font-weight: 900; font-size: 1.6rem; margin: 0 0 8px; letter-spacing: -.02em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.64); padding-top: clamp(60px,7vw,94px); }
.footer-top { display: grid; grid-template-columns: 1.3fr 1.2fr 0.8fr 1.3fr; gap: 40px; padding-bottom: 54px; }
.footer-services-text { margin: 0 0 16px; font-size: .96rem; line-height: 1.65; color: rgba(255,255,255,.64); }
.footer-services-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-sans); font-weight: 600; font-size: .86rem; color: var(--lime); transition: gap .15s ease; }
.footer-services-link:hover { gap: 11px; }
.footer-hours { display: flex; align-items: flex-start; gap: 11px; margin-top: 22px; font-size: .92rem; line-height: 1.5; color: rgba(255,255,255,.7); }
.footer-hours svg { width: 18px; height: 18px; color: var(--lime); flex: none; margin-top: 2px; }
.footer-hours b { color: #fff; font-weight: 600; }
.footer .badge { --bsize: 60px; background: var(--paper); color: var(--ink); border-color: var(--paper); }
.footer .badge .badge-est { color: var(--muted); }
.footer .logo-name { color: var(--paper); }
.footer-brand p { margin: 22px 0 0; max-width: 34ch; font-size: .96rem; line-height: 1.6; }
.footer h5 { font-family: var(--font-sans); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; color: rgba(255,255,255,.5); margin: 4px 0 20px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: .98rem; transition: color .15s ease; }
.footer ul a:hover { color: var(--lime); }
.footer-contact-item { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; margin-bottom: 14px; color: rgba(255,255,255,.78); transition: color .15s ease; }
.footer-contact-item:hover { color: #fff; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--lime); flex: none; margin-top: 3px; }
.footer-contact-item span { white-space: nowrap; }
.footer-contact-item span br { white-space: normal; }
.footer-map { margin-top: 18px; }
.footer-map .ph { aspect-ratio: 16/8; border-radius: var(--radius); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 28px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: .86rem; }
.footer-bottom .lic { color: rgba(255,255,255,.42); }

/* ============================================================
   REVEAL ANIM
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { margin-left: auto; }
}
@media (max-width: 560px) {
  .nav-cta .btn-primary { display: none; }
}
@media (max-width: 1000px) {
  .hero-a .hero-a-grid { grid-template-columns: 1fr; }
  .hero-a .ph { min-height: 320px; aspect-ratio: 16/10; order: -1; }
  .hero-c .hero-c-grid { grid-template-columns: 1fr; }
  .hero-c .hero-c-media { min-height: 320px; order: -1; }
  .hero-c .hero-c-floatbadge { left: auto; right: 24px; bottom: -30px; --bsize: 84px; }
  .split-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .why .wrap { grid-template-columns: 1fr; }
  .why-media { max-width: 460px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 44px 24px; }
  .stat:nth-child(3)::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .area .wrap { grid-template-columns: 1fr; }
  .estimate .wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 40px; }
  .footer-brand, .footer-contact { grid-column: span 2; }
  .footer-contact .footer-map { max-width: 420px; }
  /* Section headers + subtitles use the full content width on mobile/tablet */
  .display, .lede { text-wrap: wrap; }
  .services-head h2, .split-head h2, .reviews-head h2, .gallery-head h2, .faq-head h2,
  .area h2, .why h2, .storm h2, .estimate h2, .process-aside h2 { max-width: none; font-size: clamp(1.7rem, 6vw, 2.6rem); }
  .services-head .lede, .estimate p, .estimate .lede, .why p, .storm .lede, .area .lede, .split-head .lede, .process-aside .lede { max-width: none; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .eyebrow { font-size: 0.62rem; padding: 7px 12px; letter-spacing: 0.1em; }
  .hero-b .eyebrow { font-size: 0.66rem; padding: 8px 14px; }
  .hero-b h1 { font-size: clamp(1.9rem, 7.5vw, 2.5rem); max-width: 22ch; }
  .hero-b h1 br { display: none; }
  .hero-b .lede { font-size: 18px; line-height: 1.5; }
  .lede-desktop { display: none; }
  .lede-mobile { display: inline; }
  .nav { height: 72px; }
  .brand-logo { height: 40px; }
  .topbar.scrolled .nav { height: 64px; }
  .topbar.scrolled .brand-logo { height: 34px; }
  .footer-logo { height: 46px; }
  .why-logo { width: 240px; bottom: -20px; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .g-wide { grid-column: span 2; }
  .hero-c .hero-c-floatbadge { display: none; }
}


/* ============================================================
   UPGRADE: split head, bigger cards, storm, process, faq, seo
   ============================================================ */
.split-head { text-align: left; max-width: none; margin: 0 0 46px; }
.split-head h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: none; }
.split-grid .path-card { min-height: 460px; padding: 46px; }
.path-card h3 { font-size: 2.6rem; }
.path-card p { font-size: 1.05rem; }

/* Storm & Insurance */
.storm { background: var(--base); }
.storm-grid { display: grid; grid-template-columns: 1.08fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.storm h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 18px; }
.storm-list { list-style: none; margin: 26px 0 32px; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.storm-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 1.04rem; color: var(--ink-soft); font-weight: 500; }
.storm-list svg { width: 22px; height: 22px; flex: none; color: var(--accent-2); margin-top: 1px; }
.storm-media { position: relative; }
.storm-media .ph { aspect-ratio: 5/4; border-radius: var(--radius-lg); width: 100%; height: 100%; object-fit: cover; display: block; }
.storm-badge { position: absolute; left: 16px; bottom: 16px; background: var(--accent); color: var(--on-accent); font-family: var(--font-sans); font-weight: 700; font-size: .82rem; letter-spacing: .04em; padding: 11px 18px; border-radius: 999px; box-shadow: var(--shadow-md); }

/* Our Process */
.process { background: var(--ink); border-block: 1px solid var(--ink); color: #fff; }
.process-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px,5vw,80px); align-items: start; }
.process-aside { position: sticky; top: 110px; }
.process-aside .eyebrow { margin-bottom: 18px; }
.process-aside h2 { color: #fff; font-size: clamp(2rem,4vw,3rem); }
.process-aside .lede { color: rgba(255,255,255,.72); margin-top: 16px; }
.process-photo { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); margin-top: 28px; display: block; }
.process-cta { display: flex; flex-wrap: nowrap; gap: 12px; margin-top: 26px; }
.process-cta .btn { flex: 1 1 0; min-width: 0; white-space: nowrap; padding: 14px 18px; }
.process-cta .btn-primary { background: var(--paper); color: var(--ink); }
.process-cta .btn-primary:hover { background: var(--accent); color: var(--on-accent); }
.process-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.process-cta .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 14px; bottom: 14px; width: 2px;
  background: linear-gradient(180deg, var(--lime), var(--cyan) 50%, var(--pink)); opacity: .55; }
.tl-step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 0 0 30px; align-items: start; }
.tl-step:last-child { padding-bottom: 0; }
.tl-node { width: 56px; height: 56px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.14); color: var(--lime);
  position: relative; z-index: 2; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.tl-node svg { width: 24px; height: 24px; }
.tl-step.tl-active .tl-node { border-color: var(--lime); box-shadow: 0 0 0 4px rgba(198,255,61,.14), 0 0 24px rgba(198,255,61,.35); transform: translateY(-2px); }
.tl-body { padding-top: 6px; }
.tl-n { font-family: var(--font-sans); font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); }
.tl-body h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin: 5px 0 7px; color: #fff; letter-spacing: -.01em; }
[data-heading="sans"] .tl-body h4 { font-family: var(--font-sans); font-weight: 700; }
.tl-body p { margin: 0; color: rgba(255,255,255,.66); font-size: 1rem; line-height: 1.55; max-width: 52ch; }

/* FAQ */
.faq { background: var(--paper); }
.faq-wrap { display: block; }
.faq-head { margin-bottom: 40px; text-align: center; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; background: none; border: none; cursor: pointer; text-align: left; padding: 22px 4px; font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--ink); letter-spacing: -.01em; }
.faq-chev { width: 22px; height: 22px; flex: none; color: var(--accent-2); transition: transform .25s ease; }
.faq-q[aria-expanded="true"] .faq-chev { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-a-inner { overflow: hidden; }
.faq-a.open { grid-template-rows: 1fr; }
.faq-a p { margin: 0 0 22px; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.6; max-width: 60ch; }

/* Footer fine-print SEO line */
.footer-seo { font-size: .76rem; line-height: 1.55; color: rgba(255,255,255,.32); margin: 0 0 30px; max-width: 100%; }

@media (max-width: 1000px) {
  .storm-grid { grid-template-columns: 1fr; }
  .storm-media { max-width: 520px; }
  .process-wrap { grid-template-columns: 1fr; }
  .process-aside { position: static; }
  .process-cta { flex-wrap: nowrap; gap: 10px; }
  .process-cta .btn { flex: 1 1 0; min-width: 0; padding: 13px 14px; font-size: 0.88rem; white-space: nowrap; }
  .faq-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .split-grid .path-card { min-height: 380px; padding: 32px; }
  .path-card h3 { font-size: 2.1rem; }
}

/* ============================================================
   SUB-PAGES: Residential / Commercial
   ============================================================ */
.page-hero { background: var(--ink); color: var(--paper); padding-block: clamp(54px,8vw,104px); position: relative; }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.1rem,4.8vw,3.7rem); line-height: 1.05; letter-spacing: -.02em; color: var(--paper); max-width: 20ch; margin: 0; text-wrap: balance; }
.page-hero .lede { color: rgba(255,255,255,.8); max-width: 64ch; margin: 22px 0 0; font-weight: 500; }
.page-hero .hero-cta-row { margin-top: 34px; }
.page-hero .btn-ghost { color: var(--paper); border-color: rgba(255,255,255,.3); }
.page-hero .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.page-crumb { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-weight: 600; font-size: .82rem; letter-spacing: .02em; color: rgba(255,255,255,.55); margin-bottom: 26px; }
.page-crumb a { color: rgba(255,255,255,.55); transition: color .15s ease; }
.page-crumb a:hover { color: var(--accent); }

.page-sub-head { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.page-sub-head h2 { font-size: clamp(1.9rem,4vw,3rem); }
.page-sub-head .lede { margin-top: 16px; }

.town-strip { background: var(--stone); border-block: 1px solid var(--hairline); }
.town-strip .wrap { text-align: center; }
.town-strip h2 { font-size: clamp(1.8rem,3.6vw,2.6rem); margin: 14px 0 10px; }
.town-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; max-width: 800px; margin-inline: auto; }
.town-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--paper); border: 1px solid var(--hairline); border-radius: 999px; padding: 11px 20px; font-family: var(--font-sans); font-weight: 600; font-size: .96rem; color: var(--ink); }
.town-chip svg { width: 15px; height: 15px; color: var(--accent-2); }

.page-cta { background: var(--accent); color: var(--on-accent); text-align: center; }
.page-cta h2 { font-size: clamp(2rem,4.4vw,3.2rem); color: var(--on-accent); margin: 0 0 14px; }
.page-cta p { color: var(--on-accent); opacity: .85; max-width: 46ch; margin: 0 auto 30px; font-weight: 500; }
.page-cta .btn-primary { background: var(--ink); color: #fff; }
.page-cta .btn-primary:hover { background: var(--ink-2); transform: translateY(-2px); }
@media (max-width: 560px) { .page-sub-head { text-align: left; } }

/* ============================================================
   NAV SERVICES DROPDOWN
   ============================================================ */
.nav-dd { position: relative; }
.nav-dd-trigger { font-family: var(--font-sans); font-weight: 500; font-size: .98rem; color: var(--ink-soft); background: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; padding: 4px 0; transition: color .15s ease; }
.nav-dd-trigger:hover, .nav-dd.open .nav-dd-trigger, .nav-dd:hover .nav-dd-trigger { color: var(--ink); }
.dd-chev { width: 14px; height: 14px; transition: transform .2s ease; }
.nav-dd:hover .dd-chev, .nav-dd.open .dd-chev { transform: rotate(180deg); }
.nav-dd-menu { position: absolute; top: 100%; left: -14px; padding-top: 14px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s ease, transform .18s ease, visibility .18s; z-index: 80; }
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu, .nav-dd.open .nav-dd-menu { opacity: 1; visibility: visible; transform: none; }
.nav-dd-inner { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 8px; min-width: 300px; }
.nav-dd-inner a { display: block; padding: 12px 14px; border-radius: var(--radius-sm); transition: background .15s ease; }
.nav-dd-inner a:hover { background: var(--stone); }
.nav-dd-inner a b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink); letter-spacing: -.01em; }
.nav-dd-inner a span { display: block; font-size: .84rem; color: var(--muted); margin-top: 2px; }
.nav-dd-inner .nav-dd-all { font-family: var(--font-sans); font-weight: 600; font-size: .9rem; color: var(--accent-2); border-top: 1px solid var(--hairline); margin-top: 6px; border-radius: 0; }
.nav-dd-inner .nav-dd-all:hover { background: var(--stone); }

/* sub-page hero split with photo */
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px,4vw,60px); align-items: center; margin-top: 10px; }
.page-hero-photo { width: 100%; height: 100%; max-height: 440px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
@media (max-width: 900px) { .page-hero-grid { grid-template-columns: 1fr; } .page-hero-photo { max-height: 280px; } }

/* ============================================================
   MEGA MENU (services dropdown, expanded)
   ============================================================ */
.nav-dd-inner.nav-dd-mega { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; min-width: 460px; }
.nav-dd-mega .ddm-col { display: flex; flex-direction: column; }
.nav-dd-mega .ddm-h { font-family: var(--font-sans); font-weight: 700; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding: 10px 14px 6px; }
.nav-dd-mega .ddm-col > a { padding: 8px 14px; }
.nav-dd-mega .ddm-col > a:not([class]) { font-family: var(--font-sans); font-weight: 600; font-size: .96rem; color: var(--ink-soft); }
.nav-dd-mega .ddm-col > a:not([class]):hover { color: var(--ink); }
.nav-dd-mega .nav-dd-all { grid-column: 1 / -1; text-align: center; }

/* ============================================================
   SERVICE / CONTENT PAGES
   ============================================================ */
.content-section { padding-block: clamp(56px,7vw,96px); }
.content-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(34px,5vw,72px); align-items: start; }
.content-grid.flip > .content-media { order: -1; }
@media (max-width: 860px) { .content-grid { grid-template-columns: 1fr; } .content-grid.flip > .content-media { order: 0; } }
.content-col h2 { font-size: clamp(1.9rem,4vw,2.9rem); margin: 14px 0 18px; }
.content-col .lede + .lede { margin-top: 16px; }
.content-media .ph { aspect-ratio: 4/3; border-radius: var(--radius-lg); width: 100%; }
.content-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* checklist */
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }
.check-list li { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start; font-size: 1.04rem; color: var(--ink-soft); }
.check-list li::before { content: ""; width: 26px; height: 26px; border-radius: 50%; background: var(--lime); flex: none; margin-top: 1px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/15px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/15px no-repeat;
  background-color: var(--ink); }
.check-list li b { color: var(--ink); font-weight: 700; }

/* materials / mini-card grid */
.mini-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 16px; margin-top: 8px; }
.mini-card { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 24px 22px; }
.mini-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; margin: 0 0 7px; letter-spacing: -.01em; }
.mini-card p { margin: 0; font-size: .96rem; color: var(--muted); }

/* Colorado note band */
.note-band { background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); padding: clamp(28px,4vw,48px); display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; }
.note-band .note-ic { width: 50px; height: 50px; border-radius: 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; flex: none; }
.note-band .note-ic svg { width: 26px; height: 26px; color: var(--lime); }
.note-band h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; margin: 2px 0 10px; color: var(--paper); }
.note-band p { margin: 0; color: rgba(255,255,255,.74); max-width: 70ch; }
@media (max-width: 560px) { .note-band { grid-template-columns: 1fr; } }

/* FAQ accordion (subpages — homepage overrides above) */
.page-hero ~ * .faq-wrap, .page-sub-head ~ .faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 0; display: flex; align-items: center; gap: 18px; font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; color: var(--ink); letter-spacing: -.01em; }
.faq-q .faq-chev { margin-left: auto; width: 22px; height: 22px; flex: none; color: var(--accent-2); transition: transform .25s ease; }
.faq-item.open .faq-q .faq-chev { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a p { margin: 0 0 24px; color: var(--ink-soft); font-size: 1.04rem; line-height: 1.6; max-width: 68ch; }

/* hub grid */
.hub-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 860px) { .hub-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .hub-grid { grid-template-columns: 1fr; } }
.hub-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 30px 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.hub-card .svc-ic { width: 52px; height: 52px; border-radius: var(--radius-sm); display: grid; place-items: center; margin-bottom: 20px; }
.hub-card:nth-child(1) .svc-ic { background: var(--lime); color: var(--ink); }
.hub-card:nth-child(2) .svc-ic { background: var(--pink); color: #fff; }
.hub-card:nth-child(3) .svc-ic { background: var(--cyan); color: var(--ink); }
.hub-card:nth-child(4) .svc-ic { background: var(--ink); color: var(--lime); }
.hub-card:nth-child(5) .svc-ic { background: var(--lime); color: var(--ink); }
.hub-card:nth-child(6) .svc-ic { background: var(--pink); color: #fff; }
.hub-card:nth-child(7) .svc-ic { background: var(--cyan); color: var(--ink); }
.hub-card:nth-child(8) .svc-ic { background: var(--ink); color: var(--lime); }
.hub-card:nth-child(9) .svc-ic { background: var(--lime); color: var(--ink); }
.hub-card .svc-ic svg { width: 26px; height: 26px; }
.hub-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin: 0 0 8px; letter-spacing: -.01em; }
.hub-card p { margin: 0 0 18px; color: var(--muted); font-size: .98rem; }
.hub-card .link-arrow { margin-top: auto; }

/* gallery page */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.gallery-filter button { font-family: var(--font-sans); font-weight: 600; font-size: .92rem; padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--hairline-strong); background: var(--paper); color: var(--ink-soft); cursor: pointer; transition: all .15s ease; }
.gallery-filter button:hover { border-color: var(--ink); color: var(--ink); }
.gallery-filter button.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.gallery-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 860px) { .gallery-page-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .gallery-page-grid { grid-template-columns: 1fr; } }
.gallery-page-grid .ph { aspect-ratio: 4/3; border-radius: var(--radius); }
.gallery-item.hide { display: none; }

/* reviews page */
.reviews-note { max-width: 720px; margin: 0 auto; text-align: center; background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: clamp(36px,5vw,64px); box-shadow: var(--shadow-sm); }
.reviews-note .note-badge { width: 64px; height: 64px; border-radius: 50%; background: var(--stone); display: grid; place-items: center; margin: 0 auto 22px; }
.reviews-note .note-badge svg { width: 30px; height: 30px; color: var(--accent-2); }

/* about values */
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 10px; }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { display: grid; grid-template-columns: auto 1fr; gap: 15px; align-items: start; background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 22px 24px; }
.value-card .v-num { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--accent-2); }

/* contact page split */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(34px,5vw,68px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--hairline); }
.contact-detail .cd-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--stone); display: grid; place-items: center; flex: none; }
.contact-detail .cd-ic svg { width: 21px; height: 21px; color: var(--accent-2); }
.contact-detail b { font-family: var(--font-sans); font-weight: 700; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 3px; }
.contact-detail .cd-val { font-size: 1.1rem; color: var(--ink); font-weight: 500; }

/* ============================================================
   RESIDENTIAL / COMMERCIAL long-form page extras
   ============================================================ */
/* three-color stripe divider */
.stripe-divider { height: 6px; background: linear-gradient(90deg, var(--lime) 0 33.34%, var(--cyan) 33.34% 66.67%, var(--pink) 66.67% 100%); }

/* numbered steps */
.steps { display: grid; gap: 16px; margin-top: 8px; max-width: 880px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 24px 26px; }
.step .step-n { width: 46px; height: 46px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; flex: none; }
.step h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; margin: 4px 0 6px; letter-spacing: -.01em; }
.step p { margin: 0; color: var(--ink-soft); font-size: 1.02rem; }

/* dark checklist (on ink sections) */
.check-list.on-dark li { color: rgba(255,255,255,.82); }
.check-list.on-dark li b { color: #fff; }
.check-list.on-dark li::before { background-color: var(--lime); }

/* dark callout */
.callout-dark { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: clamp(26px,4vw,40px); border-left: 5px solid var(--lime); margin-top: 28px; }
.callout-dark h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin: 0 0 8px; color: #fff; }
.callout-dark p { margin: 0; color: rgba(255,255,255,.78); max-width: 76ch; }

/* dark final CTA band */
.cta-dark { background: var(--ink); color: #fff; text-align: center; }
.cta-dark h2 { color: #fff; font-size: clamp(2rem,4.4vw,3.2rem); margin: 0 0 14px; }
.cta-dark p { color: rgba(255,255,255,.78); max-width: 52ch; margin: 0 auto 28px; }

/* dark services accent card */
.svc-card.dark { background: var(--ink); color: #fff; border-color: var(--ink); display: flex; flex-direction: column; justify-content: center; }
.svc-card.dark h3 { color: #fff; }
.svc-card.dark p { color: rgba(255,255,255,.74); }
.svc-card.dark .btn { margin-top: 18px; align-self: flex-start; }

/* section eyebrow centered helper already exists; light alt section */
.alt-light { background: var(--base); border-block: 1px solid var(--hairline); }

/* ============================================================
   ROOFING / service page — richer visuals
   ============================================================ */
/* material card with photo top */
.mat-card { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.mat-card .mat-photo { aspect-ratio: 3/2; width: 100%; }
.mat-card .mat-body { padding: 22px 22px 24px; }
.mat-card .mat-meta { display: block; font-family: var(--font-sans); font-weight: 700; font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 8px; }
.mat-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin: 0 0 7px; letter-spacing: -.01em; }
.mat-card p { margin: 0; font-size: .96rem; color: var(--muted); }

/* photo strip */
.photo-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.photo-strip .ph { aspect-ratio: 1/1; border-radius: var(--radius); }
.photo-strip .ph.wide { grid-column: span 2; aspect-ratio: 2/1; }
@media (max-width: 760px){ .photo-strip { grid-template-columns: repeat(2,1fr); } }

/* info card with small photo accent */
.info-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
@media (max-width: 860px){ .info-photo-grid { grid-template-columns: 1fr; } }
.info-photo-grid .content-media .ph { height: 100%; min-height: 280px; aspect-ratio: auto; }

/* section media placeholder sizing */
.content-media .ph { aspect-ratio: 4/3; }
.media-tall .ph { aspect-ratio: 3/4; }
/* ============================================================
   RESPONSIVE 50/50 SPLITS (replaced former inline grids, 2026-06-09)
   ============================================================ */
.split-5050 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,64px); align-items: center; }
@media (max-width: 860px) { .split-5050 { grid-template-columns: 1fr; } }
.points-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 40px; }
@media (max-width: 700px) { .points-2col { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .step { padding: 18px 16px; gap: 14px; }
  .step .step-n { width: 38px; height: 38px; font-size: 1.05rem; }
  .callout-dark { padding: 20px 18px; }
}
