/* Fonts loaded via <link> in HTML head — no @import blocking */

:root {
  --abyss:    #02071A;
  --deep:     #050E2A;
  --navy:     #091840;
  --royal:    #0F2568;
  --cobalt:   #1535A8;
  --sapphire: #1E52D4;
  --sky:      #3B7FE8;
  --ice:      #A8C4F5;
  --gold:     #D4AF37;
  --gold2:    #F0D878;
  --gold3:    rgba(212,175,55,0.18);
  --glass-bg: rgba(255,255,255,0.055);
  --glass-bd: rgba(255,255,255,0.11);
  --glass-shine: linear-gradient(135deg,rgba(255,255,255,0.09) 0%,rgba(255,255,255,0.02) 60%,transparent 100%);
  --fd: 'Cardo', Georgia, serif;
  --fh: 'Cinzel Decorative', serif;
  --fh-display: 'Cinzel Decorative', serif;
  --fu: 'Raleway', sans-serif;

  --gold-light:   #F0D878;
  --gold-dark:    #8B6914;
  --gold-dim:     rgba(212,175,55,0.25);
  --cream:        rgba(255,255,255,0.82);
  --ivory:        rgba(255,255,255,0.9);
  --text:         rgba(255,255,255,0.82);
  --text-dark:    #02071A;
  --text-body:    rgba(168,196,245,0.7);
  --text-light:   rgba(168,196,245,0.5);
  --shadow-gold:  0 4px 24px rgba(212,175,55,0.3);
  --deep-blue:    #050E2A;
  --navy-old:     #091840;
  --royal-blue:   #0F2568;
  --white:        #FFFFFF;
  --bg:           #02071A;
  --bg2:          #050E2A;
  --bg3:          #091840;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
[id] { scroll-margin-top: 80px; }

body {
  background: var(--abyss);
  color: rgba(255,255,255,0.88);
  font-family: var(--fd);
  font-size: 18px;
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Atmospheric bg + noise handled by .page-bg and .page-noise divs in HTML — not body pseudo-elements (iOS Safari bug) */
.page-bg {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 15% 40%,  rgba(21,53,168,0.28) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 85% 20%,  rgba(30,82,212,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 80% at 50% 90%,  rgba(9,24,64,0.6)   0%, transparent 70%),
    radial-gradient(ellipse 100% 100% at 50% 50%, var(--deep) 0%, var(--abyss) 100%);
  pointer-events: none;
}
.page-noise {
  position: fixed; inset: 0; z-index: -1;
  opacity: 0.022; pointer-events: none;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--gold); color: var(--abyss); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--abyss); }
::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.4); border-radius: 2px; }

