/* ============================================================
   RHCP Child Theme — Master Design Overrides & Custom Styles
   Maroon (#800000) | White | Ink (#101010) | Muted (#6b7280)
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   CSS VARIABLES
────────────────────────────────────────────────────────── */
:root {
  --rhcp-maroon:       #800000;
  --rhcp-maroon-dark:  #5a0000;
  --rhcp-maroon-light: #a00000;
  --rhcp-white:        #ffffff;
  --rhcp-ink:          #101010;
  --rhcp-muted:        #6b7280;
  --rhcp-line:         #e5e7eb;
  --rhcp-bg:           #f9fafb;
  --rhcp-shadow:       0 8px 24px rgba(0,0,0,.10);
  --rhcp-shadow-lg:    0 16px 40px rgba(0,0,0,.14);
  --rhcp-radius:       16px;
  --rhcp-radius-sm:    10px;
  --rhcp-transition:   all .22s ease;
  --rhcp-font-head:    'Oswald', system-ui, sans-serif;
  --rhcp-font-body:    'Open Sans', system-ui, sans-serif;
}

/* ──────────────────────────────────────────────────────────
   BASE RESETS & TYPOGRAPHY
────────────────────────────────────────────────────────── */
body {
  font-family: var(--rhcp-font-body);
  color: var(--rhcp-ink);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--rhcp-font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--rhcp-ink);
  margin-top: 0;
}
a { color: var(--rhcp-maroon); text-decoration: none; transition: color .18s; }
a:hover { color: var(--rhcp-maroon-dark); }
img { max-width: 100%; height: auto; display: block; }
*, *::before, *::after { box-sizing: border-box; }

/* ──────────────────────────────────────────────────────────
   PARENT THEME OVERRIDES
────────────────────────────────────────────────────────── */

/* boxed_wrapper overflow:hidden !important clips the hero — remove it */
.boxed_wrapper {
  overflow: visible !important;
  background: transparent !important;
}

/* ──────────────────────────────────────────────────────────
   PRELOADER — completely hidden
────────────────────────────────────────────────────────── */
.loader-wrap, .preloader {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ──────────────────────────────────────────────────────────
   RTL / DIRECTION SWITCHER — remove in production
────────────────────────────────────────────────────────── */
.page_direction { display: none !important; }

/* ──────────────────────────────────────────────────────────
   SCROLL-TO-TOP BUTTON
────────────────────────────────────────────────────────── */
.scroll-top {
  background: var(--rhcp-maroon) !important;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--rhcp-shadow);
  transition: var(--rhcp-transition);
}
.scroll-top:hover { background: var(--rhcp-maroon-dark) !important; transform: translateY(-2px); }

/* ──────────────────────────────────────────────────────────
   TOP BAR (contact strip above main header)
────────────────────────────────────────────────────────── */
.rhcp-topbar {
  background: #120000;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 101;
}
.rhcp-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  height: 42px;
}
.rhcp-topbar-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.5vw, 28px);
  flex-wrap: wrap;
}
.rhcp-topbar-info li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
}
.rhcp-topbar-info li svg {
  width: 13px;
  height: 13px;
  stroke: var(--rhcp-maroon-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.rhcp-topbar-info li a {
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 500;
  transition: color .18s;
}
.rhcp-topbar-info li a:hover { color: #fff; }
.rhcp-topbar-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.rhcp-topbar-social li a {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  font-size: 11px;
  transition: var(--rhcp-transition);
}
.rhcp-topbar-social li a:hover {
  background: var(--rhcp-maroon-light);
  color: #fff;
}

/* ──────────────────────────────────────────────────────────
   NAVIGATION — main header redesign
────────────────────────────────────────────────────────── */

/* All pages: in-flow header, white background */
.main-header {
  background: #ffffff !important;
  border-bottom: 2px solid var(--rhcp-maroon) !important;
  transition: background .35s ease, box-shadow .35s ease;
  position: relative !important;
  z-index: 999;
  width: 100%;
}
.main-header.fixed-header {
  background: #ffffff !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 2px 16px rgba(0,0,0,.12);
}

/* New header inner layout */
.rhcp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  height: 76px;
}
.rhcp-logo a, .rhcp-logo img { display: block; }
.rhcp-logo img { max-height: 62px; width: auto; }

/* Desktop nav */
.rhcp-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.rhcp-nav #rhcp-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(2px, .7vw, 12px);
  flex-wrap: nowrap;
}
.rhcp-nav #rhcp-nav-list > li {
  position: relative;
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}
.rhcp-nav #rhcp-nav-list > li > a {
  font-family: var(--rhcp-font-head);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rhcp-ink);
  padding: 0 10px;
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.1;
  transition: color .18s;
  white-space: nowrap;
}
.rhcp-nav #rhcp-nav-list > li > a:hover,
.rhcp-nav #rhcp-nav-list > li.current-menu-item > a,
.rhcp-nav #rhcp-nav-list > li.current-menu-ancestor > a { color: var(--rhcp-maroon); }
.rhcp-nav #rhcp-nav-list > li.menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  opacity: .72;
  transition: transform .18s ease, opacity .18s ease;
}
.rhcp-nav #rhcp-nav-list > li:hover > a::after,
.rhcp-nav #rhcp-nav-list > li:focus-within > a::after {
  opacity: 1;
  transform: translateY(1px) rotate(45deg);
}

/* Dropdown — > ul matches .submenu and .sub-menu; both are ul elements */
.rhcp-nav #rhcp-nav-list > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  max-width: 320px;
  background: #fff;
  border-top: 3px solid var(--rhcp-maroon);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .16);
  list-style: none;
  margin: 0;
  padding: 10px 0;
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 200;
}
.rhcp-nav #rhcp-nav-list > li:hover > ul,
.rhcp-nav #rhcp-nav-list > li:focus-within > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Kill any parent-theme nav defaults that may show submenus */
.navigation .submenu,
.navigation .sub-menu { display: none; }
.navigation li:hover > .submenu,
.navigation li:hover > .sub-menu { display: block; }
.rhcp-nav .dropdown-btn,
.sticky-header .dropdown-btn,
.mobile-menu .dropdown-btn {
  display: none !important;
}
.rhcp-nav #rhcp-nav-list > li > ul > li {
  margin: 0;
}
.rhcp-nav #rhcp-nav-list > li > ul > li > a {
  font-family: var(--rhcp-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--rhcp-ink);
  display: block;
  padding: 12px 18px;
  border-bottom: 1px solid var(--rhcp-line);
  transition: var(--rhcp-transition);
  text-transform: none;
  letter-spacing: .01em;
  line-height: 1.4;
}
.rhcp-nav #rhcp-nav-list > li > ul > li:last-child > a { border-bottom: none; }
.rhcp-nav #rhcp-nav-list > li > ul > li > a:hover {
  color: var(--rhcp-maroon);
  background: #fff7f7;
  padding-left: 24px;
}

/* Legacy nav class support */
.main-menu .navigation > li > a {
  font-family: var(--rhcp-font-head);
  font-size: 13px !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rhcp-ink) !important;
  padding: 0 10px !important;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.1 !important;
  transition: color .18s;
  white-space: nowrap;
}
.main-menu .navigation > li > a:hover,
.main-menu .navigation > li.current-menu-item > a,
.main-menu .navigation > li.current-menu-ancestor > a { color: var(--rhcp-maroon) !important; }
.main-menu .navigation > li {
  display: flex;
  align-items: stretch;
  margin: 0 8px !important;
}
.main-menu .navigation > li.menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  opacity: .72;
  transition: transform .18s ease, opacity .18s ease;
}
.main-menu .navigation > li:hover > a::after,
.main-menu .navigation > li:focus-within > a::after {
  opacity: 1;
  transform: translateY(1px) rotate(45deg);
}
.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu {
  background: #fff;
  border-top: 3px solid var(--rhcp-maroon);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .16);
  min-width: 240px;
  padding: 10px 0;
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.main-menu .navigation > li:hover > ul,
.main-menu .navigation > li:hover > .megamenu,
.main-menu .navigation > li:focus-within > ul,
.main-menu .navigation > li:focus-within > .megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.main-menu .navigation > li > ul > li > a {
  font-size: 13px !important;
  font-weight: 600;
  color: var(--rhcp-ink);
  text-transform: none;
  letter-spacing: .01em;
  padding: 12px 18px !important;
  border-bottom: 1px solid var(--rhcp-line);
}
.main-menu .navigation > li > ul > li > a:hover {
  color: var(--rhcp-maroon);
  background: #fff7f7;
  padding-left: 24px !important;
}
.main-menu .navigation > li > ul > li:last-child > a { border-bottom: none; }

/* Header logo sizing (legacy) */
.header-left .logo { padding: 16px 0; }
.header-left .logo img { max-height: 64px; width: auto; }
.sticky-header .logo img { max-height: 48px; }

/* Donate / CTA button in header */
.rhcp-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--rhcp-maroon);
  border: 1.5px solid var(--rhcp-maroon);
  border-radius: 999px;
  color: #fff;
  font-family: var(--rhcp-font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: var(--rhcp-transition);
  white-space: nowrap;
}
.rhcp-header-btn:hover {
  background: var(--rhcp-maroon-dark);
  border-color: var(--rhcp-maroon-dark);
  color: #fff;
}
.header-right_buttom {
  margin-left: 24px !important;
  padding-left: 24px !important;
  border-left: 1px solid var(--rhcp-line);
}
.header-right_buttom a {
  font-family: var(--rhcp-font-head);
  font-size: 13px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff !important;
  line-height: 1 !important;
  padding: 10px 18px !important;
  background: var(--rhcp-maroon);
  border-radius: 999px;
  border: 1.5px solid var(--rhcp-maroon);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--rhcp-transition);
}
.header-right_buttom a:hover {
  background: var(--rhcp-maroon-dark) !important;
  border-color: var(--rhcp-maroon-dark) !important;
  color: #fff !important;
}

/* Header actions container */
.rhcp-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger toggle button */
.rhcp-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .18s;
  align-items: center;
  justify-content: center;
}
.rhcp-mobile-toggle:hover { background: rgba(0,0,0,.08); }
.rhcp-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.rhcp-burger span {
  display: block;
  height: 2px;
  background: var(--rhcp-ink);
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s;
}
.rhcp-mobile-toggle[aria-expanded="true"] .rhcp-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.rhcp-mobile-toggle[aria-expanded="true"] .rhcp-burger span:nth-child(2) { opacity: 0; }
.rhcp-mobile-toggle[aria-expanded="true"] .rhcp-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Sticky header */
.sticky-header .rhcp-header-inner { height: 60px; }
.sticky-header .rhcp-logo img { max-height: 46px; }

/* Mobile menu base */
.mobile-menu {
  background: var(--rhcp-maroon);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}
