/* ==========================================================================
   Renewal Center — theme stylesheet
   Translated from the approved 2026 design concept. Tokens per brand-bible.md.
   Contrast rules: gold is never body text on light backgrounds; gold buttons
   carry navy text; teal text never below 14px on light backgrounds.
   ========================================================================== */

/* ----- Fonts (self-hosted variable fonts, no third-party requests) ----- */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-var.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-italic-var.woff2') format('woff2');
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ----- Tokens ----- */
:root {
  --rc-cream:      #faf7f2;
  --rc-warm-white: #f5f0e8;
  --rc-gold:       #c8a45e;
  --rc-gold-light: #e8d5a0;
  --rc-gold-dark:  #a07d3a;
  --rc-teal:       #2a7a6e;
  --rc-teal-deep:  #1d5c53;
  --rc-teal-light: #3a9e8f;
  --rc-navy:       #1a2332;
  --rc-charcoal:   #2d3748;
  --rc-slate:      #5a6577;
  --rc-text:       #3d4555;
  --rc-text-light: #7a8599;
  --rc-white:      #ffffff;
  --rc-footer-bg:  #111825;
  --rc-shadow-sm:  0 2px 8px rgba(26, 35, 50, 0.08);
  --rc-shadow-md:  0 8px 30px rgba(26, 35, 50, 0.12);
  --rc-shadow-lg:  0 20px 60px rgba(26, 35, 50, 0.15);
  --rc-serif:      'Playfair Display', Georgia, 'Times New Roman', serif;
  --rc-sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --rc-ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--rc-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--rc-text);
  background: var(--rc-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Accessibility: skip link + focus visibility */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px; width: 1px; overflow: hidden;
}
.skip-link:focus {
  clip: auto; height: auto; width: auto;
  position: fixed !important; top: 8px; left: 8px; z-index: 100000;
  background: var(--rc-navy); color: var(--rc-white);
  padding: 0.75rem 1.25rem; border-radius: 8px; font-weight: 600;
}
:focus-visible { outline: 3px solid var(--rc-teal); outline-offset: 2px; }

/* ----- Reveal animations ----- */
.rc-reveal        { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--rc-ease), transform .8s var(--rc-ease); }
.rc-reveal-left   { opacity: 0; transform: translateX(-60px); transition: opacity .8s var(--rc-ease), transform .8s var(--rc-ease); }
.rc-reveal-right  { opacity: 0; transform: translateX(60px); transition: opacity .8s var(--rc-ease), transform .8s var(--rc-ease); }
.rc-reveal-scale  { opacity: 0; transform: scale(.9); transition: opacity .8s var(--rc-ease), transform .8s var(--rc-ease); }
.rc-reveal.rc-visible, .rc-reveal-left.rc-visible, .rc-reveal-right.rc-visible { opacity: 1; transform: translate(0, 0); }
.rc-reveal-scale.rc-visible { opacity: 1; transform: scale(1); }
.rc-stagger > *:nth-child(1) { transition-delay: 0s; }
.rc-stagger > *:nth-child(2) { transition-delay: .12s; }
.rc-stagger > *:nth-child(3) { transition-delay: .24s; }
.rc-stagger > *:nth-child(4) { transition-delay: .36s; }
.rc-stagger > *:nth-child(5) { transition-delay: .48s; }
.rc-stagger > *:nth-child(6) { transition-delay: .6s; }

/* ----- Navbar ----- */
.rc-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem; padding-right: 10.5rem; /* clear the Quick Exit button */
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}
.rc-navbar.rc-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding-top: 0.75rem; padding-bottom: 0.75rem;
  box-shadow: var(--rc-shadow-sm);
}
.rc-navbar-brand {
  font-family: var(--rc-serif); font-size: 1.5rem; font-weight: 700;
  color: var(--rc-white); letter-spacing: -0.01em; transition: color .4s ease;
}
.rc-navbar.rc-scrolled .rc-navbar-brand { color: var(--rc-navy); }
.rc-navbar-links { display: flex; align-items: center; gap: 2rem; }
.rc-nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; }
.rc-nav-menu a {
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em; text-transform: uppercase; position: relative;
  transition: color .3s ease;
}
.rc-nav-menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--rc-gold); transition: width .3s var(--rc-ease);
}
.rc-nav-menu a:hover::after { width: 100%; }
.rc-navbar.rc-scrolled .rc-nav-menu a { color: var(--rc-charcoal); }
.rc-navbar.rc-scrolled .rc-nav-menu a:hover { color: var(--rc-teal); }
.rc-navbar-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.5rem; background: var(--rc-gold); color: var(--rc-navy);
  font-weight: 600; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.05em; border-radius: 50px;
  transition: background .3s ease, transform .3s ease;
}
.rc-navbar-cta:hover { background: var(--rc-gold-light); transform: translateY(-1px); }
.rc-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.rc-nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--rc-white);
  margin: 5px 0; transition: all .3s ease;
}
.rc-navbar.rc-scrolled .rc-nav-toggle span { background: var(--rc-navy); }

