:root {
  --rw-navy: #2e3192;
  --rw-navy-dark: #24267a;
  --rw-navy-deeper: #1c1e62;
  --rw-red: #ed1c24;
  --rw-red-dark: #c4161d;
  --rw-white: #ffffff;
  --rw-off: #f3f6fb;
  --rw-border: #d5deeb;
  --rw-text: #111111;
  --rw-muted: #4a4a4a;
  --rw-gold: #e8b920;
  --rw-hero: #d1dff0;
  --rw-hero-end: #d1dff0;
  --rw-radius: 4px;
  --rw-max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.rw-site {
  margin: 0;
  font-family: Barlow, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--rw-text);
  background: var(--rw-white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: var(--rw-navy); }
a:hover { color: var(--rw-red); }
.rw-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.rw-wrap {
  width: min(100% - 48px, var(--rw-max));
  margin-inline: auto;
}

/* Buttons */
.rw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--rw-radius);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.rw-btn-navy { background: var(--rw-navy); color: #fff; }
.rw-btn-navy:hover { background: var(--rw-navy-dark); color: #fff; }
.rw-btn-red { background: var(--rw-red); color: #fff; }
.rw-btn-red:hover { background: var(--rw-red-dark); color: #fff; }
.rw-btn-outline {
  background: #fff;
  color: var(--rw-navy);
  border-color: var(--rw-navy);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
}
.rw-btn-lg { padding: 14px 22px; font-size: 1rem; }

/* Utility bar */
.rw-header { background: #fff; border-bottom: 1px solid var(--rw-border); }
.rw-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 28px;
  align-items: end;
  padding-top: 8px;
}
.rw-logo {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 8px 0 12px;
  min-width: 0;
}
.rw-logo img {
  display: block;
  height: 80px;
  width: auto;
  max-width: min(320px, 100%);
  flex-shrink: 0;
}
.rw-header-tools {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  min-width: 0;
}
.rw-secondary { display: flex; gap: 28px; font-size: 0.9rem; }
.rw-secondary a { color: var(--rw-muted); text-decoration: none; }
.rw-secondary a:hover { color: var(--rw-navy); }
.rw-search {
  display: flex;
  border: 1px solid #c5d0e0;
  border-radius: var(--rw-radius);
  overflow: hidden;
  min-width: 280px;
  background: #fff;
}
.rw-search input {
  border: 0; padding: 10px 14px; flex: 1; font: inherit; min-width: 0;
}
.rw-search-submit {
  border: 0; background: transparent; padding: 0 12px; cursor: pointer; color: var(--rw-muted);
}

.rw-header-nav {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-width: 0;
  padding-bottom: 4px;
}
.rw-header-bottom {
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  border-top: 1px solid var(--rw-border);
}
.rw-location {
  margin: 0;
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rw-navy);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.rw-pin { color: var(--rw-red); }
.rw-primary {
  display: flex;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  gap: 2px;
  flex: 0 1 auto;
  justify-content: flex-end;
}
.rw-primary > li { position: relative; }
.rw-primary > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px 2px;
  text-decoration: none;
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rw-navy);
  white-space: nowrap;
}
.rw-primary > li:last-child > a { padding-right: 0; }
.rw-primary > li > a:hover,
.rw-primary > li > a.is-active { color: var(--rw-red); }
.rw-caret { font-size: 0.7rem; line-height: 1; }

.rw-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  min-width: 640px;
  background: #fff;
  border: 1px solid var(--rw-border);
  box-shadow: 0 12px 30px rgba(18, 46, 90, 0.14);
  padding: 22px 28px;
  z-index: 40;
  columns: 3;
  column-gap: 28px;
}
.rw-primary > li:hover > .rw-mega,
.rw-primary > li:focus-within > .rw-mega { display: block; }
.rw-mega a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: var(--rw-text);
  font-weight: 500;
  break-inside: avoid;
}
.rw-mega a:hover,
.rw-mega a.is-active { color: var(--rw-red); }

.rw-mega-list {
  min-width: 240px;
  columns: 1;
  column-gap: 0;
  padding: 12px 16px;
  border-radius: 8px;
}
.rw-mega-list a {
  padding: 8px 0;
}
.rw-primary > li:nth-last-child(-n+2) > .rw-mega-list {
  left: auto;
  right: 0;
}