/* ── NAV ── */
nav:not(.chapter-nav) {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px; display: flex; align-items: center;
  padding: 0 3rem;
  background: rgba(3,10,28,0.75);
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}
nav .nav-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
}
nav .logo-text {
  font-family: var(--fh); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; color: #fff; text-decoration: none;
  display: flex; align-items: center; gap: 0.85rem;
  white-space: nowrap; line-height: 1; flex-shrink: 0;
}
nav .logo-text span {
  display: inline; font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.1em; color: var(--ice); opacity: 0.6;
}
nav .logo-text span strong { font-weight: 700; color: var(--gold); }
nav ul { list-style: none; display: flex; gap: 2.2rem; flex-shrink: 0; }
nav ul li a {
  font-family: var(--fu); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(168,196,245,0.75); text-decoration: none; transition: color .25s;
}
nav ul li a:hover { color: var(--gold); }
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(212,175,55,0.8); margin: 5px 0; border-radius: 2px;
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(212,175,55,0.8); border-radius: 2px; transition: all .3s;
}
nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-overlay {
  display: none; position: fixed; inset: 64px 0 0 0; z-index: 999;
  background: rgba(2,7,26,0.97); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
nav.nav-open ~ .nav-overlay { display: flex; }
.nav-overlay a {
  font-family: var(--fh); font-size: 1.1rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75); text-decoration: none; transition: color .25s;
}
.nav-overlay a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 64px 2rem 4rem; position: relative; overflow: hidden; text-align: center;
  background: transparent;
}
.hero::before, .hero::after { content: none; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(70px);
  pointer-events: none; animation: orbFloat var(--d,18s) ease-in-out infinite alternate;
}
@keyframes orbFloat { from { transform: translate(0,0) scale(1); } to { transform: translate(var(--tx,30px),var(--ty,20px)) scale(1.08); } }
.orb1 { width:500px;height:500px;top:-10%;left:-8%;background:radial-gradient(ellipse,rgba(21,53,168,0.4) 0%,transparent 70%);--d:22s;--tx:40px;--ty:30px; }
.orb2 { width:400px;height:400px;top:20%;right:-5%;background:radial-gradient(ellipse,rgba(30,82,212,0.3) 0%,transparent 70%);--d:17s;--tx:-30px;--ty:40px;animation-delay:-6s; }
.orb3 { width:300px;height:300px;bottom:5%;left:30%;background:radial-gradient(ellipse,rgba(15,37,104,0.5) 0%,transparent 70%);--d:25s;--tx:20px;--ty:-30px;animation-delay:-12s; }
.orb4 { width:200px;height:200px;top:40%;left:10%;background:radial-gradient(ellipse,rgba(212,175,55,0.06) 0%,transparent 70%);--d:14s;--tx:50px;--ty:20px;animation-delay:-3s; }
.hero-content {
  position: relative; z-index: 2; max-width: 740px; width: 100%;
  border-radius: 24px; padding: 4rem 4rem 3.5rem;
  background: url('../images/cross-sky-bg.webp') 20% 60% / cover no-repeat;
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.06),0 40px 80px rgba(2,7,26,0.6);
  overflow: hidden;
}
.hero-content::before {
  content: ''; position: absolute; inset: 0; border-radius: 24px;
  background: linear-gradient(to bottom, rgba(10,22,40,0.5) 0%, rgba(10,22,40,0.35) 40%, rgba(10,22,40,0.55) 100%);
  z-index: 0; pointer-events: none;
}
.hero-content > * { position: relative; z-index: 1; }
.hero-cross { margin-bottom: 2rem; }
.hero-cross img {
  max-width: 80px; height: auto; margin: 0 auto; display: block;
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.5)) drop-shadow(0 0 60px rgba(59,127,232,0.3));
  animation: crossAura 5s ease-in-out infinite alternate;
}
@keyframes crossAura {
  from { filter: drop-shadow(0 0 14px rgba(212,175,55,0.4)) drop-shadow(0 0 40px rgba(59,127,232,0.2)); }
  to   { filter: drop-shadow(0 0 30px rgba(212,175,55,0.65)) drop-shadow(0 0 80px rgba(59,127,232,0.35)); }
}
.hero h1 {
  font-family: var(--fh-display); font-size: clamp(2.8rem,8vw,5.5rem); font-weight: 700;
  line-height: 1.0; letter-spacing: 0.08em;
  background: linear-gradient(165deg,var(--gold2) 0%,var(--gold) 35%,#fff 50%,var(--gold) 65%,var(--gold2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.5rem; filter: drop-shadow(0 2px 24px rgba(212,175,55,0.3));
}
.hero h2 {
  font-family:var(--fh);font-size:clamp(0.6rem,1.5vw,0.82rem);font-weight:400;
  letter-spacing:0.22em;color:var(--ice);opacity:0.65;margin-bottom:2rem;text-transform:uppercase;
  -webkit-text-fill-color: currentColor;
}
.hero .subtitle {
  font-family:var(--fd);font-style:italic;font-size:1.05rem;line-height:1.75;
  color:rgba(255,255,255,0.8);margin-bottom:0.6rem;max-width:460px;margin-left:auto;margin-right:auto;
}
.hero .scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-family: var(--fu); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); opacity: 0.8; z-index: 3;
  animation: bounce 2s ease-in-out infinite alternate;
}
@keyframes bounce { 0% { transform:translateX(-50%) translateY(0); } 100% { transform:translateX(-50%) translateY(8px); } }

/* ── SECTIONS ── */
section { position: relative; }
.section-dark  { background: var(--deep);  padding: 6rem 2rem; }
.section-light { background: var(--navy);  padding: 6rem 2rem; }
.section-ivory { background: var(--navy);  padding: 6rem 2rem; }
.section-royal { background: var(--royal); padding: 6rem 2rem; }
.cta-section   { background: var(--royal); padding: 5rem 2rem; text-align: center; }
.container { max-width: 900px; margin: 0 auto; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .ornament { margin-bottom: 1rem; }
.section-header .ornament img {
  max-width: 42px; height: auto; margin: 0 auto; display: block; opacity: 0.6;
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.4));
}
.section-header h2 {
  font-family:var(--fh);font-size:clamp(1.4rem,3.5vw,2.2rem);font-weight:700;
  line-height:1.15;letter-spacing:0.06em;color:#fff;margin-bottom:1rem;
  text-shadow:0 0 40px rgba(59,127,232,0.3);
}
.section-header .line {
  width: 60px; height: 1px; margin: 1rem auto 1.5rem;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.5), transparent);
}
.section-header p {
  font-family:var(--fd);font-size:1.05rem;font-style:italic;
  color:rgba(255,255,255,0.7);max-width:500px;margin:0 auto;line-height:1.6;
}
/* Override old light/ivory text colors */
.section-light .section-header h2,
.section-ivory .section-header h2 { color: #fff; }
.section-light .section-header p,
.section-ivory .section-header p { color: rgba(255,255,255,0.6); }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--fh); }
h3, .chapter-heading {
  font-family:var(--fh);font-size:clamp(0.9rem,2.5vw,1.2rem);font-weight:400;
  letter-spacing:0.1em;color:var(--ice);margin:3rem 0 1.25rem;text-align:center;
}

