/* Check's Epoxy — ProTurf/SunLawn structure, Check's palette (matches the
   live checksepoxy.com site). Charcoal chrome: #23262b · Accent red:
   #c8102e · Silver/metallic neutrals. Playfair Display display type +
   the hero's rebuilt headline/CTA/trust-row treatment carry over from the
   "v2" dark-mode exploration; the hero band itself was always its own
   dark photo/video treatment regardless of the sitewide theme, so none of
   that needed to change back. */

:root {
  --primary: #23262b;
  --primary-dark: #17191d;
  --primary-darker: #0e0f12;
  --accent: #c8102e;
  --accent-dark: #a20d24;
  --accent-tint: #fbeaec;
  --cream: #f5f6f7;
  --paper: #ffffff;
  --ink: #20242a;
  --muted: #676e76;
  --line: #e4e6e9;
  --surface: #ffffff;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(18, 20, 24, .12);
  --shadow-sm: 0 2px 10px rgba(18, 20, 24, .10);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  /* The house-and-check from the logo, as a mask so it always paints in the
     surrounding text colour. Used for section eyebrows, checklists, the
     service-area card and the big CTA watermark — see "brand mark" below. */
  --mark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 60'%3E%3Cg fill='none' stroke='%23000' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 28.5 32 6.5 58 28.5'/%3E%3Cpath d='M13 25v26h38V25'/%3E%3C/g%3E%3Cpath d='M16 32.5q3-3.2 6.6.2L31 42q9-15.5 27-31-12.5 17.5-19.5 34.5-2 5-6.5 4.6-2.6-.3-4.2-2.4L16.6 36q-1.2-1.8-.6-3.5z'/%3E%3C/svg%3E");
}

/* ---------- brand mark ----------
   .mark paints the logo's house-and-check in currentColor at the current font
   size. Add it to any element with `.has-mark` (inline, before the text) or use
   .mark on its own as a decorative watermark. */
.mark, .has-mark::before, .eyebrow::before {
  display: inline-block; width: 1.5em; height: 1.4em; flex-shrink: 0;
  background: currentColor;
  -webkit-mask: var(--mark) center / contain no-repeat;
  mask: var(--mark) center / contain no-repeat;
}
.has-mark::before, .eyebrow::before { content: ''; vertical-align: -.3em; margin-right: .45em; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--paper); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: none; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap.wide { max-width: 1560px; }

/* ---------- buttons ---------- */
.btn { display: inline-block; font-weight: 700; font-size: 15px; border-radius: 10px;
  padding: 14px 26px; border: 2px solid transparent; cursor: pointer; text-decoration: none !important;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #e11d34; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline:hover { border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--ink); }

/* ---------- utility top bar ---------- */
.topbar { background: var(--primary); color: rgba(255,255,255,.85); font-size: 12.5px; letter-spacing: .02em; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 34px; gap: 12px; }
.topbar .towns { display: flex; gap: 14px; flex-wrap: wrap; }
.topbar .towns span:not(:last-child)::after { content: '·'; margin-left: 14px; opacity: .5; }
.topbar .right { text-transform: uppercase; font-weight: 600; font-size: 11.5px; letter-spacing: .08em; color: rgba(255,255,255,.72); }

/* ---------- nav ---------- */
.nav { background: var(--surface); position: sticky; top: 0; z-index: 60; box-shadow: 0 2px 14px rgba(34,48,60,.10); }
/* logo-wide.png is the one-line lockup (~4.5:1) — it buys a much bigger wordmark
   per pixel of bar height than the stacked logo did */
.nav .wrap { display: flex; align-items: center; gap: 18px; min-height: 92px; }
.nav .brand { display: flex; align-items: center; gap: 10px; margin-right: auto; flex-shrink: 0; }
.nav .brand img { height: 62px; width: auto; max-width: none; }
/* the footer keeps the original stacked logo (the nav carries the wide lockup) */
.footer-brand { display: inline-block; margin-bottom: 10px; }
.footer-brand img { height: 66px; width: auto; }
.nav .links { display: flex; align-items: center; gap: 22px; }
.nav .links a { color: var(--ink); font-size: 15px; font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase; text-decoration: none; padding: 6px 2px;
  white-space: nowrap; transition: color .12s ease; }
.nav .links a:hover, .nav .links a.active { color: var(--accent-dark); }
.nav .cta { white-space: nowrap; padding: 12px 18px; flex-shrink: 0; }
.nav-menu { display: flex; align-items: center; gap: 18px; }
.nav-ctas { display: flex; align-items: center; gap: 12px; }
.nav .menu-btn { display: none; background: none; border: 1px solid var(--line); color: var(--ink);
  font-size: 22px; line-height: 1; border-radius: 8px; padding: 6px 12px; cursor: pointer; }

/* dropdown */
.nav .dd { position: relative; display: flex; align-items: center; }

.nav .dd-menu { display: none; position: absolute; top: 100%; left: -12px; background: var(--surface); border-radius: 10px;
  box-shadow: var(--shadow); padding: 8px; min-width: 240px; z-index: 70; }
.nav .dd:hover .dd-menu, .nav .dd:focus-within .dd-menu { display: block; }
.nav .dd-menu a { display: block; color: var(--ink) !important; text-transform: none; letter-spacing: 0;
  font-size: 14.5px; padding: 9px 12px; border-radius: 8px; border-bottom: none !important; }
.nav .dd-menu a:hover { background: var(--accent-tint); }

/* ---------- hero (home) ---------- */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--primary); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- "See Us In Action" click-to-play (homepage) ---------- */
.watch-card { position: relative; max-width: 900px; margin: 22px auto 0; border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow); background: #000; }
.watch-video { width: 100%; aspect-ratio: 16 / 9; display: block; background: #000; }
.watch-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 76px; height: 76px;
  border-radius: 50%; background: rgba(255,255,255,.94); border: none; display: flex; align-items: center;
  justify-content: center; cursor: pointer; box-shadow: 0 8px 26px rgba(0,0,0,.4); transition: transform .15s ease; }
.watch-play svg { width: 30px; height: 30px; color: var(--accent-dark); margin-left: 4px; }
.watch-play:hover { transform: translate(-50%,-50%) scale(1.07); }
.watch-card.playing .watch-play { display: none; }
.watch-cta { text-align: center; margin-top: 22px; }

/* ---------- video carousel (gallery page "Watch Us Work") ---------- */
.vid-carousel { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin-top: 30px; align-items: start; }
.vid-player-wrap { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); background: #000; }
.vid-player { width: 100%; aspect-ratio: 16 / 9; display: block; background: #000; }
.vid-thumbs-wrap { position: relative; }
.vid-thumbs-count { display: flex; align-items: baseline; gap: 5px; font-size: 12px; font-weight: 700;
  color: var(--muted); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 8px; }
.vid-thumbs-count span { font-weight: 500; text-transform: none; letter-spacing: 0; }
.vid-thumbs { display: flex; flex-direction: column; gap: 10px; max-height: 420px; overflow-y: auto;
  scrollbar-color: var(--accent) transparent; scrollbar-width: thin; }
.vid-thumbs::-webkit-scrollbar { width: 7px; }
.vid-thumbs::-webkit-scrollbar-track { background: transparent; }
.vid-thumbs::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }
.vid-thumb { position: relative; height: 78px; flex: none; border-radius: 10px; border: 2px solid transparent;
  background-size: cover; background-position: center; cursor: pointer; overflow: hidden; text-align: left;
  font-family: inherit; padding: 0; transition: border-color .15s ease; }
.vid-thumb::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.78) 100%); }
.vid-thumb span { position: absolute; left: 10px; right: 10px; bottom: 6px; z-index: 1; color: #fff;
  font-weight: 700; font-size: 12.5px; line-height: 1.25; }
.vid-thumb.active { border-color: var(--accent); }
.vid-thumb:hover { border-color: var(--accent-dark); }
/* Fades the last ~50px of the thumb rail and hides once scrolled to the bottom — signals
   there's more to scroll to now that this list runs to 16 videos instead of 6. */
.vid-thumbs-fade { position: absolute; left: 0; right: 7px; bottom: 0; height: 54px; border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, rgba(245,246,247,0) 0%, var(--cream) 75%);
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 4px;
  cursor: pointer; transition: opacity .2s ease; }
.vid-thumbs-fade-dot { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 50%; border: 2px solid var(--accent); background: var(--cream);
  animation: vidFadeBounce 1.6s ease-in-out infinite; }
.vid-thumbs-fade svg { width: 22px; height: 22px; color: var(--accent); }
.vid-thumbs-fade.hide { opacity: 0; pointer-events: none; }
@keyframes vidFadeBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@media (max-width: 780px) {
  .vid-carousel { grid-template-columns: 1fr; }
  .vid-thumbs { flex-direction: row; overflow-x: auto; overflow-y: visible; max-height: none; padding-bottom: 4px; }
  .vid-thumb { width: 140px; }
  .vid-thumbs-fade { display: none; }
}
.hero-slides { position: absolute; inset: 0; }
.hero-slides .slide { position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; animation: kenburns 24s linear infinite; will-change: opacity, transform; }
.hero-slides .slide:nth-child(2) { animation-delay: 6s; }
.hero-slides .slide:nth-child(3) { animation-delay: 12s; }
.hero-slides .slide:nth-child(4) { animation-delay: 18s; }
@keyframes kenburns {
  0% { opacity: 0; transform: scale(1); }
  4% { opacity: 1; }
  25% { opacity: 1; }
  31% { opacity: 0; transform: scale(1.14); }
  100% { opacity: 0; transform: scale(1); }
}
/* even, moderately-dark scrim across the whole width (not just the left edge)
   — needed once the hero content centers instead of sitting to one side, and
   darker toward the bottom where the address bar sits on the photo directly. */
