:root {
  /* Self-Care palette: warm cream + dusty sage + soft blue */
  --cream: #F7F2E9;
  --cream-warm: #F0E9DB;
  --sand: #DED4C2;
  --sage: #A9B8A2;
  --sage-deep: #5A7060;
  --blue-dusty: #8094A2;
  --blue-deep: #45576A;
  --rose: #C9A8A8;
  --rose-deep: #8E6A6E;
  --ink: #2A2D2E;
  --ink-soft: #4A4D4F;
  --gold: #BFA274;
  --rule: rgba(42, 45, 46, 0.12);
  --shadow: rgba(42, 45, 46, 0.06);

  /* Aliases — keep tokens from the original template working */
  --violet: var(--sage-deep);
  --violet-deep: var(--blue-deep);
  --magenta-hint: var(--blue-dusty);
  --gold-soft: var(--rose);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container.narrow {
  max-width: 640px;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

h1 em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 400;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 1.2rem;
}

p { margin: 0 0 1rem; }

a { color: var(--sage-deep); }
a:hover { color: var(--ink); }

/* ─── HERO ─── */

.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 165, 122, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(107, 76, 122, 0.18) 0%, transparent 55%),
    linear-gradient(to bottom, var(--cream-warm), var(--cream));
}

.hero-small {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.hero-small h1 em {
  display: block;
  font-style: italic;
  color: var(--violet);
  font-weight: 500;
}

.hero-small .cta-wrap.centered {
  align-items: center;
  flex-direction: column;
  gap: 0.7rem;
}

/* Next-step section on thank-you page */
.next-step {
  padding: clamp(3rem, 6vw, 4rem) 0;
  background: var(--cream-warm);
  text-align: center;
}

.next-step h2 {
  max-width: 26em;
  margin-left: auto;
  margin-right: auto;
}

.next-step p {
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
  color: var(--ink-soft);
}

.next-step em {
  font-style: italic;
  color: var(--violet);
}

.next-step strong {
  color: var(--ink);
  font-weight: 500;
}

.next-step .cta-wrap {
  margin-top: 2rem;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
  }
}

.hero-image {
  margin: 0;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow:
    0 30px 60px -20px rgba(62, 42, 77, 0.35),
    0 12px 24px -10px rgba(62, 42, 77, 0.18);
  transform: rotate(-1.2deg);
  transition: transform 0.4s ease;
}

.hero-image img:hover {
  transform: rotate(0deg) scale(1.01);
}

@media (max-width: 879px) {
  .hero-image img {
    max-width: 340px;
    transform: rotate(0deg);
  }
}

.kicker {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 1.5rem;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 36em;
  margin-bottom: 2.5rem;
}

/* ─── CTAs ─── */

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.cta {
  display: inline-block;
  padding: 0.95rem 1.7rem;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 2px var(--shadow);
}

.cta:hover {
  background: var(--sage-deep);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--shadow);
}

.cta-large {
  font-size: 1.1rem;
  padding: 1.1rem 2.1rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.cta-strike {
  font-size: 0.78rem;
  opacity: 0.55;
  font-weight: 400;
  text-decoration: line-through;
}

.cta-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  opacity: 0.85;
  margin: 0;
}

.cta-wrap.centered {
  align-items: center;
}

.trust {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  opacity: 0.75;
  letter-spacing: 0.02em;
  border-top: 1px solid var(--rule);
  padding-top: 1.2rem;
  max-width: 36em;
}

/* ─── SECTIONS ─── */

section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.problem {
  background: var(--cream);
  border-top: 1px solid var(--rule);
}

.problem .checks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.problem .checks li {
  position: relative;
  padding: 0.6rem 0 0.6rem 2rem;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
}

.problem .checks li::before {
  content: "·";
  position: absolute;
  left: 0.5rem;
  top: 0.35rem;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
}

.problem .checks li:last-child { border-bottom: none; }

.kicker-line {
  margin-top: 1.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--sage-deep);
}

.solution {
  background: var(--cream-warm);
}

.solution em {
  color: var(--gold);
  font-style: italic;
}

.solution strong {
  color: var(--ink);
  font-weight: 500;
}

/* Lead-magnet section */
.lead-magnet {
  background:
    radial-gradient(circle at 70% 30%, rgba(201, 165, 122, 0.18) 0%, transparent 55%),
    linear-gradient(to bottom, var(--cream-warm), var(--sand));
  border-top: 1px solid var(--rule);
  text-align: center;
}

.lead-magnet .kicker {
  margin-bottom: 0.7rem;
  color: var(--violet);
}

.lead-magnet h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  max-width: 22em;
  margin-left: auto;
  margin-right: auto;
}

.lead-magnet h2 em {
  font-style: italic;
  color: var(--rose-deep);
}

