/* ============================================================
   STOP Restoration of the Carolinas — Premium Design System
   ============================================================ */

:root {
  --black:      #08090D;
  --charcoal:   #111318;
  --charcoal-2: #191C24;
  --red:        #C41E2E;
  --red-dark:   #9E1724;
  --white:      #FFFFFF;
  --off-white:  #F6F5F3;
  --warm-100:   #EDECEA;
  --text-dim:   rgba(255,255,255,0.45);
  --text-muted: rgba(255,255,255,0.70);
  --border-d:   rgba(255,255,255,0.07);
  --border-l:   rgba(0,0,0,0.08);
  --font:       'Inter', system-ui, -apple-system, sans-serif;
  --max-w:      1280px;
  --pad-x:      2rem;
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.12);
  --shadow-md:  0 4px 24px rgba(0,0,0,.18);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.28);

  /* ── Legacy aliases — some inner pages have inline <style> using old var names ── */
  --navy:       #08090D;   /* maps to --black  */
  --navy-light: #111318;   /* maps to --charcoal */
  --orange:     #C41E2E;   /* maps to --red */
  --gray-100:   #F6F5F3;
  --gray-200:   rgba(0,0,0,.08);
  --gray-300:   rgba(0,0,0,.12);
  --gray-500:   #999999;
  --gray-600:   #777777;
  --gray-700:   #555555;
  --gray-800:   #333333;
  --gray-900:   #111111;
}

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

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--red); z-index: 99999; pointer-events: none;
  transition: width .08s linear;
}

/* ── Scroll-triggered fade-up ── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-up.is-visible { opacity: 1; transform: none; transition: none; }
  .scroll-progress { display: none; }
}

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.05; font-weight: 800; }
h1 { font-size: clamp(2.8rem, 7vw, 6.5rem); letter-spacing: -.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.025em; }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em; }
h4 { font-size: 1rem; font-weight: 600; }
p  { line-height: 1.75; }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1.25rem;
}
.eyebrow-dim { color: var(--text-dim); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .95rem 2rem; background: var(--red); color: #fff;
  font-weight: 700; font-size: 1rem; border-radius: var(--radius-sm);
  border: 2px solid var(--red); transition: all .2s; white-space: nowrap;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .95rem 2rem; background: transparent; color: #fff;
  font-weight: 700; font-size: 1rem; border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.28); transition: all .2s; white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }

.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; background: #fff; color: var(--red);
  font-weight: 700; font-size: 1rem; border-radius: var(--radius-sm);
  border: 2px solid #fff; transition: all .2s;
}
.btn-white:hover { background: transparent; color: #fff; }

.btn-outline-white {
  display: inline-flex; align-items: center;
  padding: .9rem 2rem; background: transparent; color: #fff;
  font-weight: 700; font-size: 1rem; border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.35); transition: all .2s;
}
.btn-outline-white:hover { border-color: #fff; }

/* ── Navigation ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.5rem 0;
  transition: background .35s, backdrop-filter .35s, padding .35s, box-shadow .35s;
}
.site-nav.scrolled {
  background: rgba(8,9,13,.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-d);
  padding: .85rem 0;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-logo { flex-shrink: 0; text-decoration: none; display: flex; flex-direction: column; align-items: flex-start; line-height: 1; gap: 2px; }
.nav-logo-img { display: none; }
.logo-stop-word { font-size: 2.1rem; font-weight: 900; color: #C41E2E; letter-spacing: -.03em; line-height: 1; font-family: var(--font); display: block; }
.logo-rest-bar { background: #fff; color: #08090D; font-size: .7rem; font-weight: 900; padding: .18rem .45rem; letter-spacing: .06em; text-transform: uppercase; font-family: var(--font); display: block; }
.nav-links { display: flex; align-items: center; gap: 0; margin: 0 auto; }
.nav-links a {
  color: var(--text-muted); font-size: .875rem; font-weight: 500;
  padding: .5rem .9rem; border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-phone {
  display: flex; flex-direction: column; align-items: flex-end;
  white-space: nowrap; margin-left: .5rem;
}
.nav-phone-label { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }
.nav-phone-num   { font-size: .95rem; font-weight: 800; color: #fff; transition: color .2s; }
.nav-phone:hover .nav-phone-num { color: var(--red); }
.nav-call-btn {
  display: inline-flex; align-items: center;
  padding: .55rem 1.25rem; background: var(--red); color: #fff;
  font-size: .85rem; font-weight: 700; border-radius: var(--radius-sm);
  margin-left: .75rem; transition: background .2s; white-space: nowrap;
}
.nav-call-btn:hover { background: var(--red-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: .5rem; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }

/* Mobile nav dropdown */
.nav-links.open {
  display: flex; flex-direction: column; align-items: stretch;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(8,9,13,.98); border-top: 1px solid var(--border-d);
  padding: 1rem var(--pad-x) 1.5rem; gap: .1rem;
}
.nav-links.open a { padding: .75rem 1rem; border-radius: var(--radius-sm); }

