/* =============================================================
   Reuben's Stays — Homepage Styles
   Scoped under .rs-home-page (body class set by WordPress)
   Earthy / warm heritage palette
   ============================================================= */

/* ─── Custom Properties ─────────────────────────────────────── */
.rs-home-page {
  --cream:       #F8F3EA;
  --parchment:   #EDE4D0;
  --white:       #FFFFFF;
  --forest:      #24332A;
  --forest-mid:  #375040;
  --sage:        #7B9E83;
  --earth:       #7C4828;
  --gold:        #B8893C;
  --gold-light:  #D4A84E;
  --mist:        #C8D8CB;
  --text:        #1A1A18;
  --text-light:  #5C5C55;
  --text-muted:  #8A8A82;
  --max-w:       1160px;
  --radius:      2px;
  --t-fast:      150ms ease;
  --t-base:      220ms ease;
  --t-slow:      350ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Reset (homepage scope) ────────────────────────────────── */
.rs-home-page {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Override Astra header & footer for this template */
.rs-home-page .site-header,
.rs-home-page .site-footer,
.rs-home-page #masthead,
.rs-home-page #colophon {
  display: none !important;
}

.rs-home-page .site-content,
.rs-home-page #content,
.rs-home-page .ast-container,
.rs-home-page .entry-content {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

.rs-home-page html {
  scroll-behavior: smooth;
}

/* Paper-grain texture overlay */
.rs-home-page body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ─── Accessibility ─────────────────────────────────────────── */
.rs-home-page :focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .rs-home-page *,
  .rs-home-page *::before,
  .rs-home-page *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Layout Utility ────────────────────────────────────────── */
.rh-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.rh-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.rh-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.15;
}

.rh-section-heading em {
  font-style: italic;
  color: var(--earth);
}

/* ─── Scroll Reveal ─────────────────────────────────────────── */
.rs-home-page .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--t-slow), transform 0.65s var(--t-slow);
}
.rs-home-page .reveal.visible { opacity: 1; transform: translateY(0); }
.rs-home-page .reveal-d1 { transition-delay: 0.10s; }
.rs-home-page .reveal-d2 { transition-delay: 0.20s; }
.rs-home-page .reveal-d3 { transition-delay: 0.30s; }

/* ─── Buttons ───────────────────────────────────────────────── */
.rs-home-page .rh-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background var(--t-base), color var(--t-base), transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.rs-home-page .rh-btn-primary {
  background: var(--gold);
  color: var(--forest);
}
.rs-home-page .rh-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,137,60,0.28);
  color: var(--forest);
}

.rs-home-page .rh-btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.38);
  color: rgba(255,255,255,0.88);
}
.rs-home-page .rh-btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.rs-home-page .rh-btn-outline-dark {
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest);
}
.rs-home-page .rh-btn-outline-dark:hover {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ─── Navigation ────────────────────────────────────────────── */
#rh-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.4rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--t-slow), box-shadow var(--t-slow), padding var(--t-slow);
}

#rh-nav.scrolled {
  padding: 1rem 2.5rem;
  background: rgba(36, 51, 42, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 28px rgba(0,0,0,0.22);
}

.rh-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  text-decoration: none;
  flex-shrink: 0;
}

.rh-nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.rh-nav-links a {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--t-fast);
  cursor: pointer;
}
.rh-nav-links a:hover { color: var(--gold); }

.rh-nav-cta {
  padding: 0.55rem 1.3rem !important;
  background: var(--gold) !important;
  color: var(--forest) !important;
  font-weight: 500 !important;
  transition: background var(--t-base) !important;
}
.rh-nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--forest) !important;
}

/* Hamburger */
.rh-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.rh-nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: transform var(--t-base), opacity var(--t-base);
}
.rh-nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.rh-nav-toggle.open span:nth-child(2) { opacity: 0; }
.rh-nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.rh-nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36, 51, 42, 0.98);
  backdrop-filter: blur(12px);
  z-index: 199;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--t-base);
}
.rh-nav-drawer.open { opacity: 1; }
.rh-nav-drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--t-fast);
}
.rh-nav-drawer a:hover { color: var(--gold); }

