/* ============================================================
   ROAD HAULER — Industrial Road Authority Theme
   CSS prefix: rh-
   Fonts: Barlow Condensed (headings) + Roboto (body)
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --rh-black:        #0A0A0A;
  --rh-dark:         #1A1A1A;
  --rh-dark-2:       #252525;
  --rh-orange:       #FF5E0E;
  --rh-orange-dim:   rgba(255,94,14,.12);
  --rh-orange-bright:#FF7A30;
  --rh-yellow:       #FFC107;
  --rh-white:        #FFFFFF;
  --rh-gray-50:      #F5F5F5;
  --rh-gray-100:     #EBEBEB;
  --rh-gray-200:     #D4D4D4;
  --rh-gray-400:     #A3A3A3;
  --rh-gray-500:     #737373;
  --rh-gray-700:     #404040;
  --rh-gray-900:     #171717;
  --rh-radius-sm:    4px;
  --rh-radius-md:    8px;
  --rh-radius-lg:    12px;
  --rh-shadow-sm:    0 1px 4px rgba(0,0,0,.08);
  --rh-shadow-md:    0 4px 20px rgba(0,0,0,.14);
  --rh-shadow-lg:    0 12px 48px rgba(0,0,0,.20);
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--rh-gray-900);
  background: var(--rh-white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.1;
  color: var(--rh-gray-900);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

em {
  font-style: normal;
  color: var(--rh-orange);
}

/* ── Layout Wrapper ── */
.rh-wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Topbar ── */
.rh-topbar {
  background: var(--rh-black);
  color: var(--rh-yellow);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  padding: 8px 16px;
  border-bottom: 2px solid var(--rh-orange);
}

/* ── Navigation ── */
.rh-nav {
  background: var(--rh-white);
  border-bottom: 1px solid var(--rh-gray-100);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: var(--rh-shadow-sm);
}

.rh-nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}

.rh-nav__brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.rh-nav__logo {
  height: 32px;
  width: auto;
}

.rh-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.rh-nav__links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rh-gray-700);
  padding: 6px 12px;
  border-radius: var(--rh-radius-sm);
  transition: color .18s, background .18s;
}

.rh-nav__links a:hover,
.rh-nav__links a.is-active {
  color: var(--rh-orange);
  background: var(--rh-orange-dim);
}

.rh-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.rh-nav__search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--rh-gray-50);
  border: 1px solid var(--rh-gray-200);
  border-radius: var(--rh-radius-sm);
  padding: 6px 10px;
  position: relative;
}

.rh-nav__search-icon {
  width: 15px;
  opacity: .5;
  flex-shrink: 0;
}

.rh-nav__search input {
  border: none;
  background: none;
  outline: none;
  font-size: 14px;
  width: 180px;
  color: var(--rh-gray-900);
  font-family: 'Roboto', sans-serif;
}

.rh-nav__search input::placeholder { color: var(--rh-gray-400); }

.rh-nav__cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--rh-orange);
  color: var(--rh-white);
  padding: 8px 18px;
  border-radius: var(--rh-radius-sm);
  transition: background .18s;
  white-space: nowrap;
}

.rh-nav__cta:hover { background: var(--rh-orange-bright); }

.rh-nav__toggle {
  display: none;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--rh-gray-200);
  border-radius: var(--rh-radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rh-gray-700);
}

.rh-nav__toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rh-nav__toggle-bars span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--rh-gray-700);
  border-radius: 2px;
}

/* ── Mobile Nav ── */
.rh-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.rh-mobile-nav[data-open] { display: block; }

.rh-mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.rh-mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--rh-white);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: var(--rh-shadow-lg);
}

.rh-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--rh-gray-100);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.rh-mobile-nav__close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--rh-gray-500);
  line-height: 1;
  padding: 4px;
}

.rh-mobile-nav__close:hover { color: var(--rh-orange); }

.rh-mobile-nav__links {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}

.rh-mobile-nav__links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rh-gray-700);
  padding: 12px 20px;
  border-left: 3px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
}

.rh-mobile-nav__links a:hover,
.rh-mobile-nav__links a.is-active {
  color: var(--rh-orange);
  border-left-color: var(--rh-orange);
  background: var(--rh-orange-dim);
}

.rh-mobile-nav__search {
  margin: 12px 20px;
  position: relative;
  display: flex;
  align-items: center;
}

.rh-mobile-nav__search input {
  width: 100%;
  border: 1px solid var(--rh-gray-200);
  border-radius: var(--rh-radius-sm);
  padding: 10px 12px 10px 36px;
  font-size: 14px;
  outline: none;
  font-family: 'Roboto', sans-serif;
  color: var(--rh-gray-900);
  background: var(--rh-gray-50);
}

.rh-mobile-nav__search input:focus { border-color: var(--rh-orange); }

/* ── Buttons ── */
.rh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 10px 20px;
  border-radius: var(--rh-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .12s;
  white-space: nowrap;
  text-decoration: none;
}

.rh-btn:hover { transform: translateY(-1px); }
.rh-btn:active { transform: translateY(0); }

.rh-btn--primary {
  background: var(--rh-orange);
  color: var(--rh-white);
  border-color: var(--rh-orange);
}
.rh-btn--primary:hover { background: var(--rh-orange-bright); border-color: var(--rh-orange-bright); }

.rh-btn--outline {
  background: transparent;
  color: var(--rh-gray-700);
  border-color: var(--rh-gray-200);
}
.rh-btn--outline:hover { border-color: var(--rh-orange); color: var(--rh-orange); }

.rh-btn--outline-light {
  background: rgba(255,255,255,.1);
  color: var(--rh-white);
  border-color: rgba(255,255,255,.3);
}
.rh-btn--outline-light:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); }

.rh-btn--emergency {
  background: var(--rh-orange);
  color: var(--rh-white);
  border-color: var(--rh-orange);
}
.rh-btn--emergency:hover { background: var(--rh-orange-bright); border-color: var(--rh-orange-bright); }

.rh-btn--dark {
  background: var(--rh-dark);
  color: var(--rh-white);
  border-color: var(--rh-dark);
}
.rh-btn--dark:hover { background: var(--rh-dark-2); }

.rh-btn--lg { font-size: 15px; padding: 13px 28px; }
.rh-btn--sm { font-size: 12px; padding: 7px 14px; }
.rh-btn--block { width: 100%; justify-content: center; }

/* ── Section Utilities ── */
.rh-section {
  padding: 72px 0;
}

.rh-section--gray {
  background: var(--rh-gray-50);
}

.rh-section--dark {
  background: var(--rh-dark);
  color: var(--rh-white);
}

