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

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

:root {
  /* Expert palette: warm ember dark / amber gold / sage / parchment */
  --ink:        #150e08;  /* night by fireplace */
  --deep:       #1a1209;
  --panel:      #1f1409;  /* warm espresso */
  --card:       #271a0d;
  --grey:       #9a8878;  /* warm nut-grey */
  --silver:     #b8a898;
  --offwhite:   #f0e6d2;  /* warm parchment */
  --gold:       #c8923a;  /* organic amber — not metallic */
  --gold-mid:   #d8a852;
  --gold-light: #ecc87a;
  --sage:       #7a9b80;  /* healing sage green */
  --sage-light: #a0bfa6;
  --white:      #f7f0e3;
  --line:       rgba(255,255,255,0.05);
  --gold-line:  rgba(200,146,58,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--offwhite);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

/* ── STARFIELD BACKGROUND ── */
#stars-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
#stars-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}
/* Warm ambient glow over stars */
body::before {
  content: '';
  position: fixed;
  top: -15vh; left: 50%;
  transform: translateX(-50%);
  width: 80vw; height: 80vh;
  background: radial-gradient(ellipse, rgba(200,146,58,0.07) 0%, rgba(122,155,128,0.03) 50%, transparent 72%);
  pointer-events: none;
  z-index: 1;
}
body > * { position: relative; z-index: 2; }
#stars-bg { z-index: 0; }

a { color: var(--gold-mid); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.container { max-width: 820px; margin: 0 auto; padding: 0 32px; }

/* ── NAV ── */
nav {
  padding: 24px 0;
  position: sticky; top: 0; z-index: 100;
  background: rgba(21,14,8,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0.9;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.75rem; letter-spacing: 0.12em; color: var(--grey); text-transform: uppercase; transition: color 0.25s; }
.nav-links a:hover { color: var(--gold-mid); }
.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.14em;
  color: var(--ink); background: var(--gold);
  padding: 10px 22px; border-radius: 2px;
  text-transform: uppercase; transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold-light); }

/* ── HERO ── */
.hero {
  padding: 130px 0 100px;
  text-align: center;
  position: relative;
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.75;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.12;
  margin-bottom: 28px;
  color: var(--white);
  font-weight: 300;
  font-style: italic;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1rem;
  color: var(--silver);
  max-width: 480px;
  margin: 0 auto 52px;
  font-weight: 300;
  line-height: 1.85;
}

/* ── GOLD LINE ── */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 56px auto;
  max-width: 200px;
}
.gold-rule::before, .gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.gold-rule-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.7;
}

/* ── AUDIO PLAYER ── */
.audio-wrap {
  margin: 0 auto 56px;
  max-width: 460px;
  background: linear-gradient(160deg, rgba(184,154,74,0.05), rgba(31,20,9,0.95));
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  padding: 24px 28px;
  text-align: left;
}
.audio-label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}
.audio-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.audio-wrap audio { width: 100%; height: 38px; outline: none; border-radius: 3px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  padding: 18px 44px;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 10px;
  transition: all 0.35s;
  box-shadow: 0 0 40px rgba(184,154,74,0.15);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--ink);
  box-shadow: 0 0 60px rgba(184,154,74,0.3);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-block;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  padding: 17px 44px;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 10px;
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(184,154,74,0.05); }

/* ── SECTIONS ── */
section { padding: 100px 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: none; }
.section-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  opacity: 0.7;
  font-family: 'DM Sans', sans-serif;
}
section h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: 56px;
  text-align: center;
  font-style: italic;
  font-weight: 300;
}

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 48px; }
.step { text-align: center; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.4;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}
.step h3 { font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; color: var(--white); margin-bottom: 10px; text-transform: uppercase; }
.step p { font-size: 0.87rem; color: var(--grey); line-height: 1.7; }

/* ── SITUATIONS ── */
.situations { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; margin-top: 44px; }
.situation {
  background: var(--panel);
  border: 1px solid var(--gold-line);
  border-radius: 3px;
  padding: 20px 16px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--silver);
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
}
.situation:hover { border-color: var(--gold); color: var(--white); background: rgba(184,154,74,0.05); }

/* ── RECEIVE LIST ── */
.receive-list { list-style: none; max-width: 500px; margin: 52px auto 0; }
.receive-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--silver);
  display: flex; align-items: center; gap: 16px;
  font-size: 0.92rem;
}
.receive-list li:last-child { border-bottom: none; }
.receive-list li::before { content: "—"; color: var(--gold); opacity: 0.6; flex-shrink: 0; font-weight: 300; }

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 1px solid var(--gold);
  padding: 4px 28px;
  margin: 0 auto 32px;
  max-width: 560px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--silver);
  line-height: 1.75;
  font-weight: 300;
}

