@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream: #F2D9C8;
  --gold: #C9A96E;
  --gold-light: #E8C98A;
  --midnight: #8FA3B1;
  --teal: #2D6B6B;
  --teal-dark: #1E4A4A;
  --teal-deep: #0D2E2E;
  --ember: #7A2E1A;
  --ember-light: #9B3A21;
  --bg: #0A1F1F;
  --bg-mid: #0F2A2A;
  --bg-card: #122929;
  --text-main: #F2D9C8;
  --text-muted: #A8C0C0;
  --text-gold: #C9A96E;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

/* Stars background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(242,217,200,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 40%, rgba(201,169,110,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 8%, rgba(242,217,200,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 60%, rgba(201,169,110,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 25%, rgba(242,217,200,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 70%, rgba(201,169,110,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 75%, rgba(242,217,200,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 12%, rgba(242,217,200,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 63% 85%, rgba(201,169,110,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 48% 92%, rgba(242,217,200,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 78% 48%, rgba(242,217,200,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 32% 65%, rgba(201,169,110,0.2) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 31, 31, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
}

.nav-logo span {
  color: var(--cream);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  transition: background 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--teal-deep) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

/* PAGE WRAPPER */
.page {
  display: none;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.page.active {
  display: block;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(45, 107, 107, 0.25), rgba(30, 74, 74, 0.1) 50%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  filter: blur(40px);
}

.hero-content {
  max-width: 800px;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.875rem 2.5rem;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--teal-deep);
}

.btn-secondary {
  display: inline-block;
  background: var(--ember);
  border: 1px solid var(--ember);
  color: var(--cream);
  padding: 0.875rem 2.5rem;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}

.btn-secondary:hover {
  background: var(--ember-light);
}

.hero-divider {
  margin: 3rem auto 0;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* SECTIONS */
section {
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 580px;
  font-weight: 300;
  margin-bottom: 3rem;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

/* WHAT ARE AKASHIC RECORDS */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.what-visual {
  position: relative;
}

.what-visual-inner {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 380px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.what-visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.what-visual-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,31,0.6) 0%, transparent 60%);
}

.what-visual-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 1.25rem;
  border-radius: 4px;
  text-align: center;
}

.what-visual-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.what-visual-badge .lbl {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.what-text p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1rem;
}

/* HOW IT WORKS */
.how-bg {
  background: rgba(45, 107, 107, 0.05);
  border-top: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.1);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201,169,110,0.12);
  background: var(--bg-card);
  border-radius: 4px;
  position: relative;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.step-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  padding: 2rem;
  border: 1px solid rgba(201,169,110,0.12);
  background: var(--bg-card);
  border-radius: 4px;
  transition: border-color 0.3s;
}

.benefit-card:hover {
  border-color: rgba(201,169,110,0.35);
}

.benefit-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.benefit-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.benefit-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* TESTIMONIALS */
.testimonials-bg {
  background: rgba(122, 46, 26, 0.06);
  border-top: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  border: 1px solid rgba(201,169,110,0.12);
  background: var(--bg-card);
  border-radius: 4px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.testimonial-source {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: 0.2rem;
}

/* CTA BANNER */
.cta-banner {
  text-align: center;
  padding: 5rem 2rem;
}

.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ABOUT PAGE */
.about-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.healer-img-wrap {
  position: relative;
}

.healer-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.healer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.healer-img-placeholder {
  text-align: center;
  color: var(--text-muted);
}

.healer-img-placeholder svg {
  width: 80px;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.healer-img-placeholder p {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.cert-card {
  padding: 1.25rem;
  border: 1px solid rgba(201,169,110,0.15);
  background: var(--bg-card);
  border-radius: 4px;
  text-align: center;
}

.cert-card .cert-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cert-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.cert-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-text p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.about-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 400;
  margin: 2rem 0 1rem;
}

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.values-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

.values-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

/* APPOINTMENTS PAGE */
.appointments-hero {
  padding: 10rem 2rem 4rem;
  text-align: center;
}

.appointments-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.apt-info-card {
  padding: 2rem;
  border: 1px solid rgba(201,169,110,0.12);
  background: var(--bg-card);
  border-radius: 4px;
  text-align: center;
}

.apt-info-card .apt-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.apt-info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.apt-info-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

.calendly-wrap {
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-card);
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.calendly-placeholder {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
  text-align: center;
}

.calendly-placeholder svg {
  opacity: 0.3;
}

.calendly-placeholder p {
  font-size: 0.85rem;
  font-weight: 300;
}

.calendly-placeholder code {
  font-size: 0.75rem;
  background: rgba(201,169,110,0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  color: var(--gold);
}

/* COURSE PAGE */
.course-hero {
  padding: 10rem 2rem 4rem;
  text-align: center;
}

.course-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.feature-card {
  padding: 2rem;
  border: 1px solid rgba(201,169,110,0.12);
  background: var(--bg-card);
  border-radius: 4px;
}

.feature-card .feat-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

.course-modules {
  margin-bottom: 4rem;
}

.module-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.module-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(201,169,110,0.12);
  background: var(--bg-card);
  border-radius: 4px;
  transition: border-color 0.3s;
}

.module-item:hover {
  border-color: rgba(201,169,110,0.3);
}

.module-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
}

.module-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.module-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

.module-duration {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.price-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,169,110,0.12);
  background: var(--bg-card);
  border-radius: 4px;
  text-align: center;
}

.price-card.featured {
  border-color: rgba(201,169,110,0.45);
  position: relative;
}

.price-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--teal-deep);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  white-space: nowrap;
}

.price-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1.1;
  margin: 1rem 0;
}

.price-amount sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.price-period {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  text-align: left;
}

.price-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.5rem;
}

.price-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
  opacity: 0.7;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(201,169,110,0.1);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.5;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .what-grid,
  .about-grid { grid-template-columns: 1fr; }

  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .appointments-info { grid-template-columns: 1fr; }
  .course-features { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .module-item { grid-template-columns: auto 1fr; }
  .module-duration { display: none; }
}

@media (max-width: 600px) {
  section { padding: 3.5rem 1.25rem; }
  .hero { padding: 7rem 1.25rem 3rem; }
  .how-steps { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .course-features { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
}

/* Fade in animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeUp 0.7s ease forwards;
}
