@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@400;500;600;700;800&family=Caveat:wght@500;600;700&display=swap');

:root {
  --gold: #F5D970;
  --gold-soft: #E0BF5C;
  --gold-line-15: rgba(245, 217, 112, 0.20);
  --gold-line-30: rgba(245, 217, 112, 0.35);
  --gold-line-40: rgba(245, 217, 112, 0.45);
  --gold-fill-soft: rgba(245, 217, 112, 0.07);
  --black: #000000;
  --check-fill: #FFFFFF;
  --page-w: 1080px;
  --page-h: 1920px;
  --pad-x: 90px;
  --pad-y: 110px;
}

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

html, body {
  background: var(--black);
  color: var(--gold);
  font-family: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  font-style: italic;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- PAGE FRAME ---------- */
.page {
  width: var(--page-w);
  height: var(--page-h);
  padding: var(--pad-y) var(--pad-x);
  background: var(--black);
  color: var(--gold);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  page-break-after: always;
  break-after: page;
}

.page:last-child { page-break-after: auto; }

/* On screen: separate pages with a gap and center them */
@media screen {
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
  }
  .page {
    box-shadow: 0 8px 28px rgba(0,0,0,.6), 0 0 0 1px #1a1a1a;
  }
}

/* On print: use exact page size, no gaps */
@page {
  size: 1080px 1920px;
  margin: 0;
}
@media print {
  body { padding: 0; gap: 0; background: var(--black); }
  .page { box-shadow: none; }
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 {
  font-family: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  font-style: italic;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

h1 { font-size: 76px; text-transform: uppercase; }
h2 { font-size: 56px; text-transform: uppercase; margin-bottom: 30px; }
h3 { font-size: 44px; margin-bottom: 18px; }

p, li {
  font-size: 36px;
  line-height: 1.45;
  margin-bottom: 22px;
  font-weight: 600;
}

ul, ol {
  padding-left: 50px;
  margin-bottom: 22px;
}
li { margin-bottom: 12px; }

strong { font-weight: 800; }
em { font-style: italic; }

.small { font-size: 28px; line-height: 1.4; }
.tiny  { font-size: 24px; line-height: 1.4; }

/* ---------- COVER (Page 1) ---------- */
.cover {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 70px;
}

.cover-photo {
  align-self: flex-end;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: #1a1a1a center/cover no-repeat;
  background-image: url('assets/thomas_portrait.png');
  border: 2px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 28px;
  font-style: normal;
}

.cover-photo::after {
  content: 'Foto Thomas hier';
  display: none;
}

.logo-circle {
  align-self: center;
  margin-top: 60px;
  width: 700px;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-svg { width: 100%; height: 100%; }

.cover-title {
  text-align: center;
  margin-bottom: 30px;
}

.cover-title .badge {
  font-family: 'Big Shoulders Display', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 96px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
}

.cover-title .sub {
  margin-top: 24px;
  font-size: 36px;
  color: var(--gold-soft);
  font-weight: 500;
}

/* ---------- HEADLINE BLOCK (Section opener pages) ---------- */
.section-opener {
  justify-content: center;
  text-align: center;
  align-items: center;
}
.section-opener .kicker {
  font-size: 38px;
  letter-spacing: 8px;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 30px;
}
.section-opener h1 {
  font-size: 110px;
  line-height: 0.95;
  margin-bottom: 50px;
}
.section-opener .lead {
  font-size: 40px;
  max-width: 780px;
  line-height: 1.35;
}

/* ---------- BOXES & CALLOUTS ---------- */
.box {
  border: 2px solid var(--gold);
  border-radius: 18px;
  padding: 36px 42px;
  margin: 30px 0;
}

.box.soft {
  border-color: var(--gold-soft);
  background: var(--gold-fill-soft);
}

.aha {
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid var(--gold-line-30);
  font-size: 34px;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  line-height: 1.35;
}

.kicker {
  font-size: 30px;
  letter-spacing: 6px;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

/* ---------- CHECKLIST ---------- */
.checklist {
  list-style: none;
  padding: 0;
}
.checklist li {
  position: relative;
  padding-left: 62px;
  font-size: 34px;
  line-height: 1.45;
  margin-bottom: 18px;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 40px;
  height: 40px;
  background: var(--check-fill);
  border: 2px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.6);
}

/* ---------- TABLE / NUMBERS ---------- */
.numbers-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 32px;
}
.numbers-table th,
.numbers-table td {
  border-bottom: 1px solid rgba(232,196,76,0.35);
  padding: 18px 14px;
  text-align: left;
}
.numbers-table th {
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 1px;
  color: var(--gold-soft);
  text-transform: uppercase;
}
.numbers-table td.num { text-align: right; font-weight: 800; }

/* ---------- TWO-COL ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

/* ---------- PAGE NUMBER / FOOTER MARK ---------- */
.page-mark {
  position: absolute;
  bottom: 36px;
  right: 50px;
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-weight: 600;
}
.page-mark .num { color: var(--gold); margin-left: 10px; }

/* ---------- ACCENT (handwritten-feel) ---------- */
.handwritten {
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-weight: 700;
}

/* ---------- LINKS ---------- */
a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* ---------- CTA BUTTON ---------- */
.cta-wrap {
  text-align: center;
  margin: 40px 0 30px;
}
.cta-button {
  display: inline-block;
  padding: 28px 56px;
  background: var(--gold);
  color: var(--black) !important;
  font-family: 'Big Shoulders Display', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 40px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 56px;
  border: 3px solid var(--gold);
  box-shadow: 0 6px 0 0 var(--gold-soft);
}
.cta-button:hover {
  background: var(--gold-soft);
  text-decoration: none;
}
.cta-sub {
  margin-top: 14px;
  font-size: 24px;
  letter-spacing: 4px;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- DISCLAIMER PAGE (kompakter) ---------- */
.page.disclaimer-page {
  padding-top: 80px;
  padding-bottom: 80px;
}
.disclaimer-page h3 {
  font-size: 40px;
  margin-bottom: 14px;
}
.disclaimer-page .small {
  font-size: 24px;
  line-height: 1.35;
  margin-bottom: 14px;
}
.disclaimer-page .tiny {
  font-size: 22px;
  line-height: 1.4;
}
.disclaimer-page .divider {
  margin: 16px 0 14px;
}

/* ---------- UTILITY ---------- */
.spacer-sm { height: 18px; }
.spacer-md { height: 36px; }
.spacer-lg { height: 60px; }
.center { text-align: center; }
.muted { color: var(--gold-soft); }
.divider { height: 1px; background: rgba(232,196,76,0.3); margin: 30px 0; }
