/* =========================================================
   Voigt-Makler — Redesign
   Warm & menschlich · Navy + Gelb · weiche Cards
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  /* ── Colors ── */
  --bg:         #FBF7EE;   /* warm cream */
  --bg-2:       #F4ECDA;   /* darker cream */
  --bg-card:    #FFFFFF;
  --ink:        #0E1F3C;   /* deep navy */
  --ink-2:      #1B3666;
  --ink-soft:   #56668A;
  --ink-mute:   #8694B0;
  --line:       #E9DFC8;
  --line-soft:  #F0E8D2;

  --accent:     #FFC83D;   /* brand yellow */
  --accent-2:   #F5B210;
  --accent-soft:#FFE9A6;

  /* card tints */
  --tint-cream:    #FBF1D8;
  --tint-mint:     #DCEDDD;
  --tint-peach:    #FBDFC9;
  --tint-sky:      #D8E6F4;
  --tint-lavender: #E6DBF0;
  --tint-sand:     #F1E4C6;

  /* ── Type ── */
  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-sans:    "Manrope", system-ui, -apple-system, sans-serif;

  /* ── Radius ── */
  --r-xs: 10px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-full: 999px;

  /* ── Shadow ── */
  --shadow-sm: 0 1px 2px rgba(14,31,60,.04), 0 2px 8px rgba(14,31,60,.04);
  --shadow-md: 0 4px 12px rgba(14,31,60,.06), 0 12px 28px rgba(14,31,60,.06);
  --shadow-lg: 0 12px 40px rgba(14,31,60,.10);

  /* ── Layout ── */
  --container: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ── Typography ── */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.display em, .display i { font-style: italic; color: var(--ink-2); }

h1, h2, h3, h4 { margin: 0; }
h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(48px, 6vw, 96px); line-height: 1.0; letter-spacing: -0.02em; }
h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 4.4vw, 64px); line-height: 1.05; letter-spacing: -0.015em; }
h3 { font-family: var(--font-sans); font-weight: 700; font-size: clamp(20px, 1.6vw, 24px); line-height: 1.25; letter-spacing: -0.005em; }
h4 { font-family: var(--font-sans); font-weight: 700; font-size: 17px; }

p { margin: 0; color: var(--ink-soft); }
.lede { font-size: 19px; line-height: 1.55; color: var(--ink-soft); max-width: 60ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-2);
  background: var(--accent-soft);
  padding: 7px 14px; border-radius: var(--r-full);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2);
}

/* highlight pill — yellow box around inline words like the reference */
.hl {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  padding: 0.02em 0.28em 0.08em;
  border-radius: 10px;
  font-style: normal;
}
.hl--navy { background: var(--ink); color: var(--bg); }
.hl--mint { background: var(--tint-mint); color: var(--ink); }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(64px, 8vw, 120px) 0; }
.section--tight { padding: clamp(40px, 5vw, 72px) 0; }
.divider { height: 1px; background: var(--line); margin: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-full);
  font-weight: 600; font-size: 15px;
  white-space: nowrap;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .arrow {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.btn:hover .arrow { transform: translate(2px, -2px); }

.btn--primary  { background: var(--ink); color: var(--bg); }
.btn--primary:hover  { background: var(--ink-2); }
.btn--accent   { background: var(--accent); color: var(--ink); }
.btn--accent:hover   { background: var(--accent-2); }
.btn--ghost    { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--ghost:hover    { background: var(--ink); color: var(--bg); }
.btn--light    { background: var(--bg-card); color: var(--ink); border: 1.5px solid var(--line); }
.btn--light:hover    { border-color: var(--ink); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 18px 28px; font-size: 16px; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 238, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; letter-spacing: -0.01em; font-size: 18px;
}
.nav__brand-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--ink); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; line-height: 1;
  padding-bottom: 3px;
}
.nav__brand small { display: block; font-weight: 500; font-size: 11px; color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; line-height: 1; margin-top: 2px; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 9px 14px;
  border-radius: var(--r-full);
  font-size: 14.5px; font-weight: 500; color: var(--ink);
  transition: background .15s ease;
  position: relative;
}
.nav__link:hover, .nav__link.is-active { background: rgba(14,31,60,0.06); }
.nav__link.is-active { font-weight: 600; }
.nav__cta { display: flex; align-items: center; gap: 10px; }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: var(--r-full);
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  align-items: center; justify-content: center;
}
.nav__burger span {
  display: block; width: 16px; height: 1.8px; background: var(--ink);
  position: relative;
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1.8px; background: var(--ink);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after  { top: 6px; }

/* ── Hero ── */
.hero {
  padding: clamp(40px, 5vw, 80px) 0 clamp(60px, 6vw, 100px);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__title { margin-top: 22px; font-size: clamp(34px, 4vw, 58px); }
.hero__title .hl { transform: rotate(-1.5deg); margin: 0 4px; }
.hero__title .hl--mint { transform: rotate(1deg); }
.hero__lede { margin-top: 28px; }
.hero__cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero__meta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line);
}
.hero__meta-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--ink-soft); font-weight: 500;
}
.hero__meta-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