.rh-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.rh-section__eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rh-orange);
  margin-bottom: 8px;
}

.rh-section__desc {
  color: var(--rh-gray-500);
  font-size: 15px;
  margin-top: 8px;
  max-width: 560px;
}

.rh-section__link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rh-orange);
  white-space: nowrap;
  align-self: center;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s;
}
.rh-section__link:hover { border-bottom-color: var(--rh-orange); }

/* ── Hero ── */
.rh-hero {
  background: var(--rh-black);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255,94,14,.03) 30px,
    rgba(255,94,14,.03) 60px
  );
  padding: 80px 0 64px;
  color: var(--rh-white);
  overflow: hidden;
  position: relative;
}

.rh-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rh-orange) 0%, var(--rh-yellow) 100%);
}

.rh-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.rh-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,94,14,.15);
  border: 1px solid rgba(255,94,14,.35);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rh-orange);
  margin-bottom: 20px;
}

.rh-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rh-orange);
  animation: rh-pulse 1.8s ease-in-out infinite;
}

@keyframes rh-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.75); }
}

.rh-hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.0;
  color: var(--rh-white);
  margin-bottom: 20px;
}

.rh-hero__title em {
  font-style: normal;
  color: var(--rh-orange);
}

.rh-hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.rh-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.rh-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--rh-dark);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--rh-radius-md);
  padding: 28px 32px;
  min-width: 200px;
  position: relative;
  overflow: hidden;
}

.rh-hero__stats::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--rh-orange);
}

.rh-hero__stat {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.rh-hero__stat:last-child { border-bottom: none; }

.rh-hero__stat-value {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--rh-orange);
  line-height: 1;
  letter-spacing: -.01em;
}

.rh-hero__stat-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
}

/* ── Search Bar (floating) ── */
.rh-search-bar {
  background: var(--rh-white);
  border-radius: var(--rh-radius-md);
  box-shadow: var(--rh-shadow-lg);
  border: 1px solid var(--rh-gray-100);
  padding: 20px 24px;
  margin-top: -32px;
  margin-bottom: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}

.rh-search-bar__form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.rh-search-bar__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rh-search-bar__field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--rh-gray-500);
}

.rh-search-bar__field input,
.rh-search-bar__field select {
  border: 1px solid var(--rh-gray-200);
  border-radius: var(--rh-radius-sm);
  padding: 9px 12px;
  font-size: 14px;
  outline: none;
  font-family: 'Roboto', sans-serif;
  color: var(--rh-gray-900);
  background: var(--rh-gray-50);
  transition: border-color .15s;
  width: 100%;
}

.rh-search-bar__field input:focus,
.rh-search-bar__field select:focus { border-color: var(--rh-orange); background: var(--rh-white); }

.rh-search-bar__submit { display: flex; align-items: flex-end; }

/* ── How It Works Steps ── */
.rh-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.rh-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.rh-step__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--rh-white);
  background: var(--rh-orange);
  width: 48px;
  height: 48px;
  border-radius: var(--rh-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}

.rh-step__content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--rh-gray-900);
}

.rh-step__content p {
  font-size: 14px;
  color: var(--rh-gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ── State Grid ── */
.rh-state-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.rh-state-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--rh-white);
  border: 1px solid var(--rh-gray-100);
  border-radius: var(--rh-radius-sm);
  transition: border-color .18s, box-shadow .18s, transform .12s;
  box-shadow: var(--rh-shadow-sm);
}

.rh-state-link:hover {
  border-color: var(--rh-orange);
  box-shadow: 0 0 0 3px var(--rh-orange-dim);
  transform: translateY(-2px);
}

.rh-state-link__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--rh-gray-900);
}

.rh-state-link__count {
  font-size: 12px;
  font-weight: 600;
  color: var(--rh-orange);
  background: var(--rh-orange-dim);
  padding: 2px 8px;
  border-radius: 100px;
}

/* ── Featured Tow Cards ── */
.rh-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.rh-tow-card {
  display: flex;
  flex-direction: column;
  background: var(--rh-white);
  border: 1px solid var(--rh-gray-100);
  border-top: 3px solid var(--rh-orange);
  border-radius: var(--rh-radius-md);
  box-shadow: var(--rh-shadow-sm);
  overflow: hidden;
  transition: transform .18s, box-shadow .18s;
  text-decoration: none;
  color: inherit;
}

.rh-tow-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--rh-shadow-md);
}

.rh-tow-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--rh-gray-100);
  flex-shrink: 0;
}

.rh-tow-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}

.rh-tow-card:hover .rh-tow-card__img { transform: scale(1.04); }

.rh-tow-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.rh-tow-card__badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 3px 9px;
  border-radius: var(--rh-radius-sm);
}

.rh-tow-card__badge--rating {
  background: rgba(10,10,10,.82);
  color: var(--rh-yellow);
}

.rh-tow-card__badge--tag {
  background: var(--rh-orange);
  color: var(--rh-white);
}

.rh-tow-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rh-tow-card__location {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rh-orange);
  margin-bottom: 6px;
}

.rh-tow-card__name {
  font-size: 1.15rem;
  color: var(--rh-gray-900);
  margin-bottom: 6px;
  letter-spacing: .02em;
}

.rh-tow-card__meta {
  font-size: 13px;
  color: var(--rh-gray-400);
  margin-bottom: 10px;
}

.rh-tow-card__summary {
  font-size: 14px;
  color: var(--rh-gray-500);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}

.rh-tow-card__chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.rh-tow-card__chip {
  font-size: 11px;
  font-weight: 500;
  background: var(--rh-gray-50);
  border: 1px solid var(--rh-gray-200);
  color: var(--rh-gray-700);
  padding: 3px 10px;
  border-radius: var(--rh-radius-sm);
}

.rh-tow-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--rh-gray-100);
  padding-top: 12px;
  margin-top: auto;
}

.rh-tow-card__phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--rh-gray-700);
}

.rh-tow-card__cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rh-orange);
  padding: 5px 12px;
  border: 1px solid var(--rh-orange);
  border-radius: var(--rh-radius-sm);
  transition: background .15s, color .15s;
}

.rh-tow-card:hover .rh-tow-card__cta {
  background: var(--rh-orange);
  color: var(--rh-white);
}

/* ── CTA Banner ── */
.rh-cta-banner {
  background: var(--rh-black);
  border-radius: var(--rh-radius-md);
  padding: 48px 52px;
  border-left: 6px solid var(--rh-orange);
  position: relative;
  overflow: hidden;
}

.rh-cta-banner::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--rh-orange-dim);
  pointer-events: none;
}

