/* ======================================
   NEWARK ELITE ROOFING — style.css
   newarkeliteroofing.com
   Root pages:  href="style.css"
   Sub-pages:   href="../style.css"
   Cache-bust:  style.css?v=2
   ====================================== */

:root {
  --white:          #FFFFFF;
  --off-white:      #F6F5F1;
  --charcoal:       #1B2029;
  --charcoal-mid:   #242B36;
  --charcoal-light: #2E3748;
  --brick:          #C13518;
  --brick-hover:    #A32D14;
  --brick-light:    #F9EDE9;
  --text-primary:   #1B2029;
  --text-secondary: #58647A;
  --text-muted:     #8C95A4;
  --border:         #E0DDD8;
  --shadow-sm:      0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:      0 4px 18px rgba(0,0,0,0.10);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl:      0 16px 56px rgba(0,0,0,0.26);
  --font-display:   'Barlow Condensed', sans-serif;
  --font-body:      'Barlow', sans-serif;
  --radius:         4px;
  --radius-lg:      10px;
  --max-width:      1220px;
  --header-h:       80px;
  --ease:           0.22s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-primary); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; font-family: var(--font-display); font-size: 16px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; border-radius: var(--radius);
  border: 2px solid transparent; white-space: nowrap; line-height: 1;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brick); color: var(--white); border-color: var(--brick); }
.btn-primary:hover { background: var(--brick-hover); border-color: var(--brick-hover); box-shadow: 0 4px 16px rgba(193,53,24,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn-outline:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn-ghost-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-ghost-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-lg { padding: 18px 38px; font-size: 18px; }
.btn-full { width: 100%; }

/* ── Labels & titles ── */
.label { display: inline-block; font-family: var(--font-display); font-size: 11.5px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brick); margin-bottom: 14px; }
.label-light { color: rgba(255,255,255,0.48); }
.section-title { font-family: var(--font-display); font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; color: var(--charcoal); }
.section-title em { font-style: normal; color: var(--brick); }

/* ══════════════════════════════════════
   TOP BAR
   ══════════════════════════════════════ */
#top-bar { background: var(--charcoal); padding: 9px 0; font-size: 13px; color: rgba(255,255,255,0.58); font-weight: 500; }
.tb-inner { display: flex; justify-content: space-between; align-items: center; }
.tb-left { display: flex; gap: 20px; }
.tb-left span { display: flex; align-items: center; gap: 6px; }
.tb-right { display: flex; gap: 16px; align-items: center; }
.tb-phone { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: 0.02em; transition: color var(--ease); }
.tb-phone:hover { color: var(--brick); }

/* ══════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════ */
#site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--border); transition: box-shadow var(--ease); }
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.10); }

.nav-inner { display: flex; align-items: center; height: var(--header-h); gap: 24px; }

.nav-logo { flex-shrink: 0; background: transparent; padding: 4px 0; display: flex; align-items: center; transition: opacity var(--ease); }
.nav-logo:hover { opacity: 0.80; }
.nav-logo img { height: 54px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-links a { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-primary); padding: 7px 12px; border-radius: var(--radius); transition: color var(--ease), background var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--brick); background: var(--brick-light); }

.nav-cta { display: flex; align-items: center; gap: 20px; margin-left: auto; flex-shrink: 0; }
.nav-phone-block { display: flex; flex-direction: column; align-items: flex-end; }
.nav-phone-label { font-size: 10px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.10em; text-transform: uppercase; line-height: 1; margin-bottom: 3px; }
.nav-phone-number { font-family: var(--font-display); font-size: 25px; font-weight: 800; color: var(--brick); letter-spacing: 0.01em; line-height: 1; transition: color var(--ease); }
.nav-phone-number:hover { color: var(--brick-hover); }

.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; padding: 8px; margin-left: auto; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: var(--ease); }

.nav-mobile { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); padding: 12px 28px 28px; }
.nav-mobile.is-open { display: flex; }
.nav-mobile a { font-family: var(--font-display); font-size: 19px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-primary); padding: 14px 0; border-bottom: 1px solid var(--border); transition: color var(--ease); }
.nav-mobile a:hover { color: var(--brick); }
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile-phone { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--brick) !important; border: none !important; margin-top: 8px; }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
#hero { position: relative; overflow: hidden; background: var(--charcoal); }
.hero-bg { position: absolute; inset: 0; background-image: url('images/hero-newark-ohio-neighborhood.webp'); background-size: cover; background-position: center 55%; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(108deg, rgba(27,32,41,0.94) 0%, rgba(27,32,41,0.82) 42%, rgba(27,32,41,0.52) 100%); z-index: 1; }

