/* RoadHelp custom static website styles */

:root {
  --rh-black: #090d10;
  --rh-black-soft: #11171b;
  --rh-ink: #15191d;
  --rh-muted: #656d75;
  --rh-line: #e6e8ea;
  --rh-surface: #ffffff;
  --rh-surface-soft: #f6f7f8;
  --rh-yellow: #ffc400;
  --rh-yellow-dark: #e9b200;
  --rh-radius-sm: 12px;
  --rh-radius: 18px;
  --rh-radius-lg: 28px;
  --rh-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --rh-container: 1180px;
  --rh-header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--rh-ink);
  background: var(--rh-surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.rh-container { width: min(calc(100% - 40px), var(--rh-container)); margin-inline: auto; }
.rh-section { padding: 88px 0; }
.rh-section--soft { background: var(--rh-surface-soft); }
.rh-section--dark { background: var(--rh-black); color: #fff; }
.rh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #9a7200;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rh-kicker::before { content: ""; width: 28px; height: 3px; border-radius: 99px; background: var(--rh-yellow); }
.rh-title { margin: 0; font-size: clamp(32px, 5vw, 56px); line-height: 1.04; letter-spacing: -0.04em; }
.rh-title--section { font-size: clamp(28px, 3.5vw, 42px); text-align: center; }
.rh-section-head { max-width: 720px; margin: 0 auto 36px; text-align: center; }
.rh-section-head p { margin: 12px 0 0; color: var(--rh-muted); font-size: 18px; }
.rh-prose { max-width: 780px; color: #32383e; }
.rh-prose h2, .rh-prose h3 { line-height: 1.2; letter-spacing: -.02em; }
.rh-prose a { color: #8b6800; text-decoration: underline; text-underline-offset: 3px; }

.rh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 800;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.rh-btn:hover { transform: translateY(-2px); }
.rh-btn--primary { background: var(--rh-yellow); color: #0a0d0f; }
.rh-btn--primary:hover { background: #ffd02f; }
.rh-btn--outline { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(0,0,0,.18); }
.rh-btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.rh-btn--dark { background: var(--rh-black); color: #fff; }

.rh-pain-panel {
  max-width: 680px;
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 5px solid var(--rh-yellow);
  border-radius: 10px;
  background: rgba(255,255,255,.09);
  color: #fff;
  box-shadow: 0 16px 38px rgba(0,0,0,.16);
}
.rh-pain-panel strong {
  display: block;
  margin-bottom: 4px;
  color: var(--rh-yellow);
  font-size: 15px;
}
.rh-pain-panel span {
  display: block;
  color: #f4f6f7;
  font-size: 17px;
  line-height: 1.45;
}

.rh-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 14px;
  margin-top: 24px;
}
.rh-call-card {
  display: grid;
  gap: 3px;
  min-width: min(100%, 335px);
  padding: 14px 22px 16px;
  border: 2px solid #ffe27a;
  border-radius: 10px;
  background: var(--rh-yellow);
  color: #07090b;
  box-shadow: 0 18px 45px rgba(255,196,0,.28);
}
.rh-call-card__label {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rh-call-card strong {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  letter-spacing: 0;
}
.rh-call-card small {
  color: #2b2303;
  font-size: 13px;
  font-weight: 800;
}

.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Header */
.rh-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--rh-header-height);
  background: rgba(8, 12, 15, .97);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}
.rh-header-inner { height: 100%; display: flex; align-items: center; gap: 26px; }
.rh-brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.rh-brand-logo { width: 236px; height: auto; }
.rh-brand-mark { width: 52px; height: 38px; color: var(--rh-yellow); }
.rh-brand-copy { line-height: 1; }
.rh-brand-name { display: block; font-size: 20px; font-weight: 950; letter-spacing: -.03em; }
.rh-brand-name em { color: var(--rh-yellow); font-style: normal; }
.rh-brand-tagline { display: block; margin-top: 5px; font-size: 10px; font-weight: 700; color: #c9cdd1; text-transform: uppercase; }
.rh-nav { margin-left: auto; }
.rh-nav ul { display: flex; align-items: center; gap: 6px; list-style: none; padding: 0; margin: 0; }
.rh-nav a { display: block; padding: 12px 10px; font-size: 14px; font-weight: 700; color: #f0f2f3; }
.rh-nav a:hover, .rh-nav .current-menu-item > a { color: var(--rh-yellow); }
.rh-header-contact { display: flex; align-items: center; gap: 10px; margin-left: 4px; }
.rh-phone-icon { color: var(--rh-yellow); font-size: 25px; line-height: 1; }
.rh-header-phone strong { display: block; font-size: 16px; line-height: 1.2; }
.rh-header-phone span { display: block; margin-top: 2px; color: #bfc5c9; font-size: 11px; }
.rh-menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: transparent; color: #fff; }

/* Hero */
.rh-hero {
  position: relative;
  min-height: 575px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0b0f12;
}
.rh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,8,10,.98) 0%, rgba(5,8,10,.91) 34%, rgba(5,8,10,.45) 62%, rgba(5,8,10,.12) 100%),
    url("assets/images/old-site/oldsite-003.jpg") center right / cover no-repeat;
  transform: scale(1.01);
}
.rh-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 120px; background: linear-gradient(0deg, rgba(0,0,0,.38), transparent); }
.rh-hero-inner { position: relative; z-index: 2; padding: 70px 0; }
.rh-hero-content { max-width: 650px; }
.rh-hero h1 { max-width: 720px; margin: 0; font-size: clamp(44px, 6vw, 76px); line-height: .98; letter-spacing: -.045em; }
.rh-hero h1 span { color: var(--rh-yellow); }
.rh-hero-lead { max-width: 610px; margin: 24px 0 0; color: #edf0f2; font-size: clamp(18px, 2vw, 21px); line-height: 1.5; }
.rh-hero-points { display: flex; flex-wrap: wrap; gap: 16px 28px; margin: 28px 0; padding: 0; list-style: none; }
.rh-hero-point { display: flex; align-items: center; gap: 10px; min-width: 155px; font-size: 14px; font-weight: 700; }
.rh-hero-point i { display: grid; place-items: center; width: 34px; height: 34px; border: 2px solid var(--rh-yellow); border-radius: 50%; color: var(--rh-yellow); font-style: normal; }
.rh-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* cards */
.rh-grid { display: grid; gap: 18px; }
.rh-grid--services { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rh-service-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px 18px 20px;
  border: 1px solid var(--rh-line);
  border-radius: var(--rh-radius-sm);
  background: #fff;
  box-shadow: 0 8px 20px rgba(8, 12, 15, .035);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rh-service-card:hover { transform: translateY(-5px); border-color: #d5d8da; box-shadow: var(--rh-shadow); }
.rh-service-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 18px; border-radius: 14px; background: #fff7d3; color: var(--rh-black); }
.rh-service-icon svg { width: 34px; height: 34px; }
.rh-service-card h3 { margin: 0; font-size: 18px; line-height: 1.25; }
.rh-service-card p { margin: 10px 0 18px; color: var(--rh-muted); font-size: 14px; line-height: 1.5; }
.rh-card-link { margin-top: auto; color: #a47600; font-size: 13px; font-weight: 850; }

.rh-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 22px; padding: 28px 24px; border-radius: 12px; background: linear-gradient(120deg, #080c0e, #12191d); color: #fff; }
.rh-stat { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 0 20px; border-right: 1px solid rgba(255,255,255,.12); }
.rh-stat:last-child { border-right: 0; }
.rh-stat-icon { display: grid; place-items: center; width: 46px; height: 46px; border: 2px solid var(--rh-yellow); border-radius: 50%; color: var(--rh-yellow); font-weight: 900; }
.rh-stat strong { display: block; color: var(--rh-yellow); font-size: 28px; line-height: 1; }
.rh-stat span { display: block; margin-top: 5px; color: #d3d7da; font-size: 12px; }

.rh-grid--locations { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rh-location-card { position: relative; min-height: 250px; overflow: hidden; border-radius: 14px; background: #162028; color: #fff; isolation: isolate; }
.rh-location-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--rh-location-image), linear-gradient(135deg, #273b47, #10161a 68%); background-size: cover; background-position: center; }
.rh-location-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(3,6,8,.96), rgba(3,6,8,.08) 75%); }
.rh-location-content { position: absolute; inset: auto 0 0; padding: 24px; }
.rh-location-card h3 { margin: 0; font-size: 25px; line-height: 1.1; }
.rh-location-card p { margin: 7px 0 12px; color: #e3e6e8; font-size: 14px; }
.rh-location-link { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--rh-yellow); color: #000; font-weight: 900; }

/* process */
.rh-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.rh-step { position: relative; text-align: center; counter-increment: step; }
.rh-step:not(:last-child)::after { content: ""; position: absolute; top: 36px; left: 68%; width: 64%; border-top: 1px dashed #c8cdd0; }
.rh-step-icon { position: relative; z-index: 2; display: grid; place-items: center; width: 78px; height: 78px; margin: 0 auto 16px; border-radius: 50%; background: #f1f3f4; border: 1px solid #e1e4e6; font-size: 30px; }
.rh-step-icon::before { content: counter(step); position: absolute; top: -7px; right: -4px; display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: var(--rh-yellow); color: #000; font-size: 12px; font-weight: 900; }
.rh-step h3 { margin: 0 0 6px; font-size: 17px; }
.rh-step p { margin: 0; color: var(--rh-muted); font-size: 14px; }

/* content split */
.rh-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.rh-media-panel { min-height: 430px; border-radius: var(--rh-radius-lg); background:
  radial-gradient(circle at 70% 25%, rgba(255,196,0,.28), transparent 28%),
  linear-gradient(145deg, #1c2930, #0d1317); box-shadow: var(--rh-shadow); position: relative; overflow: hidden; }
.rh-media-panel::before { content: "24/7"; position: absolute; right: 28px; bottom: 10px; color: rgba(255,255,255,.08); font-size: 140px; font-weight: 950; letter-spacing: -.08em; }
.rh-visual-panel { min-height: 430px; margin: 0; border-radius: var(--rh-radius-lg); box-shadow: var(--rh-shadow); position: relative; overflow: hidden; background: #10171c; }
.rh-visual-panel img { display: block; width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.rh-visual-panel figcaption { position: absolute; left: 18px; bottom: 18px; padding: 8px 12px; border-radius: 999px; background: rgba(8,13,16,.78); color: #fff; font-size: 13px; font-weight: 900; }
.rh-check-list { display: grid; gap: 14px; padding: 0; margin: 26px 0 0; list-style: none; }
.rh-check-list li { display: flex; gap: 12px; align-items: flex-start; }
.rh-check-list li::before { content: "✓"; display: grid; place-items: center; flex: 0 0 26px; height: 26px; border-radius: 50%; background: #fff3bd; color: #8a6500; font-weight: 900; }

.rh-real-photos {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: center;
}
.rh-real-photos h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}
.rh-real-photos p {
  margin: 16px 0 24px;
  color: #d9dde0;
  font-size: 18px;
}
.rh-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.rh-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #131a1f;
}
.rh-photo-grid figure:first-child {
  grid-row: span 2;
}
.rh-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

/* trust/reviews */
.rh-review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rh-review { padding: 26px; border: 1px solid var(--rh-line); border-radius: 16px; background: #fff; }
.rh-review-stars { color: #d9a900; letter-spacing: 2px; }
.rh-review blockquote { margin: 14px 0 18px; color: #32383e; }
.rh-review footer { color: var(--rh-muted); font-size: 14px; }

/* FAQ */
.rh-faq { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--rh-line); }
.rh-faq-item { border-bottom: 1px solid var(--rh-line); }
.rh-faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border: 0; background: transparent; color: var(--rh-ink); text-align: left; font-weight: 800; }
.rh-faq-question span:last-child { font-size: 24px; transition: transform .2s ease; }
.rh-faq-item.is-open .rh-faq-question span:last-child { transform: rotate(45deg); }
.rh-faq-answer { display: none; padding: 0 0 22px; color: var(--rh-muted); }
.rh-faq-item.is-open .rh-faq-answer { display: block; }

/* CTA */
.rh-emergency-cta { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; padding: 26px 30px; border-radius: 14px; background: linear-gradient(110deg, #080d10, #141b20); color: #fff; }
.rh-emergency-cta-icon { display: grid; place-items: center; width: 58px; height: 58px; border: 2px solid var(--rh-yellow); border-radius: 50%; color: var(--rh-yellow); font-size: 26px; }
.rh-emergency-cta h2 { margin: 0; font-size: 24px; }
.rh-emergency-cta p { margin: 4px 0 0; color: #d5dadd; }

/* inner pages */
.rh-page-hero { padding: 72px 0 58px; background: linear-gradient(120deg, #090d10, #182128); color: #fff; }
.rh-breadcrumbs { margin-bottom: 18px; color: #b9c0c5; font-size: 13px; }
.rh-breadcrumbs a { color: #e9edef; }
.rh-page-hero h1 { margin: 0; max-width: 850px; font-size: clamp(40px, 6vw, 70px); line-height: 1.02; letter-spacing: -.045em; }
.rh-page-hero p { max-width: 760px; margin: 18px 0 0; color: #d9dddf; font-size: 19px; }
.rh-page-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

.rh-service-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 54px; align-items: start; }
.rh-sidebar { position: sticky; top: calc(var(--rh-header-height) + 24px); display: grid; gap: 18px; }
.rh-sidebar-card { padding: 24px; border: 1px solid var(--rh-line); border-radius: 15px; background: #fff; }
.rh-sidebar-card--dark { border: 0; background: var(--rh-black); color: #fff; }
.rh-sidebar-card h3 { margin: 0 0 10px; }
.rh-sidebar-card p { margin: 0 0 16px; color: var(--rh-muted); }
.rh-sidebar-card--dark p { color: #cdd2d5; }
.rh-price-table { width: 100%; border-collapse: collapse; }
.rh-price-table th, .rh-price-table td { padding: 15px 14px; border-bottom: 1px solid var(--rh-line); text-align: left; }
.rh-price-table th { background: #f5f6f7; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.rh-price-table td:last-child, .rh-price-table th:last-child { text-align: right; font-weight: 800; }

.rh-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rh-benefit { padding: 24px; border-radius: 14px; background: #f5f6f7; }
.rh-benefit strong { display: block; margin-bottom: 6px; font-size: 18px; }
.rh-benefit p { margin: 0; color: var(--rh-muted); font-size: 14px; }

.rh-location-hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: center; }
.rh-area-box { padding: 28px; border-radius: 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.rh-area-photo { display: block; width: 100%; aspect-ratio: 16 / 10; margin: 0 0 20px; border-radius: 12px; object-fit: cover; }
.rh-area-box h2 { margin-top: 0; }
.rh-chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.rh-chip { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: #f0f2f3; color: #31373c; font-size: 13px; font-weight: 700; }
.rh-map-placeholder { min-height: 360px; display: grid; place-items: center; padding: 30px; border: 1px solid var(--rh-line); border-radius: 18px; background: repeating-linear-gradient(45deg, #f3f5f6, #f3f5f6 14px, #eef0f2 14px, #eef0f2 28px); text-align: center; }

.rh-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rh-post-card { border: 1px solid var(--rh-line); border-radius: 15px; overflow: hidden; background: #fff; }
.rh-post-thumb { aspect-ratio: 16 / 9; background: linear-gradient(135deg, #2c3a43, #0e1519); }
.rh-post-content { padding: 22px; }
.rh-post-content h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.25; }
.rh-post-content p { margin: 0 0 14px; color: var(--rh-muted); font-size: 14px; }

.rh-gallery-grid {
  columns: 4 240px;
  column-gap: 16px;
}
.rh-gallery-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 10px;
  background: #eef0f2;
  break-inside: avoid;
}
.rh-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer */
.rh-footer { padding: 56px 0 24px; background: #080c0f; color: #fff; }
.rh-footer-grid { display: grid; grid-template-columns: 1.3fr .8fr 1fr 1fr; gap: 40px; }
.rh-footer p, .rh-footer a { color: #c4cacf; font-size: 14px; }
.rh-footer a:hover { color: var(--rh-yellow); }
.rh-footer h3 { margin: 0 0 15px; font-size: 15px; }
.rh-footer ul { list-style: none; padding: 0; margin: 0; }
.rh-footer li + li { margin-top: 7px; }
.rh-footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #9fa7ac; font-size: 12px; }

/* persistent call bar */
.rh-mobile-call {
  display: flex;
  position: fixed;
  left: auto;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  min-height: 58px;
  min-width: 270px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  background: var(--rh-yellow);
  color: #050708;
  font-weight: 950;
  box-shadow: 0 15px 40px rgba(0,0,0,.28);
}

@media (max-width: 1100px) {
  .rh-grid--services { grid-template-columns: repeat(2, 1fr); }
  .rh-header-contact .rh-header-phone { display: none; }
  .rh-nav a { padding-inline: 7px; }
  .rh-service-layout { grid-template-columns: 1fr 310px; gap: 34px; }
}

@media (max-width: 860px) {
  :root { --rh-header-height: 68px; }
  body { padding-bottom: 76px; }
  .rh-container { width: min(calc(100% - 28px), var(--rh-container)); }
  .rh-section { padding: 64px 0; }
  .rh-menu-toggle { display: inline-grid; place-items: center; }
  .rh-header-contact, .rh-header-cta { display: none; }
  .rh-nav { display: none; position: absolute; top: var(--rh-header-height); left: 0; right: 0; padding: 12px 14px 20px; background: #0a0f12; border-top: 1px solid rgba(255,255,255,.08); }
  .rh-nav.is-open { display: block; }
  .rh-nav ul { display: block; }
  .rh-nav a { padding: 13px 8px; }
  .rh-hero { min-height: 620px; }
  .rh-hero::before { background: linear-gradient(90deg, rgba(5,8,10,.96), rgba(5,8,10,.72)), url("assets/images/old-site/oldsite-003.jpg") 58% center / cover no-repeat; }
  .rh-grid--services, .rh-grid--locations, .rh-benefit-grid, .rh-review-grid, .rh-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .rh-stats { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }
  .rh-stat:nth-child(2) { border-right: 0; }
  .rh-process { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .rh-step::after { display: none; }
  .rh-split, .rh-location-hero-grid, .rh-service-layout, .rh-real-photos { grid-template-columns: 1fr; }
  .rh-sidebar { position: static; }
  .rh-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .rh-mobile-call { left: 12px; right: 12px; bottom: 12px; min-width: 0; }
}

@media (max-width: 580px) {
  .rh-brand-logo { width: 150px; }
  .rh-brand-name { font-size: 18px; }
  .rh-brand-mark { width: 44px; }
  .rh-hero { min-height: 660px; }
  .rh-hero-inner { padding: 56px 0; }
  .rh-hero h1 { font-size: 47px; }
  .rh-hero-points { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .rh-hero-actions .rh-btn, .rh-hero-cta .rh-btn, .rh-call-card { width: 100%; }
  .rh-grid--services, .rh-grid--locations, .rh-benefit-grid, .rh-review-grid, .rh-blog-grid, .rh-process { grid-template-columns: 1fr; }
  .rh-service-card { min-height: auto; }
  .rh-photo-grid { grid-template-columns: 1fr; }
  .rh-stats { grid-template-columns: 1fr; }
  .rh-stat { justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: 16px 0; }
  .rh-stat:last-child { border-bottom: 0; }
  .rh-emergency-cta { grid-template-columns: 1fr; text-align: center; }
  .rh-emergency-cta-icon { margin-inline: auto; }
  .rh-footer-grid { grid-template-columns: 1fr; }
  .rh-footer-bottom { display: block; }
  .rh-footer-bottom > * + * { margin-top: 10px; }
}
