:root {
  --font-display: 'Cinzel', 'Playfair Display', Georgia, "Times New Roman", serif;
  --font-heading: 'Playfair Display', Georgia, "Times New Roman", serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ink: #16342d;
  --ink-2: #245146;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --gold: #c88b2f;
  --gold-dark: #9a641d;
  --sage: #dce8df;
  --terracotta: #b95d43;
  --line: rgba(22, 52, 45, 0.14);
  --muted: #66736e;
  --white: #ffffff;
  --shadow: 0 18px 54px rgba(22, 52, 45, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1260px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; }
img, svg { max-width: 100%; height: auto; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

/* Global Reading Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, #48bb78 100%);
  z-index: 1000;
  transition: width 0.1s ease-out;
  width: 0%;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}
.skip-link:focus { left: 12px; }

.container {
  width: min(calc(100% - 36px), var(--max));
  max-width: var(--max);
  margin: 0 auto;
  box-sizing: border-box;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold); }
.display {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.8vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  word-break: break-word;
}
.section-title {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  word-break: break-word;
}
.lead { font-size: clamp(1.02rem, 1.8vw, 1.22rem); color: #405851; word-break: break-word; }
.muted { color: var(--muted); }
.gold { color: var(--gold-dark); }

/* Single-HTML-File Multi-Page Architecture (Discrete Page Views per Menu Item) */
.page-view {
  display: none !important;
}
.page-view.active-page {
  display: block !important;
  animation: pageFadeIn 0.25s ease-out;
}
.page-view.active-page .reveal {
  opacity: 1 !important;
  transform: none !important;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   ENHANCED HEADER & BREADCRUMB NAVIGATION
   ========================================================================== */
/* ==========================================================================
   INTERACTIVE BREADCRUMBS MENUBAR & LEARNING JOURNEY CONTROLLER
   ========================================================================== */
/* ==========================================================================
   CLEAN & INTUITIVE TOP HEADER & MAIN NAVIGATION
   ========================================================================== */
/* ==========================================================================
   PURE BREADCRUMB MENUBAR (ALL NAVIGATION COLLAPSED INTO BREADCRUMBS)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255, 253, 248, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 16px rgba(22, 52, 45, 0.05);
}
.header-wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  flex-shrink: 0;
}
.brand-logo {
  width: 54px;
  height: 30px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}
.brand-name {
  font-size: 1.05rem;
  white-space: nowrap;
  color: var(--ink);
}

/* PURE BREADCRUMB MENUBAR */
.breadcrumb-menubar {
  display: flex;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  max-width: 100%;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}
.breadcrumb-trail-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}
.bc-crumb-item {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.bc-crumb-link {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.bc-crumb-link:hover {
  background: var(--paper);
  color: var(--gold-dark);
}
.bc-crumb-divider {
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.95rem;
  user-select: none;
}
.bc-section-btn {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  max-width: 320px;
  text-align: left;
}
.bc-section-btn:hover, .bc-dropdown-wrap.open .bc-section-btn {
  background: var(--paper);
  color: var(--gold-dark);
}
.bc-caret-icon {
  font-size: 0.65rem;
  color: var(--gold-dark);
  transition: transform 0.2s ease;
}
.bc-dropdown-wrap.open .bc-caret-icon {
  transform: rotate(180deg);
}

/* COLLAPSED DROPDOWN MENU */
.bc-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
  min-width: 290px;
  max-width: 380px;
  max-height: 420px;
  overflow-y: auto;
  padding: 8px;
  display: none;
  z-index: 400;
  animation: pageFadeIn 0.2s ease-out;
}
.bc-dropdown-wrap.open .bc-dropdown-menu {
  display: block;
}
.bc-menu-group-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  padding: 8px 12px 4px;
}
.bc-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.15s ease;
}
.bc-menu-link:hover, .bc-menu-link.active {
  background: var(--sage);
  color: var(--ink);
}

/* STEPPER BUTTONS */
.bc-stepper-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  padding-left: 8px;
  border-left: 1px solid var(--line);
}
.bc-step-btn {
  background: var(--paper);
  border: 1px solid var(--line);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ink);
  transition: all 0.2s ease;
}
.bc-step-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* HEADER RIGHT CTA */
.header-right-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-cta-link {
  background: var(--gold-dark);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.header-cta-link:hover {
  background: var(--gold);
  color: var(--ink);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
  #bcActiveTitle { max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 0.82rem; }
  .brand-name { display: none; }
}
@media (max-width: 480px) {
  #bcActiveTitle { max-width: 100px; }
  .breadcrumb-menubar { padding: 3px 8px; }
  .header-cta-link { padding: 6px 12px; font-size: 0.8rem; }
}

/* BREADCRUMB DROPDOWN MENUS */
.bc-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  min-width: 280px;
  max-width: 360px;
  max-height: 400px;
  overflow-y: auto;
  padding: 8px;
  display: none;
  z-index: 400;
  animation: pageFadeIn 0.2s ease-out;
}
.bc-step-item.open .bc-dropdown-panel {
  display: block;
}
.bc-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.15s ease;
}
.bc-dropdown-item:hover, .bc-dropdown-item.active {
  background: var(--sage);
  color: var(--ink);
}
.bc-item-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold-dark);
  text-transform: uppercase;
}

/* JOURNEY STEPPER CONTROLS */
.journey-stepper-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid var(--line);
}
.stepper-btn {
  background: var(--paper);
  border: 1px solid var(--line);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ink);
  transition: all 0.2s ease;
}
.stepper-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* HEADER ACTION BUTTONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.menu-hub-btn {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(22, 52, 45, 0.15);
}
.menu-hub-btn:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
}
.nav-cta {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
}



/* ==========================================================================
   ROLE-BASED PERSPECTIVE SWITCHER ON LESSONS
   ========================================================================== */
.role-switcher-container {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
}
.role-switcher-header {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.role-switcher-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.role-btn {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.2s ease;
}
.role-btn:hover, .role-btn.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.role-perspective-panel {
  margin-top: 14px;
  padding: 14px 18px;
  background: var(--paper);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  font-size: 0.92rem;
  color: #384e47;
  line-height: 1.55;
}

/* ==========================================================================
   INTERACTIVE PERSONAL REFLECTION JOURNAL
   ========================================================================== */
.journal-container {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}
.journal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.journal-header h5 {
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0;
}
.journal-textarea {
  width: 100%;
  min-height: 90px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: #fdfbf7;
  color: var(--ink);
  resize: vertical;
  line-height: 1.5;
}
.journal-textarea:focus {
  border-color: var(--gold);
  background: #fff;
}
.journal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.journal-status {
  font-size: 0.78rem;
  color: var(--muted);
}
.journal-save-btn {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.journal-save-btn:hover {
  background: var(--ink);
  color: #fff;
}

/* ==========================================================================
   JOURNEY NEXT / PREV MODULE FOOTER
   ========================================================================== */
.journey-module-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 14px;
}
.journey-step-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  transition: all 0.2s ease;
}
.journey-step-link:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.journey-step-link.primary {
  background: var(--gold-dark);
  color: #fff;
  border-color: var(--gold-dark);
}
.journey-step-link.primary:hover {
  background: var(--gold);
  color: var(--ink);
}