.lead-magnet .lede {
  max-width: 34em;
  margin: 0 auto 2rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 520px;
  margin: 0 auto 1rem;
}

@media (min-width: 560px) {
  .lead-form {
    flex-direction: row;
    gap: 0.6rem;
  }
}

.lead-form input[type="email"] {
  flex: 1;
  padding: 0.95rem 1.1rem;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input[type="email"]:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(107, 76, 122, 0.18);
}

.lead-form button {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 1px 2px var(--shadow);
}

.lead-form button:hover {
  background: var(--violet);
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  opacity: 0.75;
  max-width: 36em;
  margin: 0 auto;
}

.form-note a {
  color: inherit;
  text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Book spread (inside pages preview) */
.book-spread {
  margin: 2.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.book-spread img {
  width: 100%;
  max-width: 540px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 40px -12px rgba(62, 42, 77, 0.22);
}

.book-spread figcaption {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--violet);
  letter-spacing: 0.04em;
  opacity: 0.85;
}

/* Product shot in CTA */
.product-shot {
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
}

.product-shot img {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(62, 42, 77, 0.22));
}

/* Inside-Book Grid */
.inside-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .inside-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
}

.inside-card {
  padding: 1.5rem 1.4rem 1.3rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--rule);
  border-radius: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.inside-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow);
}

.inside-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--gold);
  margin: 0 0 0.4rem;
  line-height: 1;
}

.inside-text {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* Author section */
.author {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.author p {
  color: var(--ink-soft);
}

.author-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 760px;
}

@media (min-width: 720px) {
  .author-grid {
    grid-template-columns: 280px 1fr;
    gap: 3rem;
  }
}

.author-photo {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-photo img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  box-shadow:
    0 18px 40px -12px rgba(62, 42, 77, 0.30),
    0 6px 16px -6px rgba(62, 42, 77, 0.18);
  border: 4px solid var(--cream);
}

.author-photo figcaption {
  margin-top: 0.9rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--violet);
  letter-spacing: 0.02em;
}

.author-text h2 {
  margin-top: 0;
}

.for-whom .bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.for-whom .bullets li {
  padding: 0.7rem 0;
  padding-left: 1.8rem;
  position: relative;
  border-bottom: 1px dashed var(--rule);
  color: var(--ink-soft);
}

.for-whom .bullets li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.85rem;
  color: var(--gold);
  font-size: 0.85rem;
}

.for-whom .bullets li:last-child { border-bottom: none; }

.why-me {
  background: var(--cream-warm);
}

.why-me em { font-style: italic; color: var(--ink); }

.cta-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 188, 148, 0.3) 0%, transparent 60%),
    linear-gradient(to bottom, var(--cream), var(--sand));
  text-align: center;
}

.cta-section .kicker {
  text-align: center;
  margin: 0 0 1rem;
}

.cta-section h2 {
  margin-bottom: 0.5rem;
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.cta-section .subtitle {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 34em;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

.cta-section .cta-wrap {
  align-items: center;
  margin-bottom: 2rem;
}

/* Price box */
.price-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin: 0 auto 2.5rem;
  padding: 1.6rem 2.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--rule);
  border-radius: 18px;
  position: relative;
}

.price-now {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin: 0;
}

.price-strike {
  font-size: 1.1rem;
  color: var(--ink-soft);
  opacity: 0.55;
  text-decoration: line-through;
  margin: 0;
  font-weight: 400;
}

.price-note {
  margin: 0.4rem 0 0;
  font-size: 0.83rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.affiliate-disclosure {
  font-size: 0.85rem;
  color: var(--ink-soft);
  max-width: 38em;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  border: 1px solid var(--rule);
  text-align: left;
  line-height: 1.55;
}

.affiliate-disclosure strong { color: var(--ink); }

/* FAQ */
.faq {
  background: var(--cream);
  border-top: 1px solid var(--rule);
}

.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 1.1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 2rem;
  font-family: "Inter", sans-serif;
  transition: color 0.2s ease;
}

.faq summary:hover { color: var(--sage-deep); }

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq details p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.65;
}

.faq details p strong { color: var(--ink); }

/* ─── FOOTER ─── */

footer {
  padding: 2.5rem 0;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}

footer a {
  color: var(--gold-soft);
  text-decoration: none;
}

footer a:hover {
  color: var(--cream);
}

footer .micro {
  font-size: 0.78rem;
  opacity: 0.55;
  margin-top: 0.8rem;
}

/* ─── PAGES (Impressum/Datenschutz) ─── */

body.page main {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

body.page h1 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

body.page h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
}

body.page p, body.page li { color: var(--ink-soft); }

body.page .back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--sage-deep);
  text-decoration: none;
}

body.page .back:hover { color: var(--ink); }