.hero__visual {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto;
  gap: 16px;
}
.hero__visual .visual {
  background: var(--bg-2); border-radius: var(--r-lg);
  position: relative; overflow: hidden;
  min-height: 200px;
}
.hero__visual .visual--main {
  grid-column: 1 / -1; min-height: 400px;
  background: linear-gradient(135deg, var(--tint-peach) 0%, var(--tint-cream) 100%);
}
.hero__visual .visual--a { background: linear-gradient(160deg, var(--tint-mint), #F2EAD3); min-height: 200px; }
.hero__visual .visual--b { background: linear-gradient(160deg, var(--tint-sky), var(--tint-lavender)); min-height: 200px; }
/* Bildausschnitt der Hero-Fotos: Gesichter/obere Körperhälfte priorisieren, damit Personen nicht unten abgeschnitten werden und die Info-Kärtchen frei bleiben */
.hero__visual .visual--main .media-img { object-position: center 28%; }
.hero__visual .visual--a .media-img,
.hero__visual .visual--b .media-img { object-position: center 22%; }

/* float card */
.float-card {
  position: absolute;
  background: var(--bg-card);
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600;
}
.float-card .stars { color: var(--accent-2); font-size: 14px; letter-spacing: 1px; }
.float-card small { display: block; font-weight: 500; font-size: 11.5px; color: var(--ink-soft); }
.float-card--tr { top: 14px; right: 14px; }
.float-card--bl { bottom: 14px; left: 14px; }

.float-badge {
  position: absolute;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-full);
  padding: 8px 16px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
}

/* image placeholder */
.placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px; color: var(--ink-soft);
  text-align: center;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0 14px,
      rgba(14,31,60,0.04) 14px 15px
    );
  padding: 16px;
}
.placeholder span {
  background: rgba(255,255,255,0.7);
  padding: 4px 10px; border-radius: 6px;
  border: 1px solid rgba(14,31,60,0.08);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Section heading pattern ── */
.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.section-head.section-head--left { text-align: left; margin-left: 0; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }

/* ── Support pillars (Beratung / Tarifvergleich / Service / Betreuung) ── */
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.pillar {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.pillar__num {
  font-family: var(--font-display);
  font-size: 28px; line-height: 1;
  color: var(--accent-2);
}
.pillar__num svg { display: block; }
.pillar h3 { margin: 20px 0 10px; }
.pillar p  { font-size: 14.5px; line-height: 1.55; }

/* ── Vorsorge-Check Quiz ── */
.quiz {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.quiz::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.18; border-radius: 50%;
}
.quiz__grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center;
  position: relative;
}
.quiz__intro h2 { color: var(--bg); margin-bottom: 18px; }
.quiz__intro h2 em { color: var(--accent); font-style: italic; }
.quiz__intro p { color: rgba(251,247,238,0.7); }
.quiz__progress { display: flex; gap: 6px; margin-top: 28px; }
.quiz__progress span {
  flex: 1; height: 4px; background: rgba(255,255,255,0.12); border-radius: 2px;
}
.quiz__progress span.is-done { background: var(--accent); }

.quiz__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.quiz__step { display: none; }
.quiz__step.is-active { display: block; }
.quiz__step-meta {
  font-size: 13px; font-weight: 500; color: rgba(251,247,238,0.6);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.quiz__step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  color: var(--bg);
  margin-bottom: 20px;
  line-height: 1.15;
}
.quiz__options { display: grid; gap: 10px; }
.quiz__option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  font-weight: 500; font-size: 15px; color: var(--bg);
  text-align: left;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.quiz__option:hover { background: rgba(255,255,255,0.10); border-color: var(--accent); }
.quiz__option.is-selected { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.quiz__option-arrow { width: 16px; height: 16px; opacity: 0.4; }
.quiz__option.is-selected .quiz__option-arrow { opacity: 1; }

.quiz__nav { display: flex; justify-content: space-between; margin-top: 24px; align-items: center; }
.quiz__back {
  font-size: 14px; font-weight: 500;
  color: rgba(251,247,238,0.6);
  display: inline-flex; align-items: center; gap: 6px;
}
.quiz__back:hover { color: var(--accent); }
.quiz__back[disabled] { opacity: 0.3; pointer-events: none; }

.quiz__result { display: none; text-align: center; padding: 8px 0; }
.quiz__result.is-active { display: block; }
.quiz__result-emoji { font-size: 40px; margin-bottom: 12px; }
.quiz__result h3 { font-family: var(--font-display); font-size: 32px; margin-bottom: 12px; }
.quiz__result p { color: rgba(251,247,238,0.75); margin-bottom: 24px; }

/* ── Compare table (Heilfürsorge vs PKV) ── */
.compare {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.compare__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
}
.compare__head {
  display: contents;
}
.compare__cell {
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
  min-height: 64px;
  min-width: 0; overflow-wrap: anywhere; hyphens: auto;
}
.compare__cell--label {
  color: var(--ink);
  font-weight: 600;
  background: var(--bg);
}
.compare__cell--head {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  background: var(--bg);
  min-height: 88px;
}
.compare__cell--head.compare__cell--feature {
  background: var(--accent);
}
.compare__row:last-child .compare__cell { border-bottom: 0; }

.check, .cross, .partial {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check { background: var(--tint-mint); color: #1F6B3F; }
.cross { background: var(--tint-peach); color: #9B3A1A; }
.partial { background: var(--accent-soft); color: var(--ink-2); }

/* ── Services grid ── */
.services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-card {
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  min-height: 320px;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card--cream { background: var(--tint-cream); }
.service-card--mint { background: var(--tint-mint); }
.service-card--peach { background: var(--tint-peach); }
.service-card--sky { background: var(--tint-sky); }
.service-card--lavender { background: var(--tint-lavender); }
.service-card--sand { background: var(--tint-sand); }
.service-card--ink { background: var(--ink); color: var(--bg); }
.service-card--ink p { color: rgba(251,247,238,0.7); }

.service-card__tag {
  align-self: flex-start;
  background: rgba(14,31,60,0.08);
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: var(--r-full);
  color: var(--ink);
  margin-bottom: auto;
}
.service-card--ink .service-card__tag { background: rgba(255,255,255,0.12); color: var(--accent); }
.service-card h3 { margin-top: 90px; font-family: var(--font-display); font-weight: 400; font-size: 28px; line-height: 1.1; letter-spacing: -0.01em; }
.service-card p { margin-top: 12px; font-size: 14px; line-height: 1.5; }
.service-card__link {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  align-self: flex-start;
}
.service-card__link::after { content: "→"; transition: transform .2s ease; }
.service-card:hover .service-card__link::after { transform: translateX(4px); }

/* ── For-whom list ── */
.audience {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.audience__item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.audience__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--tint-cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; color: var(--ink);
}
.audience__item p { color: var(--ink); font-weight: 600; font-size: 15.5px; line-height: 1.3; }

/* ── Promise list ── */
.promise-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.promise {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.promise__num {
  font-family: var(--font-display);
  font-size: 24px; color: var(--accent-2);
  min-width: 36px;
}
.promise h4 { font-size: 16px; margin-bottom: 4px; }
.promise p { font-size: 13.5px; color: var(--ink-soft); }

/* ── FAQ ── */
.faq { display: grid; gap: 10px; }
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq__item.is-open { border-color: var(--ink); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  font-size: 16.5px; font-weight: 600;
  text-align: left;
  gap: 16px;
}
.faq__icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%; background: var(--accent-soft);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: transform .25s ease, background .2s ease;
}
.faq__item.is-open .faq__icon { background: var(--accent); transform: rotate(45deg); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
  font-size: 15px; color: var(--ink-soft); line-height: 1.6;
}
.faq__a-inner { padding: 0 24px 24px; max-width: 64ch; }

/* ── Contact CTA ── */
.contact-cta {
  background: var(--accent);
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.contact-cta__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end; }
.contact-cta h2 { color: var(--ink); }
.contact-cta__sub { color: var(--ink); opacity: 0.7; margin-top: 16px; }
.contact-cta__buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }

.contact-cta__list { display: grid; gap: 16px; }
.contact-cta__list a {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  background: rgba(14,31,60,0.08);
  border-radius: var(--r-md);
  font-weight: 600; font-size: 15px;
  color: var(--ink);
}
.contact-cta__list a:hover { background: var(--ink); color: var(--accent); }
.contact-cta__list .ic {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--ink); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-cta__list a:hover .ic { background: var(--accent); color: var(--ink); }
.contact-cta__list small { display: block; font-size: 12px; font-weight: 500; opacity: 0.7; }

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}
.site-footer h4 { color: var(--accent); margin-bottom: 18px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand p { color: rgba(251,247,238,0.6); margin-top: 16px; font-size: 14px; max-width: 28ch; }
.footer__list { display: grid; gap: 10px; }
.footer__list a { color: rgba(251,247,238,0.75); font-size: 14.5px; }
.footer__list a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(251,247,238,0.55);
}
.footer__bottom a:hover { color: var(--accent); }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ── Sticky booking CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 20px 14px 16px;
  border-radius: var(--r-full);
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 40;
  transform: translateY(80px); opacity: 0;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), opacity .35s ease;
}
.sticky-cta.is-visible { transform: translateY(0); opacity: 1; }
.sticky-cta:hover { background: var(--accent); color: var(--ink); }
.sticky-cta .pulse {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  position: relative;
}
.sticky-cta:hover .pulse { background: var(--ink); color: var(--accent); }
.sticky-cta .pulse::before {
  content: ""; position: absolute; inset: -3px;
  border-radius: 50%; border: 2px solid var(--accent); opacity: 0.5;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── Page hero variant ── */
.page-hero {
  padding: clamp(60px, 7vw, 100px) 0 clamp(40px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
}
.page-hero__crumbs {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-soft); margin-bottom: 18px;
}
.page-hero__crumbs a:hover { color: var(--ink); }
.page-hero h1 { font-size: clamp(48px, 5.5vw, 84px); margin-bottom: 24px; max-width: 18ch; }
.page-hero p { font-size: 18px; max-width: 56ch; }

/* ── About specific ── */
.about-portrait {
  background: linear-gradient(135deg, var(--tint-peach), var(--tint-cream));
  border-radius: var(--r-xl);
  aspect-ratio: 4/5;
  position: relative; overflow: hidden;
}
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
}
.team-card__photo {
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  background: var(--tint-mint);
  margin-bottom: 16px;
  position: relative; overflow: hidden;
}
/* Bilder, die ihren Slot per cover füllen */
.media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card__photo .media-img { object-position: center top; }
/* Team-Foto vollständig sichtbar (natürliches Hochformat, kein Beschnitt) */
.team-photo { width: 100%; height: auto; display: block; border-radius: var(--r-md); margin-bottom: 16px; }
.team-card h3 { font-size: 19px; }
.team-card .role { color: var(--ink-soft); font-size: 14px; margin-top: 4px; }

/* ── Blog-Artikel (Prosa) ── */
.post__wrap { max-width: 760px; margin: 0 auto; }
/* Ratgeber-Artikel: angenehm breite Lesespalte */
.post--wide .post__wrap { max-width: 820px; }
/* Artikel-Hero: zweispaltig (Text + Bild) — füllt die Breite, kein Leerraum */
.post-hero { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; margin-top: 8px; }
.post-hero h1 { margin-top: 16px; }
.post-hero__media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-md); }
.post-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 820px) {
  .post-hero { grid-template-columns: 1fr; gap: 26px; }
  .post-hero__media { order: 2; aspect-ratio: 16/9; }
}
.post__lead { font-size: 20px; line-height: 1.6; color: var(--ink); margin: 0 0 30px; }
.post__body { font-size: 17px; line-height: 1.72; color: var(--ink-soft); }
.post__body > p { margin: 0 0 22px; }
.post__body h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px,3vw,34px); line-height: 1.15; letter-spacing: -0.01em; color: var(--ink); margin: 46px 0 16px; }
.post__body h3 { font-family: var(--font-sans); font-weight: 700; font-size: 20px; color: var(--ink); margin: 30px 0 10px; }
.post__body ul, .post__body ol { margin: 0 0 22px; padding-left: 22px; }
.post__body li { margin: 0 0 9px; }
.post__body strong { color: var(--ink); }
.post__body a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 2px; }
.post__body blockquote { margin: 30px 0; padding: 6px 0 6px 24px; border-left: 3px solid var(--accent); font-family: var(--font-display); font-size: 23px; line-height: 1.4; color: var(--ink); font-style: italic; }
.post__faq { margin-top: 52px; }
.post__faq details { border-top: 1px solid var(--line); padding: 18px 0; }
.post__faq details:last-child { border-bottom: 1px solid var(--line); }
.post__faq summary { font-weight: 700; color: var(--ink); cursor: pointer; list-style: none; font-size: 17px; }
.post__faq summary::-webkit-details-marker { display: none; }
.post__faq summary::after { content: "+"; float: right; color: var(--accent-2); font-size: 22px; line-height: 1; }
.post__faq details[open] summary::after { content: "–"; }
.post__faq details p { margin: 12px 0 0; color: var(--ink-soft); line-height: 1.65; }
.post__cta { margin-top: 52px; background: var(--bg-2); border-radius: var(--r-lg); padding: clamp(28px,4vw,40px); text-align: center; }

