:root {
  color-scheme: dark;
  --bg: #090909;
  --surface: #111;
  --line: #242118;
  --gold: #c9a84c;
  --gold-soft: #eadb9d;
  --text: #f4f1e8;
  --muted: #aaa69c;
  --faith: #c9a84c;
  --health: #7ec8a4;
  --learning: #7eb5e8;
  --work: #e87e7e;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", Arial, sans-serif;
  line-height: 1.7;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #181818;
  background: rgba(9, 9, 9, .94);
  backdrop-filter: blur(12px);
}

.nav,
.page,
.footer-inner {
  width: min(100% - 36px, 920px);
  margin-inline: auto;
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  font-weight: 700;
}

.brand img { width: 30px; height: 30px; }

.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { color: #aaa; font-size: 13px; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold); }

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--gold);
  border-radius: 7px;
  background: var(--gold);
  color: #090909;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  padding: 88px 0 64px;
  border-bottom: 1px solid #181818;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  margin: 0 0 18px;
  font-size: clamp(44px, 8vw, 72px);
  line-height: .98;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.08;
}

h3 { margin: 0 0 8px; font-size: 25px; line-height: 1.15; }

.lede {
  max-width: 720px;
  margin: 0;
  color: #c7c3b9;
  font-size: clamp(17px, 2.4vw, 21px);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.button.secondary { background: transparent; color: var(--gold); border-color: #6f602d; }

.section { padding: 64px 0; border-bottom: 1px solid #151515; }
.section-copy { max-width: 720px; color: var(--muted); }
.section-copy strong { color: var(--text); }

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.card {
  border: 1px solid #202020;
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
}

.card p { margin: 0; color: var(--muted); }
.card .label { margin-bottom: 7px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }

.pillar { border-top: 3px solid var(--accent); }
.steps { counter-reset: steps; display: grid; gap: 0; margin-top: 22px; }
.step { position: relative; padding: 25px 0 25px 60px; border-top: 1px solid #202020; }
.step::before { counter-increment: steps; content: counter(steps, decimal-leading-zero); position: absolute; left: 0; top: 24px; color: var(--gold); font-weight: 800; }
.step p { margin: 0; color: var(--muted); }

.rule-list { display: grid; gap: 12px; margin-top: 24px; }
.rule { padding: 19px 20px; border-left: 3px solid var(--gold); background: #10100d; }
.rule h3 { font-size: 22px; }
.rule p, .rule li { color: var(--muted); }
.rule ul { margin: 8px 0 0; padding-left: 20px; }

.callout {
  padding: 25px;
  border: 1px solid #6a5924;
  border-radius: 8px;
  background: #151208;
  color: var(--gold-soft);
}

.resource-link { display: block; text-decoration: none; }
.resource-link:hover { border-color: #6a5924; }
.resource-link span { color: var(--gold); font-size: 13px; font-weight: 700; }

footer { padding: 34px 0 48px; color: #777; font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: #999; text-decoration: none; }

@media (max-width: 700px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding-top: 60px; }
  .grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}
