@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

:root {
  --cream: #f6efe2;
  --warm-cream: #fff8eb;
  --deep: #1f2a33;
  --deep2: #2a333b;
  --charcoal: #24211d;
  --muted: #51483d;
  --gold: #d6a85d;
  --soft-gold: #e9c681;
  --line: #dfd0b8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.7;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 42px;
  color: #f7eedf;
  background: linear-gradient(to bottom, rgba(31, 42, 51, 0.88), rgba(31, 42, 51, 0));
}

.brand {
  color: #f7eedf;
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

nav { display: flex; gap: 26px; font-size: 0.84rem; }
nav a { color: #f7eedf; text-decoration: none; opacity: 0.88; }
nav a:hover { opacity: 1; color: var(--soft-gold); }

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f7eedf;
  padding: 120px 24px 80px;
  background:
    radial-gradient(circle at 50% 48%, rgba(214, 168, 93, 0.28), transparent 28%),
    linear-gradient(to bottom, #1f2a33, #27333d 45%, #3d3328 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 23, 20, 0.8), transparent 48%);
}

.glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(214, 168, 93, 0.3);
  filter: blur(120px);
}

.hero-inner { position: relative; z-index: 5; max-width: 900px; }

.lamp-mark, .spark {
  width: 78px;
  height: 78px;
  margin: 0 auto 28px;
  border-radius: 50%;
  border: 1px solid rgba(233, 198, 129, 0.4);
  background: rgba(247, 238, 223, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-gold);
  font-size: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}

.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.33em;
  font-size: 0.78rem;
  color: #d7c6aa;
}

.eyebrow.dark { color: #8a7351; }

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0;
  font-weight: 500;
}

h1 { font-size: clamp(3.8rem, 8vw, 7.5rem); line-height: 0.95; }
h2 { font-size: clamp(2.8rem, 5vw, 5rem); line-height: 1.04; }
h3 { font-size: 2rem; }
h4 { font-size: 1.7rem; color: #7b633d; margin-top: 8px; }

.divider {
  height: 1px;
  width: 120px;
  margin: 42px auto;
  background: rgba(233, 198, 129, 0.7);
}

.hero-lines {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  color: #f2e6d1;
}

.read-words {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--soft-gold);
  margin: 28px 0 42px;
}

.button {
  display: inline-block;
  text-decoration: none;
  color: #f7eedf;
  border: 1px solid rgba(233, 198, 129, 0.55);
  border-radius: 999px;
  padding: 14px 30px;
  background: transparent;
  transition: 0.25s ease;
}

.button:hover { background: rgba(233, 198, 129, 0.14); transform: translateY(-1px); }

.dark-button {
  color: var(--warm-cream);
  background: #2f3a43;
  border-color: #2f3a43;
  margin-top: 24px;
}

.dark-button:hover { background: #1f2a33; }

.section { padding: 120px 7vw; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.copy p, .book-copy p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 680px;
}

.mission-line {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem !important;
  color: #6d552f !important;
}

.visual-card {
  min-height: 460px;
  border-radius: 34px;
  padding: 34px;
  background: linear-gradient(135deg, #2b3440, #4a3b2f, #b88742);
  box-shadow: 0 24px 80px rgba(45,42,37,0.2);
}

.book-lamp-card {
  height: 100%;
  min-height: 390px;
  border-radius: 26px;
  border: 1px solid rgba(247, 238, 223, 0.22);
  background: rgba(29, 28, 25, 0.35);
  color: #fff4dc;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.icon-book { color: var(--soft-gold); font-size: 3rem; margin-bottom: 28px; }

.book-lamp-card p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1.14;
  margin: 0;
}

.book-section {
  background: var(--warm-cream);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.book-cover {
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
  border-radius: 30px;
  background: linear-gradient(to bottom, #23303a, #171511);
  padding: 26px;
  box-shadow: 0 30px 90px rgba(36, 33, 29, 0.24);
}

.cover-frame {
  min-height: 560px;
  border-radius: 22px;
  border: 1px solid rgba(214, 168, 93, 0.42);
  background: #211f1b;
  color: #f7eedf;
  text-align: center;
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cover-lamp { color: var(--soft-gold); font-size: 2.6rem; margin-bottom: 34px; }

.cover-top p, .cover-bottom span {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: #d7c6aa;
}

.cover-top h3 { font-size: 4.2rem; line-height: 0.95; margin-top: 58px; }

.cover-bottom p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  color: var(--soft-gold);
}

/* The Clarity Prayer section — replaces the original book-section */
.prayer-section {
  background: var(--warm-cream);
  text-align: center;
}

.prayer-frame {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 8px;
}

.prayer-lamp {
  width: 78px;
  height: 78px;
  margin: 0 auto 28px;
  border-radius: 50%;
  border: 1px solid rgba(214, 168, 93, 0.55);
  background: rgba(247, 238, 223, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2rem;
  box-shadow: 0 16px 50px rgba(45, 42, 37, 0.18);
}

.prayer-frame h2 {
  margin-top: 14px;
  margin-bottom: 44px;
  color: var(--charcoal);
}

.prayer-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 640px;
  margin: 0 auto;
}

.prayer-text p {
  margin: 22px 0;
  color: var(--charcoal);
}

.prayer-stanza-emphasis {
  color: #6d552f !important;
  font-style: italic;
}

.prayer-amen {
  font-size: 1.5rem !important;
  color: var(--gold) !important;
  margin-top: 34px !important;
  letter-spacing: 0.08em;
}

.prayer-attribution {
  margin-top: 48px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  color: #6d552f;
  font-style: italic;
}

.prayer-note {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.lanterns { text-align: center; }

.phrase-list {
  max-width: 850px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.25