/* ----- Buttons ----- */
.rc-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.25rem; font-family: var(--rc-sans);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; border-radius: 50px; border: none;
  cursor: pointer; transition: all .35s var(--rc-ease);
}
.rc-btn-primary { background: var(--rc-gold); color: var(--rc-navy); }
.rc-btn-primary:hover {
  background: var(--rc-gold-dark); color: var(--rc-white);
  transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200, 164, 94, 0.3);
}
.rc-btn-teal { background: var(--rc-teal); color: var(--rc-white); }
.rc-btn-teal:hover {
  background: var(--rc-teal-deep); transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(42, 122, 110, 0.3);
}
.rc-btn-outline { background: transparent; color: var(--rc-white); border: 2px solid rgba(255,255,255,0.35); }
.rc-btn-outline:hover { border-color: var(--rc-white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.rc-btn-ghost { background: transparent; color: rgba(255,255,255,0.85); border: 2px solid rgba(255,255,255,0.2); }
.rc-btn-ghost:hover { border-color: var(--rc-gold); color: var(--rc-gold-light); transform: translateY(-2px); }

/* ----- Hero ----- */
.rc-hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.rc-hero-bg { position: absolute; inset: 0; z-index: 0; }
.rc-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  transform: scale(1.05); animation: rcHeroZoom 20s ease-in-out infinite alternate;
}
@keyframes rcHeroZoom { from { transform: scale(1.05); } to { transform: scale(1.15); } }
.rc-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,35,50,.4) 0%, rgba(26,35,50,.55) 40%, rgba(26,35,50,.85) 100%);
}
.rc-hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 2rem; }
.rc-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.25rem; background: rgba(200,164,94,0.2);
  border: 1px solid rgba(200,164,94,0.4); border-radius: 50px;
  color: var(--rc-gold-light); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 2rem;
  opacity: 0; animation: rcFadeUp 1s .3s var(--rc-ease) forwards;
}
.rc-hero-badge svg { width: 14px; height: 14px; fill: currentColor; }
.rc-hero h1 {
  font-family: var(--rc-serif); font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700; color: var(--rc-white); line-height: 1.1; margin-bottom: 1.5rem;
  opacity: 0; animation: rcFadeUp 1s .5s var(--rc-ease) forwards;
}
.rc-hero h1 em { font-style: italic; color: var(--rc-gold-light); }
.rc-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 600px;
  margin: 0 auto 2.5rem; line-height: 1.8;
  opacity: 0; animation: rcFadeUp 1s .7s var(--rc-ease) forwards;
}
.rc-hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: rcFadeUp 1s .9s var(--rc-ease) forwards;
}
@keyframes rcFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.rc-hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.15em; opacity: 0; animation: rcFadeUp 1s 1.2s var(--rc-ease) forwards;
}
.rc-hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: rcScrollPulse 2s ease-in-out infinite;
}
@keyframes rcScrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ----- Particles ----- */
.rc-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.rc-particle {
  position: absolute; border-radius: 50%;
  background: rgba(200, 164, 94, 0.15); animation: rcFloat linear infinite;
}
@keyframes rcFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; } 90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ----- Tagline strip ----- */
.rc-tagline-strip { background: var(--rc-teal); padding: 3rem 2rem; text-align: center; position: relative; overflow: hidden; }
.rc-tagline-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--rc-gold), var(--rc-gold-light), var(--rc-gold));
}
.rc-tagline-words { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.rc-tagline-word {
  font-family: var(--rc-serif); font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600; color: var(--rc-white); letter-spacing: 0.02em;
}
.rc-tagline-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rc-gold); flex-shrink: 0; }

/* ----- Sections ----- */
.rc-section { padding: 7rem 2rem; }
.rc-section-warm { background: var(--rc-warm-white); }
.rc-section-dark { background: var(--rc-navy); color: rgba(255,255,255,0.85); }
.rc-container { max-width: 1200px; margin: 0 auto; }
.rc-section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.rc-section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--rc-teal);
  margin-bottom: 1rem; position: relative; padding-bottom: 1rem;
}
.rc-section-label::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 3px; background: var(--rc-gold); border-radius: 2px;
}
.rc-section-dark .rc-section-label { color: var(--rc-gold-light); }
.rc-section-title {
  font-family: var(--rc-serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--rc-navy); line-height: 1.2; margin-bottom: 1.25rem;
}
.rc-section-dark .rc-section-title { color: var(--rc-white); }
.rc-section-subtitle { font-size: 1.05rem; color: var(--rc-text-light); line-height: 1.8; }
.rc-section-cta { text-align: center; margin-top: 3rem; }