/* ─── Hero ──────────────────────────────────────────────────── */
.rh-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--forest);
}

.rh-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 28%, rgba(122,158,130,0.20) 0%, transparent 58%),
    radial-gradient(ellipse 50% 60% at 18% 82%, rgba(184,137,60,0.13) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 82% 70%, rgba(36,51,42,0.5) 0%, transparent 60%),
    linear-gradient(160deg, #192B1C 0%, #253328 42%, #1E3025 72%, #14211A 100%);
}

.rh-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.08;
}
.rh-hero-orb-1 {
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
}
.rh-hero-orb-2 {
  bottom: -140px; left: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
}

.rh-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  animation: rhHeroUp 1.1s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes rhHeroUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rh-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.5rem;
  animation: rhHeroUp 1.1s 0.12s cubic-bezier(0.22,1,0.36,1) both;
}

.rh-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8.5vw, 7.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  animation: rhHeroUp 1.1s 0.22s cubic-bezier(0.22,1,0.36,1) both;
}
.rh-hero-title em { font-style: italic; color: var(--sage); }

.rh-hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2.4vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  animation: rhHeroUp 1.1s 0.32s cubic-bezier(0.22,1,0.36,1) both;
}

.rh-hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.8rem;
  letter-spacing: 0.01em;
  animation: rhHeroUp 1.1s 0.38s cubic-bezier(0.22,1,0.36,1) both;
}

.rh-hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: rhHeroUp 1.1s 0.46s cubic-bezier(0.22,1,0.36,1) both;
}

.rh-hero-trust {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  z-index: 2;
  white-space: nowrap;
  animation: rhHeroUp 1.1s 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
.rh-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.rh-trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.rh-trust-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.rh-trust-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  align-self: center;
}

.rh-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: rhHeroUp 1.1s 0.9s cubic-bezier(0.22,1,0.36,1) both;
  z-index: 2;
}
.rh-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.38), transparent);
  animation: rhScrollPulse 2.2s ease-in-out infinite;
}
@keyframes rhScrollPulse {
  0%, 100% { opacity: 0.38; transform: scaleY(1); }
  50%       { opacity: 0.9;  transform: scaleY(1.12); }
}

/* ─── Story ─────────────────────────────────────────────────── */
.rh-story {
  padding: 9rem 0 8rem;
  background: var(--cream);
}
.rh-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 5rem;
  align-items: center;
}
.rh-story-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--forest);
}
.rh-story-heading em { font-style: italic; color: var(--earth); }

.rh-story-text {
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.88;
  color: var(--text-light);
  margin-bottom: 1.3rem;
}
.rh-story-text strong { color: var(--text); font-weight: 500; }

.rh-story-badges {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--parchment);
}
.rh-badge {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.rh-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}
.rh-badge-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.rh-badge-sep {
  width: 1px;
  height: 44px;
  background: var(--parchment);
  margin: 0 2rem;
  flex-shrink: 0;
}

/* ─── Units Overview ────────────────────────────────────────── */
.rh-units-overview {
  padding: 0 0 9rem;
  background: var(--cream);
}
.rh-units-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.rh-units-header h2 { margin-bottom: 0.8rem; }
.rh-units-header p {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.75;
}
.rh-units-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.rh-unit-card {
  position: relative;
  background: var(--forest);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}
.rh-unit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}

.rh-unit-card-img {
  height: 300px;
  position: relative;
  overflow: hidden;
}
.rh-unit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--t-slow);
}
.rh-unit-card:hover .rh-unit-card-img img { transform: scale(1.04); }

.rh-unit-card-img.serenity-bg {
  background: linear-gradient(160deg, #2C4A35 0%, #3A5A42 50%, #1E3A28 100%);
}
.rh-unit-card-img.colonial-bg {
  background: linear-gradient(160deg, #3A2E1E 0%, #4A3828 50%, #2A2018 100%);
}

.rh-unit-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(36,51,42,0.1) 0%, rgba(36,51,42,0.7) 100%);
}

