@font-face {
  font-family: 'Instrument Serif';
  src: url('assets/InstrumentSerif-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Serif';
  src: url('assets/InstrumentSerif-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('assets/DMSans-Variable.ttf') format('truetype-variations');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

:root {
  --forest: #173D34;
  --blush: #E8BAC9;
  --blush-light: #F4D9E2;
  --sky: #BBDCF0;
  --butter: #F3E4A2;
  --paper: #FFFCF8;
  --leaf: #B9CBB1;
  --ink: #1D2420;
  --muted: #6B7570;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', -apple-system, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
main { max-width: 640px; margin: 0 auto; padding: 0 20px 80px; }
img { max-width: 100%; display: block; }

.skip {
  position: absolute; left: -999px; top: auto;
}
.skip:focus {
  left: 12px; top: 12px; background: var(--forest); color: var(--paper);
  padding: 10px 16px; border-radius: 10px; z-index: 50;
}

header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  padding: 22px 4px 10px;
}
.wordmark-row {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.header-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--blush);
  flex-shrink: 0;
}
.wordmark {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--forest);
  text-decoration: none;
}
.wordmark span { font-style: normal; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.08em; vertical-align: middle; margin-left: 4px; color: var(--muted); }
.preview-pill {
  font-size: 11px; color: var(--muted);
  border: 1px solid #e6ddd2; border-radius: 999px;
  padding: 4px 10px;
  display: inline-flex; align-items: center; gap: 6px;
}
.preview-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--blush); display: inline-block; }

