:root {
  --bordeaux: #7b1c30;
  --bordeaux-deep: #3d0a15;
  --text-dark: #1c0a0f;
  --creme: #f7f0e6;
  --card: #fbf6ef;
  --tan: #ede0ce;
  --tan-muted: #e4d5be;
  --text-muted: #6b4455;
  --gold-accent: #c4a882;
  --wachruf-bg: #f0e4d4;
  --text-on-dark: #f7f0e6;
  --border-subtle: rgba(123, 28, 48, 0.14);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --font-label: 'Jost', 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 400ms;
  color-scheme: light;
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--creme);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-dark);
}

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

:focus-visible {
  outline: 3px solid var(--bordeaux);
  outline-offset: 3px;
}

.container {
  width: min(100% - 48px, 1152px);
  margin-inline: auto;
}

.section-dark {
  background: var(--bordeaux-deep);
  color: var(--text-on-dark);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--text-on-dark);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}

html.js .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--bordeaux);
  z-index: 100;
}

/* ---------- Platzhalter-Foto (wiederverwendet: Hero, Ueber Dennis) ---------- */

.hero-photo,
.collage-tile {
  background: linear-gradient(160deg, var(--tan-muted), var(--tan));
  outline: 1px solid rgba(196, 168, 130, 0.4);
  outline-offset: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  text-align: center;
}

.hero-photo {
  aspect-ratio: 4 / 5;
  gap: 16px;
  padding: 24px;
}

.collage-tile--photo,
.hero-photo--photo {
  padding: 0;
  gap: 0;
  overflow: hidden;
}

.collage-tile--photo img,
.collage-tile--photo video,
.hero-photo--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo--photo img {
  /* Bild ist hochkant-lastig (Kopf bis Oberschenkel); Zuschnitt nach oben
     verschieben, damit der Kopfabstand erhalten bleibt statt oben und unten
     gleich viel wegzuschneiden. */
  object-position: 50% 15%;
}

.foto-platzhalter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(107, 68, 85, 0.15);
  color: var(--text-muted);
}

.hero-photo span:not(.foto-platzhalter-icon) {
  font-family: var(--font-label);
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.4;
}

/* ---------- Site-Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(247, 240, 230, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-subtle);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-family: var(--font-label);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 200ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--bordeaux);
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.site-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out);
}

@media (max-width: 767px) {
  .site-nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--creme);
    border-bottom: 1px solid var(--border-subtle);
    padding: 4px 20px 16px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .site-header.nav-open .site-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .site-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .site-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

.site-header-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-label);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bordeaux);
  border: 1px solid var(--bordeaux);
  padding: 12px 18px;
  min-height: 44px;
  text-decoration: none;
  transition: background-color 300ms var(--ease-out), color 300ms var(--ease-out);
}

.site-header-cta:hover,
.site-header-cta:focus-visible {
  background: var(--bordeaux);
  color: var(--text-on-dark);
}

/* ---------- Hero ---------- */

.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-block: 96px 64px;
}

.hero-deco-panel {
  display: none;
}

.hero-deco-ring {
  display: none;
}

@media (min-width: 900px) {
  .hero-deco-panel {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--tan);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  }

  .hero-deco-ring {
    display: block;
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
  }

  .hero-deco-ring--1 {
    top: 96px;
    right: 32px;
    width: 256px;
    height: 256px;
  }

  .hero-deco-ring--2 {
    bottom: 64px;
    right: 128px;
    width: 128px;
    height: 128px;
    border-color: rgba(123, 28, 48, 0.08);
  }
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo {
  aspect-ratio: 3 / 4;
  max-width: 288px;
  width: 100%;
  margin-inline: auto;
}

.hero-photo-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 96px;
  height: 96px;
  background: rgba(123, 28, 48, 0.1);
  z-index: -1;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }

  .hero-photo-wrap {
    justify-content: flex-end;
  }

  .hero-photo {
    aspect-ratio: 2 / 3;
    max-width: 320px;
    margin-inline: 0;
  }
}

.eyebrow {
  font-family: var(--font-label);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.6rem, 11vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--bordeaux);
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold-accent);
  margin-bottom: 28px;
}

.hero-sub {
  max-width: 34ch;
  margin-bottom: 16px;
}

.hero-sub-strong {
  max-width: 34ch;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 36px;
}

