/* ============================================================
   Rudess — Homepage (modern classy redesign)
   ============================================================ */

/* ── Homepage tokens ───────────────────────────────────────── */
:root {
  --rh-navy:   #1A0B16;   /* dark purple from logo */
  --rh-navy2:  #2a1022;
  --rh-cream:  #FBF5F9;   /* warm pinkish white */
  --rh-gold:   #6B2D5E;   /* deep purple (primary) */
  --rh-gold-l: #CC7870;   /* rose accent */
  --rh-muted:  #9A7A90;
  --rh-line:   rgba(255,255,255,.1);
  --rh-line-d: rgba(26,11,22,.08);
  --rh-ease:   cubic-bezier(.4,0,.2,1);
}

/* ── Shared eyebrow ────────────────────────────────────────── */
.rh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--rdss-font-alt);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rh-gold);
  margin-bottom: 18px;
}
.rh-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--rh-gold);
}
.rh-eyebrow--light { color: rgba(255,255,255,.5); }
.rh-eyebrow--light::before { background: rgba(255,255,255,.3); }
.rh-eyebrow--dark  { color: var(--rh-gold); }

/* ── Display heading ───────────────────────────────────────── */
.rh-display {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--rh-navy);
}
.rh-display--light { color: #fff; }
.rh-display em {
  font-style: italic;
  font-weight: 900;
  color: var(--rh-gold);
}

/* ── Section heading ───────────────────────────────────────── */
.rh-heading {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--rh-navy);
}
.rh-heading--light { color: #fff; }
.rh-heading span { color: var(--rh-gold); }

.rh-body {
  font-size: 16px;
  line-height: 1.8;
  color: #4A5568;
}
.rh-body--light { color: rgba(255,255,255,.65); }

/* ── Buttons ───────────────────────────────────────────────── */
.rh-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all .25s var(--rh-ease);
  cursor: pointer;
  white-space: nowrap;
}
.rh-btn--gold {
  background: var(--rh-gold);
  color: #fff;
  border: 1px solid var(--rh-gold);
}
.rh-btn--gold:hover {
  background: var(--rh-gold-l);
  border-color: var(--rh-gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,135,60,.35);
}
.rh-btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
}
.rh-btn--outline-white:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.7);
}
.rh-btn--outline-dark {
  background: transparent;
  color: var(--rh-navy);
  border: 1px solid rgba(0,0,0,.25);
}
.rh-btn--outline-dark:hover {
  background: var(--rh-navy);
  color: #fff;
  border-color: var(--rh-navy);
}
.rh-btn--text {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  padding: 0;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.rh-btn--text:hover { color: #fff; gap: 14px; }
.rh-btn-arrow {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid currentColor;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s var(--rh-ease);
}
.rh-btn--text:hover .rh-btn-arrow { transform: translateX(4px); }

/* ────────────────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────────────────── */
.rh-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}

/* Left panel */
.rh-hero-left {
  background: var(--rh-navy);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 80px;
  z-index: 2;
}
.rh-hero-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Diagonal cut — right edge of left panel */
.rh-hero-left::before {
  content: '';
  position: absolute;
  top: 0;
  right: -60px;
  width: 120px;
  height: 100%;
  background: var(--rh-navy);
  clip-path: polygon(0 0, 50% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.rh-hero-label {
  position: relative;
  z-index: 2;
}
.rh-hero-title {
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.rh-hero-title em {
  font-style: italic;
  color: var(--rh-gold);
}
.rh-hero-sub {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.6);
  max-width: 440px;
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
}
.rh-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Stats strip */
.rh-hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.rh-hero-stat {
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  margin-right: 24px;
}
.rh-hero-stat:last-child { border-right: none; margin-right: 0; }
.rh-hero-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.03em;
}
.rh-hero-stat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Right panel — photo or gradient */
.rh-hero-right {
  position: relative;
  background: var(--rh-navy2);
  overflow: hidden;
}
.rh-hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Layered gradient fallback */
.rh-hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 60% 30%, rgba(184,135,60,.25) 0%, transparent 60%),
    radial-gradient(ellipse 70% 80% at 20% 80%, rgba(1,112,185,.2)   0%, transparent 60%),
    linear-gradient(160deg, #0B1A2E 0%, #112240 100%);
  z-index: 0;
}
/* Decorative circles */
.rh-hero-right::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(184,135,60,.15);
  box-shadow: inset 0 0 0 80px rgba(184,135,60,.04),
              0 0 0 80px rgba(184,135,60,.03),
              0 0 0 160px rgba(184,135,60,.015);
  z-index: 0;
  pointer-events: none;
}
.rh-hero-right-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
/* If no photo uploaded, show org initials nicely */
.rh-hero-monogram {
  text-align: center;
}
.rh-hero-monogram-letters {
  font-size: 100px;
  font-weight: 900;
  letter-spacing: -.05em;
  color: rgba(255,255,255,.05);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.rh-hero-monogram-name {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,.3);
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* Scroll cue */
.rh-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.3);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.rh-hero-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.25);
  position: relative;
  overflow: hidden;
}
.rh-hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.7);
  animation: rh-slide-line 2s ease infinite;
}
@keyframes rh-slide-line {
  to { left: 100%; }
}

