:root {
  --ink: #252927;
  --muted: #65716d;
  --petrol: #0f5e63;
  --petrol-dark: #0a3f43;
  --sage: #8aa08b;
  --rust: #b55f4e;
  --ochre: #c3a35b;
  --paper: #f5f2ea;
  --white: #fffaf2;
  --line: rgba(37, 41, 39, 0.14);
  --shadow: 0 22px 55px rgba(27, 31, 29, 0.18);
  --space-section: 92px;
  --space-section-mobile: 62px;
  --container-pad: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px 56px;
  color: #fff;
  background: linear-gradient(to bottom, rgba(18, 24, 23, 0.76), rgba(18, 24, 23, 0.18));
}

.site-header.page-header {
  position: sticky;
  color: #fff;
  background: #111817;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-size: 18px;
}

.nav {
  display: flex;
  gap: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.nav a:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 126px 64px 96px;
  background: #111817;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/dein-inneres-kind-heilen-cover.jpg");
  background-size: 560px auto;
  background-repeat: no-repeat;
  background-position: right 8vw center;
  opacity: 0.78;
  filter: saturate(0.82) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 19, 18, 0.98) 0%, rgba(12, 19, 18, 0.82) 42%, rgba(12, 19, 18, 0.2) 100%),
    linear-gradient(0deg, rgba(12, 19, 18, 0.7) 0%, rgba(12, 19, 18, 0.08) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--ochre);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: 88px;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 24px;
  font-size: 52px;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 26px;
  line-height: 1.32;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 4px;
  font-weight: 700;
}

.button.primary {
  background: var(--ochre);
  color: #1f201d;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.button.dark {
  margin-top: 12px;
  background: var(--petrol);
  color: #fff;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button.ghost-dark {
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
}

.button.text-button {
  min-height: 44px;
  border: 1px solid var(--line);
  color: var(--petrol-dark);
  background: rgba(255, 250, 242, 0.75);
}

.section {
  padding: var(--space-section) 0;
}

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

.container.narrow {
  width: min(860px, calc(100% - 56px));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}

.copy {
  color: var(--muted);
  font-size: 19px;
}

.copy p,
.book-copy p,
.social-layout p,
.pillar p,
.topic-card p,
.info-card p {
  margin-bottom: 16px;
}

.intro-band {
  background: var(--white);
}

.pillar-grid,
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.pillar,
.topic-card,
.info-card {
  min-height: 224px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
}

.info-card.large {
  min-height: 260px;
}

.pillar:nth-child(2),
.topic-card:nth-child(2),
.topic-card:nth-child(5) {
  background: rgba(138, 160, 139, 0.18);
}

.pillar:nth-child(3),
.topic-card:nth-child(3) {
  background: rgba(181, 95, 78, 0.1);
}

.pillar-number {
  color: var(--petrol);
  font-weight: 800;
}

.pillar p,
.topic-card p,
.info-card p,
.book-copy p,
.social-layout p {
  color: var(--muted);
}

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

.page-hero {
  padding: 112px 0 78px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 24, 23, 0.98), rgba(17, 24, 23, 0.82)),
    radial-gradient(circle at 80% 0%, rgba(195, 163, 91, 0.28), transparent 38%),
    #111817;
}

.page-hero h1 {
  margin-bottom: 24px;
  font-size: 70px;
  line-height: 1;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 24px;
  line-height: 1.32;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 70px;
  align-items: start;
}

.form-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(27, 31, 29, 0.08);
}

.form-card label {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 800;
}

.form-card input,
.form-card select {
  width: 100%;
  min-height: 48px;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.checkbox-row {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 4px 0 18px !important;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400 !important;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 3px 0 0;
  padding: 0;
}

.checkbox-row a {
  color: var(--petrol-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  opacity: 0;
}

.form-card button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--petrol);
  font: inherit;
  font-weight: 800;
}

.form-card button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.mailerlite-native-form form {
  margin: 0;
}

.mailerlite-native-form .ml-form-align-center,
.mailerlite-native-form .ml-form-embedWrapper,
.mailerlite-native-form .ml-form-embedBody,
.mailerlite-native-form .ml-form-formContent,
.mailerlite-native-form .ml-form-fieldRow,
.mailerlite-native-form .ml-field-group {
  width: 100%;
}

.mailerlite-native-form .ml-form-embedWrapper {
  display: block;
}

.mailerlite-native-form .ml-form-embedSubmit {
  margin: 0;
}

.mailerlite-native-form button.loading {
  display: none;
}

