/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
 
:root {
  --gold: #C9940A;
  --gold-light: #E2B84B;
  --gold-glow: #F5DEB3;
  --bronze: #8B6914;
  --temple-black: #0A0604;
  --temple-dark: #1A0F08;
  --temple-deep: #2C1810;
  --text: #F5E6D3;
  --text-muted: #B8977A;
  --radius: 16px;
  --shadow-gold: 0 4px 24px rgba(201,148,10,0.15);
  --pillar-bg:
    linear-gradient(90deg,
      transparent 6%, rgba(201,148,10,0.018) 6.4%, transparent 7.2%,
      transparent 16%, rgba(201,148,10,0.012) 16.3%, transparent 17%,
      transparent 83%, rgba(201,148,10,0.012) 83.7%, transparent 84%,
      transparent 92.8%, rgba(201,148,10,0.018) 93.6%, transparent 94%);
}
 
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text); background: var(--temple-black);
  line-height: 1.7; -webkit-font-smoothing: antialiased;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; }
 
.section-label {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 3px; color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 5vw, 42px); font-weight: 700;
  color: var(--gold-glow); line-height: 1.2; margin-bottom: 24px;
}
 
/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: 50px; font-size: 15px;
  font-weight: 600; text-decoration: none; cursor: pointer;
  border: none; transition: all 0.3s; text-transform: uppercase;
  letter-spacing: 1.5px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--temple-black);
  box-shadow: 0 4px 20px rgba(201,148,10,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201,148,10,0.6);
}
.btn-ghost {
  background: rgba(201,148,10,0.08);
  color: var(--gold-glow);
  border: 1.5px solid rgba(201,148,10,0.35);
}
.btn-ghost:hover {
  background: rgba(201,148,10,0.15);
  border-color: var(--gold);
}
 
/* ══════════════════════════════
   NAV
   ══════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,6,4,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,148,10,0.12);
  transition: all 0.3s;
}
.nav-scrolled { background: rgba(10,6,4,0.96); box-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-om {
  font-size: 24px; color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
}
.nav-name {
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  font-weight: 700; color: var(--gold-glow); letter-spacing: 1px;
}
.wm-cap { font-size: 1.15em; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  color: rgba(245,222,179,0.85); text-decoration: none; font-size: 13px;
  font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px;
  transition: color 0.2s; text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-dot { color: var(--gold); font-size: 6px; opacity: 0.4; }
.nav-cta {
  padding: 10px 24px; border-radius: 50px; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  background: transparent; color: var(--gold-glow);
  border: 1.5px solid rgba(201,148,10,0.4);
  text-decoration: none; transition: all 0.3s;
}
.nav-cta:hover { background: rgba(201,148,10,0.1); border-color: var(--gold); }
.nav-mobile-btn {
  display: none; background: none; border: none;
  color: var(--gold-glow); font-size: 24px; cursor: pointer;
}
 
/* ══════════════════════════════
   HERO — BARE IMAGE ONLY (no overlays / text / buttons yet)
   ══════════════════════════════
   - Trident tip + lotus base ALWAYS fully visible
   - Pillars extend off the screen edges
   - Fixed/parallax background
   - Hero ends right where the image ends
*/
/* HERO — sized to image's EXACT aspect (1915x821 = 2.333:1)
   so trident tip and lotus are both fully visible, no stretch, no crop. */
.hero {
  position: relative;
  width: 100%;
  margin-top: 50px;              /* dark gap between nav and artwork — tweak 30/50/80 to taste */
  aspect-ratio: 1915 / 821;     /* exact image proportions */
  min-height: 380px;             /* sane floor on ultrawide monitors */
  max-height: 80vh;              /* ceiling — image compresses vertically rather than overflow */
  overflow: hidden;
  background-color: var(--temple-black);
  background-image: url('assets/hero-bg-wide.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;    /* fill hero box exactly — no crop */
}
 
/* Hide all hero children — bare image only for now */
.hero-img,
.hero-overlay,
.hero-content,
.hero-tagline-solo,
.hero-desc,
.hero-spacer,
.hero-actions,
.hero-stats {
  display: none !important;
}
 
/* ══════════════════════════════
   SECTIONS
   ══════════════════════════════ */
.about {
  position: relative; padding: 100px 0; text-align: center;
  background: var(--pillar-bg),
    linear-gradient(180deg, var(--temple-black) 0%, var(--temple-dark) 100%);
}
.about-text {
  font-size: 17px; color: var(--text-muted); max-width: 680px;
  margin: 0 auto 48px; line-height: 1.9;
}

/* Deities — own section between About and Practice.
   Flat temple-dark bridges About's bottom (temple-dark) → Practice (temple-dark). */
.deities {
  position: relative; padding: 100px 0 60px; text-align: center;
  background: var(--pillar-bg), var(--temple-dark);
}
.deity-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; max-width: 720px; margin: 0 auto;
}
.deity-card {
  background: rgba(44,24,16,0.5); border: 1px solid rgba(201,148,10,0.1);
  border-radius: var(--radius); padding: 24px 16px; text-align: center;
  transition: all 0.3s;
}
.deity-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-gold);
  border-color: rgba(201,148,10,0.35); background: rgba(44,24,16,0.8);
}
.deity-emoji { display: block; font-size: 36px; margin-bottom: 8px; }
.deity-name {
  font-family: 'Cormorant Garamond', serif; font-size: 18px;
  font-weight: 600; color: var(--gold-glow);
}
/* Deities lead line — mirrors .features-lead; 32px bottom gap because
   .deity-grid has no top margin of its own (unlike .features-grid). */