.hub-icon {
  color: var(--gold);
  font-size: 1rem;
}
.hub-badge {
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 10px;
}
.nav-cta {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
  transform: translateY(-1px);
}

/* ==========================================================================
   CATEGORIZED MEGA SECTIONS DRAWER / EXPLORER MODAL
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 38, 33, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.sections-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(520px, 92vw);
  height: 100%;
  background: var(--paper);
  z-index: 501;
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid var(--line);
}
.sections-drawer.open {
  transform: translateX(0);
}
.drawer-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
}
.drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0;
}
.drawer-close-btn {
  background: none;
  border: 1px solid var(--line);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.drawer-close-btn:hover {
  background: var(--ink);
  color: var(--white);
}
.drawer-search-wrap {
  padding: 16px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.drawer-search-input {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: var(--cream);
  color: var(--ink);
}
.drawer-search-input:focus {
  border-color: var(--gold);
  background: #fff;
}
.drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.drawer-category {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drawer-category-title {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.drawer-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  transition: all 0.2s ease;
}
.drawer-nav-item:hover, .drawer-nav-item.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateX(4px);
}
.drawer-nav-item:hover .drawer-item-sub {
  color: var(--gold-light);
}
.drawer-item-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.drawer-item-icon {
  font-size: 1.1rem;
}
.drawer-item-sub {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--muted);
}

/* FLOATING BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--ink);
  color: var(--gold);
  border: 1px solid rgba(200, 139, 47, 0.4);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--ink-2);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero { position: relative; overflow: hidden; padding: clamp(78px, 12vw, 150px) 0 84px; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 25%, rgba(200, 139, 47, 0.16), transparent 28%),
    radial-gradient(circle at 78% 78%, rgba(36, 81, 70, 0.10), transparent 24%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr); gap: 70px; align-items: center; }
.hero-copy .lead { max-width: 680px; margin: 24px 0 20px; font-size: 1.12rem; line-height: 1.7; }
.hero-copy .lead em {
  font-style: italic;
}

/* ==========================================================================
   SCHOLARLY & EXECUTIVE HERO PROCLAMATION (CLASSICAL EDITORIAL DESIGN)
   ========================================================================== */
.hero-proclamation {
  margin: 28px 0 32px;
  padding: 26px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(22, 52, 45, 0.05);
}

.proclamation-head {
  margin-bottom: 20px;
}

.proclamation-thesis {
  font-size: 1.08rem;
  line-height: 1.68;
  color: var(--ink);
  margin: 0;
}

.proclamation-thesis em {
  font-style: italic;
  color: var(--ink-2);
  font-weight: 500;
}

.proclamation-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.proclamation-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.proclamation-roman {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-dark);
  min-width: 24px;
  letter-spacing: 0.05em;
  padding-top: 1px;
}

.proclamation-item-content h4 {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 3px;
  line-height: 1.35;
}

.proclamation-item-content cite {
  display: block;
  font-style: italic;
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 500;
}
.christ-roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.role-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--pine);
}
.role-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.role-card h4 {
  font-size: 1.1rem;
  color: var(--pine);
  margin-bottom: 10px;
}
.role-card p {
  font-size: 0.91rem;
  color: var(--ink);
  line-height: 1.65;
  margin: 0;
}
.role-card em {
  color: var(--pine);
  font-weight: 600;
  font-style: normal;
}
.gospel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 32px;
}
.gospel-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.gospel-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.gospel-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: 12px;
}
.gospel-card p {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.68;
  margin: 0;
}
.gospel-card em, .gospel-exposition-wrap em {
  font-style: italic;
}
.gospel-exposition-wrap {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(22, 52, 45, 0.16); }
.btn.secondary { color: var(--ink); background: transparent; }
.btn.gold-button { border-color: var(--gold); background: var(--gold); color: #20180c; }

.hero-art {
  min-height: 470px;
  position: relative;
  display: grid;
  place-items: center;
}
.orbit {
  position: absolute;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(200, 139, 47, 0.42);
  border-radius: 50%;
}
.orbit::before, .orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(22, 52, 45, 0.15);
  border-radius: 50%;
}
.orbit::after { inset: 25%; }
.cross {
  position: relative;
  width: 90px;
  height: 250px;
  border-radius: 10px 10px 18px 18px;
  background: var(--ink);
  box-shadow: 0 30px 70px rgba(22, 52, 45, 0.28);
}
.cross::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 74px;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  background: var(--ink);
}
.cross::after {
  content: "ΧΡ";
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .12em;
}
.verse-chip {
  position: absolute;
  right: 0;
  bottom: 16px;
  max-width: 245px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  line-height: 1.4;
}
.verse-chip small { display: block; margin-top: 8px; font-family: var(--font-body); color: var(--gold-dark); font-weight: 800; }

.statement { padding: 38px 0; background: var(--ink); color: var(--white); }
.statement-grid { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; }
.statement-number { font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 6rem); line-height: 1; color: var(--gold); }
.statement p { margin: 0; font-family: var(--font-heading); font-size: clamp(1.3rem, 3vw, 2.25rem); line-height: 1.25; }

