/* ══════════════════════════════════════════════════════════════════════════
   PROPHETIC FINDERS — Main Stylesheet
   Theme: Dark cinematic — inspired by "The Finders Movement" book cover
   Deep navy backgrounds · Gold/amber accents · Bold condensed typography
   ══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────────────────── */
:root {
  --bg-primary:   #080B18;
  --bg-secondary: #0B0F1E;
  --bg-card:      #10192C;
  --bg-elevated:  #162035;
  --bg-nav:       rgba(8,11,24,0.96);

  --gold:         #C9962A;
  --gold-bright:  #E8C545;
  --gold-muted:   #7A5C18;
  --gold-glow:    rgba(201,150,42,0.15);

  --text-primary: #F0EDE6;
  --text-muted:   #8090A8;
  --text-gold:    #E8C545;

  --border:       #1C2840;
  --border-gold:  rgba(201,150,42,0.35);
  --steel:        #1E3A5F;

  --danger:       #C0392B;
  --success:      #27AE60;
  --info:         #2980B9;

  --radius:       6px;
  --radius-lg:    12px;
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold:  0 0 30px rgba(201,150,42,0.2);

  --font-head:    'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-h:        72px;
}

/* ─── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-bright); }

/* ─── Typography ────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-gold    { color: var(--gold-bright); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.uppercase    { text-transform: uppercase; letter-spacing: 0.12em; }

/* ─── Layout ────────────────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide { max-width: 1300px; margin: 0 auto; padding: 0 24px; }

section { padding: 80px 0; }

.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

.gold-rule {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  margin: 20px 0;
}
.gold-rule.centered { margin: 20px auto; }

/* ─── Navigation ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo span { color: var(--gold); }

.nav__logo-icon {
  width: 36px;
  height: 36px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}

.nav__links a:hover,
.nav__links a.active { color: var(--text-primary); background: var(--bg-elevated); }

.nav__cta {
  background: var(--gold);
  color: var(--bg-primary) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
}

.nav__cta:hover { background: var(--gold-bright) !important; color: var(--bg-primary) !important; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), #D4A020);
  color: var(--bg-primary);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--bg-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover { background: var(--gold-glow); color: var(--gold-bright); }

.btn--ghost {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn--ghost:hover { background: var(--bg-card); border-color: var(--gold-muted); }

.btn--danger { background: var(--danger); color: white; }
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--sm { padding: 9px 18px; font-size: 0.8rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--bg-primary);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right,
      rgba(8, 11, 24, 0.88) 0%,
      rgba(8, 11, 24, 0.65) 50%,
      rgba(8, 11, 24, 0.35) 100%),
    url('/images/hero-banner.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Animated star field */
.hero__stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 10%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 65%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 35% 85%, rgba(201,150,42,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 40%, rgba(201,150,42,0.2) 0%, transparent 100%);
  background-size: 300px 300px, 400px 400px, 500px 500px, 350px 350px, 450px 450px, 250px 250px, 320px 320px;
}

/* Gold light shaft from above */
.hero__shaft {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 40%;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  opacity: 0.15;
  transform: translateX(-50%);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero__title em {
  font-style: normal;
  color: var(--gold-bright);
  display: block;
}

.hero__scripture {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 2px solid var(--gold-muted);
  line-height: 1.6;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Feature Cards / Grid ──────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color .3s, transform .3s;
}

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

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.card__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.card__body { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ─── Section: Dark alt ─────────────────────────────────────────────────── */
.section--dark    { background: var(--bg-secondary); }
.section--card    { background: var(--bg-card); }
.section--darker  { background: #050810; }

/* ─── Membership Cards ──────────────────────────────────────────────────── */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.membership-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}

.membership-card:hover { transform: translateY(-4px); }

.membership-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(201,150,42,0.15);
}

.membership-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--bg-primary);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
}

.membership-card__level {
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}

.membership-card__name {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.membership-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}

.membership-card__price .amount {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-bright);
}

.membership-card__price .currency {
  font-size: 1.2rem;
  color: var(--text-muted);
  align-self: flex-start;
  margin-top: 8px;
}

.membership-card__price .period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.membership-card__features {
  list-style: none;
  margin-bottom: 32px;
}

.membership-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.membership-card__features li:last-child { border-bottom: none; }

.membership-card__features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ─── Events ────────────────────────────────────────────────────────────── */
.events-list { display: flex; flex-direction: column; gap: 16px; }

.event-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  transition: border-color .2s;
}