.mobile-menu.open { display: block; }
.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}
.menu-box {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 90vw);
  height: 100%;
  background: var(--rhcp-maroon);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.rhcp-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  flex-shrink: 0;
}
.rhcp-mobile-header .nav-logo img { max-height: 50px; }
.rhcp-mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.7);
  font-size: 22px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--rhcp-transition);
}
.rhcp-mobile-close:hover { background: rgba(255,255,255,.15); color: #fff; }
.menu-outer { flex: 1; }
.mobile-menu .menu-box ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu .menu-box ul li a {
  color: rgba(255,255,255,.9);
  font-family: var(--rhcp-font-head);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 13px 20px;
  display: block;
  transition: var(--rhcp-transition);
}
.mobile-menu .menu-box ul li a:hover { color: #ffd700; background: rgba(255,255,255,.06); }
.mobile-menu .close-btn { color: rgba(255,255,255,.7); font-size: 22px; }

/* Mobile quick contact + donate */
.rhcp-mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-shrink: 0;
}
.rhcp-mobile-contact a {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .18s;
}
.rhcp-mobile-contact a:hover { color: #fff; }
.rhcp-mobile-donate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 999px;
  color: #fff;
  font-family: var(--rhcp-font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: var(--rhcp-transition);
  width: fit-content;
}
.rhcp-mobile-donate:hover { background: #fff; color: var(--rhcp-maroon); }

/* ──────────────────────────────────────────────────────────
   BREADCRUMB / INNER PAGE BANNER
────────────────────────────────────────────────────────── */
.breadcrumb-area {
  background: var(--rhcp-maroon);
  min-height: 180px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.breadcrumb-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.45) 0%, rgba(128,0,0,.6) 100%);
}
.breadcrumb-area .inner-content { position: relative; z-index: 2; }
.breadcrumb-area h2 {
  font-family: var(--rhcp-font-head);
  font-size: clamp(26px, 4vw, 40px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ──────────────────────────────────────────────────────────
   FOOTER — improved
────────────────────────────────────────────────────────── */
.footer-area {
  background: #1a0000 !important;
  color: rgba(255,255,255,.75);
}
.footer-area .footer {
  background: #1a0000;
  padding: 60px 0 30px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-area .title h3 {
  font-family: var(--rhcp-font-head);
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  position: relative;
}
.footer-area .title h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--rhcp-maroon-light);
}
.footer-area .footer-bottom {
  background: #120000;
  padding: 20px 0;
}
.footer-area .copyright-text p {
  color: rgba(255,255,255,.55);
  font-size: 13px;
}
.footer-logo img { max-height: 52px; margin: 0 auto 12px; }

/* ──────────────────────────────────────────────────────────
   RHCP HOMEPAGE: HERO
────────────────────────────────────────────────────────── */
.rhcp-hero {
  position: relative;
  width: 100%;
  height: clamp(620px, 100vh, 980px);
  overflow: hidden;
  background: #0a0000;
  isolation: isolate;
}

.rhcp-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.rhcp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease, visibility 0s .9s;
  z-index: 0;
}
.rhcp-slide.active {
  opacity: 1;
  visibility: visible;
  transition: opacity .9s ease;
  z-index: 1;
}
.rhcp-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

/* Gradient overlay — stronger so hero text stays readable */
.rhcp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.45) 0%,
    rgba(0,0,0,.30) 40%,
    rgba(0,0,0,.65) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Hero text + CTA overlay — centred over the slides */
.rhcp-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: clamp(96px, 14vh, 150px) clamp(20px, 6vw, 100px) clamp(92px, 12vh, 128px);
  z-index: 2;
}
.rhcp-hero-content {
  width: min(100%, 900px);
  max-width: 900px;
  animation: rhcpHeroFade .9s ease both;
}
.rhcp-hero-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.rhcp-hero-title {
  font-family: var(--rhcp-font-head);
  font-size: clamp(34px, 6.5vw, 76px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1;
  margin: 0 0 22px;
  text-shadow: 0 3px 24px rgba(0,0,0,.45);
  text-wrap: balance;
}
.rhcp-hero-subtitle {
  font-size: clamp(16px, 1.7vw, 20px);
  color: rgba(255,255,255,.88);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
}
/* CTA buttons — in-flow inside the overlay */
.rhcp-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}
@keyframes rhcpHeroFade {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .rhcp-hero-content { animation: none; opacity: 1; transform: none; }
}

/* Slide dots */
.rhcp-hero-nav {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(15,15,15,.18);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
}
.rhcp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.34);
  cursor: pointer;
  padding: 0;
  transition: var(--rhcp-transition);
}
.rhcp-dot:hover { background: rgba(255,255,255,.62); transform: scale(1.08); }
.rhcp-dot.active { background: #fff; width: 28px; border-radius: 999px; }

/* ──────────────────────────────────────────────────────────
   RHCP BUTTONS (shared across all sections)
────────────────────────────────────────────────────────── */
.rhcp-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--rhcp-font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: var(--rhcp-transition);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.rhcp-btn svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rhcp-btn-primary {
  background: var(--rhcp-maroon);
  color: #fff;
  border-color: var(--rhcp-maroon);
  box-shadow: 0 6px 20px rgba(128,0,0,.35);
}
.rhcp-btn-primary:hover {
  background: var(--rhcp-maroon-dark);
  border-color: var(--rhcp-maroon-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(128,0,0,.4);
}
.rhcp-btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
}
.rhcp-btn-ghost:hover {
  background: #fff;
  color: var(--rhcp-maroon);
  border-color: #fff;
  transform: translateY(-2px);
}
.rhcp-btn-outline {
  background: transparent;
  color: var(--rhcp-maroon);
  border-color: var(--rhcp-maroon);
}
.rhcp-btn-outline:hover {
  background: var(--rhcp-maroon);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128,0,0,.25);
}
.rhcp-btn-text {
  background: transparent;
  color: var(--rhcp-maroon);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.rhcp-btn-text:hover { color: var(--rhcp-maroon-dark); gap: 14px; }
.rhcp-btn-white {
  background: #fff;
  color: var(--rhcp-maroon);
  border-color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.rhcp-btn-white:hover {
  background: #f5e9e9;
  transform: translateY(-2px);
}
.rhcp-btn-ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.65);
}
.rhcp-btn-ghost-white:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────────────────────
   RHCP SECTION COMMON
────────────────────────────────────────────────────────── */
.rhcp-section { padding: clamp(56px, 7vw, 96px) 0; }
.rhcp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}
.rhcp-section-header {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.rhcp-section-header .rhcp-section-head { margin-bottom: 12px; }
.rhcp-section-sub {
  font-size: 17px;
  color: var(--rhcp-muted);
  max-width: 600px;
  margin: 0 auto;
}
.rhcp-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--rhcp-maroon);
  background: rgba(128,0,0,.07);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.rhcp-section-head {
  font-family: var(--rhcp-font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--rhcp-ink);
  margin-bottom: 16px;
  line-height: 1.2;
}
.rhcp-lead {
  font-size: 17px;
  color: #374151;
  line-height: 1.75;
  max-width: 700px;
}

/* ──────────────────────────────────────────────────────────
   ABOUT SECTION
────────────────────────────────────────────────────────── */
.rhcp-about { background: var(--rhcp-bg); }
.rhcp-cols-2 { display: grid; gap: clamp(32px, 5vw, 64px); }
.rhcp-cols-about { grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 900px) { .rhcp-cols-about { grid-template-columns: 1fr; } }

.rhcp-about-text .rhcp-kicker { margin-bottom: 14px; }
.rhcp-about-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* Stats grid */
.rhcp-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rhcp-stat-card {
  background: #fff;
  border: 1px solid var(--rhcp-line);
  border-radius: var(--rhcp-radius);
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--rhcp-shadow);
  transition: var(--rhcp-transition);
}
.rhcp-stat-card:hover { transform: translateY(-3px); box-shadow: var(--rhcp-shadow-lg); }
.rhcp-stat-icon {
  width: 44px; height: 44px;
  background: rgba(128,0,0,.08);
  border-radius: 10px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.rhcp-stat-icon svg {
  width: 22px; height: 22px;
  stroke: var(--rhcp-maroon);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rhcp-stat-body { display: flex; flex-direction: column; min-width: 0; }
.rhcp-stat-num {
  font-family: var(--rhcp-font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--rhcp-maroon);
  line-height: 1.1;
}
.rhcp-stat-label {
  font-size: 12px;
  color: var(--rhcp-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 3px;
}

/* ──────────────────────────────────────────────────────────
   MESSAGE SECTION
────────────────────────────────────────────────────────── */
.rhcp-message { background: #fff; }
.rhcp-msg-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  background: var(--rhcp-bg);
  border: 1px solid var(--rhcp-line);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--rhcp-shadow);
}
@media (max-width: 900px) { .rhcp-msg-card { grid-template-columns: 1fr; } }

.rhcp-msg-media {
  position: relative;
  border-radius: var(--rhcp-radius);
  overflow: hidden;
  box-shadow: var(--rhcp-shadow-lg);
  background: #e5e7eb;
}
.rhcp-msg-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.rhcp-msg-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--rhcp-maroon);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 14px;
  border-radius: 999px;
}

.rhcp-quote {
  border-left: 4px solid var(--rhcp-maroon);
  margin: 16px 0 20px;
  padding-left: 18px;
  font-style: italic;
  color: #374151;
  line-height: 1.75;
}
.rhcp-quote p { margin-bottom: 12px; font-size: 16px; }
.rhcp-quote p:last-child { margin-bottom: 0; }
.rhcp-signature { margin-top: 20px; }
.rhcp-signature strong {
  display: block;
  font-family: var(--rhcp-font-head);
  font-size: 18px;
  color: var(--rhcp-ink);
}
.rhcp-signature span {
  display: block;
  font-size: 13px;
  color: var(--rhcp-muted);
  margin-top: 4px;
}

/* ──────────────────────────────────────────────────────────
   PROGRAMMES SECTION
────────────────────────────────────────────────────────── */
.rhcp-programs { background: var(--rhcp-bg); }

.rhcp-prog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 3vw, 28px);
}
@media (max-width: 768px) { .rhcp-prog-grid { grid-template-columns: 1fr; } }

.rhcp-prog-box {
  background: #fff;
  border: 1px solid var(--rhcp-line);
  border-radius: var(--rhcp-radius);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--rhcp-shadow);
  transition: var(--rhcp-transition);
  position: relative;
  overflow: hidden;
}
.rhcp-prog-box::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--rhcp-maroon);
  border-radius: 5px 0 0 5px;
}
.rhcp-prog-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--rhcp-shadow-lg);
  border-color: rgba(128,0,0,.2);
}