.section { padding: clamp(78px, 10vw, 126px) 0; }
.section.soft { background: var(--cream); }
.section.dark { background: var(--ink); color: var(--white); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-head .lead { max-width: 480px; margin: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card, .lesson-card, .info-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}
.value-card { min-height: 250px; }
.card-number { display: block; color: var(--gold-dark); font-weight: 900; letter-spacing: .12em; font-size: .78rem; }
.value-card h3, .lesson-card h3, .info-card h3 { margin: 34px 0 10px; font-family: var(--font-heading); font-size: 1.55rem; line-height: 1.12; }
.value-card p, .lesson-card p, .info-card p { margin-bottom: 0; color: #52635e; }

.lesson-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.lesson-card { position: relative; display: flex; flex-direction: column; min-height: 330px; overflow: hidden; }
.lesson-card:nth-child(1), .lesson-card:nth-child(2) { grid-column: span 6; }
.lesson-card:nth-child(n+3) { grid-column: span 4; }
.lesson-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -70px;
  right: -70px;
  border-radius: 50%;
  border: 28px solid rgba(200, 139, 47, .12);
}
.lesson-card h3 { margin-top: 44px; font-size: 1.75rem; }
.lesson-card a { margin-top: auto; padding-top: 24px; color: var(--gold-dark); font-weight: 900; text-decoration: none; }
.lesson-card a:hover { text-decoration: underline; }
.lesson-kicker { color: var(--terracotta); font-size: .82rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }

.pastor-wrap { display: grid; grid-template-columns: minmax(300px, .65fr) minmax(0, 1.35fr); gap: 64px; align-items: center; }
.pastor-profile {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.pastor-portrait {
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  overflow: hidden;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 12px 32px rgba(22, 52, 45, .16), 0 0 0 1px var(--line);
}
.pastor-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 24%;
}
.pastor-identity { min-width: 0; }
.pastor-identity strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1.1;
  color: var(--ink);
}
.pastor-identity span {
  display: block;
  margin-top: 7px;
  color: var(--gold-dark);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pastor-copy blockquote { margin: 30px 0; padding-left: 24px; border-left: 3px solid var(--gold); font-family: var(--font-heading); font-size: 1.35rem; line-height: 1.45; }
.doctrine-note { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.doctrine-note strong { display: block; margin-bottom: 7px; color: var(--terracotta); font-size: .8rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.doctrine-note p { margin: 0; color: #40534d; }

.cta-band { padding: 72px 0; background: var(--gold); color: #21190d; }
.cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-grid h2 { max-width: 690px; margin: 0; font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.7rem); line-height: 1.05; letter-spacing: -.04em; font-weight: 500; }
.cta-grid .btn { flex: 0 0 auto; }

.page-hero { padding: 100px 0 68px; background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero .display { font-size: clamp(3rem, 7vw, 5.8rem); max-width: 920px; }
.page-hero .lead { max-width: 720px; margin-top: 24px; }
.breadcrumbs { margin-bottom: 28px; color: var(--muted); font-size: .9rem; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr); gap: 70px; }
.prose { max-width: 760px; }
.prose h2 { margin: 2.2em 0 .6em; font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.1; letter-spacing: -.025em; }
.prose h3 { margin: 1.8em 0 .5em; font-family: var(--font-heading); font-size: 1.45rem; }
.prose p, .prose li { color: #40534d; }
.prose blockquote { margin: 34px 0; padding: 24px 28px; border-radius: 0 var(--radius-md) var(--radius-md) 0; border-left: 4px solid var(--gold); background: var(--cream); font-family: var(--font-heading); font-size: 1.25rem; color: var(--ink); }
.prose ul, .prose ol { padding-left: 1.35rem; }
.prose li { margin-bottom: 10px; }
.sidebar-card { position: sticky; top: 110px; padding: 28px; border-radius: var(--radius-md); background: var(--ink); color: var(--white); }
.sidebar-card h3 { margin-top: 0; font-family: var(--font-heading); font-size: 1.45rem; }
.sidebar-card p { color: rgba(255,255,255,.76); }
.sidebar-card a { color: var(--gold); font-weight: 800; }
.scripture-list { margin: 0; padding: 0; list-style: none; }
.scripture-list li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.14); }

.lesson-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 60px; padding-top: 28px; border-top: 1px solid var(--line); }
.lesson-nav a { text-decoration: none; font-weight: 800; color: var(--gold-dark); }
.lesson-nav a:hover { text-decoration: underline; }
.application-box { margin: 38px 0; padding: 30px; border: 1px solid rgba(200,139,47,.5); border-radius: var(--radius-md); background: #fffaf0; }
.application-box h3 { margin-top: 0; }
.questions { counter-reset: question; list-style: none; padding: 0 !important; }
.questions li { position: relative; padding: 15px 0 15px 46px; border-bottom: 1px solid var(--line); }
.questions li::before { counter-increment: question; content: counter(question); position: absolute; left: 0; top: 14px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--sage); color: var(--ink); font-weight: 900; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { display: flex; flex-direction: column; min-height: 245px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.contact-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--sage); color: var(--ink); font-size: 1.2rem; }
.contact-card h2 { margin: 32px 0 8px; font-family: var(--font-heading); font-size: 1.6rem; }
.contact-card p { margin: 0; color: var(--muted); }
.contact-card a { margin-top: auto; padding-top: 24px; color: var(--gold-dark); font-weight: 900; text-decoration: none; overflow-wrap: anywhere; }
.contact-card a:hover { text-decoration: underline; }
.programs-hero { position: relative; overflow: hidden; }
.programs-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -250px;
  border: 65px solid rgba(200, 139, 47, .14);
  border-radius: 50%;
  pointer-events: none;
}
.programs-hero .hero-actions { margin-top: 32px; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.program-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(22, 52, 45, .06);
}
.program-card:nth-child(2) { background: var(--ink); color: var(--white); transform: translateY(-16px); }
.program-audience { color: var(--terracotta); font-size: .78rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.program-card:nth-child(2) .program-audience { color: var(--gold); }
.program-card h3 { margin: 42px 0 14px; font-family: var(--font-heading); font-size: 2rem; line-height: 1.08; }
.program-card p { margin: 0 0 24px; color: #52635e; }
.program-card:nth-child(2) p, .program-card:nth-child(2) li { color: rgba(255,255,255,.76); }
.program-points { margin: auto 0 0; padding: 22px 0 0; list-style: none; border-top: 1px solid var(--line); }
.program-card:nth-child(2) .program-points { border-color: rgba(255,255,255,.14); }
.program-points li { position: relative; margin: 0 0 13px; padding-left: 22px; color: #40534d; }
.program-points li::before { content: ""; position: absolute; left: 0; top: .68em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.process-wrap { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 80px; align-items: start; }
.process-intro { position: sticky; top: 112px; }
.process-intro .lead { margin-top: 26px; }
.process-list { border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.process-step > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--gold); font-weight: 900; }
.process-step h3 { margin: 0 0 8px; font-family: var(--font-heading); font-size: 1.55rem; }
.process-step p { margin: 0; color: #52635e; }

.ministry-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: 70px; align-items: start; }
.ministry-story h3 { margin-top: 0; font-family: var(--font-heading); font-size: 2rem; }
.conviction-list { border-top: 1px solid var(--line); }
.conviction-list article { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.conviction-list article > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--sage); font-weight: 900; }
.conviction-list h3 { margin: 0 0 5px; font-family: var(--font-heading); font-size: 1.35rem; }
.conviction-list p { margin: 0; color: #52635e; }
.process-band { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--white); }
.process-band div { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-right: 1px solid var(--line); }
.process-band div:last-child { border-right: 0; }
.process-band span { color: var(--gold-dark); font-size: .75rem; font-weight: 900; }
.partner-invitation {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: center;
  margin-top: 30px;
  padding: 34px 38px;
  border-left: 4px solid var(--gold);
  background: var(--ink);
  color: var(--white);
}
.partner-invitation .eyebrow { color: var(--gold); }
.partner-invitation h3 { margin: 0; font-family: var(--font-heading); font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.12; font-weight: 500; }
.partner-invitation > p { margin: 0; color: rgba(255,255,255,.78); }

.lessons-section { overflow: hidden; }
.curriculum-note { display: grid; grid-template-columns: minmax(240px, .6fr) minmax(0, 1.4fr); gap: 34px; margin: -12px 0 34px; padding: 25px 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.curriculum-note strong { font-family: var(--font-heading); font-size: 1.25rem; line-height: 1.3; }
.curriculum-note p { margin: 0; color: #52635e; }
.lesson-index { display: grid; grid-template-columns: repeat(7, minmax(130px, 1fr)); gap: 10px; margin-bottom: 24px; overflow-x: auto; padding: 2px 2px 12px; scrollbar-width: thin; }
.lesson-index a { min-width: 145px; padding: 17px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--cream); text-decoration: none; font-size: .84rem; font-weight: 800; line-height: 1.25; }
.lesson-index a:hover { border-color: rgba(200,139,47,.65); background: #fff9ed; }
.lesson-index span { display: block; margin-bottom: 7px; color: var(--gold-dark); font-size: .74rem; letter-spacing: .1em; }
.lesson-controls { display: flex; justify-content: flex-end; gap: 10px; margin-bottom: 18px; }
.text-button { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink); font: inherit; font-size: .84rem; font-weight: 800; cursor: pointer; }
.text-button:hover { background: var(--sage); }
.lesson-journey { display: grid; gap: 16px; }
.lesson-detail { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); overflow: clip; box-shadow: 0 10px 30px rgba(22,52,45,.045); }
.lesson-detail > summary { display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: center; padding: 25px 28px; cursor: pointer; list-style: none; background: var(--white); }
.lesson-detail > summary::-webkit-details-marker { display: none; }
.lesson-detail > summary::after { content: "+"; grid-column: 3; grid-row: 1; align-self: center; color: var(--gold-dark); font-size: 1.8rem; font-weight: 300; }
.lesson-detail[open] > summary::after { content: "−"; }
.lesson-detail[open] > summary { background: var(--cream); border-bottom: 1px solid var(--line); }
.lesson-number { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--gold); font-family: var(--font-heading); font-size: 1.25rem; }
.lesson-detail summary small, .lesson-detail summary strong, .lesson-detail summary em { display: block; }
.lesson-detail summary small { margin-bottom: 4px; color: var(--terracotta); font-size: .74rem; font-style: normal; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.lesson-detail summary strong { font-family: var(--font-heading); font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1.1; }
.lesson-detail summary em { margin-top: 5px; color: var(--muted); font-size: .92rem; font-style: normal; }
.lesson-body { padding: 34px 38px 40px; }
.lesson-teaching { max-width: 880px; }
.lesson-teaching h3 { margin: 30px 0 8px; font-family: var(--font-heading); font-size: 1.55rem; }
.lesson-teaching p { color: #40534d; }
.scripture-strip { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.scripture-strip strong { margin-right: 5px; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.scripture-strip span { padding: 6px 10px; border-radius: 999px; background: var(--sage); font-size: .8rem; font-weight: 700; }
.lesson-quote { margin: 28px 0 !important; padding: 22px 25px; border-left: 4px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--cream); color: var(--ink) !important; font-family: var(--font-heading); font-size: 1.22rem; }
.application-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 28px; }
.application-card { padding: 25px 26px; border: 1px solid var(--line); border-radius: var(--radius-md); }
.application-card.real-life { background: #f3f8f4; }
.application-card.business { background: #fff8eb; }
.application-card h3 { margin: 0 0 14px; font-family: var(--font-heading); font-size: 1.35rem; }
.application-card ul { margin: 0; padding-left: 1.2rem; }
.application-card li { margin-bottom: 9px; color: #40534d; }
.reflection { margin-top: 24px; padding: 24px 26px; border-radius: var(--radius-md); background: var(--ink); color: var(--white); }
.reflection h3 { margin: 0 0 10px; font-family: var(--font-heading); font-size: 1.35rem; color: var(--gold); }
.reflection ol { margin: 0; padding-left: 1.25rem; }
.reflection li { margin-bottom: 7px; color: rgba(255,255,255,.8); }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(440px, .8fr); gap: 60px; align-items: center; }
.contact-panel { display: flex; gap: 20px; min-width: 0; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--cream); }
.contact-panel > div { min-width: 0; }
.contact-panel .contact-icon { flex: 0 0 48px; }
.contact-panel small { display: block; margin-bottom: 4px; color: var(--gold-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.contact-panel a {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}
.contact-panel a:hover {
  color: var(--gold-dark);
  text-decoration-color: var(--ink);
}
.contact-panel p { margin: 12px 0 0; color: var(--muted); }

.site-footer { padding: 48px 0 28px; background: #0e2923; color: var(--white); }
.footer-single-col { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-single-col .footer-brand p { max-width: 680px; margin: 0 auto 24px; color: rgba(255,255,255,.72); line-height: 1.65; }
.footer-title { margin: 0 0 10px; color: var(--gold); font-size: .95rem; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.footer-bottom { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.56); font-size: .86rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .nav-wrap { position: relative; min-height: 70px; padding: 12px 0; }
  .menu-toggle { display: grid !important; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); color: var(--ink); font-size: 1.25rem; font-family: inherit; cursor: pointer; transition: all 0.2s ease; z-index: 101; }
  .menu-toggle:hover { background: var(--sage); }
  .site-nav { display: none !important; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); border-bottom: 2px solid var(--pine); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; padding: 16px 20px 22px; gap: 8px; z-index: 100; border-radius: 0 0 16px 16px; }
  .site-nav.open { display: flex !important; }
  .site-nav a { padding: 11px 16px; border-radius: 10px; font-size: 0.95rem; width: 100%; text-align: left; }
  .hero-grid, .two-col, .pastor-wrap, .ministry-grid, .contact-layout, .partner-invitation, .curriculum-note { grid-template-columns: 1fr; }
  .hero-art { min-height: 390px; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .grid-3, .contact-grid { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  .process-band { grid-template-columns: repeat(2, 1fr); }
  .process-band div:nth-child(2) { border-right: 0; }
  .process-band div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .lesson-index { grid-template-columns: repeat(7, 155px); }
  .contact-layout { gap: 36px; }
  .program-card { min-height: auto; }
  .program-card:nth-child(2) { transform: none; }
  .process-wrap { grid-template-columns: 1fr; gap: 46px; }
  .process-intro { position: static; }
  .lesson-card:nth-child(n) { grid-column: span 6; }
  .sidebar-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand-logo { width: 58px; height: 36px; }
  .brand-name { font-size: .92rem; }
  .hero { padding-top: 64px; }
  .hero-grid { gap: 35px; }
  .hero-art { min-height: 320px; }
  .orbit { width: 280px; }
  .cross { width: 64px; height: 186px; }
  .cross::before { width: 154px; height: 52px; top: 43px; }
  .verse-chip { right: 6px; bottom: 4px; max-width: 200px; padding: 15px; font-size: .94rem; }
  .statement-grid { grid-template-columns: 1fr; gap: 8px; }
  .statement-number { font-size: 3.3rem; }
  .program-card { padding: 26px; }
  .process-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .process-step > span { width: 40px; height: 40px; }
  .process-band { grid-template-columns: 1fr; }
  .process-band div { border-right: 0; border-bottom: 1px solid var(--line); }
  .process-band div:last-child { border-bottom: 0; }
  .lesson-card:nth-child(n) { grid-column: 1 / -1; }
  .lesson-controls { justify-content: flex-start; flex-wrap: wrap; }
  .lesson-detail > summary { grid-template-columns: 46px 1fr; gap: 14px; padding: 20px 17px; }
  .lesson-detail > summary::after { font-size: 1.5rem; }
  .lesson-number { width: 42px; height: 42px; font-size: 1rem; }
  .lesson-detail summary em { display: none; }
  .lesson-body { padding: 25px 18px 28px; }
  .application-grid { grid-template-columns: 1fr; }
  .application-card, .reflection { padding: 22px 20px; }
  .contact-panel { padding: 23px 20px; }
  .contact-panel .contact-icon { display: none; }
  .contact-panel a { white-space: normal; overflow-wrap: anywhere; font-size: 1.18rem; }
  .partner-invitation { gap: 20px; padding: 28px 24px; }
  .curriculum-note { gap: 12px; padding: 22px 2px; }
  .cta-grid { flex-direction: column; align-items: flex-start; }
  .pastor-profile { gap: 16px; }
  .pastor-portrait { width: 88px; height: 88px; flex-basis: 88px; }
  .pastor-identity strong { font-size: 1.35rem; }
  .pastor-identity span { font-size: .76rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .lesson-nav { flex-direction: column; }
}



/* Hero Navigation Text Links (Button-Free) */
.hero-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.hero-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: all 0.2s ease;
}
.hero-nav-link:hover {
  color: #ffffff;
  border-bottom-color: var(--gold);
}
.hero-nav-link.secondary {
  color: #e0e8e4;
}
.hero-nav-link.secondary:hover {
  color: #ffffff;
  border-bottom-color: #e0e8e4;
}

/* DOCTRINAL STAND SECTION: ANTI-PROSPERITY & ANTI-WORD-FAITH */
.doctrinal-section {
  background: var(--paper);
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.doctrinal-card {
  background: linear-gradient(135deg, #0d221d 0%, #16342d 100%);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 45px 40px;
  color: #ffffff;
  box-shadow: var(--shadow);
}
.doctrinal-header {
  max-width: 850px;
  margin-bottom: 35px;
}
.doctrinal-badge {
  display: inline-block;
  background: var(--gold);
  color: #122822;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
}
.doctrinal-header h2 {
  font-size: 2.1rem;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.25;
}
.doctrinal-header .lead {
  color: #d1ded8;
  font-size: 1.1rem;
  line-height: 1.6;
}
.doctrinal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

/* DOCTRINAL STAND 3D FLIP CARDS */
.doctrinal-flip-card {
  perspective: 1000px;
  min-height: 290px;
  cursor: pointer;
  outline: none;
}

.doctrinal-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 290px;
  text-align: left;
  transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
  border-radius: 14px;
}

.doctrinal-flip-card.is-flipped .doctrinal-card-inner {
  transform: rotateY(180deg);
}

.doctrinal-card-front,
.doctrinal-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  overflow: hidden;
}

.doctrinal-card-front {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #fff;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.doctrinal-flip-card:hover .doctrinal-card-front {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.doctrinal-flip-card.highlight-card .doctrinal-card-front {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.6);
}

.doc-front-top .box-num {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.doc-front-top h3 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.doc-front-top p {
  font-size: 0.88rem;
  color: #d1ded8;
  line-height: 1.45;
  margin: 0;
}

.doc-front-bottom {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  margin-top: 12px;
}

.doctrinal-card-back {
  background: #0f2620;
  border: 2px solid var(--gold);
  color: #fff;
  transform: rotateY(180deg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  padding: 20px 18px;
}

.doc-back-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}

.doc-badge-back {
  display: inline-block;
  background: rgba(200, 139, 47, 0.25);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 6px;
  width: fit-content;
}

.doc-back-content h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin: 0 0 6px;
  line-height: 1.2;
}

.doc-verse-list {
  background: rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--gold);
  padding: 6px 10px;
  border-radius: 4px;
  margin: 4px 0 8px;
}

.doc-verse-list p {
  font-size: 0.78rem;
  color: #dceae3;
  line-height: 1.35;
  margin: 0 0 4px;
}

.doc-verse-list p:last-child {
  margin: 0;
}

.doc-takeaway {
  font-size: 0.78rem;
  color: var(--gold-light);
  line-height: 1.35;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 6px;
  margin-top: auto;
}

.mt-large {
  margin-top: 36px;
}
.doctrinal-subhead {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding-bottom: 10px;
}
.subhead-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.doctrinal-subhead h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin: 0;
}
.doctrinal-box h3 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 10px;
}
.doctrinal-box p {
  color: #d1ded8;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* EXPANDED GOAL-ORIENTED MINISTRY STYLES */
.ministry-goals-wrap {
  margin-top: 48px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.section-head-sm {
  margin-bottom: 24px;
}
.section-head-sm h3 {
  font-size: 1.6rem;
  color: var(--pine);
  margin: 4px 0 0;
}
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.goal-card {
  background: var(--soft-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  border-top: 3px solid var(--pine);
}
.goal-num {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.goal-card h4 {
  font-size: 1.15rem;
  color: var(--pine);
  margin-bottom: 10px;
}
.goal-card p {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 14px;
}
.goal-outcomes {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.goal-outcomes li {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
  position: relative;
  padding-left: 14px;
}
.goal-outcomes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
}

.discipleship-roadmap-wrap {
  margin-top: 36px;
  background: linear-gradient(135deg, #122a24 0%, #1a3c33 100%);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 36px;
  color: #ffffff;
}
.discipleship-roadmap-wrap .section-head-sm h3 {
  color: #ffffff;
}
.discipleship-roadmap-wrap .eyebrow {
  color: var(--gold);
}
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}
.roadmap-step {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  padding: 20px;
}
.step-badge {
  display: inline-block;
  background: var(--gold);
  color: #122a24;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.roadmap-step h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 8px;
}
.roadmap-step p {
  font-size: 0.88rem;
  color: #d1ded8;
  line-height: 1.55;
  margin: 0;
}

/* BUTTON-FREE OPEN LESSON CARDS */
.lesson-card-open {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.lesson-header-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--soft-bg);
  border-bottom: 1px solid var(--line);
}
.lesson-header-strip .lesson-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(22, 52, 45, 0.15);
}
.lesson-header-strip h3 {
  font-size: 1.35rem;
  color: var(--pine);
  margin-bottom: 2px;
}
.lesson-header-strip small {
  display: block;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.76rem;
  margin-bottom: 2px;
}
.lesson-header-strip em {
  font-size: 0.92rem;
  color: var(--muted);
}

/* BUTTON-FREE OPEN SOP CARDS GRID */
.sop-all-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
.sop-card-open {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
}

/* Expanded Ministry & Enterprise SOP Styles */
.church-disclaimer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 52, 45, 0.85);
  border: 1px solid var(--gold);
  color: #f3f6f4;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 18px;
}
.church-disclaimer-badge .badge-icon {
  font-size: 1rem;
}

.focus-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}
.focus-chip {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 16px;
  letter-spacing: 0.2px;
}

.highlight-card {
  border-top: 3px solid var(--gold) !important;
}

.sop-header {
  margin-bottom: 24px;
}
.sop-tag {
  display: inline-block;
  background: var(--sand-bg);
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 8px;
}
.sop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.sop-column {
  background: var(--soft-bg);
  padding: 22px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.sop-column h4 {
  color: var(--pine);
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.sop-column ol, .sop-column ul {
  padding-left: 20px;
  color: var(--ink);
}
.sop-column li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 0.94rem;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.case-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.case-card:hover {
  transform: translateY(-4px);
}
.case-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.case-card h3 {
  color: var(--pine);
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.case-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.case-insights {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.case-insights li {
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.footer-disclaimer {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}


/* ==========================================================================
   INTERACTIVE SUITE, FLOWCHARTS, INFOGRAPHS, AND EXPANDED MODULES STYLES
   ========================================================================== */

/* Subnav & Secondary Quick Navigation */
.interactive-subnav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.subnav-btn {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.subnav-btn:hover, .subnav-btn.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.subnav-badge {
  background: var(--gold);
  color: var(--ink);
  padding: 2px 7px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 800;
}

/* Search and Filter Controls */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.filter-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-tag {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-tag:hover, .filter-tag.active {
  background: var(--gold-dark);
  color: var(--white);
  border-color: var(--gold-dark);
}
.search-box-wrap {
  position: relative;
  min-width: 260px;
  flex: 1;
  max-width: 380px;
}
.search-control-input {
  width: 100%;
  padding: 10px 16px 10px 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-control-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 139, 47, 0.2);
}
.search-icon-inside {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.9rem;
  pointer-events: none;
}

/* 7-STAGE BIBLICAL ENTERPRISE LIFECYCLE (ALL 7 STAGES VISIBLE) */
.flowchart-container {
  background: linear-gradient(135deg, #102621 0%, #16342d 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  margin: 40px 0;
  box-shadow: 0 24px 64px rgba(16, 38, 33, 0.25);
  border: 1px solid rgba(200, 139, 47, 0.3);
}
.lifecycle-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 38px;
}
.lifecycle-header h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: #fff;
  margin: 10px 0 14px;
}
.lifecycle-header p {
  opacity: 0.92;
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 12px;
}
.lifecycle-all-stages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 36px;
}
.lifecycle-stage-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 139, 47, 0.3);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.lifecycle-stage-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}
.stage-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.stage-num-tag {
  background: var(--gold);
  color: #102621;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stage-card-header h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #ffffff;
  margin: 0;
}
.stage-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin: 12px 0 20px;
}
.flowchart-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 18px;
}
.meta-box {
  background: rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 8px;
}
.meta-box strong {
  display: block;
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.meta-box p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.92;
  line-height: 1.5;
}

/* COMPARATIVE INFOGRAPH & PICTOGRAPHS */
.infograph-banner {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 36px 0;
  box-shadow: var(--shadow);
}
.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
}
.contrast-col {
  border-radius: var(--radius-md);
  padding: 28px;
}
.contrast-col.biblical {
  background: #f0f7f3;
  border: 2px solid #387c5b;
}
.contrast-col.worldly {
  background: #fcf1ee;
  border: 2px solid #c9543e;
}
.contrast-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.col-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
}
.contrast-col.biblical .col-icon-badge { background: #387c5b; color: #fff; }
.contrast-col.worldly .col-icon-badge { background: #c9543e; color: #fff; }
.contrast-col h4 {
  margin: 0;
  font-size: 1.2rem;
}
.contrast-col.biblical h4 { color: #205c40; }
.contrast-col.worldly h4 { color: #9c3320; }
.contrast-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contrast-points li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.94rem;
  line-height: 1.5;
}
.contrast-points li:last-child { border-bottom: none; }
.contrast-points strong { display: block; margin-bottom: 3px; font-weight: 700; }
.contrast-col.biblical strong { color: #205c40; }
.contrast-col.worldly strong { color: #9c3320; }

/* VISUAL PICTOGRAPH ROW */
.pictograph-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.pictograph-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.25s ease;
}
.pictograph-card:hover {
  transform: translateY(-3px);
  background: #ede6d8;
}
.pictograph-glyph {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 10px;
}
.pictograph-card h5 {
  font-size: 1.02rem;
  margin: 0 0 8px;
  color: var(--ink);
}
.pictograph-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

/* JETHRO-MOSES DELEGATION & SOP FLOWCHART */
.hierarchy-flowchart {
  background: #142f28;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 36px 0;
}
.hierarchy-levels {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 800px;
  margin: 24px auto 0;
}
.hierarchy-tier {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 139, 47, 0.4);
  border-radius: 12px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 20px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.hierarchy-tier:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--gold);
}
.tier-tag {
  background: var(--gold);
  color: #142f28;
  font-weight: 800;
  font-size: 0.76rem;
  padding: 6px 14px;
  border-radius: 999px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-sizing: border-box;
  display: inline-block;
  justify-self: start;
}
.tier-desc {
  flex: 1;
  text-align: left;
}
.tier-desc strong {
  display: block;
  font-size: 1.06rem;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.35;
}
.tier-desc span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

/* ==========================================================================
   INTERACTIVE EXECUTIVE GOVERNANCE AUDIT & REFORMATION BLUEPRINT (NO GAMIFICATION)
   ========================================================================== */
.assessment-container {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  margin: 36px 0;
}
.assessment-question-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
  background: var(--cream);
}
.assessment-question-box h4 {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 14px;
}
.assessment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}
.assessment-option-btn {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 8px;
  text-align: left;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
}
.assessment-option-btn:hover {
  background: var(--sage);
  border-color: var(--ink-2);
}
.assessment-option-btn.selected {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  font-weight: 700;
}

/* EXECUTIVE REFORMATION BLUEPRINT REPORT (PROFESSIONAL & NON-GAMIFIED) */
.diagnostic-results-card {
  background: #122822;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 30px;
  display: none;
  border: 1px solid rgba(200, 139, 47, 0.4);
  animation: pageFadeIn 0.4s ease-out;
}
.diagnostic-results-card.active {
  display: block;
}
.reformation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.reformation-pillar-card {
  background: rgba(255, 255, 255, 0.07);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 18px 20px;
}
.reformation-pillar-card h5 {
  color: var(--gold-light);
  font-size: 1.05rem;
  margin: 0 0 8px;
}
.reformation-pillar-card p {
  font-size: 0.9rem;
  margin: 0 0 10px;
  opacity: 0.92;
  line-height: 1.5;
}
.pillar-mandate {
  font-size: 0.82rem;
  color: var(--gold);
  font-style: italic;
}

/* INTERACTIVE DYNAMIC SOP CHARTER BUILDER & GENERATOR */
.sop-generator-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 36px 0;
  box-shadow: var(--shadow);
}
.generator-row {
  margin-bottom: 24px;
}
.generator-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.selector-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.selector-pill {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
}
.selector-pill:hover, .selector-pill.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.sop-output-document {
  background: #fdfbf7;
  border: 2px dashed var(--gold);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 24px;
}
.charter-header {
  border-bottom: 2px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.charter-header h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0;
}
.charter-section {
  margin-bottom: 18px;
}
.charter-section h5 {
  font-size: 1.05rem;
  color: var(--pine);
  margin-bottom: 6px;
}
.charter-section p {
  font-size: 0.94rem;
  color: #384e47;
  line-height: 1.55;
  margin: 0 0 6px;
}

/* SCRIPTURE EXEGESIS MODAL POPUP */
.scripture-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 38, 33, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.scripture-modal-backdrop.open {
  display: flex;
}
.scripture-modal-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: pageFadeIn 0.3s ease-out;
}
.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: 1px solid var(--line);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close-btn:hover { background: var(--ink); color: #fff; }
.verse-headline {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.verse-quote-box {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.5;
}
.exegesis-prose {
  font-size: 0.95rem;
  color: #384e47;
  line-height: 1.6;
}
.clickable-verse {
  cursor: pointer;
  text-decoration: underline dotted var(--gold);
  transition: color 0.2s ease;
}
.clickable-verse:hover {
  color: var(--gold-dark);
}

/* FINANCIAL RESILIENCE & WAGE CALCULATOR */
.calc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 36px 0;
  box-shadow: var(--shadow);
}
.calc-input-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.calc-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.calc-field input, .calc-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  background: var(--white);
}
.calc-field input:focus, .calc-field select:focus {
  border-color: var(--gold);
}
.calc-output-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
}
.calc-output-box {
  text-align: center;
}
.calc-output-box .out-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 4px;
}
.calc-output-box .out-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ink-2);
  font-family: var(--font-heading);
}
.calc-output-box .out-sub {
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin-top: 4px;
}