.rw-header-ctas { display: flex; gap: 10px; margin-left: auto; }
.rw-menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--rw-border);
  background: #fff;
  padding: 8px 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
.rw-hamburger {
  width: 16px; height: 2px; background: var(--rw-navy); position: relative; display: inline-block;
}
.rw-hamburger::before, .rw-hamburger::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 2px; background: var(--rw-navy);
}
.rw-hamburger::before { top: -5px; }
.rw-hamburger::after { top: 5px; }

/* Search overlay */
.rw-search-overlay {
  background: #fff;
  border-bottom: 1px solid var(--rw-border);
  padding: 12px 0 20px;
}
.rw-search-overlay[hidden] { display: none !important; }
.rw-search-results { list-style: none; margin: 0; padding: 0; }
.rw-search-results li { border-bottom: 1px solid var(--rw-off); }
.rw-search-results a { display: block; padding: 10px 0; text-decoration: none; }
.rw-search-results a strong { display: block; color: var(--rw-navy); }
.rw-search-results a span { color: var(--rw-muted); font-size: 0.9rem; }

/* Breadcrumbs — sit on white so they read with the service hero */
.rw-crumbs {
  background: #fff;
  border-bottom: 0;
  font-size: 0.85rem;
  padding: 18px 0 0;
  color: var(--rw-muted);
}
.rw-crumbs a { color: var(--rw-muted); text-decoration: none; }
.rw-crumbs a:hover { color: var(--rw-navy); }
.rw-crumbs .is-current { color: var(--rw-red); font-weight: 600; }

/* Hero — van at the page left; copy sits beside it on matching ice blue */
.rw-hero {
  padding: 0;
  overflow: hidden;
  background: var(--rw-hero);
  color: var(--rw-navy);
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 400px;
}
.rw-hero-visual {
  margin: 0;
  position: relative;
  flex: 0 1 auto;
  max-width: calc(100% - 23rem);
  background: transparent;
  border: 0;
  z-index: 0;
  overflow: hidden;
  line-height: 0;
}
.rw-hero-visual img {
  display: block;
  height: 420px;
  width: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: left bottom;
}
.rw-hero-inner {
  display: flex;
  align-items: center;
  flex: 1 1 23rem;
  min-width: 0;
  min-height: 0;
  width: auto;
  margin: 0;
  padding: 0 max(24px, calc((100vw - 1240px) / 2)) 0 20px;
  position: relative;
  z-index: 1;
}
.rw-hero-copy {
  min-width: 0;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.rw-hero-visual.is-placeholder {
  min-height: 380px;
  margin-left: 0;
  background:
    linear-gradient(160deg, #c9d9ee, #e8f0f8),
    repeating-linear-gradient(
      -18deg,
      rgba(30, 77, 146, 0.05) 0 12px,
      rgba(30, 77, 146, 0) 12px 24px
    );
  border: 1px dashed rgba(30, 77, 146, 0.28);
}
.rw-hero-visual.is-placeholder img { display: none; }
.rw-hero-placeholder {
  display: none;
  min-height: 380px;
  padding: 32px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  color: var(--rw-navy);
}
.rw-hero-visual.is-placeholder .rw-hero-placeholder { display: flex; }
.rw-hero-placeholder strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rw-hero-placeholder span {
  font-size: 0.95rem;
  color: var(--rw-muted);
  max-width: 18rem;
}
.rw-hero h1 {
  margin: 0 0 20px;
  color: var(--rw-navy);
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 800;
}
.rw-hero-kicker {
  margin: 0 0 4px;
  color: var(--rw-red);
  font-weight: 700;
  font-size: 34px;
  line-height: 36px;
}
.rw-hero-phone {
  margin: 0 0 20px;
  font-size: 62px;
  line-height: 1;
  font-weight: 800;
  color: var(--rw-navy);
  letter-spacing: 0;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}
.rw-hero-phone:hover { color: var(--rw-red); }
.rw-rating {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--rw-navy);
}
.rw-stars { color: var(--rw-gold); letter-spacing: 2px; }

.rw-promo {
  background: var(--rw-red);
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rw-promo a { color: #fff; text-decoration: none; }

/* Page body */
.rw-page { padding: 56px 0 88px; }
.rw-page h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--rw-navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
}
.rw-page h2 {
  color: var(--rw-navy);
  margin-top: 3rem;
  margin-bottom: 0.85rem;
}
.rw-lede { font-size: 1.12rem; max-width: 48rem; line-height: 1.65; }
.rw-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 8px; }
.rw-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 28px 0 8px;
}
.rw-card {
  border: 1px solid var(--rw-border);
  padding: 24px;
  border-radius: var(--rw-radius);
  text-decoration: none;
  color: inherit;
  display: block;
}
.rw-card:hover { border-color: var(--rw-navy); color: inherit; }
.rw-card h3 { margin: 0 0 8px; color: var(--rw-navy); font-size: 1.08rem; }
.rw-card p { margin: 0; color: var(--rw-muted); font-size: 0.95rem; }
.rw-price { font-weight: 700; color: var(--rw-navy); }
.rw-labor-rate {
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--rw-red);
  margin: 0 0 8px;
}
.rw-labor-rate-sub {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 16px;
}
.rw-posted-prices {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px;
}
.rw-list { padding-left: 1.2rem; }
.rw-list li { margin: 10px 0; }