.rhcp-prog-icon {
  width: 48px; height: 48px;
  background: rgba(128,0,0,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.rhcp-prog-icon svg {
  width: 24px; height: 24px;
  stroke: var(--rhcp-maroon);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rhcp-prog-box h3 {
  font-family: var(--rhcp-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--rhcp-ink);
  margin-bottom: 6px;
}
.rhcp-prog-desc {
  font-size: 14px;
  color: var(--rhcp-muted);
  margin-bottom: 18px;
  margin-top: 0;
}

/* Programme link list */
.rhcp-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.rhcp-link-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 14px;
  background: var(--rhcp-bg);
  border: 1px solid var(--rhcp-line);
  border-radius: var(--rhcp-radius-sm);
  color: var(--rhcp-ink);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: var(--rhcp-transition);
}
.rhcp-link-list li a span {
  color: var(--rhcp-maroon);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: transform .15s;
}
.rhcp-link-list li a:hover {
  background: var(--rhcp-maroon);
  border-color: var(--rhcp-maroon);
  color: #fff;
  transform: translateX(3px);
}
.rhcp-link-list li a:hover span { color: #fff; transform: translateX(4px); }

/* ──────────────────────────────────────────────────────────
   DONATE BANNER
────────────────────────────────────────────────────────── */
.rhcp-donate {
  background: linear-gradient(135deg, var(--rhcp-maroon) 0%, #4a0000 100%);
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.rhcp-donate::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.rhcp-donate-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.rhcp-donate-text h2 {
  font-family: var(--rhcp-font-head);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.rhcp-donate-text p {
  color: rgba(255,255,255,.8);
  font-size: 16px;
  max-width: 500px;
  margin: 0;
}
.rhcp-donate-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ──────────────────────────────────────────────────────────
   NEWS SECTION
────────────────────────────────────────────────────────── */
.rhcp-news { background: #fff; }

.rhcp-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 28px);
}
@media (max-width: 900px) { .rhcp-news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .rhcp-news-grid { grid-template-columns: 1fr; } }

.rhcp-news-card {
  background: var(--rhcp-bg);
  border: 1px solid var(--rhcp-line);
  border-radius: var(--rhcp-radius);
  overflow: hidden;
  box-shadow: var(--rhcp-shadow);
  transition: var(--rhcp-transition);
  display: flex;
  flex-direction: column;
}
.rhcp-news-card:hover { transform: translateY(-4px); box-shadow: var(--rhcp-shadow-lg); }

.rhcp-news-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s ease;
}
.rhcp-news-card:hover .rhcp-news-img-wrap img { transform: scale(1.04); }
.rhcp-news-img-wrap { overflow: hidden; }

.rhcp-news-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.rhcp-news-date {
  font-size: 12px;
  color: var(--rhcp-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block;
  margin-bottom: 8px;
}
.rhcp-news-title {
  font-family: var(--rhcp-font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.rhcp-news-title a { color: var(--rhcp-ink); }
.rhcp-news-title a:hover { color: var(--rhcp-maroon); }
.rhcp-news-excerpt {
  font-size: 14px;
  color: var(--rhcp-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.rhcp-news-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--rhcp-maroon);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.rhcp-news-more:hover { color: var(--rhcp-maroon-dark); }

/* ──────────────────────────────────────────────────────────
   INNER PAGE WRAPPER (for page.php template)
────────────────────────────────────────────────────────── */
.rhcp-inner-page { padding: clamp(40px, 5vw, 72px) 0; }
.rhcp-inner-page .rhcp-container { max-width: 960px; }

/* Improve Elementor content rendering on inner pages */
.rhcp-inner-page .elementor-section,
.rhcp-inner-page .e-con {
  max-width: 100% !important;
}

/* Page title on inner pages */
.rhcp-page-title {
  font-family: var(--rhcp-font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--rhcp-ink);
  margin: 0 0 8px;
}
.rhcp-page-intro {
  font-size: 17px;
  color: var(--rhcp-muted);
  max-width: 680px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ──────────────────────────────────────────────────────────
   ABOUT US / TEAM / WHO WE ARE  (inner page content styles)
────────────────────────────────────────────────────────── */
.rhcp-content-section { padding: clamp(40px, 5vw, 64px) 0; }
.rhcp-content-section + .rhcp-content-section { padding-top: 0; }

.rhcp-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.rhcp-team-card {
  background: #fff;
  border: 1px solid var(--rhcp-line);
  border-radius: var(--rhcp-radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--rhcp-shadow);
  transition: var(--rhcp-transition);
}
.rhcp-team-card:hover { transform: translateY(-4px); box-shadow: var(--rhcp-shadow-lg); }
.rhcp-team-card img { width: 100%; height: 260px; object-fit: cover; object-position: top; }
.rhcp-team-card-body { padding: 18px 14px; }
.rhcp-team-card-body h3 { font-size: 17px; margin-bottom: 4px; }
.rhcp-team-card-body span {
  font-size: 12px;
  color: var(--rhcp-maroon);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
}

/* Programme/condition page hero banner */
.rhcp-prog-hero {
  background: linear-gradient(135deg, var(--rhcp-maroon) 0%, #300000 100%);
  padding: clamp(60px, 8vw, 100px) 0 clamp(48px, 6vw, 80px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.rhcp-prog-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 700px;
  height: 700px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}
.rhcp-prog-hero h1 {
  font-family: var(--rhcp-font-head);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  position: relative;
  z-index: 1;
}
.rhcp-prog-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  max-width: 600px;
  margin: 12px auto 0;
  position: relative;
  z-index: 1;
}

/* Content + sidebar layout */
.rhcp-content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}
@media (max-width: 900px) { .rhcp-content-layout { grid-template-columns: 1fr; } }

.rhcp-sidebar {
  position: sticky;
  top: 100px;
}
.rhcp-sidebar-card {
  background: var(--rhcp-bg);
  border: 1px solid var(--rhcp-line);
  border-radius: var(--rhcp-radius);
  padding: 24px;
  box-shadow: var(--rhcp-shadow);
  margin-bottom: 20px;
}
.rhcp-sidebar-card h4 {
  font-family: var(--rhcp-font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rhcp-maroon);
  margin-bottom: 14px;
}
.rhcp-sidebar-links { list-style: none; margin: 0; padding: 0; }
.rhcp-sidebar-links li { margin-bottom: 4px; }
.rhcp-sidebar-links li a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--rhcp-radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--rhcp-ink);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: var(--rhcp-transition);
}
.rhcp-sidebar-links li a:hover,
.rhcp-sidebar-links li.active a {
  background: var(--rhcp-maroon);
  color: #fff;
}

/* ──────────────────────────────────────────────────────────
   CONTACT PAGE
────────────────────────────────────────────────────────── */
.rhcp-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  margin-bottom: clamp(32px, 4vw, 48px);
}
@media (max-width: 900px) { .rhcp-contact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .rhcp-contact-grid { grid-template-columns: 1fr; } }

.rhcp-contact-card {
  background: #fff;
  border: 1px solid var(--rhcp-line);
  border-radius: var(--rhcp-radius);
  padding: 28px 22px;
  box-shadow: var(--rhcp-shadow);
  transition: var(--rhcp-transition);
}
.rhcp-contact-card:hover { transform: translateY(-3px); box-shadow: var(--rhcp-shadow-lg); }
.rhcp-contact-icon {
  width: 50px; height: 50px;
  background: rgba(128,0,0,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.rhcp-contact-icon svg {
  width: 26px; height: 26px;
  stroke: var(--rhcp-maroon);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rhcp-contact-card h3 {
  font-family: var(--rhcp-font-head);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rhcp-maroon);
  margin-bottom: 10px;
}
.rhcp-contact-card p { font-size: 15px; color: var(--rhcp-ink); margin: 4px 0; }
.rhcp-contact-card a { color: var(--rhcp-maroon); font-weight: 600; }
.rhcp-contact-card a:hover { color: var(--rhcp-maroon-dark); }

/* Contact form */
.rhcp-form-section {
  background: var(--rhcp-bg);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--rhcp-line);
  box-shadow: var(--rhcp-shadow);
  margin-bottom: clamp(32px, 4vw, 48px);
}
.rhcp-form-section h2 {
  font-family: var(--rhcp-font-head);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}
.rhcp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 640px) { .rhcp-form-grid { grid-template-columns: 1fr; } }
.rhcp-form-grid .full { grid-column: 1 / -1; }
.rhcp-input, .rhcp-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--rhcp-line);
  border-radius: var(--rhcp-radius-sm);
  font-family: var(--rhcp-font-body);
  font-size: 15px;
  color: var(--rhcp-ink);
  background: #fff;
  transition: var(--rhcp-transition);
  outline: none;
}
.rhcp-input:focus, .rhcp-textarea:focus {
  border-color: var(--rhcp-maroon);
  box-shadow: 0 0 0 3px rgba(128,0,0,.12);
}
.rhcp-textarea { min-height: 140px; resize: vertical; }
.rhcp-submit {
  background: var(--rhcp-maroon);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 13px 32px;
  font-family: var(--rhcp-font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(128,0,0,.3);
  transition: var(--rhcp-transition);
}
.rhcp-submit:hover { background: var(--rhcp-maroon-dark); transform: translateY(-2px); }

/* Form label */
.rhcp-form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--rhcp-ink);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.rhcp-form-label span { color: var(--rhcp-maroon); }

/* Map */
.rhcp-map-wrap {
  border-radius: var(--rhcp-radius);
  overflow: hidden;
  height: clamp(300px, 50vw, 460px);
  border: 1px solid var(--rhcp-line);
  box-shadow: var(--rhcp-shadow);
}
.rhcp-map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ──────────────────────────────────────────────────────────
   DONATE PAGE
────────────────────────────────────────────────────────── */
.rhcp-donate-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}
@media (max-width: 900px) { .rhcp-donate-page-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .rhcp-donate-page-grid { grid-template-columns: 1fr; } }

.rhcp-donate-card {
  background: #fff;
  border: 1px solid var(--rhcp-line);
  border-radius: var(--rhcp-radius);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--rhcp-shadow);
  transition: var(--rhcp-transition);
}
.rhcp-donate-card:hover { transform: translateY(-3px); box-shadow: var(--rhcp-shadow-lg); }
.rhcp-donate-card h3 {
  font-family: var(--rhcp-font-head);
  font-size: 20px;
  color: var(--rhcp-maroon);
  margin-bottom: 6px;
}
.rhcp-donate-card p { font-size: 14px; color: var(--rhcp-muted); margin-bottom: 14px; }

/* Brand buttons */
.rhcp-brand-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 11px 20px;
  font-family: var(--rhcp-font-head);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 5px 16px rgba(0,0,0,.18);
  transition: var(--rhcp-transition);
  cursor: pointer;
}
.rhcp-brand-btn:hover { transform: translateY(-2px); filter: brightness(1.06); color: #fff; }
.rhcp-brand-btn svg { width: 20px; height: 20px; flex-shrink: 0; fill: currentColor; }
.btn-paypal  { background: #003087; }
.btn-cashapp { background: #00c244; }
.btn-zelle   { background: #6d1ed4; }
.btn-bank    { background: #0f5e9c; }
.btn-cheque  { background: #5a0f1b; }

/* Bank rows */
.rhcp-bank-rows { margin-top: 16px; }
.rhcp-bank-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--rhcp-line);
}
.rhcp-bank-row:last-child { border-bottom: none; }
.rhcp-bank-row strong { min-width: 160px; color: #333; font-size: 14px; }
.rhcp-bank-row span { font-size: 14px; color: var(--rhcp-ink); }

/* Info toggle panels */
.rhcp-info-panel {
  margin-top: 10px;
  background: var(--rhcp-bg);
  border: 1px dashed var(--rhcp-line);
  border-radius: var(--rhcp-radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  display: none;
}
.rhcp-info-panel.open { display: block; }

/* ──────────────────────────────────────────────────────────
   GENERAL INNER PAGE ELEMENTOR CONTENT WRAPPER
────────────────────────────────────────────────────────── */
.rhcp-elementor-wrap {
  padding: clamp(40px, 5vw, 72px) 0;
}
.rhcp-elementor-wrap .container { max-width: 1200px; }

/* Make Elementor content look better */
.rhcp-elementor-wrap .elementor-widget-text-editor p {
  font-size: 16px;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 1rem;
}
.rhcp-elementor-wrap .elementor-widget-heading h2,
.rhcp-elementor-wrap .elementor-widget-heading h3 {
  font-family: var(--rhcp-font-head);
  color: var(--rhcp-ink);
}
.rhcp-elementor-wrap .elementor-button {
  border-radius: 999px !important;
  font-family: var(--rhcp-font-head) !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
}

/* ──────────────────────────────────────────────────────────
   REDESIGNED FOOTER
────────────────────────────────────────────────────────── */
.rhcp-footer {
  background: #1a0000;
  color: rgba(255,255,255,.72);
}
.rhcp-footer-main {
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.rhcp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}
@media (max-width: 1024px) { .rhcp-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .rhcp-footer-grid { grid-template-columns: 1fr; } }

.rhcp-footer-col-title {
  font-family: var(--rhcp-font-head);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  position: relative;
}
.rhcp-footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--rhcp-maroon-light);
}
.rhcp-footer-logo { margin-bottom: 16px; }
.rhcp-footer-logo img { max-height: 56px; width: auto; }
.rhcp-footer-about-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin-bottom: 18px;
}
.rhcp-footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.rhcp-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  transition: var(--rhcp-transition);
}
.rhcp-footer-social a:hover {
  background: var(--rhcp-maroon-light);
  border-color: var(--rhcp-maroon-light);
  color: #fff;
  transform: translateY(-2px);
}
.rhcp-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rhcp-footer-links li a {
  color: rgba(255,255,255,.65);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  transition: var(--rhcp-transition);
}
.rhcp-footer-links li a::before {
  content: '›';
  color: var(--rhcp-maroon-light);
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}
.rhcp-footer-links li a:hover { color: #fff; padding-left: 4px; }
.rhcp-footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rhcp-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}
.rhcp-footer-contact-list li svg {
  width: 16px;
  height: 16px;
  stroke: var(--rhcp-maroon-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.rhcp-footer-contact-list li a {
  color: rgba(255,255,255,.65);
  transition: color .18s;
}
.rhcp-footer-contact-list li a:hover { color: #fff; }

/* Footer bottom bar */
.rhcp-footer-bottom {
  background: #120000;
  padding: 18px 0;
}
.rhcp-footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.rhcp-footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.rhcp-footer-copy a { color: rgba(255,255,255,.6); transition: color .18s; }
.rhcp-footer-copy a:hover { color: #fff; }
.rhcp-footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.rhcp-footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color .18s;
}
.rhcp-footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

/* Legacy footer styles for parent theme elements */
.footer-area { background: #1a0000 !important; color: rgba(255,255,255,.75); }
.footer-area .footer { background: #1a0000; padding: 60px 0 30px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-area .title h3 {
  font-family: var(--rhcp-font-head);
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  position: relative;
}
.footer-area .title h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--rhcp-maroon-light);
}
.footer-area .footer-bottom { background: #120000; padding: 20px 0; }
.footer-area .copyright-text p { color: rgba(255,255,255,.55); font-size: 13px; }
.footer-logo img { max-height: 52px; margin: 0 auto 12px; }

/* ──────────────────────────────────────────────────────────
   RESPONSIVE OVERRIDES
────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .rhcp-nav { display: none; }
  .rhcp-header-btn { display: none; }
  .rhcp-mobile-toggle { display: flex !important; }
  /* Legacy classes */
  .main-header .navigation { display: none; }
  .header-right_buttom { display: none; }
  .mobile-nav-toggler { display: block !important; }
  .rhcp-topbar-info li:last-child { display: none; }
}

@media (max-width: 767px) {
  .rhcp-msg-card { grid-template-columns: 1fr; }
  .rhcp-about-stats { grid-template-columns: 1fr; }
  .rhcp-donate-inner { flex-direction: column; text-align: center; }
  .rhcp-donate-actions { justify-content: center; }
  .rhcp-content-layout { grid-template-columns: 1fr; }
  .rhcp-sidebar { position: static; }
  .rhcp-topbar { display: none; }
}

/* ──────────────────────────────────────────────────────────
   CONSISTENT TYPOGRAPHY SCALE
────────────────────────────────────────────────────────── */
h1 { font-size: clamp(28px, 5vw,   52px); }
h2 { font-size: clamp(22px, 3.5vw, 38px); }
h3 { font-size: clamp(18px, 2.5vw, 26px); }
h4 { font-size: clamp(16px, 2vw,   20px); }
h5 { font-size: clamp(14px, 1.8vw, 18px); }
h6 { font-size: clamp(13px, 1.5vw, 16px); }

p {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
  margin-top: 0;
  margin-bottom: 1em;
}
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5em; margin-bottom: 1em; }
li { font-size: 15px; line-height: 1.7; margin-bottom: 5px; }

/* Content area (pages rendered via rhcp_get_content or page.php) */
.rhcp-page-content,
.rhcp-main-content { max-width: 100%; }
.rhcp-page-content h1,
.rhcp-page-content h2,
.rhcp-page-content h3,
.rhcp-page-content h4 {
  font-family: var(--rhcp-font-head);
  color: var(--rhcp-ink);
  margin-bottom: .6em;
}
.rhcp-page-content p { font-size: 15px; line-height: 1.75; margin-bottom: 1em; }
.rhcp-page-content ul,
.rhcp-page-content ol { padding-left: 1.5em; margin-bottom: 1em; }
.rhcp-page-content img { max-width: 100%; height: auto; border-radius: var(--rhcp-radius-sm); margin: 1em 0; }
.rhcp-main-content { max-width: 100%; }
.rhcp-main-content h1,
.rhcp-main-content h2,
.rhcp-main-content h3,
.rhcp-main-content h4,
.rhcp-el-heading {
  font-family: var(--rhcp-font-head);
  color: var(--rhcp-ink);
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}
.rhcp-main-content h2 {
  border-bottom: 2px solid var(--rhcp-line);
  padding-bottom: 10px;
}
.rhcp-main-content p,
.rhcp-el-text p { font-size: 15px; line-height: 1.75; color: #374151; }
.rhcp-el-text { margin-bottom: 1.2em; }

/* Extracted content lists */
.rhcp-el-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em;
}
.rhcp-el-list li {
  padding: 9px 0 9px 26px;
  position: relative;
  border-bottom: 1px solid var(--rhcp-line);
  font-size: 15px;
  color: #374151;
}
.rhcp-el-list li:last-child { border-bottom: none; }
.rhcp-el-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--rhcp-maroon);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}
.rhcp-el-image { margin: 1.5em 0; }
.rhcp-el-image img { border-radius: var(--rhcp-radius); max-width: 100%; }
.rhcp-el-quote {
  border-left: 4px solid var(--rhcp-maroon);
  padding: 12px 20px;
  background: var(--rhcp-bg);
  border-radius: 0 var(--rhcp-radius-sm) var(--rhcp-radius-sm) 0;
  margin: 1.5em 0;
  font-style: italic;
  color: #374151;
}
.rhcp-el-quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--rhcp-maroon);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ──────────────────────────────────────────────────────────
   SUBTLE ENTRANCE ANIMATIONS (no JS libraries needed)
────────────────────────────────────────────────────────── */
.rhcp-observe {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.rhcp-observe.rhcp-visible {
  opacity: 1;
  transform: none;
}

/* ──────────────────────────────────────────────────────────
   PERFORMANCE: off-screen content visibility
────────────────────────────────────────────────────────── */
.rhcp-news,
.rhcp-programs,
.rhcp-message,
.rhcp-footer-main {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

/* ──────────────────────────────────────────────────────────
   FULL MOBILE RESPONSIVENESS
────────────────────────────────────────────────────────── */

/* Touch targets — at least 44×44px (scoped so layout links aren't distorted) */
.rhcp-btn, .rhcp-brand-btn,
.rhcp-mobile-toggle, .rhcp-mobile-close,
.rhcp-dot, .scroll-top { min-height: 44px; }

/* ── 992px and below (tablet / small laptop) ── */
@media (max-width: 992px) {
  .rhcp-nav { display: none; }
  .rhcp-header-btn { display: none; }
  .rhcp-mobile-toggle { display: flex !important; }
  /* Legacy nav hide */
  .main-header .navigation { display: none; }
  .header-right_buttom { display: none; }
  .mobile-nav-toggler { display: block !important; }
  .rhcp-topbar-info li:last-child { display: none; }
  .rhcp-footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── 768px and below (large phone / portrait tablet) ── */
@media (max-width: 768px) {
  .rhcp-topbar { display: none; }

  /* Hero */
  .rhcp-hero {
    height: clamp(560px, 82vh, 760px);
  }
  .rhcp-hero-overlay {
    align-items: flex-end;
    padding: 96px 18px 96px;
  }
  .rhcp-hero-content {
    max-width: 640px;
  }
  .rhcp-hero-title {
    font-size: clamp(32px, 10vw, 54px);
    letter-spacing: .01em;
  }
  .rhcp-hero-subtitle {
    display: block;
    max-width: 560px;
    font-size: 15px;
    line-height: 1.55;
  }
  .rhcp-hero-cta {
    gap: 12px;
    margin-top: 24px;
  }
  .rhcp-hero-cta .rhcp-btn {
    width: min(100%, 320px);
    justify-content: center;
  }
  .rhcp-hero-nav {
    bottom: 20px;
  }
  .rhcp-btn { padding: 11px 18px; font-size: 12px; }

  /* Sections */
  .rhcp-section { padding: clamp(36px, 6vw, 60px) 0; }

  /* About */
  .rhcp-cols-about { grid-template-columns: 1fr; }
  .rhcp-about-stats { grid-template-columns: 1fr 1fr; }

  /* Message */
  .rhcp-msg-card { grid-template-columns: 1fr; }

  /* Programs */
  .rhcp-prog-grid { grid-template-columns: 1fr; }

  /* Donate banner */
  .rhcp-donate-inner { flex-direction: column; text-align: center; }
  .rhcp-donate-actions { justify-content: center; }

  /* News */
  .rhcp-news-grid { grid-template-columns: 1fr; }

  /* Content layout */
  .rhcp-content-layout { grid-template-columns: 1fr; }
  .rhcp-sidebar { position: static; }

  /* Donate page */
  .rhcp-donate-page-grid { grid-template-columns: 1fr; }
  .rhcp-contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .rhcp-footer-grid { grid-template-columns: 1fr; }
  .rhcp-footer-bottom-inner { flex-direction: column; text-align: center; }
  .rhcp-footer-bottom-links { justify-content: center; }

  /* Cheque + questions grid */
  [style*="grid-template-columns:1.2fr"] { display: block !important; }
}

/* ── 480px and below (small phone) ── */
@media (max-width: 480px) {
  .rhcp-header-inner { height: 64px; }
  .rhcp-logo img { max-height: 48px; }
  .rhcp-hero {
    height: clamp(520px, 84vh, 700px);
  }
  .rhcp-hero-overlay {
    padding: 84px 16px 82px;
  }
  .rhcp-hero-kicker {
    font-size: 10px;
    letter-spacing: .14em;
    padding: 7px 14px;
  }
  .rhcp-hero-title {
    font-size: clamp(28px, 11.5vw, 42px);
  }
  .rhcp-hero-subtitle {
    display: none;
  }
  .rhcp-hero-nav {
    padding: 8px 12px;
    gap: 6px;
  }
  .rhcp-dot.active {
    width: 22px;
  }
  .rhcp-prog-hero h1 { font-size: clamp(22px, 7vw, 34px); }
  .rhcp-section-head { font-size: clamp(20px, 6vw, 30px); }
  .rhcp-about-stats { grid-template-columns: 1fr; }
  .rhcp-stat-card { padding: 16px 14px; }
  .rhcp-donate-card { padding: 18px 16px; }
  .rhcp-contact-card { padding: 20px 16px; }
  .rhcp-news-img-wrap img { height: 180px; }
  .rhcp-form-grid { grid-template-columns: 1fr; }
  .rhcp-topbar-inner { height: auto; padding: 6px 14px; flex-wrap: wrap; }
}

/* ── Mobile sub-menu (inside drawer) ── */
#rhcp-mobile-nav-list > li > ul {
  display: none;
  background: rgba(0,0,0,.2);
  padding: 0;
  list-style: none;
}
#rhcp-mobile-nav-list > li {
  position: relative;
}
#rhcp-mobile-nav-list > li.menu-item-has-children > a {
  padding-right: 54px !important;
}
#rhcp-mobile-nav-list > li.menu-item-has-children > a::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  transition: color .18s ease, transform .18s ease;
}
#rhcp-mobile-nav-list > li.sub-open > ul { display: block; }
#rhcp-mobile-nav-list > li.sub-open > a { color: #ffd700; }
#rhcp-mobile-nav-list > li.sub-open > a::after {
  content: "-";
  color: #ffd700;
  transform: translateY(-50%) scale(1.05);
}
#rhcp-mobile-nav-list > li > ul > li > a {
  padding: 11px 20px 11px 36px !important;
  font-size: 12px !important;
  border-bottom-color: rgba(255,255,255,.06) !important;
}

