/* Realify — Hero Banner (dark gradient hero with rating badge) */

.rhero {
  position: relative;
  color: #EDEAD9;
  background:
    radial-gradient(120% 130% at 22% 16%,
      var(--rh-glow, #55672c) 0%,
      #262c1a 42%,
      var(--rh-bg, #0e120a) 100%);
}
.rhero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 78px 28px;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Copy */
.rhero-h {
  margin: 0;
  text-transform: uppercase;
  font-family: var(--realify-font-heading, Archivo), sans-serif;
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.01em;
  font-size: clamp(40px, 5.3vw, 72px);
  color: var(--rh-heading, #EEEBDA);
}
.rhero-sub {
  margin: 22px 0 0;
  max-width: 30ch;
  font-weight: 600;
  line-height: 1.18;
  font-size: clamp(19px, 2.2vw, 30px);
  color: var(--rh-text, #E4E1D0);
}
.rhero-btns { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.rhero-b {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  padding: 15px 32px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.rhero-b1 { background: var(--rh-accent, #CBDE6E); color: var(--rh-accent-ink, #11341F); }
.rhero-b1:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(120, 150, 40, .6); }
.rhero-b2 {
  background: var(--rh-b2, #123318);
  color: var(--rh-accent, #CBDE6E);
  border: 1.5px solid rgba(203, 222, 110, .55);
}
.rhero-b2:hover { transform: translateY(-2px); background: #173f1f; }

/* Media + badge */
.rhero-media { position: relative; }
.rhero-img {
  width: 100%; display: block;
  border-radius: 22px;
  object-fit: cover;
  aspect-ratio: 1.22 / 1;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6);
}
.rhero-badge {
  position: absolute; right: 10px; bottom: -22px;
  background: var(--rh-accent, #CBDE6E);
  color: #11341F;
  border-radius: 16px;
  padding: 12px 22px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 16px 30px -12px rgba(0, 0, 0, .4);
  font-weight: 700;
}
.rhero-rate { text-decoration: underline; font-size: 19px; white-space: nowrap; }
.rhero-stars { display: inline-flex; gap: 3px; }
.rhero-plat { display: inline-flex; align-items: center; gap: 6px; font-size: 17px; white-space: nowrap; }

@media (max-width: 880px) {
  .rhero-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 22px; }
  .rhero-badge { right: 10px; bottom: -18px; padding: 9px 15px; gap: 9px; }
  .rhero-rate { font-size: 15px; } .rhero-plat { font-size: 14px; }
  .rhero-stars svg { width: 18px; height: 18px; }
}