.deities-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.4;
  color: var(--gold-glow);
  max-width: 680px; margin: 20px auto 32px;
}
 
.features {
  position: relative; padding: 100px 0; text-align: center;
  background: var(--pillar-bg),
    linear-gradient(180deg, var(--temple-dark) 0%, #110904 100%);
}
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 48px;
}
.feature-card {
  background: rgba(44,24,16,0.4); border: 1px solid rgba(201,148,10,0.08);
  border-radius: var(--radius); padding: 36px 28px; text-align: left;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-gold);
  border-color: rgba(201,148,10,0.25); background: rgba(44,24,16,0.7);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 22px; font-weight: 600; color: var(--gold-glow); margin-bottom: 8px; }
.feature-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.features-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.4;
  color: var(--gold-glow);
  max-width: 680px; margin: 20px auto 0;
}
 
.coming-soon {
  position: relative; padding: 100px 0; text-align: center;
  background: var(--pillar-bg),
    linear-gradient(180deg, #110904 0%, var(--temple-dark) 100%);
}
.coming-grid { max-width: 680px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 20px; }
.coming-card {
  display: flex; align-items: flex-start; gap: 20px; text-align: left;
  background: rgba(44,24,16,0.4); border: 1px solid rgba(201,148,10,0.08);
  border-radius: var(--radius); padding: 28px; transition: all 0.3s;
}
.coming-card:hover { box-shadow: var(--shadow-gold); border-color: rgba(201,148,10,0.25); }
.coming-icon {
  font-size: 32px; flex-shrink: 0; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,148,10,0.06); border-radius: 14px;
  border: 1px solid rgba(201,148,10,0.1);
}
.coming-card h3 { font-size: 20px; font-weight: 600; color: var(--gold-glow); margin-bottom: 4px; }
.coming-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
 
