/* ============================================================
   RENIP PROPERTIES v4 — THEME CSS
   Built by QuantuTech, Bulawayo Zimbabwe
   ============================================================ */

:root {
  --navy: #0D1B2A; --navy-mid: #162436; --navy-light: #1E3048;
  --gold: #C9A84C; --gold-light: #E2C47A; --gold-pale: #F5EDD6;
  --cream: #FAF7F2; --white: #FFFFFF;
  --green: #1A7A4A; --green-light: #E8F5EE;
  --amber: #D4870A; --amber-light: #FEF3E2;
  --red: #C0392B; --red-light: #FDECEA;
  --text-dark: #0D1B2A; --text-mid: #3A4F63; --text-light: #6B7E8F;
  --border: #E2E8ED;
  --shadow: 0 4px 24px rgba(13,27,42,0.08);
  --shadow-lg: 0 16px 48px rgba(13,27,42,0.14);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.2s; }
h1,h2,h3,h4,h5,h6 { margin: 0; padding: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: 'DM Sans', sans-serif; }

/* PAGE WRAP */
.rp-page-wrap { padding-top: 70px; min-height: 100vh; }

/* NAV OVERLAY */
.rp-nav-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 990; opacity: 0; pointer-events: none; }

/* NAVBAR */
.rp-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(13,27,42,0.98); border-bottom: 1px solid rgba(201,168,76,0.2); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 70px; transition: box-shadow 0.3s; }
@supports (backdrop-filter: blur(12px)) { .rp-nav { -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); background: rgba(13,27,42,0.92); } }
.rp-nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.rp-logo-mark { width: 38px; height: 38px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 18px; color: var(--navy); flex-shrink: 0; }
.rp-logo-img img { height: 38px; width: auto; }
.rp-logo-text { display: flex; flex-direction: column; line-height: 1; }
.rp-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--white); letter-spacing: 2px; text-transform: uppercase; }
.rp-logo-sub { font-size: 9px; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; font-weight: 500; margin-top: 2px; }
.rp-nav-links { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.rp-nav-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
.rp-nav-links a:hover, .rp-nav-links a.active { color: var(--gold); }
.rp-nav-cta { display: flex; gap: 10px; align-items: center; }
.rp-btn-nav2 { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); border: none; padding: 9px 20px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s; }
.rp-btn-nav2:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(201,168,76,0.4); color: var(--navy); }
.rp-nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.rp-nav-toggle span { width: 22px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 2px; display: block; -webkit-transition: all 0.3s; transition: all 0.3s; }

/* PAGE HERO */
.rp-page-hero { padding: 90px 40px 60px; position: relative; overflow: hidden; background: var(--navy); }
.rp-page-hero-img { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center; opacity: 0.18; }
.rp-page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 70%); }
.rp-ph-in { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.rp-ph-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px,5vw,58px); font-weight: 300; color: white; line-height: 1.1; margin-bottom: 12px; }
.rp-ph-title em { font-style: italic; color: var(--gold); }
.rp-ph-sub { font-size: 15px; color: rgba(255,255,255,0.5); max-width: 600px; line-height: 1.75; }

/* ============================================================
   PAGE LAYOUT CLASSES — defined here so media queries can override
   ============================================================ */

/* Contact page — info card + form */
.rp-contact-2col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

/* About page — story text + image/card */
.rp-about-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* List property page — benefits + form */
.rp-list-2col {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

/* Single listing — photo+details + sidebar */
.rp-single-2col {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Diaspora page inner section */
.rp-diaspora-pg-2col {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

/* Form row — 2 fields side by side */
.rp-form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

/* All grid children — prevent overflow */
.rp-contact-2col > *,
.rp-about-2col > *,
.rp-list-2col > *,
.rp-single-2col > *,
.rp-diaspora-pg-2col > *,
.rp-form-2col > * {
  min-width: 0;
}

/* EYEBROW */
.rp-eyebrow { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.rp-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--gold); display: inline-block; flex-shrink: 0; }

/* SECTIONS */
.rp-sec { padding: 72px 40px; }
.rp-sec-in { max-width: 1200px; margin: 0 auto; }
.rp-sec-alt { background: var(--white); }
.rp-sec-header { text-align: center; margin-bottom: 48px; }
.rp-sec-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,4vw,46px); font-weight: 400; color: var(--text-dark); line-height: 1.15; margin-bottom: 10px; }
.rp-sec-title em { font-style: italic; }
.rp-sec-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; max-width: 520px; margin: 0 auto; }