/* ──────────────────────────────────────────────────────────
   PRINT
────────────────────────────────────────────────────────── */
@media print {
  .rhcp-hero, .rhcp-hero-cta, .rhcp-hero-nav,
  .main-header, .rhcp-topbar, .rhcp-footer,
  .footer-area, .scroll-top, .mobile-menu { display: none !important; }
  body { font-size: 12pt; }
}

/* ============================================================
   INNER PAGE REDESIGN
   Shared shell for menu pages, programme pages, and legacy content
   ============================================================ */
.rhcp-prog-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(135deg, #250001 0%, #6f0005 48%, #120001 100%);
  padding: clamp(68px, 8vw, 110px) 0 clamp(90px, 10vw, 132px);
  text-align: left;
  color: #fff;
}
.rhcp-prog-hero::after {
  content: '';
  position: absolute;
  inset: auto auto -140px -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  filter: blur(4px);
  pointer-events: none;
}
.rhcp-prog-hero .rhcp-container {
  position: relative;
  z-index: 1;
}
.rhcp-prog-hero-inner {
  display: block;
}
.rhcp-prog-hero-copy {
  width: min(100%, 860px);
}
.rhcp-prog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.rhcp-prog-hero-copy h1,
.rhcp-prog-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: .01em;
  text-transform: none;
  color: #fff;
  text-wrap: balance;
}
.rhcp-prog-hero-copy p,
.rhcp-prog-hero p {
  margin: 18px 0 0;
  max-width: 720px;
  font-size: clamp(16px, 1.65vw, 20px);
  line-height: 1.7;
  color: rgba(255,255,255,.84);
}
.rhcp-prog-hero-side {
  justify-self: end;
  width: min(100%, 360px);
}
.rhcp-hero-panel {
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 50px rgba(0,0,0,.16);
}
.rhcp-hero-panel-label,
.rhcp-page-tail-label,
.rhcp-sidebar-cta-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.rhcp-hero-panel-label,
.rhcp-sidebar-cta-label {
  color: rgba(255,255,255,.78);
}
.rhcp-hero-panel p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
}
.rhcp-hero-panel-actions,
.rhcp-page-tail-actions,
.rhcp-sidebar-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.rhcp-page-shell {
  position: relative;
  z-index: 2;
  margin-top: -62px;
  padding: 0 0 clamp(52px, 7vw, 88px);
}
.rhcp-page-shell .rhcp-content-layout {
  gap: clamp(22px, 3.5vw, 36px);
  align-items: start;
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 3vw, 44px);
}
.rhcp-content-layout--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: none;
}
.rhcp-main-content {
  min-width: 0;
  width: 100%;
}
.rhcp-page-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
  border: 1px solid rgba(128,0,0,.08);
  border-radius: 28px;
  box-shadow: 0 24px 58px rgba(16,24,40,.10);
  padding: clamp(26px, 4vw, 52px);
  width: 100%;
}
.rhcp-page-prose,
.rhcp-page-content {
  color: #243042;
  font-size: 16px;
}
.rhcp-page-prose > *:first-child,
.rhcp-page-content > *:first-child {
  margin-top: 0 !important;
}
.rhcp-page-prose > *:last-child,
.rhcp-page-content > *:last-child {
  margin-bottom: 0 !important;
}
.rhcp-page-prose h1,
.rhcp-page-prose h2,
.rhcp-page-prose h3,
.rhcp-page-prose h4,
.rhcp-page-content h1,
.rhcp-page-content h2,
.rhcp-page-content h3,
.rhcp-page-content h4 {
  border: 0;
  padding: 0;
  color: #131722;
}
.rhcp-page-prose h1,
.rhcp-page-content h1 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
}
.rhcp-page-prose h2,
.rhcp-page-content h2 {
  margin-top: 1.8em;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}