/* Two-tone service pages */
.rw-band {
  padding: 64px 0;
  background: #fff;
  color: var(--rw-text);
}
.rw-band h1,
.rw-band h2,
.rw-band h3 {
  color: var(--rw-navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.rw-band h1 {
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.2;
  font-weight: 800;
}
.rw-band h2 {
  margin: 0 0 16px;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  line-height: 1.25;
  font-weight: 800;
}
.rw-band h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
}
.rw-band p { margin: 0 0 1rem; max-width: 48rem; }
.rw-band-intro {
  font-size: 1.05rem;
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.rw-band-head { text-align: center; margin-bottom: 8px; }
.rw-band-head h2 { margin-bottom: 12px; }
.rw-band-navy {
  background: var(--rw-navy);
  color: #e8eef8;
}
.rw-band-navy h1,
.rw-band-navy h2 { color: #fff; }
.rw-band-navy h3 { color: var(--rw-navy); }
.rw-band-navy p,
.rw-band-navy .rw-lede { color: #e8eef8; }
.rw-band-navy a { color: #fff; }
.rw-band-navy a:hover { color: #fff; text-decoration: underline; }
.rw-band-navy .rw-btn:hover { text-decoration: none; }
.rw-band-navy .rw-btn-red { color: #fff; }
.rw-band-navy .rw-btn-white { color: var(--rw-navy); }
.rw-band-navy .rw-price { color: #fff; }
.rw-band-navy .rw-labor-rate { color: #fff; }
.rw-band-navy .rw-list { color: #e8eef8; }
.rw-btn-white {
  background: #fff;
  color: var(--rw-navy);
  border-color: #fff;
}
.rw-btn-white:hover { background: var(--rw-off); color: var(--rw-navy); }
.rw-link-save {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--rw-navy);
  font-size: 0.92rem;
}
.rw-link-save:hover { color: var(--rw-red); }
.rw-link-save::before {
  content: "$";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--rw-navy);
  color: #fff;
  font-size: 0.85rem;
}

/* Service hero: copy left, media right (not the home van hero) */
.rw-svc-hero { padding-top: 28px; padding-bottom: 56px; }
.rw-svc-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}
.rw-svc-hero .rw-lede { max-width: none; }
.rw-svc-hero .rw-cta-row { margin-top: 8px; align-items: center; }

.rw-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: start;
}
.rw-split-copy p:last-child { margin-bottom: 0; }

.rw-media-frame {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: var(--rw-radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(18, 46, 90, 0.14);
}
.rw-media-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.rw-media-bar {
  display: block;
  background: var(--rw-red);
  color: #fff;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 16px;
  font-size: 0.85rem;
}
.rw-media-bar:hover { color: #fff; background: var(--rw-red-dark); }

.rw-ph-media {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 32px 24px;
  color: var(--rw-navy);
  background:
    linear-gradient(160deg, #c9d9ee, #e8f0f8),
    repeating-linear-gradient(
      -18deg,
      rgba(30, 77, 146, 0.05) 0 12px,
      rgba(30, 77, 146, 0) 12px 24px
    );
  border: 1px dashed rgba(30, 77, 146, 0.28);
  border-bottom: 0;
}
.rw-ph-media strong {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.rw-ph-media span {
  color: var(--rw-muted);
  font-size: 0.92rem;
  max-width: 18rem;
}

.rw-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.rw-icon-grid-4 { grid-template-columns: repeat(4, 1fr); }
.rw-icon-card {
  background: #fff;
  color: var(--rw-text);
  border-radius: 8px;
  padding: 28px 22px 24px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  box-shadow: 0 8px 22px rgba(10, 28, 60, 0.12);
}
a.rw-icon-card:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 28, 60, 0.18);
}
.rw-icon-card h3 {
  color: var(--rw-navy);
  margin: 0 0 12px;
}
.rw-icon-card p,
.rw-band-navy .rw-icon-card p {
  margin: 0;
  color: var(--rw-muted);
  font-size: 0.95rem;
  max-width: none;
}
.rw-icon-card ul,
.rw-band-navy .rw-icon-card ul {
  text-align: left;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--rw-muted);
  font-size: 0.92rem;
  width: 100%;
}
.rw-icon-card li { margin: 6px 0; }

.rw-icon-card .rw-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  background: var(--rw-off);
}
.rw-ph-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px dashed rgba(30, 77, 146, 0.45);
  background: var(--rw-off);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--rw-navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rw-cta-band { text-align: center; }
.rw-cta-band p { margin-inline: auto; }
.rw-cta-band .rw-cta-row { justify-content: center; }

.rw-faq {
  max-width: 48rem;
  margin: 24px auto 0;
  border-top: 1px solid var(--rw-border);
}
.rw-band-navy .rw-faq { border-top-color: rgba(255, 255, 255, 0.2); }
.rw-faq-item {
  border-bottom: 1px solid var(--rw-border);
}
.rw-band-navy .rw-faq-item { border-bottom-color: rgba(255, 255, 255, 0.2); }
.rw-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 36px 16px 0;
  font-weight: 800;
  color: var(--rw-navy);
  position: relative;
}
.rw-faq-item summary::-webkit-details-marker { display: none; }
.rw-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--rw-navy);
}
.rw-faq-item[open] summary::after { content: "–"; }
.rw-band-navy .rw-faq-item summary,
.rw-band-navy .rw-faq-item summary::after { color: #fff; }
.rw-faq-body { padding: 0 0 16px; }
.rw-faq-body p { margin: 0; max-width: none; }

.rw-map {
  border-radius: var(--rw-radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(18, 46, 90, 0.14);
  aspect-ratio: 16 / 9;
  background: var(--rw-off);
}
.rw-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.rw-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  max-width: 48rem;
}
.rw-towns li {
  background: var(--rw-off);
  color: var(--rw-navy);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 6px 12px;
  border-radius: 999px;
}
.rw-band-navy .rw-towns li {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.rw-shop {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 40px;
  max-width: 48rem;
}
.rw-shop p { margin: 0; }
.rw-shop a { font-weight: 700; }

.rw-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.rw-article {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: inherit;
  text-decoration: none;
  border-radius: var(--rw-radius);
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(10, 28, 60, 0.12);
}
a.rw-article:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 28, 60, 0.18);
}
.rw-article img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--rw-off);
}
.rw-article-body {
  padding: 18px 18px 20px;
}
.rw-article h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}
.rw-article p,
.rw-band-navy .rw-article p {
  margin: 0;
  color: var(--rw-muted);
  font-size: 0.95rem;
  max-width: none;
}
.rw-band-navy a.rw-article { color: inherit; }
.rw-band-navy a.rw-article:hover { color: inherit; text-decoration: none; }
.rw-band-navy .rw-article h3 { color: var(--rw-navy); }

