/* ============================================================
   Taylor Roofing Company — homepage redesign
   Warm · precise · credible · personable
   ============================================================ */

:root {
  /* Color — warm, grounded, Georgia-clay */
  --ink:       #20272a;
  --ink-2:     #2b3438;
  --ink-3:     #3a4549;
  --paper:     #faf5ec;
  --sand:      #f1e7d6;
  --sand-2:    #e7dac4;
  --card:      #fffdf9;
  --muted:     #6a635a;
  --muted-2:   #8a8378;

  --accent:    #be4a2a;   /* Georgia clay */
  --accent-ink: color-mix(in srgb, var(--accent) 78%, #000);   /* pressed */
  --accent-soft: color-mix(in srgb, var(--accent) 13%, var(--paper));
  --pine:      #2f5d3f;   /* trust green */
  --pine-soft: #e2ece4;

  --line:      rgba(32,39,42,.12);
  --line-2:    rgba(32,39,42,.18);
  --line-cream:rgba(250,245,236,.16);

  /* Type */
  --font-display: 'Bricolage Grotesque', 'Archivo', system-ui, sans-serif;
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;
  --font-mono:    'Spline Sans Mono', ui-monospace, monospace;

  /* Shape */
  --radius:   14px;
  --radius-sm:9px;
  --radius-lg:22px;

  /* Elevation — warm shadows */
  --shadow-sm: 0 1px 2px rgba(40,28,16,.05), 0 4px 10px -6px rgba(40,28,16,.12);
  --shadow:    0 1px 2px rgba(40,28,16,.05), 0 14px 34px -16px rgba(40,28,16,.22);
  --shadow-lg: 0 2px 4px rgba(40,28,16,.06), 0 30px 60px -28px rgba(40,28,16,.30);

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);
}

/* headline-font tweak */
[data-headfont="archivo"]  { --font-display: 'Archivo', system-ui, sans-serif; }
[data-headfont="serif"]    { --font-display: 'Newsreader', Georgia, serif; }

/* radius tweak */
[data-radius="sharp"] { --radius: 3px; --radius-sm: 2px; --radius-lg: 5px; }
[data-radius="soft"]  { --radius: 20px; --radius-sm: 13px; --radius-lg: 30px; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }

/* ---- Type helpers ---- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  opacity: .6;
}
.eyebrow.center::before { display: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -.018em; margin: 0; }
.section-title { font-size: clamp(2rem, 4.2vw, 3.1rem); letter-spacing: -.025em; text-wrap: balance; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--muted); max-width: 56ch; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-body); font-weight: 600;
  font-size: 1rem; line-height: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: rgba(32,39,42,.05); transform: translateY(-2px); }
.btn-on-dark { color: #fff; border-color: var(--line-cream); }
.btn-on-dark:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: 1.12rem 1.8rem; font-size: 1.06rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(24,30,32,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-cream);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 11px; }
.logo-img { height: 46px; width: auto; transition: height .35s ease; }
.scrolled .logo-img { height: 38px; }
.footer-brand .logo-img { height: 54px; }
.logo-mark { width: 40px; height: 40px; border-radius: 9px; background: var(--accent); display: grid; place-items: center; flex: none; transition: width .35s, height .35s; box-shadow: var(--shadow-sm); }
.logo-mark svg { width: 24px; height: 24px; color: #fff; }
.scrolled .logo-mark { width: 34px; height: 34px; }
.scrolled .logo-mark svg { width: 20px; height: 20px; }
.logo-words { display: flex; flex-direction: column; line-height: 1; }
.logo-words b { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -.02em; color: #fff; }
.logo-words small { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .22em; color: rgba(255,255,255,.55); margin-top: 4px; text-transform: uppercase; }
.footer-brand .logo-words b { font-size: 1.4rem; }
.footer-brand .logo-words small { color: rgba(255,255,255,.5); }
.nav { display: flex; align-items: center; gap: 4px; margin-left: 12px; }
.nav a, .nav .nav-trigger {
  color: rgba(255,255,255,.86); font-weight: 500; font-size: .98rem;
  padding: 9px 14px; border-radius: 8px; background: none; border: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s, background .2s;
}
.nav a:hover, .nav .nav-trigger:hover { color: #fff; background: rgba(255,255,255,.08); }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.header-phone {
  color: #fff; font-family: var(--font-mono); font-weight: 500; font-size: .95rem;
  display: inline-flex; align-items: center; gap: 8px; letter-spacing: -.01em;
}
.header-phone svg { width: 16px; height: 16px; color: var(--accent); }
.header-phone .ph-label { color: rgba(255,255,255,.55); font-size: .68rem; text-transform: uppercase; letter-spacing: .15em; display:block; margin-bottom:1px; }

/* services dropdown */
.nav-item { position: relative; }
.mega {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--card); color: var(--ink);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 10px; width: 360px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav-item:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega a {
  color: var(--ink); font-size: .9rem; font-weight: 500; padding: 10px 12px; border-radius: 8px;
}
.mega a:hover { background: var(--accent-soft); color: var(--accent-ink); }