.rhcp-page-prose h2::after,
.rhcp-page-content h2::after {
  content: '';
  display: block;
  width: 74px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rhcp-maroon), rgba(128,0,0,.15));
}
.rhcp-page-prose h3,
.rhcp-page-content h3 {
  margin-top: 1.6em;
  font-size: clamp(20px, 2.5vw, 28px);
}
.rhcp-page-prose p,
.rhcp-page-prose li,
.rhcp-page-content p,
.rhcp-page-content li {
  color: #364152;
  font-size: 16px;
  line-height: 1.82;
}
.rhcp-page-prose a,
.rhcp-page-content a {
  color: var(--rhcp-maroon);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.rhcp-page-prose ul,
.rhcp-page-prose ol,
.rhcp-page-content ul,
.rhcp-page-content ol {
  padding-left: 1.35rem;
}
.rhcp-page-prose li::marker,
.rhcp-page-content li::marker {
  color: var(--rhcp-maroon);
}
.rhcp-inline-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 32px 0;
}
.rhcp-inline-link-chip {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 16px 18px;
  border: 1px solid rgba(128,0,0,.14);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
  box-shadow: 0 14px 28px rgba(15,23,42,.06);
  color: var(--rhcp-maroon) !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none !important;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.rhcp-inline-link-chip:hover,
.rhcp-inline-link-chip:focus-visible {
  transform: translateY(-2px);
  border-color: var(--rhcp-maroon);
  box-shadow: 0 18px 34px rgba(128,0,0,.12);
  background: linear-gradient(180deg, #fff1f1 0%, #ffffff 100%);
  color: var(--rhcp-maroon-dark) !important;
}
.rhcp-page-prose figure,
.rhcp-page-content figure {
  margin: 28px 0;
}
.rhcp-page-prose img,
.rhcp-page-content img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(15,23,42,.10);
}
.rhcp-page-prose section,
.rhcp-page-content section {
  padding: 0;
  margin: 0 0 32px;
  background: transparent;
}
.rhcp-page-prose .rhcp-el-section,
.rhcp-page-prose .rhcp-el-column,
.rhcp-page-prose .rhcp-el-container,
.rhcp-page-prose .rhcp-el-e-con,
.rhcp-page-prose .rhcp-el-e-con-inner {
  display: block;
}

/* Elementor fallback — for pages where post_content contains Elementor HTML */
.rhcp-page-prose .elementor-section,
.rhcp-page-prose .elementor-container,
.rhcp-page-prose .elementor-row {
  display: block;
  width: 100%;
}
.rhcp-page-prose .elementor-column-wrap,
.rhcp-page-prose .elementor-widget-wrap {
  display: block;
}
.rhcp-page-prose .elementor-column {
  display: block;
  width: 100% !important;
  float: none !important;
}
.rhcp-page-prose .elementor-widget-container {
  margin-bottom: 1.4em;
}
.rhcp-page-prose .elementor-heading-title {
  font-family: var(--rhcp-font-head);
  color: var(--rhcp-ink);
  line-height: 1.2;
  margin-top: 1.4em;
  margin-bottom: 0.5em;
}
.rhcp-page-prose .elementor-widget-image img,
.rhcp-page-prose .elementor-image img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 16px;
  margin: 16px 0;
}
.rhcp-page-prose iframe,
.rhcp-page-content iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15,23,42,.10);
}
.rhcp-page-prose table,
.rhcp-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
}
.rhcp-page-prose th,
.rhcp-page-prose td,
.rhcp-page-content th,
.rhcp-page-content td {
  padding: 14px 16px;
  border: 1px solid rgba(15,23,42,.08);
  text-align: left;
  vertical-align: top;
}
.rhcp-page-prose th,
.rhcp-page-content th {
  background: #faf4f4;
  color: #1f2937;
  font-weight: 700;
}
.rhcp-page-prose .wp-caption,
.rhcp-page-content .wp-caption {
  max-width: 100%;
}
.rhcp-page-prose .aligncenter,
.rhcp-page-content .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.rhcp-page-prose .elementor-icon-list-items {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em;
}
.rhcp-page-prose .elementor-icon-list-item {
  padding: 8px 0;
  border-bottom: 1px solid var(--rhcp-line);
  font-size: 15px;
  color: #374151;
}
.rhcp-page-prose .elementor-icon-list-item:last-child {
  border-bottom: none;
}

.rhcp-page-prose blockquote,
.rhcp-page-content blockquote {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--rhcp-maroon);
  border-radius: 0 18px 18px 0;
  background: #faf6f6;
  color: #243042;
}
.rhcp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin: 30px 0;
}
.rhcp-gallery-grid .gallery-item {
  margin: 0;
}
.rhcp-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.rhcp-auto-gallery {
  position: relative;
  overflow: hidden;
  margin: 32px 0;
  padding: 18px;
  border: 1px solid rgba(128,0,0,.08);
  border-radius: 26px;
  background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
  isolation: isolate;
}
.rhcp-auto-gallery::before,
.rhcp-auto-gallery::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(24px, 4vw, 56px);
  z-index: 2;
  pointer-events: none;
}
.rhcp-auto-gallery::before {
  left: 0;
  background: linear-gradient(90deg, #fff8f8 0%, rgba(255,248,248,0) 100%);
}
.rhcp-auto-gallery::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255,255,255,0) 100%);
}
.rhcp-auto-gallery-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: rhcp-gallery-scroll var(--rhcp-gallery-duration, 28s) linear infinite;
}
.rhcp-auto-gallery:hover .rhcp-auto-gallery-track,
.rhcp-auto-gallery:focus-within .rhcp-auto-gallery-track {
  animation-play-state: paused;
}
.rhcp-auto-gallery-group {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
  align-items: stretch;
}
.rhcp-auto-gallery-group-clone {
  pointer-events: none;
}
.rhcp-auto-gallery-item {
  width: clamp(240px, 26vw, 360px);
  min-width: clamp(240px, 26vw, 360px);
  margin: 0 !important;
}
.rhcp-auto-gallery-item img {
  width: 100%;
  height: clamp(220px, 28vw, 320px);
  object-fit: contain;
  background: #f8f0f0;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(15,23,42,.08);
}
.rhcp-auto-gallery-item a {
  display: block;
}
@keyframes rhcp-gallery-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.rhcp-embed {
  margin: 30px 0;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15,23,42,.10);
  background: #eef2f6;
}
.rhcp-embed iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}
.rhcp-page-tail {
  margin-top: 22px;
}
.rhcp-page-tail-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(128,0,0,.10);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff4f4 0%, #ffffff 100%);
}
.rhcp-page-tail-label {
  color: var(--rhcp-maroon);
}
.rhcp-page-tail-card h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.6vw, 30px);
}
.rhcp-page-tail-card p {
  margin: 0;
  color: #4b5563;
}

