/* ============================================================
   HUNTSVILLE ROOFING PROS — Global Stylesheet
   Colors:
     --clr-dark:    #1A2332  (deep navy-slate, roof/night sky)
     --clr-red:     #B91C1C  (bold red, urgency / CTA)
     --clr-red-dk:  #991B1B
     --clr-gold:    #D97706  (amber accent, warmth / Texas sun)
     --clr-mid:     #374151  (body text)
     --clr-muted:   #6B7280
     --clr-border:  #E5E7EB
     --clr-bg:      #F9F8F6  (warm off-white, like concrete)
     --clr-white:   #FFFFFF
   Fonts: Oswald (headings) + Open Sans (body)
============================================================ */

:root {
  --clr-dark:   #1A2332;
  --clr-red:    #B91C1C;
  --clr-red-dk: #991B1B;
  --clr-gold:   #D97706;
  --clr-mid:    #374151;
  --clr-muted:  #6B7280;
  --clr-border: #E5E7EB;
  --clr-bg:     #F9F8F6;
  --clr-white:  #FFFFFF;
  --radius:     4px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
  --shadow-md:  0 4px 18px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.16);
  --container:  1160px;
  --font-head:  'Oswald', sans-serif;
  --font-body:  'Open Sans', sans-serif;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--clr-mid);
  background: var(--clr-white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ───────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-red {
  background: var(--clr-red);
  color: var(--clr-white);
  border-color: var(--clr-red);
}
.btn-red:hover { background: var(--clr-red-dk); border-color: var(--clr-red-dk); box-shadow: var(--shadow-md); }
.btn-gold {
  background: var(--clr-gold);
  color: var(--clr-white);
  border-color: var(--clr-gold);
}
.btn-gold:hover { background: #b45309; border-color: #b45309; box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border-color: var(--clr-white);
}
.btn-outline:hover { background: var(--clr-white); color: var(--clr-dark); }
.btn-outline-dark {
  background: transparent;
  color: var(--clr-dark);
  border-color: var(--clr-dark);
}
.btn-outline-dark:hover { background: var(--clr-dark); color: var(--clr-white); }

/* ── HEADER TOP BAR ──────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-md); }

.header-top {
  background: var(--clr-dark);
  padding: 8px 0;
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo, .footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.logo-main {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: .06em;
}
.logo-sub-brand {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-gold);
  letter-spacing: .12em;
}
.logo-tagline {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Right side */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-phone-wrap { text-align: right; }
.header-phone-label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clr-gold);
}
.header-phone-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: .02em;
  transition: color .2s;
}
.header-phone-num:hover { color: var(--clr-gold); }
.header-cta-btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--clr-red);
  color: var(--clr-white);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--clr-red);
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.header-cta-btn:hover { background: var(--clr-red-dk); border-color: var(--clr-red-dk); }

/* ── NAV BAR ─────────────────────────────────────────────── */
.header-nav {
  background: #22304a;
  border-top: 3px solid var(--clr-red);
}
.nav-inner {
  display: flex;
  align-items: center;
  position: relative;
}
.nav-toggle { display: none; }
.nav-burger { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 14px 18px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  transition: color .2s, background .2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--clr-gold); background: rgba(255,255,255,.06); }
.nav-no-link {
  display: block;
  padding: 14px 18px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  cursor: default;
}

.arrow { font-size: .6rem; margin-left: 4px; vertical-align: middle; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--clr-dark);
  min-width: 240px;
  border-top: 3px solid var(--clr-gold);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .15s, background .15s, padding-left .15s;
}
.dropdown li a:hover {
  color: var(--clr-gold);
  background: rgba(255,255,255,.06);
  padding-left: 26px;
}
.dropdown li span {
  display: block;
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  border-bottom: 1px solid rgba(255,255,255,.07);
  cursor: default;
}