.cta-button {
  display: inline-block;
  font-family: var(--font-label);
  background: var(--bordeaux);
  color: var(--text-on-dark);
  padding: 16px 32px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), background-color 200ms var(--ease-out);
}

.cta-button:hover,
.cta-button:focus-visible {
  background: var(--bordeaux-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(61, 10, 21, 0.28);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-note {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 14px;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  animation: scroll-hint-bounce 2s ease-in-out infinite;
}

.scroll-hint::before {
  content: "";
  width: 1px;
  height: 32px;
  background: rgba(123, 28, 48, 0.3);
}

.scroll-hint span {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

@keyframes scroll-hint-bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hint {
    animation: none;
  }
}

/* ---------- Lena (Identifikations-Geschichte) ---------- */

.lena {
  padding-block: 112px;
  background: var(--creme);
}

.lena .container {
  max-width: 768px;
}

.lena h2 {
  margin-bottom: 40px;
}

.lena-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(28, 10, 15, 0.8);
  max-width: 640px;
  margin-bottom: 24px;
}

.lena-text strong {
  font-weight: 600;
  color: var(--bordeaux);
}

.lena-spiegel {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-dark);
  max-width: 640px;
}

.lena-spiegel strong {
  font-weight: 600;
  color: var(--bordeaux);
}

/* ---------- Szenen ("Kennst du das?") ---------- */

.szenen {
  padding-block: 112px;
  background: var(--card);
}

.szenen .container {
  max-width: 768px;
}

.stimmen-label {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 24px;
}

.stimmen {
  display: grid;
  gap: 16px;
  margin-bottom: 72px;
}

.stimme {
  background: var(--creme);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--bordeaux);
  padding: 20px 24px;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(28, 10, 15, 0.78);
}

@media (min-width: 768px) {
  .stimmen {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.szene {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 24px;
  align-items: start;
  padding-block: 40px;
}

.szene-nr {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(123, 28, 48, 0.6);
}

.szene-divider {
  height: 1px;
  background: var(--border-subtle);
  margin-inline-start: 4.5rem;
}

.szene-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(28, 10, 15, 0.8);
  max-width: 640px;
}

.szene-text strong {
  font-weight: 600;
  color: var(--bordeaux);
}

.szenen-schluss {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--text-dark);
}

.szenen-punch {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  line-height: 1.3;
  color: var(--bordeaux);
}

/* ---------- Wendepunkt ---------- */

.wendepunkt {
  padding-block: 144px;
  position: relative;
  overflow: hidden;
}

.wende-deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(247, 240, 230, 0.06);
}

.wende-deco-ring--1 {
  top: 0;
  left: 0;
  width: 192px;
  height: 192px;
  transform: translate(-30%, -30%);
}

.wende-deco-ring--2 {
  bottom: 0;
  right: 0;
  width: 288px;
  height: 288px;
  border-color: rgba(247, 240, 230, 0.04);
  transform: translate(30%, 30%);
}

.wendepunkt .container {
  max-width: 768px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.wende-intro {
  font-family: var(--font-label);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(247, 240, 230, 0.55);
  margin-bottom: 40px;
}

.wende-statement {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3.5rem, 15vw, 7rem);
  line-height: 1;
  color: var(--text-on-dark);
  margin-bottom: 40px;
}

.wende-divider {
  width: 48px;
  height: 1px;
  background: rgba(196, 168, 130, 0.5);
  margin-inline: auto;
  margin-bottom: 40px;
}

.wende-outro {
  max-width: 34rem;
  margin-inline: auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(247, 240, 230, 0.8);
}

/* ---------- Über Dennis ---------- */

.ueber {
  padding-block: 112px;
}

.ueber .container {
  max-width: 1024px;
}

.ueber-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 900px) {
  .ueber-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
  }
}

.ueber-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ueber-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
}

.collage-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.collage-tile--portrait {
  aspect-ratio: 3 / 4;
}

.collage-tile--square {
  aspect-ratio: 1 / 1;
}

@media (min-width: 900px) {
  .ueber-collage {
    max-width: none;
    margin-inline: 0;
  }
}

.ueber-main h2 {
  margin-bottom: 24px;
}

.ueber-main p {
  margin-bottom: 20px;
  max-width: 640px;
  line-height: 1.8;
}