.rh-cta-banner h2 {
  color: var(--rh-white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.rh-cta-banner p {
  color: rgba(255,255,255,.6);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 560px;
}

/* ── Journal Grid ── */
.rh-journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.rh-journal-card {
  display: flex;
  flex-direction: column;
  background: var(--rh-white);
  border: 1px solid var(--rh-gray-100);
  border-radius: var(--rh-radius-md);
  overflow: hidden;
  transition: transform .18s, box-shadow .18s;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--rh-shadow-sm);
}

.rh-journal-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--rh-shadow-md);
}

.rh-journal-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.rh-journal-card__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rh-journal-card__cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rh-orange);
  margin-bottom: 8px;
}

.rh-journal-card__title {
  font-size: 1rem;
  color: var(--rh-gray-900);
  margin-bottom: 8px;
  flex: 1;
  line-height: 1.3;
}

.rh-journal-card__excerpt {
  font-size: 13px;
  color: var(--rh-gray-500);
  line-height: 1.5;
  margin: 0;
}

/* ── Listing Hero ── */
.rh-listing-hero {
  background: var(--rh-black);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255,94,14,.02) 30px,
    rgba(255,94,14,.02) 60px
  );
  color: var(--rh-white);
  padding: 52px 0 48px;
  border-bottom: 3px solid var(--rh-orange);
}

.rh-listing-hero__eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--rh-orange);
  margin-bottom: 10px;
}

.rh-listing-hero h1 {
  color: var(--rh-white);
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.rh-listing-hero p {
  color: rgba(255,255,255,.6);
  font-size: 15px;
  max-width: 600px;
  margin-bottom: 0;
}

.rh-listing-hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.rh-listing-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rh-listing-hero__stat span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
}

.rh-listing-hero__stat strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--rh-orange);
}

/* ── Toolbar ── */
.rh-toolbar {
  background: var(--rh-white);
  border: 1px solid var(--rh-gray-100);
  border-radius: var(--rh-radius-md);
  padding: 20px 24px;
  margin: 28px 0;
  box-shadow: var(--rh-shadow-sm);
}

.rh-toolbar__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.rh-toolbar__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rh-toolbar__field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--rh-gray-500);
}

.rh-toolbar__field input,
.rh-toolbar__field select {
  border: 1px solid var(--rh-gray-200);
  border-radius: var(--rh-radius-sm);
  padding: 8px 12px;
  font-size: 14px;
  outline: none;
  font-family: 'Roboto', sans-serif;
  color: var(--rh-gray-900);
  background: var(--rh-gray-50);
  transition: border-color .15s;
  width: 100%;
}

.rh-toolbar__field input:focus,
.rh-toolbar__field select:focus { border-color: var(--rh-orange); background: var(--rh-white); }

.rh-toolbar__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ── Results ── */
.rh-results { padding-bottom: 48px; }

.rh-results__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.rh-results__head h2 {
  font-size: 1.3rem;
  color: var(--rh-gray-900);
}

.rh-results__count {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rh-gray-500);
  background: var(--rh-gray-100);
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── Filter Chips ── */
.rh-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.rh-chip {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--rh-orange-dim);
  color: var(--rh-orange);
  border: 1px solid rgba(255,94,14,.25);
  padding: 5px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: background .15s;
}
.rh-chip:hover { background: rgba(255,94,14,.2); }

/* ── Card Grid (listing page) ── */
.rh-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.rh-card {
  display: flex;
  flex-direction: column;
  background: var(--rh-white);
  border: 1px solid var(--rh-gray-100);
  border-top: 3px solid var(--rh-orange);
  border-radius: var(--rh-radius-md);
  overflow: hidden;
  box-shadow: var(--rh-shadow-sm);
  transition: transform .18s, box-shadow .18s;
  text-decoration: none;
  color: inherit;
}

.rh-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--rh-shadow-md);
}

.rh-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--rh-gray-100);
  flex-shrink: 0;
}

.rh-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}

.rh-card:hover .rh-card__img img { transform: scale(1.04); }

.rh-card__tag {
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 3px 8px;
  border-radius: var(--rh-radius-sm);
}

.rh-card__tag--24h {
  top: 8px;
  left: 8px;
  background: var(--rh-orange);
  color: var(--rh-white);
}

.rh-card__tag--rating {
  top: 8px;
  right: 8px;
  background: rgba(10,10,10,.82);
  color: var(--rh-yellow);
}

.rh-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rh-card__location {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rh-orange);
  margin-bottom: 5px;
}

.rh-card__name {
  font-size: 1rem;
  color: var(--rh-gray-900);
  margin-bottom: 10px;
  line-height: 1.25;
}

.rh-card__chips {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.rh-card__chips span {
  font-size: 11px;
  background: var(--rh-gray-50);
  border: 1px solid var(--rh-gray-200);
  color: var(--rh-gray-700);
  padding: 2px 8px;
  border-radius: var(--rh-radius-sm);
}

.rh-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--rh-gray-100);
  padding-top: 10px;
  margin-top: auto;
}

.rh-card__phone,
.rh-card__reviews {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--rh-gray-700);
}

.rh-card__arrow {
  font-size: 16px;
  color: var(--rh-orange);
  font-weight: 700;
}

/* ── Pagination ── */
.rh-pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 0 16px;
}

.rh-pagination a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 8px 14px;
  border: 1px solid var(--rh-gray-200);
  border-radius: var(--rh-radius-sm);
  color: var(--rh-gray-700);
  background: var(--rh-white);
  transition: border-color .15s, color .15s, background .15s;
}

.rh-pagination a:hover { border-color: var(--rh-orange); color: var(--rh-orange); }
.rh-pagination a.is-active { background: var(--rh-orange); color: var(--rh-white); border-color: var(--rh-orange); }
.rh-pagination a.is-disabled { opacity: .35; pointer-events: none; }

/* ── Tags ── */
.rh-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: var(--rh-radius-sm);
}

.rh-tag--orange { background: var(--rh-orange-dim); color: var(--rh-orange); border: 1px solid rgba(255,94,14,.25); }
.rh-tag--pulse  { background: rgba(22,163,74,.1); color: #16a34a; border: 1px solid rgba(22,163,74,.2); }

/* ── Detail Page ── */
.rh-detail {}

/* Detail Hero */
.rh-detail-hero {
  background: var(--rh-black);
  color: var(--rh-white);
  padding: 44px 0 40px;
  border-bottom: 3px solid var(--rh-orange);
}

.rh-detail-hero__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.rh-detail-hero__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.rh-detail-hero__title {
  color: var(--rh-white);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}

.rh-detail-hero__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}

.rh-detail-hero__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}

