/* ============================================
   WeatherB — Shingle & Concrete Preservation
   Charcoal #303235 / Orange #EA5A13
   ============================================ */

:root {
  --color-primary: #EA5A13;
  --color-primary-dk: #c9490c;
  --color-primary-rgb: 234, 90, 19;
  --color-charcoal: #303235;
  --color-charcoal-dk: #1f2123;
  --color-ink: #1a1c1e;
  --color-body: #4b4f54;
  --color-off: #f6f5f3;
  --color-line: #e5e3df;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-body);
  background: #fff;
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--color-ink); line-height: 1.1; }
h1 { font-weight: 900; font-size: clamp(40px, 5.2vw, 68px); letter-spacing: -0.02em; }
h2 { font-weight: 800; font-size: clamp(30px, 3.6vw, 46px); letter-spacing: -0.01em; }
h3 { font-weight: 700; font-size: clamp(20px, 2vw, 26px); }
p { margin-bottom: 16px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.accent { color: var(--color-primary); }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
section { position: relative; }

/* ---------- NAV ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(31, 33, 35, 0.75);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 32px; }
.nav-logo img { height: 34px; width: auto; }
.nav-logo .logo-dark { display: none; }
nav.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 2px 24px rgba(0,0,0,.08); border-bottom-color: var(--color-line); }
nav.scrolled .logo-white { display: none; }
nav.scrolled .logo-dark { display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: 8px; }
.nav-link { color: rgba(255,255,255,.9); font-size: 15px; font-weight: 500; transition: color .2s; position: relative; }
.nav-link:hover { color: #fff; }
nav.scrolled .nav-link { color: #3a3d42; }
nav.scrolled .nav-link:hover { color: var(--color-primary); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.nav-phone { color: rgba(255,255,255,.92); font-weight: 600; font-size: 15px; }
nav.scrolled .nav-phone { color: var(--color-charcoal); }
.nav-cta {
  background: var(--color-primary); border: 1px solid var(--color-primary);
  color: #fff !important; padding: 10px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 700; white-space: nowrap;
  transition: background .35s, border-color .35s, color .35s, transform .2s, box-shadow .2s;
}
.nav-cta:hover { background: var(--color-primary-dk); border-color: var(--color-primary-dk); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(234,90,19,.35); }

/* dropdown */
.nav-item { position: relative; }
.nav-item > .nav-link { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-chev { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .25s; }
.nav-item:hover .nav-chev { transform: rotate(-135deg) translateY(-2px); }
.dropdown {
  opacity: 0; transform: translateY(4px); pointer-events: none;
  position: absolute; top: 100%; left: 0; background: #fff;
  border: 1px solid var(--color-line); border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1); min-width: 230px; padding: 8px; padding-top: 12px;
  z-index: 200; transition: opacity .2s ease, transform .2s ease;
}
.dropdown::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; transform: translateY(0); pointer-events: all; }
.nav-item:not(:hover) .dropdown:not(:hover) { transition-delay: .1s; }
.dropdown a { display: block; padding: 10px 14px; border-radius: 7px; color: #3a3d42; font-size: 15px; font-weight: 500; transition: background .15s, color .15s; }
.dropdown a:hover { background: var(--color-off); color: var(--color-primary); }

/* hamburger + mobile */
.hamburger { display: none; flex-direction: column; cursor: pointer; background: none; border: none; padding: 6px; margin-left: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,.9); margin: 5px 0; border-radius: 2px; transition: background .35s, transform .3s, opacity .3s; }
nav.scrolled .hamburger span { background: #374151; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; top: 0; right: 0; bottom: 0; width: min(330px, 86vw); background: #fff; z-index: 130; padding: 92px 28px 32px; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); box-shadow: -8px 0 40px rgba(0,0,0,.15); overflow-y: auto; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display: block; padding: 14px 0; font-size: 18px; font-weight: 600; color: var(--color-ink); border-bottom: 1px solid var(--color-line); }
.mobile-menu .m-sub { font-size: 15px; font-weight: 500; color: var(--color-body); padding-left: 16px; }
.mobile-cta { margin-top: 24px; background: var(--color-primary); color: #fff !important; text-align: center; border-radius: 8px; padding: 15px; border-bottom: none !important; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 120; opacity: 0; pointer-events: none; transition: opacity .35s; }
.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ---------- GRAIN ---------- */
.grain { position: absolute; inset: 0; pointer-events: none; opacity: .05; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 180px 180px;
}

/* ---------- HERO ---------- */
.hero { position: relative; background: var(--color-charcoal-dk); color: #fff; padding: 150px 0 96px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; opacity: .28; background-size: cover; background-position: center; transform: scale(1.08); transition: transform 7s ease-out; }
.hero-bg.zoomed { transform: scale(1); }
.hero::after { content: ''; position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at 30% 20%, rgba(234,90,19,.14), transparent 55%); }
.hero-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero-lead { font-size: 19px; color: rgba(255,255,255,.82); max-width: 540px; margin-bottom: 28px; }
.hero-badge-row { display: flex; align-items: center; gap: 18px; margin-top: 28px; flex-wrap: wrap; }
.hero-badge-row img { height: 62px; width: auto; border-radius: 8px; background: #fff; padding: 6px 10px; }
.hero-badge-cap { font-size: 13px; color: rgba(255,255,255,.6); max-width: 180px; line-height: 1.4; }
.hero-rating { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; font-size: 14px; color: rgba(255,255,255,.85); }
.hero-stars { color: #ffb400; letter-spacing: 2px; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--color-primary); color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 16px; padding: 16px 32px; border-radius: 8px; border: none; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { background: var(--color-primary-dk); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(234,90,19,.4); }
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-ghost { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.2); box-shadow: none; }
.btn-booster { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 12px; }

/* ---------- QUIZ CARD ---------- */
.quiz-card { background: rgba(255,255,255,.09); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.18); border-radius: 18px; box-shadow: 0 24px 64px rgba(0,0,0,.3); padding: 32px; }
.quiz-step-label { color: var(--color-primary); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.quiz-question { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 23px; margin-bottom: 20px; }
.quiz-option { display: block; width: 100%; text-align: left; background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.2); color: rgba(255,255,255,.92); padding: 14px 18px; border-radius: 10px; margin-bottom: 10px; font-size: 15px; font-weight: 500; cursor: pointer; transition: border-color .15s, background .15s, transform .15s; font-family: var(--font-body); }
.quiz-option:hover { background: rgba(255,255,255,.14); border-color: var(--color-primary); transform: translateY(-2px); }
.quiz-option.selected { border-color: var(--color-primary); background: rgba(234,90,19,.2); }
.quiz-input { width: 100%; background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.2); color: #fff; padding: 14px 16px; border-radius: 10px; margin-bottom: 12px; font-size: 15px; font-family: var(--font-body); }
.quiz-input::placeholder { color: rgba(255,255,255,.45); }
.quiz-input:focus { border-color: var(--color-primary); outline: none; }
.quiz-progress { display: flex; gap: 6px; margin-bottom: 20px; }
.quiz-dot { flex: 1; height: 4px; border-radius: 2px; background: rgba(255,255,255,.2); transition: background .3s; }
.quiz-dot.done { background: var(--color-primary); }
.quiz-success { text-align: center; padding: 12px 0; }
.quiz-success h3 { color: #fff; margin-bottom: 8px; }
.quiz-success p { color: rgba(255,255,255,.7); font-size: 15px; }

/* ---------- TRUST BAR ---------- */
.trust-bar { background: var(--color-off); border-bottom: 1px solid var(--color-line); padding: 20px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 40px; }
.trust-inner span { font-size: 14px; font-weight: 600; color: var(--color-charcoal); display: inline-flex; align-items: center; gap: 8px; }
.trust-inner .tk { color: var(--color-primary); font-weight: 800; }

/* ---------- SECTIONS ---------- */
.eyebrow-none {}
.sec-head { max-width: 720px; margin-bottom: 48px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p { font-size: 18px; color: var(--color-body); margin-top: 14px; }
.bg-off { background: var(--color-off); }
.bg-dark { background: var(--color-charcoal); color: #fff; }
.bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark p { color: rgba(255,255,255,.75); }
.bg-primary { background: var(--color-primary); color: #fff; }
.bg-primary h2 { color: #fff; }
.bg-primary p { color: rgba(255,255,255,.9); }

/* dual path */
.dual { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.path-card { position: relative; border-radius: 18px; overflow: hidden; min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; color: #fff; border: 1px solid var(--color-line); transition: transform .3s, box-shadow .3s; }
.path-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.18); }
.path-card-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transition: transform .5s; }
.path-card:hover .path-card-bg { transform: scale(1.05); }
.path-card::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(20,21,23,.92) 12%, rgba(20,21,23,.5) 55%, rgba(20,21,23,.25)); }
.path-card.concrete::after { background: linear-gradient(to top, rgba(234,90,19,.92) 8%, rgba(180,60,10,.55) 50%, rgba(20,21,23,.35)); }
.path-card-body { position: relative; z-index: 2; }
.path-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: rgba(255,255,255,.2); padding: 5px 12px; border-radius: 20px; margin-bottom: 14px; }
.path-card h3 { color: #fff; font-size: 28px; margin-bottom: 10px; }
.path-card p { color: rgba(255,255,255,.9); font-size: 15px; margin-bottom: 18px; }
.path-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: #fff; font-size: 15px; }
.path-link .arr { transition: transform .2s; }
.path-card:hover .path-link .arr { transform: translateX(4px); }

/* feature grid */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-card { background: #fff; border: 1px solid var(--color-line); border-radius: 14px; padding: 30px; transition: transform .2s, box-shadow .2s; }
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.bg-dark .feat-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.feat-icon { width: 46px; height: 46px; border-radius: 10px; background: rgba(234,90,19,.12); color: var(--color-primary); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.feat-card h3 { font-size: 20px; margin-bottom: 8px; }
.feat-card p { font-size: 15px; margin-bottom: 0; }

/* proof strip */
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.proof-num { font-family: var(--font-display); font-weight: 900; font-size: 44px; color: var(--color-primary); line-height: 1; margin-bottom: 8px; }
.proof-lbl { font-size: 14px; color: rgba(255,255,255,.7); }

/* process */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { position: relative; padding-top: 12px; }
.step-n { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 10px; }
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { font-size: 15px; }
.step-img { border-radius: 14px; overflow: hidden; margin-bottom: 18px; height: 200px; }
.step-img img { width: 100%; height: 100%; object-fit: cover; }

/* testimonials */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border: 1px solid var(--color-line); border-radius: 14px; padding: 28px; transition: transform .2s, box-shadow .2s; }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.review-result { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--color-ink); margin-bottom: 12px; }
.review-stars { color: #ffb400; letter-spacing: 2px; margin-bottom: 12px; }
.review-quote { font-size: 15px; color: var(--color-body); margin-bottom: 16px; }
.review-name { font-weight: 700; color: var(--color-ink); font-size: 15px; }
.review-loc { font-size: 13px; color: var(--color-body); }
.agg-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--color-off); border: 1px solid var(--color-line); border-radius: 30px; padding: 10px 22px; font-weight: 600; font-size: 15px; margin-top: 32px; }

/* faq */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 24px 44px 24px 0; font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--color-ink); cursor: pointer; position: relative; }
.faq-q::after { content: '+'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 26px; color: var(--color-primary); font-family: var(--font-body); transition: transform .3s; }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-a-inner { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-text { padding: 0 0 24px; font-size: 16px; color: var(--color-body); border-left: 3px solid var(--color-primary); padding-left: 20px; }
.faq-a-text .micro-cta { display: block; margin-top: 12px; font-weight: 600; color: var(--color-primary); }

/* FAQ on dark sections — brighten for readability */
.bg-dark .faq-item { border-bottom-color: rgba(255,255,255,.15); }
.bg-dark .faq-q { color: #fff; }
.bg-dark .faq-q:hover { color: var(--color-primary); }
.bg-dark .faq-a-text { color: rgba(255,255,255,.82); }
.bg-dark .faq-a-text .micro-cta { color: #ff8a4d; }
.bg-dark .faq-q::after { color: var(--color-primary); }

/* areas */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 24px; margin-top: 32px; }
.areas-grid a { padding: 8px 0; font-size: 15px; color: var(--color-body); border-bottom: 1px solid transparent; transition: color .2s, padding-left .2s; }
.areas-grid a:hover { color: var(--color-primary); padding-left: 4px; }

/* final cta */
.final-cta { text-align: center; }
.final-cta h2 { max-width: 780px; margin: 0 auto 20px; }
.final-cta p { max-width: 560px; margin: 0 auto 32px; font-size: 18px; }

/* footer */
footer { background: #17191b; color: rgba(255,255,255,.7); padding: 64px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.foot-logo img { height: 40px; margin-bottom: 18px; }
.foot-col h4 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 15px; margin-bottom: 16px; letter-spacing: .02em; }
.foot-col a { display: block; color: rgba(255,255,255,.6); font-size: 15px; padding: 6px 0; transition: color .2s, padding-left .2s; }
.foot-col a:hover { color: var(--color-primary); padding-left: 4px; }
.foot-contact p { font-size: 15px; margin-bottom: 8px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.45); }
.foot-bottom a { color: rgba(255,255,255,.55); }

/* sticky bar */
.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--color-charcoal); border-top: 3px solid var(--color-primary); padding: 14px 24px; transform: translateY(100%); transition: transform .4s, opacity .3s; box-shadow: 0 -8px 30px rgba(0,0,0,.2); }
.sticky-bar.visible { transform: translateY(0); }
.sticky-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.sticky-text { color: #fff; font-size: 16px; font-weight: 600; }
.sticky-text span { color: var(--color-primary); }
.sticky-actions { display: flex; align-items: center; gap: 14px; }
.sticky-phone { color: #fff; font-weight: 700; font-size: 17px; white-space: nowrap; }
.sticky-close { background: none; border: none; color: rgba(255,255,255,.5); font-size: 22px; cursor: pointer; padding: 0 4px; }

/* reveal */
.js-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; } .reveal-d3 { transition-delay: .3s; }

/* content pages */
.page-hero { background: var(--color-charcoal-dk); color: #fff; padding: 150px 0 80px; position: relative; overflow: hidden; }
.page-hero .wrap { position: relative; z-index: 3; }
.page-hero h1 { color: #fff; max-width: 800px; margin-bottom: 18px; }
.page-hero p { font-size: 19px; color: rgba(255,255,255,.8); max-width: 620px; }
.page-hero-cta { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.prose { max-width: 760px; }
.prose h2 { margin: 8px 0 18px; }
.prose h3 { margin: 32px 0 10px; color: var(--color-ink); }
.prose p { margin-bottom: 18px; }
.prose ul { margin: 0 0 20px; padding-left: 4px; list-style: none; }
.prose ul li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.prose ul li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--color-primary); font-weight: 800; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* Compare cards — negative (X) vs positive (check) */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.compare-card { border-radius: 16px; padding: 36px; border: 1px solid var(--color-line); background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,.05); }
.compare-card.negative { background: #fdf6f4; border-color: #f2d5cd; }
.compare-card.positive { background: #f2f8f3; border-color: #cfe6d5; }
.compare-card { overflow: hidden; padding: 0; }
.compare-card .cc-photo { aspect-ratio: 16/10; background: linear-gradient(135deg,#e8e5e0,#d3cfc8); display: flex; align-items: center; justify-content: center; color: #8a8580; font-size: 14px; text-align: center; padding: 20px; position: relative; }
.compare-card .cc-photo img { width: 100%; height: 100%; object-fit: cover; }
.compare-card .cc-photo .ba-tag { position: absolute; top: 14px; left: 14px; }
.compare-card .cc-body { padding: 32px 36px 36px; }
.compare-card h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 8px; }
.compare-card .compare-sub { font-size: 16px; color: var(--color-body); margin-bottom: 22px; }
.compare-list { list-style: none; }
.compare-list li { position: relative; padding-left: 38px; margin-bottom: 16px; font-size: 16px; line-height: 1.5; color: var(--color-ink); }
.compare-list li:last-child { margin-bottom: 0; }
.compare-list li .ic { position: absolute; left: 0; top: 1px; width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; color: #fff; }
.compare-list.neg li .ic { background: #d64828; }
.compare-list.pos li .ic { background: #2f9e54; }
.compare-list li strong { color: var(--color-ink); }
@media (max-width: 900px) { .compare { grid-template-columns: 1fr; gap: 20px; } }

/* ============================================
   LUXURY WAVE — roofline + structured dividers
   ============================================ */

/* SVG divider sits at the bottom of a section, overlapping into the next */
.divider { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; line-height: 0; z-index: 3; pointer-events: none; }
.divider svg { display: block; width: 100%; height: 70px; }
.divider.top { bottom: auto; top: -1px; transform: rotate(180deg); }
.divider .fill-white { fill: #ffffff; }
.divider .fill-off { fill: var(--color-off); }
.divider .fill-dark { fill: var(--color-charcoal); }
.divider .fill-darkest { fill: var(--color-charcoal-dk); }
.divider .fill-primary { fill: var(--color-primary); }
.ov-hidden { overflow: hidden; }
@media (max-width: 700px) { .divider svg { height: 40px; } }

/* Roofline accent — thin chevron/zigzag line motif for shingle sections */
.accent-roofline { position: absolute; pointer-events: none; opacity: .5; z-index: 1; }
.accent-roofline svg { display: block; }
.roofline-tr { top: 40px; right: -20px; width: 220px; }
.roofline-bl { bottom: 40px; left: -20px; width: 180px; transform: rotate(180deg); }

/* Structured/geometric accent — hard grid lines for concrete sections */
.accent-grid { position: absolute; pointer-events: none; opacity: .35; z-index: 1; }
.grid-tr { top: 32px; right: 24px; width: 160px; height: 160px; }
.grid-bl { bottom: 32px; left: 24px; width: 130px; height: 130px; }

/* keep section content above accents */
.section > .wrap { position: relative; z-index: 2; }

/* WHY CHOOSE grid (WeatherB-branded 6-point) */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 48px; max-width: 980px; margin: 0 auto; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: rgba(234,90,19,.12); display: flex; align-items: center; justify-content: center; }
.why-ic svg { width: 24px; height: 24px; stroke: var(--color-primary); fill: none; stroke-width: 2; }
.why-item h3 { font-size: 20px; margin-bottom: 6px; color: var(--color-ink); }
.why-item p { font-size: 15px; color: var(--color-body); margin: 0; line-height: 1.6; }
.bg-dark .why-item h3 { color: #fff; }
.bg-dark .why-item p { color: rgba(255,255,255,.72); }
.bg-dark .why-ic { background: rgba(234,90,19,.18); }
@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; gap: 26px; } }

/* Before/After comparison */
.ba-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.ba-card { border-radius: 14px; overflow: hidden; border: 1px solid var(--color-line); background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,.06); }
.ba-img { aspect-ratio: 4/3; background: linear-gradient(135deg,#e8e5e0,#d3cfc8); display: flex; align-items: center; justify-content: center; color: #8a8580; font-size: 14px; text-align: center; padding: 20px; position: relative; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-tag { position: absolute; top: 12px; left: 12px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; color: #fff; }
.ba-tag.before { background: #6b6f74; }
.ba-tag.after { background: var(--color-primary); }
.ba-label { padding: 14px 18px; font-size: 15px; font-weight: 600; color: var(--color-ink); text-align: center; }
.ba-credit { text-align: center; font-size: 13px; color: var(--color-body); margin-top: 16px; font-style: italic; }
@media (max-width: 600px) { .ba-wrap { grid-template-columns: 1fr; } }
.split-img { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.12); }
.pull-quote { border-left: 4px solid var(--color-primary); padding: 8px 0 8px 26px; margin: 28px 0; font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--color-ink); line-height: 1.3; }
.incontent-cta { background: var(--color-off); border: 1px solid var(--color-line); border-left: 4px solid var(--color-primary); border-radius: 10px; padding: 22px 26px; margin: 32px 0; font-size: 17px; font-weight: 600; color: var(--color-ink); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* responsive */
@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-logo img { height: 44px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .dual, .feat-grid, .steps, .reviews, .proof-grid, .foot-grid, .split { grid-template-columns: 1fr; gap: 24px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 68px 0; }
  .sticky-text { font-size: 14px; }
  .foot-grid { gap: 32px; }
}
@media (max-width: 520px) {
  .proof-grid, .areas-grid { grid-template-columns: 1fr; }
  .sticky-inner { flex-direction: column; gap: 10px; }
  .hero-badge-row { gap: 12px; }
  .nav-logo img { height: 40px; }
}

/* ── VIDEO EMBEDS ── */
.video-section { }
.video-row { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: start; margin-top: 8px; }
.video-16x9 { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.18); background: #000; }
.video-9x16 { position: relative; width: 100%; max-width: 320px; margin: 0 auto; aspect-ratio: 9/16; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.18); background: #000; }
.video-16x9 iframe, .video-9x16 iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-cap { font-size: 14px; color: var(--color-body); text-align: center; margin-top: 12px; font-weight: 500; }
@media (max-width: 860px) {
  .video-row { grid-template-columns: 1fr; gap: 28px; }
}
