:root {
  --plum: #520622;
  --plum-deep: #33041B;
  --cream: #FAF3EC;
  --cream-card: #FDF8F3;
  --blush: #F6ECE7;
  --ink: #3A2B33;
  --ink-soft: #6B5A63;
  --accent: #C36E78;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  font-family: 'Manrope', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Header ============ */
header {
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(82, 6, 34, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo { text-decoration: none; color: var(--plum); }
.logo .name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.22em;
  display: block;
  line-height: 1.1;
}
.logo .tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
  display: block;
  margin-top: 2px;
}

nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

nav a:hover, nav a.active {
  color: var(--plum);
  border-bottom-color: var(--plum);
}

.menu-btn { display: none; background: none; border: none; cursor: pointer; }
.menu-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--plum); margin: 5px 0; border-radius: 2px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-cream {
  background: var(--cream);
  color: var(--plum);
}
.btn-cream:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-plum {
  background: var(--plum);
  color: var(--cream);
}
.btn-plum:hover {
  background: var(--plum-deep);
  box-shadow: 0 6px 20px rgba(82, 6, 34, 0.3);
}

/* ============ Hero ============ */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--plum);
  color: var(--cream);
  min-height: 560px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px 72px max(48px, calc((100vw - 1200px) / 2 + 24px));
}

.hero h1 {
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 24px;
  max-width: 12ch;
}

.hero p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: 36px;
  color: rgba(250, 243, 236, 0.92);
}

.hero-secondary-link { margin-top: 4px; }

.btn-link-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(250, 243, 236, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 243, 236, 0.35);
  transition: color 0.2s, border-color 0.2s;
}
.btn-link-light:hover { color: var(--cream); border-bottom-color: rgba(250, 243, 236, 0.75); }
.btn-link-light .arrow { transition: transform 0.2s; }
.btn-link-light:hover .arrow { transform: translateX(4px); }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 28px;
  color: rgba(250, 243, 236, 0.75);
}

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ Section basics ============ */
section { padding: 88px 0; }

.section-title {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  margin-bottom: 14px;
}

.title-rule {
  width: 56px;
  height: 3px;
  background: var(--accent);
  border: none;
  margin: 0 auto 48px;
  border-radius: 2px;
}

h3.side-title {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 600;
  margin-bottom: 10px;
}
.side-rule {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border: none;
  margin: 0 0 26px;
  border-radius: 2px;
}

/* ============ Sound like you ============ */
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 64px;
  max-width: 880px;
  margin: 0 auto;
}

.check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(82, 6, 34, 0.1);
  font-size: 16px;
  line-height: 1.6;
}
.check-item:nth-last-child(-n+2) { border-bottom: none; }

.check-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--cream);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.check-icon svg { width: 13px; height: 13px; }

/* ============ What is HD ============ */
.what-hd { background: var(--blush); padding: 40px 0; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.bodygraph-wrap {
  display: flex;
  justify-content: center;
}
.bodygraph-wrap img {
  max-width: 560px;
  width: 100%;
  mix-blend-mode: multiply;
  filter: saturate(1.6) contrast(1.06);
}

.what-hd p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 18px;
}
.what-hd p:last-child { margin-bottom: 0; }

/* ============ About ============ */
.about { padding: 0; background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: stretch;
}

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

.about-text {
  padding: 80px 56px 80px 72px;
  max-width: 640px;
}

.about-text p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.about-text p:last-child { margin-bottom: 0; }

/* ============ Offer card ============ */
.ladder-step {
  background: var(--blush);
  text-align: center;
  padding: 56px 24px 0;
}

.ladder-step-eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.ladder-step-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.ladder-step-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 24px;
}

.offer { background: var(--blush); }

.offer-card {
  background: var(--cream-card);
  border: 1px solid rgba(82, 6, 34, 0.15);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  max-width: 940px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(82, 6, 34, 0.06);
}

.offer-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.offer-badge {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.offer-title-wrap { flex: 1; }

.offer-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
}

.offer-price {
  font-size: 32px;
  font-weight: 600;
  color: var(--plum);
  white-space: nowrap;
}

.offer-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 72ch;
}

.offer-cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.offer-cols h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 14px;
}

.offer-cols ul { list-style: none; }
.offer-cols li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.offer-cols li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.offer-cta {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
}

/* ============ Testimonials ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--cream-card);
  border: 1px solid rgba(82, 6, 34, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.testimonial-single { max-width: 640px; margin: 0 auto; }

.quote-mark {
  font-size: 44px;
  line-height: 1;
  color: var(--plum);
  font-weight: 700;
  margin-bottom: 14px;
}

.testimonial p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  flex: 1;
}

.testimonial cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum);
}

/* ============ Final CTA ============ */
.final-cta {
  background: var(--plum);
  color: var(--cream);
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(250, 243, 236, 0.12);
  border-radius: 50%;
}
.final-cta::before {
  width: 480px; height: 480px;
  left: -180px; bottom: -300px;
}
.final-cta::after {
  width: 520px; height: 520px;
  right: -200px; top: -320px;
}