.rh-detail-hero__stars { display: flex; gap: 2px; }

.rh-detail-hero__rating strong { color: var(--rh-yellow); font-weight: 700; }

.rh-detail-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-shrink: 0;
}

/* Gallery */
.rh-detail-gallery {
  margin: 28px 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  border-radius: var(--rh-radius-md);
  overflow: hidden;
  max-height: 420px;
}

.rh-detail-gallery.detail-gallery--single {
  grid-template-columns: 1fr;
}

.gallery-main { height: 100%; overflow: hidden; }
.gallery-main .gallery-trigger--main { width: 100%; height: 100%; border: none; background: none; padding: 0; cursor: pointer; overflow: hidden; display: block; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 350ms ease; }
.gallery-main .gallery-trigger--main:hover img { transform: scale(1.05); }

.gallery-side { display: grid; grid-template-rows: 1fr 1fr; gap: 8px; height: 100%; }
.gallery-side--single { grid-template-rows: 1fr; }
.gallery-card { position: relative; overflow: hidden; height: 100%; max-height: none; }
.gallery-card .gallery-trigger { width: 100%; height: 100%; border: none; background: none; padding: 0; cursor: pointer; overflow: hidden; display: block; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 350ms ease; }
.gallery-card .gallery-trigger:hover img { transform: scale(1.05); }
.gallery-card-photo-count figcaption {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(2px);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px; color: var(--rh-white);
  letter-spacing: .06em; text-transform: uppercase;
  pointer-events: none;
  transition: background 250ms ease;
}
.gallery-card-photo-count:hover figcaption { background: rgba(0,0,0,.62); }

/* Detail Layout */
.rh-detail__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding-bottom: 64px;
  align-items: start;
}

.rh-detail__main {}
.rh-detail__aside { position: sticky; top: 80px; }

/* Quick Facts */
.rh-quick-facts {
  display: flex;
  gap: 0;
  border: 1px solid var(--rh-gray-100);
  border-radius: var(--rh-radius-md);
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--rh-white);
  box-shadow: var(--rh-shadow-sm);
}

.rh-quick-fact {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid var(--rh-gray-100);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rh-quick-fact:last-child { border-right: none; }

.rh-quick-fact__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rh-gray-400);
}

.rh-quick-fact__value {
  font-weight: 600;
  font-size: 15px;
  color: var(--rh-gray-900);
}

/* Detail Sections */
.rh-detail__section {
  padding: 28px 0;
  border-bottom: 1px solid var(--rh-gray-100);
}

.rh-detail__section--first { padding-top: 0; }
.rh-detail__section:last-child { border-bottom: none; }

.rh-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.rh-section-head__icon {
  width: 36px;
  height: 36px;
  background: var(--rh-orange-dim);
  border-radius: var(--rh-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rh-section-head h2 {
  font-size: 1.2rem;
  color: var(--rh-gray-900);
  flex: 1;
}

.rh-section-head__link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rh-orange);
}

.rh-detail__lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--rh-gray-900);
  line-height: 1.65;
  margin-bottom: 14px;
}

.rh-detail__subtext {
  font-size: 15px;
  color: var(--rh-gray-500);
  line-height: 1.65;
}

/* Amenity Chips on detail */
.rh-amenity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.rh-amenity-chip {
  font-size: 13px;
  font-weight: 500;
  background: var(--rh-gray-50);
  border: 1px solid var(--rh-gray-200);
  color: var(--rh-gray-700);
  padding: 5px 12px;
  border-radius: var(--rh-radius-sm);
}

/* Highlights */
.rh-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.rh-highlight {
  background: var(--rh-gray-50);
  border: 1px solid var(--rh-gray-100);
  border-left: 3px solid var(--rh-orange);
  border-radius: var(--rh-radius-sm);
  padding: 16px;
}

.rh-highlight__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rh-orange);
  margin-bottom: 6px;
}

.rh-highlight__value {
  font-weight: 700;
  font-size: 15px;
  color: var(--rh-gray-900);
  margin-bottom: 4px;
}

.rh-highlight__meta {
  font-size: 12px;
  color: var(--rh-gray-500);
  margin: 0;
}

/* Amenity Groups */
.rh-amenity-groups { display: flex; flex-direction: column; gap: 24px; }

.rh-amenity-group h3 {
  font-size: .95rem;
  color: var(--rh-gray-900);
  margin-bottom: 8px;
  letter-spacing: .04em;
}

.rh-amenity-group p {
  font-size: 14px;
  color: var(--rh-gray-500);
  margin-bottom: 10px;
}

/* Map */
.rh-map {
  border-radius: var(--rh-radius-md);
  overflow: hidden;
  border: 1px solid var(--rh-gray-100);
}

.rh-map iframe {
  width: 100%;
  height: 340px;
  border: none;
  display: block;
}

/* Snapshot */
.rh-snapshot { display: flex; flex-direction: column; gap: 0; }

.rh-snapshot__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rh-gray-100);
  align-items: baseline;
}

.rh-snapshot__row:last-child { border-bottom: none; }

.rh-snapshot__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--rh-gray-500);
}

.rh-snapshot__value { font-weight: 600; font-size: 15px; color: var(--rh-gray-900); }
.rh-snapshot__meta { font-size: 12px; color: var(--rh-gray-400); grid-column: 2; margin-top: -4px; }

/* Booking Channels */
.rh-channels { display: flex; flex-direction: column; gap: 10px; }

.rh-channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--rh-gray-50);
  border: 1px solid var(--rh-gray-200);
  border-radius: var(--rh-radius-sm);
  transition: border-color .15s, background .15s;
}

.rh-channel:hover { border-color: var(--rh-orange); background: var(--rh-white); }

.rh-channel__info { display: flex; flex-direction: column; gap: 2px; }
.rh-channel__info strong { font-size: 15px; color: var(--rh-gray-900); font-weight: 600; }
.rh-channel__info span { font-size: 13px; color: var(--rh-gray-400); }

.rh-channel__cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rh-orange);
  white-space: nowrap;
}

/* Linked Blog Post */
.rh-linked-post {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  background: var(--rh-gray-50);
  border: 1px solid var(--rh-gray-100);
  border-radius: var(--rh-radius-md);
  overflow: hidden;
  transition: box-shadow .18s;
}

.rh-linked-post:hover { box-shadow: var(--rh-shadow-md); }

.rh-linked-post__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rh-linked-post__body {
  padding: 20px 20px 20px 0;
  display: flex;
  flex-direction: column;
}

.rh-linked-post__cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rh-orange);
  margin-bottom: 8px;
}

