/* ============================================================
   AskYourGod.ai — Sacred Parchment Aesthetic
   ============================================================ */

:root {
  --parchment:      #f5edd6;
  --parchment-dark: #e8d9b5;
  --parchment-deep: #d4c49a;
  --ink:            #1a1208;
  --ink-soft:       #3d2e12;
  --gold:           #b8860b;
  --gold-light:     #d4a843;
  --gold-bright:    #f0c040;
  --crimson:        #8b1a1a;
  --crimson-light:  #c0392b;
  --teal-sacred:    #2e6b6b;
  --cream:          #fdf8ee;
  --shadow:         rgba(26,18,8,0.15);
  --font-display:   'Cinzel', serif;
  --font-body:      'Crimson Pro', serif;
  --font-italic:    'IM Fell English', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* ---- LOGO IMAGES ---- */
.nav-logo-img {
  height: 48px; width: auto; display: block;
  object-fit: contain;
}
.hero-logo-wrap {
  margin-bottom: 2rem;
  animation: booksFloat 0.8s ease-out;
}
.hero-logo-img {
  width: min(520px, 85vw); height: auto;
  display: block; margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(184,134,11,0.25));
}
.footer-logo-img {
  width: 200px; height: auto; display: block;
  margin-bottom: 0.5rem;
  filter: brightness(0.9);
}

/* ---- PARCHMENT TEXTURE ---- */
.parchment-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
}

/* ---- SACRED RAYS BACKGROUND ---- */
.rays-bg {
  position: fixed; top: -20vh; left: 50%; transform: translateX(-50%);
  width: 200vw; height: 120vh; pointer-events: none; z-index: 0;
  display: flex; justify-content: center;
}
.ray {
  position: absolute; top: 0; left: 50%;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, rgba(212,168,67,0.18), transparent);
  transform-origin: top center;
  animation: rayPulse 8s ease-in-out infinite;
}
.ray:nth-child(1)  { transform: rotate(-70deg); animation-delay: 0s; }
.ray:nth-child(2)  { transform: rotate(-50deg); animation-delay: 0.5s; width: 3px; background: linear-gradient(to bottom, rgba(212,168,67,0.12), transparent); }
.ray:nth-child(3)  { transform: rotate(-30deg); animation-delay: 1s; }
.ray:nth-child(4)  { transform: rotate(-10deg); animation-delay: 1.5s; width: 3px; }
.ray:nth-child(5)  { transform: rotate(10deg);  animation-delay: 0.2s; width: 4px; background: linear-gradient(to bottom, rgba(212,168,67,0.2), transparent); }
.ray:nth-child(6)  { transform: rotate(30deg);  animation-delay: 0.8s; }
.ray:nth-child(7)  { transform: rotate(50deg);  animation-delay: 1.2s; width: 3px; }
.ray:nth-child(8)  { transform: rotate(70deg);  animation-delay: 0.4s; }
.ray:nth-child(9)  { transform: rotate(90deg);  animation-delay: 1.8s; }
@keyframes rayPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,237,214,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--parchment-deep);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  text-decoration: none; letter-spacing: 0.02em;
}
.nav-logo-ask  { color: var(--ink); }
.nav-logo-your { color: var(--crimson); font-weight: 700; }
.nav-logo-god  { color: var(--ink); }
.nav-logo-ai   { color: var(--gold); font-size: 0.9em; }

.nav-links {
  list-style: none; display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink-soft);
  text-decoration: none; letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-family: var(--font-display) !important; font-size: 0.85rem !important;
  background: var(--gold) !important; color: var(--cream) !important;
  padding: 0.5rem 1.2rem !important; border-radius: 2px !important;
  letter-spacing: 0.05em !important; font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--ink) !important; }
.nav-hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); }

/* ---- HERO ---- */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 2rem 80px;
  overflow: hidden;
}

.hero-halo {
  position: absolute; top: 8%; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(212,168,67,0.2) 0%, transparent 70%);
  pointer-events: none; animation: haloPulse 6s ease-in-out infinite;
}
@keyframes haloPulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