/* Mobile burger */
@media (max-width: 900px) {
  .header-cta-btn { display: none; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 12px 0;
    margin-left: auto;
  }
  .nav-burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--clr-white);
    border-radius: 2px;
    transition: .3s;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background: var(--clr-dark);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 998;
    padding-bottom: 10px;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .dropdown {
    display: none;
    position: static;
    border-top: none;
    box-shadow: none;
    background: rgba(255,255,255,.04);
    min-width: unset;
    width: 100%;
    padding-left: 16px;
  }
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown { display: block; }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background-color: #1A2332;
  background-image: linear-gradient(rgba(26,35,50,.75), rgba(26,35,50,.75)), url('/assets/images/roofing-huntsville-tx.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--clr-red);
  color: var(--clr-white);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.hero-eyebrow-sub {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-gold);
  letter-spacing: .02em;
  margin-bottom: 6px !important;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: .01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--clr-gold);
}
.hero p {
  font-size: .97rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 14px;
  max-width: 640px;
  line-height: 1.7;
}
.hero p:last-of-type { margin-bottom: 28px; }
.hero p strong {
  color: var(--clr-white);
  font-weight: 700;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: var(--clr-red);
  padding: 14px 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 500;
  color: var(--clr-white);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,.25);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── SECTION SHARED ──────────────────────────────────────── */
.section { padding: 72px 0; }
.section-alt { background: var(--clr-bg); }
.section-dark { background: var(--clr-dark); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 10px;
}
.section-dark .section-label { color: var(--clr-gold); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--clr-red);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: .01em;
}
.section-dark .section-title { color: var(--clr-white); }

.section-intro {
  font-size: 1rem;
  color: var(--clr-muted);
  max-width: 600px;
  margin-bottom: 48px;
}
.section-dark .section-intro { color: rgba(255,255,255,.7); }

.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-intro { margin-left: auto; margin-right: auto; }

/* Divider accent */
.title-line {
  width: 50px;
  height: 4px;
  background: var(--clr-red);
  border-radius: 2px;
  margin: 14px 0 0;
}
.section-header.centered .title-line { margin: 14px auto 0; }
.section-dark .title-line { background: var(--clr-gold); }

/* ── ABOUT SPLIT ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-content .section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--clr-red);
  margin-bottom: 12px;
}
.about-intro {
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 4px;
}
.about-list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 14px;
}
.about-list li:last-child { border-bottom: none; padding-bottom: 0; }
.about-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--clr-red);
  color: var(--clr-white);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-list li > div strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 3px;
  letter-spacing: .01em;
}
.about-list li > div p {
  font-size: .9rem;
  color: #374151;
  line-height: 1.65;
  margin: 0;
}
.about-list li > div p strong {
  display: inline;
  font-size: inherit;
  color: #111111;
  font-weight: 700;
}
.about-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.about-image {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--clr-border);
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 360px;
  background: linear-gradient(135deg, #d1d5db 0%, #e5e7eb 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #9ca3af;
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image { order: -1; min-height: 260px; }
}

/* ── SERVICE CARDS GRID ──────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--clr-red);
}
.service-card-icon {
  width: 48px;
  height: 48px;
  background: #FEF2F2;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--clr-red);
  font-size: 1.4rem;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 8px;
}
.service-card p {
  font-size: .88rem;
  color: var(--clr-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-card a.card-link {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clr-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.service-card a.card-link:hover { gap: 10px; }

/* ── WHY CHOOSE US ───────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(185,28,28,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.why-text h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 6px;
}
.why-text p {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

/* ── PRICING TABLE ───────────────────────────────────────── */
.pricing-intro {
  font-size: .97rem;
  color: #374151;
  line-height: 1.75;
  max-width: 760px;
  margin-top: 16px;
}
.pricing-table-wrap {
  overflow-x: auto;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 48px;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  background: var(--clr-white);
}
.pricing-table thead tr {
  background: var(--clr-dark);
}
.pricing-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-white);
}
.pricing-table thead th:nth-child(2) { color: var(--clr-gold); }
.pricing-table tbody tr {
  border-bottom: 1px solid var(--clr-border);
  transition: background .15s;
}
.pricing-table tbody tr:hover { background: #fef2f2; }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody td {
  padding: 13px 20px;
  color: #374151;
  vertical-align: middle;
}
.pricing-table tbody td strong { color: #111111; }
.price-range {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-red) !important;
  white-space: nowrap;
}
.highlight-row { background: #f0fdf4; }
.highlight-row .price-range { color: #15803d !important; }

.pricing-notes-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-red);
  margin-bottom: 24px;
}
.pricing-notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.pricing-note-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-top: 3px solid var(--clr-red);
  border-radius: var(--radius);
  padding: 24px;
}
.pricing-note-icon { font-size: 1.6rem; margin-bottom: 12px; }
.pricing-note-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}
.pricing-note-card p {
  font-size: .88rem;
  color: #374151;
  line-height: 1.7;
}
.pricing-note-card p strong { color: #111111; }
a.ext-link {
  color: var(--clr-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
a.ext-link:hover { color: var(--clr-red-dk); }
a.ext-link strong { color: inherit; }

/* ── CTA STRIP ───────────────────────────────────────────── */
.cta-strip {
  background: var(--clr-dark);
  padding: 36px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  text-align: center;
}
.cta-strip-inner p {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--clr-white);
  margin: 0;
}

/* ── BIG CTA ─────────────────────────────────────────────── */
.big-cta {
  background: var(--clr-dark);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.big-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--clr-red);
}
.big-cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--clr-red);
}
.big-cta-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.big-cta-label {
  display: inline-block;
  background: var(--clr-red);
  color: var(--clr-white);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.big-cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.big-cta-content > p {
  font-size: .97rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 560px;
}
.big-cta-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.big-cta-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.big-cta-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--clr-gold);
  color: var(--clr-white);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.big-cta-box {
  background: var(--clr-white);
  border-radius: 8px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.big-cta-box-label {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 8px;
}
.big-cta-phone {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-dark);
  letter-spacing: .02em;
  margin-bottom: 16px;
  transition: color .2s;
}
.big-cta-phone:hover { color: var(--clr-red); }
.big-cta-or {
  font-size: .82rem;
  color: var(--clr-muted);
  margin-bottom: 16px;
}
.btn-full { width: 100%; text-align: center; display: block; }
.big-cta-hours {
  font-size: .78rem;
  color: var(--clr-muted);
  margin-top: 14px;
}
@media (max-width: 900px) {
  .big-cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .big-cta-action { max-width: 420px; }
}