.rh-linked-post__body h3 {
  font-size: 1rem;
  color: var(--rh-gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.rh-linked-post__body p {
  font-size: 13px;
  color: var(--rh-gray-500);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 12px;
}

.rh-linked-post__cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rh-orange);
  align-self: flex-start;
}

/* ── Sidebar ── */
.rh-sidebar-cta {
  background: var(--rh-dark);
  border-radius: var(--rh-radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  margin-bottom: 16px;
}

.rh-sidebar-cta__head {
  padding: 22px 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-bottom: 18px;
}

.rh-sidebar-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #22c55e;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.2);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.rh-sidebar-cta__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: rh-pulse 1.8s ease-in-out infinite;
}

.rh-sidebar-cta__head h2 {
  color: var(--rh-white);
  font-size: 1.25rem;
  margin-bottom: 0;
}

.rh-sidebar-cta__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.rh-sidebar-cta__body { padding: 18px 22px 22px; }

.rh-sidebar-cta__rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }

.rh-sidebar-cta__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.rh-sidebar-cta__row svg { color: var(--rh-orange); flex-shrink: 0; }
.rh-sidebar-cta__body .rh-btn + .rh-btn { margin-top: 8px; }

/* Sidebar Tip */
.rh-sidebar-tip {
  background: var(--rh-orange-dim);
  border: 1px solid rgba(255,94,14,.2);
  border-radius: var(--rh-radius-md);
  padding: 18px 20px;
}

.rh-sidebar-tip__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--rh-orange);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px !important;
}

.rh-sidebar-tip p {
  font-size: 13px;
  color: var(--rh-gray-700);
  line-height: 1.55;
  margin: 0;
}

/* ── Related Providers ── */
.rh-related {
  background: var(--rh-gray-50);
  padding: 56px 0;
  border-top: 1px solid var(--rh-gray-100);
}

.rh-related__eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rh-orange);
  margin-bottom: 8px;
}

.rh-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.rh-related__head h2 { font-size: 1.4rem; }

/* ── Article / Blog ── */
.rh-article {
  padding: 48px 0 64px;
}

.rh-article__breadcrumb {
  font-size: 13px;
  color: var(--rh-gray-400);
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.rh-article__breadcrumb a { color: var(--rh-orange); }
.rh-article__breadcrumb a:hover { text-decoration: underline; }

.rh-article__hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--rh-radius-lg);
  margin-bottom: 32px;
}

.rh-article__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.rh-article__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.rh-article__tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--rh-orange-dim);
  color: var(--rh-orange);
  border: 1px solid rgba(255,94,14,.2);
  padding: 4px 10px;
  border-radius: var(--rh-radius-sm);
}

.rh-article__title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--rh-gray-900);
  margin-bottom: 16px;
  line-height: 1.15;
}

.rh-article__excerpt {
  font-size: 17px;
  color: var(--rh-gray-500);
  line-height: 1.65;
  margin-bottom: 20px;
}

.rh-article__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.rh-article__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rh-orange);
  color: var(--rh-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}

.rh-article__author-name { font-weight: 600; font-size: 15px; }
.rh-article__author-role { font-size: 13px; color: var(--rh-gray-400); }

.rh-testimonial {
  margin: 0;
  padding: 24px 28px;
  background: rgba(249,115,22,.06);
  border-left: 4px solid var(--rh-orange);
  border-radius: 0 var(--rh-radius-md) var(--rh-radius-md) 0;
}
.rh-testimonial__icon { display: block; margin-bottom: 12px; opacity: .3; }
.rh-testimonial__text {
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--rh-gray-700);
  font-style: italic;
}
.rh-testimonial__source {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  color: var(--rh-gray-500);
  text-transform: uppercase; letter-spacing: .05em;
}
.rh-testimonial__stars { display: flex; gap: 2px; }

.rh-article__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--rh-gray-700);
}

.rh-article__body h1, .rh-article__body h2, .rh-article__body h3,
.rh-article__body h4 { margin: 28px 0 12px; color: var(--rh-gray-900); }
.rh-article__body h2 { font-size: 1.4rem; }
.rh-article__body h3 { font-size: 1.15rem; }
.rh-article__body p  { margin-bottom: 16px; }
.rh-article__body ul, .rh-article__body ol { padding-left: 20px; margin-bottom: 16px; list-style: disc; }
.rh-article__body ol { list-style: decimal; }
.rh-article__body li { margin-bottom: 6px; }
.rh-article__body a  { color: var(--rh-orange); text-decoration: underline; }
.rh-article__body blockquote {
  border-left: 4px solid var(--rh-orange);
  padding: 12px 20px;
  margin: 24px 0;
  background: var(--rh-orange-dim);
  border-radius: 0 var(--rh-radius-sm) var(--rh-radius-sm) 0;
  font-style: italic;
  color: var(--rh-gray-700);
}
.rh-article__body strong { font-weight: 700; color: var(--rh-gray-900); }

.rh-article__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rh-gray-100);
}

.rh-article__nav a {
  padding: 16px 20px;
  background: var(--rh-gray-50);
  border: 1px solid var(--rh-gray-200);
  border-radius: var(--rh-radius-md);
  transition: border-color .15s;
}

.rh-article__nav a:hover { border-color: var(--rh-orange); }

.rh-article__nav-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rh-gray-400);
  margin-bottom: 4px;
}

.rh-article__nav-title { font-size: 14px; font-weight: 600; color: var(--rh-gray-900); margin: 0; }

/* TOC */
.rh-toc {
  background: var(--rh-gray-50);
  border: 1px solid var(--rh-gray-200);
  border-radius: var(--rh-radius-md);
  padding: 18px 20px;
  position: sticky;
  top: 80px;
}

.rh-toc__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rh-gray-500);
  margin-bottom: 12px;
}

.rh-toc__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rh-toc__nav a {
  font-size: 13px;
  color: var(--rh-gray-700);
  padding: 5px 8px;
  border-radius: var(--rh-radius-sm);
  border-left: 2px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
}

.rh-toc__nav a.level-2 { padding-left: 16px; }
.rh-toc__nav a.level-3 { padding-left: 24px; font-size: 12px; }
.rh-toc__nav a:hover, .rh-toc__nav a.is-active { color: var(--rh-orange); border-left-color: var(--rh-orange); background: var(--rh-orange-dim); }

/* Sidebar Card (blog article promo) */
.rh-sidebar-card {
  background: var(--rh-dark);
  border-radius: var(--rh-radius-md);
  padding: 20px;
  color: var(--rh-white);
}

.rh-sidebar-card h2 { color: var(--rh-white); font-size: 1rem; margin-bottom: 8px; }
.rh-sidebar-card__actions { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }

/* Blog Hero */
.rh-blog-hero {
  background: var(--rh-dark);
  color: var(--rh-white);
  padding: 52px 0 40px;
  border-bottom: 3px solid var(--rh-orange);
}

.rh-blog-hero h1 {
  color: var(--rh-white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.rh-blog-hero p { color: rgba(255,255,255,.6); font-size: 15px; max-width: 600px; }

/* Featured first post */
.rh-featured-first {
  background: var(--rh-gray-50);
  border-radius: var(--rh-radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}

.rh-featured-first__link {
  display: grid;
  text-decoration: none;
  color: inherit;
}

/* ── About Page ── */
.rh-about { padding: 60px 0; }

.rh-about__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.rh-about__main h1 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.rh-about__lead {
  font-size: 17px;
  color: var(--rh-gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

.rh-about__body { font-size: 15px; line-height: 1.7; color: var(--rh-gray-700); }
.rh-about__body h2 { font-size: 1.25rem; margin: 32px 0 12px; color: var(--rh-gray-900); padding-top: 8px; border-top: 1px solid var(--rh-gray-100); }
.rh-about__body h2:first-child { border-top: none; margin-top: 0; }
.rh-about__body p  { margin-bottom: 14px; }
.rh-about__body ul { padding-left: 18px; list-style: disc; margin-bottom: 14px; }
.rh-about__body li { margin-bottom: 6px; }
.rh-about__body a  { color: var(--rh-orange); text-decoration: underline; }

.rh-about__sidebar { position: sticky; top: 80px; }

.rh-about__info-card {
  background: var(--rh-dark);
  border-radius: var(--rh-radius-md);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  margin-bottom: 16px;
}

.rh-about__info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  gap: 12px;
}

.rh-about__info-row:last-child { border-bottom: none; }

.rh-about__info-row span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  flex-shrink: 0;
}

.rh-about__info-row p {
  font-weight: 600;
  font-size: 14px;
  color: var(--rh-white);
  margin: 0;
  text-align: right;
}

/* ── Contact Page ── */
.rh-contact { padding: 60px 0; }

.rh-contact__header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.rh-contact__header h1 { margin-bottom: 12px; }
.rh-contact__header p { color: var(--rh-gray-500); font-size: 16px; margin: 0; }

.rh-contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.rh-contact__info h2 { font-size: 1.25rem; margin-bottom: 20px; }

.rh-contact__info-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; border: 1px solid var(--rh-gray-100); border-radius: var(--rh-radius-md); overflow: hidden; }

.rh-contact__info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rh-gray-100);
  gap: 16px;
}
.rh-contact__info-item:last-child { border-bottom: none; }
.rh-contact__info-item span { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--rh-gray-500); flex-shrink: 0; }
.rh-contact__info-item a, .rh-contact__info-item strong { font-weight: 600; color: var(--rh-gray-900); font-size: 14px; }
.rh-contact__info-item a { color: var(--rh-orange); }

.rh-contact__help-cards { display: flex; flex-direction: column; gap: 12px; }

.rh-contact__help-card {
  background: var(--rh-gray-50);
  border: 1px solid var(--rh-gray-100);
  border-left: 3px solid var(--rh-orange);
  border-radius: var(--rh-radius-sm);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rh-contact__help-card strong { font-size: 14px; color: var(--rh-gray-900); font-weight: 700; }
.rh-contact__help-card span  { font-size: 13px; color: var(--rh-gray-500); }

.rh-contact__form-card {
  background: var(--rh-white);
  border: 1px solid var(--rh-gray-100);
  border-radius: var(--rh-radius-md);
  padding: 32px;
  box-shadow: var(--rh-shadow-sm);
}

.rh-contact__form-card h2 { font-size: 1.25rem; margin-bottom: 6px; }

.rh-contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.rh-contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rh-contact__field > span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--rh-gray-700);
}

.rh-contact__field--full { grid-column: 1 / -1; }

.rh-contact__field input,
.rh-contact__field textarea {
  border: 1px solid var(--rh-gray-200);
  border-radius: var(--rh-radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  outline: none;
  transition: border-color .15s;
  color: var(--rh-gray-900);
  background: var(--rh-gray-50);
}

.rh-contact__field input:focus,
.rh-contact__field textarea:focus { border-color: var(--rh-orange); background: var(--rh-white); }

.rh-contact__field textarea { min-height: 120px; resize: vertical; }
.rh-contact__field small { color: #dc2626; font-size: 12px; }

/* ── 404 Page ── */
.rh-404 {
  padding: 100px 0;
  text-align: center;
}

.rh-404__code {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 8rem;
  color: var(--rh-orange);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.rh-404 h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 12px; }
.rh-404 p  { color: var(--rh-gray-500); font-size: 16px; max-width: 480px; margin: 0 auto 32px; }

/* ── Policy Page ── */
.rh-policy { padding: 60px 0; }

.rh-policy__layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: start;
}

.rh-policy__main h1 { margin-bottom: 16px; }
.rh-policy__lead { font-size: 17px; color: var(--rh-gray-500); line-height: 1.65; margin-bottom: 32px; }

.rh-policy__body section { margin-bottom: 36px; }
.rh-policy__body h2 { font-size: 1.15rem; margin-bottom: 12px; padding-top: 16px; border-top: 1px solid var(--rh-gray-100); }
.rh-policy__body p  { font-size: 15px; color: var(--rh-gray-700); line-height: 1.7; margin-bottom: 12px; }
.rh-policy__body ul { padding-left: 18px; list-style: disc; margin-bottom: 12px; }
.rh-policy__body li { font-size: 15px; color: var(--rh-gray-700); margin-bottom: 6px; }

/* ── Footer ── */
.rh-footer {
  background: var(--rh-black);
  color: rgba(255,255,255,.55);
  padding: 56px 0 32px;
  border-top: 3px solid var(--rh-orange);
}

.rh-footer__inner {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.rh-footer__brand h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rh-orange);
  margin-bottom: 10px;
}

.rh-footer__brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}

.rh-footer__brand a { color: var(--rh-orange); text-decoration: underline; }

.rh-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-content: flex-start;
}

.rh-footer__links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  transition: color .15s;
}

.rh-footer__links a:hover { color: var(--rh-orange); }

.rh-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