/* ────────────────────────────────────────────────────────────
   ABOUT / WHO WE ARE
──────────────────────────────────────────────────────────── */
.rh-about-section {
  background: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
/* Ghost section number */
.rh-about-section::before {
  content: '01';
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 220px;
  font-weight: 900;
  color: rgba(0,0,0,.025);
  line-height: 1;
  letter-spacing: -.05em;
  pointer-events: none;
  user-select: none;
}

.rh-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image side */
.rh-about-img-wrap {
  position: relative;
}
.rh-about-img-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.rh-about-img-placeholder {
  width: 100%;
  height: 560px;
  background: var(--rh-cream);
  border: 1px solid var(--rh-line-d);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #CBD5E1;
}
.rh-about-img-placeholder svg { opacity: .5; }
.rh-about-img-placeholder p { font-size: 13px; text-align: center; line-height: 1.6; color: #94A3B8; }

/* Accent photo */
.rh-about-img-accent-wrap {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 180px;
  border: 5px solid #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  border-radius: 2px;
  overflow: hidden;
}
.rh-about-img-accent-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Location tag */
.rh-about-tag {
  position: absolute;
  top: 28px;
  left: -16px;
  background: var(--rh-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 20px rgba(184,135,60,.4);
}

/* Text side */
.rh-about-text { }
.rh-vmv-list { display: flex; flex-direction: column; margin-top: 32px; }
.rh-vmv-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rh-line-d);
  align-items: start;
}
.rh-vmv-item:last-child { border-bottom: none; }
.rh-vmv-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rh-gold);
  padding-top: 4px;
}
.rh-vmv-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rh-navy);
  margin-bottom: 6px;
}
.rh-vmv-text { font-size: 15px; color: #4A5568; line-height: 1.75; }

/* Values list */
.rh-values-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; margin-top: 4px; }
.rh-values-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4A5568;
}
.rh-values-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--rh-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ────────────────────────────────────────────────────────────
   PROGRAMS
──────────────────────────────────────────────────────────── */
.rh-programs-section {
  background: var(--rh-cream);
  padding: 120px 0;
  position: relative;
}
.rh-programs-section::before {
  content: '02';
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 220px;
  font-weight: 900;
  color: rgba(0,0,0,.04);
  line-height: 1;
  letter-spacing: -.05em;
  pointer-events: none;
  user-select: none;
}

.rh-programs-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.rh-programs-head-text { max-width: 520px; }

.rh-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,.08);
  border-radius: 2px;
  overflow: hidden;
}

.rh-program-card {
  position: relative;
  background: #fff;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
/* Photo */
.rh-program-photo {
  position: absolute;
  inset: 0;
  background: var(--rh-navy2);
}
.rh-program-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--rh-ease), opacity .4s;
  opacity: .75;
}
.rh-program-card:hover .rh-program-photo img { transform: scale(1.07); opacity: .55; }

/* No-photo placeholder */
.rh-program-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--rh-navy2), #1A3050);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,.2);
  font-size: 12px;
  text-align: center;
  padding: 24px;
}

/* Overlay gradient */
.rh-program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,16,31,.97) 0%, rgba(6,16,31,.5) 50%, rgba(6,16,31,.1) 100%);
  transition: opacity .4s;
}

/* Large ghost number */
.rh-program-num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 64px;
  font-weight: 900;
  color: rgba(255,255,255,.1);
  line-height: 1;
  letter-spacing: -.04em;
  transition: color .3s;
  z-index: 2;
}
.rh-program-card:hover .rh-program-num { color: rgba(184,135,60,.25); }

