:root {
  --bg: #08050f;
  --bg-alt: #0d0817;
  --surface: #140d24;
  --surface-2: #1b1230;
  --border: rgba(168, 85, 247, 0.25);
  --purple: #a855f7;
  --pink: #ec4899;
  --gold: #f5c94f;
  --text: #f4f1fb;
  --text-muted: #b3a7cf;
  --radius: 18px;
  --max-width: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, .brand-name {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.eyebrow {
  display: block;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.eyebrow.center { text-align: center; }
.center { text-align: center; }

/* Ambient glow field */
.glow-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.orb-purple { width: 480px; height: 480px; background: var(--purple); top: -120px; left: -100px; }
.orb-pink { width: 420px; height: 420px; background: var(--pink); top: 30%; right: -140px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(8, 5, 15, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-name { font-size: 1.25rem; font-weight: 600; color: var(--text); }
.brand-ring {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(from 180deg, var(--gold), var(--pink), var(--purple), var(--gold));
  flex-shrink: 0;
}
.brand-ring.small { width: 32px; height: 32px; }
.brand-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--bg);
}
.site-nav { display: flex; gap: 1.8rem; }
.site-nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--gold); }
.nav-cta { white-space: nowrap; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 68px;
  z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--text-muted); font-size: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--pink) 55%, var(--purple));
  color: #140a05;
  box-shadow: 0 10px 30px -10px rgba(236, 72, 153, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(236, 72, 153, 0.75); }
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

main { position: relative; z-index: 1; }

section { padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.25rem, 5vw, 3rem); }

/* Hero */
.hero {
  position: relative;
  max-width: none;
  padding: 0;
  min-height: min(88vh, 780px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.03);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--bg) 5%, rgba(8,5,15,0.55) 45%, rgba(8,5,15,0.35) 100%),
    linear-gradient(90deg, rgba(8,5,15,0.85) 0%, rgba(8,5,15,0.35) 60%);
}
.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 5vw, 3rem) clamp(3rem, 6vw, 4rem);
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 20ch;
  background: linear-gradient(120deg, #fff, #e6d9ff 45%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-verse span { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.hero-verse { margin-bottom: 1.4rem; }
.hero-sub { color: var(--text-muted); max-width: 50ch; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }

/* Trust bar */
.trust-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item { text-align: center; }
.trust-num {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.trust-label { font-size: 0.82rem; color: var(--text-muted); }

/* Mission */
.mission-inner { max-width: var(--max-width); margin: 0 auto; }
.mission h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 1.5rem; max-width: 22ch; }
.ig-quote {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 68ch;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--gold);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2rem;
}
.ig-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.mission-lead { color: var(--text-muted); max-width: 68ch; margin-bottom: 2.5rem; font-size: 1.05rem; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.pillar-icon { font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: 0.8rem; }
.pillar h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.pillar p { color: var(--text-muted); font-size: 0.95rem; }

/* Gallery */
.gallery { max-width: var(--max-width); margin: 0 auto; }
.section-sub { color: var(--text-muted); max-width: 60ch; margin: 0.6rem auto 2.5rem; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.photo-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.photo-card figcaption {
  padding: 0.9rem 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.gallery-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 2rem;
  font-style: italic;
  opacity: 0.75;
}

/* From the Feed */
.feed { max-width: var(--max-width); margin: 0 auto; }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.feed-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
}
.feed-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
.feed-card blockquote {
  padding: 1.3rem 1.4rem;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.feed-cta { text-align: center; margin-top: 2rem; }

/* How it works */
.how-it-works { max-width: var(--max-width); margin: 0 auto; }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.path-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.path-step {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.5;
}
.path-card h3 { margin: 0.6rem 0 0.8rem; font-size: 1.2rem; }
.path-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.2rem; }
.link-cta { color: var(--gold); font-weight: 600; font-size: 0.9rem; }
.link-cta:hover { text-decoration: underline; }

/* CTA banner */
.cta-banner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(236,72,153,0.15));
  border: 1px solid var(--border);
  border-radius: 24px;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 0.8rem; }
.cta-banner p { color: var(--text-muted); max-width: 52ch; margin: 0 auto 2rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem clamp(1.25rem, 5vw, 3rem) 1.5rem;
  position: relative;
  z-index: 1;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-verse { color: var(--text-muted); font-style: italic; font-size: 0.9rem; }
.footer-verse span { color: var(--gold); font-style: normal; font-size: 0.78rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links h4 { font-family: 'Cinzel', serif; font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--gold); }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 940px) {
  .site-nav { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .pillars, .path-grid, .photo-grid, .feed-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { min-height: 640px; }
  .pillars, .path-grid, .photo-grid, .feed-grid, .trust-bar { grid-template-columns: 1fr; }
}