.rhcp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  top: 118px;
}
.rhcp-sidebar-card {
  margin-bottom: 0;
  border-radius: 24px;
  border: 1px solid rgba(128,0,0,.08);
  background: #fff;
  box-shadow: 0 18px 40px rgba(15,23,42,.07);
}
.rhcp-sidebar-card h4 {
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--rhcp-maroon);
}
.rhcp-sidebar-links li {
  margin-bottom: 8px;
}
.rhcp-sidebar-links li:last-child {
  margin-bottom: 0;
}
.rhcp-sidebar-links li a {
  display: block;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: #faf7f7;
  color: #1f2937;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: none;
}
.rhcp-sidebar-links li a:hover,
.rhcp-sidebar-links li.active a {
  transform: translateX(3px);
}
.rhcp-sidebar-cta {
  background: linear-gradient(145deg, #280001 0%, #7a0006 100%);
  border-color: rgba(255,255,255,.08);
  color: #fff;
}
.rhcp-sidebar-cta h4,
.rhcp-sidebar-cta p {
  color: #fff;
}
.rhcp-sidebar-cta h4 {
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.25;
}
.rhcp-sidebar-cta p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
}

.rhcp-contact-page-shell,
.rhcp-donate-shell {
  padding-top: clamp(34px, 5vw, 58px);
}
.rhcp-contact-card,
.rhcp-donate-card,
.rhcp-form-section,
.rhcp-map-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(128,0,0,.08);
  box-shadow: 0 18px 42px rgba(15,23,42,.08);
}
.rhcp-contact-card::before,
.rhcp-donate-card::before,
.rhcp-form-section::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--rhcp-maroon), #d57b7b);
}
.rhcp-contact-card,
.rhcp-donate-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcf9f9 100%);
}
.rhcp-contact-card p,
.rhcp-donate-card p {
  position: relative;
  z-index: 1;
}
.rhcp-contact-note,
.rhcp-form-intro,
.rhcp-donate-note {
  color: var(--rhcp-muted);
  font-size: 14px;
}
.rhcp-form-intro {
  margin-bottom: 0;
}
.rhcp-form-alert {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
}
.rhcp-form-alert-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}
.rhcp-form-alert-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}
.rhcp-form-section {
  background: linear-gradient(180deg, #fcfbfb 0%, #ffffff 100%);
}
.rhcp-contact-map iframe {
  min-height: clamp(340px, 58vw, 480px);
}

/* Contact page — split layout */
.rhcp-contact-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
  margin-bottom: clamp(32px, 4vw, 52px);
}
@media (max-width: 960px) { .rhcp-contact-split { grid-template-columns: 1fr; } }

/* Side info cards */
.rhcp-contact-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rhcp-contact-side-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcf9f9 100%);
  border: 1px solid rgba(128,0,0,.08);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(15,23,42,.07);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
}
.rhcp-contact-side-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--rhcp-maroon), #d57b7b);
}
.rhcp-contact-side-card h3 {
  font-family: var(--rhcp-font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rhcp-maroon);
  margin-bottom: 12px;
}
.rhcp-contact-side-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--rhcp-muted);
  margin: 0 0 8px;
}
.rhcp-contact-side-card p:last-child { margin-bottom: 0; }

/* Office hours list */
.rhcp-contact-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rhcp-contact-hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--rhcp-ink);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rhcp-line);
}
.rhcp-contact-hours-list li:last-child { border-bottom: none; padding-bottom: 0; }
.rhcp-contact-hours-list li span:first-child { font-weight: 600; }
.rhcp-contact-hours-list li span:last-child { color: var(--rhcp-muted); }

/* Social pills */
.rhcp-contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.rhcp-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(128,0,0,.07);
  color: var(--rhcp-maroon);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--rhcp-transition);
}
.rhcp-social-pill svg { width: 16px; height: 16px; flex-shrink: 0; }
.rhcp-social-pill:hover {
  background: var(--rhcp-maroon);
  color: #fff;
}

/* Contact map spacing */
.rhcp-contact-map {
  margin-bottom: clamp(32px, 4vw, 52px);
}

.rhcp-donate-block {
  margin-top: clamp(30px, 4vw, 48px);
}
.rhcp-donate-block-title {
  margin-bottom: 18px;
}
.rhcp-donate-inline-btn {
  display: inline-flex;
  margin-bottom: 18px;
}
.rhcp-donate-split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  margin-top: clamp(24px, 3vw, 36px);
}
.rhcp-donate-highlight {
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid #ffd9df;
  border-radius: 14px;
  background: #fff4f6;
  color: #6b1020;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .rhcp-prog-hero-inner {
    grid-template-columns: 1fr;
  }
  .rhcp-prog-hero-side {
    justify-self: start;
  }
  .rhcp-page-shell {
    margin-top: -44px;
  }
}

@media (max-width: 900px) {
  .rhcp-page-tail-card,
  .rhcp-donate-split {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
  .rhcp-page-tail-actions {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .rhcp-prog-hero {
    padding: 64px 0 88px;
  }
  .rhcp-prog-hero-copy h1,
  .rhcp-prog-hero h1 {
    font-size: clamp(30px, 9vw, 48px);
  }
  .rhcp-page-card {
    border-radius: 24px;
    padding: 24px 20px;
  }
  .rhcp-inline-link-grid {
    grid-template-columns: 1fr;
  }
  .rhcp-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rhcp-auto-gallery {
    padding: 14px;
  }
  .rhcp-auto-gallery-group {
    gap: 12px;
  }
  .rhcp-auto-gallery-item {
    width: min(78vw, 300px);
    min-width: min(78vw, 300px);
  }
  .rhcp-auto-gallery-item img {
    height: min(62vw, 260px);
  }
}

@media (max-width: 560px) {
  .rhcp-hero-panel-actions,
  .rhcp-page-tail-actions,
  .rhcp-sidebar-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .rhcp-gallery-grid {
    grid-template-columns: 1fr;
  }
  .rhcp-auto-gallery-item {
    width: min(82vw, 270px);
    min-width: min(82vw, 270px);
  }
  .rhcp-page-shell {
    margin-top: -34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rhcp-auto-gallery {
    overflow-x: auto;
  }
  .rhcp-auto-gallery-track {
    animation: none;
  }
}

/* ──────────────────────────────────────────────────────────
   INNER PAGE GALLERY STRIP
   Full-width image ribbon between hero and content.
   Overrides the card-style base .rhcp-auto-gallery so images
   run edge-to-edge with no box, border, or card shadow.
────────────────────────────────────────────────────────── */
.rhcp-page-gallery-strip {
  position: relative;
  z-index: 3;
  background: #0e0000;
  overflow: hidden;
}

/* Strip all card styling and go edge-to-edge */
.rhcp-page-gallery-strip .rhcp-auto-gallery {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* Fade edges to match the dark strip bg */
.rhcp-page-gallery-strip .rhcp-auto-gallery::before {
  background: linear-gradient(90deg, #0e0000 0%, rgba(14,0,0,0) 100%);
}
.rhcp-page-gallery-strip .rhcp-auto-gallery::after {
  background: linear-gradient(270deg, #0e0000 0%, rgba(14,0,0,0) 100%);
}

/* Wider, taller images for real impact */
.rhcp-page-gallery-strip .rhcp-auto-gallery-item {
  width: clamp(280px, 38vw, 560px);
  min-width: clamp(280px, 38vw, 560px);
}
.rhcp-page-gallery-strip .rhcp-auto-gallery-item img {
  height: clamp(240px, 32vw, 440px);
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  background: #1a0000;
}
.rhcp-page-gallery-strip .rhcp-auto-gallery-group {
  gap: 4px;
}
.rhcp-page-gallery-strip .rhcp-auto-gallery-track {
  gap: 0;
}

/* When gallery is present, no gap needed between gallery and content */
.rhcp-page-shell--has-gallery {
  margin-top: 0;
  padding-top: clamp(24px, 3vw, 40px);
}

@media (max-width: 768px) {
  .rhcp-page-gallery-strip .rhcp-auto-gallery-item {
    width: min(72vw, 320px);
    min-width: min(72vw, 320px);
  }
  .rhcp-page-gallery-strip .rhcp-auto-gallery-item img {
    height: min(56vw, 280px);
  }
}

/* ──────────────────────────────────────────────────────────
   HOME PAGE: transparent header floating over hero
   Header is absolute-positioned (offset below topbar) so
   the hero bleeds full-height behind it. White nav items
   ensure visibility over the dark hero image. After scroll,
   JS adds .fixed-header which restores the white background.
────────────────────────────────────────────────────────── */
.home .main-header {
  position: absolute !important;
  top: 42px; /* height of .rhcp-topbar */
  left: 0;
  width: 100%;
  background: transparent !important;
  border-bottom-color: rgba(255,255,255,.14) !important;
  box-shadow: none !important;
  z-index: 998;
}
@media (max-width: 768px) {
  /* topbar hidden on mobile; start header from very top */
  .home .main-header { top: 0; }
}

/* Nav links — white over dark hero */
.home .main-header .rhcp-nav #rhcp-nav-list > li > a,
.home .main-header .main-menu .navigation > li > a {
  color: rgba(255,255,255,.92) !important;
}
.home .main-header .rhcp-nav #rhcp-nav-list > li > a:hover,
.home .main-header .rhcp-nav #rhcp-nav-list > li.current-menu-item > a,
.home .main-header .rhcp-nav #rhcp-nav-list > li.current-menu-ancestor > a,
.home .main-header .main-menu .navigation > li > a:hover,
.home .main-header .main-menu .navigation > li.current-menu-item > a {
  color: #fff !important;
}
/* Dropdown chevron inherits white */
.home .main-header .rhcp-nav #rhcp-nav-list > li.menu-item-has-children > a::after {
  border-color: rgba(255,255,255,.7);
}

/* Hamburger bars — white */
.home .main-header .rhcp-burger span { background: #fff; }
.home .main-header .rhcp-mobile-toggle:hover { background: rgba(255,255,255,.15); }

/* Donate / CTA button — ghost white */
.home .main-header .rhcp-header-btn {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  color: rgba(255,255,255,.95);
}
.home .main-header .rhcp-header-btn:hover {
  background: rgba(255,255,255,.22);
  border-color: #fff;
  color: #fff;
}

/* After scroll: fixed white header */
.home .main-header.fixed-header {
  position: fixed !important;
  top: 0 !important;
  background: #ffffff !important;
  border-bottom-color: var(--rhcp-maroon) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,.12) !important;
}
.home .main-header.fixed-header .rhcp-nav #rhcp-nav-list > li > a,
.home .main-header.fixed-header .main-menu .navigation > li > a {
  color: var(--rhcp-ink) !important;
}
.home .main-header.fixed-header .rhcp-nav #rhcp-nav-list > li > a:hover,
.home .main-header.fixed-header .rhcp-nav #rhcp-nav-list > li.current-menu-item > a,
.home .main-header.fixed-header .main-menu .navigation > li > a:hover,
.home .main-header.fixed-header .main-menu .navigation > li.current-menu-item > a {
  color: var(--rhcp-maroon) !important;
}
.home .main-header.fixed-header .rhcp-nav #rhcp-nav-list > li.menu-item-has-children > a::after {
  border-color: currentColor;
}
.home .main-header.fixed-header .rhcp-burger span { background: var(--rhcp-ink); }
.home .main-header.fixed-header .rhcp-mobile-toggle:hover { background: rgba(0,0,0,.08); }
.home .main-header.fixed-header .rhcp-header-btn {
  background: var(--rhcp-maroon);
  border-color: var(--rhcp-maroon);
  color: #fff;
}

/* ──────────────────────────────────────────────────────────
   DESIGN POLISH — typography, sections, cards, footer
────────────────────────────────────────────────────────── */

/* Inner page hero: richer pattern overlay */
.rhcp-prog-hero {
  background: linear-gradient(150deg, #6a0000 0%, #200000 60%, #3a0000 100%);
}
.rhcp-prog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(255,255,255,.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.03) 0%, transparent 40%);
  pointer-events: none;
}
.rhcp-prog-hero .rhcp-prog-hero-inner {
  position: relative;
  z-index: 1;
}

/* Inner page content card: subtle left accent bar */
.rhcp-page-card {
  border-left: 4px solid var(--rhcp-maroon);
  box-shadow: 0 4px 40px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.05);
}

/* Stat cards: more prominent numbers */
.rhcp-stat-num {
  font-size: 28px;
  letter-spacing: -.01em;
}
.rhcp-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

/* Programme boxes: cleaner hover state */
.rhcp-prog-box:hover::before {
  width: 8px;
}

/* News cards: taller images for better visual impact */
.rhcp-news-img-wrap img {
  height: 220px;
}

/* Section alternation: about section bg */
.rhcp-about { background: #faf8f8; }

/* Donate banner: second decorative circle */
.rhcp-donate::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -8%;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
  pointer-events: none;
}

/* Footer link improvements */
.footer-area .footer-widget ul li a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.6;
  transition: color .18s, padding-left .18s;
  display: block;
  padding: 3px 0;
}
.footer-area .footer-widget ul li a:hover {
  color: #fff;
  padding-left: 5px;
}
.footer-area .footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Inline link chips: bigger, better visual weight */
.rhcp-inline-link-chip {
  padding: 14px 18px;
  font-size: 13px;
  gap: 8px;
  border-width: 1.5px;
}

/* Content el-section wrappers: visual rhythm */
.rhcp-el-section > .rhcp-el-column + .rhcp-el-column,
.rhcp-el-container > .rhcp-el-e-con + .rhcp-el-e-con {
  margin-top: 0;
}

/* Improved page-shell spacing when no gallery */
.rhcp-page-shell:not(.rhcp-page-shell--has-gallery) {
  margin-top: clamp(-40px, -4vw, -28px);
}

/* Better sidebar card heading separator */
.rhcp-sidebar-card h4::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--rhcp-maroon);
  margin-top: 8px;
  border-radius: 2px;
}

