/* ============================================================
   Rotary Club of Port Harcourt Evo Kingdom
   Main Stylesheet — WordPress Ready
   Developer: Replace placeholder content marked with [EDIT]
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --gold:        #C9A84C;
  --gold-light:  #F0D080;
  --gold-dark:   #8A6820;
  --deep:        #0A1628;
  --navy:        #112244;
  --navy2:       #1A3360;
  --cream:       #FAF7F0;
  --white:       #FFFFFF;
  --accent:      #E8401C;
  --green:       #1A6B3C;
  --text-muted:  rgba(255,255,255,0.55);
  --text-faint:  rgba(255,255,255,0.35);
  --border-gold: rgba(201,168,76,0.2);
  --border-white: rgba(255,255,255,0.1);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;

  --section-pad: 5rem 2rem;
  --max-width:   1100px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.2s; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* --- Layout Helpers --- */
.inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 3rem;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--deep);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); color: var(--deep); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.3);
  font-family: var(--font-body);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-sm {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-gold-sm  { background: var(--gold); color: var(--deep); }
.btn-gold-sm:hover { background: var(--gold-light); color: var(--deep); }
.btn-ghost-sm { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost-sm:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.rc-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-gold);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.rc-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.rc-nav__emblem {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--deep);
  flex-shrink: 0;
}
.rc-nav__name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
  max-width: 160px;
}

.rc-nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.rc-nav__links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.rc-nav__links a:hover { color: var(--gold); }

.rc-nav__cta {
  background: var(--gold);
  color: var(--deep);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: background 0.2s;
  text-decoration: none;
}
.rc-nav__cta:hover { background: var(--gold-light); color: var(--deep); }

/* Hamburger — mobile */
.rc-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.rc-nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ============================================================
   HERO
   ============================================================ */
.rc-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 2rem;
}

.rc-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A1628 0%, #112244 40%, #0F1F3D 70%, #0A1628 100%);
}

.rc-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(
    45deg, #C9A84C 0, #C9A84C 1px, transparent 0, transparent 50%
  );
  background-size: 20px 20px;
}

.rc-hero__circle,
.rc-hero__circle2 {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  animation: hero-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
.rc-hero__circle  { width: 600px; height: 600px; }
.rc-hero__circle2 { width: 750px; height: 750px; right: -150px; border-color: rgba(201,168,76,0.06); animation-delay: 1s; }

@keyframes hero-pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

.rc-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.rc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.rc-hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.rc-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.rc-hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.rc-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin: 1.2rem 0 2rem;
  line-height: 1.7;
  max-width: 520px;
}

.rc-hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.rc-hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
  flex-wrap: wrap;
}
.rc-hero__stat label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}
.rc-hero__stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

/* ============================================================
   VIRTUAL MEETINGS
   ============================================================ */
.rc-meetings {
  padding: var(--section-pad);
  background: var(--navy);
}

