@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

.rmi-page * { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── HERO ─────────────────────────────────────────────── */
.rmi-hero {
  position: relative;
  min-height: 100vh;
  background: #2D1B4E;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 80px 24px;
}

/* Light rays */
.rmi-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 900px;
  height: 900px;
  pointer-events: none;
  z-index: 0;
}
.rmi-ray {
  position: absolute;
  top: 50%; left: 50%;
  width: 2px;
  height: 420px;
  transform-origin: top center;
  background: linear-gradient(to bottom, rgba(201,147,58,0.35), transparent);
  animation: rayPulse 6s ease-in-out infinite;
}
.rmi-ray:nth-child(1)  { transform: rotate(0deg);   animation-delay: 0s; }
.rmi-ray:nth-child(2)  { transform: rotate(22deg);  animation-delay: 0.3s; }
.rmi-ray:nth-child(3)  { transform: rotate(44deg);  animation-delay: 0.6s; }
.rmi-ray:nth-child(4)  { transform: rotate(66deg);  animation-delay: 0.9s; }
.rmi-ray:nth-child(5)  { transform: rotate(88deg);  animation-delay: 1.2s; }
.rmi-ray:nth-child(6)  { transform: rotate(110deg); animation-delay: 1.5s; }
.rmi-ray:nth-child(7)  { transform: rotate(132deg); animation-delay: 1.8s; }
.rmi-ray:nth-child(8)  { transform: rotate(154deg); animation-delay: 2.1s; }
.rmi-ray:nth-child(9)  { transform: rotate(176deg); animation-delay: 2.4s; }
.rmi-ray:nth-child(10) { transform: rotate(198deg); animation-delay: 2.7s; }
.rmi-ray:nth-child(11) { transform: rotate(220deg); animation-delay: 3.0s; }
.rmi-ray:nth-child(12) { transform: rotate(242deg); animation-delay: 3.3s; }
.rmi-ray:nth-child(13) { transform: rotate(264deg); animation-delay: 3.6s; }
.rmi-ray:nth-child(14) { transform: rotate(286deg); animation-delay: 3.9s; }
.rmi-ray:nth-child(15) { transform: rotate(308deg); animation-delay: 4.2s; }
.rmi-ray:nth-child(16) { transform: rotate(330deg); animation-delay: 4.5s; }
@keyframes rayPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.9; }
}

.rmi-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.rmi-eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C9933A;
  margin-bottom: 28px;
}
.rmi-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  color: #FAF6EF;
  margin-bottom: 24px;
}
.rmi-hero h1 em {
  color: #C9933A;
  font-style: italic;
}
.rmi-hero-sub {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 1.15rem;
  color: rgba(250,246,239,0.75);
  margin-bottom: 48px;
  line-height: 1.7;
}
.rmi-btn-primary {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D1B4E;
  background: #C9933A;
  padding: 16px 44px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.rmi-btn-primary:hover { background: #e0a94a; transform: translateY(-2px); }

/* ─── MISSION STRIP ─────────────────────────────────────── */
.rmi-mission {
  background: #FAF6EF;
  padding: 64px 24px;
  text-align: center;
}
.rmi-mission p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: #2D1B4E;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}
.rmi-mission span { color: #C9933A; }

/* ─── THREE PILLARS ─────────────────────────────────────── */
.rmi-pillars {
  background: #2D1B4E;
  padding: 96px 24px;
}
.rmi-pillars-header {
  text-align: center;
  margin-bottom: 64px;
}
.rmi-pillars-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #FAF6EF;
  margin-bottom: 12px;
}
.rmi-pillars-header p {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9933A;
}
.rmi-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.rmi-pillar {
  background: rgba(250,246,239,0.04);
  border-top: 2px solid #C9933A;
  padding: 48px 36px;
  text-align: center;
  transition: background 0.3s;
}
.rmi-pillar:hover { background: rgba(201,147,58,0.08); }
.rmi-roman {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: #C9933A;
  margin-bottom: 20px;
  display: block;
}
.rmi-pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 2rem;
  color: #FAF6EF;
  margin-bottom: 20px;
}
.rmi-pillar-verse {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #C9933A;
  margin-bottom: 16px;
}
.rmi-pillar p {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(250,246,239,0.7);
  line-height: 1.8;
}

/* ─── SCRIPTURE BANNER ──────────────────────────────────── */
.rmi-scripture {
  background: #E8C4B8;
  padding: 96px 24px;
  text-align: center;
}
.rmi-scripture blockquote {
  max-width: 760px;
  margin: 0 auto;
  border: none;
  padding: 0;
}
.rmi-scripture blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  color: #2D1B4E;
  line-height: 1.7;
  margin-bottom: 24px;
}
.rmi-scripture cite {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2D1B4E;
  opacity: 0.6;
}

/* ─── CLOSING CTA ───────────────────────────────────────── */
.rmi-cta {
  background: #FAF6EF;
  padding: 100px 24px;
  text-align: center;
}
.rmi-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #2D1B4E;
  margin-bottom: 20px;
  line-height: 1.15;
}
.rmi-cta h2 em { color: #C9933A; font-style: italic; }
.rmi-cta p {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: #3A3A3A;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.rmi-btn-secondary {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FAF6EF;
  background: #2D1B4E;
  padding: 16px 44px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.rmi-btn-secondary:hover { background: #3d2660; transform: translateY(-2px); }