/* ── TESTIMONY TEXT ── */
.testimony-text { max-width: 680px; margin-left: auto; margin-right: auto; font-size: 1.05rem; line-height: 1.95; }
.testimony-text p {
  font-family:var(--fd);font-size:1.05rem;line-height:1.95;
  color:rgba(255,255,255,0.85);margin-bottom:1.5rem;text-indent:2rem;
}
.testimony-text p:first-child { text-indent: 0; }
.testimony-text p:first-child::first-letter {
  font-family: var(--fh); font-size: 3.5rem; float: left;
  line-height: 0.8; padding-right: 0.5rem; padding-top: 0.15rem;
  color: var(--gold); font-weight: 700;
}
.section-light .testimony-text,
.section-ivory .testimony-text,
.section-dark .testimony-text,
.section-royal .testimony-text { color: rgba(255,255,255,0.85); }

/* ── SCRIPTURE ── */
.scripture {
  margin:2.5rem 0;border-radius:0 10px 10px 0;padding:1.5rem 2rem;
  border-left:2px solid var(--gold);background:rgba(212,175,55,0.05);
  background-image:linear-gradient(90deg,rgba(212,175,55,0.06) 0%,transparent 100%);
  position:relative;text-align:left;
  font-family:var(--fd);font-style:italic;font-size:1.1rem;line-height:1.8;
  color:rgba(255,255,255,0.8);
}
.scripture::before { content:'';position:absolute;left:-1px;top:0;bottom:0;width:2px;background:linear-gradient(to bottom,transparent,var(--gold),transparent); }
.scripture .reference {
  display:block;margin-top:0.75rem;font-family:var(--fu);font-style:normal;
  font-size:0.72rem;font-weight:400;letter-spacing:0.15em;text-transform:uppercase;
  color:var(--gold);opacity:0.85;
}
.section-light .scripture,
.section-ivory .scripture { color: rgba(255,255,255,0.8); border-top: none; border-bottom: none; }
.section-dark .scripture,
.section-royal .scripture { color: rgba(255,255,255,0.8); border-top: none; border-bottom: none; }

blockquote {
  margin:2.5rem 0;border-radius:0 10px 10px 0;padding:1.5rem 2rem;
  border-left:2px solid var(--gold);background:rgba(212,175,55,0.05);
  background-image:linear-gradient(90deg,rgba(212,175,55,0.06) 0%,transparent 100%);position:relative;
}
blockquote p { font-family:var(--fd);font-style:italic;font-size:1.1rem;line-height:1.8;color:rgba(255,255,255,0.82);margin:0 0 0.6rem; }
blockquote cite { font-family:var(--fu);font-style:normal;font-size:0.57rem;font-weight:400;letter-spacing:0.2em;text-transform:uppercase;color:var(--gold);opacity:0.75; }

/* ── IMAGES ── */
img { max-width:100%;height:auto; }
.testimony-image { margin: 3rem auto; max-width: 700px; text-align: center; }
.testimony-image img {
  width: 100%; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(2,7,26,0.5);
}
.testimony-image .caption {
  font-family:var(--fd);font-style:italic;font-size:0.95rem;
  margin-top:1rem;color:rgba(255,255,255,0.6);
}

/* ── PSALM BLOCK ── */
.psalm-block {
  border-radius:12px;padding:3rem;margin:2.5rem 0;text-align:center;
  background:rgba(9,24,64,0.5);
  background-image:linear-gradient(135deg,rgba(59,127,232,0.08) 0%,transparent 60%);
  border:1px solid rgba(59,127,232,0.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);position:relative;
}
.psalm-block::before { content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);width:60px;height:2px;background:linear-gradient(to right,transparent,var(--gold),transparent); }
.psalm-block h3 { font-family:var(--fh);font-size:1.1rem;color:var(--gold);letter-spacing:0.1em;margin-bottom:2rem;margin-top:0; }
.psalm-block .verse-lines { font-family:var(--fd);font-size:1.05rem;line-height:2.15;color:rgba(255,255,255,0.8); }
.psalm-block .verse-lines p { margin:0;text-indent:0;max-width:none;color:rgba(255,255,255,0.8); }