/* ── PROCESS STEPS ───────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 1024px) { .process-steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .process-steps { grid-template-columns: repeat(2, 1fr); } }
.process-step { position: relative; }
.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--clr-border);
  line-height: 1;
  margin-bottom: 12px;
}
.process-step h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}
.process-step p { font-size: .88rem; color: #374151; }
.process-step p strong { color: #111111; }

/* ── ROOF SCENARIOS ──────────────────────────────────────── */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.scenario-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-top: 3px solid var(--clr-red);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-sm);
}
.scenario-card--wide {
  grid-column: 1 / -1;
}
.scenario-q {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-dark);
  line-height: 1.35;
  margin: 0 0 14px;
}
.scenario-card p {
  font-size: .9rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}
.scenario-card p strong { color: #111111; }
@media (max-width: 720px) {
  .scenarios-grid { grid-template-columns: 1fr; }
  .scenario-card--wide { grid-column: auto; }
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  line-height: 1;
  color: var(--clr-red);
  opacity: .15;
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: Georgia, serif;
}
.stars {
  color: var(--clr-gold);
  font-size: .9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: .92rem;
  color: var(--clr-mid);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.reviewer {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--clr-dark);
  letter-spacing: .04em;
}

/* ── FIXED CTA ───────────────────────────────────────────── */
.fixed-cta {
  position: fixed;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--clr-red);
  color: var(--clr-white);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-decoration: none;
  transition: background .2s;
}
.fixed-cta:hover { background: var(--clr-red-dk); }
.fixed-cta-icon { flex-shrink: 0; }

/* Desktop: floating pill bottom-right */
@media (min-width: 769px) {
  .fixed-cta {
    bottom: 28px;
    right: 28px;
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,.35);
  }
}

/* Mobile: full-width bar pinned to bottom */
@media (max-width: 768px) {
  .fixed-cta {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 16px 20px;
    border-radius: 0;
    box-shadow: 0 -2px 12px rgba(0,0,0,.2);
  }
  body { padding-bottom: 56px; }
}