/* ----- Mission ----- */
.rc-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.rc-mission-text h2 {
  font-family: var(--rc-serif); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--rc-navy); line-height: 1.2; margin-bottom: 1.5rem;
}
.rc-mission-text h2 em { font-style: italic; color: var(--rc-teal); }
.rc-mission-text p { font-size: 1.05rem; line-height: 1.9; color: var(--rc-text); margin-bottom: 1.25rem; }
.rc-mission-image { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--rc-shadow-lg); }
.rc-mission-image img { width: 100%; height: 500px; object-fit: cover; transition: transform .6s var(--rc-ease); }
.rc-mission-image:hover img { transform: scale(1.03); }
.rc-mission-image-accent {
  position: absolute; top: -20px; right: -20px; width: 120px; height: 120px;
  border: 3px solid var(--rc-gold); border-radius: 16px; z-index: -1;
}
.rc-mission-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(42, 122, 110, 0.15);
}
.rc-mission-stat { text-align: center; }
.rc-mission-stat-number {
  font-family: var(--rc-serif); font-size: 2.2rem; font-weight: 700;
  color: var(--rc-teal); line-height: 1; margin-bottom: 0.3rem;
}
.rc-mission-stat-number.rc-awaiting { color: rgba(42, 122, 110, 0.35); }
.rc-mission-stat-label {
  font-size: 0.8rem; color: var(--rc-text-light);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.rc-stats-note { font-size: 0.85rem; color: var(--rc-text-light); margin-top: 0.75rem; }

/* ----- Cards ----- */
.rc-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.rc-card {
  background: var(--rc-white); border-radius: 16px; padding: 2.5rem;
  transition: all .4s var(--rc-ease); position: relative; overflow: hidden;
  border: 1px solid rgba(42, 122, 110, 0.08);
}
.rc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--rc-teal), var(--rc-teal-light));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--rc-ease);
}
.rc-card:hover { transform: translateY(-6px); box-shadow: var(--rc-shadow-lg); }
.rc-card:hover::before { transform: scaleX(1); }
.rc-card-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(42,122,110,0.1), rgba(42,122,110,0.05));
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.rc-card-icon svg {
  width: 28px; height: 28px; stroke: var(--rc-teal); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.rc-card h3 {
  font-family: var(--rc-serif); font-size: 1.35rem; font-weight: 600;
  color: var(--rc-navy); margin-bottom: 0.75rem;
}
.rc-card p { font-size: 0.95rem; color: var(--rc-text-light); line-height: 1.7; }

/* ----- Gallery ----- */
.rc-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.rc-gallery-item { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.rc-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--rc-ease); }
.rc-gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(26,35,50,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity .4s ease;
}
.rc-gallery-item:hover img { transform: scale(1.08); }
.rc-gallery-item:hover::after { opacity: 1; }
.rc-gallery-item-label {
  position: absolute; bottom: 1.25rem; left: 1.25rem; z-index: 1;
  color: var(--rc-white); font-weight: 600; font-size: 0.95rem;
  opacity: 0; transform: translateY(10px); transition: all .4s var(--rc-ease);
}
.rc-gallery-item:hover .rc-gallery-item-label { opacity: 1; transform: translateY(0); }

/* ----- CTA section ----- */
.rc-cta-section { padding: 7rem 2rem; background: var(--rc-navy); text-align: center; position: relative; overflow: hidden; }
.rc-cta-section::before {
  content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,94,0.08) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.rc-cta-content { position: relative; z-index: 1; max-width: 650px; margin: 0 auto; }