/* ETHICAL DILEMMA & MARKETPLACE SCENARIO SIMULATOR */
.simulator-container {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  margin: 36px 0;
}
.dilemma-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.dilemma-tab {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.2s ease;
}
.dilemma-tab:hover, .dilemma-tab.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.dilemma-active-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
}
.scenario-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.dilemma-active-card h4 {
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.dilemma-active-card .scenario-story {
  font-size: 1.02rem;
  line-height: 1.6;
  color: #384e47;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: #f7f5ed;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
}
.choice-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.choice-btn {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 20px;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.choice-btn:hover {
  background: var(--sage);
  border-color: var(--ink-2);
}
.choice-btn.selected {
  background: #e6f0eb;
  border-color: #245146;
  font-weight: 700;
}
.choice-letter {
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}
.dilemma-feedback-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 8px;
  display: none;
  animation: pageFadeIn 0.3s ease-out;
}
.dilemma-feedback-box.active {
  display: block;
}
.dilemma-feedback-box.righteous {
  background: #edf7f1;
  border: 2px solid #2d7a4e;
  color: #174228;
}
.dilemma-feedback-box.compromised {
  background: #fdf2ee;
  border: 2px solid #b95d43;
  color: #632616;
}
.dilemma-feedback-box h5 {
  font-size: 1.1rem;
  margin: 0 0 8px;
}
.dilemma-feedback-box p {
  margin: 0 0 10px;
  line-height: 1.55;
  font-size: 0.94rem;
}
.dilemma-feedback-box .scripture-proof {
  font-size: 0.86rem;
  font-weight: 700;
  font-style: italic;
}

/* 20-ERA REDEMPTIVE TIMELINE */
.era-timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.era-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.era-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.era-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.era-num-badge {
  background: var(--ink);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
}
.era-scripture {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.era-card h4 {
  font-size: 1.18rem;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.era-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.era-principle {
  background: var(--cream);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.84rem;
  border-left: 3px solid var(--gold);
}
.era-principle strong {
  color: var(--ink);
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

/* 10-SECTOR BIBLICAL INDUSTRY & SOP BLUEPRINTS */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.sector-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.sector-card:hover {
  transform: translateY(-4px);
}
.sector-icon-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.sector-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.sector-card h3 {
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0;
}
.sector-sop-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.sector-sop-list li {
  font-size: 0.88rem;
  padding: 6px 0;
  color: var(--ink-2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.sector-sop-list li::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 800;
}

/* SCRIPTURAL WISDOM & CONCORDANCE ENGINE */
.concordance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.concordance-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}
.concordance-card:hover {
  border-color: var(--gold);
  background: #fffefb;
}
.concordance-verse {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.concordance-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 0 10px;
}
.concordance-app {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  border-top: 1px dashed var(--line);
  padding-top: 10px;
}

/* ETHICAL DECISION SIMULATOR ENHANCEMENTS */
.ethical-meta-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.ethical-domain-tag {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--sage);
  color: var(--ink-2);
  padding: 3px 9px;
  border-radius: 4px;
}
.ethical-scripture-tag {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.ethical-verdict-box {
  background: #fdfaf3;
  border-left: 3px solid var(--gold-dark);
  padding: 14px 16px;
  margin-top: 14px;
  border-radius: 4px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-2);
}
.ethical-verdict-box strong {
  color: var(--ink);
  display: inline-block;
  margin-bottom: 4px;
}

/* WISDOM ENGINE SEARCH & CATEGORY FILTER CONTROLS */
.wisdom-controls-wrap {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wisdom-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wisdom-filter-btn {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.2s ease;
}
.wisdom-filter-btn:hover {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--cream);
}
.wisdom-filter-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 2px 8px rgba(16, 38, 33, 0.25);
}
.wisdom-search-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.wisdom-search-input {
  flex: 1;
  min-width: 260px;
  max-width: 480px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wisdom-search-input:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(200, 139, 47, 0.18);
}
.wisdom-count-badge {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 700;
}


/* INTERACTIVE EXPANDABLE WORKBOOK CHECKLISTS ON LESSONS */
.interactive-lesson-tools {
  margin-top: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 20px;
}
.tool-toggle-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}
.tool-toggle-btn:hover {
  color: var(--gold-dark);
}
.tool-content {
  display: none;
  padding-top: 14px;
  margin-top: 10px;
  border-top: 1px solid var(--line);
}
.tool-content.open {
  display: block;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--ink);
}
.chk-icon {
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 1.05rem;
}
.scenario-scale-selector {
  margin-bottom: 22px;
  background: var(--cream);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

/* ==========================================================================
   EDITORIAL DISCIPLESHIP JOURNEY & 3D FLIP CARDS (BASE STYLES)
   ========================================================================== */
.journey-intro-banner {
  background: linear-gradient(135deg, rgba(16, 38, 33, 0.92) 0%, rgba(30, 69, 60, 0.98) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 0 0 32px 0;
  color: #fff;
  box-shadow: 0 10px 30px rgba(16, 38, 33, 0.25);
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}
.journey-intro-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: #ffffff;
  margin: 10px 0 8px;
  line-height: 1.25;
}
.journey-intro-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.55;
  max-width: 760px;
  margin: 0 auto;
}