/* ── Responsive: 768px ── */
@media (max-width: 768px) {
  .rh-hero__inner      { grid-template-columns: 1fr; }
  .rh-hero__stats      { flex-direction: row; min-width: auto; justify-content: space-around; }
  .rh-hero__stat       { border-bottom: none; border-right: 1px solid rgba(255,255,255,.06); padding: 12px 20px; }
  .rh-hero__stat:last-child { border-right: none; }

  .rh-search-bar__form { grid-template-columns: 1fr 1fr; }
  .rh-search-bar__submit { grid-column: 1/-1; }
  .rh-search-bar__submit .rh-btn { width: 100%; justify-content: center; }

  .rh-steps { grid-template-columns: 1fr; gap: 20px; }

  .rh-nav__links, .rh-nav__search { display: none; }
  .rh-nav__toggle { display: flex; }

  .rh-toolbar__grid { grid-template-columns: 1fr 1fr; }
  .rh-toolbar__actions { grid-column: 1/-1; }

  .rh-detail__layout  { grid-template-columns: 1fr; }
  .rh-detail__aside   { position: static; }
  .rh-detail-gallery  { grid-template-columns: 1fr; max-height: 260px; }
  .gallery-side       { display: none; }

  .rh-article__layout  { grid-template-columns: 1fr; }
  .rh-article__sidebar { display: none; }

  .rh-about__layout   { grid-template-columns: 1fr; }
  .rh-contact__layout { grid-template-columns: 1fr; }
  .rh-contact__form   { grid-template-columns: 1fr; }
  .rh-policy__layout  { grid-template-columns: 1fr; }

  .rh-footer__inner   { flex-direction: column; gap: 28px; }
  .rh-detail-hero__inner { flex-direction: column; }
  .rh-detail-hero__actions { width: 100%; }

  .rh-about__info-card,
  .rh-toc { display: none; }

  .rh-linked-post { grid-template-columns: 1fr; }
  .rh-linked-post__img { height: 160px; }

  .rh-snapshot__row { grid-template-columns: 140px 1fr; }

  .rh-cta-banner { padding: 32px 24px; }

  .rh-highlights { grid-template-columns: 1fr; }

  .rh-quick-facts { flex-wrap: wrap; }
  .rh-quick-fact { min-width: 50%; border-bottom: 1px solid var(--rh-gray-100); }

  .rh-section__head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── Responsive: 480px ── */
@media (max-width: 480px) {
  .rh-wrap { padding: 0 16px; }

  .rh-hero { padding: 56px 0 48px; }
  .rh-hero__stats { flex-direction: column; }
  .rh-hero__stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); padding: 12px 16px; }

  .rh-search-bar { padding: 16px; }
  .rh-search-bar__form { grid-template-columns: 1fr; }

  .rh-featured-grid   { grid-template-columns: 1fr; }
  .rh-journal-grid    { grid-template-columns: 1fr; }
  .rh-card-grid       { grid-template-columns: 1fr; }
  .rh-state-list      { grid-template-columns: repeat(2, 1fr); }

  .rh-toolbar__grid   { grid-template-columns: 1fr; }

  .rh-cta-banner { padding: 24px 18px; }
  .rh-cta-banner h2 { font-size: 1.4rem; }

  h2 { font-size: 1.4rem; }

  .rh-section { padding: 48px 0; }
  .rh-section--gray { padding: 48px 0; }

  .rh-listing-hero { padding: 36px 0 32px; }
  .rh-detail-hero  { padding: 32px 0 28px; }

  .rh-pagination a { padding: 7px 11px; font-size: 12px; }

  .rh-article__hero-img { max-height: 240px; border-radius: var(--rh-radius-md); }
  .rh-article__title    { font-size: 1.5rem; }

  .rh-404__code { font-size: 5rem; }
  .rh-404 { padding: 64px 0; }
}

/* ====================================================
   COMMAND CENTER (Homepage Redesign)
   ==================================================== */