.ueber-main p strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-dark);
}

.ueber-closing {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.ueber-closing p {
  margin-inline: auto;
}

.ueber-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 640px;
  padding-top: 32px;
  margin-top: 8px;
  border-top: 1px solid var(--border-subtle);
}

.ueber-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.ueber-stat-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bordeaux);
}

.ueber-stat-label {
  font-family: var(--font-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.beispiel-stimme {
  border-left: 2px solid var(--bordeaux);
  padding: 8px 0 8px 20px;
  max-width: 640px;
}

.beispiel-stimme blockquote {
  margin: 0;
}

.beispiel-stimme blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(28, 10, 15, 0.8);
  margin-bottom: 10px;
}

.beispiel-stimme figcaption {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.platzhalter-marker {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
}

/* ---------- FAQ ---------- */

.faq {
  background: var(--card);
  padding-block: 96px;
}

.faq-container {
  max-width: 720px;
}

.faq h2 {
  margin-bottom: 40px;
}

.faq-item {
  padding-block: 28px;
  border-top: 1px solid var(--border-subtle);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.faq-item p {
  line-height: 1.75;
  max-width: 60ch;
}

/* ---------- Wachruf ---------- */

.wachruf {
  background: var(--wachruf-bg);
  padding-block: 112px;
}

.wachruf .container {
  max-width: 896px;
}

.wachruf-grid {
  display: grid;
  gap: 56px;
}

@media (min-width: 900px) {
  .wachruf-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
}

.wachruf-copy h2 {
  margin-bottom: 8px;
}

.wachruf-divider {
  width: 48px;
  height: 2px;
  background: var(--bordeaux);
  margin-bottom: 32px;
}

.wachruf-intro {
  margin-bottom: 32px;
  max-width: 640px;
  line-height: 1.8;
}

.wachruf-punkte {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wachruf-punkte li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1.6;
}

.wachruf-punkte li::before {
  content: "—";
  color: var(--bordeaux);
  font-weight: 600;
}

.wachruf-fit {
  max-width: 640px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.wachruf-fit strong {
  font-style: normal;
  color: var(--bordeaux);
}

.wachruf-honest {
  max-width: 640px;
  margin-bottom: 32px;
  padding-left: 18px;
  border-left: 2px solid var(--gold-accent);
  line-height: 1.8;
  color: var(--text-dark);
}

.wachruf-honest strong {
  color: var(--bordeaux);
  font-weight: 600;
}

.calendly-platzhalter {
  min-height: 320px;
  border: 1px solid var(--border-subtle);
  background: var(--card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 40px;
}

.calendly-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(123, 28, 48, 0.3);
  color: rgba(123, 28, 48, 0.7);
}

.calendly-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.calendly-desc {
  font-family: var(--font-label);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---------- Geschenk (Lead-Magnet) ---------- */

.leadmagnet {
  background: var(--creme);
  padding-block: 96px;
}

.ebook-hero {
  padding-block: 152px 96px;
}

.ebook-hero-copy h1 {
  font-size: clamp(2.4rem, 9vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.ebook-hero-copy h1 em {
  font-style: italic;
  color: var(--bordeaux);
}

.ebook-hero-copy > p {
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.leadmagnet-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .leadmagnet-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
  }
}

.leadmagnet-copy h2 {
  margin-bottom: 16px;
}

.leadmagnet-copy p {
  max-width: 480px;
  line-height: 1.75;
}

.leadmagnet-copy strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-dark);
}

.leadmagnet-card {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ebook-cover {
  position: relative;
  aspect-ratio: 2 / 3;
  width: 160px;
  max-width: 100%;
  margin-inline: auto;
  outline: 1px solid rgba(196, 168, 130, 0.4);
  outline-offset: 6px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(61, 10, 21, 0.28);
}

.ebook-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  display: block;
}

.ebook-cover-title {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 14px 10px 22px;
  background: linear-gradient(to bottom, var(--creme) 42%, rgba(247, 240, 230, 0.85) 66%, rgba(247, 240, 230, 0));
}

.ebook-cover-eyebrow {
  font-family: var(--font-label);
  font-size: 6px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 6px;
}

.ebook-cover-title h3 {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.1;
  color: var(--bordeaux);
}

.ebook-cover-title h3 em {
  font-style: italic;
}

.leadmagnet-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.leadmagnet-label {
  font-family: var(--font-label);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.leadmagnet-input {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border-subtle);
  background: var(--creme);
  color: var(--text-dark);
}

.leadmagnet-input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.leadmagnet-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: not-allowed;
}

.leadmagnet-consent input {
  margin-top: 4px;
  flex-shrink: 0;
}

.leadmagnet-consent span {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.leadmagnet-consent a {
  color: var(--bordeaux);
}

.leadmagnet-submit {
  font-family: var(--font-label);
  background: var(--bordeaux);
  color: var(--text-on-dark);
  padding: 14px 28px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
}

.leadmagnet-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.leadmagnet-note {
  font-family: var(--font-label);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.leadmagnet-confirm {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  color: #085229;
  background: #e7faf0;
  border: 1px solid #13ce66;
  border-radius: 2px;
  padding: 14px 16px;
}

/* ---------- Brevo-Formular (reskinned auf unser Design) ---------- */
/* Struktur/IDs/Classes bleiben wie von Brevo generiert (main.js braucht sie),
   nur die Optik wird komplett ueberschrieben. */

.sib-form {
  background: transparent;
}

.sib-form-message-panel {
  display: none;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
  padding: 12px 14px;
  border-radius: 2px;
  margin-bottom: 14px;
}

#error-message {
  color: #661d1d;
  background: #ffeded;
  border: 1px solid #ff4949;
}

#success-message {
  color: #085229;
  background: #e7faf0;
  border: 1px solid #13ce66;
}

.sib-form-message-panel__text {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sib-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

#sib-container {
  background: transparent;
}

#sib-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sib-input .entry__label {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted) !important;
  display: block;
  margin-bottom: 8px;
}

.sib-input .entry__field input.input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border-subtle);
  background: var(--creme);
  color: var(--text-dark);
}

