/* =====================================================================
   ROCKING LIFE MINISTRY — MASTER STYLESHEET
   Dark charcoal + ember orange. Mobile-first.
   Used by: index.html, ignite.html, stories.html, about.html, give.html
   ===================================================================== */

:root {
  --rl-charcoal: #1C1C1C;
  --rl-dark: #111111;
  --rl-ember: #E05C1A;
  --rl-amber: #C97D2A;
  --rl-copper: #8B4A2F;
  --rl-ash: #2E2E2E;
  --rl-smoke: #444444;
  --rl-stone: #888888;
  --rl-fog: #CCCCCC;
  --rl-white: #F2EDE8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', serif;
  background: var(--rl-charcoal);
  color: var(--rl-fog);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* =====================================================================
   NAVIGATION — Desktop: full nav. Mobile (≤768px): hamburger menu.
   Parity across all pages: logo left, links center, Reserve button right.
   ===================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  background: var(--rl-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: padding 0.3s ease;
}
.nav.scrolled { padding: 0.9rem 2.5rem; }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.wordmark {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rl-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 101;
  position: relative;
}
.wordmark-dot {
  width: 7px;
  height: 7px;
  background: var(--rl-ember);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--rl-ember);
  animation: emberPulse 2.8s ease-in-out infinite;
}
@keyframes emberPulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); box-shadow: 0 0 18px var(--rl-ember); }
}

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rl-stone);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--rl-white); }
.nav-links a.active { color: var(--rl-white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0.75rem;
  right: 0.75rem;
  height: 1px;
  background: var(--rl-ember);
}

/* The Reserve Your Spot CTA button — lives at end of nav-links on desktop */
.nav-cta-btn {
  background: var(--rl-ember);
  color: var(--rl-white) !important;
  padding: 0.65rem 1.4rem;
  border-radius: 2px;
  letter-spacing: 0.15em !important;
  font-weight: 600 !important;
  transition: background 0.2s ease, transform 0.15s ease !important;
  white-space: nowrap;
}
.nav-cta-btn:hover { background: #C44F12; transform: translateY(-1px); }
.nav-cta-btn.active::after { display: none; }

/* =====================================================================
   HAMBURGER BUTTON — visible only on mobile
   ===================================================================== */

.nav-hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 101;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--rl-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 1px;
}
/* Hamburger -> X animation when menu open */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =====================================================================
   MOBILE NAV MENU — full-screen overlay below 768px
   ===================================================================== */

@media (max-width: 768px) {
  .nav { padding: 1rem 1.25rem; }
  .nav-hamburger { display: flex; }

  /* Hide desktop nav links; they'll live inside the mobile menu overlay */
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    min-height: 100vh;
    background: var(--rl-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 4rem 2rem;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    z-index: 99;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    font-size: 1.4rem;
    letter-spacing: 0.18em;
    padding: 1rem 0;
    color: var(--rl-white);
  }
  .nav-links a.active::after {
    bottom: 0.4rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 40px;
  }
  .nav-cta-btn {
    padding: 1rem 2.5rem;
    font-size: 0.95rem !important;
    margin-top: 1.5rem;
  }

  /* Lock body scroll when menu is open */
  body.menu-open { overflow: hidden; }
}

/* =====================================================================
   LAYOUT
   ===================================================================== */

section { padding: 8rem 2.5rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 780px; margin: 0 auto; }
@media (max-width: 768px) { section { padding: 5rem 1.5rem; } }

.bg-charcoal { background: var(--rl-charcoal); }
.bg-dark { background: var(--rl-dark); }

/* =====================================================================
   HERO BASE
   ===================================================================== */

.hero {
  min-height: 85vh;
  padding: 10rem 2.5rem 6rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--rl-charcoal);
}
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224, 92, 26, 0.15) 0%, rgba(224, 92, 26, 0) 60%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent 0%, var(--rl-charcoal) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rl-ember);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--rl-ember);
}

.hero-headline {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: var(--rl-white);
  text-transform: uppercase;
  max-width: 15ch;
  margin-bottom: 2rem;
}
.hero-headline .ember-word {
  color: var(--rl-ember);
  display: inline-block;
}
.hero-sub {
  font-family: 'Source Serif 4', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.5;
  color: var(--rl-fog);
  max-width: 42ch;
}

/* Fade-in animation utilities (used on hero elements) */
.fade-in-1 { opacity: 0; animation: fadeInUp 0.9s 0.2s ease forwards; }
.fade-in-2 { opacity: 0; animation: fadeInUp 1s 0.4s ease forwards; }
.fade-in-3 { opacity: 0; animation: fadeInUp 1s 0.7s ease forwards; }
.fade-in-4 { opacity: 0; animation: fadeInUp 1s 1s ease forwards; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero scroll indicator (homepage) */
.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s 1.5s ease forwards;
  z-index: 2;
}
.scroll-indicator-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--rl-ember));
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.scroll-indicator-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--rl-stone);
  text-transform: uppercase;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* Section-level eyebrow (same visual as .eyebrow but for mid-page sections) */