/* Logo seal removed — logo lives in call card */

/* Hero two-column grid */
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 52px; align-items: center;
  padding: 80px 0 88px;
  min-height: calc(100vh - var(--header-h));
}

/* Left: headline content */
.hero-content { max-width: 620px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); background: rgba(193,53,24,0.22); border: 1px solid rgba(193,53,24,0.45); border-radius: var(--radius); padding: 6px 14px; margin-bottom: 22px; }
.hero-badge::before { content: ''; display: block; width: 6px; height: 6px; background: var(--brick); border-radius: 50%; flex-shrink: 0; }
.hero-h1 { font-family: var(--font-display); font-size: clamp(44px, 5.5vw, 76px); font-weight: 800; line-height: 1.0; color: var(--white); letter-spacing: -0.01em; margin-bottom: 20px; }
.hero-h1 em { font-style: normal; color: var(--brick); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.78); line-height: 1.68; margin-bottom: 36px; max-width: 560px; }
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 18px; }
.hero-trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.64); font-size: 14px; font-weight: 500; }
.hero-trust-item svg { color: var(--brick); flex-shrink: 0; }

/* Right: call card
   PROJECT RULE: order:-1 on mobile/tablet puts
   this card ABOVE the headline as first content.
   ══════════════════════════════════════════════ */
.hero-call-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); flex-shrink: 0; }

.call-card-logo { padding: 22px 28px 18px; text-align: center; background: var(--white); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.call-card-logo img { height: 78px; width: auto; display: block; margin: 0 auto; }

.call-card-top { background: var(--brick); padding: 24px 28px; text-align: center; }
.call-card-eyebrow { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.72); margin-bottom: 8px; }
.call-card-phone { display: block; font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--white); letter-spacing: 0.01em; line-height: 1; margin-bottom: 6px; transition: opacity var(--ease); }
.call-card-phone:hover { opacity: 0.88; }
.call-card-avail { font-size: 13px; color: rgba(255,255,255,0.68); }

.call-card-divider { display: flex; align-items: center; gap: 12px; padding: 0 28px; margin: 18px 0 0; }
.call-card-divider::before, .call-card-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.call-card-divider span { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; }

.call-card-form { padding: 0 28px 28px; }
.call-card-form-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--charcoal); margin: 16px 0 14px; }
.call-card-form input, .call-card-form select { width: 100%; padding: 11px 13px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 14px; color: var(--text-primary); background: var(--white); margin-bottom: 10px; outline: none; transition: border-color var(--ease); appearance: none; -webkit-appearance: none; }
.call-card-form input:focus, .call-card-form select:focus { border-color: var(--brick); }
.call-card-form input::placeholder { color: var(--text-muted); }
.call-card-disclaimer { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 10px; line-height: 1.5; }

/* ══════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════ */
#trust-bar { background: var(--charcoal); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 24px 20px; border-right: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 14px; }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 42px; height: 42px; min-width: 42px; background: rgba(193,53,24,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brick); }
.trust-text strong { display: block; font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
.trust-text span { font-size: 12.5px; color: rgba(255,255,255,0.40); }

/* ══════════════════════════════════════
   SERVICES
   ══════════════════════════════════════ */
#services { padding: 100px 0; background: var(--white); }
.services-header { text-align: center; margin-bottom: 52px; }
.services-header .section-title { font-size: clamp(34px, 4vw, 52px); margin-bottom: 16px; }
.services-header p { font-size: 17px; color: var(--text-secondary); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.services-row1 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.services-row2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 810px; margin: 0 auto; }
.service-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--white); display: flex; flex-direction: column; transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.sc-img { height: 215px; overflow: hidden; }
.sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.service-card:hover .sc-img img { transform: scale(1.05); }
.sc-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.sc-title { font-family: var(--font-display); font-size: 21px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: var(--charcoal); margin-bottom: 9px; }
.sc-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.sc-link { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brick); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--ease); }
.sc-link:hover { gap: 10px; }