/* ── BOUNDARY ── */
.boundary {
  background: rgba(31,20,9,0.7);
  border-left: 1px solid rgba(184,154,74,0.25);
  padding: 18px 22px;
  font-size: 0.82rem;
  color: var(--grey);
  margin-top: 48px;
  line-height: 1.75;
}

/* ── FAQ ── */
.faq-item { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 10px; font-style: italic; }
.faq-item p { font-size: 0.88rem; color: var(--grey); line-height: 1.8; }

/* ── SAMPLE CARDS ── */
.sample-card { border: 1px solid var(--gold-line); border-radius: 3px; padding: 38px; margin-bottom: 20px; transition: border-color 0.3s; }
.sample-card:hover { border-color: rgba(184,154,74,0.4); }
.sample-card h3 { font-family: 'DM Sans', sans-serif; font-size: 0.62rem; font-weight: 500; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 22px; opacity: 0.7; }
.sample-lines p { color: var(--silver); font-style: italic; line-height: 1.95; margin-bottom: 12px; font-size: 1.05rem; font-family: 'Cormorant Garamond', serif; font-weight: 300; }

/* ── SOCIAL ── */
.social-icons { display: flex; justify-content: center; gap: 24px; margin: 28px 0 8px; }
.social-icons a {
  width: 38px; height: 38px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  font-size: 0.85rem;
  transition: all 0.3s;
  text-decoration: none;
}
.social-icons a:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,154,74,0.06); }

/* ── FOOTER ── */
footer { padding: 56px 0; text-align: center; border-top: 1px solid var(--line); }
.footer-brand { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.28em; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; opacity: 0.7; }
.footer-links { margin: 20px 0; }
.footer-links a { font-size: 0.78rem; letter-spacing: 0.1em; color: var(--grey); margin: 0 16px; transition: color 0.25s; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold-mid); }
.footer-copy { font-size: 0.72rem; color: var(--grey); opacity: 0.4; margin-top: 20px; letter-spacing: 0.05em; }

/* ── FORM PAGE ── */
.form-wrap { max-width: 640px; margin: 0 auto; padding: 0 32px 80px; }
.form-section { margin-bottom: 40px; }
label { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; letter-spacing: 0.1em; font-weight: 400; color: var(--silver); margin-bottom: 14px; text-transform: uppercase; }
label span { color: var(--gold); }

input[type="text"], input[type="email"], textarea, select {
  width: 100%; background: var(--panel); border: 1px solid var(--line);
  color: var(--offwhite); padding: 15px 20px; border-radius: 3px;
  font-size: 0.95rem; font-family: 'DM Sans', sans-serif; font-weight: 300;
  outline: none; transition: border 0.25s; -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold-line); }
textarea { resize: vertical; min-height: 120px; }
select option { background: var(--panel); }

.radio-label, .check-label {
  display: flex; align-items: center; gap: 14px; cursor: pointer;
  color: var(--silver); font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  padding: 13px 18px; background: var(--panel); border: 1px solid var(--line);
  border-radius: 3px; transition: all 0.25s; margin-bottom: 8px; letter-spacing: 0.02em;
}
.radio-label:hover, .check-label:hover { border-color: var(--gold-line); color: var(--white); }
input[type="radio"], input[type="checkbox"] { accent-color: var(--gold); width: 15px; height: 15px; flex-shrink: 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hint { font-size: 0.75rem; color: var(--grey); margin-top: 8px; font-family: 'DM Sans', sans-serif; }
.divider { height: 1px; background: linear-gradient(to right, transparent, var(--gold-line), transparent); margin: 44px 0; }

.consent-block { background: rgba(31,20,9,0.8); border: 1px solid var(--gold-line); border-radius: 3px; padding: 24px; margin-bottom: 32px; }
.consent-text { font-size: 0.82rem; color: var(--grey); line-height: 1.7; }

.submit-btn {
  width: 100%; background: var(--gold); color: var(--ink); border: none;
  padding: 20px; font-size: 0.78rem; font-family: 'DM Sans', sans-serif;
  font-weight: 500; border-radius: 2px; cursor: pointer; letter-spacing: 0.18em;
  text-transform: uppercase; transition: all 0.3s;
  box-shadow: 0 0 40px rgba(184,154,74,0.2);
}
.submit-btn:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 0 60px rgba(184,154,74,0.35); }
.submit-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .hero { padding: 80px 0 70px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .situations { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  nav .container { flex-direction: column; gap: 14px; }
  .nav-links { display: none; }
  .btn-primary, .btn-secondary { width: calc(100% - 20px); text-align: center; display: block; }
}
@media (max-width: 400px) {
  .steps, .situations { grid-template-columns: 1fr; }
}