/* ── TRUTHS GRID ── */
.truths-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:1.5px;background:rgba(255,255,255,0.05);border-radius:14px;overflow:hidden;margin:2.5rem 0;border:1px solid rgba(255,255,255,0.07); }
.truth-card {
  padding:2.25rem;background:rgba(9,24,64,0.55);
  background-image:var(--glass-shine);backdrop-filter:blur(20px);
  transition:background .3s;position:relative;
}
.truth-card::before { content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,transparent,rgba(212,175,55,0),transparent);transition:background .3s; }
.truth-card:hover { background:rgba(21,53,168,0.4); }
.truth-card:hover::before { background:linear-gradient(90deg,transparent,var(--gold),transparent); }
.truth-card .spirit-name { font-family:var(--fu);font-size:0.65rem;font-weight:400;letter-spacing:0.2em;text-transform:uppercase;color:var(--ice);opacity:0.6;margin-bottom:0.4rem; }
.truth-card h3 { font-family:var(--fh);font-size:0.95rem;color:#fff;margin-bottom:0.7rem;line-height:1.4;letter-spacing:0.04em;text-align:left;margin-top:0; }
.truth-card p { font-family:var(--fd);font-style:italic;font-size:0.95rem;line-height:1.7;color:rgba(255,255,255,0.7);text-indent:0;max-width:none;margin:0; }

/* ── CTA ── */
.cta-section h2 { text-align:center;color:#fff; }
.cta-section p { font-family:var(--fd);font-style:italic;font-size:1.1rem;color:rgba(255,255,255,0.75);max-width:640px;margin:0 auto 1.5rem;line-height:1.8; }

/* ── PRAYER WALL ── */
#prayer input[type="text"],
#prayer textarea {
  width:100%;background:rgba(255,255,255,0.05) !important;
  border:1px solid rgba(255,255,255,0.12) !important;border-radius:8px !important;
  padding:0.9rem 1.1rem;color:rgba(255,255,255,0.88) !important;
  font-family:var(--fd);font-size:1rem;margin-bottom:1.1rem;
  outline:none;transition:border-color .3s;display:block;box-sizing:border-box;
}
#prayer input[type="text"]::placeholder,
#prayer textarea::placeholder { color:rgba(168,196,245,0.35) !important; }
#prayer input[type="text"]:focus,
#prayer textarea:focus { border-color:rgba(212,175,55,0.5) !important;box-shadow:0 0 0 3px rgba(212,175,55,0.08); }
#prayer textarea { min-height:130px;resize:vertical; }
#prayer button[type="submit"] {
  font-family:var(--fu) !important;font-size:0.62rem !important;font-weight:500;
  letter-spacing:0.2em;text-transform:uppercase;
  background:linear-gradient(135deg,rgba(59,127,232,0.6),rgba(21,53,168,0.6)) !important;
  color:#fff !important;border:1px solid rgba(59,127,232,0.4) !important;
  padding:0.9rem 2.5rem;border-radius:50px !important;cursor:pointer;transition:all .3s;
}
#prayer button[type="submit"]:hover {
  background:linear-gradient(135deg,rgba(212,175,55,0.8),rgba(212,175,55,0.5)) !important;
  border-color:var(--gold) !important;color:var(--abyss) !important;
}
.prayer-empty-state { text-align:center;padding:2rem 1.5rem;opacity:0.6; }
.prayer-empty-state .empty-icon { font-size:2rem;color:var(--gold);margin-bottom:0.75rem;opacity:0.5; }
.prayer-empty-state p { font-family:var(--fd);font-style:italic;font-size:1.05rem;color:rgba(255,255,255,0.7);text-indent:0; }