/* ══════════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════════ */
#why-us { padding: 100px 0; background: var(--off-white); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.why-img-wrap { position: relative; }
.why-img-inner { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-img-inner img { width: 100%; height: 530px; object-fit: cover; object-position: center top; }
.why-badge { position: absolute; bottom: -20px; right: -20px; background: var(--charcoal); color: var(--white); padding: 20px 24px; border-radius: var(--radius-lg); border: 3px solid var(--brick); text-align: center; box-shadow: var(--shadow-lg); }
.why-badge-num { font-family: var(--font-display); font-size: 42px; font-weight: 800; color: var(--brick); line-height: 1; display: block; }
.why-badge-text { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.58); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-top: 4px; }
.why-content .section-title { font-size: clamp(32px, 3.5vw, 48px); margin-bottom: 16px; }
.why-content > p { font-size: 16px; color: var(--text-secondary); line-height: 1.72; margin-bottom: 34px; }
.why-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 38px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 44px; height: 44px; min-width: 44px; background: var(--brick-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--brick); }
.why-text strong { display: block; font-family: var(--font-display); font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--charcoal); margin-bottom: 4px; }
.why-text p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* ══════════════════════════════════════
   STORM URGENCY
   ══════════════════════════════════════ */
#storm-cta { position: relative; padding: 96px 0; overflow: hidden; }
.storm-bg-fill { position: absolute; inset: 0; background: var(--charcoal); z-index: 0; }
.storm-bg-img { position: absolute; inset: 0; background-image: url('images/hail-damage-shingles-newark-ohio.webp'); background-size: cover; background-position: center; opacity: 0.18; z-index: 1; }
.storm-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: center; }
.storm-title { font-family: var(--font-display); font-size: clamp(34px, 4.5vw, 56px); font-weight: 800; color: var(--white); line-height: 1.04; margin-bottom: 16px; }
.storm-title em { font-style: normal; color: var(--brick); }
.storm-desc { font-size: 17px; color: rgba(255,255,255,0.68); max-width: 560px; line-height: 1.65; }
.storm-ctas { display: flex; flex-direction: column; gap: 12px; align-items: stretch; min-width: 260px; }
.storm-note { font-size: 12px; color: rgba(255,255,255,0.34); text-align: center; margin-top: 4px; }

/* ══════════════════════════════════════
   PROCESS
   ══════════════════════════════════════ */
#process { padding: 100px 0; background: var(--white); }
.process-header { text-align: center; margin-bottom: 60px; }
.process-header .section-title { font-size: clamp(32px, 4vw, 50px); margin-bottom: 14px; }
.process-header p { font-size: 16px; color: var(--text-secondary); max-width: 500px; margin: 0 auto; }
.process-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.process-steps { display: flex; flex-direction: column; gap: 34px; }
.process-step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: flex-start; }
.step-num { font-family: var(--font-display); font-size: 52px; font-weight: 800; color: var(--brick); opacity: 0.14; line-height: 1; text-align: right; transition: opacity var(--ease); }
.process-step:hover .step-num { opacity: 1; }
.step-content strong { display: block; font-family: var(--font-display); font-size: 19px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--charcoal); margin-bottom: 7px; }
.step-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.68; }
.process-img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.process-img-wrap img { width: 100%; height: 510px; object-fit: cover; }

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
#faq { padding: 100px 0; background: var(--off-white); }
.faq-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: start; }
.faq-left-col .section-title { font-size: clamp(30px, 3.5vw, 46px); margin-bottom: 16px; }
.faq-left-col > p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 30px; }
.faq-img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.faq-img-wrap img { width: 100%; height: 295px; object-fit: cover; object-position: center top; }
.faq-cta-card { background: var(--charcoal); border-radius: var(--radius-lg); padding: 26px 24px; margin-top: 20px; text-align: center; }
.faq-cta-card p { font-size: 14px; color: rgba(255,255,255,0.56); margin-bottom: 12px; line-height: 1.6; }
.faq-cta-card a.big-phone { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--brick); display: block; margin-bottom: 14px; transition: color var(--ease); }
.faq-cta-card a.big-phone:hover { color: var(--white); }
.faq-accordion { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: border-color var(--ease), box-shadow var(--ease); }
.faq-item.is-open { border-color: var(--brick); box-shadow: 0 2px 12px rgba(193,53,24,0.10); }
.faq-btn { width: 100%; background: none; border: none; padding: 19px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; text-align: left; transition: background var(--ease); }
.faq-btn:hover { background: var(--off-white); }
.faq-item.is-open .faq-btn { background: var(--brick-light); }
.faq-q-text { font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; color: var(--charcoal); line-height: 1.3; }
.faq-chevron { width: 20px; height: 20px; color: var(--brick); flex-shrink: 0; transition: transform var(--ease); }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.is-open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 4px 22px 22px; font-size: 15px; color: var(--text-secondary); line-height: 1.72; }