.event-item:hover { border-color: var(--border-gold); }

.event-item--invite { border-left: 3px solid var(--steel); }

.event-date {
  text-align: center;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 12px 8px;
}

.event-date__day {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.event-date__month {
  font-family: var(--font-head);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 4px;
}

.event-info__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.event-info__time {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-badge {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.badge--level1 { background: rgba(40,120,200,0.15); color: #7CB3E0; border: 1px solid rgba(40,120,200,0.3); }
.badge--level2 { background: var(--gold-glow); color: var(--gold); border: 1px solid var(--border-gold); }
.badge--invite { background: rgba(30,60,95,0.5); color: #6090B0; border: 1px solid var(--steel); }

.zoom-link-box {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.zoom-link-box a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── Store ─────────────────────────────────────────────────────────────── */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, border-color .3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.product-card__image {
  height: 220px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--bg-primary);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 20px;
}

.product-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.product-card__price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 16px;
}

.product-card__price .free { color: var(--success); }

/* ─── Forms ─────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-muted);
  box-shadow: 0 0 0 3px rgba(201,150,42,0.1);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-input::placeholder,
.form-textarea::placeholder { color: #3A4B62; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.form-error {
  font-size: 0.85rem;
  color: #E57373;
  margin-top: 6px;
}

.form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Alerts ─────────────────────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert--success { background: rgba(39,174,96,0.12); border: 1px solid rgba(39,174,96,0.3); color: #6FCF97; }
.alert--error   { background: rgba(192,57,43,0.12); border: 1px solid rgba(192,57,43,0.3); color: #E57373; }
.alert--info    { background: rgba(41,128,185,0.12); border: 1px solid rgba(41,128,185,0.3); color: #7EB8D4; }
.alert--gold    { background: var(--gold-glow); border: 1px solid var(--border-gold); color: var(--gold-bright); }

/* ─── Page Header ───────────────────────────────────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background:
    linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201,150,42,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-header__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
  position: relative;
}

.page-header__subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 12px;
  position: relative;
}

/* ─── Mission strip / quote block ───────────────────────────────────────── */
.mission-strip {
  background: linear-gradient(90deg, var(--bg-secondary) 0%, var(--bg-elevated) 50%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 48px 0;
  text-align: center;
}

.mission-strip__quote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  max-width: 800px;
  margin: 0 auto 12px;
}

.mission-strip__ref {
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ─── Stats Bar ─────────────────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  background: var(--bg-card);
  padding: 32px 24px;
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}

.stat-item__label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: #050810;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer__links { list-style: none; }

.footer__links li { margin-bottom: 10px; }

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color .2s;
}

.footer__links a:hover { color: var(--text-primary); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ─── Admin ─────────────────────────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--bg-card); border-right: 1px solid var(--border); padding: 24px 0; }
.admin-main { padding: 32px; }
.admin-nav a {
  display: block;
  padding: 10px 24px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: all .2s;
}
.admin-nav a:hover, .admin-nav a.active {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-left: 3px solid var(--gold);
}

/* ─── Utilities ─────────────────────────────────────────────────────────── */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.pt-0 { padding-top: 0; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.w-full { width: 100%; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.tag {
  display: inline-block;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  color: var(--text-muted);
}

/* ─── Animations ────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp .6s ease both; }
.delay-1    { animation-delay: .15s; }
.delay-2    { animation-delay: .3s; }
.delay-3    { animation-delay: .45s; }

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav__toggle { display: block; }
  .event-item { grid-template-columns: 64px 1fr; }
  .event-item > :last-child { grid-column: 1/-1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 56px 0; }
  .hero__ctas { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; }
  .event-item { grid-template-columns: 1fr; }
  .form-box { padding: 28px 20px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   COLOUR THEMES
   Apply by adding a class to <body>: theme-orange | theme-bw
   Default (no class) = Navy & Gold
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Theme 2: White & Orange (book cover inspired) ──────────────────────── */
html.theme-orange {
  --bg-primary:   #FAF8F5;
  --bg-secondary: #F5F1EA;
  --bg-card:      #FFFFFF;
  --bg-elevated:  #EDE9E0;
  --bg-nav:       rgba(250,248,245,0.97);

  --gold:         #E8621A;
  --gold-bright:  #FF7A2E;
  --gold-muted:   #B84A10;
  --gold-glow:    rgba(232,98,26,0.12);

  --text-primary: #1C1208;
  --text-muted:   #6B5540;
  --text-gold:    #E8621A;

  --border:       #E4DDD2;
  --border-gold:  rgba(232,98,26,0.30);
  --steel:        #8B7355;

  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --shadow-gold:  0 0 30px rgba(232,98,26,0.15);
}

/* section--darker has a hardcoded colour — fix for light theme */
html.theme-orange .section--darker { background: #EDE9E0; }

/* Hero sits on a dark photograph — keep its text light regardless of theme */
html.theme-orange .hero__eyebrow             { color: #FF7A2E; }
html.theme-orange .hero__eyebrow::before     { background: #FF7A2E; }
html.theme-orange .hero__title               { color: #F0EDE6; }
html.theme-orange .hero__title em            { color: #FF7A2E; }
html.theme-orange .hero__scripture           { color: rgba(240,237,230,0.75); border-left-color: rgba(232,98,26,0.5); }
html.theme-orange .hero__desc                { color: rgba(240,237,230,0.80); }
html.theme-orange .hero__ctas .btn--outline  { border-color: rgba(240,237,230,0.45); color: #F0EDE6; }
html.theme-orange .hero__ctas .btn--outline:hover { background: rgba(240,237,230,0.10); }

/* ── Theme 3: Black & White ─────────────────────────────────────────────── */
html.theme-bw {
  --bg-primary:   #050505;
  --bg-secondary: #0D0D0D;
  --bg-card:      #141414;
  --bg-elevated:  #1E1E1E;
  --bg-nav:       rgba(5,5,5,0.97);

  --gold:         #CECECE;
  --gold-bright:  #FFFFFF;
  --gold-muted:   #707070;
  --gold-glow:    rgba(255,255,255,0.06);

  --text-primary: #F5F5F5;
  --text-muted:   #909090;
  --text-gold:    #FFFFFF;

  --border:       #282828;
  --border-gold:  rgba(255,255,255,0.18);
  --steel:        #303030;

  --shadow:       0 4px 24px rgba(0,0,0,0.80);
  --shadow-gold:  0 0 30px rgba(255,255,255,0.05);
}

html.theme-bw .hero__title em { color: #FFFFFF; }
html.theme-bw .hero__shaft    { background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 100%); }
html.theme-bw .hero__bg {
  background-image:
    linear-gradient(to right,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.72) 50%,
      rgba(0,0,0,0.45) 100%),
    url('/images/hero-banner.png');
}

/* ─── Theme Switcher Widget ─────────────────────────────────────────────── */
.theme-switcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.theme-switcher__toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background .2s, color .2s;
}

.theme-switcher__toggle:hover { background: var(--bg-elevated); }

.theme-switcher__panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  display: none;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}

.theme-switcher__panel.open { display: flex; }

.theme-switcher__label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  white-space: nowrap;
}

.theme-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s, border-color .15s;
  outline: none;
  flex-shrink: 0;
}

.theme-swatch:hover  { transform: scale(1.18); }
.theme-swatch.active { border-color: var(--gold); box-shadow: 0 0 0 2px var(--bg-card), 0 0 0 4px var(--gold); }

.theme-swatch--navy   { background: linear-gradient(135deg, #080B18 50%, #C9962A 50%); }
.theme-swatch--orange { background: linear-gradient(135deg, #FAF8F5 50%, #E8621A 50%); }
.theme-swatch--bw     { background: linear-gradient(135deg, #050505 50%, #FFFFFF 50%); }

/* ─── Orange/White Theme — Footer & Nav overrides ────────────────────────── */

html.theme-orange .footer {
  background: #1E0F05;
  border-top-color: #3D2010;
}

html.theme-orange .footer__brand p {
  color: #B89880;
}

html.theme-orange .footer__links a {
  color: #D4B89A;
}

html.theme-orange .footer__links a:hover {
  color: #FFFFFF;
}

html.theme-orange .footer__bottom {
  border-top-color: #3D2010;
}

html.theme-orange .footer__bottom p {
  color: #7A5540;
}

/* Nav logo — "PROPHETIC" dark on light cream nav in orange theme */
html.theme-orange .nav__logo {
  color: #1C1208;
}

/* ─── Donate nav button ──────────────────────────────────────────────────── */
.nav__cta--donate {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  border-radius: var(--radius) !important;
  padding: 6px 14px !important;
}
.nav__cta--donate:hover {
  background: var(--gold) !important;
  color: #fff !important;
}
.nav__cta--donate i { margin-right: 5px; }
