/* ============================================================
   valentineroof-dark — global.css
   Built from design-systems/valentineroof/rebuilt/index.html and
   extended to cover all 12 page-types for the v3 template factory.

   Theme: crimson-#a0263d brand + yellow-#ffca1b accent on white,
   Work Sans throughout, dark gradient hero with video, two-city
   HQ banner, alternating cover-image content sections, awards
   grid, 5px base grid, 1200px container.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --background:    #ffffff;
  --surface:       #f5f5f5;
  --surface-alt:   #e7e7e7;
  --text-primary:  #222222;
  --text-muted:    #bdbdbd;
  --text-on-dark:  #ffffff;

  --brand:         #a0263d;       /* primary crimson — nav-upper, headings, primary CTA blocks */
  --brand-dark:    #6f1a2a;       /* hover / pressed state for crimson */
  --accent:        #ffca1b;       /* yellow — main CTA buttons, focus, links */
  --accent-dark:   #d4a40b;

  --hero-grad-1:   #071b2e;       /* hero gradient stop 1 (deep teal-black) */
  --hero-grad-2:   #110b07;       /* hero gradient stop 2 (warm-black) */
  --section-dark:  #252c38;       /* dark cost-section background */
  --footer-bg:     #222222;
  --footer-bar:    #333333;

  --border:        #dddddd;
  --border-strong: #333333;

  --success:       #53a654;
  --danger:        #ed4337;

  --font-body:     'Work Sans', system-ui, -apple-system, sans-serif;
  --font-display:  'Work Sans', system-ui, -apple-system, sans-serif;

  --container:     1200px;
  --radius:        5px;
  --radius-sm:     3px;
  --radius-lg:     8px;

  --shadow-sm:     0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md:     0 3px 8px rgba(0, 0, 0, 0.24);
  --shadow-lg:     0 5px 12px rgba(0, 0, 0, 0.3);

  --transition:    0.3s ease;
  --transition-fast: 0.2s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s ease, color .2s ease; }
a:hover { opacity: 0.85; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Base ──────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }

p { margin-bottom: 15px; max-width: 70ch; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }
em { font-style: italic; }

