:root {
  --ink: #0a0908;
  --ink-2: #131210;
  --ink-3: #1c1a17;
  --bone: #e8e2d5;
  --bone-dim: #b8b1a3;
  --bone-quiet: #6f6a5e;
  --rule: #2a2723;
  --blood: #8a2a1f;
  --blood-bright: #b03a2c;
  --warm: #c9a06a;
  --serif: "EB Garamond", "Times New Roman", serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--blood); color: var(--bone); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* type */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blood);
  flex: none;
}
.eyebrow.no-rule::before { display: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; margin: 0; }
h2 { font-size: clamp(38px, 5vw, 64px); line-height: 1.05; }
h3 { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.2; }
p { margin: 0 0 1.1em 0; text-wrap: pretty; }
.lede {
  font-family: var(--serif);
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.45;
  color: var(--bone);
  font-weight: 400;
}
.meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-quiet);
}

/* layout */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }
section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--rule);
}
section:first-of-type { border-top: 0; }
@media (max-width: 720px) {
  .wrap, .narrow { padding: 0 22px; }
}

/* nav */
nav.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: linear-gradient(180deg, rgba(10,9,8,0.85), rgba(10,9,8,0));
  backdrop-filter: blur(2px);
  transition: background .3s ease;
}
nav.top.scrolled {
  background: rgba(10,9,8,0.95);
  border-bottom: 1px solid var(--rule);
}
nav.top .brand {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 10px;
}
nav.top .brand .dot {
  width: 6px; height: 6px;
  background: var(--blood-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--blood);
}
nav.top .links {
  display: flex;
  gap: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
nav.top .links a:hover { color: var(--bone); }
nav.top .donate-btn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  border: 1px solid var(--bone-dim);
  padding: 9px 16px;
  transition: all .25s ease;
}
nav.top .donate-btn:hover { background: var(--blood); border-color: var(--blood); }
@media (max-width: 800px) {
  nav.top .links { display: none; }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  border: 1px solid var(--bone);
  background: transparent;
  cursor: pointer;
  transition: all .25s ease;
}
.btn:hover { background: var(--bone); color: var(--ink); }
.btn.primary {
  background: var(--blood);
  border-color: var(--blood);
  color: var(--bone);
}
.btn.primary:hover {
  background: var(--blood-bright);
  border-color: var(--blood-bright);
}
.btn .arrow {
  width: 14px; height: 1px; background: currentColor;
  position: relative;
}
.btn .arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn .play {
  width: 0; height: 0;
  border-left: 9px solid currentColor;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* HERO */
.hero {
  height: 100vh;
  min-height: 720px;
  padding: 0;
  border-top: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("img/hero-church.jpg") center/cover no-repeat;
  filter: contrast(1.05) saturate(0.55) brightness(0.55);
  transform: scale(1.05);
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(138,42,31,0.18), transparent 55%),
    linear-gradient(180deg, rgba(10,9,8,0.4) 0%, rgba(10,9,8,0.55) 40%, rgba(10,9,8,0.95) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}
.hero-content {
  position: relative;
  width: 100%;
  padding: 0 32px clamp(60px, 8vw, 100px);
}
@media (max-width: 720px) {
  .hero-content { padding: 0 22px clamp(60px, 8vw, 100px); }
}
.hero-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(80px, 13vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0;
}
.hero-title .num {
  color: var(--blood-bright);
  font-style: italic;
  font-weight: 400;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  max-width: 740px;
  margin-top: 36px;
  color: var(--bone);
  font-weight: 400;
  text-wrap: balance;
}
.hero-headline em {
  font-style: italic;
  color: var(--blood-bright);
  font-weight: 500;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-bottom-row {
  position: absolute;
  left: 0; right: 0; bottom: 24px;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-quiet);
  pointer-events: none;
}
.hero-bottom-row .scroll {
  display: flex; align-items: center; gap: 10px;
}
.hero-bottom-row .scroll .line {
  width: 36px; height: 1px; background: var(--bone-quiet);
  position: relative; overflow: hidden;
}
.hero-bottom-row .scroll .line::after {
  content: ""; position: absolute; left: -36px;
  width: 36px; height: 1px;
  background: var(--bone);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { left: -36px; }
  100% { left: 36px; }
}
@media (max-width: 720px) {
  .hero-bottom-row { padding: 0 22px; font-size: 9px; }
  .hero-bottom-row .left-meta { display: none; }
}