/* Content */
.rh-program-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 3;
  transform: translateY(0);
}
.rh-program-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rh-gold);
  margin-bottom: 8px;
}
.rh-program-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0;
  transition: margin .3s var(--rh-ease);
}
.rh-program-desc {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s var(--rh-ease), opacity .35s, margin .3s;
}
.rh-program-card:hover .rh-program-title { margin-bottom: 12px; }
.rh-program-card:hover .rh-program-desc { max-height: 120px; opacity: 1; }
.rh-program-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rh-gold);
  margin-top: 16px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s .1s, transform .3s .1s var(--rh-ease);
}
.rh-program-card:hover .rh-program-link { opacity: 1; transform: translateY(0); }

/* ────────────────────────────────────────────────────────────
   SHOP
──────────────────────────────────────────────────────────── */
.rh-shop-section {
  background: #fff;
  padding: 120px 0;
  position: relative;
}
.rh-shop-section::before {
  content: '03';
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 220px;
  font-weight: 900;
  color: rgba(0,0,0,.025);
  line-height: 1;
  letter-spacing: -.05em;
  pointer-events: none;
  user-select: none;
}

.rh-shop-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rh-line-d);
}
.rh-shop-sub-text {
  font-size: 15px;
  color: #6B7280;
  margin-top: 8px;
  max-width: 400px;
  line-height: 1.65;
}

.rh-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.rh-shop-card {
  position: relative;
  background: var(--rh-cream);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .3s var(--rh-ease);
}
.rh-shop-card:hover { transform: translateY(-6px); }
.rh-shop-card:hover .rh-shop-card-actions { opacity: 1; transform: translateY(0); }

.rh-shop-card-img {
  display: block;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.rh-shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--rh-ease);
}
.rh-shop-card:hover .rh-shop-card-img img { transform: scale(1.04); }

.rh-shop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--rh-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.rh-shop-card-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: rgba(6,16,31,.85);
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s var(--rh-ease);
  backdrop-filter: blur(4px);
}
.rh-shop-card-actions a {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px;
  border-radius: 2px;
  transition: background .2s;
}
.rh-shop-card-actions .rh-buy-btn {
  background: var(--rh-gold);
  color: #fff;
}
.rh-shop-card-actions .rh-buy-btn:hover { background: var(--rh-gold-l); }
.rh-shop-card-actions .rh-view-btn {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.rh-shop-card-actions .rh-view-btn:hover { background: rgba(255,255,255,.18); }

.rh-shop-card-body { padding: 18px 16px 20px; }
.rh-shop-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--rh-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.rh-shop-card-name a:hover { color: var(--rh-gold); }
.rh-shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rh-shop-card-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--rh-gold);
  letter-spacing: -.01em;
}

/* Shop empty */
.rh-shop-empty {
  text-align: center;
  padding: 100px 24px;
  background: var(--rh-cream);
  border-radius: 2px;
}
.rh-shop-empty-icon {
  width: 72px;
  height: 72px;
  border: 1px solid var(--rh-line-d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #CBD5E1;
}
.rh-shop-empty h3 { margin-bottom: 10px; font-size: 20px; color: var(--rh-navy); }
.rh-shop-empty p { color: #6B7280; font-size: 15px; margin-bottom: 24px; }

/* ────────────────────────────────────────────────────────────
   TEAM
──────────────────────────────────────────────────────────── */
.rh-team-section {
  background: var(--rh-navy);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.rh-team-section::before {
  content: '04';
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 220px;
  font-weight: 900;
  color: rgba(255,255,255,.025);
  line-height: 1;
  letter-spacing: -.05em;
  pointer-events: none;
  user-select: none;
}
/* Decorative line */
.rh-team-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,135,60,.5), transparent);
}

.rh-team-head {
  text-align: center;
  margin-bottom: 70px;
}

.rh-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255,255,255,.05);
  border-radius: 2px;
  overflow: hidden;
}

.rh-team-card {
  background: rgba(255,255,255,.03);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background .3s;
  border: 1px solid rgba(255,255,255,.04);
}
.rh-team-card:hover { background: rgba(255,255,255,.06); }

.rh-team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 2px solid var(--rh-gold);
  box-shadow: 0 0 0 6px rgba(184,135,60,.1);
  flex-shrink: 0;
}
.rh-team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rh-team-photo-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
}