/* Ticker strip */
.rh-ticker {
  background: var(--rh-carbon, #0a0a0a);
  border-bottom: 2px solid var(--rh-orange, #FF5E0E);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 36px;
}

.rh-ticker__label {
  flex-shrink: 0;
  background: var(--rh-orange, #FF5E0E);
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .15em;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
}

.rh-ticker__track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  padding: 0 24px;
  animation: rh-ticker-scroll 28s linear infinite;
}

@keyframes rh-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.rh-ticker__item {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
}

.rh-ticker__sep {
  color: var(--rh-orange, #FF5E0E);
  font-weight: 900;
}

/* Command Hero */
.rh-command {
  background: var(--rh-carbon, #0a0a0a);
  padding: 0;
}

.rh-command__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  min-height: 76vh;
  align-items: stretch;
}

.rh-command__left {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  border-right: 1px solid rgba(255,94,14,.2);
}

.rh-command__status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--rh-orange, #FF5E0E);
  text-transform: uppercase;
}

.rh-command__status-dot {
  width: 8px;
  height: 8px;
  background: #FF5E0E;
  border-radius: 50%;
  box-shadow: 0 0 8px #FF5E0E;
}

.rh-command__title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin: 0;
}

.rh-command__highlight {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rh-orange, #FF5E0E);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0;
}

.rh-command__desc {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

.rh-command__input,
.rh-command__select {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,94,14,.3);
  padding: 14px 18px;
  color: #fff;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
  width: 100%;
}
.rh-command__input:focus,
.rh-command__select:focus { border-color: var(--rh-orange, #FF5E0E); }
.rh-command__input::placeholder { color: rgba(255,255,255,.35); }
.rh-command__select option { background: #111; }

.rh-command__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rh-command__form .rh-command__input { border-bottom-width: 0; }
.rh-command__form .rh-command__select { border-bottom-width: 0; }

.rh-btn--fire {
  background: var(--rh-orange, #FF5E0E);
  color: #fff;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .95rem;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  width: 100%;
}
.rh-btn--fire:hover { opacity: .9; }

.rh-btn--black {
  background: #0a0a0a;
  color: var(--rh-orange, #FF5E0E);
  border: 2px solid var(--rh-orange, #FF5E0E);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
}
.rh-btn--black:hover { background: var(--rh-orange, #FF5E0E); color: #fff; }

.rh-command__right {
  background: rgba(255,94,14,.05);
  border-left: 1px solid rgba(255,94,14,.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 32px;
  gap: 24px;
}

.rh-services-board {
  border: 1px solid rgba(255,94,14,.3);
  padding: 24px;
}

.rh-services-board__title {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
  color: var(--rh-orange, #FF5E0E);
  text-transform: uppercase;
  margin: 0 0 16px;
}

.rh-services-board__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.rh-svc-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,94,14,.15);
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  letter-spacing: .03em;
}
.rh-svc-btn:hover {
  background: rgba(255,94,14,.15);
  border-color: var(--rh-orange, #FF5E0E);
  color: #fff;
}
.rh-svc-btn span { font-size: 1rem; }

.rh-command__counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,94,14,.3);
}

.rh-counter {
  padding: 16px;
  text-align: center;
  border-right: 1px solid rgba(255,94,14,.2);
}
.rh-counter:last-child { border-right: none; }

.rh-counter__val {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--rh-orange, #FF5E0E);
  line-height: 1;
}
.rh-counter__lbl {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
}

/* Section dark/light variants */
.rh-section--dark { background: #0a0a0a; padding: 60px 0; }
.rh-section__head--light { color: #fff; }
.rh-section__eyebrow--light { color: var(--rh-orange, #FF5E0E); }
.rh-section__desc--light { color: rgba(255,255,255,.6); }

/* Horizontal scroll track */
.rh-scroll-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--rh-orange) rgba(255,255,255,.1);
}
.rh-scroll-track::-webkit-scrollbar { height: 4px; }
.rh-scroll-track::-webkit-scrollbar-track { background: rgba(255,255,255,.05); }
.rh-scroll-track::-webkit-scrollbar-thumb { background: var(--rh-orange, #FF5E0E); }

.rh-dispatch-card {
  flex: 0 0 280px;
  border: 1px solid rgba(255,94,14,.2);
  text-decoration: none;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  background: #111;
}
.rh-dispatch-card:hover {
  border-color: var(--rh-orange, #FF5E0E);
  transform: translateY(-3px);
}

.rh-dispatch-card__img-wrap { height: 160px; overflow: hidden; }
.rh-dispatch-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.rh-dispatch-card:hover .rh-dispatch-card__img { transform: scale(1.04); }

.rh-dispatch-card__body { padding: 16px; }

.rh-dispatch-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.rh-dispatch-card__loc {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
}

.rh-dispatch-card__rating {
  font-size: .78rem;
  font-weight: 800;
  color: var(--rh-orange, #FF5E0E);
}

.rh-dispatch-card__name {
  font-size: .9rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.rh-dispatch-card__summary {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin: 0 0 10px;
  line-height: 1.5;
}

.rh-dispatch-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}
.rh-dispatch-card__chip {
  background: rgba(255,94,14,.12);
  color: rgba(255,255,255,.7);
  font-size: .68rem;
  padding: 2px 8px;
  font-weight: 700;
  letter-spacing: .04em;
}

.rh-dispatch-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255,94,14,.12);
}
.rh-dispatch-card__phone {
  font-size: .78rem;
  font-weight: 800;
  color: var(--rh-orange, #FF5E0E);
}
.rh-dispatch-card__cta {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
}

/* Emergency strip */
.rh-emergency-strip {
  background: var(--rh-orange, #FF5E0E);
  padding: 24px 0;
}
.rh-emergency-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.rh-emergency-strip__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rh-emergency-strip__text strong {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .08em;
  color: #fff;
  text-transform: uppercase;
}
.rh-emergency-strip__text span {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}

/* State table */
.rh-state-table {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0;
  border-top: 2px solid rgba(13,27,42,.08);
  margin-top: 24px;
}

.rh-state-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(13,27,42,.07);
  border-right: 1px solid rgba(13,27,42,.07);
  text-decoration: none;
  transition: background .15s;
}
.rh-state-row:hover { background: rgba(255,94,14,.05); }

.rh-state-row__name {
  flex: 1;
  font-size: .9rem;
  font-weight: 700;
  color: var(--rh-carbon, #0a0a0a);
}
.rh-state-row__arrow {
  font-size: .9rem;
  color: var(--rh-orange, #FF5E0E);
  font-weight: 900;
}
.rh-state-row__count {
  font-size: .75rem;
  color: rgba(10,10,10,.4);
  font-weight: 600;
}

/* Guide grid */
.rh-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.rh-guide-card {
  background: #fff;
  border: 1.5px solid rgba(10,10,10,.1);
  text-decoration: none;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.rh-guide-card:hover {
  border-color: var(--rh-orange, #FF5E0E);
  transform: translateY(-3px);
}

.rh-guide-card__img-wrap { height: 160px; overflow: hidden; }
.rh-guide-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.rh-guide-card:hover .rh-guide-card__img { transform: scale(1.04); }

.rh-guide-card__body { padding: 18px; }

.rh-guide-card__cat {
  display: inline-block;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rh-orange, #FF5E0E);
  margin-bottom: 6px;
}

.rh-guide-card__title {
  font-size: .95rem;
  font-weight: 800;
  color: var(--rh-carbon, #0a0a0a);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0 0 8px;
  line-height: 1.3;
}

.rh-guide-card__excerpt {
  font-size: .8rem;
  color: rgba(10,10,10,.55);
  line-height: 1.55;
  margin: 0 0 12px;
}

.rh-guide-card__read {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  color: var(--rh-orange, #FF5E0E);
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
  .rh-command__inner { grid-template-columns: 1fr; }
  .rh-command__right { border-left: none; border-top: 1px solid rgba(255,94,14,.2); }
}
@media (max-width: 768px) {
  .rh-guide-grid { grid-template-columns: 1fr; }
  .rh-emergency-strip__inner { flex-direction: column; align-items: flex-start; }
}

/* ====================================================
   TICKER FIX + SERVICE BUTTONS REDESIGN
   ==================================================== */

/* Fix ticker track overflow over the label */
.rh-ticker {
  position: relative;
  overflow: hidden;
}

.rh-ticker__label {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  box-shadow: 4px 0 12px rgba(10,10,10,.8);
}

.rh-ticker__track {
  position: relative;
  z-index: 1;
  min-width: 0;
  /* duplicate content so ticker loops seamlessly */
}

/* Fix: duplicate the track items so the loop is seamless */
.rh-ticker {
  mask-image: linear-gradient(to right, transparent 0%, black 80px, black calc(100% - 80px), transparent 100%);
}

/* Improved service buttons — remove the ugly box, make buttons look like proper tags */
.rh-services-board {
  border: 1px solid rgba(255,94,14,.25);
  padding: 20px;
  background: rgba(255,255,255,.03);
}

.rh-services-board__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.rh-svc-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  transition: all .2s;
  letter-spacing: .02em;
  white-space: nowrap;
}

.rh-svc-btn:hover {
  background: var(--rh-orange, #FF5E0E);
  border-color: var(--rh-orange, #FF5E0E);
  color: #fff;
  transform: none;
}

.rh-svc-btn span {
  font-size: .9rem;
  line-height: 1;
}

/* Ticker vertical centering fix */
.rh-ticker__track {
  display: flex;
  align-items: center;
  height: 100%;
}

.rh-ticker__item,
.rh-ticker__sep {
  display: flex;
  align-items: center;
  line-height: 1;
}
