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

:root {
  --bg: #1a1208;
  --bg2: #211808;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-dim: #7a6430;
  --text: #d4c5a0;
  --text-dim: #8a7a5a;
  --white: #f5efe0;
  --border: rgba(201,168,76,0.18);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── SIDEBAR ── */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 260px;
  height: 100vh;
  background: #110d04;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 48px 0 32px;
  z-index: 100;
  overflow-y: auto;
}

.nav-logo {
  padding: 0 32px 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
a.back-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid rgba(201,168,76,0.3);
  color: #c9a84c;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  margin: 20px;
}
a.back-btn:hover { background: #c9a84c; color: #1a1208; }

@media (max-width: 768px) {
  a.back-btn {
    display: block;
    text-align: center;
    margin: 12px 16px;
    padding: 12px;
    font-size: 11px;
  }
}

.main-page {
  padding: 0 8px 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.nav-logo .cross {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
  letter-spacing: 4px;
}

.nav-logo h2 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.6;
  font-weight: 400;
}

.nav-section-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold-dim);
  padding: 0 32px 16px;
  text-transform: uppercase;
}

nav a {
  display: block;
  padding: 12px 32px;
  color: var(--text-dim);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s, padding-left 0.3s, background 0.3s;
  border-left: 2px solid transparent;
}

nav a:hover { color: var(--gold-light); padding-left: 40px; border-left-color: var(--gold); background: rgba(201,168,76,0.05); }
nav a.active { color: var(--gold); border-left-color: var(--gold); background: rgba(201,168,76,0.05); }

.nav-home {
  padding: 0 32px 20px;
  margin-bottom: 8px;
}

.nav-home a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-decoration: none;
  text-transform: uppercase;
  padding: 0;
  border: none;
  transition: color 0.3s;
}

.nav-home a:hover { color: var(--gold); padding-left: 0; border: none; background: none; }

.nav-bottom {
  margin-top: auto;
  padding: 24px 32px 0;
  border-top: 1px solid var(--border);
}

.nav-bottom p {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.7;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* ── MAIN ── */
main {
  margin-left: 260px;
  flex: 1;
  position: relative;
  z-index: 1;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO ── */
.hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 64px 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: sepia(80%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 30%, transparent 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 680px; }

.hero-tag {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  max-width: 520px;
  font-weight: 300;
}

/* ── CONTENT ── */
.content-body {
  padding: 72px 72px 96px;
  max-width: 900px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-title::after { content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--gold-dim); }

.content-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.3;
}

.content-body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 300;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 48px 0;
}

.card { background: var(--bg2); padding: 36px 32px; transition: background 0.3s; }
.card:hover { background: #2a1f08; }
.card-icon { font-size: 24px; margin-bottom: 16px; display: block; }
.card h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--gold-light); margin-bottom: 10px; }
.card p { font-size: 13px; line-height: 1.8; color: var(--text-dim); margin: 0; }

/* ── SCRIPTURE ── */
.scripture {
  border-left: 2px solid var(--gold);
  padding: 24px 32px;
  margin: 40px 0;
  background: rgba(201,168,76,0.04);
}

.scripture p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 10px;
}

.scripture cite {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-style: normal;
}

/* ── SCHEDULE ── */
.schedule { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 14px; }
.schedule th { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 4px; color: var(--gold); text-align: left; padding: 12px 20px; border-bottom: 1px solid var(--border); text-transform: uppercase; }
.schedule td { padding: 16px 20px; border-bottom: 1px solid rgba(201,168,76,0.07); color: var(--text); line-height: 1.5; }
.schedule tr:hover td { background: rgba(201,168,76,0.04); color: var(--white); }
.schedule td:first-child { color: var(--gold-light); font-family: 'Cormorant Garamond', serif; font-size: 16px; }

/* ── CTA ── */
.cta-btn {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  background: transparent;
}

.cta-btn:hover { background: var(--gold); color: var(--bg); }

/* ── LEADER CARD ── */
.leader-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 28px;
  margin: 32px 0;
}

.leader-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.leader-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--white); font-weight: 400; margin-bottom: 4px; }
.leader-card p { font-size: 13px; color: var(--text-dim); margin: 0; }

/* ── HIGHLIGHT ── */
.highlight-strip {
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.03) 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  margin: 40px 0;
}

.highlight-strip h3 { font-family: 'Cinzel', serif; font-size: 13px; color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.highlight-strip p { font-size: 14px; color: var(--text); margin: 0; line-height: 1.8; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  body { flex-direction: column; }
  nav { position: relative; width: 100%; height: auto; padding: 24px 0 16px; }
  main { margin-left: 0; }
  .hero { padding: 40px 24px; min-height: 40vh; }
  .content-body { padding: 40px 24px 64px; }
  nav a { padding: 10px 24px; }
  .nav-logo { padding: 0 24px 24px; }
  .nav-section-label { padding: 0 24px 12px; }
}