/* ── STORM GUIDE ─────────────────────────────────────────── */
.section-dark {
  background: var(--clr-dark);
}
.section-dark .section-title { color: var(--clr-white); }
.section-dark .title-line { background: var(--clr-red); }
.storm-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.storm-step {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.storm-step:last-child { border-bottom: none; }
.storm-step-num {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  background: var(--clr-red);
  min-width: 64px;
  padding: 22px 0;
  text-align: center;
  flex-shrink: 0;
  letter-spacing: .5px;
}
.storm-step-body {
  padding: 20px 28px;
  background: rgba(255,255,255,.04);
}
.storm-step-body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-white);
  margin: 0 0 6px;
}
.storm-step-body p {
  font-size: .88rem;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
}

/* ── 10 SIGNS ────────────────────────────────────────────── */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.sign-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.sign-num {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-red);
  min-width: 28px;
  line-height: 1;
  padding-top: 2px;
}
.sign-item p {
  font-size: .9rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}
.sign-item p strong { color: #111111; }
.signs-note {
  margin-top: 28px;
  font-size: .95rem;
  color: var(--clr-mid);
  font-style: italic;
  text-align: center;
}
@media (max-width: 640px) { .signs-grid { grid-template-columns: 1fr; } }

/* ── WHY ROOFS WEAR OUT ──────────────────────────────────── */
.wear-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.wear-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-red);
  border-radius: var(--radius);
  padding: 24px 24px 20px;
}
.wear-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 10px;
}
.wear-card p {
  font-size: .9rem;
  color: #374151;
  line-height: 1.75;
  margin: 0;
}
.wear-card p strong { color: #111111; }
.wear-note {
  margin-top: 32px;
  background: var(--clr-dark);
  border-radius: var(--radius);
  padding: 22px 28px;
  text-align: center;
}
.wear-note p {
  color: #cbd5e1;
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
}
.wear-note p strong { color: var(--clr-white); }
@media (max-width: 640px) { .wear-grid { grid-template-columns: 1fr; } }

/* ── NEIGHBORHOODS ───────────────────────────────────────── */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.neighborhoods-content h2 { margin-bottom: 0; }
.neighborhoods-content p {
  color: #374151;
  line-height: 1.75;
  margin-bottom: 16px;
}
.neighborhoods-map {
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}
.neighborhoods-map iframe { display: block; height: 100%; min-height: 400px; }
@media (max-width: 768px) {
  .neighborhoods-grid { grid-template-columns: 1fr; }
  .neighborhoods-map { min-height: 300px; }
  .neighborhoods-map iframe { min-height: 300px; }
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--clr-dark);
  background-image: linear-gradient(rgba(26,35,50,.75), rgba(26,35,50,.75)), url('/assets/images/roofing-huntsville-tx.jpg');
  background-size: cover;
  background-position: center;
  padding: 64px 0 56px;
  border-bottom: 3px solid var(--clr-red);
}
.page-hero .hero-eyebrow-sub {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.25;
  margin-bottom: 18px;
}
.page-hero > .container > p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.75;
  max-width: 700px;
  margin-bottom: 28px;
}

/* ── ABOUT STORY ──────────────────────────────────────────── */
.about-story { display: flex; flex-direction: column; gap: 0; }
.story-block { margin-bottom: 32px; }
.story-item {
  border-left: 3px solid var(--clr-red);
  padding: 0 0 32px 28px;
  margin-bottom: 0;
}
.story-item:last-child { border-left: 3px solid transparent; padding-bottom: 0; }
.story-item h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}
.story-item p {
  color: #374151;
  line-height: 1.8;
  margin-bottom: 12px;
}
.story-item p:last-child { margin-bottom: 0; }