.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.ml-form-embedSubmitLoad::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  margin: 1px auto;
  border: 4px solid #fff;
  border-color: #fff #fff #fff transparent;
  border-radius: 50%;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}

@keyframes ml-form-embedSubmitLoad {
  to {
    transform: rotate(360deg);
  }
}

.mailerlite-native-form .row-success h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
}

.mailerlite-native-form .row-success p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.review-band {
  background: #e8eee6;
}

.review-copy h2 {
  font-size: 38px;
}

.review-mark {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 3px;
  color: var(--petrol-dark);
  background: var(--ochre);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.review-copy p:not(.section-kicker) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.compact-resource-card {
  min-height: 0;
  background: rgba(255, 250, 242, 0.92);
}

.compact-resource-card .resource-copy {
  width: 100%;
}

.form-message {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.form-message.success {
  color: var(--petrol-dark);
}

.form-message.error {
  color: #9c3b2d;
}

.book-section {
  background: #17201f;
  color: #fff;
}

.book-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 76px;
  align-items: center;
}

.book-cover-wrap {
  display: flex;
  justify-content: center;
}

.book-cover {
  width: 320px;
  max-width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.book-copy .section-kicker {
  color: var(--ochre);
}

.book-copy p,
.book-copy li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.book-subtitle {
  color: #fff !important;
  font-size: 23px !important;
  line-height: 1.32;
}

.clean-list {
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
}

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

.author-section {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.social-section {
  background: var(--petrol-dark);
  color: #fff;
}

.social-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 56px;
  align-items: center;
}

.signup {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.signup label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.signup-row {
  display: flex;
  gap: 10px;
}

.signup input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
}

.signup input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.signup button {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  color: #1e221f;
  background: var(--ochre);
  font-weight: 800;
}

.content-section {
  background: var(--white);
}

.content-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.content-strip span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #111817;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-links a:hover {
  color: #fff;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.45;
}

.footer-disclaimer a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.legal-section {
  background: var(--white);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 860px);
}

.legal-copy {
  color: var(--muted);
  font-size: 18px;
}

.legal-copy h2 {
  margin-top: 44px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.12;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy h3 {
  margin-top: 34px;
  color: var(--ink);
  font-size: 22px;
}

.legal-copy a {
  color: var(--petrol-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-date {
  margin-top: 42px;
  color: var(--ink);
  font-weight: 700;
}

.muted-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.resource-stack {
  display: grid;
  gap: 26px;
}

.resource-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 16px 42px rgba(27, 31, 29, 0.08);
}

.resource-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.resource-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--petrol-dark);
  background: rgba(195, 163, 91, 0.18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.resource-copy p {
  color: var(--muted);
  font-size: 18px;
}

.small-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px !important;
}

.notice-card {
  padding: 32px;
  border-left: 4px solid var(--ochre);
  border-radius: 8px;
  background: var(--white);
}

.notice-card h2 {
  font-size: 34px;
}

.notice-card p {
  color: var(--muted);
  font-size: 18px;
}

.star-line {
  margin: -8px 0 22px;
  color: var(--ochre);
  font-size: 26px;
  letter-spacing: 0.12em;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 22px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 700px;
    padding: 112px 24px 72px;
  }

  .hero-media {
    background-size: 360px auto;
    background-position: right -92px bottom 46px;
    opacity: 0.5;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(12, 19, 18, 0.96), rgba(12, 19, 18, 0.62));
  }

  h1 {
    font-size: 56px;
    line-height: 0.98;
  }

  h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero-lead,
  .page-hero p:not(.eyebrow) {
    font-size: 21px;
  }

  .page-hero {
    padding: 104px 0 58px;
  }

  .page-hero h1 {
    font-size: 48px;
  }

  .section {
    padding: var(--space-section-mobile) 0;
  }

  .container,
  .container.narrow {
    width: min(100% - 36px, 1120px);
  }

  .split,
  .book-layout,
  .social-layout,
  .two-column,
  .resource-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pillar-grid,
  .topic-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .book-cover-wrap {
    justify-content: flex-start;
  }

  .signup-row {
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}

@media (min-width: 821px) and (max-width: 1100px) {
  .site-header {
    padding-left: 34px;
    padding-right: 34px;
  }

  .hero {
    padding-left: 44px;
    padding-right: 44px;
  }

  .hero-media {
    background-size: 470px auto;
    background-position: right -42px center;
  }

  h1 {
    font-size: 76px;
  }

  h2 {
    font-size: 46px;
  }

  .split,
  .book-layout,
  .two-column {
    gap: 48px;
  }
}