/* mobile nav */
.hamburger { display: none; margin-left: auto; background: none; border: none; color: #fff; padding: 8px; }
.hamburger svg { width: 28px; height: 28px; }
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; background: var(--ink);
  display: flex; flex-direction: column; padding: 24px var(--gut);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mobile-nav-top img { height: 42px; }
.mobile-nav-top button { background: none; border: none; color: #fff; padding: 8px; }
.mobile-nav-top svg { width: 30px; height: 30px; }
.mobile-nav a { color: #fff; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; padding: 14px 0; border-bottom: 1px solid var(--line-cream); }
.mobile-nav .m-sub { font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.7); padding: 10px 0 10px 18px; border: none; }
.mobile-nav .btn { margin-top: 24px; justify-content: center; }

/* ============================================================
   HERO — full-bleed photo, logo + headline on top
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  border-radius: 0; --is-bg: #232b2f;
}
.hero-fallback { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 85% at 100% -5%, rgba(190,74,42,.22), transparent 52%),
    radial-gradient(90% 70% at -10% 110%, rgba(47,93,63,.20), transparent 60%),
    var(--ink);
}
.hero-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(18,23,25,.72) 0%, rgba(18,23,25,.12) 24%, rgba(18,23,25,.30) 55%, rgba(16,21,23,.93) 100%),
    linear-gradient(82deg, rgba(16,21,23,.78) 0%, rgba(16,21,23,.15) 58%, transparent 80%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: clamp(120px, 16vh, 180px); padding-bottom: clamp(48px, 8vh, 92px); pointer-events: none; }
.hero-inner a, .hero-inner button { pointer-events: auto; }
.hero-content { max-width: 760px; }
.hero h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.4rem); line-height: .98; letter-spacing: -.03em;
  max-width: 14ch; margin: 18px 0 0; text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero h1 .accent-word { color: var(--accent); position: relative; white-space: nowrap; }
.hero h1 .accent-word::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .02em; height: .09em;
  background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  animation: underline 1s .5s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes underline { to { transform: scaleX(1); } }
.hero p.lead { color: rgba(255,255,255,.9); margin: 22px 0 30px; max-width: 50ch; text-shadow: 0 1px 16px rgba(0,0,0,.4); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px 10px; margin-top: 28px; }
.chip {
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .03em;
  color: rgba(255,255,255,.92); background: rgba(255,255,255,.1);
  border: 1px solid var(--line-cream); padding: 8px 13px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 7px; backdrop-filter: blur(5px);
}
.chip svg { width: 14px; height: 14px; color: var(--accent); }

.photo-badge {
  position: absolute; top: calc(clamp(120px, 16vh, 180px) + 4px); right: var(--gut); z-index: 3;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(20,25,27,.55); color: rgba(255,255,255,.92); padding: 7px 12px; border-radius: 100px;
  backdrop-filter: blur(6px); border: 1px solid var(--line-cream); display: inline-flex; gap: 7px; align-items: center; pointer-events: none;
}
.photo-badge svg { width: 13px; height: 13px; color: var(--accent); }

/* founder card — personable touch, floats bottom-right over hero */
.founder-card {
  position: absolute; right: var(--gut); bottom: clamp(48px, 8vh, 92px); z-index: 4;
  background: rgba(255,253,249,.97); color: var(--ink);
  border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-lg);
  max-width: 312px; backdrop-filter: blur(6px); border: 1px solid var(--line);
}
.founder-card .fc-top { display: flex; align-items: center; gap: 13px; }
.founder-avatar {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  background: var(--pine-soft); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: var(--pine); font-size: 1.2rem;
  box-shadow: 0 0 0 1px var(--line);
}
.founder-card .fc-name { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; }
.founder-card .fc-role { font-size: .8rem; color: var(--muted); }
.founder-card .fc-quote { margin: 13px 0 0; font-size: .92rem; color: var(--ink-2); line-height: 1.5; }
.founder-card .fc-sign { margin-top: 11px; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--pine); display: flex; align-items: center; gap: 7px; }