.hero-shade { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.42) 0%, rgba(10,10,11,.5) 55%, rgba(10,10,11,.68) 100%); }
.hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero .bg::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(12,13,15,.92) 0%, rgba(20,22,26,.8) 45%, rgba(20,22,26,.5) 100%); }
/* single stacked column: headline chrome on top, the compact address bar
   centered below it — no side-by-side quote card (that was the "v2" layout) */
.hero .wrap { position: relative; z-index: 1; padding-top: 46px; padding-bottom: 40px; }
.hero .hero-chrome-inner { padding-bottom: 20px; }
.hero-left { text-align: center; max-width: 1200px; margin: 0 auto; }
.hero-rule { width: 42px; height: 3px; background: var(--accent); border-radius: 2px; margin: 0 auto 14px;
  box-shadow: 0 1px 6px rgba(0,0,0,.6); }
.hero-eyebrow { color: var(--accent); font-size: 12.5px; font-weight: 800; letter-spacing: .17em;
  text-transform: uppercase; margin-bottom: 16px; text-shadow: 0 1px 3px rgba(0,0,0,.85), 0 0 14px rgba(0,0,0,.5); }
.hero h1 { font-family: var(--font-display); font-size: clamp(32px, 5.2vw, 64px); line-height: 1.1;
  font-weight: 700; letter-spacing: -.01em; text-shadow: 0 2px 10px rgba(0,0,0,.65); }
.hero h1 .hl { color: var(--accent); }
.hero .kicker { font-style: italic; color: #ef2b4b; margin: 14px 0 6px; font-size: 15px; }
.hero p.lede { color: #f0f3f5; max-width: 920px; margin-left: auto; margin-right: auto; font-size: 17px;
  margin-top: 18px; text-shadow: 0 1px 4px rgba(0,0,0,.75); }
.hero-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 22px; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 0 0 16px; padding: 0; }
.hero-trust li { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: 7px 16px; backdrop-filter: blur(2px);
  color: #fff; font-size: 13px; font-weight: 700; white-space: nowrap; }
.hero-trust li::before { content: '✓'; color: var(--accent); font-weight: 800; }
.hero .chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); color: #fff;
  font-size: 12.5px; font-weight: 600; border-radius: 999px; padding: 6px 14px; }
.chip.solid { background: var(--accent); border-color: var(--accent); color: #fff; }

/* instant price card */
.quote-card { background: var(--surface); color: var(--ink); border-radius: 16px; box-shadow: 0 18px 50px rgba(0,0,0,.35);
  padding: 30px 28px; }
.quote-card .bar { width: 44px; height: 4px; background: var(--accent); border-radius: 2px; margin: 0 auto 14px; }
.quote-card h3 { text-align: center; font-size: 22px; font-weight: 800; color: var(--ink); }
.quote-card .sub { text-align: center; color: var(--muted); font-size: 13.5px; margin: 6px 0 18px; }
.quote-card form { display: flex; gap: 10px; }
.quote-card input { flex: 1; border: 1.5px solid var(--line); border-radius: 10px; padding: 13px 14px;
  font-size: 14.5px; font-family: inherit; min-width: 0; }
.quote-card input:focus { outline: 2px solid var(--accent); border-color: transparent; }
.quote-card .fine { text-align: center; color: #9aa7b1; font-size: 11.5px; margin-top: 14px; }
.quote-card .fine span:not(:last-child)::after { content: '·'; margin: 0 6px; }

.quote-card .size-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.size-pill { border: 1.5px solid var(--line); border-radius: 10px; padding: 10px 8px; text-align: center;
  font-weight: 700; font-size: 13.5px; color: var(--ink); text-decoration: none !important; }
.size-pill:hover { border-color: var(--accent-dark); background: var(--accent-tint); }
.size-pill small { display: block; font-weight: 500; color: var(--muted); font-size: 11px; }

/* ---------- trust strip ---------- */
.trust { background: var(--primary); color: rgba(255,255,255,.92); }
.trust ul { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 34px; padding: 13px 0; }
.trust li { font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 7px; }
.trust li::before { content: '✓'; font-weight: 900; color: var(--accent); }

/* ---------- stats band ---------- */
.stats { background: var(--paper); padding: 26px 0; }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--accent);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); text-align: center; padding: 14px 14px; }
.stat:nth-child(even) { border-top-color: var(--ink); }
.stat .value { font-size: 28px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.stat .label { font-weight: 700; margin-top: 3px; font-size: 14px; }
.stat .sub { color: var(--muted); font-size: 11.5px; margin-top: 2px; }

/* ---------- section scaffolding ---------- */
section.band { padding: 72px 0; }
.band.cream { background: var(--cream); }
.band.tint { background: var(--accent-tint); }
/* "See Us In Action" is a light supplementary section, not a full page beat —
   deliberately tighter than the standard 72px band padding, and tinted so it
   doesn't blend into the white stats band right above it. */
.band.watch-section { padding: 36px 0 44px; }
.eyebrow { text-align: center; color: var(--accent-dark); font-size: 12.5px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 12px; }
.eyebrow.left { text-align: left; }
h2.title { text-align: center; font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; color: var(--ink);
  letter-spacing: -.01em; line-height: 1.15; font-family: var(--font-display); }
h2.title.left { text-align: left; }
/* Serif display type on headlines only — eyebrows, nav, buttons and body copy
   stay on Inter, matching the reference's serif-headline/sans-everything-else
   pairing. */
.hero h1, .page-hero h1 { font-family: var(--font-display); }
p.sub { text-align: center; color: var(--muted); max-width: 640px; margin: 14px auto 0; }
.center { text-align: center; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }

/* ---------- services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.svc-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-card .ph { height: 190px; background-size: cover; background-position: center; position: relative; }
.svc-card .tag { position: absolute; top: 12px; left: 12px; background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.svc-card .body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { font-size: 18.5px; font-weight: 800; color: var(--ink); }
.svc-card p { color: var(--muted); font-size: 14px; margin: 8px 0 16px; flex: 1; }
.svc-card .more { font-weight: 700; font-size: 14px; color: var(--accent-dark); }
/* "Other services" cross-link band — same card as the main /services/ grid,
   just tighter (up to 8 cards, not the full showcase). */
.other-svc-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; }
.other-svc-grid .ph { height: 120px; }
.other-svc-grid .body { padding: 14px 16px 16px; }
.other-svc-grid h3 { font-size: 15px; }
.other-svc-grid p { font-size: 12.5px; margin: 6px 0 10px; }
.other-svc-grid .more { font-size: 12.5px; }
@media (max-width: 900px) { .other-svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .other-svc-grid { grid-template-columns: 1fr; } .svc-flip-grid { grid-template-columns: 1fr; } .svc-flip { height: 240px; } }

/* ---------- services detail list (homepage — numbered photo+text rows,
   ported from the Manus reference's "01 Metallic Epoxy Coating" layout;
   full cards still live on /services/) ---------- */
.svc-detail-list { display: flex; flex-direction: column; gap: 64px; margin-top: 50px; }
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.svc-detail:nth-child(even) .svc-detail-photo { order: 2; }
.svc-detail-photo { height: 380px; border-radius: var(--radius); background-size: cover;
  background-position: center; box-shadow: var(--shadow); }
.svc-detail-num { font-family: var(--font-display); font-size: 56px; font-weight: 600; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--accent); margin-bottom: 10px; }
@supports not (-webkit-text-stroke: 1px black) { .svc-detail-num { color: var(--accent); } }
.svc-detail-txt h3 { font-family: var(--font-display); font-size: 30px; font-weight: 700;
  color: var(--ink); line-height: 1.2; margin-bottom: 14px; }
.svc-detail-desc { color: var(--muted); font-size: 16px; line-height: 1.65; margin-bottom: 18px; }
.svc-detail-checks { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.svc-detail-checks li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.svc-detail-checks li::before { content: '✓'; flex: none; width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--accent); color: var(--accent); font-size: 10.5px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; }
.svc-detail-cta { font-weight: 800; color: var(--accent-dark); font-size: 14.5px; text-decoration: none !important; }
.svc-detail-cta:hover { text-decoration: underline !important; }
@media (max-width: 860px) {
  .svc-detail { grid-template-columns: 1fr; gap: 26px; }
  .svc-detail:nth-child(even) .svc-detail-photo { order: 0; }
  .svc-detail-photo { height: 260px; }
  .svc-detail-list { gap: 46px; }
}

/* ---------- "How It Works" 4-step overview (homepage) ---------- */
.hiw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.hiw-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 26px 22px; }
.hiw-num { font-family: var(--font-display); font-size: 38px; font-weight: 600; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--accent); margin-bottom: 12px; }
@supports not (-webkit-text-stroke: 1px black) { .hiw-num { color: var(--accent); } }
.hiw-card h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.hiw-card p { color: var(--muted); font-size: 14px; line-height: 1.55; }
@media (max-width: 980px) { .hiw-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .hiw-grid { grid-template-columns: 1fr; } }