/* ══════════════════════════════════════
   SERVICE AREAS
   ══════════════════════════════════════ */
#service-areas { padding: 80px 0; background: var(--charcoal); }
.areas-inner { text-align: center; }
.areas-inner .section-title { font-size: clamp(28px, 3.5vw, 44px); color: var(--white); margin-bottom: 14px; }
.areas-desc { font-size: 16px; color: rgba(255,255,255,0.50); margin: 0 auto 40px; max-width: 560px; }
.areas-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 840px; margin: 0 auto 40px; }
.area-tag { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 8px 18px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.60); transition: background var(--ease), color var(--ease), border-color var(--ease); }
.area-tag.primary { background: var(--brick); border-color: var(--brick); color: var(--white); }

/* ══════════════════════════════════════
   PRE-FOOTER CTA BANNER
   PROJECT RULE: required on every page
   ══════════════════════════════════════ */
#pre-footer-cta { background: var(--brick); padding: 52px 0; }
.pf-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.pf-text h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 40px); font-weight: 800; color: var(--white); line-height: 1.08; margin-bottom: 8px; }
.pf-text p { font-size: 16px; color: rgba(255,255,255,0.75); }
.pf-ctas { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.btn-pf-white { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--brick); border: 2px solid var(--white); font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 16px 32px; border-radius: var(--radius); white-space: nowrap; transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease); }
.btn-pf-white:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); transform: translateY(-1px); }
.btn-pf-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.60); font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 16px 32px; border-radius: var(--radius); white-space: nowrap; transition: background var(--ease), border-color var(--ease), transform var(--ease); }
.btn-pf-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-1px); }

/* ══════════════════════════════════════
   ESTIMATE / CONTACT
   ══════════════════════════════════════ */
