:root {
  --color-paper: #f7f2ea;
  --color-cream: #eadcc6;
  --color-sand: #d6bf9a;
  --color-ink: #11100e;
  --color-black: #080705;
  --color-muted: #665f55;
  --color-muted-light: rgba(255, 250, 242, 0.72);
  --color-line: #d8c8b2;
  --color-gold: #c8a25a;
  --color-gold-dark: #7c5f28;
  --color-white: #fffaf2;
  --shadow-soft: 0 24px 70px rgba(17, 16, 14, 0.12);
  --shadow-gold: 0 18px 42px rgba(200, 162, 90, 0.28);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(17, 16, 14, 0.022) 1px, transparent 1px);
  background-size: 100% 5px;
  opacity: 0.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(200, 162, 90, 0.28);
  background: rgba(8, 7, 5, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--color-white);
}

.nav {
  display: none;
  align-items: center;
  gap: 22px;
  color: rgba(255, 250, 242, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
}

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

.section {
  padding: 72px 0;
  position: relative;
}

.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  padding-top: 56px;
  overflow: hidden;
  border-bottom: 1px solid rgba(200, 162, 90, 0.32);
  background:
    radial-gradient(circle at 78% 24%, rgba(200, 162, 90, 0.22), transparent 34%),
    linear-gradient(135deg, #050403 0%, #15120d 52%, #070604 100%);
  color: var(--color-white);
}

.hero-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.25rem, 18vw, 9.6rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 11vw, 5.25rem);
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.05;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4.25rem);
  font-weight: 600;
  line-height: 1;
}

.hero-text {
  max-width: 620px;
  color: var(--color-muted-light);
  font-size: 1.05rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.microcopy {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 250, 242, 0.62);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 24px;
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-gold);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--color-gold);
  color: var(--color-black);
}

.button-secondary {
  background: transparent;
  color: var(--color-white);
  box-shadow: none;
}

.hero .button-secondary {
  background: rgba(200, 162, 90, 0.9);
  color: var(--color-black);
  box-shadow: var(--shadow-gold);
}

.product-panel {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.book-cover {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.product-panel p {
  max-width: 440px;
  margin: 18px auto 0;
  color: var(--color-muted-light);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
}

.split,
.two-columns {
  display: grid;
  gap: 34px;
}

.rich-text p,
.audience p,
.price-box p,
.thank-you-box p {
  color: var(--color-muted);
}

.pain {
  background: var(--color-paper);
}

.transformation {
  background: linear-gradient(180deg, #d9c49f 0%, #cdb287 100%);
}

.transformation .eyebrow,
.audience .eyebrow,
.learn .eyebrow {
  color: #5e431a;
}

.transformation .section-heading {
  color: var(--color-black);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.card-grid,
.steps {
  display: grid;
  gap: 14px;
}

.card,
.step,
.quiet-box {
  border: 1px solid var(--color-line);
  background: rgba(255, 250, 242, 0.48);
}

.card,
.step {
  padding: 26px;
}

.card {
  background: rgba(255, 250, 242, 0.62);
  border-color: rgba(17, 16, 14, 0.16);
}

.card span,
.step span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--color-gold-dark);
  font-weight: 800;
}

.card p,
.step p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.method,
.receive,
.pricing,
.thank-you-page {
  background:
    linear-gradient(135deg, rgba(200, 162, 90, 0.13), transparent 38%),
    var(--color-black);
  color: var(--color-white);
}

.method .eyebrow,
.receive .eyebrow,
.pricing .eyebrow,
.thank-you-page .eyebrow {
  color: var(--color-gold);
}

.method .step,
.receive .feature-list div {
  border-color: rgba(239, 228, 212, 0.22);
  background: rgba(255, 250, 242, 0.055);
}

.method .step p,
.pricing p,
.thank-you-page p {
  color: rgba(255, 250, 242, 0.72);
}

.learn {
  background: var(--color-paper);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--color-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list div {
  padding: 20px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
}

.section-cta {
  margin-top: 34px;
}

.quiet-box {
  padding: 28px;
  background: rgba(255, 250, 242, 0.55);
}

.audience {
  background: linear-gradient(180deg, #d6bf9a 0%, #f7f2ea 100%);
}

.price-box {
  max-width: 760px;
  text-align: center;
}

.price-intro {
  max-width: 690px;
  margin: 0 auto 12px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 7vw, 3.3rem);
  line-height: 1.03;
}

.price {
  margin: 12px 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 7rem);
  font-weight: 700;
  line-height: 1;
}

.price-note {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9rem;
  font-weight: 600;
}

.price-box .button {
  margin-top: 16px;
  background: var(--color-gold);
  color: var(--color-ink);
}

.narrow {
  max-width: 820px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq {
  background: var(--color-paper);
}

details {
  border: 1px solid var(--color-line);
  background: rgba(255, 250, 242, 0.5);
}

summary {
  cursor: pointer;
  padding: 22px 20px;
  font-weight: 800;
  list-style: none;
  min-height: 64px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--color-gold-dark);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--color-muted);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(200, 162, 90, 0.28);
  background: var(--color-black);
  color: var(--color-muted-light);
}

.footer-inner {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 242, 0.68);
}

.footer-inner strong {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.footer-inner a {
  color: var(--color-gold);
  font-weight: 800;
}

.footer-inner small {
  color: rgba(255, 250, 242, 0.52);
  font-weight: 600;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
}

.thank-you-box {
  max-width: 780px;
  padding: 42px 0;
}

.thank-you-box h1 {
  font-size: clamp(3.3rem, 15vw, 7rem);
}

.thank-you-secondary {
  max-width: 640px;
  margin-top: -2px;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .button {
    width: auto;
  }

  .card-grid,
  .steps,
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .site-header {
    padding-left: 34px;
    padding-right: 34px;
  }

  .nav {
    display: flex;
  }

  .section {
    padding: 104px 0;
  }

  .hero {
    padding-top: 76px;
  }

  .hero-grid,
  .split,
  .two-columns {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-copy {
    padding-bottom: 44px;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 14px;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 62px;
  }

  h1 {
    font-size: clamp(3.8rem, 21vw, 5.8rem);
  }

  .hero-lead {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .book-cover {
    max-width: 360px;
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .price {
    font-size: clamp(4.6rem, 23vw, 6.4rem);
  }

  summary {
    padding-right: 18px;
  }
}