/* ---------- homepage contact-form section ---------- */
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 40px; }
.cf-contact-lines { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.cf-line { display: flex; align-items: center; gap: 14px; }
.cf-ic { flex: none; width: 40px; height: 40px; border-radius: 10px; background: var(--accent-tint);
  display: flex; align-items: center; justify-content: center; font-size: 17px; }
.cf-line small { display: block; color: var(--muted); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.cf-line strong { display: block; color: var(--ink); font-size: 15px; }
.cf-status { min-height: 18px; font-size: 13px; font-weight: 700; color: var(--accent-dark); margin-top: 10px; }
.cf-fine { text-align: center; color: var(--muted); font-size: 12px; margin-top: 8px; }
@media (max-width: 860px) { .cf-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- CTA bands ---------- */
.cta-band { position: relative; overflow: hidden;
  background: linear-gradient(115deg, var(--primary-darker), var(--primary) 55%, #46617a);
  color: #fff; text-align: center; padding: 72px 0; }
/* oversized house mark bleeding off the corner — the motif, used as texture */
.cta-band::after { content: ''; position: absolute; right: -46px; bottom: -70px; width: 330px; height: 310px;
  background: var(--surface); opacity: .07; pointer-events: none;
  -webkit-mask: var(--mark) center / contain no-repeat; mask: var(--mark) center / contain no-repeat; }
.cta-band .eyebrow { color: #e9a7b2; }
.cta-band h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; line-height: 1.15; }
.cta-band h2 em { font-style: normal; color: var(--accent); }
.cta-band p { color: #cdd7de; max-width: 620px; margin: 16px auto 0; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.cta-band.green { background: linear-gradient(115deg, var(--primary-dark), var(--accent-dark)); }
.cta-band.green h2 { color: #fff; }
.cta-band.green p { color: #e9edf0; }

.band-photo { position: relative; background-size: cover; background-position: center; }
.band-photo.parallax { background-attachment: fixed; }
.band-photo::before { content: ''; position: absolute; inset: 0; background: rgba(36, 48, 59, .82); }
.band-photo > .wrap { position: relative; z-index: 1; }
.band-photo.lighter::before { background: rgba(36, 48, 59, .72); }

/* ---------- why / reputation ---------- */
.why { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; margin-top: 40px; }
.why .checks { list-style: none; margin: 20px 0; }
.why .checks li { padding-left: 30px; position: relative; margin-bottom: 10px; font-weight: 600; }
.why .checks li::before { content: ''; position: absolute; left: 0; top: .18em; width: 20px; height: 19px;
  background: var(--accent-dark);
  -webkit-mask: var(--mark) center / contain no-repeat; mask: var(--mark) center / contain no-repeat; }
.why .photo { position: relative; }
.why .photo img { border-radius: var(--radius); box-shadow: var(--shadow); }
.rating-badge { position: absolute; left: -22px; bottom: -22px; background: var(--surface); border-radius: 14px;
  box-shadow: var(--shadow); padding: 14px 20px; display: flex; align-items: center; gap: 12px; }
.rating-badge .num { font-size: 30px; font-weight: 800; color: var(--ink); }
.rating-badge .stars { color: #e2a93b; font-size: 15px; letter-spacing: 2px; }
.rating-badge .lbl { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
/* Warranty + cure-time trio on coating service pages */
.trust-trio { grid-template-columns: repeat(3, 1fr); margin-top: 34px; }
.trust-trio .feat h4 { color: var(--accent-dark); }
@media (max-width: 760px) { .trust-trio { grid-template-columns: 1fr; } }
.feat { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; }
.feat h4 { font-size: 14.5px; color: var(--ink); font-weight: 800; }
.feat p { color: var(--muted); font-size: 13px; margin-top: 4px; }

/* ---------- reviews ---------- */
.rev-meta { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 14px;
  color: var(--muted); font-size: 14px; }
.rev-meta .stars { color: #e2a93b; letter-spacing: 2px; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.rev-card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 24px; }
/* a lone card on the last row stretches to fill it (7 cards -> 3+3+1) */
.rev-grid > .rev-card:last-child:nth-child(3n+1) { grid-column: 1 / -1; }
.rev-card .head { display: flex; align-items: center; gap: 12px; }
.rev-card .avatar { width: 42px; height: 42px; border-radius: 50%; color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.rev-card .who { font-weight: 700; font-size: 14.5px; }
.rev-card .src { font-size: 12px; color: var(--muted); }
.rev-card .stars { color: #e2a93b; letter-spacing: 2.5px; margin: 12px 0 8px; font-size: 14px; }
.rev-card p { font-size: 14px; color: #40505d; }
.rev-card .when { margin-top: 12px; font-size: 12.5px; color: var(--muted); }

/* ---------- reviews page: ticker / spotlight / proof strip ---------- */
/* Marquee of short review quotes. The track holds the list twice, so sliding
   one full copy (-50%) loops seamlessly. Hover pauses; reduced-motion unrolls
   it into a plain wrapped row. */
.ticker-band { background: var(--primary-darker); padding: 16px 0; overflow: hidden; }
.ticker { display: flex; width: max-content; gap: 56px; padding-right: 56px;
  animation: ticker 45s linear infinite; }
.ticker-band:hover .ticker { animation-play-state: paused; }
.ticker span { color: #c9d2da; font-size: 14px; white-space: nowrap; }
.ticker span strong { color: #fff; font-weight: 700; }
.ticker span::before { content: '★'; color: var(--accent); margin-right: 10px; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker { animation: none; width: auto; flex-wrap: wrap; justify-content: center; gap: 14px 28px; }
  .ticker [aria-hidden] { display: none; }
}

.spotlight { max-width: 800px; margin: 40px auto 0; background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 46px 52px; position: relative; text-align: center; }
.spotlight::before { content: '\201C'; position: absolute; top: 2px; left: 26px; font-size: 88px;
  font-weight: 800; line-height: 1; color: #f0cdd3; }
.spotlight .stars { color: #e2a93b; letter-spacing: 3px; font-size: 16px; margin-bottom: 14px; }
.spotlight p { font-size: 17.5px; line-height: 1.75; color: var(--ink); }
.spotlight .who { margin-top: 18px; font-weight: 800; color: var(--ink); }
.spotlight .src { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
@media (max-width: 620px) { .spotlight { padding: 34px 26px; } }

.rev-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.rev-photos img { width: 100%; height: 230px; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: transform .15s ease; }
.rev-photos a:hover img { transform: translateY(-2px); }
@media (max-width: 760px) { .rev-photos { grid-template-columns: 1fr; } .rev-photos img { height: 190px; } }

/* ---------- communities ---------- */
.communities { background: var(--primary-darker); color: #fff; padding: 72px 0; }
.communities .eyebrow { color: #e9a7b2; }
.communities h2 { text-align: center; font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; }
.town-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; margin-top: 40px; }
.town-card { position: relative; border-radius: 12px; overflow: hidden; height: 150px; display: flex;
  align-items: flex-end; background-size: cover; background-position: center; }
.town-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36,48,59,0), rgba(36,48,59,.55)); }
.town-card span { position: relative; z-index: 1; padding: 12px 14px; font-weight: 700; font-size: 14px; color: #fff; text-shadow: 0 1px 6px rgba(14,15,18,.55); }

/* ---------- gallery ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; }
.gal-grid a { display: block; border-radius: 12px; overflow: hidden; }
.gal-grid img { width: 100%; height: 200px; object-fit: cover; transition: transform .25s ease; }
.gal-grid a:hover img { transform: scale(1.05); }

/* full-screen photo viewer (opened from the gallery grid) */
.lb-overlay { position: fixed; inset: 0; z-index: 90; isolation: isolate;
  background: rgba(14, 15, 18, .94); display: flex; align-items: center; justify-content: center; padding: 60px; }
.lb-overlay[hidden] { display: none; }
/* width/height 100% (not max-*) so low-res gallery tiles still scale UP to
   fill the viewport — an <img> never upscales past its intrinsic size
   otherwise, which is what left small source photos stranded in the middle
   of the overlay. */
.lb-img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; box-shadow: var(--shadow); }
.lb-close, .lb-nav { position: absolute; border: none; border-radius: 50%; background: rgba(255,255,255,.12);
  color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .12s ease; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.24); }
.lb-close { top: 18px; right: 22px; width: 44px; height: 44px; font-size: 26px; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 16px; }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
@media (max-width: 620px) {
  .lb-overlay { padding: 20px; }
  .lb-close { width: 38px; height: 38px; font-size: 22px; top: 10px; right: 10px; }
  .lb-nav { width: 42px; height: 42px; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
}

/* ---------- page hero (interior) ---------- */
.page-hero { position: relative; color: #fff; }
.page-hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero .bg::after { content: ''; position: absolute; inset: 0; background: rgba(41, 55, 68, .82); }
.page-hero .wrap { position: relative; z-index: 1; padding-top: 68px; padding-bottom: 68px; }
.page-hero.center .wrap { text-align: center; }
.page-hero .badge { display: inline-block; background: var(--accent); color: #fff; font-size: 11.5px;
  font-weight: 800; letter-spacing: .1em; text-transform: uppercase; border-radius: 999px; padding: 5px 14px; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; line-height: 1.12; max-width: 880px; }
.page-hero.center h1 { margin: 0 auto; }
.page-hero p { color: #d7dfe6; margin-top: 12px; max-width: 640px; font-size: 16px; }
.page-hero.center p { margin-left: auto; margin-right: auto; }
.page-hero .btns { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.page-hero.center .btns { justify-content: center; }

/* ---------- service detail ---------- */
.svc-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.svc-intro img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; max-height: 460px; object-fit: cover; align-self: center; }
.svc-intro p { color: #40505d; margin-bottom: 14px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip-row .chip { background: var(--accent-tint); border: 1px solid #f0cdd3; color: #a20d24; }

.includes { background: var(--cream); border-radius: 18px; padding: 40px; margin-top: 56px; }
.includes h3 { font-size: 24px; font-weight: 800; color: var(--ink); margin-bottom: 22px; }
.inc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.inc { background: var(--surface); border-radius: 12px; box-shadow: var(--shadow-sm); padding: 16px 18px; font-size: 14px; }
/* .inc cards that act as links — neighborhood guides on the locations index
   and the linked entries in a city's hoodBand grid */
a.inc.hood-link { display: block; color: var(--ink); transition: box-shadow .15s ease, transform .15s ease; }
a.inc.hood-link:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
a.inc.hood-link .more { color: var(--accent-dark); font-weight: 700; white-space: nowrap; }
.inc::before { content: '✓'; display: inline-flex; width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent-dark); font-weight: 900; font-size: 12px;
  align-items: center; justify-content: center; margin-right: 9px; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.step { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 26px; position: relative; }
.step .n { position: absolute; top: -14px; left: 22px; background: var(--accent); color: #fff;
  font-weight: 800; font-size: 13px; border-radius: 999px; padding: 4px 12px; }
.step h4 { color: var(--ink); font-size: 17px; font-weight: 800; margin: 8px 0 8px; }
.step p { color: var(--muted); font-size: 14px; }

.pill-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.pill { border: 2px solid var(--primary); color: var(--primary); font-weight: 700; font-size: 14px;
  border-radius: 999px; padding: 10px 20px; text-decoration: none !important; }
/* scoped to anchors — the neighborhood pills are plain spans, and a hover
   invert on something unclickable reads as a broken link */
a.pill:hover { background: var(--primary); color: #fff; }
.pill.solid { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
a.pill.solid:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
span.pill { border-color: var(--line); color: var(--muted); font-weight: 600; }
.hood-note { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 22px; }

.statement { border-left: 4px solid var(--accent); background: var(--accent-tint); color: var(--ink);
  font-weight: 700; font-size: 15.5px; padding: 14px 18px; border-radius: 0 10px 10px 0; margin-top: 18px; }
.step img { width: 100%; height: 150px; object-fit: cover; border-radius: 10px; margin: 6px 0 12px; }

.app-rows { display: grid; gap: 24px; margin-top: 40px; }
/* photo column fixed near the gallery tiles' native ~300px so they stay crisp */
.app-row { display: grid; grid-template-columns: 320px 1fr; gap: 0; align-items: stretch;
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.app-row.rev { grid-template-columns: 1fr 320px; }
.app-row.noimg { grid-template-columns: 1fr; }
.app-row .ph { position: relative; }
.app-row .ph img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; }
.app-row .ph .n { position: absolute; left: 14px; bottom: 14px; background: var(--accent); color: #fff;
  font-weight: 800; font-size: 14px; letter-spacing: .08em; padding: 5px 12px; border-radius: 8px; box-shadow: var(--shadow-sm); }
.app-row .txt { padding: 28px 34px; align-self: center; }
.app-row .kick { color: var(--accent-dark); font-size: 12px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 6px; }
.app-row .txt h4 { color: var(--ink); font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.app-row .txt p { color: #40505d; font-size: 14.5px; max-width: 62ch; }
.app-row.rev .ph { order: 2; }
.proc-note { text-align: center; color: var(--ink); font-weight: 700; font-size: 14.5px; margin-top: 8px; }
.proc-note::before { color: var(--accent); }
@media (max-width: 760px) {
  .app-row, .app-row.rev { grid-template-columns: 1fr; }
  .app-row.rev .ph { order: 0; }
  .app-row .ph img { min-height: 0; max-height: 210px; }
  .app-row .txt { padding: 22px 22px 26px; }
}

/* ---------- values / factors ---------- */
.val-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.val { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 28px; }
.val .icon { width: 52px; height: 52px; border-radius: 12px; background: var(--accent-tint);
  display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.val .icon svg { width: 26px; height: 26px; color: var(--accent-dark); }
.val h4 { color: var(--ink); font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.val p { color: var(--muted); font-size: 14px; }

.factor-list { max-width: 780px; margin: 40px auto 0; display: grid; gap: 14px; }
.factor { background: var(--surface); border-radius: 12px; box-shadow: var(--shadow-sm); padding: 20px 22px;
  display: flex; gap: 18px; align-items: flex-start; }
.factor .icon { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-tint);
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.factor h4 { color: var(--ink); font-size: 15.5px; font-weight: 800; }
.factor p { color: var(--muted); font-size: 14px; margin-top: 3px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 40px auto 0; display: grid; gap: 12px; }
.faq-list details { background: var(--surface); border-radius: 12px; box-shadow: var(--shadow-sm); padding: 0 22px; }
.faq-list summary { list-style: none; cursor: pointer; font-weight: 700; color: var(--ink);
  font-size: 15.5px; padding: 18px 30px 18px 0; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '▾'; position: absolute; right: 2px; color: var(--accent-dark); transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(180deg); }
.faq-list .a { padding: 0 0 20px; color: #40505d; font-size: 14.5px; white-space: pre-line; }
p.sub.left { text-align: left; margin-left: 0; }
/* FAQ paired with a photo (service pages only) — mirrors .svc-intro's two-column
   layout instead of yet another centered text-only band. */
.faq-photo-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.faq-photo-grid .faq-list { max-width: none; margin: 24px 0 0; }
.faq-photo-grid img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; max-height: 460px; object-fit: cover; align-self: center; }
@media (max-width: 900px) {
  .faq-photo-grid { grid-template-columns: 1fr; }
  .faq-photo-grid img { height: auto; max-height: 320px; }
}

.help-box { background: var(--accent-tint); border-radius: 16px; text-align: center; padding: 40px;
  max-width: 780px; margin: 48px auto 0; }
.help-box h3 { color: var(--ink); font-size: 22px; font-weight: 800; }
.help-box p { color: var(--muted); margin: 8px 0 20px; }
.help-box .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; margin-top: 40px; }
.form-card { background: var(--surface); border-radius: 16px; box-shadow: var(--shadow); padding: 34px; }
.form-card h3 { font-size: 24px; font-weight: 800; color: var(--ink); margin-bottom: 20px; }
.form-card label { display: block; font-weight: 600; font-size: 13.5px; margin: 16px 0 6px; }
.form-card input, .form-card select, .form-card textarea { width: 100%; border: 1.5px solid var(--line);
  border-radius: 10px; padding: 12px 13px; font-size: 14.5px; font-family: inherit; background: var(--surface); }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }
.form-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: var(--muted); margin-top: 16px; }
.form-card .consent input { width: auto; margin-top: 3px; }
.form-card .btn { width: 100%; margin-top: 20px; }
.info-stack { display: grid; gap: 18px; }
.info-card { background: var(--surface); border-radius: 14px; box-shadow: var(--shadow-sm); padding: 24px; }
.info-card h4 { color: var(--ink); font-size: 16px; font-weight: 800; margin-bottom: 10px; }
.info-card ul { list-style: none; }
.info-card li { padding: 6px 0; font-size: 14.5px; display: flex; gap: 10px; align-items: baseline; }
.info-card li .k { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; min-width: 64px; font-weight: 700; }
.info-card.areas li::before { content: '✓'; color: var(--accent-dark); font-weight: 900; }

/* ---------- location pages ---------- */
.cta-card { background: linear-gradient(115deg, var(--primary-dark), var(--accent-dark)); color: #fff; text-align: center;
  border-radius: 18px; padding: 48px 36px; margin-top: 56px; }
.cta-card h3 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; }
.cta-card p { color: #e9edf0; max-width: 640px; margin: 12px auto 0; }
.cta-card .btns { display: flex; gap: 14px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.loc-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 240px; display: flex;
  align-items: flex-end; background-size: cover; background-position: center; box-shadow: var(--shadow-sm); }
.loc-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36,48,59,.02), rgba(36,48,59,.88)); }
.loc-card .body { position: relative; z-index: 1; padding: 20px; color: #fff; }
.loc-card h3 { font-size: 20px; font-weight: 800; }
.loc-card p { font-size: 13.5px; color: #d7dfe6; margin: 4px 0 10px; }
.loc-card .more { color: #e9a7b2; font-weight: 700; font-size: 13.5px; }
@media (max-width: 980px) { .loc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .loc-grid { grid-template-columns: 1fr; } }
.photo-credits { margin-top: 30px; font-size: 11.5px; color: #98a1a8; text-align: center; }
.photo-credits a { color: inherit; text-decoration: underline; }

/* ---------- lot-size estimator ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.tier-card { position: relative; background: var(--surface); border: 2px solid var(--line); border-radius: var(--radius);
  padding: 24px 18px; text-align: center; cursor: pointer; transition: border-color .15s, transform .15s, box-shadow .15s;
  font-family: inherit; }
.tier-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.tier-card.selected { border-color: var(--accent-dark); box-shadow: 0 0 0 3px var(--accent-tint), var(--shadow-sm); }
.tier-card .flag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent);
  color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; padding: 3px 12px; white-space: nowrap; }
.tier-card .t-name { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.tier-card .t-range { font-weight: 700; color: var(--ink); margin-top: 4px; font-size: 14.5px; }
.tier-card .t-price { font-size: 30px; font-weight: 800; color: var(--ink); margin-top: 10px; }
.tier-card .t-price small { font-size: 13px; font-weight: 600; color: var(--muted); }
.tier-card .t-unit { color: var(--muted); font-size: 12px; }
.estimate-panel { background: var(--surface); border-radius: 16px; box-shadow: var(--shadow); padding: 34px; margin-top: 28px; }
.estimate-panel h3 { color: var(--ink); font-size: 21px; font-weight: 800; }
.est-headline { background: var(--accent-tint); border: 1px solid var(--accent); border-radius: 12px; padding: 13px 18px; margin-top: 16px; text-align: center; font-size: 15px; font-weight: 600; color: var(--ink); }
.est-headline b { font-size: 20px; font-weight: 800; color: var(--accent-dark); }
.est-rows { margin-top: 18px; display: grid; gap: 12px; }
.est-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; border-bottom: 1px dashed var(--line); padding-bottom: 12px; }
.est-row .svc { font-weight: 700; font-size: 15px; }
.est-row .svc small { display: block; font-weight: 400; color: var(--muted); font-size: 12.5px; }
.est-row .price { font-weight: 800; color: var(--ink); font-size: 18px; white-space: nowrap; }
.est-row .price small { font-weight: 600; color: var(--muted); font-size: 12px; }
.est-note { background: var(--accent-tint); border-radius: 10px; padding: 14px 18px; margin-top: 18px;
  color: #a20d24; font-size: 13.5px; }
.est-cta { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
@media (max-width: 980px) { .tier-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .tier-grid { grid-template-columns: 1fr; } }

/* ---------- quote funnel ---------- */
.funnel { max-width: 880px; margin: 36px auto 0; }
.funnel-card { background: var(--surface); border-radius: 16px; box-shadow: 0 18px 50px rgba(0,0,0,.35); padding: 32px 30px; container-type: inline-size; }
.funnel-card .bar { width: 44px; height: 4px; background: var(--accent); border-radius: 2px; margin: 0 auto 16px; }
.funnel-card h3 { color: var(--accent-dark); font-size: 22px; font-weight: 800; text-align: center; }
.funnel-card .fsub { color: var(--muted); font-size: 13.5px; margin: 6px 0 18px; text-align: center; }
.funnel-card .addr-row { display: flex; gap: 10px; }
.addr-wrap { position: relative; }
.addr-suggest { position: absolute; top: 100%; left: 0; right: 0; margin-top: 6px; background: var(--surface);
  color: var(--ink); border-radius: 10px; box-shadow: 0 12px 34px rgba(34,48,60,.25); z-index: 30;
  overflow: hidden; text-align: left; }
.addr-suggest .s:hover, .addr-suggest .s.active { color: var(--ink); }
.addr-suggest .s { padding: 11px 14px; font-size: 14px; cursor: pointer; display: flex; gap: 9px; align-items: center; }
.addr-suggest .s:hover, .addr-suggest .s.active { background: var(--accent-tint); }
.addr-suggest .s .ic { opacity: .55; font-size: 12px; }
.funnel-card .addr-row input { flex: 1; min-width: 0; }
.funnel-card .addr-row .btn { white-space: nowrap; }
.funnel-card .fine { text-align: center; color: #9aa7b1; font-size: 11.5px; margin-top: 14px; }
.funnel-card .fine span:not(:last-child)::after { content: '·'; margin: 0 6px; }
.funnel-card .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 11.5px; color: var(--muted); margin-top: 14px; text-align: left; }
.funnel-card .consent input { width: auto; margin-top: 2px; flex: none; }
/* transactional disclosure shown under submit on every lead form (no checkbox) */
.fine-print { text-align: center; color: #9aa7b1; font-size: 11px; line-height: 1.45; margin-top: 12px; }
.fine-print a { color: #7f8c96; text-decoration: underline; }
/* big, inviting tap-anywhere opt-in card (two-tier: this = marketing opt-in) */
.sms-optin { background: var(--accent); border-radius: 11px; padding: 11px 12px 9px; margin-top: 12px; text-align: left; }
.sms-optin .sms-head { color: #fff; font-weight: 700; font-size: 12px; line-height: 1.35; margin: 0 0 8px; }
/* .sms-optin-prefixed so these beat the form's ".xxx label { display:block }" rules (0,2,0 > 0,1,1) */
.sms-optin .sms-pill { display: flex; align-items: center; gap: 10px; margin: 0; background: var(--surface); border-radius: 9px; padding: 9px 12px; cursor: pointer; border: 2px solid transparent; transition: border-color .12s ease; }
.sms-optin .sms-pill:has(input:checked) { border-color: var(--accent-dark); }
.sms-optin .sms-pill input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.sms-optin .sms-pill-label { flex: 1; margin: 0; font-size: 13.5px; font-weight: 700; color: var(--ink); }
/* selection = a filled circle on the RIGHT — sibling selector so it works everywhere */
.sms-optin .sms-circle { flex: none; width: 18px; height: 18px; border-radius: 50%; border: 2px solid #bcc6ad; background: var(--surface); position: relative; transition: background .12s ease, border-color .12s ease; }
.sms-optin .sms-pill input:checked ~ .sms-circle { background: var(--accent-dark); border-color: var(--accent-dark); }
.sms-optin .sms-pill input:checked ~ .sms-circle::after { content: ''; position: absolute; inset: 4px; border-radius: 50%; background: var(--surface); }
.sms-optin .sms-fine { color: rgba(255,255,255,.85); font-size: 10px; line-height: 1.4; margin: 7px 2px 0; }
.funnel-card label { display: block; font-weight: 600; font-size: 13.5px; margin: 14px 0 6px; }
.funnel-card input { width: 100%; border: 1.5px solid var(--line); border-radius: 10px; padding: 13px 14px;
  font-size: 15px; font-family: inherit; }
.funnel-card input:focus { outline: 2px solid var(--accent); border-color: transparent; }
.funnel-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fnav { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; }
.fnav .btn { flex: 1; text-align: center; }
.fnav .back { flex: 0 0 auto; }
.fnav .back { background: none; border: none; color: var(--muted); font-weight: 700; cursor: pointer;
  font-size: 14px; font-family: inherit; padding: 12px 6px; }
.fnav .back:hover { color: var(--ink); }
.ferr { display: none; margin-top: 12px; font-size: 14px; font-weight: 700; color: #fff; background: #b0533d; padding: 9px 14px; border-radius: 9px; text-align: center; }
.funnel .tier-grid { grid-template-columns: 1fr 1fr; margin-top: 8px; }
.svc-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.svc-opt { display: flex; gap: 12px; align-items: flex-start; background: var(--surface); border: 2px solid var(--line);
  border-radius: 12px; padding: 15px 16px; cursor: pointer; transition: border-color .15s; text-align: left;
  font-family: inherit; }
.svc-opt:hover { border-color: var(--accent); }
.svc-opt.selected { border-color: var(--accent-dark); box-shadow: 0 0 0 3px var(--accent-tint); }
.svc-opt .box { width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--line); flex-shrink: 0;
  margin-top: 2px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 900; }
.svc-opt.selected .box { background: var(--accent-dark); border-color: var(--accent-dark); }
.svc-opt .nm { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.svc-opt .ds { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
@media (max-width: 620px) { .funnel .tier-grid, .svc-pick, .funnel-card .row2 { grid-template-columns: 1fr; } }

/* width:100% (not just max-width) matters here: on mobile .hero .wrap becomes a
   column flexbox, and an auto-margin-centered block with no explicit width
   shrinks to fit-content in that context instead of stretching — 100% gives it
   a definite size to clamp with max-width, same centered result either way. */
.hero .funnel { width: 100%; margin: 0 auto; max-width: 760px; }
.hero .funnel-card { padding: 28px; }
.hero .funnel .tier-grid { margin-top: 4px; }
/* compact entry (step 0 only, .funnel-card.fc-compact toggled by the funnel's
   own show() JS): no card chrome, just the address pill + inline button
   floating on the hero photo — same idea as Florentine's compact quote bar. */
.funnel-card.fc-compact { background: transparent; box-shadow: none; padding: 0; border-radius: 0; }
.funnel-card.fc-compact .addr-row input,
.funnel-card.fc-compact .addr-row .btn { box-shadow: 0 10px 30px rgba(0,0,0,.28); }
@media (max-width: 600px) {
  /* stack instead of relying on flex-wrap — simpler and avoids fighting the
     `.funnel-card input { width: 100% }` / `.addr-row input { flex: 1 }`
     rules that assume the row layout used elsewhere in the funnel */
  .funnel-card.fc-compact .addr-row { display: block; }
  .funnel-card.fc-compact .addr-row input { width: 100%; margin-bottom: 10px; }
  .funnel-card.fc-compact .addr-row .btn { display: block; width: 100%; text-align: center; }
}

.f-status { margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--accent-dark); min-height: 18px; text-align: center; }
.est-inc { color: var(--accent-dark); font-weight: 800; font-size: 12.5px; letter-spacing: .02em; }
/* the hidden attribute must win over component display rules (e.g. .btn) */
[hidden] { display: none !important; }

/* ---------- standalone quote page (/free-quote/) ---------- */
.fq-page { max-width: 640px; margin: 0 auto; padding: 42px 20px 60px; text-align: center; }
.fq-logo img { height: 56px; width: auto; margin: 0 auto 26px; }
.fq-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; text-align: left; }
.fq-head { background: var(--accent); color: #fff; font-size: clamp(20px, 4vw, 26px); font-weight: 800; padding: 22px 28px; text-align: center; }
.fq-body { padding: 26px 28px 30px; }
.fq-sub { color: var(--muted); font-size: 14.5px; margin: 0 0 8px; text-align: center; }
.fq-foot { margin-top: 22px; font-size: 13px; color: var(--muted); }
.fq-foot a { color: var(--muted); }
.fq-foot a:hover { color: var(--ink); }
/* self-contained form styling so it looks right outside a .form-card too */
.quote-form label { display: block; font-weight: 600; font-size: 13.5px; margin: 16px 0 6px; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 13px; font-size: 14.5px; font-family: inherit; background: var(--surface); }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }
.quote-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: var(--muted); margin-top: 16px; }
.quote-form .consent input { width: auto; margin-top: 3px; }
.quote-form .btn { width: 100%; margin-top: 20px; }
@media (max-width: 560px) { .quote-form .row2 { grid-template-columns: 1fr; } }

/* ---------- legal pages (privacy / terms) ---------- */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { color: var(--ink); font-size: 20px; font-weight: 800; margin: 30px 0 10px; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: #40505d; margin: 0 0 12px; font-size: 15px; line-height: 1.75; }
.legal ul { margin: 0 0 14px; padding-left: 20px; color: #40505d; }
.legal li { margin: 6px 0; font-size: 15px; line-height: 1.6; }

/* ---------- calculator embed ---------- */
.calc-frame { border: 0; width: 100%; height: calc(100vh - 130px); min-height: 760px; max-height: 1200px;
  border-radius: 16px; box-shadow: var(--shadow); background: var(--surface); }
.calc-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 14px; }

.map-embed { width: 100%; border: 0; border-radius: 12px; box-shadow: var(--shadow-sm); display: block; margin-top: 14px; }

/* ---------- client hub ---------- */
.hub-login { max-width: 460px; margin: 0 auto; }
.demo-chip { display: inline-flex; align-items: center; gap: 8px; background: #fdf3d7; color: #7a5d1b;
  border: 1px solid #f0dfae; font-size: 12.5px; font-weight: 700; border-radius: 999px; padding: 6px 14px; }
.hub-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.hub-head h2 { color: var(--ink); font-size: 26px; font-weight: 800; }
.hub-head .who { color: var(--muted); font-size: 14px; margin-top: 4px; }
.hub-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; align-items: start; }
.hub-col { display: grid; gap: 22px; }
.timeline { display: grid; gap: 10px; margin-top: 14px; }
.tl-row { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; }
.tl-row .dot { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; flex-shrink: 0; background: var(--line); color: #fff; }
.tl-row.done .dot { background: var(--accent-dark); }
.tl-row.next .dot { background: var(--primary); }
.tl-row.next { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(59,79,96,.08); }
.tl-row .nm { font-weight: 700; font-size: 14.5px; }
.tl-row .dt { margin-left: auto; color: var(--muted); font-size: 13px; white-space: nowrap; }
.tl-row .st { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  border-radius: 999px; padding: 3px 10px; }
.tl-row.done .st { background: var(--accent-tint); color: var(--accent-dark); }
.tl-row.next .st { background: #e8eef4; color: var(--ink); }
.tl-row.todo .st { background: var(--cream); color: var(--muted); }
.hist { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 14px; }
.hist th { text-align: left; color: var(--muted); font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; padding: 8px 10px; border-bottom: 1px solid var(--line); }
.hist td { padding: 10px; border-bottom: 1px dashed var(--line); vertical-align: top; }
.hist td:first-child { white-space: nowrap; color: var(--muted); }
.kv { display: grid; gap: 8px; margin-top: 12px; }
.kv div { display: flex; gap: 12px; font-size: 14px; }
.kv .k { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; min-width: 92px; font-weight: 700; padding-top: 2px; }
@media (max-width: 980px) { .hub-grid { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
footer { background: var(--surface); color: var(--muted); border-top: 1px solid var(--line); }
/* compact: the footer is a sitemap, not a section — tight leading, no wasted rows */
footer .top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 26px; padding: 26px 0 14px; }
footer p { font-size: 13px; line-height: 1.5; }
footer h5 { color: var(--ink); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 9px; }
footer ul { list-style: none; }
footer li { margin-bottom: 3px; line-height: 1.45; }
footer a { color: var(--muted); font-size: 13.5px; }
footer a:hover { color: var(--ink); }
footer .contact-lines li { display: flex; gap: 8px; font-size: 13px; }
footer .nap-name { font-weight: 700; color: var(--ink); }
footer .brand .map-embed { max-width: 360px; margin-top: 12px; }
footer .footer-dir { display: inline-block; margin-top: 8px; font-weight: 700; color: var(--accent-dark); font-size: 13.5px; }
footer .footer-dir:hover { color: var(--ink); }
footer .bottom { border-top: 1px solid var(--line); display: flex; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; padding: 12px 0; font-size: 12.5px; color: var(--muted); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap, .why, .svc-intro, .contact-grid { grid-template-columns: 1fr; }
  .svc-intro img { height: auto; max-height: none; }
  .svc-grid, .val-grid, .rev-grid { grid-template-columns: 1fr 1fr; }
  .svc-flip-grid { grid-template-columns: 1fr 1fr; }
  .stats .grid { grid-template-columns: 1fr 1fr; }
  .town-grid { grid-template-columns: repeat(3, 1fr); }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  footer .top { grid-template-columns: 1fr 1fr; }
  .nav .menu-btn { display: block; }
  .nav-menu { display: none; }
  .nav.open .nav-menu { display: flex; flex-direction: column; align-items: stretch; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--surface); box-shadow: 0 14px 24px rgba(34,48,60,.15);
    padding: 12px 22px 22px; gap: 6px; max-height: calc(100vh - 80px); overflow-y: auto; }
  .nav.open .links { display: flex; flex-direction: column; align-items: stretch; gap: 2px; }
  .nav.open .links a { padding: 12px 4px; font-size: 15px; }
  .nav.open .dd > a { display: block; }  /* even row height for Services/Service Areas */
  .nav.open .links a { border-radius: 8px; }
  .nav.open .links a:hover, .nav.open .links a:active { background: var(--accent-tint); }
  .nav.open .nav-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 12px;
    padding-top: 14px; border-top: 1px solid var(--line); }
  .nav.open .nav-ctas .cta { width: 100%; text-align: center; padding: 14px; }
  /* mobile nav = 5 top links only (Home, Services, Service Areas, About, Reviews) — no sub-pages */
  .nav .dd-menu { display: none !important; }
  /* bigger hamburger + centered open menu */
  .nav .menu-btn { font-size: 28px; padding: 8px 18px; }
  .nav.open .nav-menu { align-items: center; }
  .nav.open .links { align-items: center; }
  .nav.open .links a { text-align: center; }
  /* compact Why PROTURF: drop intro copy + checklist */
  .why > div > p, .why .checks { display: none; }
  .why { margin-top: 20px; gap: 24px; }
  .rating-badge { left: 12px; }
}
@media (max-width: 620px) {
  .val-grid, .form-card .row2 { grid-template-columns: 1fr; }
  .svc-grid, .rev-grid, .gal-grid, .stats .grid { grid-template-columns: 1fr 1fr; }
  .rev-grid, .gal-grid { gap: 10px; }
  .rev-grid > *, .gal-grid > * { min-width: 0; }
  /* homepage shows 6 reviews on desktop but stays 4 on phones (overflow fix) */
  .home-reviews .rev-card:nth-child(n+5) { display: none; }
  .rev-card { padding: 15px; }
  .rev-card p { overflow-wrap: anywhere; }
  .town-grid { grid-template-columns: 1fr 1fr; }
  .quote-card form { flex-direction: column; }
  .topbar .wrap { justify-content: center; }
  .topbar .right { display: none; }
}

/* ===== Funnel v2 — Troops-style price + review steps (ProTurf palette) ===== */
/* progress bar */
.fprogbar { display: flex; align-items: flex-start; justify-content: space-between; margin: 0 0 22px; }
.fprog { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; }
.fprog::before { content: ''; position: absolute; top: 13px; left: -50%; width: 100%; height: 2px; background: var(--line); z-index: 0; }
.fprog:first-child::before { display: none; }
.fprog.done::before, .fprog.active::before { background: var(--accent); }
.fp-dot { position: relative; z-index: 1; width: 28px; height: 28px; border-radius: 50%; background: var(--surface); border: 2px solid var(--line); color: var(--muted); font-weight: 800; font-size: 13px; display: grid; place-items: center; }
.fprog.active .fp-dot { background: var(--primary); border-color: var(--primary); color: #fff; }
.fprog.done .fp-dot { background: var(--accent); border-color: var(--accent); color: transparent; font-size: 0; }
.fprog.done .fp-dot::after { content: '✓'; color: #fff; font-size: 14px; font-weight: 900; }
.fp-l { font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.fprog.active .fp-l, .fprog.done .fp-l { color: var(--ink); }

/* estimate step title box */
.est-head { font-size: 21px; font-weight: 800; color: var(--primary); border: 1.5px solid #cfd8e2; border-radius: 9px; padding: 9px 14px; letter-spacing: -.01em; }
.fpanel > .fsub { margin: 8px 2px 16px; }

/* recommended-package card */
.pkg-card { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.pkg-top { background: var(--accent); display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 18px; }
.pkg-name { font-size: 19px; font-weight: 800; color: #16210c; }
.pkg-badge { flex: none; background: #b4442f; color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: .06em; padding: 5px 11px; border-radius: 999px; }
.pkg-body { background: var(--primary-darker); color: #d7e0e7; padding: 20px 18px 18px; }
.pkg-lead { color: #c8d4a8; font-weight: 800; font-size: 16px; margin-bottom: 15px; }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin: 0; padding: 0; }
.pkg-list li { display: flex; gap: 11px; align-items: flex-start; }
.pkg-list .ck { flex: none; width: 22px; height: 22px; border-radius: 6px; background: var(--accent); color: #fff; font-weight: 900; font-size: 12px; display: grid; place-items: center; }
.pkg-list .md { flex: none; font-size: 17px; line-height: 22px; width: 22px; text-align: center; }
.pkg-list .pl-t { display: flex; flex-direction: column; }
.pkg-list .pl-t b { color: #fff; font-size: 14.5px; font-weight: 700; }
.pkg-list .pl-t small { color: #9fb0bd; font-size: 12.5px; line-height: 1.35; }
.pkg-div { color: #8296a3; font-size: 10.5px; font-weight: 800; letter-spacing: .09em; margin: 17px 0 13px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.13); }
.pkg-price { display: flex; align-items: center; gap: 15px; background: rgba(0,0,0,.24); border-radius: 12px; padding: 14px 16px; margin-top: 17px; }
.pp-left { display: flex; align-items: flex-start; color: var(--accent); line-height: .9; }
.pp-dollar { font-size: 22px; font-weight: 800; margin-top: 8px; }
.pp-num { font-size: 56px; font-weight: 900; letter-spacing: -.03em; }
.pp-per { font-size: 12px; font-weight: 800; color: #fff; text-transform: uppercase; margin: 7px 0 0 8px; line-height: 1.05; }
.pp-right { flex: 1; min-width: 0; }
.pp-range { color: #fff; font-weight: 700; font-size: 13px; line-height: 1.3; }
.pp-stars { color: #e2a93b; font-weight: 700; font-size: 12.5px; margin-top: 4px; }
.pp-note { color: #9fb0bd; font-size: 12px; font-style: italic; margin: 11px 2px 0; line-height: 1.4; }
.pkg-cta { width: 100%; margin-top: 16px; background: var(--accent); color: #fff; font-size: 16px; padding: 15px; border: none; }
.pkg-cta:hover { background: var(--accent-dark); }
.pkg-nc { text-align: center; color: #8296a3; font-size: 10.5px; font-weight: 800; letter-spacing: .1em; margin-top: 13px; }
.pkg-alt { text-align: center; margin-top: 15px; }
.pkg-alt a { color: var(--ink); font-weight: 700; font-size: 13.5px; text-decoration: underline; }

/* review / confirm step */
.sum-card { border: 1px solid var(--line); border-radius: 14px; padding: 2px 16px; background: var(--surface); }
.sum-row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.sum-row:last-child { border-bottom: none; }
.sum-row .sk { flex: none; color: #8a97a2; font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.sum-row .sv { color: var(--ink); font-weight: 700; font-size: 15px; text-align: right; }
.sum-row .sv-price { display: flex; flex-direction: column; align-items: flex-end; font-size: 18px; font-weight: 800; }
.sum-row .sv small { display: block; color: #8a97a2; font-weight: 500; font-size: 11.5px; margin-top: 2px; }
.sum-note { color: #8a97a2; font-size: 12px; font-style: italic; margin: 12px 2px 0; line-height: 1.4; }

.addon-card { background: var(--accent-tint); border: 1px solid #f0cdd3; border-radius: 14px; padding: 15px 16px; margin-top: 16px; }
.addon-h { font-weight: 800; color: var(--ink); font-size: 15px; margin-bottom: 8px; }
.addon-card .addon-opt { display: flex; align-items: center; gap: 11px; margin: 0; padding: 11px 0; border-top: 1px solid #f0cdd3; cursor: pointer; }
.addon-card .addon-opt:first-of-type { border-top: none; }
.addon-card .addon-opt input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.addon-card .addon-opt .ck2 { flex: none; width: 22px; height: 22px; border-radius: 6px; border: 2px solid #b7c39f; background: var(--surface); position: relative; }
.addon-card .addon-opt input:checked ~ .ck2 { background: var(--accent-dark); border-color: var(--accent-dark); }
.addon-card .addon-opt input:checked ~ .ck2::after { content: '✓'; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 13px; font-weight: 900; }
.addon-card .addon-opt .an { flex: 1; display: flex; flex-direction: column; color: var(--ink); font-weight: 700; font-size: 14.5px; }
.addon-card .addon-opt .an small { color: var(--muted); font-weight: 500; font-size: 12px; }
.addon-card .addon-opt .ap { flex: none; color: var(--ink); font-weight: 800; font-size: 14px; white-space: nowrap; }

.review-card { background: var(--accent-tint); border: 1px solid #f0cdd3; border-radius: 14px; padding: 15px 16px; margin-top: 16px; }
.review-h { font-weight: 800; color: var(--ink); font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 11px; }
.review-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 0; padding: 0; }
.review-list li { display: flex; gap: 9px; align-items: flex-start; color: var(--ink); font-size: 13.5px; line-height: 1.4; }
.review-list .rk { color: var(--accent-dark); font-weight: 900; flex: none; }

.funnel-card .auth { display: flex; align-items: flex-start; gap: 11px; margin: 18px 2px 0; cursor: pointer; }
.funnel-card .auth input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.funnel-card .auth .ck2 { flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 6px; border: 2px solid var(--line); background: var(--surface); position: relative; }
.funnel-card .auth input:checked ~ .ck2 { background: var(--accent-dark); border-color: var(--accent-dark); }
.funnel-card .auth input:checked ~ .ck2::after { content: '✓'; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 13px; font-weight: 900; }
.funnel-card .auth .auth-t { flex: 1; color: var(--ink); font-weight: 600; font-size: 13.5px; line-height: 1.45; }

/* ===== service-page hero calculator ===== */
/* The card is only the address step — wide and short, centred against the
   headline rather than top-aligned, so the hero band stays shallow. */
.page-hero.with-calc .wrap { display: grid; grid-template-columns: 1fr 440px; gap: 44px; align-items: center; padding-top: 46px; padding-bottom: 46px; }
/* a notch smaller than a normal page hero — the calc card takes 440px of the
   row, and at 40px the longest service titles wrapped to three lines */
.page-hero.with-calc h1 { max-width: none; font-size: clamp(26px, 2.8vw, 36px); }
.page-hero.with-calc p { max-width: 520px; }
.page-hero .ph-content { min-width: 0; padding-top: 6px; }
.page-hero .funnel { margin: 0; max-width: none; }
.page-hero .funnel-card { padding: 24px 22px; }
@media (max-width: 900px) {
  .page-hero.with-calc .wrap { grid-template-columns: 1fr; gap: 26px; padding-top: 40px; padding-bottom: 40px; }
  .page-hero .funnel-card { padding: 22px 20px; }
}

/* ===== topbar link + service-area map (Leaflet, homepage "Our Home Base") ===== */
.topbar a { color: #fff; font-weight: 600; }
/* `isolation` contains Leaflet's internal pane/control z-index (400-1000+) to
   this card — without it, Leaflet's zoom controls and tile panes paint over
   the sticky nav (z-index 60) once the map scrolls near it. Same trap already
   documented on the old .area-map Google-embed component; missed it here
   when this replaced that component. */
.svc-map-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px; margin-top: 26px; align-items: stretch; }
.svc-map-frame { position: relative; isolation: isolate; height: 440px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); background: var(--cream); }
.svc-area-btns { display: flex; flex-direction: column; gap: 12px; }
.svc-area-btn { background: var(--accent); color: #fff; text-align: center; font-weight: 800; font-size: 14.5px;
  letter-spacing: .03em; border-radius: 12px; padding: 18px 16px; box-shadow: var(--shadow-sm);
  transition: background-color .15s ease, transform .15s ease; }
.svc-area-btn:hover { background: var(--accent-dark); transform: translateY(-2px); }
.svc-area-ask { display: block; text-align: center; margin-top: 4px; font-weight: 700; font-size: 13.5px; color: var(--ink); text-decoration: underline; }
@media (max-width: 900px) {
  .svc-map-wrap { grid-template-columns: 1fr; }
  .svc-map-frame { height: 320px; }
  .svc-area-btns { flex-direction: row; flex-wrap: wrap; }
  .svc-area-btn { flex: 1 1 calc(50% - 6px); }
  .svc-area-ask { flex-basis: 100%; }
}

/* Collapses whatever header sits above the funnel (free-quote's eyebrow/title/
   sub, or the hero's h1 on the stacked mobile layout) once the funnel leaves
   the address step — ported from the platform's glass-hero chrome collapse
   (#107). `grid-template-rows: 1fr -> 0fr` animates a height nothing has to
   guess in advance; the inner wrapper supplies the `overflow:hidden` +
   `min-height:0` the trick needs (a grid track can't clip its own item). */
.hero-chrome { display: grid; grid-template-rows: 1fr; transition: grid-template-rows .35s ease, opacity .3s ease; opacity: 1; }
.hero-chrome.collapsed { grid-template-rows: 0fr; opacity: 0; }
.hero-chrome-inner { overflow: hidden; min-height: 0; }
@media (prefers-reduced-motion: reduce) { .hero-chrome { transition: none; } }

/* ===== funnel v3 — size photos + 3 packages ===== */
/* size cards with photos (funnel only; pricing-page estimator keeps its grid) */
.funnel .tier-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 6px; }
.funnel .tier-card { padding: 0; overflow: hidden; text-align: left; }
/* tall enough to read as a room, not just a strip of floor */
.funnel .tier-card .t-photo { display: block; width: 100%; height: 110px; background-size: cover; background-position: center; }
.funnel .tier-card .t-body { display: block; padding: 10px 12px 12px; }
.funnel .tier-card .t-name { display: block; font-size: 11px; }
.funnel .tier-card .t-range { display: block; font-size: 13px; margin-top: 2px; }
.funnel .tier-card .flag { top: 8px; left: 8px; transform: none; z-index: 2; }
/* email hint */
.f-hint { color: var(--accent-dark); font-size: 12.5px; font-weight: 600; margin-top: 10px; }
.pkg-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.pk-card { position: relative; display: block; width: 100%; background: var(--surface); border: 2px solid var(--line); border-radius: 12px; padding: 14px 16px; cursor: pointer; text-align: left; font-family: inherit; transition: border-color .12s ease, box-shadow .12s ease, transform .12s ease; }
.pk-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.pk-card.pop { border-color: var(--accent); }
.pk-flag { position: absolute; top: -10px; right: 14px; background: var(--accent); color: #16210c; font-size: 10px; font-weight: 800; letter-spacing: .04em; padding: 3px 10px; border-radius: 999px; }
.pk-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.pk-name { font-weight: 800; color: var(--ink); font-size: 16px; }
.pk-price { font-weight: 900; color: var(--accent-dark); font-size: 22px; line-height: 1; white-space: nowrap; }
.pk-per { font-size: 12px; font-weight: 700; color: var(--muted); margin-left: 1px; }
.pk-feats { display: block; color: var(--muted); font-size: 12.5px; font-weight: 600; margin-top: 6px; line-height: 1.4; }
.pk-pick { display: inline-block; margin-top: 10px; font-size: 12.5px; font-weight: 800; color: var(--ink); }
.pp-disclaim { color: var(--muted); font-size: 11.5px; text-align: center; margin-top: 14px; font-style: italic; line-height: 1.4; }

/* Service checklist — single column by default so it fits the narrow hero sidebar
   embed too; the container queries below only fire once the funnel card itself has
   room, since a viewport media query can't tell the narrow hero embed apart from
   the wide standalone /free-quote/ page. Two tiers: a compact 2-up for the hero
   embed (shorter cards, tighter type — there isn't room for the roomier version),
   and the roomier 2-up once the card is wide enough (the standalone page). Must
   come AFTER the base .pk-card/.pk-name/.pk-feats rules above — same specificity,
   so source order is what lets these actually override them. */
@container (min-width: 460px) {
  .pkg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 11px; }
  .pk-card { padding: 10px 12px; }
  .pk-name { font-size: 14.5px; }
  .pk-feats { font-size: 11px; margin-top: 3px; line-height: 1.3; }
}
@container (min-width: 640px) {
  .pkg-grid { gap: 12px 14px; }
  .pk-card { padding: 14px 16px; }
  .pk-name { font-size: 16px; }
  .pk-feats { font-size: 12.5px; margin-top: 6px; line-height: 1.4; }
}

/* ---------- footer Client Hub — pill CTA so existing customers spot their portal ---------- */
footer .footer-hub { display: inline-block; margin-top: 10px; padding: 7px 15px; border: 1.5px solid var(--accent);
  border-radius: 999px; color: var(--accent-dark); font-weight: 700; font-size: 13px; }
footer .footer-hub:hover { background: var(--accent); color: #16210c; }

/* stop step-change scroll jump in the instant-quote calculator: disable the
   browser's scroll-anchoring so a taller/shorter step doesn't nudge the page */
body { overflow-anchor: none; }

/* click-to-call in the nav */
.nav-call { display: inline-flex; align-items: center; font-weight: 700; color: var(--ink); font-size: 13.5px; white-space: nowrap; padding: 6px; }
.nav-call:hover { color: var(--accent-dark); }
@media (max-width: 980px) { .nav.open .nav-call { justify-content: center; padding: 12px; border: 1px solid var(--line); border-radius: 8px; } }

/* package selection (pick then Continue) */
.pk-card.sel { border-color: var(--accent-dark); box-shadow: 0 0 0 3px var(--accent-tint); }
.pk-choose { display: inline-block; margin-top: 10px; }
.pk-choose::before { content: 'Tap to choose'; color: var(--muted); font-weight: 700; font-size: 12.5px; }
.pk-card.sel .pk-choose::before { content: '✓ Selected'; color: var(--accent-dark); }

/* service checklist (multi-select by checkbox — free-quote funnel "Services" step) */
.pk-ck { flex: none; width: 22px; height: 22px; border-radius: 6px; border: 2px solid var(--line); background: var(--surface); position: relative; }
.svc-check.sel .pk-ck { background: var(--accent-dark); border-color: var(--accent-dark); }
.svc-check.sel .pk-ck::after { content: '✓'; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 13px; font-weight: 900; }

/* Each service card shows a photo of that service — a scrim keeps the name/blurb
   readable over whatever photo lands there, white text throughout. */
.svc-check { background-size: cover; background-position: center; min-height: 112px;
  display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border-color: rgba(255,255,255,.35); }
.pk-scrim { position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, rgba(20,22,26,.32) 0%, rgba(20,22,26,.78) 100%); }
.svc-check .pk-top, .svc-check .pk-feats { position: relative; z-index: 1; }
.svc-check .pk-name { color: #fff; }
.svc-check .pk-feats { color: rgba(255,255,255,.88); max-height: 0; opacity: 0; margin-top: 0; overflow: hidden;
  transition: max-height .22s ease, opacity .18s ease, margin-top .22s ease; }
.svc-check:hover, .svc-check:focus-visible { border-color: rgba(255,255,255,.6); }
.svc-check:hover .pk-feats, .svc-check:focus-visible .pk-feats { max-height: 100px; opacity: 1; margin-top: 6px; }
.svc-check.sel { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }


/* center desktop nav links (logo left, links centered, ctas right) */
@media (min-width: 981px) {
  .nav .brand { margin-right: 0; }
  .nav .nav-menu { flex: 1; }
  .nav .nav-menu .links { margin: 0 auto; }
}

/* narrow desktops: the one-line logo is wide, so tighten the whole nav row
   rather than let the Get Free Quote button run off the right edge */
@media (min-width: 981px) and (max-width: 1240px) {
  .nav .wrap { min-height: 82px; gap: 12px; }
  .nav .brand img { height: 52px; }
  .nav .links { gap: 13px; }
  .nav .links a { font-size: 14px; }
  .nav-call { font-size: 12.5px; padding: 6px 2px; }
  .nav .cta { padding: 11px 14px; font-size: 14px; }
}

/* compact review step + about-hero TURF accent */
.sum-card .sum-row { padding: 10px 0; }
.sum-assure { color: var(--accent-dark); font-size: 12px; font-weight: 600; text-align: center; margin: 12px 6px 0; line-height: 1.5; }
.page-hero h1 .hl { color: var(--accent); }

/* mobile: hero-left's own children (rule/eyebrow/h1/lede/btns/trust) already read
   top-to-bottom in the order we want, so just stack hero-left as one block above
   the funnel card — no need to unwrap it into the flex flow with `order` hacks. */
@media (max-width: 980px) {
  .hero .wrap { display: flex; flex-direction: column; gap: 16px; padding-top: 16px; padding-bottom: 26px; align-items: stretch; }
  .hero .funnel-card { padding: 20px 18px; }
}

/* mobile: kill parallax (janky/clipped on phones) + compact the page to cut scrolling */
@media (max-width: 980px) {
  .nav .dd { display: block; }
  .band-photo.parallax { background-attachment: scroll; }
  section.band { padding: 32px 0; }
  .cta-band { padding: 44px 0; }
  .cta-band .btns { margin-top: 22px; }
  .communities { padding: 40px 0; }
  p.sub { margin-top: 10px; }
}

/* split-hero left column keeps the old top padding on desktop */
.hero .hero-left { padding-top: 16px; }
/* calc scroll-to-top lands below the sticky nav */
#funnel { scroll-margin-top: 80px; }
/* responsive calc heading: full on web, short on mobile */
.fh-sm { display: none; }

/* mobile: centered logo + hamburger (no box) + short heading */
@media (max-width: 980px) {
  .hero .hero-left { padding-top: 0; }
  .nav .wrap { justify-content: center; gap: 10px; min-height: 80px; }
  .nav .brand { margin-right: 0; }
  .nav .brand img { height: 54px; }
  .nav .menu-btn { border: none; padding: 4px 6px; font-size: 30px; }
  .fh-lg { display: none; }
  .fh-sm { display: inline; }
}

/* compact footer on phones (no text removed) */
@media (max-width: 620px) {
  footer .top { grid-template-columns: 1fr 1fr; gap: 16px 22px; padding: 24px 0 12px; }
  footer .top > .brand { grid-column: 1 / -1; }
  .footer-brand img { height: 48px; }
  .footer-brand { margin-bottom: 8px; }
  footer .brand p { font-size: 12.5px; line-height: 1.5; }
  footer .contact-lines { margin-top: 10px !important; }
  footer .contact-lines li { font-size: 12.5px; }
  footer h5 { margin-bottom: 8px; }
  footer li { margin-bottom: 4px; }
  footer a { font-size: 13px; }
  footer .footer-dir { margin-top: 8px; }
  footer .footer-hub { margin-top: 8px; }
  footer .bottom { flex-direction: column; align-items: center; text-align: center; gap: 5px; padding: 12px 0; }
}

/* compact funnel price/review on phones so Continue/submit is above the fold */
@media (max-width: 620px) {
  .funnel-card { padding: 16px 14px; }
  .funnel .fprogbar { margin-bottom: 12px; }
  .funnel-card .est-head { font-size: 16px; padding: 6px 12px; }
  .funnel .fpanel > .fsub { margin: 5px 2px 8px; font-size: 12.5px; }
  .pkg-grid { gap: 8px; margin-top: 2px; }
  .pk-card { padding: 9px 13px; }
  .pk-name { font-size: 15px; }
  .pk-price { font-size: 19px; }
  .pk-feats { font-size: 11.5px; margin-top: 3px; line-height: 1.35; }
  .pk-choose { display: none; }
  .pk-flag { font-size: 9px; padding: 2px 8px; top: -8px; }
  .pp-disclaim { font-size: 10px; margin-top: 8px; line-height: 1.4; }
  .funnel .fnav { margin-top: 10px; }
}

/* service-area map — the overlay card sits above the embed, inside .area-map's
   own stacking context (see the `isolation` note up top) */
.area-map .area-overlay { z-index: 2; }

/* ----------------------------------------------------------- scroll reveal
   Subtle fade-up as sections scroll into view. Progressive enhancement: the
   [data-reveal] attributes are added by the footer script only when motion is
   allowed, so with JS off OR reduced-motion on, nothing is ever hidden. */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1.4s cubic-bezier(.22, 1, .36, 1), transform 1.4s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
  }
  /* opacity-only variant for elements that already animate on hover */
  [data-reveal="fade"] { transform: none; }
  [data-reveal].is-in { opacity: 1; transform: none; }
}

/* -------------------------------------------- instant-quote: out-of-area */
.fwarn { margin: 10px 2px 0; color: #8a5a12; background: #fdf3e3; border: 1px solid #e9c877;
  border-radius: 10px; padding: 9px 12px; font-size: 13.5px; line-height: 1.45; text-align: left; }
.foos { text-align: center; padding: 6px 4px 4px; }
.foos-icon { color: var(--accent-dark); margin-bottom: 6px; }
.foos-icon svg { width: 34px; height: 34px; }
.foos h3 { color: var(--accent-dark); font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.foos > p { color: var(--muted); font-size: 14.5px; line-height: 1.55; max-width: 30rem; margin: 0 auto 18px; }
.foos-form { display: flex; flex-direction: column; gap: 10px; max-width: 22rem; margin: 0 auto; text-align: left; }
.foos-form input { width: 100%; border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; font: inherit; font-size: 15px; color: var(--ink); background: var(--surface); }
.foos-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.foos-status { min-height: 18px; margin-top: 12px; font-size: 13.5px; color: var(--muted); }
.foos-status.ok { color: var(--accent-dark); font-weight: 600; }
.foos-status.err { color: #b4453a; }
.foos-meanwhile { margin-top: 16px; font-size: 13.5px; color: var(--muted); }
.foos-meanwhile a { font-weight: 700; }
.foos-alt { display: inline-block; margin-top: 12px; background: none; border: none; font: inherit;
  font-size: 13px; color: var(--muted); text-decoration: underline; cursor: pointer; }
.foos-alt:hover { color: var(--accent-dark); }

/* -------------------------------------------- instant-quote: done (callback confirmation) */
.fdone-icon { color: var(--accent-dark); text-align: center; margin-bottom: 6px; }
.fdone-icon svg { width: 34px; height: 34px; }
.fpanel[data-panel="5"] .sum-card { margin-top: 16px; }
.fdone-alt { text-align: center; margin-top: 14px; font-size: 13.5px; color: var(--muted); }
.fdone-alt a { font-weight: 700; color: var(--accent-dark); }
