:root {
  --brand-red: #C8102E;
  --brand-red-dark: #9E0B24;
  --brand-black: #1A1A1A;
  --brand-grey: #6B6B6B;
  --brand-light-grey: #F5F5F5;
  --brand-bg: #FFFFFF;
  --brand-accent: #FFD700;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --max: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--brand-black);
  background: var(--brand-bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== TOP EMERGENCY BAR ===== */
.emergency-bar {
  background: var(--brand-red);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.emergency-bar a { color: #fff; text-decoration: none; }
.emergency-bar a:hover { text-decoration: underline; }

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid #eee;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brand-black);
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.3rem;
  font-style: italic;
  letter-spacing: -0.04em;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .brand { font-weight: 900; font-size: 1.05rem; letter-spacing: -0.02em; }
.logo-text .sub { font-size: 0.7rem; color: var(--brand-grey); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
nav.primary { display: none; gap: 28px; }
nav.primary a { color: var(--brand-black); font-weight: 600; font-size: 0.95rem; }
.header-cta {
  background: var(--brand-red);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s;
}
.header-cta:hover { background: var(--brand-red-dark); text-decoration: none; color: #fff; }
.header-cta span.label { display: none; }
@media (min-width: 900px) {
  nav.primary { display: flex; }
  .header-cta span.label { display: inline; }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(180deg, #fff 0%, var(--brand-light-grey) 100%);
  padding: 48px 20px 56px;
  position: relative;
  overflow: hidden;
}
.hero-inner { max-width: var(--max); margin: 0 auto; display: grid; gap: 32px; align-items: center; }
.hero-kicker {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--brand-black);
}
.hero h1 span.red { color: var(--brand-red); }
.hero p.lede {
  font-size: 1.15rem;
  color: var(--brand-grey);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.1s, box-shadow 0.15s, background 0.15s;
  border: 0;
  cursor: pointer;
}
.btn-primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--brand-red-dark); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-secondary {
  background: #fff;
  color: var(--brand-black);
  border: 2px solid var(--brand-black);
}
.btn-secondary:hover { background: var(--brand-black); color: #fff; text-decoration: none; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 8px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--brand-grey); font-weight: 600; }
.trust-item svg { width: 20px; height: 20px; color: var(--brand-red); flex-shrink: 0; }
.hero-photo {
  background: var(--brand-black);
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.photo-placeholder {
  padding: 24px;
  text-align: center;
}
.photo-placeholder .tag {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.photo-placeholder p { font-size: 0.9rem; opacity: 0.85; max-width: 280px; margin: 0 auto; }
.photo-placeholder svg { margin: 0 auto 16px; opacity: 0.3; }
@media (min-width: 900px) {
  .hero { padding: 72px 20px 80px; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .hero h1 { font-size: 3.2rem; }
}

/* ===== SECTIONS ===== */
section { padding: 64px 20px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-kicker {
  color: var(--brand-red);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 700px;
  margin: 0 auto;
}
.section-header p.lede {
  color: var(--brand-grey);
  font-size: 1.1rem;
  margin-top: 14px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 900px) {
  .section-header h2 { font-size: 2.5rem; }
}

/* ===== SERVICE GRID ===== */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-card {
  background: #fff;
  border: 2px solid #eee;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  color: var(--brand-black);
  display: block;
}
.service-card:hover {
  border-color: var(--brand-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--brand-black);
}
.service-card .icon {
  width: 56px;
  height: 56px;
  background: var(--brand-red);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card .icon svg { width: 32px; height: 32px; }
.service-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.service-card p { color: var(--brand-grey); font-size: 0.95rem; margin-bottom: 14px; }
.service-card .price {
  display: inline-block;
  background: var(--brand-light-grey);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-black);
}
.service-card .arrow { color: var(--brand-red); font-weight: 700; margin-top: 16px; display: inline-block; }
@media (min-width: 700px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid #eee;
  position: relative;
}
.step-num {
  width: 42px;
  height: 42px;
  background: var(--brand-black);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.step p { color: var(--brand-grey); font-size: 0.95rem; }
@media (min-width: 800px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== TRUST / WHY ===== */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.why-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--brand-light-grey);
  border-radius: var(--radius);
}
.why-item .icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--brand-red);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-item .icon-wrap svg { width: 26px; height: 26px; }
.why-item h4 { font-weight: 800; font-size: 1.05rem; margin-bottom: 4px; }
.why-item p { color: var(--brand-grey); font-size: 0.9rem; }
@media (min-width: 700px) { .why-grid { grid-template-columns: 1fr 1fr; } }

/* ===== LOCATIONS GRID ===== */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.location-pill {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 14px 18px;
  text-decoration: none;
  color: var(--brand-black);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.15s, background 0.15s;
}
.location-pill:hover {
  border-color: var(--brand-red);
  background: var(--brand-red);
  color: #fff;
  text-decoration: none;
}
.location-pill:hover .arrow { color: #fff; }
.location-pill .arrow { color: var(--brand-red); font-weight: 700; }
@media (min-width: 700px) { .locations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .locations-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.review {
  background: var(--brand-light-grey);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.stars { color: var(--brand-accent); letter-spacing: 2px; margin-bottom: 12px; font-size: 1.1rem; }
.review-text { font-size: 1rem; color: var(--brand-black); margin-bottom: 16px; font-style: italic; }
.review-author { font-weight: 700; font-size: 0.9rem; }
.review-author span { font-weight: 400; color: var(--brand-grey); }
@media (min-width: 800px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== PRICING ===== */
.pricing-table {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: var(--shadow-sm);
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid #f0f0f0;
  gap: 16px;
}
.pricing-row:last-child { border-bottom: 0; }
.pricing-row .label { font-weight: 600; font-size: 0.95rem; }
.pricing-row .price { font-weight: 800; color: var(--brand-red); white-space: nowrap; }
.pricing-disclaimer { text-align: center; color: var(--brand-grey); font-size: 0.85rem; margin-top: 16px; }

/* ===== CTA BLOCK ===== */
.cta-block {
  background: var(--brand-black);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
}
.cta-block h2 {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.cta-block p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-block .btn-primary { font-size: 1.15rem; padding: 18px 32px; }
.cta-phone-secondary { margin-top: 18px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.cta-phone-secondary a { color: #fff; font-weight: 700; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 0;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  color: var(--brand-black);
  font-family: inherit;
}
.faq-q::after { content: "+"; color: var(--brand-red); font-weight: 700; font-size: 1.3rem; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px 18px; color: var(--brand-grey); font-size: 0.95rem; display: none; }
.faq-item.open .faq-a { display: block; }

/* ===== BULLETS & PROSE ===== */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { margin-bottom: 16px; font-size: 1.05rem; }
.bullet-list { list-style: none; padding: 0; max-width: 760px; margin: 0 auto; }
.bullet-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}
.bullet-list li:last-child { border-bottom: 0; }
.bullet-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 3px;
  background: var(--brand-red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--brand-black);
  color: #fff;
  padding: 56px 20px 32px;
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.footer-col h5 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.75); font-weight: 500; font-size: 0.95rem; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-brand .brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .logo-mark { background: var(--brand-red); }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 16px; }
.footer-phone { display: block; color: #fff; font-weight: 800; font-size: 1.15rem; margin-bottom: 6px; }
.footer-phone:hover { color: var(--brand-red); text-decoration: none; }
.footer-tollfree { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.footer-tollfree a { color: rgba(255,255,255,0.85); font-weight: 700; }
.footer-bottom {
  max-width: var(--max);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
@media (min-width: 800px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

/* ===== MOBILE STICKY CALL BAR ===== */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brand-red);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  z-index: 200;
  text-decoration: none;
  color: #fff;
}
.mobile-call-bar:hover { text-decoration: none; color: #fff; background: var(--brand-red-dark); }
.mobile-call-bar svg { width: 22px; height: 22px; }
@media (min-width: 900px) { .mobile-call-bar { display: none; } }
body { padding-bottom: 64px; }
@media (min-width: 900px) { body { padding-bottom: 0; } }

/* ===== PAGE-HERO (non-home) ===== */
.page-hero {
  background: var(--brand-black);
  color: #fff;
  padding: 56px 20px 48px;
  text-align: center;
}
.page-hero .section-kicker { color: var(--brand-red); }
.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 14px;
  color: #fff;
}
.page-hero p.lede {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 24px;
}
.page-hero .hero-ctas { justify-content: center; }
@media (min-width: 900px) { .page-hero { padding: 80px 20px 64px; } .page-hero h1 { font-size: 3rem; } }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-16 { margin-top: 16px; }
.divider { height: 1px; background: #eee; margin: 48px 0; }
