/* =========================================================
   SACRADA · Sacred space for truth to breathe
   ========================================================= */

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

:root {
  --ink:     #0e0c12;
  --deep:    #16121f;
  --mist:    #2a2238;
  --gold:    #c9a96e;
  --gold-lt: #e8d5aa;
  --cream:   #f5f0e8;
  --white:   #ffffff;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-mono: 'Space Mono', monospace;
  --ease: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── Typography ── */
h1,h2,h3 { font-weight: 300; letter-spacing: .02em; line-height: 1.15; }
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); }

.mono { font-family: var(--font-mono); font-size: .7em; letter-spacing: .12em; text-transform: uppercase; }
.gold { color: var(--gold); }

/* ── Layout ── */
.container { width: min(1100px, 92vw); margin-inline: auto; }

section { padding: clamp(80px, 12vw, 140px) 0; }

/* ── Scroll bar ── */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--gold); width: 0%; z-index: 999;
  transition: width .1s linear;
}

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.4rem 0;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(14,12,18,.85);
  backdrop-filter: blur(12px);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-mono); font-size: .85rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
}
.header__cta {
  font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border: 1px solid var(--gold); padding: .55rem 1.4rem;
  transition: background .3s, color .3s;
}
.header__cta:hover { background: var(--gold); color: var(--ink); }

/* ── Stars background ── */
.stars {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(201,169,110,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 10%, rgba(201,169,110,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 80%, rgba(201,169,110,.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 70%, rgba(201,169,110,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 60%, rgba(201,169,110,.2) 0%, transparent 100%);
}

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 100px;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(42,34,56,.9) 0%, var(--ink) 70%);
}
.hero__content {
  position: relative; z-index: 1;
  max-width: 800px;
}
.hero__label {
  display: block; margin-bottom: 2rem;
  color: var(--gold); opacity: .8;
}
.hero__title {
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-lt) 50%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--cream); opacity: .75;
  margin-bottom: 3rem;
  font-style: italic;
}
.hero__divider {
  width: 60px; height: 1px;
  background: var(--gold); opacity: .5;
  margin-bottom: 3rem;
}
.hero__cta { display: inline-flex; gap: 1.5rem; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
  display: inline-block; text-decoration: none;
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .9rem 2.2rem; transition: all .3s var(--ease);
}
.btn--gold {
  background: var(--gold); color: var(--ink);
}
.btn--gold:hover { background: var(--gold-lt); }
.btn--outline {
  border: 1px solid rgba(201,169,110,.5); color: var(--gold);
}
.btn--outline:hover { border-color: var(--gold); background: rgba(201,169,110,.08); }

/* ── Moon symbol ── */
.moon {
  position: absolute; right: 5vw; top: 50%;
  transform: translateY(-50%);
  font-size: clamp(120px, 20vw, 280px);
  opacity: .04; user-select: none; pointer-events: none;
  line-height: 1;
}

/* ── Section label ── */
.section-label {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem;
  color: var(--gold); opacity: .7;
}
.section-label::after {
  content: ''; flex: 1; max-width: 60px;
  height: 1px; background: var(--gold); opacity: .4;
}

/* ── About ── */
.about { position: relative; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.about__quote {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--gold-lt);
  line-height: 1.5;
  border-left: 1px solid rgba(201,169,110,.3);
  padding-left: 2rem;
  margin-bottom: 2rem;
}
.about__copy p {
  color: rgba(245,240,232,.75);
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}
.about__visual {
  position: relative;
}
.about__img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  filter: sepia(.2) brightness(.85);
}
.about__frame {
  position: absolute; inset: -12px;
  border: 1px solid rgba(201,169,110,.2);
  pointer-events: none;
}

/* ── Session / Offering ── */
.session {
  background: var(--deep);
  position: relative; overflow: hidden;
}
.session::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(42,34,56,.8) 0%, transparent 70%);
}
.session__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}
.session__head h2 { margin-bottom: 1rem; }
.session__price {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--gold);
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.session__per {
  font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .15em; color: var(--cream); opacity: .4;
  text-transform: uppercase; margin-bottom: 3rem;
}
.session__list {
  list-style: none; margin-bottom: 3rem;
}
.session__list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,169,110,.1);
  color: rgba(245,240,232,.8);
  display: flex; align-items: flex-start; gap: 1rem;
}
.session__list li::before {
  content: '✦'; color: var(--gold); opacity: .6;
  flex-shrink: 0; margin-top: .1em;
}
.session__note {
  font-style: italic; font-size: .95rem;
  color: rgba(245,240,232,.45);
  margin-top: 2rem;
}

/* ── Pillars ── */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.pillar {
  background: var(--deep);
  padding: clamp(1.5rem, 4vw, 3rem);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.pillar:hover { background: var(--mist); }
.pillar__num {
  font-family: var(--font-mono); font-size: .65rem;
  letter-spacing: .2em; color: var(--gold); opacity: .5;
  margin-bottom: 1.5rem; display: block;
}
.pillar h3 { margin-bottom: 1rem; font-size: 1.3rem; }
.pillar p { color: rgba(245,240,232,.6); font-size: 1rem; }

/* ── CTA Banner ── */
.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, var(--deep) 0%, var(--mist) 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '☽';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-size: 400px; opacity: .025;
  pointer-events: none;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p {
  font-style: italic; font-size: 1.2rem;
  color: rgba(245,240,232,.6); margin-bottom: 3rem;
}

/* ── Footer ── */
footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(201,169,110,.1);
  text-align: center;
}
footer .mono { color: rgba(245,240,232,.3); font-size: .65rem; }

/* ── Reveal animation ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* Fallback: show everything if JS didn't fire */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .about__grid,
  .session__inner { grid-template-columns: 1fr; }
  .pillars__grid { grid-template-columns: 1fr; gap: 2px; }
  .moon { display: none; }
  .about__visual { order: -1; }
}