.section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rl-ember);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--rl-ember);
}

.section-headline {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--rl-white);
  text-transform: uppercase;
  margin-bottom: 2rem;
  max-width: 18ch;
}

.section-body {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  color: var(--rl-fog);
  max-width: 62ch;
}
.section-body p { margin-bottom: 1.25rem; }
.section-body p:last-child { margin-bottom: 0; }
.section-body em { color: var(--rl-white); font-style: italic; }

.closer-line {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--rl-white);
  max-width: 52ch;
  margin: 0 auto;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--rl-ember);
  color: var(--rl-white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.15rem 2.2rem;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 20px rgba(224, 92, 26, 0.3);
}
.btn-primary:hover {
  background: #C44F12;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224, 92, 26, 0.45);
}
.btn-primary .arrow {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}
.btn-primary:hover .arrow { transform: translateX(4px); }

/* Hero CTA wrapper — generous spacing between text and button */
.hero-cta-wrap {
  margin-top: 4.5rem;
}
@media (max-width: 768px) {
  .hero-cta-wrap { margin-top: 3rem; }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--rl-ember);
  border: none;
  padding: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
}
.btn-secondary::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--rl-ember);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.btn-secondary:hover { color: var(--rl-white); }
.btn-secondary:hover::after { transform: scaleX(1); }

/* =====================================================================
   FOOTER
   ===================================================================== */

footer {
  background: var(--rl-dark);
  padding: 4rem 2.5rem 3rem;
  border-top: 1px solid var(--rl-smoke);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-org {
  font-family: 'Source Serif 4', serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--rl-stone);
}
.footer-org strong {
  display: block;
  color: var(--rl-white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}
.footer-legal {
  flex-basis: 100%;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid var(--rl-smoke);
  font-family: 'Source Serif 4', serif;
  font-size: 0.8rem;
  color: var(--rl-stone);
}

/* Member login — quiet text link, sits between identity block and legal line */
.footer-member-login {
  flex-basis: 100%;
  padding-top: 1.5rem;
}
.footer-member-login a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rl-stone);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-member-login a:hover { color: var(--rl-ember); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* =====================================================================
   HOMEPAGE-SPECIFIC STYLES
   Previously inline in index.html — consolidated here.
   ===================================================================== */

/* SECTION 2 — WHY WE BUILT THIS */
.why {
  background: var(--rl-charcoal);
  text-align: center;
}
.why-line-1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--rl-white);
  text-transform: uppercase;
  max-width: 22ch;
  margin: 0 auto 2rem;
}
.why-line-2 {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--rl-fog);
  max-width: 52ch;
  margin: 0 auto;
}

/* SECTION 3 — WHAT WE BUILD */
.what {
  background: var(--rl-dark);
  position: relative;
  overflow: hidden;
}
.what::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(224, 92, 26, 0.08) 0%, transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
}
.what-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rl-ember);
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}
.what-headline {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--rl-white);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.what-body p {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  color: var(--rl-fog);
  margin-bottom: 1.25rem;
  max-width: 62ch;
}
.what-body p:last-child {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  color: var(--rl-white);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  margin-top: 2rem;
}

/* SECTION 4 — EMBER VISION */
.ember-vision {
  background: var(--rl-charcoal);
  position: relative;
  overflow: hidden;
}
.ember-vision::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(224, 92, 26, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
.ember-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rl-ember);
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ember-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--rl-ember);
}
.ember-quote {
  font-family: 'Source Serif 4', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  line-height: 1.4;
  color: var(--rl-white);
  border-left: 3px solid var(--rl-ember);
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  max-width: 48ch;
  position: relative;
  z-index: 1;
}
.ember-attribution {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rl-stone);
  padding-left: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.ember-closer {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.5;
  color: var(--rl-white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  max-width: 36ch;
  position: relative;
  z-index: 1;
}
.ember-closer .line-highlight {
  color: var(--rl-ember);
}

/* SECTION 5 — JOE'S STORY */
.story-joe { background: var(--rl-dark); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.story-video-placeholder {
  aspect-ratio: 4/3;
  background: var(--rl-ash);
  border: 1px solid var(--rl-smoke);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s ease;
  overflow: hidden;
}
.story-video-placeholder:hover {
  border-color: var(--rl-ember);
}
.story-video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(224, 92, 26, 0.08) 0%, transparent 70%);
}
.play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(224, 92, 26, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, background 0.3s ease;
}
.story-video-placeholder:hover .play-icon {
  transform: scale(1.1);
  background: var(--rl-ember);
}
.play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 14px solid var(--rl-white);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 4px;
}
.video-placeholder-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rl-stone);
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}
.story-name-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rl-ember);
  margin-bottom: 1.5rem;
}
.story-quote {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.45;
  color: var(--rl-white);
  border-left: 3px solid var(--rl-ember);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.story-quote-attribution {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rl-stone);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}