.rc-meeting-card {
  background: var(--navy2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.rc-meeting-card--featured {
  border-color: var(--gold);
  position: relative;
  overflow: hidden;
}
.rc-meeting-card--featured::before {
  content: 'NEXT MEETING';
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 3px;
}

.rc-meeting-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.rc-meeting-card__date {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
}
.rc-meeting-card__badge {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
}
.rc-meeting-card__title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.rc-meeting-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.rc-meeting-card__actions {
  display: flex;
  gap: 10px;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.rc-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.rc-platform-card {
  background: var(--navy2);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  text-align: center;
}
.rc-platform-card__icon { font-size: 28px; margin-bottom: 0.5rem; }
.rc-platform-card__name { font-size: 13px; font-weight: 500; }
.rc-platform-card__desc { font-size: 11px; color: var(--text-faint); margin-top: 3px; }

/* ============================================================
   FACEBOOK LIVE STREAMING
   ============================================================ */
.rc-stream {
  padding: var(--section-pad);
  background: var(--deep);
}

.rc-stream__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.rc-stream__preview {
  background: var(--navy);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.rc-stream__screen {
  background: #080808;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* [EDIT] Replace .rc-stream__screen background with a real thumbnail or video embed */

.rc-stream__live-badge {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(220,38,38,0.9);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.rc-stream__live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: white;
  animation: live-blink 1s infinite;
}
@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.rc-stream__viewer-count {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  color: rgba(255,255,255,0.75);
}
.rc-stream__play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201,168,76,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.rc-stream__play:hover { background: var(--gold); }
.rc-stream__play svg { margin-left: 4px; }

.rc-stream__info { padding: 1.2rem; }
.rc-stream__info h3 { font-size: 1rem; font-weight: 500; margin-bottom: 0.4rem; }
.rc-stream__info p  { font-size: 12px; color: var(--text-muted); }

.rc-stream__controls {
  display: flex;
  gap: 8px;
  padding: 1rem 1.2rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  flex-wrap: wrap;
}

.rc-stream__fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1877F2;
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  margin-top: 1rem;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background 0.2s;
}
.rc-stream__fb-btn:hover { background: #1464d8; color: var(--white); }

.rc-stream__steps { list-style: none; }
.rc-stream__steps li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rc-stream__steps li:last-child { border-bottom: none; }
.rc-stream__step-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.rc-stream__step-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
  color: var(--white);
}
.rc-stream__step-text span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   EVENTS CALENDAR
   ============================================================ */
.rc-events {
  padding: var(--section-pad);
  background: var(--navy);
}

.rc-events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.rc-event-card {
  background: var(--deep);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.rc-event-card:hover { border-color: rgba(201,168,76,0.4); }

.rc-event-card__top {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex: 1;
}
.rc-event-card__date {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 6px 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.rc-event-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--white);
  line-height: 1.4;
}
.rc-event-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.rc-event-card__bottom {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rc-event-card__type {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
}

/* ============================================================
   DONATIONS
   ============================================================ */
.rc-donate {
  padding: var(--section-pad);
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.rc-donate::before {
  content: '';
  position: absolute;
  left: -200px; top: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.05);
  pointer-events: none;
}

.rc-donate__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
}

.rc-donate__impact { list-style: none; }
.rc-donate__impact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rc-donate__impact li:last-child { border-bottom: none; }
.rc-donate__impact-icon {
  width: 38px; height: 38px;
  border-radius: 7px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.rc-donate__impact-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.rc-donate__impact-text span {
  font-size: 12px;
  color: var(--text-muted);
}

.rc-donate__amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 1.5rem 0;
}
.rc-donate__amount-btn {
  background: var(--navy);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.rc-donate__amount-btn:hover,
.rc-donate__amount-btn.is-active {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}
.rc-donate__amount-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  display: block;
}
.rc-donate__amount-label {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 3px;
  display: block;
}

.rc-donate__form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.rc-donate__input {
  flex: 1;
  background: var(--navy);
  border: 1px solid var(--border-white);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s;
}
.rc-donate__input::placeholder { color: rgba(255,255,255,0.3); }
.rc-donate__input:focus { outline: none; border-color: var(--gold); }

.rc-donate__note {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 10px;
  line-height: 1.6;
}

/* ============================================================
   NEWS & BLOG
   ============================================================ */
.rc-news {
  padding: var(--section-pad);
  background: var(--navy);
}

.rc-news__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
}

.rc-news-card {
  background: var(--deep);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.rc-news-card:hover { border-color: rgba(201,168,76,0.4); }

.rc-news-card__img {
  height: 180px;
  background: linear-gradient(135deg, #112244, #1A3360);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  position: relative;
}
/* [EDIT] Replace background gradients with actual featured images using inline style="background-image:url('...')" */
.rc-news-card__img--small { height: 120px; }

.rc-news-card__category {
  background: var(--gold);
  color: var(--deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}

.rc-news-card__body { padding: 1.2rem; flex: 1; }
.rc-news-card h3 {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 0.4rem;
  color: var(--white);
}
.rc-news-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.rc-news-card__meta {
  font-size: 11px;
  color: var(--text-faint);
}

.rc-news__cta { text-align: center; margin-top: 2rem; }

/* ============================================================
   MEMBER PORTAL
   ============================================================ */
.rc-portal {
  padding: var(--section-pad);
  background: var(--deep);
}

.rc-portal__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.rc-portal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.rc-portal-card {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.rc-portal-card:hover { border-color: rgba(201,168,76,0.35); }
.rc-portal-card__icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 22px;
}
.rc-portal-card h3 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--white);
}
.rc-portal-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* Login Box */
.rc-login {
  background: var(--navy);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 360px;
}
.rc-login h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.rc-form-group { margin-bottom: 1rem; }
.rc-form-group label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.rc-form-group input {
  width: 100%;
  background: var(--deep);
  border: 1px solid var(--border-white);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s;
}
.rc-form-group input:focus { outline: none; border-color: var(--gold); }
.rc-login__forgot {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 1rem;
  text-align: center;
}
.rc-login__forgot a { color: var(--gold); text-decoration: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.rc-footer {
  background: #060E1C;
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 3.5rem 2rem 2rem;
}

.rc-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto 2.5rem;
}

.rc-footer__brand h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.rc-footer__brand p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}
.rc-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}
.rc-footer__social a {
  width: 34px; height: 34px;
  border-radius: 6px;
  background: var(--navy);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s;
}
.rc-footer__social a:hover { border-color: var(--gold); color: var(--gold); }

.rc-footer__col h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}
.rc-footer__col ul { list-style: none; }
.rc-footer__col ul li { margin-bottom: 0.55rem; }
.rc-footer__col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.rc-footer__col ul li a:hover { color: var(--gold); }

.rc-footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .rc-nav__links { display: none; }
  .rc-nav__hamburger { display: flex; }
  .rc-nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(10,22,40,0.98);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-gold);
    gap: 1.2rem;
    z-index: 999;
  }
  .rc-stream__layout,
  .rc-donate__layout,
  .rc-portal__layout { grid-template-columns: 1fr; }
  .rc-news__grid { grid-template-columns: 1fr; }
  .rc-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .rc-hero__circle, .rc-hero__circle2 { display: none; }
}

@media (max-width: 600px) {
  :root { --section-pad: 3.5rem 1.25rem; }
  .rc-nav { padding: 0 1.25rem; }
  .rc-hero { padding: 3rem 1.25rem; }
  .rc-hero__stats { gap: 1.5rem; }
  .rc-donate__amounts { grid-template-columns: repeat(2, 1fr); }
  .rc-donate__form-row { flex-direction: column; }
  .rc-portal__grid { grid-template-columns: 1fr; }
  .rc-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .rc-footer__bottom { flex-direction: column; text-align: center; }
  .rc-login { max-width: 100%; }
}