/* ── Layout ────────────────────────────────────────────────── */
.site-wrapper {
  max-width: var(--container);
  margin: 0 auto;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.padding-x { padding-left: 20px; padding-right: 20px; }
.padding-y { padding-top: 40px; padding-bottom: 40px; }

.section    { padding: 70px 0; }
.section-sm { padding: 45px 0; }
.section-lg { padding: 100px 0; }

.row { display: flex; flex-wrap: wrap; gap: 30px; }
.col { flex: 1; min-width: 0; }
.col-half   { flex: 0 0 calc(50% - 15px); }
.col-third  { flex: 0 0 calc(33.333% - 20px); }
.col-quarter{ flex: 0 0 calc(25% - 22.5px); }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-muted  { color: var(--text-muted); }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: background var(--transition-fast), color var(--transition-fast), opacity var(--transition-fast);
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--text-primary);
  border-color: var(--accent);
}
.btn-primary:hover {
  opacity: 1;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn-brand {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-brand:hover {
  opacity: 1;
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}
.btn-white {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}
.btn-white:hover {
  opacity: 1;
  background: var(--surface);
}
.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover { background: var(--brand); color: #fff; opacity: 1; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; opacity: 1; }
.btn-lg { padding: 15px 40px; font-size: 17px; }
.btn-sm { padding: 8px 18px; font-size: 14px; }

/* ── Site Header ───────────────────────────────────────────── */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}
.nav-upper {
  background: var(--brand);
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}
.nav-upper .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.nav-upper a { color: #fff; }
.nav-upper a:hover { color: var(--accent); opacity: 1; }
.nav-main {
  padding: 15px 0;
}
.nav-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.main-nav {
  display: flex;
  gap: 25px;
  align-items: center;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.main-nav .nav-link {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 4px;
  white-space: nowrap;
}
.main-nav .nav-link:hover { color: var(--brand); opacity: 1; }
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-cta .phone-link {
  color: var(--brand);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}
.nav-locations {
  background: var(--surface);
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.nav-locations .container {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-locations .nav-item { font-size: 14px; }
.nav-locations .nav-item a {
  color: var(--brand);
  font-weight: 600;
}

/* Mobile hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 30px;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 20px 20px;
}
.nav-drawer.is-open { display: flex; }
.nav-drawer .nav-link {
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
}
.nav-drawer .nav-link:hover { background: var(--surface); color: var(--brand); opacity: 1; }
.nav-drawer .btn { margin-top: 8px; text-align: center; }

/* Mobile sticky CTA bar */
.nav-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, .15);
  padding: 12px 0;
  z-index: 99;
}
.nav-sticky-cta .container {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.nav-sticky-cta a {
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
}
.cta-btn-phone   { background: var(--brand);  color: #fff; }
.cta-btn-contact { background: var(--accent); color: var(--text-primary); }

/* ── HERO (video / dark gradient) ──────────────────────────── */
.hero-atf-section {
  background: linear-gradient(135deg, var(--hero-grad-1) 0%, var(--hero-grad-2) 100%);
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-atf-section .bg-contain {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-atf-section video,
.hero-atf-section .bg-contain img,
.hero-atf-section .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero-atf-section .container {
  position: relative;
  z-index: 1;
  padding-top: 70px;
  padding-bottom: 70px;
}
.hero-eyebrow {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 15px;
}
.hero-heading,
.hero-atf-section h1 {
  color: #fff;
  margin-bottom: 15px;
}
.hero-sub-heading,
.hero-atf-section h2 {
  color: #fff;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  margin-bottom: 25px;
  max-width: 680px;
}
.hero-sub {
  color: rgba(255,255,255,.92);
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 60ch;
}
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.hero-phone:hover { color: var(--accent); opacity: 1; }
.video-btn-wrap { display: inline-block; }
.play-video-btn {
  background: var(--brand);
  color: #fff;
  padding: 18px 36px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
}
.play-video-btn:hover { background: var(--brand-dark); }

/* ── HQ Cities Banner (under hero) ─────────────────────────── */
.hq-cities-banner-section {
  background: var(--surface-alt);
  padding: 40px 0;
}
.hq-cities-contain {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.hq-city-item {
  font-style: normal;
  text-align: center;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hq-city-item .city-name {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand);
}
.hq-city-item .city-name:hover { color: var(--brand-dark); opacity: 1; }
.hq-city-item .city-address,
.hq-city-item .city-phone {
  color: var(--text-primary);
  font-size: 0.95rem;
}
.hq-city-item .city-phone { font-weight: 600; }
.hq-city-item .rating-stars {
  display: inline-block;
  color: var(--accent);
  margin-top: 4px;
  letter-spacing: 1px;
}

/* ── Cover-image content section (alternating layouts) ────── */
.cover-section {
  position: relative;
  padding: 90px 0;
  background: var(--background);
  overflow: hidden;
}
.cover-section .container { position: relative; z-index: 2; }
.cover-section .section-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}
.cover-section .section-content h1,
.cover-section .section-content h2 {
  color: var(--text-primary);
  margin-bottom: 18px;
}
.cover-section .section-content p {
  color: var(--text-primary);
  margin-bottom: 25px;
}
.cover-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}
.brand-script-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: auto;
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
}
.brand-van-decor {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 380px;
  max-width: 38vw;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

/* ── Section headers ──────────────────────────────────────── */
.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 10px auto 0; }
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 8px;
}
.section-divider {
  height: 4px;
  background: var(--accent);
  width: 60px;
  border-radius: 2px;
  margin: 14px 0 22px;
}
.section-divider.center { margin-left: auto; margin-right: auto; }

/* ── Awards / badges grid ─────────────────────────────────── */
.awards-section {
  background: #fff;
  padding: 70px 0;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  padding: 20px 0;
}
.award-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 120px;
}
.award-item img {
  max-width: 220px;
  width: 100%;
  height: auto;
  filter: grayscale(20%);
  transition: filter var(--transition-fast);
}
.award-item:hover img { filter: grayscale(0%); }

/* ── Roofing options grid (homepage 4-up) ─────────────────── */
.options-section {
  background: var(--surface);
  padding: 90px 0;
}
.options-section h2 { text-align: center; margin-bottom: 40px; }
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.options-grid li,
.options-grid .option-card {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.options-grid li:hover,
.options-grid .option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.options-grid a {
  display: block;
  height: 100%;
  position: relative;
}
.options-grid .content-contain {
  position: relative;
  z-index: 2;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.25));
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.options-grid .content-contain h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.4rem;
}
.options-grid .content-contain p {
  color: rgba(255,255,255,.92);
  font-size: 0.95rem;
  margin-bottom: 0;
}
.options-grid img.cover-img-bg {
  opacity: 1;
}

/* ── Brand experience band (crimson section) ──────────────── */
.brand-band-section {
  background: var(--brand);
  padding: 90px 0;
  text-align: center;
  color: #fff;
}
.brand-band-section h2 { color: #fff; margin-bottom: 25px; }
.brand-band-section p {
  max-width: 720px;
  margin: 0 auto 18px;
  color: rgba(255,255,255,.95);
  font-size: 1.05rem;
}
.brand-band-section ul {
  list-style: none;
  max-width: 700px;
  margin: 25px auto 0;
}
.brand-band-section li {
  padding: 8px 0 8px 28px;
  font-size: 1rem;
  position: relative;
  text-align: left;
}
.brand-band-section li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 8px;
}

/* ── Cost / Calculator dark-content section ───────────────── */
.cost-section {
  position: relative;
  background: var(--section-dark);
  padding: 80px 0;
  display: flex;
  align-items: center;
  min-height: 460px;
}
.cost-section .cover-img-bg { opacity: 0.25; }
.cost-section .section-content {
  background: rgba(255,255,255,.95);
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 30px auto 30px 0;
  position: relative;
  z-index: 2;
}
.cost-section .section-content h2 { color: var(--text-primary); margin-bottom: 18px; }
.cost-section .section-content p { color: var(--text-primary); margin-bottom: 24px; }

/* ── Service cards (homepage / services page) ─────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-card .service-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-card .service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card .service-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}
.service-card h3 {
  color: #fff;
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  font-size: 1.4rem;
  margin: 0;
}
.service-card .service-content { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.service-card .service-text { margin-bottom: 14px; color: var(--text-primary); }
.service-card .service-btn { color: var(--brand); font-weight: 700; font-size: 14px; }
.svc-card { /* alias for services-overview compatibility */
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.svc-card-body { padding: 22px; }
.svc-card-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.svc-card-body p { font-size: 0.95rem; margin-bottom: 14px; }
.svc-link { color: var(--brand); font-weight: 700; font-size: 14px; }

/* Service-page inclusions / process / detail lists */
.detail-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
}
.detail-list li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 15px;
}
.detail-list li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 8px;
}

