:root {
  --accent: #FF2A2A;
  --page-bg: #FFDBDC;
  --font-head: 'DM Serif Display', Georgia, serif;
  --font-body: 'Mulish', system-ui, sans-serif;
  --text: #353535;
  --text-soft: #6a5f5f;
  --text-body: #4a4444;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--page-bg);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-body);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

button { font: inherit; }

/* ---------- Layout ---------- */
.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 64px);
}

.layout {
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}

/* ---------- Intro / Titel mit Herz im Hintergrund ---------- */
.intro {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
}

.intro__heart {
  position: absolute;
  top: 50%;
  left: -6%;
  transform: translateY(-50%) rotate(180deg);
  width: clamp(280px, 32vw, 480px);
  aspect-ratio: 1 / 0.94;
  background: url("assets/herz.png") center / contain no-repeat;
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}

.intro > :not(.intro__heart) {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--accent);
  margin: 0;
  line-height: 1.1;
}

.title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin: 0;
  color: var(--text);
}

.lead {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--text-soft);
  margin: 6px 0 0;
  max-width: 440px;
}

/* ---------- Accordion ---------- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 34px -22px rgba(214, 55, 55, 0.5);
  overflow: hidden;
}

.item__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: clamp(19px, 1.9vw, 23px);
  color: var(--text);
}

.item__icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.item__body {
  display: none;
  padding: 0 22px 20px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-body);
  max-height: 40vh;
  overflow: auto;
}

.item.is-open .item__body {
  display: block;
}

.item__body p { margin: 0 0 10px; }
.item__body p:last-child { margin-bottom: 0; }

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.checklist li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.checklist .bullet {
  color: var(--accent);
  font-size: 18px;
  line-height: 1.3;
}

.steps {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Downloads */
.downloads {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.download {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 13px;
  background: #FFF1F1;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s ease;
}

.download:hover { background: #FFE3E3; }

.download__tag {
  flex: none;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  background: var(--accent);
  padding: 5px 8px;
  border-radius: 7px;
}

.download__name { flex: 1; font-weight: 600; }
.download__arrow { color: var(--accent); font-size: 18px; }

.hint {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--text-soft);
}

a.link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.contact-name { margin: 0 0 2px; font-weight: 700; }
.contact-line { margin: 0 0 2px; }
.contact-line--last { margin: 0 0 14px; }

.btn-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: filter 0.15s ease;
}

.btn-mail:hover { filter: brightness(1.06); }

/* ---------- Responsive / Mobile ---------- */
@media (max-width: 880px) {
  .layout {
    grid-template-columns: 1fr;
    gap: clamp(24px, 6vw, 40px);
  }

  .page {
    align-items: stretch;
    padding: clamp(20px, 6vw, 40px) clamp(16px, 5vw, 32px);
  }

  .intro {
    align-items: center;
    text-align: center;
    padding-top: 24px;
  }

  .intro__heart {
    left: 50%;
    top: 0;
    transform: translate(-50%, -18%) rotate(180deg);
    width: clamp(200px, 60vw, 320px);
    opacity: 0.22;
  }

  .lead { margin-left: auto; margin-right: auto; }

  .item__body { max-height: none; }
}

@media (max-width: 480px) {
  .item__head { padding: 15px 18px; }
  .item__body { padding: 0 18px 18px; }
}