.rh-team-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.25;
}
.rh-team-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rh-gold);
  margin-bottom: 16px;
}
.rh-team-bio {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}
.rh-team-divider {
  width: 28px;
  height: 1px;
  background: rgba(184,135,60,.5);
  margin: 0 auto 20px;
}
.rh-team-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.rh-team-contact:hover { color: #25d366; }

/* ────────────────────────────────────────────────────────────
   DONATE / CTA
──────────────────────────────────────────────────────────── */
.rh-donate-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0;
}
/* BG photo */
.rh-donate-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.rh-donate-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rh-donate-bg--gradient {
  background: linear-gradient(135deg, #06101F 0%, #0D2140 100%);
}
.rh-donate-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(6,16,31,.97) 0%,
    rgba(6,16,31,.92) 50%,
    rgba(6,16,31,.7)  100%
  );
}
/* Gold top line */
.rh-donate-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--rh-gold), transparent 60%);
  z-index: 2;
}

.rh-donate-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left: text */
.rh-donate-text { }
.rh-donate-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.rh-donate-sub {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 420px;
}
.rh-donate-btns {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Right: stats */
.rh-donate-stats { display: flex; flex-direction: column; gap: 0; }
.rh-donate-stat {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  gap: 24px;
}
.rh-donate-stat:last-child { border-bottom: none; }
.rh-donate-stat-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--rh-gold);
  line-height: 1;
  letter-spacing: -.03em;
  flex-shrink: 0;
  min-width: 100px;
}
.rh-donate-stat-lbl {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
  font-weight: 500;
}
.rh-donate-stat-line {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
}

/* ────────────────────────────────────────────────────────────
   Responsive
──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .rh-hero-left { padding: 100px 56px 70px; }
  .rh-about-grid { gap: 56px; }
  .rh-donate-inner { gap: 50px; }
}
@media (max-width: 900px) {
  /* Hero stacks */
  .rh-hero { grid-template-columns: 1fr; min-height: auto; }
  .rh-hero-left { padding: 100px 32px 60px; }
  .rh-hero-left::before { display: none; }
  .rh-hero-right { height: 340px; }
  .rh-hero-scroll { left: 32px; bottom: 28px; }
  /* About */
  .rh-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .rh-about-img-main, .rh-about-img-placeholder { height: 380px; }
  .rh-about-img-accent-wrap { display: none; }
  .rh-about-tag { left: 0; }
  /* Programs */
  .rh-programs-grid { grid-template-columns: 1fr; gap: 1px; }
  .rh-program-card { aspect-ratio: 16/9; }
  .rh-program-desc { max-height: 100px !important; opacity: 1 !important; }
  .rh-program-link { opacity: 1 !important; transform: translateY(0) !important; }
  .rh-program-title { margin-bottom: 10px !important; }
  /* Shop */
  .rh-shop-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  /* Team */
  .rh-team-grid { grid-template-columns: 1fr; max-width: 420px; }
  /* Donate */
  .rh-donate-inner { grid-template-columns: 1fr; gap: 48px; }
  .rh-donate-stats { flex-direction: row; flex-wrap: wrap; gap: 0; }
  .rh-donate-stat { flex: 1; min-width: 160px; border-bottom: none; border-right: 1px solid rgba(255,255,255,.07); padding: 20px 24px 20px 0; flex-direction: column; align-items: flex-start; gap: 6px; }
  .rh-donate-stat:last-child { border-right: none; }
  .rh-donate-stat-line { display: none; }
  .rh-donate-stat-num { font-size: 32px; min-width: auto; }
}
@media (max-width: 640px) {
  .rh-about-section,
  .rh-programs-section,
  .rh-shop-section,
  .rh-team-section,
  .rh-donate-section { padding: 80px 0; }
  .rh-hero-stats { flex-direction: column; gap: 20px; }
  .rh-hero-stat { border-right: none; margin-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 16px; margin-bottom: 4px; }
  .rh-hero-stat:last-child { border-bottom: none; }
  .rh-shop-grid { grid-template-columns: 1fr; }
  .rh-programs-head { flex-direction: column; align-items: flex-start; }
  .rh-shop-header { flex-direction: column; align-items: flex-start; }
  .rh-donate-stats { flex-direction: column; }
  .rh-donate-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 16px 0; flex-direction: row; align-items: center; }
  .rh-donate-stat:last-child { border-bottom: none; }
}

/* ============================================================
   About Us Page
   ============================================================ */