/* ── Prayer Wall Cards (glass card treatment, matches truth-card / psalm-block) ── */
.prayer-card {
  position: relative;
  padding: 2rem 2.25rem;
  margin-bottom: 1.5rem;
  border-radius: 14px;
  background: rgba(9,24,64,0.55);
  background-image: var(--glass-shine);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 20px 60px rgba(2,7,26,0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: background .3s, transform .3s, box-shadow .3s, border-color .3s;
}
.prayer-card:hover {
  background: rgba(21,53,168,0.4);
  background-image: var(--glass-shine);
  border-color: rgba(212,175,55,0.2);
  transform: translateY(-2px);
  box-shadow:
    0 28px 72px rgba(2,7,26,0.6),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.prayer-card-header {
  font-family: var(--fh);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.prayer-card-header .date {
  opacity: 0.4;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}
.prayer-card-message {
  font-family: var(--fd);
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.88);
  margin: 0 0 1.25rem 0;
  text-indent: 0;
}
.prayer-card-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.prayer-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  font-family: var(--fh);
  font-size: 0.68rem;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.15em;
  transition: all 0.3s;
  white-space: nowrap;
}
.prayer-btn:hover {
  background: rgba(212,175,55,0.15);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,175,55,0.2);
}
.prayer-btn-ghost {
  background: none;
  border: 1px solid rgba(212,175,55,0.2);
  color: rgba(212,175,55,0.7);
}
.prayer-btn-ghost:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.5);
  color: var(--gold);
}
.prayer-card .prayer-comments {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(212,175,55,0.15);
  padding-top: 1.25rem;
}
.prayer-comment-item {
  margin-bottom: 0.85rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(212,175,55,0.3);
}
.prayer-comment-item .byline {
  font-family: var(--fh);
  color: rgba(212,175,55,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.prayer-comment-item p {
  font-family: var(--fd);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0;
  text-indent: 0;
}
.prayer-comment-form {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.prayer-comment-form input[type="text"] {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.88) !important;
  font-family: var(--fd);
  font-size: 0.95rem;
  padding: 0.6rem 0.9rem;
  border-radius: 8px !important;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  margin-bottom: 0 !important;
  box-sizing: border-box;
}
.prayer-comment-form .comment-name { flex: 0 0 140px; }
.prayer-comment-form .comment-msg  { flex: 1; min-width: 150px; }
.prayer-comment-form input[type="text"]:focus {
  border-color: rgba(212,175,55,0.5) !important;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}
.prayer-comment-form button {
  background: none;
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-family: var(--fh);
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
}
.prayer-comment-form button:hover {
  background: rgba(212,175,55,0.15);
  border-color: var(--gold);
}

/* ── V2.0 DYNAMIC ── */
.reading-progress-bar { position:fixed;top:0;left:0;height:3px;background:linear-gradient(90deg,var(--gold),var(--sapphire));z-index:9999;width:0%;transition:width .1s;box-shadow:0 0 8px rgba(212,175,55,0.4);pointer-events:none; }
.chapter-nav { position:fixed;right:1.5rem;top:50%;transform:translateY(-50%);display:flex;flex-direction:column;gap:8px;z-index:500;background:none !important;border:none !important;box-shadow:none !important;height:auto !important;padding:0 !important;width:auto !important;max-width:30px; }
.chapter-nav-dot { width:8px;height:8px;border-radius:50%;background:rgba(212,175,55,0.2);border:1px solid rgba(212,175,55,0.3);cursor:pointer;transition:all .3s;position:relative; }
.chapter-nav-dot.active,.chapter-nav-dot:hover { background:var(--gold);border-color:var(--gold);box-shadow:0 0 8px rgba(212,175,55,0.5);transform:scale(1.4); }
.chapter-nav-dot .dot-tooltip { position:absolute;right:1.5rem;background:rgba(2,7,26,0.95);border:1px solid rgba(212,175,55,0.3);color:var(--gold2);font-family:var(--fh);font-size:0.55rem;letter-spacing:0.1em;white-space:nowrap;padding:0.3rem 0.6rem;border-radius:3px;opacity:0;pointer-events:none;transition:opacity .2s; }
.chapter-nav-dot:hover .dot-tooltip { opacity:1; }
.chapter-marker { display:none; }
.verse-label { font-family:var(--fh);font-size:0.72rem;color:var(--gold);letter-spacing:0.15em;text-transform:uppercase;opacity:0.8;margin-bottom:0.5rem;display:block; }
.event-date { font-family:var(--fh);font-size:0.85rem;color:var(--gold);letter-spacing:0.1em;display:block;margin-bottom:1rem;text-align:center;opacity:0.9; }
.pull-quote { font-family:var(--fd);font-style:italic;font-size:clamp(1.3rem,3vw,1.75rem);color:rgba(255,255,255,0.85);line-height:1.6;text-align:center;border-top:1px solid rgba(212,175,55,0.25);border-bottom:1px solid rgba(212,175,55,0.25);border-left:none;padding:2.5rem 1.5rem;margin:3rem auto;max-width:680px;background:none;border-radius:0; }
.truth-numeral { font-family:var(--fh);font-size:2.5rem;font-weight:700;color:rgba(212,175,55,0.15);display:block;text-align:center;margin-bottom:0.5rem;line-height:1;user-select:none;pointer-events:none;position:absolute;top:1rem;right:1.25rem; }

/* ── MUSIC PLAYER ── */
.music-player { position:fixed;bottom:1.5rem;right:1.5rem;z-index:900;background:rgba(3,10,28,0.88);border:1px solid rgba(212,175,55,0.25);border-radius:10px;padding:0.65rem 1.1rem;display:flex;align-items:center;gap:10px;backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);box-shadow:0 4px 24px rgba(2,7,26,0.5);cursor:pointer;transition:border-color .3s; }
.music-player:hover { border-color:rgba(212,175,55,0.5); }
.music-player .music-icon { font-size:1.1rem;color:var(--gold);width:24px;height:24px;display:flex;align-items:center;justify-content:center; }
.music-player .music-bars { display:flex;align-items:flex-end;gap:2px;height:16px; }
.music-player .music-bars span { display:block;width:3px;background:var(--gold);border-radius:2px;animation:musicPulse 0.8s ease-in-out infinite alternate; }
.music-player .music-bars span:nth-child(1) { height:6px;animation-delay:0s; }
.music-player .music-bars span:nth-child(2) { height:12px;animation-delay:0.15s; }
.music-player .music-bars span:nth-child(3) { height:8px;animation-delay:0.3s; }
.music-player .music-bars span:nth-child(4) { height:14px;animation-delay:0.15s; }
.music-player .music-bars.paused span { animation:none;height:3px; }
@keyframes musicPulse { from { height:4px;opacity:0.5; } to { height:14px;opacity:1; } }
.music-player .music-label { font-family:var(--fh);font-size:0.72rem;color:var(--ice);letter-spacing:0.1em;text-transform:uppercase;opacity:0.8; }
.music-player .volume-slider { -webkit-appearance:none;appearance:none;width:60px;height:3px;background:rgba(212,175,55,0.3);border-radius:2px;outline:none;cursor:pointer; }
.music-player .volume-slider::-webkit-slider-thumb { -webkit-appearance:none;appearance:none;width:10px;height:10px;background:var(--gold);border-radius:50%;cursor:pointer; }

/* ── LEGACY COMPAT ── */
.fade-in { opacity:0;transform:translateY(30px);transition:opacity 0.8s ease,transform 0.8s ease; }
.fade-in.visible { opacity:1;transform:translateY(0); }
.zoom-overlay { position:fixed;inset:0;z-index:9999;pointer-events:none;background:radial-gradient(circle at center,transparent 0%,var(--abyss) 70%);opacity:0;transition:opacity .4s ease; }
.zoom-overlay.active { opacity:1; }
body.zoom-warp { transition:transform .5s cubic-bezier(.22,1,.36,1),opacity .5s ease; }
body.zoom-out { transform:scale(1.15);opacity:0; }
body.zoom-in { transform:scale(0.92);opacity:0;transition:none; }
body.zoom-arrive { transform:scale(1);opacity:1;transition:transform .5s cubic-bezier(.22,1,.36,1),opacity .4s ease; }
.scripture-reveal { opacity:0;transform:translateY(15px);transition:opacity .9s ease,transform .9s ease; }
.scripture-reveal.revealed { opacity:1;transform:translateY(0); }

/* ── FOOTER ── */
footer { padding:4rem 2rem;text-align:center;background:var(--abyss);border-top:1px solid rgba(255,255,255,0.06); }
footer .footer-cross { font-size:1.5rem;color:var(--gold);margin-bottom:1.5rem; }
footer .footer-cross img { max-width:48px;height:auto;margin:0 auto;display:block;opacity:0.5;filter:drop-shadow(0 0 12px rgba(212,175,55,0.4)); }
footer .footer-verse { font-family:var(--fd);font-style:italic;font-size:1rem;color:rgba(255,255,255,0.55);margin-bottom:1rem; }
footer p { font-family:var(--fh);font-size:0.78rem;color:rgba(255,255,255,0.45);letter-spacing:0.08em; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav:not(.chapter-nav) { padding: 0 1.5rem; }
  nav ul { display: none; }
  .menu-toggle { display: block; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 2.5rem 1.75rem; }
  .section-dark,.section-light,.section-ivory,.section-royal,.cta-section { padding: 5rem 1.25rem; }
  .truths-grid { grid-template-columns: 1fr 1fr; }
  .psalm-block { padding: 2rem 1.25rem; }
  .chapter-nav { display: none !important; }
}
@media (max-width: 768px) {
  nav ul.open {
    display: flex; position: fixed; inset: 64px 0 0 0; z-index: 999;
    background: rgba(2,7,26,0.97); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  }
  nav ul.open li a { font-size: 1rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.75); }
  .music-player { bottom:1rem;right:1rem;padding:0.5rem 0.75rem; }
  .testimony-text p { font-size:1rem;text-indent:0; }
  .scripture { padding:1rem 1.25rem;font-size:1rem; }
  .truth-card { padding:1.5rem; }
}
@media (max-width: 600px) {
  .truths-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.6rem; }
  .hero-content { padding: 2rem 1.25rem; }
  .section-dark,.section-light,.section-ivory,.section-royal,.cta-section { padding: 4rem 1rem; }
}