.journey-flow-footer {
  margin: 50px 0 30px;
  padding: 38px 32px;
  background: linear-gradient(135deg, #102621 0%, #1e453c 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 36px rgba(16, 38, 33, 0.2);
  box-sizing: border-box;
  max-width: 100%;
}

.journey-flow-inner {
  max-width: 720px;
  margin: 0 auto;
}

.journey-step-tag {
  display: inline-block;
  background: var(--gold);
  color: #102621;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.journey-flow-footer h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.journey-flow-footer p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  margin: 0 auto 24px;
}

.journey-flow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold);
  color: #102621;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(200, 139, 47, 0.35);
  transition: all 0.2s ease;
}

.journey-flow-link:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(200, 139, 47, 0.45);
}

/* ==========================================================================
   GUIDED DISCIPLESHIP ROADMAP SECTION (HIGH-CONTRAST MODERN LUXURY)
   ========================================================================== */
.journey-roadmap-section {
  background: linear-gradient(145deg, #091714 0%, #102621 60%, #132e27 100%);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  margin: 36px 0;
  border: 1px solid rgba(200, 139, 47, 0.4);
  border-top: 4px solid #c88b2f;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
  max-width: 100%;
}

.journey-intro-banner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px;
}

.journey-step-tag {
  display: inline-block;
  background: rgba(200, 139, 47, 0.22);
  color: #fce3a2;
  border: 1px solid rgba(200, 139, 47, 0.55);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.journey-intro-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.journey-intro-banner p {
  font-size: 1rem;
  color: #d1e2dc;
  line-height: 1.6;
  margin: 0;
}

.journey-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  box-sizing: border-box;
  width: 100%;
}