/* Footer */
.rw-footer {
  background: var(--rw-navy-deeper);
  color: #dfe3f0;
  padding: 56px 0 32px;
  font-size: 0.95rem;
}
.rw-footer a { color: #fff; }
.rw-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.rw-footer h2 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.rw-footer-brand {
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  margin: 0;
  letter-spacing: 0.04em;
}
.rw-footer-tag { margin: 0 0 16px; color: #c9cde0; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.rw-footer ul { list-style: none; margin: 0; padding: 0; }
.rw-footer li { margin: 8px 0; }
.rw-footer-legal {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.82rem;
  color: #b8bdd4;
}

@media (max-width: 1100px) {
  .rw-icon-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .rw-logo img { height: 64px; width: auto; }
  .rw-primary > li > a {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.98rem;
  }
}

/* Side-by-side hero: shrink van and phone so copy is not clipped */
@media (max-width: 1240px) and (min-width: 961px) {
  .rw-hero {
    min-height: 0;
    align-items: center;
  }
  .rw-hero-visual {
    flex: 0 1 44%;
    max-width: 48%;
    margin-left: 20px;
    overflow: visible;
  }
  .rw-hero-visual img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    object-position: left center;
  }
  .rw-hero-inner {
    flex: 1 1 22rem;
    min-width: 0;
    padding: 16px 28px 16px 12px;
  }
  .rw-hero-copy { padding: 12px 0; }
  .rw-hero h1 { margin-bottom: 12px; }
  .rw-hero-phone {
    font-size: clamp(2rem, 4.2vw, 2.75rem);
    margin-bottom: 12px;
  }
}

@media (max-width: 960px) {
  .rw-wrap { width: min(100% - 32px, var(--rw-max)); }
  .rw-header { position: relative; }
  .rw-header-inner {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
    padding: 12px 0 0;
  }
  .rw-logo,
  .rw-header-tools,
  .rw-header-nav,
  .rw-header-bottom {
    grid-column: auto;
    grid-row: auto;
    align-self: stretch;
  }
  .rw-secondary { justify-self: start; }
  .rw-header-tools {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .rw-search { min-width: 0; flex: 1 1 100%; }
  .rw-logo img { height: 56px; width: auto; max-width: min(260px, 100%); }
  .rw-header-bottom {
    flex-wrap: wrap;
    gap: 10px 12px;
    min-height: 0;
    padding: 8px 0 12px;
  }
  .rw-header-ctas {
    flex: 1 1 100%;
    margin-left: 0;
  }
  .rw-header-ctas .rw-btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    padding: 12px 14px;
    font-size: 0.85rem;
  }
  .rw-hero {
    padding: 0;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
  }
  .rw-hero-inner, .rw-grid-3, .rw-footer-grid { grid-template-columns: 1fr; }
  .rw-hero-inner {
    gap: 0;
    min-height: 0;
    width: min(100% - 32px, var(--rw-max));
    margin-inline: auto;
    padding: 0;
    flex: 1 1 auto;
  }
  .rw-hero-visual {
    position: relative;
    top: auto;
    height: auto;
    max-width: none;
    width: 100%;
    flex: 0 0 auto;
  }
  .rw-hero-visual.is-placeholder,
  .rw-hero-placeholder { min-height: 220px; margin-left: 0; }
  .rw-hero-visual img {
    height: 220px;
    width: auto;
    max-width: none;
  }
  .rw-hero-copy {
    grid-column: auto;
    min-width: 0;
    padding: 28px 0 32px;
  }
  .rw-hero h1 { font-size: 26px; line-height: 32px; margin-bottom: 16px; }
  .rw-hero-kicker { font-size: 28px; line-height: 32px; }
  .rw-hero-phone { font-size: 40px; }
  .rw-menu-toggle { display: inline-flex; }
  .rw-primary {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 0;
    border-bottom: 1px solid var(--rw-border);
    z-index: 50;
    padding: 8px 16px 16px;
  }
  .rw-primary > li:last-child > a { padding-right: 14px; }
  .rw-header-nav {
    position: static;
    justify-content: flex-start;
  }
  .rw-header.is-open .rw-primary,
  .rw-header-nav.is-open .rw-primary { display: flex; }
  .rw-mega,
  .rw-mega-list {
    position: static;
    display: none;
    min-width: 0;
    columns: 1;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0 0 8px 12px;
    left: auto;
    right: auto;
  }
  .rw-primary > li.is-open > .rw-mega,
  .rw-primary > li.is-open > .rw-mega-list { display: block; }
  .rw-header-ctas { display: flex; flex-wrap: wrap; }
  .rw-svc-hero-inner,
  .rw-split { grid-template-columns: 1fr; }
  .rw-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .rw-articles { grid-template-columns: repeat(2, 1fr); }
  .rw-shop { grid-template-columns: 1fr; }
  .rw-band { padding: 48px 0; }
  .rw-svc-hero { padding-top: 16px; }
  .rw-ph-media { min-height: 220px; }
}

@media (max-width: 640px) {
  .rw-icon-grid,
  .rw-icon-grid-4,
  .rw-articles { grid-template-columns: 1fr; }
}