/* ── SIX THINGS GRID ─────────────────────────────────────── */
.six-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.six-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-top: 3px solid var(--clr-red);
  border-radius: var(--radius);
  padding: 24px 22px 20px;
}
.six-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-red);
  opacity: .25;
  line-height: 1;
  margin-bottom: 10px;
}
.six-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
  line-height: 1.3;
}
.six-card p { font-size: .88rem; color: #374151; line-height: 1.75; margin: 0; }
@media (max-width: 900px) { .six-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .six-grid { grid-template-columns: 1fr; } }

/* ── COVERAGE LIST ───────────────────────────────────────── */
.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.coverage-item {
  display: flex;
  gap: 16px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.coverage-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-red);
  flex-shrink: 0;
  margin-top: 6px;
}
.coverage-item strong { display: block; color: #111111; font-size: .95rem; margin-bottom: 4px; }
.coverage-item p { font-size: .87rem; color: #374151; line-height: 1.6; margin: 0; }
@media (max-width: 640px) { .coverage-list { grid-template-columns: 1fr; } }

/* ── SERVICE PAGE COMPONENTS ─────────────────────────────── */
.prose-block p {
  color: #374151;
  line-height: 1.85;
  margin-bottom: 16px;
}
.prose-block p:last-child { margin-bottom: 0; }

.faq-card {
  background: var(--clr-bg);
  border-left: 4px solid var(--clr-red);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 28px;
}
.faq-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}
.faq-card p { font-size: .9rem; color: #374151; line-height: 1.75; margin: 0; }

.faq-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.faq-item {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-red);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.faq-item h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}
.faq-item p { font-size: .9rem; color: #374151; line-height: 1.75; margin: 0; }

.signs-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  list-style: none;
}
.signs-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: .92rem;
  color: #374151;
  line-height: 1.6;
}
.check-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-red);
  flex-shrink: 0;
  margin-top: 5px;
}

.leak-method {
  background: var(--clr-dark);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
}
.leak-method h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
}
.leak-method p { font-size: .9rem; color: #94a3b8; line-height: 1.8; margin-bottom: 12px; }
.leak-method p:last-child { margin-bottom: 0; }

.subsection-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
}

.leak-sources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.leak-source-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-top: 3px solid var(--clr-red);
  border-radius: var(--radius);
  padding: 20px 20px 18px;
}
.leak-source-card--wide { grid-column: 1 / -1; }
.leak-source-card h4 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}
.leak-source-card p { font-size: .88rem; color: #374151; line-height: 1.75; margin: 0; }
@media (max-width: 640px) {
  .leak-sources-grid { grid-template-columns: 1fr; }
  .leak-source-card--wide { grid-column: auto; }
}

.other-repairs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.other-repair-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  border-left: 4px solid var(--clr-red);
}
.other-repair-card--wide { grid-column: 1 / -1; }
.other-repair-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}
.other-repair-card p { font-size: .9rem; color: #374151; line-height: 1.75; margin: 0; }
@media (max-width: 640px) {
  .other-repairs-grid { grid-template-columns: 1fr; }
  .other-repair-card--wide { grid-column: auto; }
}

.repair-process {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
}
.repair-step {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--clr-border);
}
.repair-step:last-child { border-bottom: none; }
.repair-step-num {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  background: var(--clr-dark);
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.repair-step-body { padding: 20px 28px; }
.repair-step-body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
}
.repair-step-body p { font-size: .88rem; color: #374151; line-height: 1.75; margin: 0; }

.hero-inline-link { color: var(--clr-gold); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.hero-inline-link:hover { color: #f59e0b; }

/* ── INLINE LINK ─────────────────────────────────────────── */
.inline-link { color: var(--clr-red); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.inline-link:hover { color: var(--clr-red-dk); }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--clr-red);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn-outline { border-color: var(--clr-white); }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── SERVICE AREAS BAND ──────────────────────────────────── */
.areas-band { background: var(--clr-bg); padding: 48px 0; }
.areas-band h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 20px;
  text-align: center;
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.areas-list a {
  display: inline-block;
  padding: 7px 18px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 30px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--clr-mid);
  transition: background .2s, color .2s, border-color .2s;
}
.areas-list a:hover { background: var(--clr-dark); color: var(--clr-white); border-color: var(--clr-dark); }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--clr-dark);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  background: var(--clr-bg);
  padding: 10px 0;
  border-bottom: 1px solid var(--clr-border);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  list-style: none;
}
.breadcrumb li { font-size: .82rem; color: var(--clr-muted); }
.breadcrumb li + li::before { content: '›'; margin-right: 6px; }
.breadcrumb a { color: var(--clr-red); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── INNER PAGE HERO ─────────────────────────────────────── */
.page-hero {
  background-color: var(--clr-dark);
  background-image: linear-gradient(rgba(26,35,50,.75), rgba(26,35,50,.75)), url('/assets/images/roofing-huntsville-tx.jpg');
  background-size: cover;
  background-position: center;
  padding: 52px 0 44px;
  border-bottom: 4px solid var(--clr-red);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  max-width: 600px;
}

/* ── CONTENT PROSE ───────────────────────────────────────── */
.prose { max-width: 840px; }
.prose h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin: 40px 0 14px;
}
.prose h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-dark);
  margin: 28px 0 10px;
}
.prose p { margin-bottom: 18px; color: var(--clr-mid); }
.prose ul { list-style: none; margin-bottom: 18px; }
.prose ul li {
  padding: 5px 0 5px 24px;
  position: relative;
  color: var(--clr-mid);
}
.prose ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-red);
  font-weight: 700;
}
.prose strong { color: var(--clr-dark); }