/* Scroll-to-top: always show on inner pages */
.rhcp-page-shell ~ .scroll-top { display: flex; }

/* Reduce motion: respect user preference globally */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── Mobile design refinements ── */
@media (max-width: 768px) {
  .rhcp-prog-hero {
    padding: 52px 0 64px;
  }
  .rhcp-news-img-wrap img {
    height: 180px;
  }
  .rhcp-msg-card {
    border-radius: 20px;
    padding: 24px 18px;
  }
  .rhcp-about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .footer-area .footer { padding: 40px 0 20px; }
}

@media (max-width: 480px) {
  .rhcp-stat-card { padding: 16px 14px; gap: 10px; }
  .rhcp-prog-box { padding: 18px 16px; }
}

/* ──────────────────────────────────────────────────────────
   PHOTO GRID  (2–5 images, shown between hero and content)
────────────────────────────────────────────────────────── */
.rhcp-page-gallery-strip--grid {
  background: #0e0000;
  overflow: hidden;
  line-height: 0; /* collapse inline spacing */
}

.rhcp-photo-grid {
  display: grid;
  gap: 4px;
  width: 100%;
}
.rhcp-photo-grid-item {
  overflow: hidden;
  background: #1a0000;
}
.rhcp-photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.rhcp-photo-grid-item:hover img { transform: scale(1.05); }

/* 2 images: side by side, full height */
.rhcp-photo-grid--2 {
  grid-template-columns: 1fr 1fr;
  height: clamp(260px, 38vw, 480px);
}

/* 3 images: first spans 2 rows (wider left), 2 stacked right */
.rhcp-photo-grid--3 {
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  height: clamp(300px, 42vw, 520px);
}
.rhcp-photo-grid--3 .rhcp-photo-grid-item:first-child {
  grid-row: 1 / 3;
}

/* 4 images: 2 × 2 equal grid */
.rhcp-photo-grid--4 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: clamp(340px, 50vw, 580px);
}

/* 5 images: first large left column spans 2 rows, 4 small on right */
.rhcp-photo-grid--5 {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: clamp(300px, 44vw, 540px);
}
.rhcp-photo-grid--5 .rhcp-photo-grid-item:first-child {
  grid-row: 1 / 3;
}

/* Mobile: collapse to 2-col auto rows */
@media (max-width: 640px) {
  .rhcp-photo-grid--3,
  .rhcp-photo-grid--5 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .rhcp-photo-grid--3 .rhcp-photo-grid-item:first-child,
  .rhcp-photo-grid--5 .rhcp-photo-grid-item:first-child {
    grid-row: auto;
    grid-column: 1 / -1; /* span both cols for emphasis */
  }
  .rhcp-photo-grid--4 { height: auto; grid-template-rows: auto; }
  .rhcp-photo-grid-item img { height: clamp(140px, 46vw, 240px); }
}

/* ──────────────────────────────────────────────────────────
   NAVIGABLE CAROUSEL  (6+ images)
   Used by PHP-rendered gallery strip AND JS-built galleries.
────────────────────────────────────────────────────────── */
.rhcp-page-gallery-strip--carousel {
  background: #0e0000;
  overflow: hidden;
}

.rhcp-carousel {
  position: relative;
  overflow: hidden;
}

.rhcp-carousel-track {
  display: flex;
  gap: 4px;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.rhcp-carousel-item {
  flex-shrink: 0;
  width: clamp(280px, 38vw, 520px);
  overflow: hidden;
  background: #1a0000;
}
.rhcp-carousel-item img {
  width: 100%;
  height: clamp(240px, 32vw, 440px);
  object-fit: cover;
  display: block;
}

/* Prev / Next arrow buttons */
.rhcp-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(8,0,0,.6);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background .2s, border-color .2s, transform .2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.rhcp-carousel-btn svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.rhcp-carousel-btn:hover,
.rhcp-carousel-btn:focus-visible {
  background: var(--rhcp-maroon);
  border-color: var(--rhcp-maroon);
  transform: translateY(-50%) scale(1.1);
  outline: none;
}
.rhcp-carousel-btn--prev { left: 16px; }
.rhcp-carousel-btn--next { right: 16px; }

/* Dot indicator row */
.rhcp-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(0,0,0,.35);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10;
  white-space: nowrap;
}
.rhcp-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .2s, width .25s;
  flex-shrink: 0;
}
.rhcp-carousel-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 999px;
}
.rhcp-carousel-dot:hover { background: rgba(255,255,255,.75); }

/* In-content version (built by JS inside page card) */
.rhcp-in-content-gallery {
  margin: 28px -20px; /* bleed past card padding */
  border-radius: 0;
}
.rhcp-in-content-gallery.rhcp-page-gallery-strip--grid {
  background: #111;
}
.rhcp-in-content-gallery.rhcp-page-gallery-strip--carousel {
  background: #111;
}

@media (max-width: 768px) {
  .rhcp-carousel-btn { width: 40px; height: 40px; }
  .rhcp-carousel-btn svg { width: 18px; height: 18px; }
  .rhcp-carousel-btn--prev { left: 8px; }
  .rhcp-carousel-btn--next { right: 8px; }
  .rhcp-carousel-item {
    width: min(76vw, 300px);
  }
  .rhcp-carousel-item img {
    height: min(60vw, 260px);
  }
  .rhcp-in-content-gallery { margin: 20px -16px; }
}

/* ──────────────────────────────────────────────────────────
   REDESIGN ENHANCEMENTS — richer visual polish
────────────────────────────────────────────────────────── */

/* Section titles: decorative left line accent */
.rhcp-section-head {
  position: relative;
  display: inline-block;
}
.rhcp-section-header.rhcp-section-header--left .rhcp-section-head {
  padding-left: 18px;
}
.rhcp-section-header.rhcp-section-header--left .rhcp-section-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: .1em;
  bottom: .1em;
  width: 4px;
  background: var(--rhcp-maroon);
  border-radius: 4px;
}

/* Card hover lift — consistent across all card types */
.rhcp-prog-box,
.rhcp-news-card,
.rhcp-stat-card,
.rhcp-sidebar-card,
.rhcp-team-card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

/* News card: image aspect ratio lockdown for visual consistency */
.rhcp-news-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.rhcp-news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Programme links row: pill-style chips */
.rhcp-link-list li a {
  border-radius: 999px;
}

/* About section: image side gets a floating badge ring */
.rhcp-about-img-wrap {
  position: relative;
}
.rhcp-about-img-wrap::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--rhcp-radius) + 8px);
  border: 2px dashed rgba(128,0,0,.18);
  pointer-events: none;
}

/* Hero overlay gradient: stronger bottom contrast for text */
.rhcp-hero::after {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.18) 35%,
    rgba(0,0,0,.72) 100%
  );
}

/* Home slide: Ken Burns subtle zoom on active slide */
.rhcp-slide.active img {
  animation: rhcpKenBurns 9s ease-out both;
}
@keyframes rhcpKenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .rhcp-slide.active img { animation: none; }
}

/* Content section dividers: subtle gradient hr */
.rhcp-page-prose hr,
.rhcp-page-content hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, var(--rhcp-maroon) 0%, rgba(128,0,0,0) 100%);
  margin: 2em 0;
  border-radius: 2px;
}

/* Improved kicker badge */
.rhcp-kicker {
  border: 1px solid rgba(128,0,0,.15);
  letter-spacing: .2em;
}

/* Message card: quote block with larger initial quote mark */
.rhcp-quote::before {
  content: '\201C';
  font-family: var(--rhcp-font-head);
  font-size: 72px;
  color: var(--rhcp-maroon);
  line-height: .7;
  display: block;
  margin-bottom: -12px;
  opacity: .35;
}

/* Donate section CTA: button hover shimmer */
.rhcp-btn-white:hover,
.rhcp-btn-ghost-white:hover {
  box-shadow: 0 8px 28px rgba(255,255,255,.2);
}

/* Footer: column widget title before-line decoration */
.footer-area .title h3::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 3px;
  background: var(--rhcp-maroon-light);
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}
.footer-area .title h3::after {
  display: none; /* replaced by the before decoration */
}