/* ── About Hero ──────────────────────────────────────────────── */
.rds-about-hero {
  background: var(--rh-navy);
  padding: 100px 0 0;
  overflow: hidden;
  position: relative;
}
.rds-about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(184,135,60,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.rds-about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
}
.rds-about-hero__text {
  padding-bottom: 80px;
}
.rds-about-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rh-gold);
  margin-bottom: 20px;
}
.rds-about-hero__title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--rh-cream);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}
.rds-about-hero__title em {
  font-style: normal;
  color: var(--rh-gold);
}
.rds-about-hero__sub {
  font-size: 17px;
  color: rgba(247,244,239,.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.rds-about-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.rds-about-hero__img {
  position: relative;
  align-self: flex-end;
}
.rds-about-hero__img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.rds-about-hero__placeholder {
  width: 100%;
  height: 520px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(184,135,60,.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.3);
  font-size: 13px;
}
.rds-about-hero__placeholder svg { width: 60px; height: 60px; }

/* Floating stat cards */
.rds-about-float {
  position: absolute;
  background: var(--rh-cream);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.rds-about-float strong {
  font-size: 28px;
  font-weight: 900;
  color: var(--rh-navy);
  line-height: 1;
}
.rds-about-float span {
  font-size: 11px;
  font-weight: 600;
  color: var(--rh-gold);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.rds-about-float--1 { bottom: 80px; left: -28px; }
.rds-about-float--2 { top: 60px;   right: -20px; }

/* ── Mission / Vision cards ─────────────────────────────────── */
.rds-mv-section {
  padding: 80px 20px;
}
.rds-mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rh-line-d);
}
.rds-mv-card {
  padding: 48px 40px;
  border-right: 1px solid var(--rh-line-d);
  position: relative;
}
.rds-mv-card:last-child { border-right: none; }
.rds-mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rh-gold);
  transform: scaleX(0);
  transition: transform .3s var(--rh-ease);
  transform-origin: left;
}
.rds-mv-card:hover::before { transform: scaleX(1); }
.rds-mv-card__icon {
  width: 48px;
  height: 48px;
  color: var(--rh-gold);
  margin-bottom: 20px;
}
.rds-mv-card__icon svg { width: 100%; height: 100%; }
.rds-mv-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--rh-navy);
  margin-bottom: 14px;
  letter-spacing: .01em;
}
.rds-mv-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
}

/* ── Our Story ──────────────────────────────────────────────── */
.rds-story-section {
  background: var(--rh-cream);
  padding: 100px 0;
}
.rds-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.rds-story-img {
  position: relative;
}
.rds-story-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.rds-img-placeholder {
  width: 100%;
  height: 560px;
  background: rgba(6,16,31,.06);
  border: 1px dashed rgba(6,16,31,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(6,16,31,.25);
}
.rds-story-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--rh-navy);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rds-story-badge__num {
  font-size: 36px;
  font-weight: 900;
  color: var(--rh-gold);
  line-height: 1;
  font-family: Georgia, serif;
}
.rds-story-badge__lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.rds-story-content { padding-bottom: 28px; }
.rds-story-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--rh-navy);
  line-height: 1.65;
  margin-bottom: 18px;
}
.rds-story-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}
.rds-story-pillars {
  display: flex;
  gap: 0;
  margin-top: 36px;
  border: 1px solid rgba(6,16,31,.12);
}
.rds-story-pillar {
  flex: 1;
  padding: 20px 18px;
  border-right: 1px solid rgba(6,16,31,.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rds-story-pillar:last-child { border-right: none; }
.rds-story-pillar strong {
  font-size: 13px;
  font-weight: 800;
  color: var(--rh-navy);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.rds-story-pillar span {
  font-size: 12px;
  color: var(--rh-gold);
  font-weight: 500;
}

/* ── Core Values ─────────────────────────────────────────────── */
.rds-values-section {
  background: var(--rh-navy);
  padding: 100px 0;
}
.rds-values-section .rh-section-head h2 { color: var(--rh-cream); }
.rds-values-section .rh-section-head p  { color: rgba(247,244,239,.6); }
.rds-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}
.rds-value-card {
  background: rgba(255,255,255,.02);
  padding: 40px 28px;
  position: relative;
  transition: background .25s;
}
.rds-value-card:hover { background: rgba(255,255,255,.05); }
.rds-value-card__num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  font-family: Georgia, serif;
  line-height: 1;
}
.rds-value-card__icon {
  width: 36px;
  height: 36px;
  color: var(--rh-gold);
  margin-bottom: 16px;
}
.rds-value-card__icon svg { width: 100%; height: 100%; }
.rds-value-card__label {
  font-size: 13px;
  font-weight: 800;
  color: var(--rh-cream);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.rds-value-card__text {
  font-size: 13px;
  color: rgba(247,244,239,.55);
  line-height: 1.7;
}

/* ── About Programs ──────────────────────────────────────────── */
.rds-about-programs {
  background: var(--rh-cream);
  padding: 100px 0;
}
.rds-about-programs .rh-section-head--light h2 { color: var(--rh-navy); }
.rds-about-programs .rh-section-head--light p  { color: #666; }
.rds-about-prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rds-about-prog-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s var(--rh-ease), box-shadow .3s var(--rh-ease);
}
.rds-about-prog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(6,16,31,.12);
}
.rds-about-prog-card__img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.rds-about-prog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--rh-ease);
}
.rds-about-prog-card:hover .rds-about-prog-card__img img { transform: scale(1.06); }
.rds-img-placeholder--dark {
  width: 100%;
  height: 100%;
  background: var(--rh-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
}
.rds-img-placeholder--dark svg { width: 48px; height: 48px; }
.rds-about-prog-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--rh-gold);
  color: var(--rh-navy);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
}
.rds-about-prog-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rds-about-prog-card__body h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--rh-navy);
  margin-bottom: 12px;
}
.rds-about-prog-card__body p {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}
.rds-about-prog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--rh-gold);
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: gap .2s;
}
.rds-about-prog-link:hover { gap: 10px; }