.rh-unit-card-tag {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(36,51,42,0.55);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.7rem;
}

.rh-unit-rating-badge {
  position: absolute;
  bottom: 1.2rem; right: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
}

.rh-unit-card-body { padding: 1.8rem 2rem 2rem; }

.rh-unit-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.1;
}

.rh-unit-card-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.rh-unit-specs {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1.1rem 0;
  margin-bottom: 1.6rem;
}
.rh-spec {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}
.rh-spec + .rh-spec {
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 1rem;
}
.rh-spec-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.rh-spec-key {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.rh-unit-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
}
.rh-amenity-chip {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  padding: 0.28rem 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.rh-amenity-chip svg { flex-shrink: 0; opacity: 0.7; }

.rh-unit-card-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}
.rh-unit-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.rh-unit-cta-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.65);
}
.rh-unit-cta-secondary:hover {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.rh-unit-cta-primary {
  background: var(--gold);
  color: var(--forest);
  border: 1px solid transparent;
}
.rh-unit-cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,137,60,0.38);
  color: var(--forest);
}

/* ─── Unit Detail Sections ──────────────────────────────────── */
.rh-unit-detail { padding: 8.5rem 0; }
.rh-unit-detail-serenity { background: var(--parchment); }
.rh-unit-detail-colonial { background: var(--forest); }

.rh-unit-number {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.85rem;
}
.rh-unit-detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.04;
  margin-bottom: 1.2rem;
}
.rh-unit-detail-serenity .rh-unit-detail-title { color: var(--forest); }
.rh-unit-detail-colonial .rh-unit-detail-title { color: #fff; }
.rh-unit-detail-serenity .rh-unit-detail-title em { font-style: italic; color: var(--earth); }
.rh-unit-detail-colonial .rh-unit-detail-title em { font-style: italic; color: var(--sage); }

.rh-unit-detail-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 4rem;
}
.rh-unit-detail-serenity .rh-unit-detail-intro { color: var(--text-light); }
.rh-unit-detail-colonial .rh-unit-detail-intro { color: rgba(255,255,255,0.55); }

.rh-unit-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: start;
}

.rh-unit-photo { position: relative; overflow: hidden; }
.rh-unit-photo-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  cursor: pointer;
}
.rh-unit-photo-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 4px;
}
.rh-unit-photo-thumbs img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: opacity var(--t-base);
}
.rh-unit-photo-thumbs img:hover { opacity: 0.85; }

.rh-unit-photo-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
}

.rh-unit-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  margin-top: 2.2rem;
}
.rh-unit-info h3:first-child { margin-top: 0; }
.rh-unit-detail-serenity .rh-unit-info h3 { color: var(--forest); }
.rh-unit-detail-colonial .rh-unit-info h3 { color: #fff; }

.rh-unit-info p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.82;
  margin-bottom: 0.8rem;
}
.rh-unit-detail-serenity .rh-unit-info p { color: var(--text-light); }
.rh-unit-detail-colonial .rh-unit-info p { color: rgba(255,255,255,0.55); }

/* ─── Reviews ───────────────────────────────────────────────── */
.rh-reviews {
  padding: 8rem 0;
  background: var(--cream);
}
.rh-reviews-header {
  text-align: center;
  margin-bottom: 4rem;
}
.rh-reviews-header h2 { margin-bottom: 0.6rem; }
.rh-reviews-header p {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 300;
}

.rh-ratings-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto 4rem;
}
.rh-rating-card {
  background: var(--white);
  padding: 2rem;
  box-shadow: 0 3px 24px rgba(0,0,0,0.06);
  border-top: 2px solid var(--sage);
}
.rh-rating-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.4rem;
}
.rh-rating-stars {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
  letter-spacing: 0.08em;
}
.rh-rating-count {
  font-size: 0.73rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.rh-rating-breakdown { display: flex; flex-direction: column; gap: 0.45rem; }
.rh-rb-row { display: flex; align-items: center; gap: 0.75rem; }
.rh-rb-label { font-size: 0.71rem; color: var(--text-light); width: 95px; flex-shrink: 0; }
.rh-rb-bar {
  flex: 1; height: 3px;
  background: var(--parchment);
  position: relative; border-radius: 2px;
}
.rh-rb-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  background: var(--sage);
  border-radius: 2px;
}
.rh-rb-score { font-size: 0.71rem; color: var(--text-muted); width: 26px; text-align: right; flex-shrink: 0; }