/* HERO SECTION */
.rp-hero { min-height: 100vh; background: var(--navy); position: relative; display: flex; align-items: center; overflow: hidden; padding: 90px 40px; }
.rp-hero-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%), radial-gradient(ellipse 50% 80% at 20% 80%, rgba(26,122,74,0.06) 0%, transparent 60%); }
.rp-hero-bg-img { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center; opacity: 0.25; }
.rp-hero-grid { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 60px 60px; }
.rp-hero-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center; width: 100%; position: relative; z-index: 1; }
.rp-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px,7vw,82px); font-weight: 300; line-height: 0.95; color: white; margin-bottom: 20px; }
.rp-hero-title em { font-style: italic; color: var(--gold); }
.rp-hero-title strong { font-weight: 700; display: block; }
.rp-hero-sub { font-size: 15px; color: rgba(255,255,255,0.5); max-width: 480px; line-height: 1.8; margin-bottom: 28px; }
.rp-hero-trust-row { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }

/* ── Scrolling ticker / marquee ── */
.rp-ticker-wrap { overflow: hidden; width: 100%; margin-bottom: 20px; }
.rp-ticker-track { display: flex; width: max-content; }
.rp-ticker-set { display: flex; align-items: center; animation: rp-marquee 22s linear infinite; white-space: nowrap; }
.rp-ticker-item { font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); padding: 0 24px; }
.rp-ticker-sep { color: rgba(201,168,76,0.35); font-size: 8px; flex-shrink: 0; }
@keyframes rp-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .rp-ticker-set { animation: none; } }
.rp-trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; }
.rp-trust-item svg { color: var(--gold); flex-shrink: 0; }
.rp-trust-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }
.rp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.rp-btn-hero-primary { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); border: none; padding: 13px 28px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; }
.rp-btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); color: var(--navy); }
.rp-btn-hero-outline { background: transparent; border: 1.5px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); padding: 13px 28px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; }
.rp-btn-hero-outline:hover { border-color: var(--gold); color: var(--gold); }