.rc-cta-content h2 {
  font-family: var(--rc-serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--rc-white); line-height: 1.2; margin-bottom: 1.25rem;
}
.rc-cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; line-height: 1.8; }
.rc-cta-buttons { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ----- Interior page hero / prose ----- */
.rc-page-hero {
  background: linear-gradient(135deg, var(--rc-navy) 0%, var(--rc-charcoal) 100%);
  padding: 11rem 2rem 4rem; position: relative; overflow: hidden;
}
.rc-page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--rc-gold), var(--rc-gold-light), var(--rc-gold));
}
.rc-page-title {
  font-family: var(--rc-serif); font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--rc-white); line-height: 1.15;
}
.rc-page-body { padding-top: 4rem; }
.rc-prose { max-width: 760px; }
.rc-prose h2 {
  font-family: var(--rc-serif); font-size: 1.8rem; color: var(--rc-navy);
  margin: 2.5rem 0 1rem;
}
.rc-prose p { margin-bottom: 1.25rem; font-size: 1.02rem; line-height: 1.85; }
.rc-prose a { color: var(--rc-teal); text-decoration: underline; text-underline-offset: 3px; }
.rc-prose ul, .rc-prose ol { margin: 0 0 1.25rem 1.5rem; }

/* ----- Footer ----- */
.rc-footer { background: var(--rc-footer-bg); padding: 4rem 2rem 2rem; }
.rc-footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}
.rc-footer-brand { font-family: var(--rc-serif); font-size: 1.5rem; font-weight: 700; color: var(--rc-white); margin-bottom: 1rem; }
.rc-footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 1.5rem; }
.rc-footer-hotline {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 1rem 1.25rem; border: 1px solid rgba(200,164,94,0.25);
  border-radius: 12px; max-width: 330px;
}
.rc-footer-hotline-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--rc-gold-light);
}
.rc-footer-hotline-number { font-family: var(--rc-serif); font-size: 1.4rem; font-weight: 700; color: var(--rc-white); }
.rc-footer-hotline-number:hover { color: var(--rc-gold-light); }
.rc-footer-hotline-alt { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.rc-footer-heading {
  font-size: 0.8rem; font-weight: 700; color: var(--rc-white);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.25rem;
}
.rc-footer-links { list-style: none; }
.rc-footer-links li { margin-bottom: 0.6rem; }
.rc-footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.4); transition: color .3s ease; }
.rc-footer-links a:hover { color: var(--rc-gold-light); }
.rc-footer-bottom {
  max-width: 1200px; margin: 3rem auto 0; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.rc-footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.rc-footer-legal { list-style: none; display: flex; gap: 1.25rem; }
.rc-footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.rc-footer-legal a:hover { color: var(--rc-gold-light); }
.rc-footer-credit { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.rc-footer-credit a { color: var(--rc-gold); opacity: 0.6; transition: opacity .3s ease; }
.rc-footer-credit a:hover { opacity: 1; }

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .rc-mission-grid { grid-template-columns: 1fr; gap: 3rem; }
  .rc-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .rc-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .rc-navbar { padding: 1rem 1.5rem; }
  .rc-navbar-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--rc-navy); flex-direction: column; justify-content: center;
    gap: 1.5rem; padding: 2rem; transition: right .4s var(--rc-ease);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  .rc-navbar-links.rc-open { right: 0; }
  .rc-nav-menu { flex-direction: column; gap: 1.5rem; }
  .rc-nav-menu a, .rc-navbar.rc-scrolled .rc-nav-menu a { color: rgba(255,255,255,0.85); font-size: 1rem; }
  .rc-nav-toggle { display: block; z-index: 1001; }
  .rc-nav-toggle.rc-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .rc-nav-toggle.rc-active span:nth-child(2) { opacity: 0; }
  .rc-nav-toggle.rc-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .rc-hero-content { padding-top: 6.5rem; padding-bottom: 4.5rem; }
  .rc-hero-scroll { display: none; }
  .rc-section { padding: 5rem 1.5rem; }
  .rc-cards-grid, .rc-gallery-grid { grid-template-columns: 1fr; }
  .rc-tagline-words { gap: 1.5rem; }
  .rc-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .rc-footer-bottom { flex-direction: column; text-align: center; }
  .rc-mission-stats { flex-direction: column; gap: 1.5rem; }
  .rc-page-hero { padding-top: 8.5rem; }
}
@media (max-width: 480px) {
  .rc-hero-actions, .rc-cta-buttons { flex-direction: column; }
}

/* ----- Reduced motion: everything renders, nothing moves ----- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rc-reveal, .rc-reveal-left, .rc-reveal-right, .rc-reveal-scale { opacity: 1; transform: none; transition: none; }
  .rc-hero-badge, .rc-hero h1, .rc-hero-sub, .rc-hero-actions, .rc-hero-scroll { animation: none; opacity: 1; }
  .rc-hero-bg img { animation: none; transform: none; }
  .rc-hero-scroll-line { animation: none; }
  .rc-particles { display: none; }
  .rc-card, .rc-btn, .rc-gallery-item img, .rc-mission-image img { transition: none; }
}