.final-cta h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.final-cta p {
  font-size: 16px;
  color: rgba(250, 243, 236, 0.85);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.final-cta .btn { position: relative; z-index: 1; }

/* ============ Contact form ============ */
.contact-section { background: var(--blush); }

.contact-card {
  background: var(--cream-card);
  border: 1px solid rgba(82, 6, 34, 0.15);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(82, 6, 34, 0.06);
}

.form-field {
  margin-bottom: 22px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(82, 6, 34, 0.2);
  border-radius: 10px;
  padding: 13px 16px;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(195, 110, 120, 0.15);
}

.form-honeypot { position: absolute; left: -9999px; }

.contact-card .btn { width: 100%; justify-content: center; }

.form-note {
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
  margin-bottom: 28px;
}

.form-status {
  margin-top: 18px;
  font-size: 14.5px;
  text-align: center;
}
.form-status.error { color: #9C3B3B; }
.form-status[hidden] { display: none; }

.confirmation {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 60px 24px;
}
.confirmation .check-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
}
.confirmation .check-icon svg { width: 26px; height: 26px; }
.confirmation h1 {
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 600;
  margin-bottom: 14px;
}
.confirmation p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

/* ============ Footer ============ */
footer {
  background: var(--plum-deep);
  color: rgba(250, 243, 236, 0.7);
  text-align: center;
  padding: 28px 24px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 64px 32px; }
  .hero-image { min-height: 340px; }

  .two-col, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-height: 480px; overflow: hidden; }
  .about-text { padding: 56px 32px; }

  .offer-cols { grid-template-columns: 1fr; gap: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; gap: 0; }
  .check-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(82, 6, 34, 0.1); }
  .check-item:last-child { border-bottom: none; }
}

@media (max-width: 720px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(82, 6, 34, 0.1);
    box-shadow: 0 12px 24px rgba(82, 6, 34, 0.08);
  }
  nav ul.open { display: flex; }
  nav li { width: 100%; text-align: center; }
  nav a { display: block; padding: 14px; border-bottom: none; }
  .menu-btn { display: block; }

  section { padding: 64px 0; }
  .offer-card { padding: 32px 24px; }
  .offer-head { flex-wrap: wrap; }
  .offer-cta { justify-content: flex-start; }

  .contact-card { padding: 32px 24px; }
}

/* ============ Offer stack (multiple offer cards, e.g. Readings page) ============ */
.offer-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.offer-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.offer-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.offer-requirement {
  display: inline-block;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: rgba(195, 110, 120, 0.1);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.offer-cta-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.offer-cta-note .offer-note { margin-top: 0; }
.offer-cta-note a { color: var(--plum); font-weight: 600; text-decoration: none; border-bottom: 2px solid transparent; }
.offer-cta-note a:hover { border-bottom-color: var(--plum); }

@media (max-width: 640px) {
  .offer-cta-note { justify-content: flex-start; }
}

.offer-strike {
  text-decoration: line-through;
  opacity: 0.6;
  font-weight: 500;
  font-size: 17px;
  margin-right: 6px;
}

/* ============ Homepage offer teaser ============ */
.offer-card-teaser .offer-desc { margin-bottom: 8px; }

.offer-cta-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--plum);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.btn-link:hover { border-bottom-color: var(--plum); }
.btn-link .arrow { transition: transform 0.2s; }
.btn-link:hover .arrow { transform: translateX(4px); }

@media (max-width: 640px) {
  .offer-cta-split { flex-direction: column; align-items: flex-start; }
}

/* ============ Section CTA helper ============ */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
.section-cta-left { justify-content: flex-start; margin-top: 32px; }

/* ============ Skeptic block ============ */
.skeptic { background: var(--blush); padding: 64px 0; }

.skeptic-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.skeptic-q {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 18px;
  font-style: italic;
}

.skeptic-a {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* ============ Free Chart CTA Banner (homepage) ============ */
.chart-cta-banner {
  display: block;
  background: var(--blush);
  border-top: 1px solid rgba(82, 6, 34, 0.08);
  text-decoration: none;
  transition: background 0.2s;
}
.chart-cta-banner:hover { background: var(--cream); }
.chart-cta-banner:hover .chart-cta-btn { background: var(--plum-deep); color: var(--cream); box-shadow: 0 6px 20px rgba(91,30,60,0.18); }

.chart-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 18px 24px;
  flex-wrap: wrap;
}

.chart-cta-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  min-width: 0;
}

.chart-cta-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 13px;
}

.chart-cta-copy p {
  font-size: 14.5px;
  line-height: 1.5;
}
.chart-cta-copy p strong { font-weight: 700; }

.chart-cta-btn {
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--plum);
  color: var(--cream);
  padding: 10px 22px;
  font-size: 14px;
}

@media (max-width: 720px) {
  .chart-cta-inner { flex-direction: column; text-align: center; }
  .chart-cta-copy { flex-direction: column; text-align: center; gap: 8px; }
}

/* ============ Free Chart Page (dedicated) ============ */
.free-chart-hero {
  background: var(--plum);
  color: var(--cream);
  text-align: center;
  padding: 72px 24px 64px;
}

.free-chart-hero .offer-requirement {
  background: rgba(250, 243, 236, 0.15);
  color: var(--cream);
  margin-bottom: 20px;
}

.free-chart-hero h1 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.free-chart-hero p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto;
  color: rgba(250, 243, 236, 0.92);
}

.free-chart-body { background: var(--blush); padding: 64px 0; }

.free-chart-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--cream-card);
  border: 1px solid rgba(82, 6, 34, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(82, 6, 34, 0.06);
  overflow: hidden;
}

.free-chart-note {
  text-align: center;
  max-width: 560px;
  margin: 24px auto 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.free-chart-discover {
  background: var(--cream);
  padding: 72px 0;
}

.free-chart-intro {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 48px;
}

.free-chart-discover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.free-chart-discover-item {
  text-align: center;
}

.free-chart-discover-item .step-num { margin-bottom: 14px; }

.free-chart-discover-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.free-chart-discover-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .free-chart-discover-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .free-chart-discover-grid { grid-template-columns: 1fr; }
}

/* ============ How a Session Works ============ */
.how-it-works { background: var(--cream); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 980px;
  margin: 0 auto;
}

.step-item { text-align: center; }

.step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--cream);
  font-size: 18px;
  font-weight: 700;
}

.step-item h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.step-item p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
}