/* ── Cookie-Consent (Design nach how2finance, in Markenfarben) ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 120; background: linear-gradient(180deg,#16294d,#0E1F3C); border-top: 1px solid rgba(251,247,238,.12); padding: 22px 0; box-shadow: 0 -12px 50px -10px rgba(14,31,60,.5); transform: translateY(100%); opacity: 0; transition: transform .42s cubic-bezier(.2,.85,.4,1.1), opacity .25s ease; pointer-events: none; }
.cookie-banner::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent 12%,rgba(255,200,61,.6) 50%,transparent 88%); }
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner-inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(22px,3.4vw,40px); display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.cookie-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: .16em; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.cookie-eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--accent); }
.cookie-banner-text h3 { margin: 0 0 5px; font-family: var(--font-display); font-weight: 400; font-size: 22px; letter-spacing: -0.01em; color: var(--bg); }
.cookie-banner-text p { margin: 0; color: rgba(251,247,238,.72); font-size: 13.5px; line-height: 1.55; max-width: 74ch; }
.cookie-banner-text p a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: flex-end; }
.ckbtn { font-family: inherit; font-weight: 600; font-size: 13.5px; line-height: 1; padding: 12px 20px; border-radius: var(--r-full); cursor: pointer; border: 1px solid transparent; transition: transform .15s ease, background .2s, border-color .2s, color .2s; white-space: nowrap; }
.ckbtn--primary { background: var(--accent); color: var(--ink); }
.ckbtn--primary:hover { transform: translateY(-1px); background: var(--accent-2); }
.ckbtn--ghost { background: transparent; border-color: rgba(251,247,238,.28); color: var(--bg); }
.ckbtn--ghost:hover { border-color: rgba(251,247,238,.6); background: rgba(251,247,238,.06); }
.cklink { background: none; border: 0; color: rgba(251,247,238,.7); font-family: inherit; font-size: 13px; font-weight: 500; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; padding: 10px 6px; }
.cklink:hover { color: var(--bg); }
/* Schwebender Wieder-Öffnen-Button */
.cookie-fab { position: fixed; bottom: 24px; left: 24px; z-index: 115; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(180deg,#16294d,#0E1F3C); border: 1px solid rgba(251,247,238,.18); color: var(--accent); display: grid; place-items: center; cursor: pointer; box-shadow: 0 10px 28px -10px rgba(14,31,60,.6); transition: transform .2s, border-color .2s, color .2s; padding: 0; }
.cookie-fab:hover { transform: translateY(-2px); border-color: rgba(255,200,61,.5); color: var(--accent-2); }
.cookie-fab svg { width: 22px; height: 22px; }
.cookie-fab[hidden] { display: none; }
/* Settings-Modal */
.cookie-modal { position: fixed; inset: 0; z-index: 130; display: flex; align-items: center; justify-content: center; padding: 24px; visibility: hidden; pointer-events: none; transition: visibility 0s linear .22s; }
.cookie-modal.is-open { visibility: visible; pointer-events: auto; transition: visibility 0s linear 0s; }
.cookie-modal-backdrop { position: absolute; inset: 0; background: rgba(14,31,60,.55); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); opacity: 0; transition: opacity .2s ease; }
.cookie-modal.is-open .cookie-modal-backdrop { opacity: 1; }
.cookie-modal-card { position: relative; max-width: 560px; width: 100%; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 38px; box-shadow: var(--shadow-lg); opacity: 0; transform: scale(.97) translateY(8px); transition: opacity .22s ease, transform .28s cubic-bezier(.2,.85,.4,1.1); max-height: calc(100vh - 48px); overflow-y: auto; }
.cookie-modal.is-open .cookie-modal-card { opacity: 1; transform: scale(1) translateY(0); }
.cookie-modal-close { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink-soft); font-size: 13px; display: grid; place-items: center; cursor: pointer; transition: background .2s, color .2s; z-index: 2; font-family: inherit; }
.cookie-modal-close:hover { background: var(--accent); color: var(--ink); }
.cookie-modal h2 { margin: 0 0 8px; font-family: var(--font-display); font-weight: 400; font-size: clamp(24px,2.8vw,30px); letter-spacing: -0.01em; color: var(--ink); }
.cookie-modal h2 .accent { font-style: italic; color: var(--ink-2); }
.cookie-modal-intro { margin: 0 0 22px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; max-width: 48ch; }
.cookie-cats { display: grid; gap: 10px; margin-bottom: 22px; }
.cookie-cat { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--bg-2); transition: border-color .2s; }
.cookie-cat-title { font-weight: 700; font-size: 15px; color: var(--ink); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cookie-cat-badge { font-size: 10px; padding: 3px 8px; border-radius: 999px; background: var(--accent-soft); border: 1px solid var(--accent); color: var(--ink); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; line-height: 1; }
.cookie-cat-desc { margin-top: 6px; color: var(--ink-soft); font-size: 13px; line-height: 1.5; max-width: 44ch; }
.cookie-toggle { position: relative; width: 46px; height: 26px; background: var(--line); border: 1px solid var(--line); border-radius: 999px; cursor: pointer; transition: background .25s, border-color .2s, opacity .2s; flex: 0 0 auto; padding: 0; }
.cookie-toggle::after { content: ""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(14,31,60,.25); transition: transform .25s cubic-bezier(.4,0,.2,1); }
.cookie-toggle[aria-checked="true"] { background: var(--accent); border-color: var(--accent-2); }
.cookie-toggle[aria-checked="true"]::after { transform: translateX(20px); }
.cookie-toggle[aria-disabled="true"] { cursor: not-allowed; opacity: .6; }
.cookie-modal-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; padding-top: 20px; border-top: 1px solid var(--line); }
.cookie-modal-actions .ckbtn { flex: 1; min-width: 150px; text-align: center; }
.cookie-modal-actions .ckbtn--ghost { color: var(--ink); border-color: var(--line); }
.cookie-modal-actions .ckbtn--ghost:hover { border-color: var(--ink-mute); background: var(--bg-2); }
@media (max-width: 820px) {
  .cookie-banner-inner { grid-template-columns: 1fr; gap: 16px; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .ckbtn { flex: 1; text-align: center; }
}
@media (max-width: 600px) {
  .cookie-fab { left: 14px; bottom: 14px; }
  .cookie-modal-card { padding: 28px 22px; }
}

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stat {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.stat__num { font-family: var(--font-display); font-size: 56px; line-height: 1; color: var(--ink); }
.stat__num em { color: var(--accent-2); font-style: italic; }
.stat__label { font-size: 14px; color: var(--ink-soft); margin-top: 10px; max-width: 22ch; }

/* ── Contact form ── */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3vw, 48px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; font-size: 15px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--ink);
  transition: border-color .15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink-soft); margin: 16px 0 20px; }