/* ---------------- HERO ---------------- */
.hero {
  padding: 20px 4px 32px;
}
.hero .eyebrow {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 10px;
}
.hero h1 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--forest);
}
.hero h1 em { font-style: italic; color: var(--blush); }
.hero p.lede {
  font-size: 16.5px;
  color: var(--ink);
  max-width: 52ch;
  margin: 0 0 24px;
}
.hero-portrait {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
  margin: 0 0 24px;
  background: var(--blush-light);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero-cta-row { display: flex; flex-direction: column; gap: 10px; }
.free-audio-link {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin: 14px 0 0;
}
.link-btn {
  background: none; border: none; padding: 0;
  color: var(--forest);
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: underline;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 14px;
  padding: 16px 22px;
  font-size: 15.5px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
}
.btn.primary { background: var(--forest); color: var(--paper); }
.btn.secondary { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn.accent {
  background: var(--blush);
  color: var(--forest);
  box-shadow: 0 4px 14px rgba(232,186,201,0.5);
}
.btn.accent:active { background: #dfa6b8; }
.pkg.featured .btn.secondary { background: transparent; color: var(--paper); border-color: var(--blush); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn small { display: block; font-weight: 500; font-size: 11.5px; opacity: 0.75; margin-top: 2px; }

/* ---------------- SECTION LINE ---------------- */
.section-line {
  display: flex; align-items: center; gap: 12px;
  margin: 44px 0 22px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.section-line::before, .section-line::after {
  content: ''; flex: 1; height: 1px; background: #e6ddd2;
}

/* ---------------- FREE AUDIO CARD ---------------- */
.card {
  background: var(--paper);
  border: 1px solid #ece3d6;
  border-radius: 20px;
  padding: 26px 22px;
  margin-bottom: 18px;
}
.card.tint-blush { background: linear-gradient(180deg, var(--blush-light), var(--paper) 70%); }
.card.tint-sky { background: linear-gradient(180deg, #eaf4fb, var(--paper) 70%); }
.card.tint-leaf { background: linear-gradient(180deg, #eef3ea, var(--paper) 70%); }
.card .kicker {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--forest); font-weight: 700; margin: 0 0 8px;
}
.card h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400; font-size: 26px; margin: 0 0 10px; color: var(--forest);
}
.card p { margin: 0 0 14px; font-size: 15px; color: var(--ink); }
.card .price-tag {
  display: inline-block; font-weight: 700; font-size: 13px;
  background: var(--forest); color: var(--paper);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}

/* ---------------- WHY THIS WORKS ---------------- */
.why { padding: 6px 4px 0; }
.why h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400; font-size: 30px; color: var(--forest);
  margin: 0 0 16px;
}
.why p { font-size: 15.5px; margin: 0 0 14px; }
.why ul { padding-left: 20px; margin: 0 0 16px; }
.why li { margin-bottom: 8px; font-size: 15px; }

/* ---------------- PACKAGE LADDER ---------------- */
.packages { display: flex; flex-direction: column; gap: 14px; }
.pkg {
  border: 1.5px solid #ece3d6;
  border-radius: 18px;
  padding: 22px 20px;
  position: relative;
}
.pkg.featured { border-color: var(--forest); background: var(--forest); color: var(--paper); }
.pkg .pkg-name { font-family: 'Instrument Serif', serif; font-size: 22px; margin: 0 0 6px; }
.pkg.featured .pkg-name { color: var(--paper); }
.pkg .pkg-tag {
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; margin-bottom: 8px; display: block;
}
.pkg.featured .pkg-tag { color: var(--blush); }
.pkg ul { margin: 10px 0 0; padding-left: 18px; font-size: 14px; }
.pkg.featured ul { color: var(--blush-light); }
.pkg .pkg-price { font-weight: 700; font-size: 14px; margin-top: 12px; opacity: 0.85; }

/* ---------------- FAQ ---------------- */
.faq h2 {
  font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 28px;
  color: var(--forest); margin: 0 0 14px;
}
.faq details {
  border-bottom: 1px solid #ece3d6;
  padding: 14px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--forest);
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { font-size: 14.5px; color: var(--muted); margin: 10px 0 0; }

/* ---------------- FOOTER ---------------- */
footer {
  margin-top: 50px;
  padding: 22px 4px 0;
  border-top: 1px solid #ece3d6;
  text-align: center;
}
footer p { font-size: 12.5px; color: var(--muted); }
footer nav { display: flex; gap: 16px; justify-content: center; margin-bottom: 12px; }
footer nav button {
  background: none; border: none; color: var(--muted);
  font-size: 12.5px; text-decoration: underline; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

/* ---------------- STICKY CTA (mobile) ---------------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: rgba(255,252,248,0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid #ece3d6;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  z-index: 30;
}
.sticky-cta .btn { margin: 0 auto; max-width: 600px; }

/* ---------------- DIALOG / SHEET ---------------- */
dialog#sheet {
  border: none; border-radius: 22px 22px 0 0;
  padding: 0; width: 100%; max-width: 640px;
  margin: auto auto 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
}
dialog#sheet::backdrop { background: rgba(23,61,52,0.35); }
.sheet-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid #ece3d6;
}
.sheet-bar .eyebrow { font-size: 11px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
#close-sheet {
  background: #f2ece2; border: none; border-radius: 50%;
  width: 32px; height: 32px; font-size: 15px; cursor: pointer;
}
#sheet-body { padding: 22px 20px 30px; }
#sheet-body h2 { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 26px; color: var(--forest); margin: 4px 0 10px; }
#sheet-body p { font-size: 15px; margin: 0 0 14px; }
#sheet-body .note {
  background: var(--blush-light); border-radius: 12px; padding: 12px 14px;
  font-size: 13px; color: var(--forest); margin-bottom: 16px;
}
#sheet-body form label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
#sheet-body form input[type=email] {
  width: 100%; padding: 13px 14px; border-radius: 12px; border: 1.5px solid #ece3d6;
  font-size: 15px; margin-bottom: 6px; font-family: 'DM Sans', sans-serif;
}
.validation-error { color: #c0504d; font-size: 12.5px; min-height: 16px; }
.consent { display: flex; gap: 8px; font-size: 13px; align-items: flex-start; margin: 10px 0 16px; font-weight: 400; }
.consent input { margin-top: 3px; }
#form-status { font-size: 13px; color: var(--forest); min-height: 18px; }

@media (min-width: 720px) {
  .hero h1 { font-size: 52px; }
}

/* ---------------- QUIZ OVERLAY ---------------- */
.quiz-overlay {
  display: none;
  position: fixed; inset: 0;
  background: var(--paper);
  z-index: 100;
  flex-direction: column;
}
.quiz-topbar {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 16px 10px;
}
.quiz-back, .quiz-close {
  background: #f2ece2; border: none; border-radius: 50%;
  width: 34px; height: 34px; font-size: 13px; cursor: pointer;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.quiz-back { width: auto; border-radius: 20px; padding: 0 12px; font-size: 13px; }
.quiz-progress {
  flex: 1; height: 6px; background: #ece3d6; border-radius: 999px; overflow: hidden;
}
.quiz-progress-fill {
  height: 100%; width: 0%; background: var(--forest);
  transition: width 0.3s ease;
}
.quiz-panel {
  flex: 1; overflow-y: auto;
  padding: 10px 20px 40px;
  max-width: 560px; margin: 0 auto; width: 100%;
}
.quiz-step-label {
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin: 10px 0 8px;
}
.quiz-question {
  font-family: 'Instrument Serif', serif;
  font-weight: 400; font-size: 28px; line-height: 1.25;
  color: var(--forest); margin: 0 0 24px;
}
.quiz-sub { font-size: 15px; color: var(--ink); margin: 0 0 20px; }
.quiz-options {
  display: flex; flex-direction: column; gap: 10px;
}
.quiz-option {
  text-align: left;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1.5px solid #ece3d6;
  background: var(--paper);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.quiz-option:active { background: var(--blush-light); border-color: var(--blush); }
.quiz-label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.quiz-input {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid #ece3d6;
  font-size: 16px; margin-bottom: 6px; font-family: 'DM Sans', sans-serif;
}
.quiz-error { color: #c0504d; font-size: 12.5px; min-height: 16px; margin: 0 0 4px; }
.quiz-consent {
  display: flex; gap: 8px; font-size: 13px; align-items: flex-start;
  margin: 10px 0 22px; font-weight: 400;
}
.quiz-consent input { margin-top: 3px; }

.quiz-result-card {
  background: var(--forest); color: var(--paper);
  border-radius: 20px; padding: 24px 22px; margin-bottom: 20px;
}
.quiz-result-tag {
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blush); font-weight: 700;
}
.quiz-result-title {
  font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 26px;
  margin: 8px 0 12px;
}
.quiz-result-why { font-size: 14.5px; color: var(--blush-light); margin: 0; }
.quiz-plan-outline {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,252,248,0.2);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quiz-plan-row { display: flex; flex-direction: column; gap: 4px; }
.quiz-plan-label {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blush); font-weight: 700;
}
.quiz-plan-detail { font-size: 14px; color: var(--blush-light); margin: 0; line-height: 1.45; }
.quiz-price-row {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,252,248,0.2);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}
.quiz-price-old {
  font-size: 16px;
  color: var(--blush-light);
  text-decoration: line-through;
  opacity: 0.6;
}
.quiz-price-new {
  font-size: 26px;
  font-weight: 700;
  color: var(--paper);
  font-family: 'Instrument Serif', serif;
}
.quiz-price-tag {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest);
  background: var(--blush);
  padding: 4px 10px;
  border-radius: 999px;
  width: 100%;
  margin-top: 4px;
}
.quiz-cta-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.quiz-fineprint { font-size: 12.5px; color: var(--muted); }