/* ── Hero ── */
.hero {
  min-height: 100vh; background: var(--black);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.42;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.58) 0%, rgba(0,0,0,.40) 50%, rgba(0,0,0,.62) 100%),
    radial-gradient(ellipse 70% 70% at 85% 50%, rgba(196,30,46,.10) 0%, transparent 65%);
}
.hero-inner {
  flex: 1; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: 1fr 360px; gap: 4rem;
  align-items: center; padding-top: 11rem; padding-bottom: 5rem;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(220,80,90,.85); margin-bottom: 1.75rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: rgba(220,80,90,.85); flex-shrink: 0; }
.hero-content h1 { color: #fff; margin-bottom: 1.5rem; }
.hero-content h1 em { font-style: normal; color: var(--red); }
.hero-sub { color: var(--text-dim); font-size: 1.1rem; line-height: 1.75; max-width: 520px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero floating card */
.hero-card {
  background: rgba(255,255,255,.04); border: 1px solid var(--border-d);
  border-top: 3px solid var(--red); border-radius: var(--radius-lg); padding: 2.25rem;
}
.hero-card-label { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: .75rem; }
.hero-card-phone {
  display: block; font-size: 1.85rem; font-weight: 900; color: #fff;
  letter-spacing: -.025em; margin-bottom: .5rem; transition: color .2s;
}
.hero-card-phone:hover { color: var(--red); }
.hero-card-sub { font-size: .875rem; color: var(--text-dim); line-height: 1.5; margin-bottom: 1.75rem; }
.hero-card-checks { display: flex; flex-direction: column; gap: .5rem; }
.hero-card-checks span { font-size: .825rem; color: var(--text-muted); font-weight: 500; display: flex; align-items: center; gap: .5rem; }
.hero-card-checks span::before { content: ''; display: block; width: 14px; height: 14px; background: var(--red); border-radius: 50%; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

/* Stats bar */
.hero-stats { background: var(--red); position: relative; z-index: 1; }
.hero-stats-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 1.75rem var(--pad-x);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 2rem; font-weight: 900; color: #fff; letter-spacing: -.03em; line-height: 1; margin-bottom: .3rem; }
.stat-label { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.65); }

/* ── Services Section ── */
.services-section { background: var(--charcoal); padding: 7rem 0; }
.services-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; gap: 2rem; }
.services-header h2 { color: #fff; }
.services-header a { color: var(--text-dim); font-size: .85rem; font-weight: 600; white-space: nowrap; padding-bottom: .5rem; transition: color .2s; }
.services-header a:hover { color: #fff; }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-d); border-radius: var(--radius-lg); overflow: hidden;
  gap: 1px; background: var(--border-d);
}
.svc-card {
  background: var(--charcoal-2); padding: 2.25rem 2rem;
  position: relative; transition: background .25s; overflow: hidden;
}
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--red); transition: width .4s ease; }
.svc-card:hover { background: #1e2230; }
.svc-card:hover::after { width: 100%; }
.svc-icon { color: var(--red); margin-bottom: 1.25rem; }
.svc-icon svg { width: 28px; height: 28px; stroke-width: 1.5; }
.svc-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: .6rem; }
.svc-card p { color: var(--text-dim); font-size: .875rem; line-height: 1.65; margin-bottom: 1.25rem; }
.svc-link { font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.25); display: flex; align-items: center; gap: .4rem; transition: color .2s; }
.svc-card:hover .svc-link { color: var(--red); }