.form-checkbox input { margin-top: 3px; }

.contact-info {
  display: grid; gap: 14px;
}
.contact-info__item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-info__icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--accent-soft); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-info__label { font-size: 12px; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-info__value { font-weight: 600; font-size: 15px; }
.contact-info__value a:hover { color: var(--accent-2); }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card__img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--tint-cream), var(--tint-peach));
  position: relative; overflow: hidden;
}
.blog-card--alt .blog-card__img { background: linear-gradient(135deg, var(--tint-mint), var(--tint-sky)); }
.blog-card--c .blog-card__img { background: linear-gradient(135deg, var(--tint-lavender), var(--tint-cream)); }
.blog-card--d .blog-card__img { background: linear-gradient(135deg, var(--tint-sand), var(--tint-peach)); }
.blog-card--e .blog-card__img { background: linear-gradient(135deg, var(--tint-sky), var(--tint-mint)); }
.blog-card--f .blog-card__img { background: linear-gradient(135deg, var(--tint-peach), var(--tint-lavender)); }
.blog-card__body { padding: 24px; }
.blog-card__cat {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--accent-2); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.blog-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 22px; line-height: 1.15; letter-spacing: -0.005em; margin-bottom: 10px; }
.blog-card p { font-size: 14px; }
.blog-card__meta { display: flex; align-items: center; gap: 14px; margin-top: 18px; font-size: 13px; color: var(--ink-soft); }