/* ═══════════════════════════════════════════════════════════
   DESIGN 6 — Sapphire Throne
   New classes added alongside existing CSS
   ═══════════════════════════════════════════════════════════ */

/* ── Body pseudo-element backgrounds (Design 6 style) ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 40%,  rgba(21,53,168,0.28) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 85% 20%,  rgba(30,82,212,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 80% at 50% 90%,  rgba(9,24,64,0.6)   0%, transparent 70%),
    radial-gradient(ellipse 100% 100% at 50% 50%, var(--deep) 0%, var(--abyss) 100%);
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
}

/* All real content above body layers */
nav, section, header, footer, .wave-div, .s-divider, .pq-band { position: relative; z-index: 1; }

/* ── Glass Utilities ── */
.glass {
  background: var(--glass-bg);
  background-image: var(--glass-shine);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--glass-bd);
}
.glass-strong {
  background: rgba(255,255,255,0.09);
  background-image: var(--glass-shine);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.16);
}
.glass-blue {
  background: rgba(21,53,168,0.18);
  background-image: var(--glass-shine);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(59,127,232,0.22);
}

/* ── Nav (Design 6) ── */
.nav-brand {
  font-family: var(--fh);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--white);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.85rem;
}
.nav-brand-icon {
  width: 22px; height: 22px;
  border: 1px solid rgba(212,175,55,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
}
.nav-brand-icon::before, .nav-brand-icon::after {
  content: ''; position: absolute; background: var(--gold); border-radius: 1px;
}
.nav-brand-icon::before { width: 1.5px; height: 12px; }
.nav-brand-icon::after  { width: 12px; height: 1.5px; top: calc(50% - 3px); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-family: var(--fu);
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(168,196,245,0.65);
  text-decoration: none; transition: color .25s;
}
.nav-links a:hover { color: var(--gold); }

/* ── Hero (Design 6) ── */
.hero-panel {
  position: relative; z-index: 2;
  max-width: 740px; width: 100%;
  border-radius: 24px;
  padding: 4rem 4rem 3.5rem;
  background: rgba(255,255,255,0.06);
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.11) 0%, rgba(255,255,255,0.02) 50%, transparent 100%),
    linear-gradient(to bottom, rgba(59,127,232,0.08) 0%, transparent 100%);
  backdrop-filter: blur(48px);
  -webkit-backdrop-filter: blur(48px);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.06),
    0 40px 80px rgba(2,7,26,0.6),
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -1px 0 rgba(0,0,50,0.2);
}
.hero-panel::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 26px;
  background: transparent;
  border: 1px solid rgba(212,175,55,0.12);
  pointer-events: none;
}