.story-body p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--rl-fog);
  margin-bottom: 1.25rem;
}
.story-body p:last-child { margin-bottom: 0; }
.story-body .emphasis {
  color: var(--rl-white);
  font-style: italic;
}

/* SECTION 6 — TODD'S STORY */
.story-todd {
  background: var(--rl-charcoal);
  position: relative;
}
.story-todd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--rl-ember);
  opacity: 0.3;
}
.todd-pullquote {
  font-family: 'Source Serif 4', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.45;
  color: var(--rl-white);
  border-left: 3px solid var(--rl-ember);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  max-width: 58ch;
}
.todd-attribution {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rl-stone);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}
.todd-body {
  max-width: 64ch;
}
.todd-body p {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--rl-fog);
  margin-bottom: 1.25rem;
}
.todd-hinge {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rl-ember);
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 3px solid var(--rl-ember);
  margin: 2rem 0;
  max-width: 48ch;
}

/* SECTION 7 — IGNITE INVITATION */
.ignite {
  background: var(--rl-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ignite::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(224, 92, 26, 0.1) 0%, transparent 55%);
  pointer-events: none;
}
.ignite-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ignite-flame {
  width: 48px;
  height: 48px;
  margin: 0 auto 2.5rem;
}
.ignite-flame svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(224, 92, 26, 0.6));
  animation: flameFlicker 3s ease-in-out infinite;
}
@keyframes flameFlicker {
  0%, 100% { transform: scale(1) rotate(-1deg); opacity: 0.95; }
  33% { transform: scale(1.05) rotate(1deg); opacity: 1; }
  66% { transform: scale(0.98) rotate(-0.5deg); opacity: 0.9; }
}
.ignite-headline {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  color: var(--rl-white);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.ignite-body {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  color: var(--rl-fog);
  max-width: 56ch;
  margin: 0 auto 3rem;
}

/* SECTION 8 — THE MISSION (Per's story) */
.mission {
  background: var(--rl-charcoal);
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
}
.mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--rl-ember);
  margin-top: 4rem;
}
.mission-inner {
  max-width: 680px;
  margin: 0 auto;
}
.mission-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rl-ember);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mission-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--rl-ember);
}
.mission-opener {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  line-height: 1.4;
  color: var(--rl-white);
  margin-bottom: 2.5rem;
  letter-spacing: 0.005em;
}
@media (max-width: 768px) {
  .mission-opener {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}

.mission-story {
  font-family: 'Source Serif 4', serif;
  margin-bottom: 3rem;
}
.mission-story p {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  line-height: 1.75;
  color: var(--rl-fog);
  margin-bottom: 1.5rem;
}
.mission-story p:first-child {
  font-size: clamp(1.2rem, 1.7vw, 1.4rem);
  color: var(--rl-white);
  font-weight: 400;
}
.mission-pivot {
  font-family: 'Oswald', sans-serif;
  font-weight: 600 !important;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem) !important;
  line-height: 1.3 !important;
  color: var(--rl-white) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  padding: 1.5rem 0 1.5rem 1.5rem !important;
  border-left: 3px solid var(--rl-ember) !important;
  margin: 2.5rem 0 !important;
  max-width: 32ch !important;
}
.mission-ask {
  font-family: 'Source Serif 4', serif !important;
  font-style: italic !important;
  font-size: clamp(1.2rem, 1.7vw, 1.4rem) !important;
  color: var(--rl-white) !important;
  margin-top: 2rem !important;
}
.mission-signature {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rl-stone);
  margin-top: 3rem;
}

/* =====================================================================
   MOBILE ADJUSTMENTS for homepage sections
   ===================================================================== */

@media (max-width: 768px) {
  .hero { min-height: 80vh; padding: 8rem 1.5rem 5rem; }
  .hero::before { width: 400px; height: 400px; }

  .story-video-placeholder { aspect-ratio: 16/10; }

  .mission { padding: 6rem 1.5rem; }
  .mission-pivot { font-size: 1.25rem !important; padding-left: 1rem !important; }

  .footer-inner { flex-direction: column; gap: 1.5rem; }
}