/* Scroll-to-top: pulse ring on hover */
.scroll-top:hover::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--rhcp-maroon);
  animation: rhcpPulse .6s ease-out forwards;
  pointer-events: none;
}
@keyframes rhcpPulse {
  from { opacity: .8; transform: scale(1); }
  to   { opacity: 0; transform: scale(1.4); }
}

/* Sidebar sticky offset matches fixed header height */
.rhcp-sidebar { top: 90px; }

/* Content images: caption styling */
.rhcp-page-prose figcaption,
.rhcp-page-content figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--rhcp-muted);
  margin-top: 8px;
  font-style: italic;
}

/* Typography: tighten h2 underline bar */
.rhcp-page-prose h2::after,
.rhcp-page-content h2::after {
  height: 3px;
  border-radius: 3px;
}

/* ══════════════════════════════════════════════════════════
   INTERNATIONAL CHARITY REDESIGN
   Professional visual overhaul: impact numbers, editorial
   section rhythm, bolder CTAs, generous whitespace.
══════════════════════════════════════════════════════════ */

/* ── Extended design tokens ── */
:root {
  --rhcp-maroon-xlight: rgba(128,0,0,.06);
  --rhcp-cream:         #fdf9f9;
  --rhcp-warm-gray:     #f5f4f4;
  --rhcp-shadow-card:   0 2px 20px rgba(0,0,0,.07);
  --rhcp-shadow-hover:  0 12px 40px rgba(0,0,0,.12);
}

/* ── STAT CARDS: large impact numbers ── */
.rhcp-about-stats {
  gap: 14px;
}
.rhcp-stat-card {
  flex-direction: column;
  text-align: center;
  padding: 28px 18px 22px;
  border-top: 4px solid var(--rhcp-maroon);
  border-left: none;
  border-radius: var(--rhcp-radius-sm);
  background: #fff;
  box-shadow: var(--rhcp-shadow-card);
  gap: 4px;
}
.rhcp-stat-card:hover {
  border-top-color: var(--rhcp-maroon-light);
  transform: translateY(-4px);
  box-shadow: var(--rhcp-shadow-hover);
}
.rhcp-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--rhcp-maroon-xlight);
  margin: 0 auto 10px;
}
.rhcp-stat-num {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  color: var(--rhcp-maroon);
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.rhcp-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--rhcp-muted);
  text-transform: uppercase;
}

/* ── ABOUT section: cream background, generous spacing ── */
.rhcp-about {
  background: var(--rhcp-cream);
  padding: clamp(64px, 8vw, 108px) 0;
}
.rhcp-about-text .rhcp-section-head {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.22;
  margin-bottom: 20px;
}
.rhcp-about-text .rhcp-lead {
  font-size: 16px;
  line-height: 1.85;
  color: #374151;
}

/* ── PROGRAMME SECTION: top accent bar cards ── */
.rhcp-programs {
  background: #fff;
  padding: clamp(60px, 7vw, 96px) 0;
}
.rhcp-prog-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
@media (min-width: 1100px) {
  .rhcp-prog-grid { grid-template-columns: repeat(2, 1fr); }
}
.rhcp-prog-box {
  border: none;
  border-top: 4px solid var(--rhcp-maroon);
  border-radius: var(--rhcp-radius-sm);
  box-shadow: var(--rhcp-shadow-card);
  padding: clamp(22px, 3vw, 36px);
}
.rhcp-prog-box::before { display: none; } /* replace left bar with top bar */
.rhcp-prog-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--rhcp-shadow-hover);
  border-top-color: var(--rhcp-maroon-light);
}
.rhcp-prog-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--rhcp-maroon-xlight);
  margin-bottom: 16px;
}
.rhcp-prog-icon svg {
  width: 26px; height: 26px;
}
.rhcp-prog-box h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  margin-bottom: 8px;
}

/* ── DONATE BANNER: bolder, more dramatic ── */
.rhcp-donate {
  background: linear-gradient(140deg, #3a0000 0%, var(--rhcp-maroon) 55%, #600000 100%);
  padding: clamp(56px, 7vw, 96px) 0;
}
.rhcp-donate-text h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}
.rhcp-donate-text p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  max-width: 560px;
}

/* ── NEWS SECTION: editorial card design ── */
.rhcp-news {
  background: var(--rhcp-warm-gray);
  padding: clamp(60px, 7vw, 96px) 0;
}
.rhcp-news-card {
  background: #fff;
  border: none;
  box-shadow: var(--rhcp-shadow-card);
  border-radius: var(--rhcp-radius-sm);
}
.rhcp-news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--rhcp-shadow-hover);
}
.rhcp-news-img-wrap {
  aspect-ratio: 16 / 9;
}
.rhcp-news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rhcp-news-body { padding: 22px; }
.rhcp-news-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rhcp-maroon-xlight);
  color: var(--rhcp-maroon);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: .08em;
}
.rhcp-news-title { font-size: 17px; line-height: 1.35; }
.rhcp-news-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.rhcp-news-more::after {
  content: '→';
  transition: transform .18s;
}
.rhcp-news-more:hover::after { transform: translateX(4px); }

/* ── MESSAGE SECTION: full redesign ── */
.rhcp-message { background: #fff; padding: clamp(60px, 7vw, 96px) 0; }
.rhcp-msg-card {
  border-radius: 24px;
  border: none;
  box-shadow: 0 8px 48px rgba(0,0,0,.08);
  background: var(--rhcp-cream);
  padding: clamp(32px, 4vw, 56px);
}
.rhcp-msg-media { border-radius: 20px; }
.rhcp-quote {
  border-left: 4px solid var(--rhcp-maroon);
  padding: 16px 22px;
  background: #fff;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
}

/* ── SECTION HEADER: unified stronger treatment ── */
.rhcp-section-header {
  margin-bottom: clamp(36px, 5vw, 60px);
}
.rhcp-section-head {
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.18;
}

/* ── INNER PAGE HERO: deeper gradient, more visual weight ── */
.rhcp-prog-hero {
  padding: clamp(72px, 10vw, 120px) 0 clamp(56px, 7vw, 88px);
  background: linear-gradient(160deg, #1a0000 0%, #5a0000 50%, #2e0000 100%);
}
.rhcp-prog-hero h1 {
  font-size: clamp(32px, 5.5vw, 58px);
  letter-spacing: .02em;
}

/* ── INNER PAGE CARD: more open, generous padding ── */
.rhcp-page-card {
  border-radius: 20px;
  padding: clamp(28px, 4vw, 52px) clamp(22px, 4vw, 48px);
}

/* ── SIDEBAR: improved card spacing ── */
.rhcp-sidebar-card {
  border: none;
  box-shadow: var(--rhcp-shadow-card);
  border-radius: 16px;
  padding: 24px 22px;
}

/* ── FOOTER: better visual separation ── */
.footer-area .footer {
  padding: 72px 0 40px;
}
.footer-area .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ── SECTION RHYTHM: subtle dividers between sections ── */
.rhcp-section + .rhcp-section,
.rhcp-about + .rhcp-message,
.rhcp-message + .rhcp-programs,
.rhcp-programs + .rhcp-donate,
.rhcp-donate + .rhcp-news {
  position: relative;
}

/* ── MOBILE refinements for international feel ── */
@media (max-width: 900px) {
  .rhcp-about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .rhcp-prog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rhcp-news-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .rhcp-prog-grid { grid-template-columns: 1fr; }
  .rhcp-news-grid { grid-template-columns: 1fr; }
  .rhcp-about-stats { grid-template-columns: 1fr 1fr; }
  .rhcp-stat-num { font-size: 38px; }
  .rhcp-prog-box { padding: 20px 18px; }
  .rhcp-page-card {
    border-radius: 16px;
    padding: 20px 16px;
  }
  .rhcp-donate-inner { flex-direction: column; }
  .rhcp-donate-text { text-align: center; }
  .rhcp-donate-actions { justify-content: center; }
}

/* ──────────────────────────────────────────────────────────
   GALLERY / CAROUSEL IMAGE POSITION FIX
   object-position: top ensures heads / faces are never
   cropped — applied to every gallery context site-wide.
────────────────────────────────────────────────────────── */

/* PHP-rendered gallery strip: grid mode */
.rhcp-photo-grid-item img {
  object-position: top center;
}

/* PHP-rendered gallery strip: carousel mode */
.rhcp-carousel-item img {
  object-position: top center;
}

/* JS-built inline auto-gallery (existing CSS-scroll variant) */
.rhcp-auto-gallery-item img {
  object-position: top center;
}

/* Catch-all for any image inside a gallery strip */
.rhcp-page-gallery-strip img {
  object-position: top center;
}

/* Team cards — portraits are person-focused, anchor to top */
.rhcp-team-card img {
  object-position: top center;
}

/* News cards — some are portraits; top anchor keeps faces in frame */
.rhcp-news-img-wrap img {
  object-position: top center;
}

/* Home hero slides — full-scene photos, keep vertical centre */
.rhcp-slide img {
  object-position: center center; /* intentionally centre for hero */
}

/* ──────────────────────────────────────────────────────────
   INNER PAGE HERO — BACKGROUND IMAGE WITH MAROON OVERLAY
   Inline style sets full background shorthand (wins cascade).
   ::before provides the semi-transparent maroon overlay.
────────────────────────────────────────────────────────── */

/* Maroon gradient overlay sits between photo and text */
.rhcp-prog-hero--has-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(100,0,0,.62) 0%,
    rgba(16,0,0,.72) 55%,
    rgba(52,0,0,.58) 100%
  );
  z-index: 0;
}

/* Lift inner content above overlay */
.rhcp-prog-hero--has-img .rhcp-prog-hero-inner,
.rhcp-prog-hero--has-img .rhcp-prog-hero-copy,
.rhcp-prog-hero--has-img h1,
.rhcp-prog-hero--has-img p {
  position: relative;
  z-index: 1;
}

/* Decorative circle: soften against photo */
.rhcp-prog-hero--has-img::after {
  z-index: 0;
  opacity: .3;
}

/* ──────────────────────────────────────────────────────────
   IMAGE LIGHTBOX
────────────────────────────────────────────────────────── */
#rhcp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
#rhcp-lightbox.open { display: flex; }

.rhcp-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.9);
  cursor: zoom-out;
}
.rhcp-lb-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 96vw;
  max-height: 94vh;
}
.rhcp-lb-img {
  max-width: 86vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--rhcp-radius-sm);
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.rhcp-lb-close {
  position: fixed;
  top: 14px;
  right: 18px;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
  z-index: 2;
}
.rhcp-lb-close:hover,
.rhcp-lb-close:focus { background: rgba(255,255,255,.3); outline: none; }

.rhcp-lb-nav {
  flex-shrink: 0;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
}
.rhcp-lb-nav:hover,
.rhcp-lb-nav:focus { background: rgba(255,255,255,.3); outline: none; }
.rhcp-lb-nav[hidden] { display: none; }

/* Clickable cue on gallery images */
.rhcp-lb-trigger { display: block; position: relative; overflow: hidden; cursor: zoom-in; }
.rhcp-lb-trigger::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .22s;
}
.rhcp-lb-trigger:hover::after { background: rgba(0,0,0,.18); }
.rhcp-lb-trigger img { display: block; width: 100%; height: 100%; object-fit: cover; }