.hero-cross-wrap {
  margin-bottom: 2.25rem;
  display: flex; justify-content: center;
}
.hero-cross {
  width: 80px;
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.5)) drop-shadow(0 0 60px rgba(59,127,232,0.3));
  animation: crossAura 5s ease-in-out infinite alternate;
}
@keyframes crossAura {
  from { filter: drop-shadow(0 0 14px rgba(212,175,55,0.4)) drop-shadow(0 0 40px rgba(59,127,232,0.2)); }
  to   { filter: drop-shadow(0 0 30px rgba(212,175,55,0.65)) drop-shadow(0 0 80px rgba(59,127,232,0.35)); }
}

.hero-eyebrow {
  font-family: var(--fu);
  font-size: 0.58rem; font-weight: 300;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--ice); opacity: 0.7;
  margin-bottom: 1.1rem;
}
.hero-title {
  font-family: var(--fh);
  font-size: clamp(2rem, 10vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: visible;
  padding-bottom: 0.15em;
  background: linear-gradient(165deg, var(--gold2) 0%, var(--gold) 35%, #fff 50%, var(--gold) 65%, var(--gold2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  text-shadow: none;
  filter: drop-shadow(0 2px 24px rgba(212,175,55,0.3));
}
.hero-sub {
  font-family: var(--fh);
  font-size: clamp(0.6rem, 1.5vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--ice); opacity: 0.65;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.gold-rule {
  display: flex; align-items: center; gap: 1rem;
  margin: 0 auto 2.25rem;
  max-width: 320px;
}
.gold-rule-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.5));
}
.gold-rule-line:last-child {
  background: linear-gradient(to left, transparent, rgba(212,175,55,0.5));
}
.gold-rule-gem {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
}

.hero-verse {
  font-family: var(--fd);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
  max-width: 460px;
  margin-left: auto; margin-right: auto;
}
.hero-ref {
  font-family: var(--fu);
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
  margin-bottom: 2.75rem;
}
.hero-enter {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--fu);
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--abyss);
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  text-decoration: none;
  padding: 0.85rem 2.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(212,175,55,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: all .3s;
}
.hero-enter:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.45), inset 0 1px 0 rgba(255,255,255,0.3);
}
.hero-enter svg { width: 14px; height: 14px; stroke: var(--abyss); fill: none; stroke-width: 2; }

/* ── Section System (Design 6) ── */
.section { padding: 7rem 2rem; }
.section-inner { max-width: 760px; margin: 0 auto; }
.section-wide  { max-width: 1080px; margin: 0 auto; }

.content-glass {
  border-radius: 16px;
  padding: 4rem;
  background: rgba(255,255,255,0.038);
  background-image: var(--glass-shine);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(2,7,26,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ── Chapter Markers (Design 6) ── */
.ch-mark {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.75rem;
}
.ch-mark-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(212,175,55,0.5);
  flex-shrink: 0;
}
.ch-mark-label {
  font-family: var(--fu);
  font-size: 0.57rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); opacity: 0.8;
}
.ch-mark-line { flex: 1; height: 1px; background: rgba(255,255,255,0.07); }

/* ── Headings (Design 6) ── */
h2.s-title {
  font-family: var(--fh);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 2.25rem;
  text-shadow: 0 0 40px rgba(59,127,232,0.3);
}
h3.s-sub {
  font-family: var(--fh);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--ice);
  margin: 3rem 0 1.25rem;
}
.section-inner p {
  font-family: var(--fd);
  font-size: 1.05rem;
  line-height: 1.95;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}

/* ── Scripture Blockquote (Design 6) ── */
blockquote {
  margin: 2.5rem 0;
  border-radius: 0 10px 10px 0;
  padding: 1.5rem 2rem;
  border-left: 2px solid var(--gold);
  background: rgba(212,175,55,0.05);
  background-image: linear-gradient(90deg, rgba(212,175,55,0.06) 0%, transparent 100%);
  position: relative;
}
blockquote::before {
  content: '';
  position: absolute; left: -1px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
blockquote p {
  font-family: var(--fd);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin: 0 0 0.6rem;
}
blockquote cite {
  font-family: var(--fu);
  font-style: normal;
  font-size: 0.57rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); opacity: 0.75;
}

/* ── Dividers (Design 6) ── */
.s-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; padding: 0.5rem 2rem;
  position: relative; z-index: 1;
}
.s-divider-line {
  flex: 1; max-width: 200px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.3));
}
.s-divider-line:last-child {
  background: linear-gradient(to left, transparent, rgba(212,175,55,0.3));
}
.s-divider-cross {
  width: 24px; height: 24px; position: relative; flex-shrink: 0;
  opacity: 0.5;
}
.s-divider-cross::before, .s-divider-cross::after {
  content: ''; position: absolute; background: var(--gold); border-radius: 1px;
}
.s-divider-cross::before { width: 1.5px; height: 100%; left: 50%; transform: translateX(-50%); }
.s-divider-cross::after  { width: 100%; height: 1.5px; top: 33%; }

