:root {
  color-scheme: dark;
  --bg: #080807;
  --panel: rgba(255, 248, 232, 0.055);
  --panel-strong: rgba(255, 248, 232, 0.095);
  --text: #f7efe1;
  --muted: rgba(247, 239, 225, 0.76);
  --soft: rgba(247, 239, 225, 0.56);
  --gold: #f4c569;
  --gold-soft: #c8a55f;
  --line: rgba(244, 197, 105, 0.2);
  --shadow: rgba(0, 0, 0, 0.5);
  --max: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 197, 105, 0.16), transparent 32rem),
    radial-gradient(circle at 85% 12%, rgba(190, 235, 160, 0.08), transparent 28rem),
    linear-gradient(135deg, #070706 0%, #10100d 48%, #080807 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
  opacity: 0.26;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

p { line-height: 1.7; }

main { flex: 1; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(22px);
  background: linear-gradient(180deg, rgba(8, 8, 7, 0.82), rgba(8, 8, 7, 0.5));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  min-width: max-content;
}

.wordmark-main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.wordmark-sub {
  color: var(--gold-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  padding: 5px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.hero {
  padding: 82px 0 68px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 700;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold-soft);
}

h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  margin-top: 20px;
  font-size: clamp(3.7rem, 9.5vw, 8.6rem);
  line-height: 0.84;
  max-width: 900px;
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.04;
}

.lede {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(244, 197, 105, 0.26);
  background: rgba(244, 197, 105, 0.1);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0,0,0,0.16);
}

.button.primary {
  color: #14100a;
  background: linear-gradient(135deg, #f9d98d, var(--gold));
  border-color: rgba(244, 197, 105, 0.75);
}

.button:hover { transform: translateY(-1px); }

.hero-card {
  position: relative;
  width: min(100%, 440px);
  margin-inline: auto;
  padding: clamp(26px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(244, 197, 105, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 0%, rgba(244, 197, 105, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025));
  box-shadow: 0 34px 90px var(--shadow), inset 0 0 0 1px rgba(255,255,255,0.055);
}

.hero-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-bottom: 42px;
  background: var(--gold-soft);
}

.hero-card h2 {
  margin-top: 16px;
  font-size: clamp(2.35rem, 4.2vw, 4.55rem);
  line-height: 1.02;
}

.hero-card p {
  max-width: 30rem;
  margin: 22px 0 0;
  color: var(--muted);
}

.hero-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
}

.hero-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(244, 197, 105, 0.55);
}

.phone-frame {
  width: min(100%, 390px);
  margin-inline: auto;
  padding: 10px;
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.025));
  box-shadow: 0 36px 90px var(--shadow), inset 0 0 0 1px rgba(255,255,255,0.08);
}

.phone-frame video,
.phone-frame img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 29px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.section {
  padding: 74px 0;
  border-top: 1px solid rgba(244, 197, 105, 0.11);
}

.section .kicker {
  margin-bottom: 18px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 18px;
}

.reel-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.38fr) minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(244, 197, 105, 0.16);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 22px 70px rgba(0,0,0,0.22);
}

.reel-card img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 20px;
}

.reel-card p { color: var(--muted); margin: 14px 0 0; }

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(244, 197, 105, 0.16);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.035);
  font-size: 0.82rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.quote-panel,
.copy-panel,
.note-panel {
  border: 1px solid rgba(244, 197, 105, 0.16);
  border-radius: 28px;
  background: var(--panel);
  padding: clamp(22px, 4vw, 34px);
}

.scripture {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.42rem, 2.4vw, 2.15rem);
  line-height: 1.22;
  color: var(--text);
}

.reference {
  margin-top: 20px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.copy-panel p,
.note-panel p { color: var(--muted); }

.reflection-box {
  color: var(--muted);
  padding: 22px;
  border-radius: 20px;
  background: rgba(0,0,0,0.24);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 1.02rem;
  line-height: 1.7;
}

.reflection-box p {
  margin: 0;
}

.reflection-box p + p {
  margin-top: 16px;
}

.footer {
  padding: 54px 0 62px;
  color: var(--soft);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
}

.footer-brand {
  display: grid;
  gap: 9px;
}

.footer-wordmark {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 4vw, 3.4rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer a { color: var(--muted); }
.footer a:hover { color: var(--text); }

.reel-page .hero { padding-bottom: 46px; }
.reel-page h1 { font-size: clamp(3rem, 8vw, 7.2rem); }
.reel-page .hero-grid { grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr); }
.reel-page .phone-frame { max-width: 430px; }

.small-label {
  color: var(--gold-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
}

@media (max-width: 820px) {
  .hero { padding-top: 48px; }
  .hero-grid,
  .reel-page .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }
  .reel-page .hero-copy { order: -1; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  .reel-card { grid-template-columns: 110px minmax(0, 1fr); gap: 16px; padding: 16px; }
  .nav-links { gap: 12px; font-size: 0.84rem; }
  .nav-links .optional { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .wrap { width: min(100% - 24px, var(--max)); }
  .nav { min-height: 70px; }
  .wordmark-sub { display: none; }
  .nav-links { border: 0; background: transparent; padding: 0; gap: 2px; }
  .nav-links a { padding: 0 8px; }
  .hero { padding-top: 38px; }
  h1 { font-size: clamp(3.25rem, 18vw, 5.6rem); }
  .reel-card { grid-template-columns: 1fr; }
  .reel-card img { width: 58%; }
  .phone-frame { border-radius: 30px; padding: 8px; }
  .phone-frame video, .phone-frame img { border-radius: 23px; }
}