/* ── Trust Section ── */
.trust-section { background: var(--off-white); padding: 7rem 0; }
.trust-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.trust-left .eyebrow { margin-bottom: 1rem; }
.trust-left h2 { color: var(--black); margin-bottom: 1.25rem; }
.trust-left > p { color: #555; font-size: 1.05rem; line-height: 1.8; margin-bottom: 2.5rem; }
.trust-list { display: flex; flex-direction: column; gap: 1.5rem; }
.trust-item { display: flex; gap: 1rem; align-items: flex-start; }
.trust-check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: .15rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='11' fill='%23C41E2E'/%3E%3Cpath d='M6 11l4 4 6-7' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}
.trust-item h4 { color: var(--black); margin-bottom: .2rem; font-size: .95rem; }
.trust-item p { color: #666; font-size: .875rem; line-height: 1.6; }
.trust-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.trust-stat {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-l);
}
.trust-stat-num { font-size: 2.75rem; font-weight: 900; color: var(--black); letter-spacing: -.04em; line-height: 1; margin-bottom: .35rem; }
.trust-stat-num sup { font-size: 1.25rem; vertical-align: super; }
.trust-stat-label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #999; }

/* ── Process Section ── */
.process-section { background: var(--black); padding: 7rem 0; }
.process-section h2 { color: #fff; text-align: center; margin-bottom: 4.5rem; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 23px; left: calc(12.5% + 22px); right: calc(12.5% + 22px);
  height: 1px; background: var(--border-d); z-index: 0;
}
.process-step { text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.step-num {
  width: 46px; height: 46px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 900; color: #fff;
  margin: 0 auto 1.5rem;
}
.process-step h3 { color: #fff; font-size: 1rem; margin-bottom: .5rem; }
.process-step p { color: var(--text-dim); font-size: .875rem; line-height: 1.65; }

/* ── Areas Section ── */
.areas-section { background: #f3f4f6; padding: 7rem 0; }
.areas-header { text-align: center; margin-bottom: 3rem; }
.areas-header h2 { color: var(--navy); }
.areas-header p { color: #666; margin-top: .75rem; font-size: 1.05rem; }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.areas-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,.07); }
.areas-card-head { padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1.25rem; background: var(--navy); position: relative; overflow: hidden; }
.areas-flag { position: absolute; right: 0; top: 0; height: 100%; width: auto; min-width: 70%; object-fit: cover; object-position: center; opacity: 0.55; pointer-events: none; mask-image: linear-gradient(to left, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 60%); -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 60%); }
.areas-card-head > div { position: relative; z-index: 1; }
.areas-state-name { font-size: 1.05rem; font-weight: 700; color: #fff; }
.areas-response { font-size: .78rem; color: rgba(255,255,255,.65); margin-top: .2rem; }
.areas-list { padding: 1.5rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1rem; list-style: none; margin: 0; }
.areas-list a { font-size: .92rem; color: #444; font-weight: 500; display: flex; align-items: center; gap: .35rem; transition: color .2s; }
.areas-list a::before { content: '→'; color: var(--red); font-size: .78rem; flex-shrink: 0; }
.areas-list a:hover { color: var(--red); }
.areas-footer { text-align: center; padding-top: .5rem; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.areas-footer p { color: #666; font-size: .95rem; margin: 0; }

/* ── Reviews Section ── */
.reviews-section { background: var(--charcoal); padding: 7rem 0; }
.reviews-head { text-align: center; margin-bottom: 3.5rem; }
.reviews-head h2 { color: #fff; }
.reviews-head p { color: var(--text-dim); margin-top: .75rem; }
/* Owner spotlight */
.owner-spotlight { display: flex; align-items: center; gap: 0; margin-bottom: 3.5rem; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; overflow: hidden; background: rgba(255,255,255,.03); }
.owner-spotlight-img { height: 200px; width: auto; flex-shrink: 0; display: block; }
.owner-spotlight-quote { padding: 2rem 2.5rem; }
.owner-spotlight-quote p { color: rgba(255,255,255,.85); font-size: 1.05rem; line-height: 1.75; font-style: italic; margin-bottom: 1rem; }
.owner-spotlight-quote cite { font-size: .75rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .08em; font-style: normal; }
@media (max-width: 640px) { .owner-spotlight { flex-direction: column; } .owner-spotlight-img { height: 140px; width: 100%; object-fit: cover; object-position: center 20%; } }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { background: rgba(255,255,255,.04); border: 1px solid var(--border-d); border-radius: var(--radius-lg); padding: 2rem; }
.review-stars { color: #F59E0B; font-size: .95rem; margin-bottom: .9rem; letter-spacing: .05em; }
.review-text { color: var(--text-muted); font-size: .9rem; line-height: 1.75; font-style: italic; margin-bottom: 1.25rem; }
.review-author { font-size: .75rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: .07em; }

/* ── Gallery Full Page ── */
.gallery-full-grid { display: flex; flex-direction: column; gap: 4rem; }
.gallery-full-card { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.gallery-full-card:nth-child(even) { direction: rtl; }
.gallery-full-card:nth-child(even) > * { direction: ltr; }
.gallery-full-card img { width: 100%; border-radius: var(--radius-lg); display: block; }
.gallery-full-info h3 { color: #fff; font-size: 1.5rem; margin-bottom: .75rem; }
.gallery-full-info p { color: var(--text-dim); line-height: 1.75; margin-bottom: 1.25rem; }
.gallery-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.gallery-tags span { background: rgba(255,255,255,.07); border: 1px solid var(--border-d); color: var(--text-dim); font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .3rem .75rem; border-radius: 100px; }
.gallery-more-cta { text-align: center; margin-top: 5rem; padding-top: 4rem; border-top: 1px solid var(--border-d); }
.gallery-more-cta p { color: var(--text-dim); margin-bottom: 1.5rem; font-size: 1rem; }
@media (max-width: 768px) { .gallery-full-card { grid-template-columns: 1fr; direction: ltr; } }

/* ── Gallery Section ── */
.gallery-section { background: var(--black); padding: 7rem 0; }
.gallery-head { text-align: center; margin-bottom: 3.5rem; }
.gallery-head h2 { color: #fff; }
.gallery-sub { color: var(--text-dim); margin-top: .75rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--charcoal); border: 1px solid var(--border-d); transition: transform .25s, box-shadow .25s; }
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-card img { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; }
.gallery-label { padding: .85rem 1.1rem; font-size: .75rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ── CTA Section ── */
.cta-section {
  background: #0b1928;
  position: relative; overflow: hidden;
  padding: 7rem 0; text-align: center;
}
/* red sweep glow */
.cta-section::before {
  content: '';
  position: absolute; top: -30%; right: -15%;
  width: 72%; height: 160%;
  background: radial-gradient(ellipse, rgba(196,30,46,.55) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
/* subtle left accent glow */
.cta-section::after {
  content: '';
  position: absolute; bottom: -20%; left: -10%;
  width: 45%; height: 100%;
  background: radial-gradient(ellipse, rgba(196,30,46,.18) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.75rem); margin-bottom: .75rem; }
.cta-section > .container > p,
.cta-section .cta-sub { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 1.75rem; max-width: 560px; margin-left: auto; margin-right: auto; }
/* trust badges row */
.cta-badges { display: flex; gap: .65rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.cta-badge { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.82); font-size: .72rem; font-weight: 700; padding: .32rem .9rem; border-radius: 50px; letter-spacing: .07em; text-transform: uppercase; }
/* phone */
.cta-phone { display: block; font-size: clamp(2.5rem, 7vw, 5.5rem); font-weight: 900; color: #fff; letter-spacing: -.03em; margin-bottom: 2rem; line-height: 1; transition: color .2s; }
.cta-phone:hover { color: var(--red); }
/* divider between phone and buttons */
.cta-divider { width: 48px; height: 3px; background: var(--red); border-radius: 2px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer { background: var(--black); border-top: 1px solid var(--border-d); padding: 5rem 0 2.5rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; margin-bottom: 2.5rem; border-bottom: 1px solid var(--border-d); }
.footer-brand-img { height: 80px; width: auto; margin-bottom: 1.25rem; border-radius: 4px; }
.footer-brand p { color: var(--text-dim); font-size: .875rem; line-height: 1.7; margin-bottom: 1rem; max-width: 280px; }
.footer-brand-phone { display: block; font-size: 1.05rem; font-weight: 800; color: var(--red); }
.footer-col h4 { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 1.25rem; }
.footer-col a { display: block; color: var(--text-dim); font-size: .875rem; margin-bottom: .55rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copy { color: rgba(255,255,255,.2); font-size: .8rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.2); font-size: .8rem; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ── Trust Bar (inner pages) ── */
.trust-bar { background: var(--charcoal-2); border-bottom: 1px solid var(--border-d); padding: 1rem 0; }
.trust-bar .container { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 2rem; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--text-dim); }

/* ── Inner Page Hero ── */
/* breadcrumb sits in doc flow ABOVE page-hero — give it a dark bg
   and push its content below the fixed nav + emergency bar          */
.breadcrumb {
  background: var(--black);
  padding: 7.5rem var(--pad-x) 0;
  font-size: .78rem; color: rgba(255,255,255,.3);
}
.breadcrumb a { color: rgba(255,255,255,.3); transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.6); }
/* page-hero preceded by breadcrumb needs less top padding */
.breadcrumb + .page-hero { padding-top: 1.5rem; }

.page-hero {
  background: var(--black); padding: 9rem 0 4.5rem;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 100% at 100% 50%, rgba(196,30,46,.07) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.72); } /* service-area pages use plain <p>, not .lead */
.page-hero .lead { color: var(--text-dim); font-size: 1.05rem; max-width: 560px; margin-bottom: 2rem; line-height: 1.7; }
.page-hero .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.page-cta-bar { background: var(--charcoal-2); border-top: 1px solid var(--border-d); padding: 1rem 0; }
.page-cta-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.page-cta-bar p, .page-cta-bar span { color: var(--text-muted); font-size: .9rem; }
.page-cta-bar a { background: var(--red); color: #fff; padding: .55rem 1.4rem; border-radius: var(--radius-sm); font-weight: 700; font-size: .875rem; white-space: nowrap; transition: background .2s; }
.page-cta-bar a:hover { background: var(--red-dark); }

/* ── Inner Page Content ── */
.page-content { background: var(--white); padding: 5rem 0; }
/* Service pages: main is the content-grid directly — give it breathing room */
main.content-grid { padding: 5rem var(--pad-x); }
.content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 4rem; }
.content-body h2 { color: var(--black); font-size: 1.55rem; margin: 3rem 0 .75rem; letter-spacing: -.02em; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { color: var(--black); font-size: 1.1rem; margin: 2rem 0 .5rem; }
.content-body p { color: #444; margin-bottom: 1rem; line-height: 1.8; }
.content-body ul { list-style: none; margin: 1rem 0 1.5rem; }
.content-body ul li { color: #444; padding: .35rem 0 .35rem 1.4rem; position: relative; }
.content-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.highlight-box { background: var(--off-white); border-left: 3px solid var(--red); padding: 1.25rem 1.5rem; margin: 1.5rem 0; border-radius: 0 var(--radius) var(--radius) 0; }
.highlight-box p { color: #333; font-weight: 500; margin: 0; }

/* Sidebar */
.sidebar-card { background: var(--black); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 1.5rem; position: sticky; top: 7rem; }
.sidebar-card h3 { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.sidebar-card .phone { display: block; font-size: 1.6rem; font-weight: 900; color: var(--red); letter-spacing: -.025em; margin-bottom: .4rem; }
.sidebar-card > p { color: var(--text-dim); font-size: .875rem; margin-bottom: 1.5rem; line-height: 1.6; }
.sidebar-card .btn-primary { width: 100%; justify-content: center; margin-bottom: .75rem; }
.sidebar-ghost { display: flex; align-items: center; justify-content: center; width: 100%; padding: .75rem; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); color: var(--text-dim); font-size: .875rem; font-weight: 600; transition: all .2s; }
.sidebar-ghost:hover { border-color: rgba(255,255,255,.3); color: #fff; }
.sidebar-services { background: var(--off-white); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; border: 1px solid var(--border-l); }
.sidebar-services h3 { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #aaa; margin-bottom: 1rem; }
.sidebar-services a { display: block; padding: .6rem 0; border-bottom: 1px solid var(--border-l); color: #444; font-size: .875rem; font-weight: 500; transition: color .2s; }
.sidebar-services a:last-child { border-bottom: none; }
.sidebar-services a:hover { color: var(--red); }

/* ── Contact Page ── */
.contact-section { padding: 5rem 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-info h2 { color: var(--black); margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.25rem; padding: 1.25rem; background: var(--off-white); border-radius: var(--radius); border: 1px solid var(--border-l); }
.contact-detail-icon { color: var(--red); flex-shrink: 0; margin-top: .1rem; }
.contact-detail h4 { color: var(--black); margin-bottom: .2rem; font-size: .9rem; }
.contact-detail p { color: #666; font-size: .875rem; margin: 0; }
.contact-detail a { color: var(--red); font-weight: 600; }
.contact-emergency { background: var(--red); border-radius: var(--radius-lg); padding: 2rem; margin-top: 2rem; }
.contact-emergency h3 { color: #fff; margin-bottom: .5rem; }
.contact-emergency p { color: rgba(255,255,255,.75); font-size: .9rem; margin-bottom: 1rem; }
.contact-emergency-phone { display: block; font-size: 1.75rem; font-weight: 900; color: #fff; letter-spacing: -.025em; }
.contact-form-box { background: #fff; border: 1px solid var(--border-l); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); }
.contact-form-box h3 { color: var(--black); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #888; margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .875rem 1rem; border: 1px solid #ddd; border-radius: var(--radius-sm); font-family: var(--font); font-size: .95rem; color: var(--black); transition: border-color .2s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FAQ ── */
.faq-section { background: var(--off-white); padding: 7rem 0; }
.faq-head { text-align: center; margin-bottom: 3.5rem; }
.faq-head h2 { color: var(--black); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-l); }
.faq-q { width: 100%; text-align: left; background: none; border: none; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; gap: 1rem; font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--black); }
.faq-arrow { color: var(--red); transition: transform .3s; flex-shrink: 0; font-size: 1.2rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { color: #555; font-size: .95rem; line-height: 1.75; padding-bottom: 1.25rem; }

/* ── About / Reviews pages ── */
.about-section { padding: 5rem 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-grid h2 { color: var(--black); margin-bottom: 1.25rem; }
.about-grid p { color: #444; margin-bottom: 1rem; line-height: 1.8; }
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-stat { background: var(--off-white); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border-l); }
.about-stat-num { font-size: 2rem; font-weight: 900; color: var(--red); letter-spacing: -.03em; line-height: 1; margin-bottom: .25rem; }
.about-stat-label { font-size: .75rem; font-weight: 600; color: #888; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .trust-right { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  :root { --pad-x: 1.5rem; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 8rem; }
  .hero-card { max-width: 480px; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --pad-x: 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-phone { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .areas-footer { flex-direction: column; gap: 1rem; }
  .content-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { justify-content: center; }
}
@media (max-width: 580px) {
  .svc-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ── Utilities ── */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.bg-off-white { background: var(--off-white); }
.bg-black { background: var(--black); }
.phone-link { color: var(--red); font-weight: 700; }
.phone-link:hover { color: var(--red-dark); }

/* ── Emergency Bar ── */
.emergency-bar {
  background: var(--charcoal-2); border-bottom: 1px solid var(--border-d);
  text-align: center; font-size: .78rem; font-weight: 600;
  color: var(--text-dim); padding: .55rem var(--pad-x);
}
.emergency-bar a { color: var(--red); font-weight: 700; transition: color .2s; }
.emergency-bar a:hover { color: #fff; }

/* ── Legacy button aliases (inner pages use old class names) ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem; font-weight: 700; font-size: .95rem;
  border-radius: var(--radius-sm); border: 2px solid transparent;
  transition: all .2s; white-space: nowrap; cursor: pointer; font-family: var(--font);
}
.btn.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.05rem; }
.btn-orange, .btn.btn-orange {
  background: var(--red); color: #fff; border-color: var(--red);
}
.btn-orange:hover, .btn.btn-orange:hover {
  background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px);
}
.btn-white-outline, .btn.btn-white-outline,
.btn-outline, .btn.btn-outline {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.3);
}
.btn-white-outline:hover, .btn.btn-white-outline:hover,
.btn-outline:hover, .btn.btn-outline:hover {
  border-color: #fff; background: rgba(255,255,255,.07);
}
.btn-red, .btn.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover, .btn.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }

/* CTA section button overrides — inner pages use btn-orange on red bg */
.cta-section .btn-orange, .cta-section .btn.btn-orange {
  background: #fff; color: var(--red); border-color: #fff;
}
.cta-section .btn-orange:hover, .cta-section .btn.btn-orange:hover {
  background: rgba(255,255,255,.88); border-color: rgba(255,255,255,.88);
}
.cta-section .btn-white-outline, .cta-section .btn.btn-white-outline,
.cta-section .btn-outline, .cta-section .btn.btn-outline {
  border-color: rgba(255,255,255,.45); color: #fff;
}
.cta-section .btn-white-outline:hover, .cta-section .btn.btn-white-outline:hover,
.cta-section .btn-outline:hover, .cta-section .btn.btn-outline:hover {
  border-color: #fff; background: rgba(255,255,255,.1);
}

/* Sidebar card button overrides */
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: .75rem; }
.sidebar-card .btn-white {
  background: transparent; color: var(--text-dim);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm);
}
.sidebar-card .btn-white:hover { border-color: rgba(255,255,255,.3); color: #fff; }

/* ── check-list (service pages) ── */
.check-list { list-style: none; margin: 1rem 0 1.5rem; }
.check-list li { color: #444; padding: .35rem 0 .35rem 1.75rem; position: relative; line-height: 1.65; }
.check-list li::before {
  content: ''; position: absolute; left: 0; top: .5rem;
  width: 14px; height: 14px; border-radius: 50%; background: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}

/* ── service-links (service-area sidebar lists) ── */
.service-links { list-style: none; margin: 1rem 0; }
.service-links li { border-bottom: 1px solid var(--border-l); }
.service-links li:last-child { border-bottom: none; }
.service-links a { display: flex; align-items: center; justify-content: space-between; padding: .65rem 0; color: #444; font-size: .9rem; font-weight: 500; transition: color .2s; }
.service-links a:hover { color: var(--red); }
.service-links a::after { content: '→'; opacity: .4; }

/* ── Blog ── */
.blog-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.blog-tag { background: var(--red); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 100px; }
.blog-date { color: var(--text-dim); font-size: .85rem; }
.blog-intro { font-size: 1.125rem; line-height: 1.8; color: #444; margin-bottom: 2rem; }

/* Blog index listing */
.blog-listing { display: flex; flex-direction: column; gap: 3rem; }
.blog-card { background: var(--white); border: 1px solid var(--border-l); border-radius: var(--radius-lg); padding: 2rem 2.5rem; transition: box-shadow .2s; }
.blog-card:hover { box-shadow: var(--shadow-lg); }
.blog-card-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.blog-card h2 { font-size: 1.35rem; margin-bottom: .75rem; }
.blog-card h2 a { color: var(--navy); text-decoration: none; }
.blog-card h2 a:hover { color: var(--red); }
.blog-card p { color: #555; line-height: 1.75; margin-bottom: 1.25rem; }
.blog-read-more { color: var(--red); font-weight: 600; font-size: .9rem; }

/* ── Chat Widget ── */
.chat-widget { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9000; font-family: var(--font); }
.chat-btn { width: 58px; height: 58px; border-radius: 50%; background: var(--red); color: #fff; border: none; cursor: pointer; box-shadow: 0 4px 18px rgba(0,0,0,.28); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; transition: transform .2s, box-shadow .2s; }
.chat-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(0,0,0,.35); }
.chat-panel { position: absolute; bottom: 72px; right: 0; width: 340px; background: #fff; border-radius: 16px; box-shadow: 0 10px 48px rgba(0,0,0,.18); display: none; flex-direction: column; overflow: hidden; border: 1px solid var(--border-l); }
.chat-panel.open { display: flex; }
.chat-header { background: var(--navy); color: #fff; padding: .9rem 1.1rem; display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.chat-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.chat-header-info h4 { font-size: .88rem; font-weight: 700; margin: 0; line-height: 1.3; }
.chat-header-info p { font-size: .7rem; color: rgba(255,255,255,.6); margin: 0; }
.chat-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,.65); cursor: pointer; font-size: 1.1rem; padding: .25rem .35rem; border-radius: 4px; line-height: 1; transition: color .15s; }
.chat-close:hover { color: #fff; }
.chat-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .65rem; max-height: 320px; min-height: 80px; }
.chat-msg { max-width: 88%; padding: .6rem .9rem; border-radius: 14px; font-size: .875rem; line-height: 1.55; }
.chat-msg.bot { background: #f0f2f5; color: #222; border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-msg.user { background: var(--red); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-msg.typing { color: #888; font-style: italic; font-size: .8rem; }
.chat-input-row { display: flex; gap: .5rem; padding: .65rem .9rem; border-top: 1px solid var(--border-l); flex-shrink: 0; align-items: flex-end; }
.chat-input { flex: 1; border: 1px solid var(--border-l); border-radius: 10px; padding: .5rem .75rem; font-size: .875rem; font-family: var(--font); outline: none; resize: none; line-height: 1.4; max-height: 100px; overflow-y: auto; }
.chat-input:focus { border-color: var(--red); }
.chat-send { background: var(--red); color: #fff; border: none; border-radius: 10px; padding: .5rem .9rem; cursor: pointer; font-size: 1rem; font-weight: 700; transition: background .2s; flex-shrink: 0; line-height: 1; }
.chat-send:hover { background: #c0392b; }
.chat-send:disabled { opacity: .5; cursor: default; }
@media (max-width: 480px) {
  .chat-panel { width: calc(100vw - 2.5rem); right: 0; }
  .chat-widget { bottom: 1rem; right: 1rem; }
}

/* ── FAQ page category headers ── */
.faq-category { margin-top: 2.5rem; margin-bottom: .25rem; font-size: 1.1rem; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; border-bottom: 2px solid var(--border-l); padding-bottom: .5rem; }

/* ── page-body (service-area pages — same as page-content) ── */
.page-body { background: var(--white); padding: 5rem 0; }

/* ── page-cta (what-to-expect page bottom CTA) ── */
.page-cta { background: var(--charcoal-2); padding: 5rem 0; text-align: center; border-top: 1px solid var(--border-d); }
.page-cta h2 { color: #fff; margin-bottom: 1rem; }
.page-cta p { color: var(--text-dim); margin-bottom: 2rem; font-size: 1.05rem; }
.page-cta .hero-actions { justify-content: center; }

/* ── footer-grid + footer-contact (inner page footer structure) ── */
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem; margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-d);
}
.footer-contact { display: flex; flex-direction: column; gap: .4rem; margin-top: .75rem; }
.footer-contact a { color: var(--text-dim); font-size: .85rem; transition: color .2s; display: block; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom span { color: rgba(255,255,255,.2); font-size: .8rem; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .page-cta .hero-actions { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE IMPROVEMENTS
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Nav ── */
  .logo-stop-word { font-size: 1.7rem; }

  /* ── Homepage hero — reduce top padding on mobile ── */
  .hero-inner { padding-top: 6rem !important; padding-bottom: 2.5rem !important; }

  /* ── Inner page heroes — override inline styles with !important ── */
  .page-hero { padding: 5.5rem 0 2.5rem !important; }
  .page-hero h1 { font-size: clamp(1.8rem, 8vw, 2.6rem) !important; }
  .page-hero .lead { font-size: 1rem !important; }

  /* ── Section padding ── */
  .page-body { padding: 3rem 0 !important; }
  .cta-section { padding: 3rem 0 !important; }
  .page-cta { padding: 3rem 0 !important; }

  /* ── CTA button groups — stack & stretch ── */
  .cta-btn-group { flex-direction: column; align-items: stretch; }
  .cta-btn-group .btn,
  .cta-btn-group a { width: 100%; justify-content: center; text-align: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn,
  .cta-actions a { width: 100%; justify-content: center; text-align: center; }
  .about-cta .cta-btn-group { max-width: 360px; margin: 0 auto; }

  /* ── Reviews page ── */
  .reviews-big-grid { grid-template-columns: 1fr !important; }
  /* reviews.html uses .bbb-inner and .rating-banner-inner — handled inline in that file */

  /* ── Service / content pages ── */
  .sidebar-services { display: none; } /* hide duplicate sidebar links on mobile */

  /* ── Blog ── */
  .blog-card { padding: 1.5rem; }
  .blog-card h2 { font-size: 1.15rem; }

  /* ── Headings tighten on mobile ── */
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ── Hide hero card on phones — phone number is already in the CTA button ── */
@media (max-width: 600px) {
  .hero-card { display: none; }
}

/* ── Make video actually visible on mobile ──
   Desktop: video at 0.42 opacity works because text sits beside open space.
   Mobile: everything stacks, so the dark overlay turns it near-black.
   Fix: boost video opacity + lighten the gradient on mobile so the footage shows. ── */
@media (max-width: 768px) {
  .hero-video { opacity: 0.62; }
  /* Darker mid-section so red text has a proper dark backdrop to sit on */
  .hero::before {
    background:
      linear-gradient(to bottom, rgba(0,0,0,.65) 0%, rgba(0,0,0,.50) 45%, rgba(0,0,0,.68) 100%),
      radial-gradient(ellipse 80% 80% at 50% 40%, rgba(196,30,46,.06) 0%, transparent 65%);
  }
  /* Keep text legible — slightly bump hero sub text opacity */
  .hero-sub { color: rgba(255,255,255,.75); }
}

@media (max-width: 480px) {

  /* ── Nav: hide redundant Call Now button — hamburger menu covers it ── */
  .nav-call-btn { display: none; }
  .logo-stop-word { font-size: 1.5rem; }
  .logo-rest-bar { font-size: .6rem; padding: .15rem .4rem; }

  /* ── Emergency bar ── */
  .emergency-bar { font-size: .72rem; padding: .4rem 1rem; }

  /* ── Hero headings ── */
  h1 { font-size: clamp(1.8rem, 9vw, 2.4rem); }

  /* ── Buttons full-width in CTA zones ── */
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  /* ── Stats ── */
  .stats-row { gap: 1.25rem; }
  .stat-box .stat-num,
  .stat-box .stat-num-suffix,
  .stat-box .stat-val { font-size: 2.2rem; }

  /* ── Footer bottom ── */
  .footer-bottom { flex-direction: column; text-align: center; gap: .5rem; }
}
