:root {
  --bg: #0b1626;
  --bg-soft: #101f33;
  --bg-card: #12233a;
  --border: rgba(201, 163, 94, 0.22);
  --gold: #c9a35e;
  --gold-light: #e3c084;
  --text: #f2ece0;
  --text-muted: #9db0c6;
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "PT Sans", "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

p { color: var(--text-muted); margin: 0 0 1em; }

a { color: inherit; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}
.nav .logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text);
}
.nav .logo span { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  font-family: "PT Sans", sans-serif;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #17263c;
  box-shadow: 0 8px 24px rgba(201, 163, 94, 0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201, 163, 94, 0.35); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-block { width: 100%; }

/* Hero */
.hero {
  text-align: center;
  padding: 40px 0 80px;
  position: relative;
}
.hero-ring {
  width: 280px;
  height: 280px;
  margin: 0 auto 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ring::before, .hero-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.hero-ring::before { inset: 40px; }
.hero-ring::after { inset: 90px; }
.hero-ring .glyph {
  font-size: 2.2rem;
  color: var(--gold);
}
.hero p.lede {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 1.15rem;
}
.hero .fine {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hero .fine strong { color: var(--gold-light); }

/* Sections */
section { padding: 70px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
}
.step .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Cards grid (blocks) */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.card h3 { margin-bottom: 8px; }
.card .icon { font-size: 1.6rem; margin-bottom: 14px; display: block; }

/* Pricing */
.pricing-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: 24px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.pricing-card .price {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.6rem;
  color: var(--gold-light);
  margin: 10px 0 4px;
}
.pricing-card .price small { font-size: 1.1rem; color: var(--text-muted); font-family: "PT Sans", sans-serif; }
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 32px;
  text-align: left;
}
.pricing-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before { content: "✦ "; color: var(--gold); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.3rem; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 14px; }

/* Footer */
footer {
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

/* Forms */
.form-card {
  max-width: 520px;
  margin: 40px auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 34px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.field input[type="text"],
.field input[type="date"],
.field input[type="time"] {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  font-size: 1rem;
  font-family: "PT Sans", sans-serif;
}
.field input:focus { outline: none; border-color: var(--gold); }
.checkbox-row { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.checkbox-row input { width: 18px; height: 18px; accent-color: var(--gold); }
.checkbox-row label { color: var(--text-muted); font-size: 0.92rem; margin: 0; }
.error-box {
  background: rgba(200, 80, 80, 0.12);
  border: 1px solid rgba(200, 80, 80, 0.4);
  color: #f0b8b8;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 0.92rem;
}

/* Reading page */
.reading-header { text-align: center; padding: 60px 0 20px; }
.reading-header .name { color: var(--gold-light); }
.block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px;
  margin-bottom: 22px;
}
.block h3 { color: var(--gold-light); margin-bottom: 14px; }
.block .body { color: var(--text); white-space: pre-line; }
.block .body p { color: var(--text); }

.upsell {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  margin: 40px 0;
}
.upsell h3 { color: var(--gold-light); }

.deep-badge {
  display: inline-block;
  background: rgba(201,163,94,0.15);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.spinner-note {
  text-align: center;
  color: var(--text-muted);
  padding: 60px 20px;
}

@media (max-width: 860px) {
  .steps, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-card { padding: 30px 22px; margin: 24px auto; }
}