.blog-card--featured {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1.2fr 1fr;
}
.blog-card--featured .blog-card__img { aspect-ratio: auto; min-height: 380px; }
.blog-card--featured .blog-card__body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.blog-card--featured h3 { font-size: clamp(28px, 3vw, 40px); }
.blog-card--featured p { font-size: 16px; }

/* ── Mobile ── */
@media (max-width: 960px) {
  .nav__menu { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__cta .btn--ghost { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: repeat(2, 1fr); }
  .audience { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: 1fr; }
  .quiz__grid { grid-template-columns: 1fr; gap: 32px; }
  .compare__grid { grid-template-columns: 1.2fr 1fr 1fr; font-size: 13px; }
  .compare__cell { padding: 16px 14px; font-size: 13px; }
  .compare__cell--head { font-size: 18px; min-height: 64px; }
  .contact-cta__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card--featured { grid-template-columns: 1fr; }
  .blog-card--featured .blog-card__body { padding: 28px; }
  .blog-card--featured .blog-card__img { min-height: 240px; }
  .form-row { grid-template-columns: 1fr; }
  .float-card--tr { right: 12px; }
  .float-card--bl { left: 12px; bottom: 12px; }
  .sticky-cta { bottom: 16px; right: 16px; padding: 12px 16px 12px 12px; font-size: 13px; }
  .sticky-cta .pulse { width: 26px; height: 26px; }
}

@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__visual { grid-template-columns: 1fr; }
  .hero__visual .visual--main { min-height: 220px; }
  .hero__visual .visual--a, .hero__visual .visual--b { min-height: 140px; }
  .nav__brand small { display: none; }
}

/* mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 60;
  padding: 90px 24px 24px;
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 32px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav a::after { content: "→"; color: var(--ink-soft); font-family: var(--font-sans); font-size: 22px; }
.mobile-nav__close {
  position: absolute; top: 22px; right: 24px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.mobile-nav__cta { margin-top: 24px; }

/* ── Mobile: Overflow-Schutz, Inline-Grids stapeln, Reihenfolge & Buttons ── */
/* Sicherheitsnetz: nichts darf horizontal über den Viewport hinausragen */
html, body { overflow-x: hidden; }
@media (max-width: 700px) {
  /* Inline-Grids (Hero, Story, Testimonial, Kontaktformular …) auf kleinen Screens
     stapeln — Inline-Styles würden Media Queries sonst überstimmen */
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  /* Bild/Text-Sektionen: Inhalt (Text) zuerst, Bild danach — z. B. Story „Über uns" */
  .about-portrait { order: 2; }
}
@media (max-width: 600px) {
  /* Buttons über die volle Breite (links bis rechts), nicht linksbündig */
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .btn--lg { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  /* Vergleichstabelle kompakter, damit 3 Spalten sauber passen */
  .compare__cell { padding: 12px 10px; font-size: 12px; min-height: 0; }
  .compare__cell--head { font-size: 14px; min-height: 0; padding: 12px 10px; }
}

/* ── Footer-Credit „Made with Love by Tobias Nase" (Format wie how2finance) ── */
.love-wrap { position: relative; display: inline-block; color: var(--accent); }
.love-hearts { position: absolute; left: 50%; bottom: 100%; width: 60px; height: 70px; transform: translateX(-50%); pointer-events: none; overflow: visible; }
.love-hearts .heart { position: absolute; left: 50%; bottom: 0; width: 10px; height: 10px; color: var(--accent); opacity: 0; animation: heartFloat 3.2s ease-out infinite; transform-origin: center; }
.love-hearts .heart svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 0 4px rgba(255,200,61,.55)); }
.love-hearts .heart:nth-child(1) { animation-delay: 0s; --xdrift: -14px; --rot: -25deg; }
.love-hearts .heart:nth-child(2) { animation-delay: .65s; --xdrift: 10px; --rot: 18deg; width: 7px; height: 7px; }
.love-hearts .heart:nth-child(3) { animation-delay: 1.3s; --xdrift: -6px; --rot: -10deg; width: 12px; height: 12px; }
.love-hearts .heart:nth-child(4) { animation-delay: 1.95s; --xdrift: 16px; --rot: 28deg; width: 8px; height: 8px; }
.love-hearts .heart:nth-child(5) { animation-delay: 2.6s; --xdrift: -12px; --rot: -20deg; width: 9px; height: 9px; }
@keyframes heartFloat {
  0% { opacity: 0; transform: translate(-50%,0) scale(.4) rotate(0deg); }
  20% { opacity: 1; transform: translate(calc(-50% + var(--xdrift,0) * .2),-14px) scale(1) rotate(calc(var(--rot,0deg) * .3)); }
  55% { opacity: .7; transform: translate(calc(-50% + var(--xdrift,0) * .6),-42px) scale(.95) rotate(calc(var(--rot,0deg) * .65)); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--xdrift,0)),-78px) scale(.4) rotate(var(--rot,0deg)); }
}
@media (prefers-reduced-motion: reduce) { .love-hearts { display: none; } }
.love-credit { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(251,247,238,.25); transition: color .2s, text-decoration-color .2s; }
.love-credit:hover { color: var(--accent); text-decoration-color: var(--accent); }