.waitlist {
  position: relative; padding: 100px 0; text-align: center;
  background: var(--pillar-bg),
    linear-gradient(180deg, var(--temple-dark) 0%, var(--temple-black) 100%);
}
.waitlist-box { max-width: 560px; margin: 0 auto; }
.waitlist-desc { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.waitlist-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.waitlist-form input {
  flex: 1; min-width: 240px; padding: 14px 20px; border-radius: 50px;
  border: 1.5px solid rgba(201,148,10,0.2); background: rgba(44,24,16,0.5);
  color: var(--gold-glow); font-size: 15px; outline: none; transition: all 0.3s;
}
.waitlist-form input::placeholder { color: rgba(184,151,122,0.4); }
.waitlist-form input:focus { border-color: var(--gold); background: rgba(44,24,16,0.8); }
.waitlist-msg { margin-top: 16px; font-size: 14px; min-height: 20px; color: var(--gold-light); }
.waitlist-fineprint {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.85;
}
 
/* ── FOOTER ── */
.footer {
  padding: 60px 0 32px; background: #050302;
  border-top: 1px solid rgba(201,148,10,0.06);
  color: rgba(184,151,122,0.6);
}
.footer-inner { display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between; }
.footer-brand .nav-name { color: var(--gold-glow); }
.footer-tagline { font-size: 14px; margin-top: 8px; color: rgba(184,151,122,0.4); }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--gold-glow); margin-bottom: 4px; }
.footer-col a { color: rgba(184,151,122,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  width: 100%; margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(201,148,10,0.06);
  text-align: center; font-size: 13px;
}
.footer-sanskrit {
  font-size: 18px; color: var(--gold); margin-top: 8px;
  font-family: 'Cormorant Garamond', serif; letter-spacing: 2px;
}
 
/* ══════════════════════════════
   NEW SECTIONS (Step 1 scaffold — extend the existing pattern)
   - .why, .practice, .trust mirror the .about/.features padding + pillar-bg pattern
   - Gradient backgrounds are chosen to bridge the existing dark-wave flow:
       hero(black) → why(black) → about(black→dark) → practice(dark)
       → features(dark→deep) → trust(deep) → coming-soon(deep→dark) → waitlist(dark→black)
   - .trust-quote = larger italic Cormorant Garamond pull-quote (per signed-off Trust layout)
   - .hero-invocation positions the hero TODO placeholder over the bare image
   ══════════════════════════════ */
.why {
  position: relative; padding: 100px 0; text-align: center;
  background: var(--pillar-bg), var(--temple-black);
}
.why-text {
  font-size: 17px; color: var(--text-muted);
  max-width: 680px; margin: 0 auto; line-height: 1.9;
}
.why-text p + p { margin-top: 18px; }

/* Why-section beats: lead and question get italic Cormorant + gold + breathing room.
   Closing stanza uses base body styling, just tighter line-height for stack rhythm. */
.why-text .why-lead,
.why-text .why-question {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.4;
  color: var(--gold-glow);
}
.why-text p.why-lead + p { margin-top: 32px; }
.why-text p + p.why-question-intro { margin-top: 36px; }
.why-text p + p.why-question { margin-top: 10px; }
.why-text p + p.why-closing { margin-top: 32px; }
.why-text .why-closing { line-height: 1.7; }

.practice {
  position: relative; padding: 100px 0; text-align: center;
  background: var(--pillar-bg), var(--temple-dark);
}
.practice-body {
  font-size: 17px; color: var(--text-muted);
  max-width: 680px; margin: 0 auto; line-height: 1.9;
}
.practice-body p + p { margin-top: 18px; }

/* Practice-section beats: lead matches Why-section lead treatment (italic
   Cormorant + gold-glow); "beat" is a standalone short body line that
   introduces Para 1; closing is a quieter Cormorant-italic benediction. */
.practice-body .practice-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.4;
  color: var(--gold-glow);
}
.practice-body p.practice-lead + p { margin-top: 32px; }
.practice-body p.practice-beat + p { margin-top: 24px; }
.practice-body p + p.practice-closing { margin-top: 56px; }
.practice-body .practice-closing {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--gold-light);
}

.trust {
  position: relative; padding: 100px 0; text-align: center;
  background: var(--pillar-bg), #110904;
}
.trust-body {
  font-size: 17px; color: var(--text-muted);
  max-width: 680px; margin: 0 auto; line-height: 1.9;
}
.trust-body p + p { margin-top: 18px; }
.trust-quote {
  margin: 48px auto 0; max-width: 720px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 3.2vw, 30px);
  font-style: italic; font-weight: 500;
  color: var(--gold-glow); line-height: 1.4;
  border: none; padding: 0;
}
/* Trust pull-quote sits between Para 2 and the closing prose block;
   give that following .trust-body the same 48px top gap as the quote. */
.trust-quote + .trust-body { margin-top: 48px; }

/* Hero invocation — black band below the hero image.
   Holds the headline and subline, stacked and centered. */
.hero-invocation {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 12px 24px 40px;
  gap: 12px;
  background: linear-gradient(to bottom, rgba(201,148,10,0.10) 0%, rgba(120,80,10,0.04) 22%, var(--temple-black) 55%);
}
.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 600; line-height: 1.1; margin: 0;
  color: #f5e6c0;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
.hero-subline {
  font-size: clamp(14px, 1.7vw, 18px);
  line-height: 1.55; margin: 0; max-width: 560px;
  color: var(--text);
  text-shadow: 0 1px 8px rgba(0,0,0,0.65);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-btn { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,6,4,0.95); padding: 20px 28px; gap: 16px;
    border-bottom: 1px solid rgba(201,148,10,0.1);
  }
  .nav-links.open .nav-dot { display: none; }
 
  /* Mobile: keep the same fill behavior — image's full height shown,
     just at a smaller aspect-ratio-driven hero box. */
  .hero {
    aspect-ratio: 1915 / 821;
    min-height: 240px;
    background-size: 100% 100%;
  }
}
 
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .deity-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input { min-width: 100%; }
}