/* ── Pull Quote Band (Design 6) ── */
.pq-band {
  padding: 5rem 2rem;
  position: relative; z-index: 1;
  text-align: center;
  background: linear-gradient(135deg, rgba(21,53,168,0.35) 0%, rgba(9,24,64,0.5) 100%);
  border-top: 1px solid rgba(59,127,232,0.15);
  border-bottom: 1px solid rgba(59,127,232,0.15);
}
.pq-band-inner { max-width: 720px; margin: 0 auto; }
.pq-band p {
  font-family: var(--fd);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}
.pq-band cite {
  font-family: var(--fu);
  font-style: normal;
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); opacity: 0.65;
}

/* ── Psalm Block (Design 6) ── */
.psalm-block {
  border-radius: 12px;
  padding: 3.5rem;
  margin: 2.5rem 0;
  text-align: center;
  background: rgba(9,24,64,0.5);
  background-image: linear-gradient(135deg, rgba(59,127,232,0.08) 0%, transparent 60%);
  border: 1px solid rgba(59,127,232,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
}
.psalm-block::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.psalm-block p {
  font-family: var(--fd);
  font-size: 1.02rem;
  line-height: 2.15;
  color: rgba(255,255,255,0.65) !important;
  margin: 0 !important;
}

/* ── Truths Grid (Design 6) ── */
.truths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  overflow: hidden;
  margin: 2.5rem 0;
  border: 1px solid rgba(255,255,255,0.07);
}
.truth-card {
  padding: 2.25rem;
  background: rgba(9,24,64,0.55);
  background-image: var(--glass-shine);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background .3s;
  position: relative;
}
.truth-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0), transparent);
  transition: background .3s;
}
.truth-card:hover { background: rgba(21,53,168,0.4); }
.truth-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.t-spirit {
  font-family: var(--fu);
  font-size: 0.52rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ice); opacity: 0.6;
  margin-bottom: 0.4rem;
}
.t-title {
  font-family: var(--fh);
  font-size: 0.82rem;
  color: var(--white);
  margin-bottom: 0.7rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.t-body {
  font-family: var(--fd);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* ── Prayer Wall (Design 6) ── */
.prayer-glass {
  border-radius: 16px;
  padding: 3.5rem;
  margin: 2.5rem 0;
  background: rgba(255,255,255,0.05);
  background-image: var(--glass-shine);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 64px rgba(2,7,26,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
}
.prayer-glass::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--sky), var(--gold), transparent);
}
.prayer-glass input,
.prayer-glass textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  color: rgba(255,255,255,0.88);
  font-family: var(--fd);
  font-size: 1rem;
  margin-bottom: 1.1rem;
  outline: none;
  transition: border-color .3s, background .3s;
}
.prayer-glass input::placeholder,
.prayer-glass textarea::placeholder { color: rgba(168,196,245,0.35); }
.prayer-glass input:focus,
.prayer-glass textarea:focus {
  border-color: rgba(212,175,55,0.5);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}
.prayer-glass textarea { min-height: 130px; resize: vertical; }
.prayer-glass button {
  font-family: var(--fu);
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: linear-gradient(135deg, rgba(59,127,232,0.6), rgba(21,53,168,0.6));
  color: #fff;
  border: 1px solid rgba(59,127,232,0.4);
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(30,82,212,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.prayer-glass button:hover {
  background: linear-gradient(135deg, rgba(212,175,55,0.8), rgba(212,175,55,0.5));
  border-color: var(--gold);
  color: var(--abyss);
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}

/* ── Footer (Design 6) ── */
footer {
  position: relative; z-index: 1;
  padding: 5rem 2rem;
  text-align: center;
  background: rgba(2,7,26,0.8);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(21,53,168,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.footer-crown {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.fcrown-line {
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.35));
}
.fcrown-line:last-child {
  background: linear-gradient(to left, transparent, rgba(212,175,55,0.35));
}
.fcrown-ornament {
  font-family: var(--fh);
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.5;
}
.f-brand {
  font-family: var(--fh);
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}
.f-sub {
  font-family: var(--fd);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.3rem;
}
.f-verse {
  font-family: var(--fu);
  font-size: 0.55rem; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); opacity: 0.4;
  margin-top: 2rem;
}

/* ── Scroll Reveal (Design 6) ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Orb Animation (Design 6) ── */
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(var(--tx,30px), var(--ty,20px)) scale(1.08); }
}

/* ── Design 6 Responsive ── */
/* ── Hamburger Menu ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 501;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: rgba(3,10,28,0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  padding: 1.5rem 2rem;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-links.open a {
  font-size: 0.75rem;
  padding: 0.5rem 0;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-panel { padding: 3rem 2rem; }
  .content-glass { padding: 2.5rem 1.75rem; }
  .section { padding: 5rem 1.25rem; }
  .prayer-glass { padding: 2.5rem 1.5rem; }
  .psalm-block { padding: 2.5rem 1.5rem; }
  .pq-band { padding: 4rem 1.5rem; }
}