/* SEARCH CARD */
.rp-search-card { background: white; border-radius: 16px; padding: 28px; box-shadow: 0 20px 60px rgba(13,27,42,0.35); }
.rp-search-tabs { display: flex; gap: 4px; margin-bottom: 20px; background: var(--cream); border-radius: 8px; padding: 4px; }
.rp-search-tab { flex: 1; padding: 8px; border: none; background: transparent; border-radius: 6px; font-size: 13px; font-weight: 600; color: var(--text-light); cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.rp-search-tab.active { background: white; color: var(--navy); box-shadow: 0 2px 8px rgba(13,27,42,0.1); }
.rp-search-field { margin-bottom: 14px; }
.rp-search-field label { display: block; font-size: 11px; font-weight: 700; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.rp-search-field select, .rp-search-field input { width: 100%; padding: 10px 13px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 13px; font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--cream); appearance: none; }
.rp-search-field select:focus, .rp-search-field input:focus { outline: none; border-color: var(--gold); }
.rp-search-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rp-btn-search { width: 100%; background: var(--navy); color: white; border: none; padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s; font-family: 'DM Sans', sans-serif; margin-top: 4px; }
.rp-btn-search:hover { background: var(--gold); color: var(--navy); }

/* STATS BAR */
.rp-stats-bar { background: var(--navy-mid); border-top: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(201,168,76,0.15); padding: 28px 40px; }
.rp-stats-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.rp-stat-item { text-align: center; }
.rp-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.rp-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* CATEGORIES */
.rp-cats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.rp-cat-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; padding: 24px 20px; cursor: pointer; transition: all 0.3s; position: relative; text-decoration: none; display: block; }
.rp-cat-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 28px rgba(13,27,42,0.1); }
.rp-cat-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.rp-cat-name { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.rp-cat-count { font-size: 12px; color: var(--text-light); }
.rp-cat-arrow { position: absolute; top: 16px; right: 16px; font-size: 16px; color: var(--gold); opacity: 0; transition: opacity 0.2s; }
.rp-cat-card:hover .rp-cat-arrow { opacity: 1; }

/* PROPERTY CARDS */
.rp-grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.rp-card { background: var(--white); border-radius: 13px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s; border: 1px solid var(--border); }
.rp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.rp-card-img-link { display: block; text-decoration: none; }
.rp-card-img { position: relative; height: 190px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.rp-card-img-link:hover .rp-card-img { opacity: 0.92; }
.rp-card-emo { font-size: 3.5rem; opacity: 0.7; }
.rp-bg-house { background: linear-gradient(135deg,#2A4A35,#1A3025); }
.rp-bg-stand { background: linear-gradient(135deg,#2C4A6B,#1A3050); }
.rp-bg-farm { background: linear-gradient(135deg,#2A4A2A,#1A3A1A); }
.rp-bg-commercial { background: linear-gradient(135deg,#1A2A4A,#0D1B35); }
.rp-bg-vehicle { background: linear-gradient(135deg,#1A2A3A,#0D1A2A); }
.rp-bg-equipment { background: linear-gradient(135deg,#2A2A1A,#1A1A0A); }
.rp-card-type { position: absolute; top: 12px; right: 12px; background: rgba(13,27,42,0.8); color: rgba(255,255,255,0.85); font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.rp-card-price { position: absolute; bottom: 12px; right: 12px; background: white; color: var(--navy); font-weight: 700; font-size: 14px; padding: 5px 12px; border-radius: 100px; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.rp-card-body { padding: 18px; }
.rp-card-loc { font-size: 12px; color: var(--text-light); margin-bottom: 6px; }
.rp-card-title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; font-family: 'Cormorant Garamond', serif; }
.rp-card-specs { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 14px; }
.rp-spec { background: var(--cream); color: var(--text-mid); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 4px; }
.rp-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.rp-card-link { font-size: 12px; font-weight: 600; color: var(--text-mid); text-decoration: none; }
.rp-card-link:hover { color: var(--navy); }
.rp-card-btn { background: var(--navy); color: var(--gold); border: none; padding: 7px 14px; border-radius: 6px; font-size: 12px; font-weight: 700; cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-block; }
.rp-card-btn:hover { background: var(--gold); color: var(--navy); }

/* VIEW ALL */
.rp-view-all-row { text-align: center; margin-top: 40px; }
.rp-btn-view-all { border: 1.5px solid var(--navy); color: var(--navy); background: transparent; padding: 12px 32px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; }
.rp-btn-view-all:hover { background: var(--navy); color: var(--gold); }

/* HOW IT WORKS */
.rp-how-sec { background: linear-gradient(135deg, #0D1B2A, #1E3048); padding: 80px 40px; }
.rp-how-inner { max-width: 1200px; margin: 0 auto; }
.rp-steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.rp-step { text-align: center; padding: 28px 20px; background: rgba(255,255,255,0.04); border-radius: 12px; border: 1px solid rgba(255,255,255,0.07); }
.rp-step-num { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: var(--navy); font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.rp-step-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 8px; }
.rp-step-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* DIASPORA */
.rp-diaspora-sec { background: var(--cream); padding: 80px 40px; }
.rp-diaspora-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.rp-diaspora-features { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.rp-d-feat { display: flex; gap: 14px; align-items: flex-start; }
.rp-d-icon { font-size: 1.5rem; width: 44px; height: 44px; background: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow); }
.rp-d-feat h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.rp-d-feat p { font-size: 13px; color: var(--text-light); line-height: 1.7; }
.rp-d-card { background: linear-gradient(135deg,#0D1B2A,#162436); border-radius: 20px; padding: 36px; box-shadow: 0 20px 60px rgba(13,27,42,0.25); border: 1px solid rgba(201,168,76,0.15); }
.rp-d-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: white; line-height: 1.2; margin-bottom: 6px; }
.rp-d-card-title em { font-style: italic; color: var(--gold); }
.rp-d-card-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.rp-d-stat-row { display: flex; gap: 24px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }
.rp-d-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.rp-d-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 3px; }
.rp-d-countries { display: flex; gap: 7px; flex-wrap: wrap; }
.rp-country { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.65); font-size: 12px; padding: 5px 10px; border-radius: 6px; }

/* FOUNDERS */
.rp-founders-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.rp-founder-card { background: var(--white); border-radius: 20px; box-shadow: var(--shadow); transition: all 0.35s ease; border: 1px solid var(--border); display: flex; flex-direction: column; }
.rp-founder-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.rp-founder-photo { width: 100%; height: 350px; overflow: hidden; border-radius: 20px 20px 0 0; }
.rp-founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

.rp-founder-initial { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: var(--navy); font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.rp-founder-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.rp-founder-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.rp-founder-role { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.rp-founder-bio { font-size: 13px; color: var(--text-mid); line-height: 1.8; flex: 1; }
.rp-founder-links { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.rp-founder-link { padding: 7px 14px; border-radius: 6px; font-size: 12px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.rp-founder-link.wa { background: rgba(37,211,102,0.1); color: #1A9640; border: 1px solid rgba(37,211,102,0.25); }
.rp-founder-link.wa:hover { background: #25D366; color: white; }
.rp-founder-link.li { background: rgba(10,102,194,0.08); color: #0A66C2; border: 1px solid rgba(10,102,194,0.2); }
.rp-founder-link.li:hover { background: #0A66C2; color: white; }

/* TESTIMONIALS */
.rp-testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.rp-test-card { background: white; border-radius: 14px; padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.3s; }
.rp-test-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.rp-test-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.rp-test-text { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }
.rp-test-author { display: flex; align-items: center; gap: 12px; }
.rp-test-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: var(--navy); font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rp-test-author h5 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.rp-test-author span { font-size: 12px; color: var(--text-light); }

/* CTA */
.rp-cta-sec { background: linear-gradient(135deg,var(--navy),#1E3048); padding: 100px 40px; text-align: center; position: relative; overflow: hidden; }
.rp-cta-sec::before { content: ''; position: absolute; top: -50%; left: -20%; width: 700px; height: 700px; background: radial-gradient(circle,rgba(201,168,76,0.08) 0%,transparent 70%); border-radius: 50%; pointer-events: none; }
.rp-cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.rp-cta-eyebrow { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.rp-cta-eyebrow::before, .rp-cta-eyebrow::after { content: ''; width: 24px; height: 2px; background: var(--gold); display: inline-block; }
.rp-cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,5vw,56px); font-weight: 300; color: white; line-height: 1.1; margin-bottom: 16px; }
.rp-cta-title em { font-style: italic; color: var(--gold); }
.rp-cta-sub { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 36px; }
.rp-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.rp-btn-cta1 { background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: var(--navy); border: none; padding: 14px 32px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-block; }
.rp-btn-cta1:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); color: var(--navy); }
.rp-btn-cta2 { background: transparent; border: 1.5px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.75); padding: 14px 32px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-block; }
.rp-btn-cta2:hover { border-color: var(--gold); color: var(--gold); }

/* FOOTER */
.rp-footer { background: #080F18; }
.rp-footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px 40px; }
.rp-disclaimer { padding: 16px 0; font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.7; border-bottom: 1px solid rgba(255,255,255,0.07); }
.rp-footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding: 48px 0 36px; }
.rp-footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 12px; line-height: 1.7; }
.rp-footer-social { display: flex; gap: 8px; margin-top: 16px; }
.rp-social-btn { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.45); display: flex; align-items: center; justify-content: center; font-size: 13px; text-decoration: none; transition: all 0.2s; }
.rp-social-btn:hover { background: var(--gold); color: var(--navy); }
.rp-footer-col h4 { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.35); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.rp-footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.rp-footer-col a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: all 0.2s; }
.rp-footer-col a:hover { color: var(--gold); padding-left: 4px; }
.rp-footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.25); }
.rp-footer-legal { display: flex; gap: 20px; }
.rp-footer-legal a { color: rgba(255,255,255,0.25); text-decoration: none; font-size: 12px; }
.rp-footer-legal a:hover { color: var(--gold); }

/* WHATSAPP FLOAT */
.rp-wa-float { position: fixed; bottom: 24px; right: 24px; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; z-index: 900; box-shadow: 0 4px 16px rgba(37,211,102,0.4); text-decoration: none; transition: all 0.2s; }
.rp-wa-float:hover { transform: scale(1.1); }

/* FILTER BAR */
.rp-filter-bar { background: white; border-bottom: 1px solid var(--border); padding: 14px 40px; box-shadow: 0 2px 10px rgba(13,27,42,0.05); }
.rp-fi { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.rp-fs { padding: 9px 13px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 13px; font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: white; cursor: pointer; appearance: none; }
.rp-fs:focus { outline: none; border-color: var(--gold); }

/* SCROLL FADE */
.rp-fade { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease; transition: opacity 0.5s ease, transform 0.5s ease; }
.rp-fade.rp-visible { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }

/* CONTACT FORM */
.rp-form-msg { padding: 0; border-radius: 8px; font-size: 13px; font-weight: 600; margin-top: 14px; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.rp-form-msg.ok, .rp-form-msg.err { padding: 12px 16px; max-height: 120px; }
.rp-form-msg.ok { background: var(--green-light); color: var(--green); border: 1px solid rgba(26,122,74,0.3); display: block; }
.rp-form-msg.err { background: var(--red-light); color: var(--red); border: 1px solid rgba(192,57,43,0.3); display: block; }

/* ADMIN PANEL */
.rp-wrap { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; max-width: 1140px; }
.rp-header { background: linear-gradient(135deg,#0D1B2A,#162436); color: #fff; padding: 24px 28px; border-radius: 10px 10px 0 0; display: flex; align-items: center; gap: 14px; }
.rp-header h1 { font-size: 20px; font-weight: 700; color: #fff; margin: 0; padding: 0; line-height: 1.3; }
.rp-header p { font-size: 12px; color: rgba(255,255,255,0.5); margin: 3px 0 0; }
.rp-tabs { display: flex; flex-wrap: wrap; gap: 4px; background: #fff; border: 1px solid #E2E8ED; border-top: none; padding: 12px 16px; }
.rp-tab { padding: 7px 13px; border-radius: 6px; border: 1.5px solid #E2E8ED; background: #f8f9fa; cursor: pointer; font-size: 12px; font-weight: 600; color: #3A4F63; transition: all 0.2s; white-space: nowrap; }
.rp-tab:hover { background: #F5EDD6; border-color: #C9A84C; color: #0D1B2A; }
.rp-tab.active { background: #0D1B2A; border-color: #0D1B2A; color: #C9A84C; }
.rp-body { background: #fff; border: 1px solid #E2E8ED; border-top: none; padding: 28px; border-radius: 0 0 10px 10px; }
.rp-pane { display: none; }
.rp-pane.active { display: block; }
.rp-pane > h2 { font-size: 16px; font-weight: 700; color: #0D1B2A; margin: 0 0 20px; padding-bottom: 10px; border-bottom: 2px solid #F5EDD6; }
.rp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 10px; }
.rp-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 10px; }
.rp-grid-1 { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 10px; }
.rp-field { display: flex; flex-direction: column; gap: 4px; }
.rp-field label { font-size: 11px; font-weight: 700; color: #162436; letter-spacing: 0.3px; }
.rp-field input[type=text], .rp-field input[type=url], .rp-field input[type=email], .rp-field input[type=tel], .rp-field textarea, .rp-field select { border: 1.5px solid #E2E8ED; border-radius: 6px; padding: 8px 10px; font-size: 13px; font-family: inherit; color: #0D1B2A; background: #fafafa; width: 100%; transition: border 0.2s; }
.rp-field input:focus, .rp-field textarea:focus, .rp-field select:focus { border-color: #C9A84C; outline: none; background: #fff; }
.rp-field input[type=color] { height: 40px; padding: 3px 5px; border-radius: 6px; cursor: pointer; }
.rp-field textarea { resize: vertical; min-height: 72px; }
.rp-section-label { font-size: 10px; font-weight: 700; color: #C9A84C; letter-spacing: 1.5px; text-transform: uppercase; margin: 22px 0 10px; padding: 5px 10px; background: #FAF7F2; border-radius: 5px; border-left: 3px solid #C9A84C; }
.rp-image-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.rp-image-preview { max-height: 80px; border-radius: 6px; border: 1px solid #E2E8ED; display: none; }
.rp-image-preview.show { display: block; }
.rp-save-bar { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 20px; border-top: 1px solid #E2E8ED; position: sticky; bottom: 0; background: #fff; z-index: 10; }
.rp-save-btn { background: linear-gradient(135deg,#0D1B2A,#162436); color: #C9A84C; border: none; padding: 11px 28px; border-radius: 7px; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.rp-save-btn:hover { background: #C9A84C; color: #0D1B2A; }
.rp-notice { padding: 9px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; display: none; }
.rp-notice.ok { background: #E8F5EE; color: #1A7A4A; border: 1px solid rgba(26,122,74,0.3); display: block; }
.rp-notice.err { background: #FDECEA; color: #C0392B; border: 1px solid rgba(192,57,43,0.3); display: block; }
.pb-section { background: #f8f9fa; border: 1.5px solid #E2E8ED; border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
.pb-section-header { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: #fff; border-bottom: 1px solid #E2E8ED; cursor: grab; user-select: none; }
.pb-drag { color: #999; font-size: 16px; }
.pb-section-name { font-size: 13px; font-weight: 600; color: #0D1B2A; flex: 1; }
.pb-toggle { position: relative; width: 44px; height: 24px; background: #ddd; border-radius: 100px; cursor: pointer; transition: background 0.2s; flex-shrink: 0; }
.pb-toggle.on { background: #1A7A4A; }
.pb-toggle::after { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.pb-toggle.on::after { transform: translateX(20px); }
.pb-note { font-size: 11px; color: #6B7E8F; padding: 6px 14px; background: #FAF7F2; }
.rp-media-btn { font-size: 12px !important; padding: 5px 10px !important; }
.rp-media-clear { font-size: 12px !important; padding: 5px 10px !important; color: #C0392B !important; }

/* RESPONSIVE */

/* ============================================================
   RESPONSIVE — COMPLETE MOBILE-FIRST BREAKPOINTS
   ============================================================ */

/* ── 1024px — Tablet landscape ── */
@media (max-width: 1024px) {
  .rp-hero-content     { grid-template-columns: 1fr; gap: 40px; }
  .rp-search-card      { max-width: 560px; margin: 0 auto; }
  .rp-cats-grid        { grid-template-columns: repeat(4,1fr); }
  .rp-steps-grid       { grid-template-columns: repeat(2,1fr); }
  .rp-diaspora-inner   { grid-template-columns: 1fr; gap: 40px; }
  .rp-founders-grid    { grid-template-columns: repeat(2,1fr); }
  .rp-footer-top       { grid-template-columns: 1fr 1fr; gap: 32px; }
  .rp-contact-2col     { grid-template-columns: 1fr; gap: 32px; }
  .rp-about-2col       { grid-template-columns: 1fr; gap: 40px; }
  .rp-list-2col        { grid-template-columns: 1fr; gap: 32px; }
  .rp-single-2col      { grid-template-columns: 1fr; gap: 32px; }
  .rp-diaspora-pg-2col { grid-template-columns: 1fr; gap: 40px; }
}

/* ── 768px — Tablet portrait / large phone ── */
@media (max-width: 768px) {
  /* Nav */
  .rp-ticker-wrap         { display: none !important; }
  .rp-nav                 { padding: 0 16px; height: 60px; }
  .rp-nav-links           {
    display: flex;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: rgba(13,27,42,0.99);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 2px solid rgba(201,168,76,0.2);
    flex-direction: column;
    padding: 4px 0 12px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: max-height 0.35s ease, opacity 0.25s ease;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    z-index: 994;
    box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  }
  .rp-nav-links.open      {
    max-height: 800px;
    opacity: 1;
    pointer-events: auto;
  }
  .rp-nav-links li        { width: 100%; }
  .rp-nav-links a         { display: block; padding: 13px 20px; font-size: 15px; font-weight: 500; border-left: 3px solid transparent; color: rgba(255,255,255,0.75); }
  .rp-nav-links a:hover,
  .rp-nav-links a.active  { border-left-color: var(--gold); color: var(--gold); background: rgba(255,255,255,0.04); }
  .rp-nav-cta             { display: none; }
  .rp-nav-toggle          { display: flex; }
  .rp-logo-sub            { display: none; }
  .rp-page-wrap           { padding-top: 60px; }

  /* Sections */
  .rp-sec                 { padding: 48px 16px; }
  .rp-page-hero           { padding: 72px 16px 44px; }
  .rp-hero                { padding: 80px 16px 48px; min-height: auto; }
  .rp-stats-bar           { padding: 20px 16px; }
  .rp-filter-bar          { padding: 12px 16px; }
  .rp-cta-sec             { padding: 56px 16px; }
  .rp-how-sec             { padding: 56px 16px; }
  .rp-diaspora-sec        { padding: 56px 16px; }
  .rp-footer-inner        { padding: 0 16px 32px; }

  /* Hero */
  .rp-hero-content        { grid-template-columns: 1fr; gap: 32px; }
  .rp-hero-title          { font-size: clamp(36px, 9vw, 56px); }
  .rp-hero-sub            { font-size: 14px; max-width: 100%; }
  .rp-hero-trust-row      { gap: 10px; }
  .rp-trust-divider       { display: none; }
  .rp-hero-actions        { flex-direction: column; gap: 10px; }
  .rp-hero-actions a      { width: 100%; text-align: center; }
  .rp-search-card         { padding: 20px; max-width: 100%; }
  .rp-search-grid         { grid-template-columns: 1fr; }
  .rp-search-tabs         { gap: 3px; }
  .rp-search-tab          { font-size: 11px; padding: 7px 4px; }

  /* Stats */
  .rp-stats-inner         { gap: 16px 24px; justify-content: center; }
  .rp-stat-item           { min-width: 80px; }
  .rp-stat-num            { font-size: 1.8rem; }

  /* Grids */
  .rp-cats-grid           { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .rp-grid3               { grid-template-columns: 1fr; }
  .rp-steps-grid          { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .rp-step                { padding: 22px 16px; }
  .rp-founders-grid       { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .rp-founder-body        { padding: 16px; }
  .rp-founder-name        { font-size: 1.1rem; }
  .rp-founder-bio         { font-size: 12px; }
  .rp-testimonials-grid   { grid-template-columns: 1fr; }
  .rp-about-2col          { grid-template-columns: 1fr; gap: 32px; }
  .rp-contact-2col        { grid-template-columns: 1fr; gap: 24px; }
  .rp-list-2col           { grid-template-columns: 1fr; gap: 24px; }
  .rp-single-2col         { grid-template-columns: 1fr; gap: 24px; }
  .rp-diaspora-pg-2col    { grid-template-columns: 1fr; gap: 24px; }
  .rp-form-2col           { grid-template-columns: 1fr; gap: 10px; }

  /* Cards */
  .rp-cat-card            { padding: 18px 14px; }
  .rp-cat-icon            { font-size: 1.6rem; }
  .rp-cat-name            { font-size: 13px; }
  .rp-step                { padding: 18px 14px; }

  /* Filter bar */
  .rp-fi                  { flex-direction: column; align-items: stretch; }
  .rp-fi > *              { width: 100%; }
  .rp-fs                  { width: 100%; }

  /* Section headers */
  .rp-sec-title           { font-size: clamp(24px, 6vw, 38px); }
  .rp-ph-title            { font-size: clamp(28px, 7vw, 44px); }
  .rp-ph-sub              { font-size: 14px; }

  /* CTA */
  .rp-cta-title           { font-size: clamp(26px, 7vw, 42px); }
  .rp-cta-sub             { font-size: 14px; }
  .rp-cta-btns            { flex-direction: column; align-items: center; gap: 10px; }
  .rp-btn-cta1,
  .rp-btn-cta2            { width: 100%; max-width: 320px; text-align: center; }

  /* Footer */
  .rp-footer-top          { grid-template-columns: 1fr; gap: 28px; padding: 36px 0 28px; }
  .rp-footer-bottom       { flex-direction: column; text-align: center; gap: 10px; }
  .rp-footer-legal        { justify-content: center; }
  .rp-disclaimer          { font-size: 11px; }

  /* Diaspora page 2-col */
  .rp-diaspora-pg-2col    { grid-template-columns: 1fr; gap: 32px; }
  /* Admin */
  .rp-grid-2, .rp-grid-3 { grid-template-columns: 1fr; }

  /* Single listing */
  .rp-single-photo        { height: 240px !important; }
  .rp-single-sticky       { position: static !important; }
}

/* ── 480px — Small phones ── */
@media (max-width: 480px) {
  /* Nav */
  .rp-nav                 { padding: 0 12px; }
  .rp-logo-name           { font-size: 16px; }
  .rp-logo-sub            { display: none; }

  /* Sections */
  .rp-sec                 { padding: 40px 12px; }
  .rp-page-hero           { padding: 68px 12px 40px; }
  .rp-hero                { padding: 72px 12px 40px; }
  .rp-cta-sec             { padding: 48px 12px; }
  .rp-how-sec             { padding: 48px 12px; }
  .rp-diaspora-sec        { padding: 48px 12px; }

  /* Typography */
  .rp-hero-title          { font-size: clamp(32px, 10vw, 48px); line-height: 1.05; }
  .rp-sec-title           { font-size: clamp(22px, 7vw, 32px); }
  .rp-ph-title            { font-size: clamp(24px, 8vw, 36px); }
  .rp-cta-title           { font-size: clamp(22px, 8vw, 34px); }
  .rp-d-card-title        { font-size: 1.3rem; }

  /* Grids */
  .rp-cats-grid           { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .rp-founders-grid       { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .rp-founder-body        { padding: 12px; }
  .rp-founder-name        { font-size: 1rem; }
  .rp-founder-bio         { font-size: 11px; line-height: 1.6; }

  /* Gallery thumbnails — cap to 3 columns max on small phones */
  #rp-gal-main img        { height: clamp(200px, 56vw, 300px) !important; }
  [id="rp-gallery-thumbs"] > div,
  #rp-gal-main + div      { grid-template-columns: repeat(3,1fr) !important; }

  /* Search card */
  .rp-search-card         { padding: 16px; }
  .rp-search-tabs         { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .rp-search-tab          { white-space: nowrap; min-width: 60px; }

  /* Stats */
  .rp-stats-inner         { gap: 12px 20px; }
  .rp-stat-num            { font-size: 1.5rem; }
  .rp-stat-lbl            { font-size: 10px; }

  /* Cards */
  .rp-cat-card            { padding: 14px 10px; }
  .rp-cat-icon            { font-size: 1.4rem; margin-bottom: 6px; }
  .rp-cat-name            { font-size: 12px; }
  .rp-cat-count           { display: none; }
  .rp-d-card              { padding: 24px 18px; }
  .rp-d-countries         { gap: 5px; }
  .rp-country             { font-size: 11px; padding: 4px 8px; }

  /* Buttons */
  .rp-btn-hero-primary,
  .rp-btn-hero-outline    { padding: 12px 20px; font-size: 13px; }
  .rp-btn-nav2            { padding: 8px 14px; font-size: 12px; }
  .rp-wa-float            { width: 46px; height: 46px; font-size: 1.2rem; bottom: 16px; right: 16px; }

  /* Footer */
  .rp-footer-inner        { padding: 0 12px 24px; }
  .rp-footer-col h4       { margin-bottom: 10px; }

  /* Contact / List forms — make labels stack cleanly */
  .rp-form-2col           { grid-template-columns: 1fr; }
}

/* ── 360px — Very small phones (Samsung Galaxy S series etc) ── */
@media (max-width: 360px) {
  .rp-hero-title          { font-size: 28px; }
  .rp-ph-title            { font-size: 22px; }
  .rp-sec-title           { font-size: 20px; }
  .rp-cta-title           { font-size: 20px; }
  .rp-search-tab          { font-size: 10px; padding: 6px 3px; }
  .rp-cats-grid           { grid-template-columns: repeat(2,1fr); gap: 6px; }
  .rp-stat-num            { font-size: 1.3rem; }
}

/* ── OVERFLOW PROTECTION — prevents horizontal scroll on any device ── */
.rp-sec-in, .rp-hero-content, .rp-how-inner, .rp-diaspora-inner,
.rp-footer-inner, .rp-ph-in, .rp-cta-inner, .rp-hero-left,
.rp-about-2col > *, .rp-contact-2col > *, .rp-list-2col > *,
.rp-single-2col > *, .rp-diaspora-pg-2col > * {
  min-width: 0;
}

/* ── TOUCH IMPROVEMENTS ── */
@media (hover: none) {
  .rp-card:hover   { transform: none; box-shadow: var(--shadow); }
  .rp-cat-card:hover { transform: none; }
  .rp-founder-card:hover { transform: none; }
  .rp-test-card:hover { transform: none; }
}

/* ── PRINT / ACCESSIBILITY ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .rp-fade { opacity: 1 !important; transform: none !important; }
}

/* ── FORM INPUTS — global touch-friendly defaults ── */
input, textarea, select {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 8px;
  font-size: 16px; /* prevents iOS Safari auto-zoom on focus */
}

/* ── CONTACT FORM — mobile full-width ── */
@media (max-width: 600px) {
  .rp-contact-2col > div:last-child { padding: 24px 16px !important; }
  .rp-contact-2col > div:first-child { padding: 24px 16px !important; }
  .rp-d-card { padding: 24px 16px !important; }
  .rp-form-2col { grid-template-columns: 1fr; }
  .rp-list-2col > div:last-child { padding: 24px 16px !important; }
}

/* ── SCROLL LOCK — Chrome Android compatible ── */
.rp-scroll-locked { overflow: hidden; position: fixed; width: 100%; }

/* ══════════════════════════════════════════════
   PROPERTY GALLERY & LIGHTBOX
   ══════════════════════════════════════════════ */

/* Gallery thumbnail grid responsive adjustments */
@media (max-width: 600px) {
  #rp-gal-main img { height: clamp(200px, 56vw, 300px) !important; }
}

/* Lightbox touch-swipe hint on mobile */
@media (max-width: 480px) {
  #rp-lightbox button[onclick*="rpLbPrev"],
  #rp-lightbox button[onclick*="rpLbNext"] {
    width: 44px; height: 44px; font-size: 1.6rem;
  }
  #rp-lb-img { max-width: 96vw; max-height: 70vh; }
  #rp-lightbox button[onclick*="rpLbClose"] { font-size: 2.4rem; top: 12px; right: 16px; }
}

/* Short bio stripe */
.rp-listing-bio {
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.rp-listing-bio p {
  color: #3A4F63;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  font-style: italic;
}

/* ── MOBILE NAV ENQUIRE ITEM — desktop: hidden, mobile: visible ── */
.rp-nav-mobile-enquire { display: none; }
@media (max-width: 768px) {
  .rp-nav-mobile-enquire { display: block; }
}