#estimate { padding: 100px 0; position: relative; overflow: hidden; background: var(--charcoal-mid); }
.estimate-bg-img { position: absolute; inset: 0; background-image: url('images/new-roof-installation-newark-ohio.webp'); background-size: cover; background-position: center; opacity: 0.10; z-index: 0; }
.estimate-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: start; }
.estimate-left .section-title { font-size: clamp(32px, 4vw, 50px); color: var(--white); margin-bottom: 18px; }
.estimate-left > p { font-size: 16px; color: rgba(255,255,255,0.60); line-height: 1.72; margin-bottom: 34px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-row { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.66); }
.contact-row svg { color: var(--brick); flex-shrink: 0; }
.contact-row a { color: var(--white); font-weight: 600; transition: color var(--ease); }
.contact-row a:hover { color: var(--brick); }
.estimate-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); }
.form-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--charcoal); margin-bottom: 6px; }
.form-subtitle { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.10em; margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 13px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 15px; color: var(--text-primary); background: var(--white); outline: none; transition: border-color var(--ease); appearance: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brick); }
.form-group textarea { resize: vertical; min-height: 88px; }
.form-submit { width: 100%; padding: 16px; font-size: 17px; margin-bottom: 10px; }
.form-disclaimer { font-size: 11.5px; color: var(--text-muted); text-align: center; line-height: 1.5; }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer { background: var(--charcoal); padding: 60px 0 0; border-top: 3px solid var(--brick); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 52px; }
.footer-brand-col { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { background: var(--white); padding: 8px 12px; border-radius: var(--radius); display: inline-flex; align-items: center; width: fit-content; }
.footer-logo img { height: 44px; width: auto; }
.footer-brand-col p { font-size: 14px; color: rgba(255,255,255,0.44); line-height: 1.72; max-width: 280px; }
.footer-big-phone { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--brick); display: block; transition: color var(--ease); }
.footer-big-phone:hover { color: var(--white); }
.footer-col h4 { font-family: var(--font-display); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.30); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.56); transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--brick); }
.footer-areas-text { font-size: 13px; color: rgba(255,255,255,0.40); line-height: 1.9; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.26); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.26); transition: color var(--ease); }
.footer-legal a:hover { color: var(--white); }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (1024px)
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; gap: 0; padding: 0; }
  .hero-call-card { order: -1; border-radius: 0; box-shadow: var(--shadow-md); border-bottom: 3px solid var(--brick); }
  .hero-content { padding: 48px 0 56px; }

  .services-row1 { grid-template-columns: repeat(2, 1fr); }
  .services-row2 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .why-inner, .process-inner, .faq-inner, .estimate-inner { grid-template-columns: 1fr; gap: 44px; }
  .why-badge { right: 0; bottom: 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-item:nth-child(even), .trust-item:last-child { border-bottom: none; }
  .storm-inner { grid-template-columns: 1fr; }
  .storm-ctas { flex-direction: row; flex-wrap: wrap; }
  .pf-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-img-wrap { display: none; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (768px)
   PROJECT RULE ENFORCED:
   .hero-call-card order:-1 makes it the FIRST
   visible element on mobile — immediately below
   the sticky header, above all headline copy.
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .container { padding: 0 18px; }
  #top-bar { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { gap: 16px; }
  .nav-logo img { height: 44px; }

  #hero { min-height: auto; }
  .hero-inner { padding: 0; }
  .hero-call-card { order: -1; border-radius: 0; box-shadow: none; border-bottom: 3px solid var(--brick); }
  .hero-content { padding: 36px 18px 52px; }
  .hero-trust-row { flex-direction: column; gap: 10px; }

  #services, #why-us, #process, #faq, #estimate { padding: 68px 0; }
  #storm-cta { padding: 68px 0; }
  #service-areas { padding: 60px 0; }
  #pre-footer-cta { padding: 44px 0; }

  .services-row1, .services-row2 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-item:last-child { border-bottom: none; }
  .storm-ctas { flex-direction: column; }
  .pf-inner { flex-direction: column; text-align: center; }
  .pf-ctas { flex-direction: column; width: 100%; }
  .btn-pf-white, .btn-pf-outline { width: 100%; justify-content: center; }
  .faq-img-wrap, .faq-cta-card { display: none; }
  .faq-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ══════════════════════════════════════
   SERVICE PAGE STYLES
   Shared across all internal pages
   ══════════════════════════════════════ */

/* ── Page hero (shorter than homepage) ── */
.page-hero { position: relative; overflow: hidden; background: var(--charcoal); }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; z-index: 0; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(108deg, rgba(27,32,41,0.94) 0%, rgba(27,32,41,0.82) 45%, rgba(27,32,41,0.52) 100%); z-index: 1; }
.page-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 400px; gap: 52px; align-items: center; padding: 68px 0 76px; }

.page-breadcrumb { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.42); margin-bottom: 16px; }
.page-breadcrumb a { color: rgba(255,255,255,0.42); transition: color var(--ease); }
.page-breadcrumb a:hover { color: var(--brick); }
.page-breadcrumb span { color: rgba(255,255,255,0.22); margin: 0 8px; }

.page-h1 { font-family: var(--font-display); font-size: clamp(38px, 5vw, 64px); font-weight: 800; line-height: 1.0; color: var(--white); letter-spacing: -0.01em; margin-bottom: 18px; }
.page-h1 em { font-style: normal; color: var(--brick); }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.68; max-width: 520px; margin-bottom: 28px; }
.page-trust-row { display: flex; flex-wrap: wrap; gap: 16px; }
.page-trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.62); font-size: 14px; font-weight: 500; }
.page-trust-item svg { color: var(--brick); flex-shrink: 0; }

/* ── Content sections ── */
.content-section { padding: 88px 0; }
.bg-white { background: var(--white); }
.bg-off { background: var(--off-white); }
.bg-dark { background: var(--charcoal); }