.hero-books {
  display: flex; gap: 1rem; justify-content: center; margin-bottom: 2.5rem;
  animation: booksFloat 0.8s ease-out;
}
@keyframes booksFloat {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.book {
  width: 52px; height: 68px; border-radius: 3px 6px 6px 3px;
  box-shadow: 3px 3px 12px var(--shadow), inset -2px 0 4px rgba(0,0,0,0.1);
  position: relative;
}
.book::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: rgba(0,0,0,0.2); border-radius: 3px 0 0 3px;
}
.book-left   { background: linear-gradient(135deg, #8b4513, #6b3410); transform: rotate(-8deg) translateY(6px); animation: bookLeft 0.9s ease-out; }
.book-center { background: linear-gradient(135deg, #b8860b, #8b6508); transform: scale(1.15) translateY(-4px); z-index: 2; animation: bookCenter 1s ease-out; width: 58px; height: 76px; }
.book-right  { background: linear-gradient(135deg, #4a6741, #3a5231); transform: rotate(8deg) translateY(6px); animation: bookRight 0.9s ease-out; }
@keyframes bookLeft   { from { opacity: 0; transform: rotate(-8deg) translateY(20px); } to { opacity: 1; transform: rotate(-8deg) translateY(6px); } }
@keyframes bookCenter { from { opacity: 0; transform: scale(1.15) translateY(10px); }   to { opacity: 1; transform: scale(1.15) translateY(-4px); } }
@keyframes bookRight  { from { opacity: 0; transform: rotate(8deg) translateY(20px); }  to { opacity: 1; transform: rotate(8deg) translateY(6px); } }

.hero-content { position: relative; z-index: 2; animation: heroFade 1.2s ease-out 0.3s both; }
@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-body); font-size: 0.95rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700; line-height: 1; margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.hero-title-ask  { color: var(--ink); }
.hero-title-your { color: var(--crimson); }
.hero-title-god  { color: var(--ink); }
.hero-title-ai   { color: var(--gold); font-size: 0.7em; vertical-align: super; }
.hero-tagline {
  font-family: var(--font-italic); font-size: 1.4rem; color: var(--ink-soft);
  margin-bottom: 1.5rem; letter-spacing: 0.05em;
}
.hero-sub {
  font-size: 1.2rem; color: var(--ink-soft); max-width: 560px; margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem;
}
.hero-faiths-strip {
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.15em;
  color: var(--ink-soft); display: flex; align-items: center; gap: 0.8rem;
  flex-wrap: wrap; justify-content: center;
}
.hero-faiths-strip .divider { color: var(--gold); }

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.1em;
  color: var(--gold); text-transform: uppercase; animation: scrollHint 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollHint { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ---- BUTTONS ---- */
.btn-primary {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  background: var(--gold); color: var(--cream);
  padding: 0.85rem 2.2rem; border-radius: 2px; display: inline-block;
  border: 1px solid var(--gold); transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(184,134,11,0.3);
}
.btn-primary:hover { background: var(--ink); border-color: var(--ink); color: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(184,134,11,0.4); }
.btn-large { padding: 1.1rem 3rem; font-size: 1rem; }

.btn-ghost {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  background: transparent; color: var(--ink);
  padding: 0.85rem 2.2rem; border-radius: 2px; display: inline-block;
  border: 1px solid var(--parchment-deep); transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost-dark {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  background: transparent; color: var(--ink);
  padding: 0.75rem 1.8rem; border-radius: 2px; display: inline-block;
  border: 1px solid var(--parchment-deep); transition: all 0.25s; text-align: center;
}
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ---- VERSE BAND ---- */
.verse-band {
  position: relative; z-index: 1;
  background: var(--ink); padding: 4rem 2rem;
  border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
}
.verse-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.verse-inner blockquote { text-align: center; padding: 1rem; }
.verse-inner blockquote p {
  font-family: var(--font-italic); font-size: 1.05rem; font-style: italic;
  color: var(--gold-light); line-height: 1.7; margin-bottom: 0.8rem;
}
.verse-inner blockquote cite {
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.1em;
  color: var(--parchment-deep); text-transform: uppercase;
}

/* ---- SECTIONS COMMON ---- */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.ornament {
  font-size: 0.7rem; letter-spacing: 0.3em; color: var(--gold);
  margin-bottom: 1.2rem; display: block;
}
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: var(--ink); margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.section-sub {
  font-family: var(--font-body); font-size: 1.1rem; color: var(--ink-soft);
  max-width: 600px; margin: 0 auto;
}

/* ---- FAITHS ---- */
.faiths {
  position: relative; z-index: 1;
  padding: 7rem 2rem;
  background: var(--cream);
  border-top: 1px solid var(--parchment-deep);
}
.faiths-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.faith-card {
  background: var(--parchment); border: 1px solid var(--parchment-deep);
  border-radius: 4px; padding: 2.5rem 2rem; text-align: center;
  transition: all 0.3s; position: relative; overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
}
.faith-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
  opacity: 0; transition: opacity 0.3s;
}
.faith-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px var(--shadow); }
.faith-card:hover::before { opacity: 1; }
.faith-icon {
  font-size: 2.2rem; color: var(--gold); margin-bottom: 1.2rem; display: block;
  font-family: serif;
}
.faith-card h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.8rem; letter-spacing: 0.03em;
}
.faith-text { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 1.2rem; }
.faith-scripture {
  font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.faith-btn {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  background: var(--ink); color: var(--gold-light);
  padding: 0.6rem 1.5rem; display: inline-block; border-radius: 2px;
  transition: all 0.2s;
}
.faith-btn:hover { background: var(--gold); color: var(--cream); }
.faith-card-more { border-style: dashed; opacity: 0.8; }

/* ---- HOW IT WORKS ---- */
.how {
  position: relative; z-index: 1;
  padding: 7rem 2rem;
  background: var(--parchment);
}
.steps {
  display: flex; align-items: flex-start; gap: 1rem;
  max-width: 900px; margin: 0 auto;
}
.step {
  flex: 1; background: var(--cream); border: 1px solid var(--parchment-deep);
  border-radius: 4px; padding: 2.5rem 2rem;
  box-shadow: 0 2px 8px var(--shadow);
}
.step-num {
  font-family: var(--font-display); font-size: 2.5rem; color: var(--gold);
  font-weight: 700; margin-bottom: 1rem; line-height: 1;
}
.step-body h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.8rem; letter-spacing: 0.03em;
}
.step-body p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; }
.step-connector {
  font-size: 1.2rem; color: var(--gold); margin-top: 3rem; flex-shrink: 0;
  opacity: 0.6;
}

/* ---- DEMO CHAT ---- */
.demo {
  position: relative; z-index: 1;
  padding: 7rem 2rem;
  background: var(--parchment-dark);
  border-top: 1px solid var(--parchment-deep);
}
.chat-window {
  max-width: 720px; margin: 0 auto;
  background: var(--cream); border: 1px solid var(--parchment-deep);
  border-radius: 6px; overflow: hidden; box-shadow: 0 8px 40px var(--shadow);
}
.chat-header {
  background: var(--ink); padding: 1rem 1.5rem;
  display: flex; align-items: center;
}
.chat-faith-badge {
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.1em;
  color: var(--gold-light); text-transform: uppercase;
}
.chat-messages { padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.chat-msg { display: flex; gap: 1rem; }
.chat-msg.user { flex-direction: row-reverse; }
.chat-msg.user .chat-bubble {
  background: var(--ink); color: var(--parchment-light, #f5edd6);
  border-radius: 12px 2px 12px 12px;
  font-size: 1rem;
}
.chat-bubble {
  max-width: 80%; background: var(--parchment); border: 1px solid var(--parchment-deep);
  border-radius: 2px 12px 12px 12px; padding: 1rem 1.2rem;
  font-family: var(--font-body); font-size: 0.95rem; line-height: 1.7;
  color: var(--ink);
}
.chat-bubble p { margin-bottom: 0.8rem; }
.chat-bubble p:last-child { margin-bottom: 0; }
.chat-bubble strong { color: var(--crimson); font-weight: 600; }
.chat-bubble em { color: var(--ink-soft); font-style: italic; }
.chat-citation { font-size: 0.8rem; color: var(--gold); font-family: var(--font-display); letter-spacing: 0.05em; }
.chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0; margin-top: 0.3rem;
}
.typing-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); margin-right: 4px;
  animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; margin-right: 0; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30%           { transform: translateY(-6px); opacity: 1; }
}
.chat-input-row {
  border-top: 1px solid var(--parchment-deep); display: flex; gap: 0;
}
.chat-input-row input {
  flex: 1; padding: 1rem 1.5rem;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink-soft);
  background: var(--parchment); border: none; outline: none;
}
.chat-send {
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.08em;
  background: var(--gold); color: var(--cream); border: none;
  padding: 1rem 1.8rem; cursor: pointer; transition: background 0.2s;
}
.chat-send:hover { background: var(--ink); }

/* ---- PRICING ---- */
.pricing {
  position: relative; z-index: 1;
  padding: 7rem 2rem;
  background: var(--ink);
}
.pricing .section-header h2 { color: var(--parchment); }
.pricing .section-sub { color: var(--parchment-deep); }
.pricing .ornament { color: var(--gold); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
  max-width: 800px; margin: 0 auto;
}
.pricing-card {
  background: rgba(245,237,214,0.05); border: 1px solid rgba(212,168,67,0.2);
  border-radius: 4px; padding: 2.5rem 2rem; text-align: center;
  position: relative; transition: all 0.3s;
}
.pricing-card:hover { border-color: rgba(212,168,67,0.5); transform: translateY(-3px); }
.pricing-card-featured {
  background: rgba(184,134,11,0.12); border: 2px solid var(--gold);
  transform: scale(1.04);
}
.pricing-card-featured:hover { transform: scale(1.04) translateY(-3px); }
.pricing-badge {
  font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; background: var(--gold); color: var(--cream);
  padding: 0.3rem 0.8rem; border-radius: 2px; display: inline-block;
  margin-bottom: 1.2rem;
}
.pricing-tier {
  font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.pricing-price {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
  color: var(--parchment); line-height: 1;
}
.pricing-price span { font-size: 1.5rem; }
.pricing-period {
  font-family: var(--font-body); font-size: 0.9rem; color: var(--parchment-deep);
  margin-bottom: 2rem;
}
.pricing-features {
  list-style: none; margin-bottom: 2rem; text-align: left;
}
.pricing-features li {
  font-family: var(--font-body); font-size: 0.95rem; color: var(--parchment-dark);
  padding: 0.4rem 0; border-bottom: 1px solid rgba(212,168,67,0.1);
}
.pricing-features li:last-child { border-bottom: none; }

/* ---- TESTIMONIALS ---- */
.testimonials {
  position: relative; z-index: 1;
  padding: 7rem 2rem;
  background: var(--cream);
  border-top: 1px solid var(--parchment-deep);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.testimonial {
  background: var(--parchment); border: 1px solid var(--parchment-deep);
  border-radius: 4px; padding: 2rem;
  box-shadow: 0 2px 8px var(--shadow);
  position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: -0.5rem; left: 1.2rem;
  font-family: var(--font-display); font-size: 4rem; color: var(--gold);
  opacity: 0.3; line-height: 1;
}
.testimonial p {
  font-family: var(--font-italic); font-size: 1rem; font-style: italic;
  color: var(--ink-soft); line-height: 1.8; margin-bottom: 1rem;
}
.testimonial cite {
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.08em;
  color: var(--gold); text-transform: uppercase;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  position: relative; z-index: 1; overflow: hidden;
  padding: 7rem 2rem; text-align: center;
  background: var(--parchment-dark);
  border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
}
.cta-rays {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center top, rgba(212,168,67,0.15) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 2; }
.cta-inner h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600; color: var(--ink); margin-bottom: 1rem; letter-spacing: 0.02em;
}
.cta-inner p { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 2.5rem; }
.cta-sub { font-size: 0.85rem !important; color: var(--ink-soft) !important; margin-top: 1rem !important; margin-bottom: 0 !important; opacity: 0.7; }

/* ---- FOOTER ---- */
.footer {
  position: relative; z-index: 1;
  background: var(--ink); padding: 5rem 2rem 2rem;
  border-top: 2px solid var(--gold);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 4rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(212,168,67,0.2);
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  margin-bottom: 1rem;
}
.footer-logo p { font-family: var(--font-italic); font-size: 0.95rem; color: var(--parchment-deep); margin-top: 0.5rem; }
.footer-links {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col a {
  display: block; font-family: var(--font-body); font-size: 0.95rem;
  color: var(--parchment-deep); text-decoration: none; margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px; margin: 2rem auto 0;
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-body); font-size: 0.85rem; color: rgba(212,168,67,0.5);
  margin-bottom: 0.4rem;
}
.footer-disclaimer { font-size: 0.8rem !important; opacity: 0.6; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .faiths-grid       { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid      { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card-featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .verse-inner       { grid-template-columns: 1fr; }
  .steps             { flex-direction: column; }
  .step-connector    { margin: 0 auto; }
  .footer-inner      { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .faiths-grid  { grid-template-columns: 1fr; }
  .nav-links    { display: none; }
  .nav-hamburger { display: block; }
  .hero-title   { font-size: 3.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}