.rh-reviews-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.rh-review-quote {
  background: var(--parchment);
  padding: 1.8rem;
  transition: box-shadow var(--t-base), transform var(--t-base);
  cursor: default;
}
.rh-review-quote:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.rh-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 0.5;
  color: var(--sage);
  margin-bottom: 1rem;
  display: block;
  opacity: 0.7;
}
.rh-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.72;
  margin-bottom: 1rem;
}
.rh-quote-author {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Good to Know ──────────────────────────────────────────── */
.rh-know {
  padding: 6.5rem 0;
  background: var(--parchment);
}
.rh-know-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.rh-know-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--forest);
}
.rh-know-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.rh-know-card {
  background: var(--white);
  padding: 1.8rem;
  border-top: 2px solid var(--sage);
  transition: box-shadow var(--t-base), transform var(--t-base);
  cursor: default;
}
.rh-know-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.rh-know-icon {
  width: 36px; height: 36px;
  color: var(--forest-mid);
  margin-bottom: 1rem;
}
.rh-know-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.rh-know-text {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.68;
}

/* ─── Footer ────────────────────────────────────────────────── */
.rh-footer {
  background: var(--forest);
  padding: 5rem 0 2.5rem;
}
.rh-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.rh-footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1;
}
.rh-footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.42);
  line-height: 1.72;
  margin-bottom: 1.6rem;
}
.rh-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.06);
  padding: 0.5rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.rh-footer-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.rh-footer-col h4 {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
}
.rh-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0; padding: 0;
}
.rh-footer-col ul li {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.rh-footer-col ul li a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}
.rh-footer-col ul li a:hover { color: var(--gold); }

.rh-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.rh-footer-copy { font-size: 0.73rem; color: rgba(255,255,255,0.22); }
.rh-footer-eco {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.rh-footer-eco svg { width: 14px; height: 14px; color: var(--sage); opacity: 0.7; }

.rh-footer-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-top: 0.6rem;
  transition: color var(--t-fast);
}
.rh-footer-phone:hover { color: var(--gold); }
.rh-footer-phone svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.7; }

.rh-footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}
.rh-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color var(--t-base), color var(--t-base), background var(--t-base);
}
.rh-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,137,60,0.08);
}
.rh-social-link svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .rh-know-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  #rh-nav { padding: 1.1rem 1.5rem; }
  .rh-nav-links { display: none; }
  .rh-nav-toggle { display: flex; }

  .rh-hero-trust { display: none; }

  .rh-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .rh-units-cards { grid-template-columns: 1fr; }
  .rh-unit-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
  .rh-ratings-row { grid-template-columns: 1fr; }
  .rh-reviews-quotes { grid-template-columns: 1fr; }
  .rh-footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-height: 700px) {
  .rh-hero-content { padding: 1.2rem; }
  .rh-hero-title { font-size: 3.5rem; }
  .rh-hero-eyebrow { margin-bottom: 0.8rem; }
  .rh-hero-tagline { font-size: 1.1rem; margin-bottom: 0.5rem; }
  .rh-hero-headline { font-size: 1.1rem; margin-bottom: 1.5rem; }
}

@media (max-width: 600px) {
  .rh-know-grid { grid-template-columns: 1fr; }
  .rh-inner { padding: 0 1.2rem; }
  .rh-unit-card-body { padding: 1.4rem; }
  .rh-story-badges { flex-direction: column; gap: 1.2rem; }
  .rh-badge-sep { display: none; }
  .rh-hero-ctas { flex-direction: column; align-items: center; }
}