/* Process steps (numbered) */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  counter-reset: steps;
}
.process-step {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  border-left: 4px solid var(--accent);
}
.process-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.process-step p { font-size: 0.95rem; color: var(--text-primary); margin: 0; }

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 16px 0;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.comparison-table thead th { background: var(--surface); font-weight: 700; }
.comparison-table tbody th { background: #fafafa; font-weight: 700; }
.comparison-table .row-business { background: rgba(160, 38, 61, 0.08); }
.comparison-table .row-business th { background: var(--brand); color: #fff; }

/* Case study */
.case-study {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 30px;
}
.case-study .case-meta {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.case-study h3 { margin-bottom: 12px; }
.case-study .materials {
  list-style: disc;
  margin: 12px 0 12px 20px;
}
.case-study .outcome {
  font-weight: 700;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card .stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-card blockquote {
  font-size: 15px;
  font-style: italic;
  color: var(--text-primary);
  margin: 0 0 14px;
  line-height: 1.6;
}
.testimonial-card .reviewer {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 700;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.review-card-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
}
.review-card-text {
  margin: 12px 0 16px;
  font-style: italic;
}
.review-card-author { font-weight: 700; font-size: 14px; }
.review-card-badge {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.review-source-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

/* ── CTA bands ────────────────────────────────────────────── */
.cta-band {
  background: var(--brand);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p {
  color: rgba(255,255,255,.92);
  margin: 0 auto 24px;
  max-width: 60ch;
}
.cta-band .cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.cta-phone-large {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.cta-phone-large:hover { color: var(--accent); opacity: 1; }
.cta-footnote {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  margin-top: 18px;
}

/* Yellow CTA band variant */
.cta-band.cta-band-accent { background: var(--accent); }
.cta-band.cta-band-accent h2 { color: var(--text-primary); }
.cta-band.cta-band-accent p  { color: var(--text-primary); }

/* ── FAQ accordion ────────────────────────────────────────── */
.faq-list,
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
  font-family: inherit;
}
.faq-question[aria-expanded="true"] { background: var(--surface); }
.faq-icon {
  color: var(--brand);
  font-size: 24px;
  font-weight: 700;
  transition: transform .2s ease;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 800px;
}
.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--text-primary);
}
details.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--brand);
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform var(--transition);
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item .faq-answer { padding: 0 24px 22px; max-height: none; }

/* ── Inputs / forms ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 14px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: #fff;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 202, 27, 0.3);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}
.info-panel {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
}
.info-panel h2 { margin-bottom: 14px; }
.info-row {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.info-row:last-child { border-bottom: none; }
.info-row strong { display: block; margin-bottom: 4px; }

/* ── Service-area chips ───────────────────────────────────── */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.area-chip,
.location-chip {
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}
.area-chip:hover,
.location-chip:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-primary);
  opacity: 1;
}
.location-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.location-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: block;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.location-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.location-card h3 { margin-bottom: 8px; color: var(--brand); }
.location-card p { font-size: 14px; margin-bottom: 12px; }
.location-card-link { color: var(--brand); font-weight: 700; font-size: 14px; }
.loc-service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.loc-service-card h3 { font-size: 1.2rem; margin-bottom: 8px; }

/* ── Values / Team / Feature card grids ───────────────────── */
.values-grid,
.team-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.value-card,
.team-member,
.feature-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.value-card h3,
.team-member h3 { font-size: 1.2rem; margin-bottom: 8px; }
.team-member img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.team-member .role {
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── Coverage two-column (warranty page) ──────────────────── */
.coverage-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.coverage-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.coverage-col h3 { margin-bottom: 14px; }
.coverage-col ul { list-style: none; padding: 0; margin: 0; }
.coverage-col li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.coverage-col li:last-child { border-bottom: none; }
.coverage-col.covered li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 8px;
}
.coverage-col.not-covered li::before {
  content: '✕';
  color: var(--danger);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 8px;
}

/* ── Manufacturer page (why / product / warranty stats) ──── */
.why-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
}
.why-icon { font-size: 2.25rem; margin-bottom: 12px; }
.why-card h3 { margin-bottom: 8px; }
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.product-card-thumb { width: 100%; height: 180px; object-fit: cover; }
.product-card-body { padding: 22px; }
.product-card-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text-primary);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.product-spec-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.product-spec {
  background: var(--surface);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
}
.warranty-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  padding: 28px;
  background: var(--surface);
  border-radius: var(--radius);
  margin: 28px 0;
  text-align: center;
}
.warranty-stat {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
}
.warranty-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ── Privacy / legal pages ────────────────────────────────── */
.legal { padding: 60px 0; background: #fff; }
.legal h1 { margin-bottom: 8px; }
.legal .subline {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 14px;
}
.legal h2 { font-size: 1.5rem; margin: 28px 0 12px; }
.legal p, .legal li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.legal ul { margin-left: 1.4em; list-style: disc; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 60px 0 0;
}
.site-footer .container { max-width: var(--container); padding: 0 20px; }
.logo-cta-contain {
  text-align: center;
  margin-bottom: 40px;
}
.logo-cta-contain .footer-logo {
  height: 70px;
  width: auto;
  margin: 0 auto 18px;
}
.logo-cta-contain .btn {
  margin-top: 8px;
}
.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  list-style: none;
  margin: 22px 0 6px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  transition: background var(--transition-fast);
}
.social-links a:hover { background: var(--accent); opacity: 1; }
.social-links svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.copyright {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 36px;
  padding: 30px 0 20px;
}
.footer-grid .nav-col ul { list-style: none; padding: 0; margin: 0; }
.footer-grid .nav-col a {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 2;
}
.footer-grid .nav-col a:hover { color: var(--accent); opacity: 1; }
.footer-heading,
.footer-grid .list-header {
  display: block;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 1rem;
}
.hq-cities-bar-section {
  background: var(--footer-bar);
  padding: 30px 0;
}
.hq-cities-bar-section .hq-city-item {
  color: #fff;
  text-align: left;
  align-items: flex-start;
}
.hq-cities-bar-section .city-name { color: var(--accent); }
.hq-cities-bar-section .city-phone { color: #fff; }
.hq-cities-bar-section .city-address { color: rgba(255,255,255,.75); }
.license-numbers {
  list-style: none;
  text-align: center;
  padding: 18px 0;
  color: var(--text-muted);
  font-size: 12px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 16px 20px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  max-width: var(--container);
  margin: 0 auto;
}
.footer-bottom a { color: rgba(255,255,255,.85); }
.footer-bottom a:hover { color: var(--accent); opacity: 1; }

/* ── Trust strip (used in some pages) ─────────────────────── */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.trust-item svg.trust-icon {
  width: 32px;
  height: 32px;
  color: var(--brand);
}
.trust-item .stars { color: var(--accent); font-size: 16px; letter-spacing: 1px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .main-nav,
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-locations { display: none; }
  .nav-sticky-cta { display: block; }
  body { padding-bottom: 70px; } /* room for sticky CTA */

  .hq-cities-banner-section .hq-cities-contain { gap: 24px; }
  .cover-section .section-content { max-width: 100%; }
  .brand-van-decor { display: none; }
  .cost-section .section-content { margin: 0; padding: 32px; }

  .contact-grid,
  .coverage-cols { grid-template-columns: 1fr; }

  .detail-list { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .nav-upper { display: none; }
  .section    { padding: 50px 0; }
  .section-lg { padding: 70px 0; }
  .options-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-actions { gap: 12px; }
  .hero-atf-section { min-height: 480px; }
  .hero-atf-section .container { padding-top: 50px; padding-bottom: 50px; }
  .cta-band { padding: 55px 0; }
  .cta-phone-large { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