.scroll-cue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.55); display: flex; flex-direction: column; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .2em; }
.scroll-cue .dot { width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,.4); border-radius: 12px; position: relative; }
.scroll-cue .dot::after { content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 6px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.6s ease-in-out infinite; }
@keyframes scrolldot { 0%,100% { opacity: 0; transform: translate(-50%,0); } 50% { opacity: 1; transform: translate(-50%,8px); } }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section { position: relative; }
.section-pad { padding: clamp(72px, 9vw, 130px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .lead { margin-top: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---- Trust strip ---- */
.trust-strip { background: var(--ink); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 36px 30px; display: flex; gap: 16px; align-items: flex-start; border-right: 1px solid var(--line-cream); }
.trust-item:last-child { border-right: none; }
.trust-item .ti-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(190,74,42,.16); color: var(--accent); display: grid; place-items: center; flex: none; }
.trust-item .ti-icon svg { width: 22px; height: 22px; }
.trust-item h4 { font-size: 1.02rem; margin-bottom: 3px; }
.trust-item p { margin: 0; font-size: .86rem; color: rgba(255,255,255,.66); line-height: 1.45; }

/* ---- Services ---- */
.services { background: var(--paper); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card.svc-feature { grid-column: span 1; grid-row: span 2; background: var(--ink); color: #fff; }
.svc-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.svc-icon svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.32rem; }
.svc-card p { margin: 0; color: var(--muted); font-size: .96rem; flex: 1; }
.svc-link { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; font-weight: 500; }
.svc-link svg { width: 15px; height: 15px; transition: transform .2s; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

.svc-feature .svc-icon { background: rgba(190,74,42,.2); color: #fff; }
.svc-feature h3 { font-size: 1.7rem; margin-top: 4px; }
.svc-feature p { color: rgba(255,255,255,.72); }
.svc-feature .tag { display: inline-flex; align-self: flex-start; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); background: rgba(190,74,42,.18); padding: 6px 11px; border-radius: 100px; }
.svc-feature .svc-link { color: #fff; }

/* ---- Process ---- */
.process { background: var(--sand); }
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.proc-step { position: relative; padding-top: 28px; }
.proc-step .pnum {
  font-family: var(--font-mono); font-weight: 500; font-size: .8rem; letter-spacing: .1em;
  color: var(--accent); margin-bottom: 18px; display: flex; align-items: center; gap: 12px;
}
.proc-step .pnum::after { content: ""; height: 1px; flex: 1; background: var(--line-2); }
.proc-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--card); border: 1px solid var(--line); color: var(--accent); display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.proc-icon svg { width: 26px; height: 26px; }
.proc-step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.proc-step p { margin: 0; color: var(--muted); font-size: .93rem; }
.proc-connect { position: absolute; top: 55px; left: 0; right: 0; height: 1px; background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 12px); z-index: 0; }

/* ---- Why us ---- */
.why { background: var(--paper); }
.why-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.why-item { padding: 22px 0; border-top: 1px solid var(--line); }
.why-item .wi-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.why-item .wi-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--pine-soft); color: var(--pine); display: grid; place-items: center; flex: none; }
.why-item .wi-icon svg { width: 19px; height: 19px; }
.why-item h4 { font-size: 1.08rem; }
.why-item p { margin: 0; color: var(--muted); font-size: .92rem; }
.why-aside { position: sticky; top: 100px; }
.why-aside .stat-block { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.why-aside .eyebrow { color: var(--accent); }
.why-aside h2 { color: #fff; font-size: clamp(1.8rem,3vw,2.4rem); margin: 14px 0 16px; }
.why-aside p { color: rgba(255,255,255,.74); margin: 0 0 26px; }
.why-aside .mini-trust { display: flex; flex-direction: column; gap: 14px; border-top: 1px solid var(--line-cream); padding-top: 22px; }
.why-aside .mini-trust div { display: flex; align-items: center; gap: 12px; font-size: .92rem; color: rgba(255,255,255,.9); }
.why-aside .mini-trust svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* ---- Service area ---- */
.area { background: var(--ink); color: #fff; }
.area .section-title { color: #fff; }
.area .lead { color: rgba(255,255,255,.74); }

/* interactive county map */
.area-map-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.area-map { position: relative; }
.area-map svg { width: 100%; height: auto; display: block; overflow: visible; }
.river { fill: none; stroke: #5b8bb0; stroke-width: 2.5; stroke-linecap: round; opacity: .7; stroke-dasharray: 1 7; }
.river-label { fill: rgba(120,165,200,.7); font-family: var(--font-mono); font-size: 9px; letter-spacing: .18em; }
.county-shape {
  fill: var(--ink-2); stroke: rgba(255,255,255,.22); stroke-width: 1.5;
  cursor: pointer; transition: fill .22s ease, stroke .22s ease;
}
.county-shape:hover { fill: var(--ink-3); stroke: rgba(255,255,255,.4); }
.county-shape.active { fill: var(--accent); stroke: var(--accent); }
.county-shape:focus { outline: none; stroke: #fff; stroke-width: 2; }
.county-tag { cursor: pointer; }
.county-label { fill: rgba(255,255,255,.94); font-family: var(--font-display); font-weight: 700; font-size: 15px; pointer-events: none; }
.county-city { fill: rgba(255,255,255,.55); font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .08em; pointer-events: none; }
.county-tag.active .county-city { fill: rgba(255,255,255,.9); }
.hq-label { fill: #ffd9a0; font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; pointer-events: none; }
.map-hint { display: inline-flex; align-items: center; gap: 7px; margin-top: 4px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.map-hint svg { color: var(--accent); }

.area-panel { background: var(--ink-2); border: 1px solid var(--line-cream); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 38px); }
.ap-eyebrow { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.ap-name { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 2.6vw, 2.2rem); color: #fff; letter-spacing: -.02em; }
.ap-city { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; color: rgba(255,255,255,.78); font-weight: 600; }
.ap-city svg { color: var(--accent); }
.ap-note { color: rgba(255,255,255,.74); margin: 18px 0 22px; font-size: 1rem; line-height: 1.6; min-height: 4.8em; }
.ap-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ap-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line-cream); }
.ap-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .03em;
  color: rgba(255,255,255,.7); background: transparent;
  border: 1px solid var(--line-cream); padding: 7px 12px; border-radius: 100px; transition: all .2s ease;
}
.ap-chip:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.ap-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.area-cities { margin-top: 32px; text-align: center; font-size: .92rem; color: rgba(255,255,255,.6); }
.area-cities a { color: rgba(255,255,255,.85); border-bottom: 1px solid var(--line-cream); }
.area-cities a:hover { color: var(--accent); border-color: var(--accent); }

/* ---- Reviews ---- */
.reviews { background: var(--sand); }
.rev-note { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-top: 10px; display:flex; align-items:center; gap:8px; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rev-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.rev-stars { display: flex; gap: 3px; color: var(--accent); }
.rev-stars svg { width: 17px; height: 17px; }
.rev-card p { margin: 0; font-size: 1rem; color: var(--ink-2); flex: 1; line-height: 1.55; }
.rev-card .rev-by { display: flex; align-items: center; gap: 11px; }
.rev-card .rev-ava { width: 38px; height: 38px; border-radius: 50%; background: var(--pine-soft); color: var(--pine); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: .95rem; flex: none; }
.rev-card .rev-meta b { font-size: .92rem; display: block; }
.rev-card .rev-meta span { font-size: .78rem; color: var(--muted); }

/* ---- Contact / final CTA ---- */
.contact { background: var(--paper); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px,5vw,64px); }
.contact-info .section-title { font-size: clamp(2rem,3.6vw,2.9rem); }
.contact-points { margin-top: 32px; display: flex; flex-direction: column; gap: 4px; }
.cpoint { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); align-items: flex-start; }
.cpoint .cp-icon { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.cpoint .cp-icon svg { width: 21px; height: 21px; }
.cpoint .cp-label { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.cpoint .cp-val { font-size: 1.05rem; font-weight: 600; }
.cpoint .cp-val.small { font-size: .96rem; font-weight: 500; line-height: 1.5; }

.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px,3vw,40px); box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-card .fc-sub { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-2); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-family: inherit; font-size: .98rem;
  border: 1px solid var(--line-2); border-radius: var(--radius-sm); background: var(--paper);
  color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); background: #fff;
}
.field textarea { resize: vertical; min-height: 90px; }
.form-card .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
.form-foot { text-align: center; font-size: .8rem; color: var(--muted-2); margin-top: 14px; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .fs-check { width: 64px; height: 64px; border-radius: 50%; background: var(--pine-soft); color: var(--pine); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .fs-check svg { width: 32px; height: 32px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); margin: 0; }

/* ---- Footer ---- */
.site-footer { background: #14191b; color: rgba(255,255,255,.7); padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-cream); }
.footer-brand img { height: 50px; margin-bottom: 18px; }
.footer-brand p { font-size: .92rem; max-width: 32ch; line-height: 1.6; }
.footer-col h5 { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 16px; }
.footer-col a { display: block; padding: 6px 0; font-size: .92rem; color: rgba(255,255,255,.78); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; padding-top: 24px; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: var(--accent); }

/* ---- Decorative card icons hidden per brand preference ----
   (action-button, contact, checklist, map & rating icons are kept) */
.svc-icon, .feat-ic, .ti-icon, .wi-icon, .proc-icon, .cs-ic { display: none !important; }

/* ---- Scroll reveal (opt-in: hidden only once JS adds .enable-reveal) ---- */
.enable-reveal .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.enable-reveal .reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav, .header-phone .ph-label { display: none; }
  .founder-card { display: none; }
  .photo-badge { display: none; }
  .scroll-cue { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid var(--line-cream); }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-feature { grid-row: span 1; grid-column: span 2; }
  .proc-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .proc-connect { display: none; }
  .why-layout { grid-template-columns: 1fr; }
  .why-aside { position: static; }
  .area-map-layout, .contact-layout { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 880px) { .hamburger { display: block; } }
@media (max-width: 600px) {
  .header-cta .btn { display: none; }
  .trust-grid, .svc-grid, .why-grid, .field-row { grid-template-columns: 1fr; }
  .svc-feature { grid-column: span 1; }
  .proc-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 120px; }
  .scroll-cue { display: none; }
}

/* ============================================================
   INNER PAGES
   ============================================================ */
.inner-hero { min-height: 60vh; }
.inner-hero .hero-inner { padding-top: clamp(132px, 18vh, 196px); padding-bottom: clamp(44px, 7vh, 82px); }
.inner-hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.4rem); max-width: 16ch; }
.breadcrumb { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 6px; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb a { color: rgba(255,255,255,.82); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .crumb-sep { opacity: .5; }
.breadcrumb .crumb-here { color: var(--accent); }

.page-section { padding: clamp(60px, 8vw, 112px) 0; }
.page-section.tint { background: var(--sand); }
.page-section.ink { background: var(--ink); color: #fff; }
.page-section.ink .section-title { color: #fff; }
.page-section.ink .lead { color: rgba(255,255,255,.74); }

.prose-narrow { max-width: 770px; }
.prose p { font-size: 1.1rem; color: var(--ink-2); margin: 0 0 20px; line-height: 1.7; }
.prose p:last-child { margin-bottom: 0; }

.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.content-split.flip .cs-media { order: -1; }
.cs-media { width: 100%; height: clamp(320px, 44vh, 480px); border-radius: var(--radius-lg); box-shadow: var(--shadow); --is-bg: #e7dac4; overflow: hidden; }
.cs-body .eyebrow { margin-bottom: 14px; }
.cs-body h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: -.02em; }
.cs-body p { color: var(--muted); margin: 16px 0 0; font-size: 1.05rem; }

.check-list { list-style: none; margin: 22px 0 0; padding: 0; }
.check-list li { display: flex; gap: 13px; padding: 11px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.check-list li:last-child { border-bottom: none; }
.check-list .cl-ic { width: 26px; height: 26px; border-radius: 7px; background: var(--pine-soft); color: var(--pine); display: grid; place-items: center; flex: none; margin-top: 1px; }
.check-list .cl-ic svg { width: 15px; height: 15px; }
.check-list b { font-weight: 600; color: var(--ink); }
.check-list span { color: var(--muted); }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat-grid.two { grid-template-columns: repeat(2, 1fr); }
.feat-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.page-section.tint .feat-card { background: var(--paper); }
.feat-ic { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 16px; }
.feat-ic svg { width: 25px; height: 25px; }
.feat-card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.feat-card p { margin: 0; color: var(--muted); font-size: .96rem; }

.cta-band { background: var(--accent); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px); text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; opacity: .12; background-image: repeating-linear-gradient(135deg, #fff 0 1px, transparent 1px 24px); pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band .eyebrow { color: rgba(255,255,255,.8); justify-content: center; }
.cta-band .eyebrow::before { background: rgba(255,255,255,.7); }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin: 14px 0 0; letter-spacing: -.025em; text-wrap: balance; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 52ch; margin: 16px auto 28px; font-size: 1.1rem; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band .btn-primary { background: #fff; color: var(--accent-ink); }
.cta-band .btn-primary:hover { background: #fff5ef; }
.cta-band .btn-on-dark { border-color: rgba(255,255,255,.45); }

.faq-list { max-width: 820px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 20px; width: 100%; text-align: left; background: none; border: none; padding: 24px 0; font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--ink); cursor: pointer; }
.faq-q .faq-ic { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; transition: transform .25s, background .2s, color .2s, border-color .2s; }
.faq-q .faq-ic svg { width: 15px; height: 15px; }
.faq-item.open .faq-q .faq-ic { transform: rotate(45deg); background: var(--accent); color: #fff; border-color: var(--accent); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 24px; }
.faq-a p { margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.65; max-width: 72ch; }

.mini-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.callout { display: flex; gap: 12px; align-items: flex-start; margin-top: 22px; background: var(--accent-soft); border-radius: var(--radius); padding: 16px 18px; font-size: .95rem; color: var(--ink-2); line-height: 1.55; }
.callout svg { color: var(--accent); flex: none; margin-top: 2px; }
.callout b { color: var(--ink); }
.spec-band { background: var(--ink); border-top: 1px solid var(--line-cream); }
.spec-strip { display: flex; flex-wrap: wrap; gap: 12px 34px; justify-content: center; padding: 20px 0; }
.spec { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: .78rem; letter-spacing: .04em; color: rgba(255,255,255,.85); }
.spec svg { width: 15px; height: 15px; color: var(--accent); }
.leed-band { display: flex; gap: 20px; align-items: center; background: var(--pine-soft); border: 1px solid rgba(47,93,63,.2); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); }
.leed-ic { width: 56px; height: 56px; border-radius: 14px; background: var(--pine); color: #fff; display: grid; place-items: center; flex: none; }
.leed-ic svg { width: 28px; height: 28px; }
.leed-band h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); color: var(--pine); }
.leed-band p { margin: 8px 0 0; color: var(--ink-2); font-size: 1rem; line-height: 1.6; }
.leed-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .04em; font-weight: 600;
  color: var(--pine); text-decoration: none; transition: gap .2s ease; }
.leed-link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.leed-link:hover { gap: 11px; }
.leed-link:hover svg { transform: translateX(2px); }

/* ---- City locator map ---- */
.locator-layout { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(32px,5vw,64px); align-items: center; }
.locator-map svg { width: 100%; height: auto; display: block; overflow: visible; }
.locator-line { stroke: rgba(255,255,255,.45); stroke-width: 1.6; stroke-dasharray: 2 7; fill: none; }
.city-pin-pulse { fill: var(--accent); opacity: .25; animation: pinpulse 2.2s ease-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes pinpulse { 0% { transform: scale(.5); opacity: .5; } 100% { transform: scale(2.4); opacity: 0; } }
.city-pin { fill: var(--accent); stroke: #fff; stroke-width: 2.5; }
.city-pin-label { fill: #fff; font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.hq-star { fill: #ffd9a0; }
.hq-star-label { fill: #ffd9a0; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; }
.locator-stats { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.locator-stats .ls { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.9); font-size: .98rem; }
.locator-stats .ls svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.city-svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.city-svc { display: flex; flex-direction: column; gap: 10px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.city-svc:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.city-svc .cs-ic { width: 42px; height: 42px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.city-svc .cs-ic svg { width: 22px; height: 22px; }
.city-svc h3 { font-size: 1.02rem; }
.city-svc .cs-arrow { margin-top: auto; color: var(--accent); display: flex; }
.city-svc .cs-arrow svg { width: 16px; height: 16px; }

/* ---- Trusted-materials badge (roof replacement) ---- */
.brand-badge { max-width: 740px; margin: 0 auto;
  padding: clamp(24px, 3.5vw, 36px) clamp(28px, 4vw, 44px);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); text-align: center; }
.brand-badge .bb-text p { font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.22; letter-spacing: -.01em;
  margin: 10px auto 0; max-width: 30ch; color: var(--ink); text-wrap: balance; }
.brand-badge .bb-text b { color: var(--accent); font-weight: 700; }
.brand-badge .bb-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(30px, 5vw, 60px); margin-top: clamp(22px, 3vw, 30px);
  padding-top: clamp(22px, 3vw, 28px); border-top: 1px solid var(--line); }
.brand-badge .bb-logo { display: inline-flex; align-items: center; transition: opacity .2s ease, transform .2s ease; }
.brand-badge .bb-logo:hover { opacity: .7; transform: translateY(-1px); }
.brand-badge .bb-logo img { display: block; width: auto; }
.brand-badge .bb-logo.oc img { height: 64px; }
.brand-badge .bb-logo.gm img { height: 40px; }
.brand-badge .bb-logo.gm { flex-basis: 100%; justify-content: center; }
.brand-badge .bb-logo.gaf img { height: 60px; }
.brand-badge .bb-logo.gcs img { height: 56px; }
.brand-badge .bb-logo.wh { background: var(--ink); border-radius: 10px; padding: 14px 18px; }
.brand-badge .bb-logo.wh img { height: 26px; }
.brand-badge .bb-logo.wh:hover { opacity: 1; background: var(--ink-2); }
@media (max-width: 1000px) { .locator-layout { grid-template-columns: 1fr; } .city-svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .city-svc-grid { grid-template-columns: 1fr 1fr; } }

@media (max-width: 1000px) {
  .content-split { grid-template-columns: 1fr; gap: 36px; }
  .content-split.flip .cs-media { order: 0; }
  .feat-grid, .feat-grid.two { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .feat-grid, .feat-grid.two { grid-template-columns: 1fr; }
}

/* Extend designer hide-list for remaining empty icon containers */
.cp-icon, .cl-ic, .leed-ic, .fs-check, .faq-ic { display: none !important; }

/* Address autocomplete dropdown + form states */
.addr-suggestions {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 50;
  margin: 4px 0 0; padding: 4px; list-style: none;
  background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); max-height: 240px; overflow-y: auto;
}
.addr-suggestions li {
  padding: 9px 12px; border-radius: 6px; cursor: pointer; font-size: .92rem; color: var(--ink-2);
}
.addr-suggestions li:hover, .addr-suggestions li.active { background: var(--accent-soft); color: var(--accent-ink); }
.addr-suggestions li.no-results { color: var(--muted); cursor: default; }
.addr-suggestions li.no-results:hover { background: transparent; color: var(--muted); }
.addr-confirmed { margin-top: 6px; font-size: .85rem; color: var(--pine); font-weight: 500; }
.form-error { margin: 12px 0; padding: 10px 14px; border-radius: var(--radius-sm); background: rgba(190,74,42,.10); border: 1px solid rgba(190,74,42,.32); color: var(--accent-ink); font-size: .9rem; }
.btn[disabled] { opacity: .6; cursor: not-allowed; }

/* Reviews: photo avatar, character stars, footer, responsive grid */
.rev-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important; }
.rev-stars .star { color: var(--line-2); font-size: 1.05rem; line-height: 1; }
.rev-stars .star.filled { color: var(--accent); }
.rev-ava-img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex: none; background: var(--sand); }
.rev-foot { text-align: center; margin-top: 22px; color: var(--muted); font-size: .82rem; }
.rev-foot a { color: var(--accent); text-decoration: none; border-bottom: 1px solid currentColor; }
.rev-foot a:hover { color: var(--accent-ink); }
.rev-note { display: inline-flex; align-items: center; gap: 8px; color: var(--muted-2); font-size: .9rem; margin-top: 14px; }

/* Image rules updated for plain <img> elements (replacing prototype image-slot) */
img.hero-media { object-fit: cover; object-position: center; }
img.cs-media { object-fit: cover; object-position: center; display: block; }
.content-split.no-photo { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; gap: 0; }
.content-split.no-photo .cs-body { text-align: left; }
.inner-hero.no-photo .hero-fallback { background:
  radial-gradient(120% 85% at 100% -5%, rgba(190,74,42,.28), transparent 52%),
  radial-gradient(90% 70% at -10% 110%, rgba(47,93,63,.24), transparent 60%),
  var(--ink);
}

/* Article pages (county hubs + project / storm response) */
.prose-narrow .article-h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-top: 38px; margin-bottom: 14px; letter-spacing: -.02em; color: var(--ink); }
.prose-narrow .article-h2:first-child { margin-top: 0; }
.prose-narrow .article-h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); margin-top: 28px; margin-bottom: 10px; color: var(--ink-2); }
.prose-narrow .article-bullets { margin: 14px 0; padding-left: 22px; color: var(--muted); }
.prose-narrow .article-bullets li { margin: 8px 0; line-height: 1.55; }
.prose-narrow p { color: var(--muted); margin: 14px 0; font-size: 1.02rem; line-height: 1.65; }

.rel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 32px; }
.rel-card {
  display: block; padding: 24px; border-radius: var(--radius); background: var(--card);
  border: 1px solid var(--line); border-top: 3px solid var(--accent);
  text-decoration: none; color: inherit; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.rel-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.rel-card h3 { font-size: 1.05rem; margin: 0 0 10px; color: var(--ink); }
.rel-card p { font-size: .9rem; color: var(--muted); margin: 0 0 14px; line-height: 1.5; }
.rel-link { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .12em; color: var(--accent); text-transform: uppercase; }