.split-left { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-right { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-right .split-text { order: -1; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-img img { width: 100%; height: 440px; object-fit: cover; display: block; }
.split-text .section-title { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 18px; }
.split-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.72; margin-bottom: 16px; }
.split-text p:last-of-type { margin-bottom: 0; }

/* ── Anecdote / field observation callout ── */
.anecdote { background: var(--brick-light); border-left: 3px solid var(--brick); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; padding: 16px 20px; margin: 22px 0; font-size: 15px; color: var(--text-primary); line-height: 1.7; font-style: italic; }
.anecdote strong { font-style: normal; color: var(--brick); font-weight: 700; }

/* ── Check list ── */
.check-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.check-item svg { color: var(--brick); flex-shrink: 0; margin-top: 2px; }
.check-item strong { color: var(--text-primary); }

/* ── Included grid (what's in the job) ── */
.included-header { text-align: center; margin-bottom: 48px; }
.included-header .section-title { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 14px; }
.included-header p { font-size: 16px; color: var(--text-secondary); max-width: 540px; margin: 0 auto; }
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.included-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.included-card-icon { width: 40px; height: 40px; background: var(--brick-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--brick); margin-bottom: 14px; }
.included-card strong { display: block; font-family: var(--font-display); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--charcoal); margin-bottom: 7px; }
.included-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── Before / After ── */
.before-after-header { text-align: center; margin-bottom: 48px; }
.before-after-header .section-title { font-size: clamp(28px, 3.5vw, 42px); color: var(--white); margin-bottom: 14px; }
.before-after-header p { font-size: 16px; color: rgba(255,255,255,0.52); max-width: 540px; margin: 0 auto; }
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ba-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.ba-card img { width: 100%; height: 380px; object-fit: cover; display: block; }
.ba-label { position: absolute; top: 20px; left: 20px; font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--radius); }
.ba-label.before { background: rgba(27,32,41,0.85); color: rgba(255,255,255,0.80); }
.ba-label.after { background: var(--brick); color: var(--white); }
.ba-caption { padding: 18px 22px; background: var(--charcoal-mid); }
.ba-caption strong { display: block; font-family: var(--font-display); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); margin-bottom: 4px; }
.ba-caption span { font-size: 14px; color: rgba(255,255,255,0.48); }

/* ── Related services ── */
.related-services { padding: 72px 0; background: var(--off-white); }
.related-header { text-align: center; margin-bottom: 40px; }
.related-header .section-title { font-size: clamp(26px, 3vw, 38px); margin-bottom: 10px; }
.related-header p { font-size: 15px; color: var(--text-secondary); }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.related-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; text-align: center; transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease); }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.related-card-icon { width: 44px; height: 44px; background: var(--brick-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brick); margin: 0 auto 14px; }
.related-card strong { display: block; font-family: var(--font-display); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--charcoal); margin-bottom: 6px; }
.related-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; margin-bottom: 14px; }
.related-card a { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brick); display: inline-flex; align-items: center; gap: 5px; transition: gap var(--ease); }
.related-card a:hover { gap: 8px; }

/* ── Service page FAQ (full-width, no image col) ── */
.page-faq { padding: 88px 0; background: var(--white); }
.page-faq-header { text-align: center; margin-bottom: 48px; }
.page-faq-header .section-title { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 14px; }
.page-faq-header p { font-size: 16px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; }
.page-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.page-faq-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: sticky; top: calc(var(--header-h) + 24px); }
.page-faq-img img { width: 100%; height: 320px; object-fit: cover; }
.page-faq-cta { background: var(--charcoal); border-radius: var(--radius-lg); padding: 28px 24px; margin-top: 16px; text-align: center; }
.page-faq-cta p { font-size: 14px; color: rgba(255,255,255,0.56); margin-bottom: 12px; line-height: 1.6; }
.page-faq-cta a.big-phone { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--brick); display: block; margin-bottom: 14px; transition: color var(--ease); }
.page-faq-cta a.big-phone:hover { color: var(--white); }

/* ── Responsive: service pages ── */
@media (max-width: 1024px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 0; padding: 0; }
  .page-hero-call-card-wrap { order: -1; }
  .split-left, .split-right { grid-template-columns: 1fr; gap: 36px; }
  .split-right .split-text { order: 0; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .page-faq-grid { grid-template-columns: 1fr; }
  .page-faq-img { display: none; }
  .page-faq-cta { display: none; }
}
@media (max-width: 768px) {
  .content-section { padding: 64px 0; }
  .related-services { padding: 56px 0; }
  .page-faq { padding: 64px 0; }
  .included-grid { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-inner { padding: 0; }
  .hero-call-card { order: -1; border-radius: 0; border-bottom: 3px solid var(--brick); }
  .page-hero-content { padding: 36px 18px 48px; }
}