.roadmap-card {
  background: linear-gradient(135deg, #132a24 0%, #17332b 100%);
  border: 1px solid rgba(200, 139, 47, 0.32);
  border-top: 3px solid #c88b2f;
  border-radius: var(--radius-md);
  padding: 22px 22px 20px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: all 0.24s ease;
  min-height: 0;
  max-width: 100%;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);
}

.roadmap-card:hover {
  background: linear-gradient(135deg, #16362e 0%, #1b3d34 100%);
  border-color: #f4cf7c;
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.4);
}

.roadmap-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.roadmap-phase-badge {
  display: inline-block;
  background: #c88b2f;
  color: #0b1915;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roadmap-anchor-tag {
  font-size: 0.78rem;
  color: #fce3a2;
  font-style: italic;
  font-weight: 700;
}

.roadmap-card h4 {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.32;
  font-weight: 700;
}

.roadmap-card p {
  font-size: 0.9rem;
  color: #eaf1ee;
  line-height: 1.58;
  margin: 0;
}

/* ==========================================================================
   CONSOLIDATED MULTI-DEVICE RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  .doctrinal-card { padding: 36px 30px; }
  .doctrinal-header h2 { font-size: 1.85rem; }
  .program-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

@media (max-width: 992px) {
  .contrast-grid { grid-template-columns: 1fr; }
  .flowchart-steps-grid { grid-template-columns: repeat(3, 1fr); }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .search-box-wrap { max-width: 100%; }
  .wisdom-search-wrap { flex-direction: column; align-items: stretch; }
  .wisdom-search-input { max-width: 100%; min-width: 0; width: 100%; }
  .doctrinal-grid { grid-template-columns: 1fr 1fr; }
  .sop-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .lesson-header-strip { padding: 18px 20px; }
  .sop-card-open { padding: 24px; }
  .journey-roadmap-section { padding: 28px 20px; }
  .journey-roadmap-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .lifecycle-all-stages-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
  .header-wrap {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 0;
  }
  .breadcrumb-menubar {
    padding: 3px 8px;
    font-size: 0.82rem;
  }
  .bc-section-btn {
    max-width: clamp(120px, 40vw, 240px);
    font-size: 0.82rem;
    padding: 3px 6px;
  }
  .bc-dropdown-menu {
    left: auto;
    right: 0;
    min-width: 270px;
    max-width: calc(100vw - 20px);
  }
  .hero { padding-top: 36px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-art { min-height: 260px; }
  .doctrinal-card { padding: 24px 18px; }
  .doctrinal-header h2 { font-size: 1.45rem; }
  .doctrinal-grid { grid-template-columns: 1fr; }
  .journey-roadmap-section { padding: 22px 16px; margin: 24px 0; }
  .journey-intro-banner { padding: 20px 16px; margin-bottom: 20px; }
  .journey-intro-banner h3 { font-size: 1.4rem; }
  .journey-roadmap-grid { grid-template-columns: 1fr; gap: 14px; width: 100%; }
  .program-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .lesson-header-strip { flex-direction: column; align-items: flex-start; gap: 10px; }
  .lesson-body { padding: 20px 15px; }
  .application-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .flowchart-container { padding: 28px 18px; }
  .hierarchy-flowchart { padding: 24px 16px; margin: 24px 0; }
  .hierarchy-tier { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding: 16px 14px; }
  .tier-tag { font-size: 0.72rem; padding: 4px 12px; margin-bottom: 2px; }
  .tier-desc { width: 100%; text-align: left; }
  .tier-desc strong { font-size: 1rem; }
  .tier-desc span { font-size: 0.86rem; }
  .lifecycle-header h2 { font-size: 1.6rem; }
  .journey-flow-footer { padding: 28px 18px; margin: 36px 0 20px; }
  .journey-flow-footer h3 { font-size: 1.45rem; }
}

@media (max-width: 600px) {
  .flowchart-steps-grid { grid-template-columns: 1fr 1fr; }
  .flowchart-container, .infograph-banner, .assessment-container, .calc-card, .simulator-container { padding: 20px 14px; }
  .calc-input-grid { grid-template-columns: 1fr; }
  .calc-output-grid { grid-template-columns: 1fr; }
  .concordance-grid { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: 1fr; }
  .christ-roles-grid { grid-template-columns: 1fr; }
  .wisdom-filter-bar { gap: 6px; }
  .wisdom-filter-btn { font-size: 0.78rem; padding: 6px 12px; }
  .proclamation-pillars { grid-template-columns: 1fr; gap: 12px; }
  .hero-proclamation { padding: 18px 16px; margin: 20px 0; }
  .hierarchy-flowchart { padding: 20px 14px; margin: 24px 0; }
  .hierarchy-tier { flex-direction: column; align-items: flex-start; gap: 8px; padding: 14px 16px; }
  .pictograph-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { width: 100%; padding-left: 12px; padding-right: 12px; }
  .brand-logo { width: 44px; height: 26px; }
  .brand-name { font-size: 0.88rem; }
  .display { font-size: 1.85rem; }
  .lead { font-size: 0.94rem; line-height: 1.55; }
  .church-disclaimer-badge { font-size: 0.74rem; padding: 4px 10px; }
  .bc-section-btn { max-width: 140px; }
  .journey-roadmap-section { padding: 16px 10px; margin: 18px 0; border-radius: var(--radius-md); }
  .journey-intro-banner { padding: 16px 12px; margin-bottom: 16px; border-radius: var(--radius-sm); }
  .journey-intro-banner h3 { font-size: 1.25rem; }
  .journey-intro-banner p { font-size: 0.88rem; }
  .journey-roadmap-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 14px; width: 100%; }
  .roadmap-card { padding: 16px 14px; }
  .roadmap-card h4 { font-size: 1.08rem; }
  .roadmap-card p { font-size: 0.86rem; margin-bottom: 10px; }
  .pictograph-row { grid-template-columns: 1fr; }
  .lifecycle-stage-card { padding: 18px 14px; }
  .stage-meta-grid { grid-template-columns: 1fr; gap: 10px; }
  .journey-flow-link { width: 100%; justify-content: center; box-sizing: border-box; font-size: 0.92rem; padding: 12px 18px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .modal-card { width: 96%; padding: 20px 16px; }
}

@media (max-width: 360px) {
  .container { padding-left: 8px; padding-right: 8px; }
  .display { font-size: 1.65rem; }
  .section-title { font-size: 1.55rem; }
  .bc-section-btn { max-width: 110px; font-size: 0.75rem; }
  .wisdom-filter-btn { font-size: 0.74rem; padding: 5px 10px; }
  .btn { width: 100%; font-size: 0.88rem; padding: 10px 14px; }
  .journey-roadmap-section { padding: 12px 6px; margin: 14px 0; }
  .journey-intro-banner { padding: 12px 8px; }
  .roadmap-card { padding: 14px 10px; }
}