.sib-input .entry__specification {
  display: none;
}

.sib-input .entry__error {
  font-family: var(--font-label) !important;
  font-size: 11px !important;
  color: var(--bordeaux) !important;
  background: none !important;
  border: none !important;
  padding: 6px 0 0 !important;
}

.sib-form-block__button {
  width: 100%;
  font-family: var(--font-label) !important;
  background: var(--bordeaux) !important;
  color: var(--text-on-dark) !important;
  padding: 14px 28px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none !important;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.sib-form-block__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.sib-hide-loader-icon {
  display: none;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.sib-optin .checkbox_tick_positive {
  display: none;
}

.input--hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--creme);
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  padding-block: 40px;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  color: var(--text-dark);
  margin-bottom: 12px;
}

.footer nav a {
  display: inline-block;
  padding-block: 10px;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 200ms var(--ease-out);
}

.footer nav a:hover,
.footer nav a:focus-visible {
  color: var(--bordeaux);
}

/* ---------- Rechtliches ---------- */

.rechtliches {
  padding-block: 152px 96px;
}

.zurueck-link {
  display: inline-block;
  padding-block: 10px;
  margin-bottom: 24px;
  color: var(--bordeaux);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.zurueck-link:hover,
.zurueck-link:focus-visible {
  color: var(--bordeaux-deep);
}

.warnbox {
  border: 2px solid var(--bordeaux);
  background: var(--card);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 48px;
}

.warnbox p {
  color: var(--bordeaux);
  line-height: 1.6;
}

.warnbox p:first-child {
  margin-bottom: 8px;
}

.warnbox code {
  font-family: monospace;
  background: rgba(123, 28, 48, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

.rechtliches section {
  margin-bottom: 56px;
}

.rechtliches-titel {
  font-size: 1.8rem;
  margin-bottom: 32px;
}

.rechtliches h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.rechtliches h3 {
  font-size: 1.1rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.rechtliches p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.rechts-liste {
  margin: 24px 0;
}

.rechts-liste dt {
  font-weight: 600;
  color: var(--bordeaux);
  margin-top: 16px;
}

.rechts-liste dd {
  margin-left: 0;
  margin-top: 4px;
  line-height: 1.6;
}

.rechtliches ul {
  margin: 0 0 16px 20px;
  line-height: 1.7;
}

.rechtliches ul li {
  margin-bottom: 6px;
}

.rechtliches a {
  color: var(--bordeaux);
}

.rechts-stand {
  margin-top: 48px;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