/* ── About Team ──────────────────────────────────────────────── */
.rds-about-team {
  background: #fff;
  padding: 100px 0;
}
.rds-about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
}
.rds-about-team-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: flex-start;
  padding: 36px;
  border: 1px solid var(--rh-line-d);
  transition: border-color .25s, box-shadow .25s;
}
.rds-about-team-card:hover {
  border-color: var(--rh-gold);
  box-shadow: 0 8px 32px rgba(184,135,60,.1);
}
.rds-about-team-card__photo {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border: 3px solid var(--rh-gold);
  flex-shrink: 0;
}
.rds-about-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rds-team-initials {
  width: 100%;
  height: 100%;
  background: var(--rh-navy);
  color: var(--rh-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  font-family: Georgia, serif;
}
.rds-about-team-card__body h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--rh-navy);
  margin-bottom: 4px;
}
.rds-about-team-card__role {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--rh-gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.rds-about-team-card__body p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* ── About CTA ───────────────────────────────────────────────── */
.rds-about-cta {
  background: var(--rh-navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.rds-about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(184,135,60,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.rds-about-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.rds-about-cta__text h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: var(--rh-cream);
  line-height: 1.15;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.rds-about-cta__text p {
  font-size: 16px;
  color: rgba(247,244,239,.65);
  line-height: 1.7;
  margin-bottom: 32px;
}
.rds-about-cta__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.rds-about-cta__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}
.rds-about-cta__stat {
  padding: 32px 28px;
  background: rgba(255,255,255,.02);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rds-about-cta__stat strong {
  font-size: 36px;
  font-weight: 900;
  color: var(--rh-gold);
  font-family: Georgia, serif;
  line-height: 1;
}
.rds-about-cta__stat span {
  font-size: 13px;
  color: rgba(247,244,239,.55);
  line-height: 1.5;
}

/* ── About button variants ───────────────────────────────────── */
.rh-btn--outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(247,244,239,.3);
  color: var(--rh-cream);
  transition: all .25s;
}
.rh-btn--outline-light:hover {
  border-color: var(--rh-gold);
  color: var(--rh-gold);
}

/* ── About Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .rds-values-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .rds-about-hero__inner { grid-template-columns: 1fr; }
  .rds-about-hero__text  { padding-bottom: 0; }
  .rds-about-hero__img   { display: none; }
  .rds-mv-grid { grid-template-columns: 1fr; }
  .rds-mv-card { border-right: none; border-bottom: 1px solid var(--rh-line-d); }
  .rds-mv-card:last-child { border-bottom: none; }
  .rds-story-grid { grid-template-columns: 1fr; gap: 60px; }
  .rds-story-badge { right: 0; bottom: -16px; }
  .rds-about-prog-grid { grid-template-columns: 1fr 1fr; }
  .rds-about-team-grid { grid-template-columns: 1fr; }
  .rds-about-cta__inner { grid-template-columns: 1fr; }
  .rds-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .rds-about-prog-grid { grid-template-columns: 1fr; }
  .rds-about-team-card { grid-template-columns: 1fr; }
  .rds-about-cta__stats { grid-template-columns: 1fr; }
  .rds-values-grid { grid-template-columns: 1fr; }
  .rds-story-pillars { flex-direction: column; }
  .rds-story-pillar { border-right: none; border-bottom: 1px solid rgba(6,16,31,.1); }
}
