/* ════════════════════════════════════════════════
   MagMin Home - Magnificent Ministries BaseCamp
   Decision-gate homepage, no third-party JS or CSS
   ════════════════════════════════════════════════ */

:root {
  --ink: #2a1a50;
  --purple-deep: #1a1050;
  --purple: #4a2a8a;
  --purple-mid: #7a4ab0;
  --purple-soft: #b07ad8;
  --lavender: #e8d8f8;
  --lavender-soft: #f0e8fa;
  --lavender-pale: #f8f2fd;
  --gold: #f0d070;
  --gold-deep: #c8a030;
  --gold-soft: #fdf6e0;
  --body: #4a3a6e;
  --muted: #8a7aa8;
  --line: rgba(90, 58, 144, 0.14);
  --serif: 'Playfair Display', Georgia, serif;
  --serif-alt: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #fff;
  color: var(--body);
  font-family: var(--serif-alt);
  font-size: 1.06rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
a:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; }
::selection { background: var(--lavender); color: var(--ink); }

.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
section[id], article[id] { scroll-margin-top: 4.5rem; }

/* ── Kicker ── */
.kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.kicker-line { display: block; width: 1.5rem; height: 1px; background: var(--gold-deep); flex-shrink: 0; }
.kicker--center { justify-content: center; }
.kicker--light { color: var(--gold); }
.kicker--light .kicker-line { background: var(--gold); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.btn--purple { background: var(--purple); color: #fff; box-shadow: 0 0 26px rgba(139, 109, 195, 0.5); }
.btn--purple:hover { background: var(--purple-mid); transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #2a1a10; box-shadow: 0 0 20px rgba(240, 208, 112, 0.45); }
.btn--gold:hover { background: #f6dd8e; transform: translateY(-2px); }
.btn--lg { padding: 1.1rem 2.4rem; font-size: 0.85rem; }

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 76rem;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap; /* Allows items to flow cleanly on small screens */
}
.nav-brand { 
  display: flex; 
  align-items: center; 
  gap: 0.7rem; 
  flex-shrink: 0; /* Prevents wordmark/logo from shrinking or disappearing */
}
.nav-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.nav-name { display: flex; flex-direction: column; line-height: 1.15; }
.nav-name-main { font-family: var(--serif); font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.nav-name-sub { font-family: var(--sans); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

.nav-links { 
  display: flex; 
  align-items: center; 
  gap: 1.2rem; 
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--purple); }

.nav-cta { 
  padding: 0.7rem 1.4rem; 
  font-size: 0.72rem; 
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Mobile Responsive Adjustments ── */
@media (max-width: 760px) {
  .nav-inner {
    padding: 0.6rem 1rem;
    gap: 0.6rem;
  }
  
  .nav-name-main { font-size: 0.85rem; }
  .nav-name-sub { font-size: 0.5rem; }
  
  .nav-links {
    gap: 0.6rem;
    order: 3; /* Places links cleanly below or beside the header on small screens */
    width: 100%;
    justify-content: center;
  }

  .nav-links a {
    font-size: 0.65rem;
    padding: 0.2rem 0;
  }

  .nav-cta {
    padding: 0.4rem 0.8rem;
    font-size: 0.65rem;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #1a1050 0%, #2e1a6e 25%, #4a2a8a 48%, #7a4ab0 68%, #b07ad8 84%, #f0c8e8 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(26, 16, 80, 0.6) 0%, rgba(46, 26, 110, 0.38) 40%, rgba(240, 200, 232, 0.18) 100%);
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.3;
  background: radial-gradient(ellipse, #c09af0 0%, transparent 70%);
  filter: blur(70px);
}
.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 52rem;
  margin: 0 auto;
  padding: 6rem 1.5rem 8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-verse {
  font-family: var(--serif-alt);
  font-style: italic;
  font-size: 1.05rem;
  color: #e8d8f8;
  letter-spacing: 0.02em;
  margin-bottom: 1.6rem;
  opacity: 0.95;
  animation: fadeUp 0.9s ease both, shimmer 4s ease-in-out 1s infinite;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 900;
  color: #fff;
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  animation: fadeUp 1s ease both, glowPulse 5s ease-in-out 1s infinite;
}
.hero-title-block { display: block; }
.hero-rule { width: 6rem; height: 1px; margin: 0 auto 1.6rem; background: linear-gradient(90deg, transparent, #f0d070, transparent); animation: fadeUp 1.1s ease both; }
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: #fdf0d0;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  line-height: 1.4;
  margin-bottom: 1.4rem;
  max-width: 38rem;
  animation: fadeUp 1.2s ease both;
}
.hero-lede {
  font-family: var(--serif-alt);
  font-weight: 300;
  color: #e8daf8;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
  max-width: 42rem;
  margin-bottom: 2.4rem;
  animation: fadeUp 1.3s ease both;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; animation: fadeUp 1.4s ease both; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
}
.hero-scroll-line { width: 1px; height: 2.5rem; background: linear-gradient(180deg, transparent, #f0d070); }

@keyframes shimmer { 0% { opacity: 0.65; } 50% { opacity: 1; } 100% { opacity: 0.65; } }
@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 18px rgba(139, 109, 195, 0.45), 0 0 40px rgba(240, 200, 100, 0.22); }
  50% { text-shadow: 0 0 32px rgba(139, 109, 195, 0.65), 0 0 60px rgba(240, 200, 100, 0.35); }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ── Sections ── */
.section { padding: 5.5rem 0; }
.section-head { max-width: 44rem; margin-bottom: 3.5rem; }
.section-head .kicker { margin-bottom: 1.1rem; }
.section-title {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}
.section-lede { font-size: 1.12rem; line-height: 1.75; color: var(--body); max-width: 40rem; }

/* ── Programs intro ── */
.programs { background: #fff; border-bottom: 1px solid var(--line); }

/* ── Formation arc ── */
.arc { display: flex; align-items: stretch; gap: 0.9rem; margin-top: 2.5rem; }
.arc-step {
  flex: 1;
  background: var(--lavender-pale);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 1.4rem 1rem;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.arc-step:hover { transform: translateY(-3px); border-color: rgba(200, 160, 48, 0.45); }
.arc-num { display: block; font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: var(--purple-mid); }
.arc-label { display: block; font-family: var(--sans); font-weight: 600; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); margin-top: 0.4rem; }
.arc-sub { display: block; font-family: var(--serif-alt); font-style: italic; font-size: 0.95rem; color: var(--muted); margin-top: 0.15rem; }
.arc-arrow { align-self: center; font-family: var(--sans); font-size: 1.3rem; color: var(--gold-deep); flex-shrink: 0; }
@media (max-width: 760px) {
  .arc { flex-direction: column; }
  .arc-arrow { transform: rotate(90deg); align-self: center; }
}

/* ── Pillars ── */
.pillar { position: relative; padding: 5rem 0; }
.pillar--1 { background: var(--lavender-pale); }
.pillar--2 { background: #fff; }
.pillar--3 { background: var(--lavender-soft); }
.pillar--4 { background: #fff; }
.pillar + .pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 68rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
}
.pillar-grid { display: grid; grid-template-columns: 13rem 1fr; gap: 2.5rem; align-items: start; }
.pillar-num {
  display: block;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--purple), var(--purple-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pillar-role { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); margin-top: 0.4rem; }
.pillar-body .kicker { margin-bottom: 0.9rem; }
.pillar-title {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.pillar-tagline { font-family: var(--serif); font-style: italic; color: var(--purple-mid); font-size: 1.15rem; margin-bottom: 1.2rem; }
.pillar-copy { font-size: 1.1rem; line-height: 1.8; color: var(--body); max-width: 42rem; margin-bottom: 1.4rem; }
.pillar-points { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.6rem; }
.pillar-points li {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
}
.pillar--2 .pillar-points li, .pillar--4 .pillar-points li { background: var(--lavender-pale); }
.pillar-builds {
  font-family: var(--serif-alt);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  background: var(--gold-soft);
  border-left: 3px solid var(--gold-deep);
  padding: 0.9rem 1.2rem;
  border-radius: 0 0.6rem 0.6rem 0;
  max-width: 42rem;
}
.pillar-builds strong {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 0.25rem;
}
@media (max-width: 860px) {
  .pillar-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .pillar-num { font-size: 3rem; }
}

/* ── Lane (podcast) ── */
.lane { padding: 5.5rem 0; background: linear-gradient(180deg, var(--lavender-soft), var(--lavender-pale)); }
.lane-card {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 18px 44px rgba(90, 58, 144, 0.08);
}
.lane-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
}
.lane-card .kicker { margin-bottom: 0.9rem; }
.lane-title { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 0.7rem; }
.lane-tagline { font-family: var(--serif); font-style: italic; color: var(--purple-mid); font-size: 1.15rem; margin-bottom: 1.2rem; }
.lane-copy { font-size: 1.08rem; line-height: 1.8; color: var(--body); margin-bottom: 1.5rem; }
.lane-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--lavender);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.2rem;
}
.lane-note { font-family: var(--serif-alt); font-style: italic; font-size: 0.98rem; color: var(--muted); }

/* ── SIG ── */
.sig { background: #fff; }
.sig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.sig-card {
  background: var(--lavender-pale);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sig-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(90, 58, 144, 0.1); }
.sig-card--gold { background: var(--gold-soft); }
.sig-icon { width: 2.9rem; height: 2.9rem; border-radius: 0.8rem; display: flex; align-items: center; justify-content: center; }
.sig-icon--purple { background: var(--lavender); color: var(--purple); }
.sig-icon--gold { background: var(--gold); color: var(--gold-deep); }
.sig-card h3 { font-family: var(--serif); font-weight: 700; font-size: 1.55rem; color: var(--ink); }
.sig-tag { font-family: var(--sans); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }
.sig-card p { font-size: 1.02rem; line-height: 1.75; color: var(--body); }
.sig-pill {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  margin-top: auto;
}
@media (max-width: 760px) { .sig-grid { grid-template-columns: 1fr; } }

/* ── Community ── */
.community {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--purple-deep) 0%, #3a1f72 55%, var(--purple) 100%);
  overflow: hidden;
}
.community::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(192, 154, 240, 0.28), transparent 60%);
  pointer-events: none;
}
.community-inner { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
.community-title {
  font-family: var(--serif);
  font-weight: 700;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.12;
  margin: 1.1rem 0 1.4rem;
  max-width: 40rem;
}
.community-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: var(--gold);
  line-height: 1.5;
  max-width: 40rem;
  margin-bottom: 1.4rem;
}
.community-lede { color: #ddd0f8; font-size: 1.12rem; line-height: 1.8; max-width: 40rem; margin-bottom: 2.8rem; }
.community-roles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; width: 100%; margin-bottom: 3rem; }
.role {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 1.7rem 1.3rem;
  text-align: left;
}
.role-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.7rem;
  background: rgba(240, 208, 112, 0.14);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.role h3 { font-family: var(--serif); font-weight: 700; color: #fff; font-size: 1.12rem; margin-bottom: 0.5rem; }
.role p { font-size: 0.95rem; line-height: 1.65; color: #c9b8ea; }
.community-note { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #a98fd0; margin-top: 1.4rem; }
@media (max-width: 900px) { .community-roles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .community-roles { grid-template-columns: 1fr; } }

/* ── Leadership ── */
.leadership { background: #fff; }
.leadership-profiles { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 2.5rem; }
.leader { display: flex; flex-direction: column; }
.leader-media { overflow: hidden; border-radius: 0.5rem; margin-bottom: 1.6rem; background: var(--lavender-pale); }
.leader-media img { width: 100%; height: 22rem; object-fit: cover; object-position: top; filter: grayscale(15%); transition: filter 0.5s ease, transform 0.5s ease; }
.leader:hover .leader-media img { filter: grayscale(0%); transform: scale(1.02); }
.leader-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.9rem; }
.leader-badge {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-soft);
  border: 1px solid rgba(200, 160, 48, 0.35);
  padding: 0.4rem 0.9rem;
  border-radius: 0.3rem;
  white-space: nowrap;
}
.leader-rule { flex: 1; height: 1px; background: var(--line); }
.leader h3 { font-family: var(--serif); font-weight: 700; font-size: 1.6rem; color: var(--ink); margin-bottom: 0.8rem; }
.leader p { font-size: 1.04rem; line-height: 1.75; color: var(--body); margin-bottom: 1.2rem; }
.leader-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.leader-tags span {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--lavender-pale);
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  padding: 0.35rem 0.8rem;
}
@media (max-width: 900px) { .leadership-profiles { grid-template-columns: 1fr; } }

/* ── Partnerships ── */
.partnerships { padding-top: 0; }
.partnerships-divider { border: 0; border-top: 1px solid var(--line); margin: 0 0 4.5rem; }
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.5rem; }
.partner-card {
  background: var(--lavender-pale);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.partner-card--dashed { border-style: dashed; opacity: 0.6; }
.partner-card--sky { background: #f0f8ff; border-color: #dbe9f5; }
.partner-card--gold { background: var(--gold-soft); border-color: rgba(200, 160, 48, 0.35); }
.partner-head { display: flex; align-items: center; gap: 0.8rem; }
.partner-icon { width: 2.2rem; height: 2.2rem; border-radius: 0.4rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.partner-icon--sky { background: #dbeafe; color: #1d4ed8; }
.partner-icon--gold { background: #fde68a; color: #b45309; }
.partner-icon--stone { background: #e7e5e4; color: #78716c; }
.partner-label { font-family: var(--sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.partner-card h4 { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; color: var(--ink); margin-bottom: 0.45rem; }
.partner-card p { font-size: 0.95rem; line-height: 1.7; color: var(--body); }
@media (max-width: 900px) { .partners-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .partners-grid { grid-template-columns: 1fr; } }

/* ── Footer ── */
.site-footer { padding: 4rem 1.5rem 2.5rem; text-align: center; background: linear-gradient(180deg, var(--lavender-pale), #f4eefc); }
.footer-rule { width: 5rem; height: 1px; margin: 0 auto 2.5rem; background: linear-gradient(90deg, transparent, var(--gold-deep), transparent); }
.footer-verse {
  font-family: var(--serif-alt);
  font-style: italic;
  color: #5a3a90;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  line-height: 1.6;
  max-width: 34rem;
  margin: 0 auto 2rem;
}
.footer-verse-src {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 0.6rem;
}
.footer-line { width: 3.5rem; height: 1px; margin: 0 auto 1.6rem; background: rgba(139, 109, 195, 0.35); }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; margin-bottom: 1.6rem; }
.footer-nav a { font-family: var(--sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); transition: color 0.2s ease; }
.footer-nav a:hover { color: var(--purple); }
.footer-copy { font-family: var(--sans); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: #a090c8; }

/* ── Small screens ── */
@media (max-width: 560px) {
  .section { padding: 4rem 0; }
  .pillar { padding: 4rem 0; }
  .lane { padding: 4rem 0; }
  .community { padding: 4.5rem 0; }
  .hero-inner { padding: 5rem 1.25rem 7rem; }
  .btn { padding: 0.85rem 1.5rem; }
}