/* ── FAQ ACCORDION ───────────────────────────────────────── */
.faq-list { max-width: 800px; }
.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--clr-red);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--clr-red); }
.faq-body { padding: 0 22px 20px; font-size: .92rem; color: var(--clr-muted); line-height: 1.7; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--clr-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--clr-dark);
  background: var(--clr-white);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-red);
  box-shadow: 0 0 0 3px rgba(185,28,28,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 16px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: #FEF2F2;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail p { font-size: .9rem; color: var(--clr-muted); }
.contact-detail strong { display: block; color: var(--clr-dark); margin-bottom: 2px; }

/* ── COST TABLE ──────────────────────────────────────────── */
.cost-table-wrap {
  overflow-x: auto;
  margin-top: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
}
.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.cost-table thead tr {
  background: var(--clr-dark);
  color: #fff;
}
.cost-table th {
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cost-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-mid);
  line-height: 1.5;
}
.cost-table td:last-child {
  font-weight: 700;
  color: var(--clr-dark);
  white-space: nowrap;
}
.cost-table tbody tr:last-child td { border-bottom: none; }
.cost-table tbody tr:nth-child(even) { background: var(--clr-bg); }
.cost-table tbody tr:hover { background: #fef2f2; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.contact-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-top: 4px solid var(--clr-red);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #fef2f2;
  border-radius: 50%;
  margin: 0 auto 16px;
  color: var(--clr-red);
}
.contact-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 8px;
}
.contact-card-primary {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-red);
  text-decoration: none;
  margin-bottom: 6px;
}
.contact-card p { font-size: .88rem; color: var(--clr-muted); line-height: 1.6; margin: 0; }

.contact-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}
.contact-service-card {
  display: block;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
}
.contact-service-card:hover { border-color: var(--clr-red); box-shadow: 0 4px 16px rgba(185,28,28,.08); }
.contact-service-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 8px;
}
.contact-service-card p { font-size: .88rem; color: var(--clr-muted); line-height: 1.6; margin-bottom: 12px; }
.contact-service-link { font-size: .82rem; font-weight: 700; color: var(--clr-red); letter-spacing: .03em; }

@media (max-width: 900px) {
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .contact-services { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .contact-cards { grid-template-columns: 1fr; }
  .contact-services { grid-template-columns: 1fr; }
}

/* ── ROOF REPLACEMENT PAGE ───────────────────────────────── */
.replacement-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.replacement-step {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-red);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.replacement-step h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 8px;
}
.replacement-step p { font-size: .92rem; color: var(--clr-muted); line-height: 1.75; margin: 0; }
.replacement-step--wide { grid-column: 1 / -1; }

.cost-factors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.cost-factor {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.cost-factor h4 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 6px;
}
.cost-factor p { font-size: .88rem; color: var(--clr-muted); line-height: 1.7; margin: 0; }

@media (max-width: 640px) {
  .cost-factors { grid-template-columns: 1fr; }
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--clr-dark); padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .footer-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.social-icon:hover { background: var(--clr-red); color: var(--clr-white); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--clr-white); }
.footer-col p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-col p a { color: var(--clr-gold); }
.footer-col p a:hover { text-decoration: underline; }
.footer-cta-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 20px;
  background: var(--clr-red);
  color: var(--clr-white);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .2s;
}
.footer-cta-btn:hover { background: var(--clr-red-dk); }
.footer-bottom {
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .hero { padding: 56px 0 48px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .header-right { flex-direction: column; align-items: flex-end; gap: 8px; }
  .header-phone-num { font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 8px 16px; }
}
