/* ============================================================
   LIFE IN LOVE — Design-System & Styles
   Farben & Typografie exakt aus der Vorlage life-in.love
   ============================================================ */

:root {
  /* Farben */
  --wine:        #4E132A;  /* Primär (Flächen + Text) */
  --wine-light:  #751D3F;  /* helleres Wein (Akzente) */
  --wine-dark:   #3E031D;  /* dunkles Wein (Footer) */
  --wine-darker: #30000F;
  --cream:       #F6F5EE;  /* heller Sektions-Hintergrund */
  --beige:       #E4E1CB;  /* Icon-Kacheln */
  --rose:        #E2BEBC;  /* Pill-Badge / Tarif-Button */
  --white:       #FFFFFF;

  --text-dark:   #4E132A;  /* Text auf hell */
  --text-light:  #F6F5EE;  /* Text auf dunkel */

  /* Schriften */
  --serif: 'Frank Ruhl Libre', Georgia, 'Times New Roman', serif;
  --sans:  'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;

  /* Layout */
  --container: 1250px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --header-h: 84px;
}

/* -------------------- Reset / Basis -------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip; /* Sicherung gegen horizontales Überlaufen (ohne Sticky-Nebeneffekt) */
}
p, li, a, span { overflow-wrap: break-word; }
.pcard, .rcard, .tcard, .wenn-item, .faq-item, .checkout-panel, .summary-card, .wenn-text, .faq-q { min-width: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* -------------------- Typografie -------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.1;
  overflow-wrap: break-word;
  -webkit-hyphens: manual;
  hyphens: manual;          /* keine automatische Silbentrennung (kein „PRO-GRAMM") */
  text-wrap: balance;       /* Wörter als Ganzes auf die nächste Zeile umbrechen */
}
.hero__title { text-wrap: balance; } /* Hero bricht nur am <br> */
.section-title {
  font-size: clamp(33px, 4.6vw, 52px);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.12;
}
.section-intro {
  max-width: 1020px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 19px;
  line-height: 1.55;
}

/* -------------------- Layout-Helfer -------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--wine  { background: var(--wine);  color: var(--text-light); }
.section--cream { background: var(--cream);  color: var(--text-dark); }
.section--wine .section-title { color: var(--white); }
.section--cream .section-title { color: var(--wine); }
.text-center { text-align: center; }

/* -------------------- Buttons — „Quiet Luxe" (E) -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .2px;
  text-transform: none;
  padding: 16px 34px;
  border: 2px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: transform .18s ease, background .25s ease, color .2s ease, box-shadow .25s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); transition-duration: .08s; }

/* Gefüllte CTAs bekommen einen zurückhaltenden Akzent-Punkt vorweg */
.btn--primary::before,
.btn--wine::before,
.btn--rose::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose); flex: none; transition: transform .25s ease;
}
.btn--rose::before { background: var(--wine); }
.btn--primary:hover::before,
.btn--wine:hover::before,
.btn--rose:hover::before { transform: scale(1.6); }

.btn--primary { background: var(--wine); color: var(--white); box-shadow: 0 6px 18px rgba(48,0,15,.22); }
.btn--primary:hover { background: var(--wine-light); box-shadow: 0 12px 26px rgba(48,0,15,.28); }
.btn--cream   { background: var(--white); color: var(--wine); box-shadow: 0 4px 16px rgba(48,0,15,.12); }
.btn--cream:hover { box-shadow: 0 10px 24px rgba(48,0,15,.18); }
.btn--wine    { background: var(--wine-light); color: var(--white); box-shadow: 0 6px 18px rgba(48,0,15,.22); }
.btn--wine:hover { background: var(--wine); box-shadow: 0 12px 26px rgba(48,0,15,.28); }
.btn--rose    { background: var(--rose); color: var(--wine); width: 100%; }
.btn--rose:hover { filter: brightness(.97); }
.btn--outline { background: transparent; color: var(--wine); border-color: rgba(78,19,42,.3); }
.btn--outline:hover { border-color: var(--wine); background: rgba(78,19,42,.04); }
.btn--block   { width: 100%; }
.btn-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(78, 19, 42, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: block; }
.logo img { height: 52px; width: auto; border-radius: 8px; }
.main-nav ul { display: flex; gap: 34px; align-items: center; }
.main-nav a {
  font-family: var(--sans); font-size: 15px; font-weight: 400;
  color: var(--white); letter-spacing: .3px; transition: opacity .2s;
}
.main-nav a:hover { opacity: .75; }
.nav-toggle:hover { background: var(--wine-light); }
.nav-toggle:active { transform: scale(.94); }
.nav-toggle {
  display: none;
  width: 52px; height: 52px; border: none; border-radius: 10px;  background: var(--wine); color: var(--white); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  /* Richtung ist über ALLE Breakpoints gleich (horizontal, links dunkel) + dezente Boden-Kante */
  background:
    linear-gradient(90deg, rgba(78,19,42,.9) 0%, rgba(78,19,42,.6) 34%, rgba(78,19,42,.2) 60%, rgba(78,19,42,0) 84%),
    linear-gradient(180deg, transparent 60%, rgba(78,19,42,.5) 100%);
}
.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 3; line-height: 0; pointer-events: none; }
.hero__wave svg { display: block; width: 100%; height: 104px; filter: drop-shadow(0 -5px 9px rgba(48,0,15,.28)); }
.hero__wave path { fill: var(--wine); }
.hero .container { position: relative; z-index: 2; }
.hero__content { max-width: 640px; padding: 0 0 68px; }
.hero__badge {
  display: inline-block;
  background: var(--rose); color: var(--wine);
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 12px 22px; border-radius: 6px; margin-bottom: 34px;
}
.hero__title {
  font-size: clamp(36px, 4.7vw, 64px);
  text-transform: uppercase; line-height: 1.06; color: var(--white);
  margin-bottom: 24px;
}
.hero__name {
  font-family: var(--sans); font-size: 16px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px;
}
.hero__desc { font-family: var(--sans); font-size: 19px; max-width: 520px; margin-bottom: 40px; }
.hero .btn-row { justify-content: flex-start; margin-top: 0; }

/* ============================================================
   INHALT / PROGRAMM-KARTEN
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.pcard {
  background: var(--cream); color: var(--wine);
  border-radius: var(--radius-lg);
  padding: 34px 34px 36px;
  display: flex; flex-direction: column;
}
.tag-badge {
  display: inline-block; align-self: flex-start;
  background: var(--wine-dark); color: var(--white);
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .5px; text-transform: uppercase; white-space: nowrap;
  line-height: 1.2; padding: 8px 16px; border-radius: 8px; margin-bottom: 26px;
}
.pcard__title {
  font-size: 24px; text-transform: uppercase; color: var(--wine);
  margin-bottom: 22px;
}
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 16px; align-items: flex-start; font-family: var(--sans); font-size: 17px; line-height: 1.5; }
.check-list li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234E132A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
/* Icon-Punkte mit Rundbadge (LIVE DIAGNOSTIK etc.) */
.feature { display: flex; gap: 14px; align-items: flex-start; margin-top: 24px; }
.feature > div { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.feature__icon {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: var(--wine); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.feature__icon svg { width: 20px; height: 20px; }
.feature__title { font-family: var(--sans); font-weight: 700; text-transform: uppercase; letter-spacing: .6px; font-size: 13px; color: var(--wine); }
.feature__desc  { font-family: var(--sans); font-size: 16px; line-height: 1.5; }
.pcard__footer {
  margin-top: auto; padding-top: 22px;
}
.day-badge {
  display: inline-block; background: var(--wine); color: var(--white);
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .5px; text-transform: uppercase; line-height: 1.3;
  padding: 12px 20px; border-radius: var(--radius-sm);
}

/* ============================================================
   FÜR WEN — nummerierte Liste
   ============================================================ */
.wenn-list { display: flex; flex-direction: column; gap: 16px; margin-top: 42px; }
.wenn-item {
  display: flex; gap: 22px; align-items: center;
  background: var(--wine); color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 32px;
}
.wenn-num {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--cream); color: var(--wine);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 20px;
}
.wenn-text { font-family: var(--sans); font-weight: 500; font-size: 18px; line-height: 1.55; letter-spacing: .1px; color: rgba(246,245,238,.95); }

/* ============================================================
   ERGEBNISSE — Karten-Grid
   ============================================================ */
.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.rcard {
  background: var(--cream); color: var(--wine);
  border-radius: var(--radius-lg);
  padding: 40px 34px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.rcard__icon {
  width: 78px; height: 78px; border-radius: var(--radius-md);
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.rcard__icon svg { width: 38px; height: 38px; stroke: var(--wine); }
.rcard__title { font-size: 24px; text-transform: uppercase; color: var(--wine); margin-bottom: 18px; }
.rcard__desc  { font-family: var(--sans); font-size: 17px; line-height: 1.55; }
.rcard__desc strong { font-weight: 700; }

/* ============================================================
   TARIFE
   ============================================================ */
.tarife-note { text-align: center; max-width: 980px; margin: 0 auto; }
.tarife-note .bonus {
  font-family: var(--serif); font-weight: 500;
  font-size: 21px; line-height: 1.4; margin-top: 22px; color: var(--wine);
}
.tarife-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 42px; max-width: 1060px; margin-left: auto; margin-right: auto; }
.tcard { border-radius: var(--radius-lg); padding: 42px 40px; }
.tcard--light { background: var(--cream); border: 1.5px solid rgba(78,19,42,.28); color: var(--wine); }
.tcard--dark  { background: var(--wine); color: var(--white); }
.tcard__title { font-size: 32px; text-align: center; text-transform: uppercase; line-height: 1.12; }
.tcard--dark .tcard__title { color: var(--white); }
.tcard__price { font-family: var(--serif); font-weight: 700; font-size: 48px; margin: 22px 0 18px; }
.tcard__tagline { font-family: var(--sans); font-size: 17px; line-height: 1.5; margin-bottom: 30px; }
.tcard .btn { margin-bottom: 34px; }
.tlist { display: flex; flex-direction: column; gap: 20px; }
.tlist li { display: flex; gap: 14px; align-items: flex-start; font-family: var(--sans); font-weight: 400; font-size: 16px; line-height: 1.5; letter-spacing: 0; }
.tcheck {
  flex: none; width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
}
.tcard--light .tcheck { background: transparent; }
.tcard--dark  .tcheck { background: transparent; }
.tcheck svg { width: 20px; height: 20px; }
.tcard--light .tcheck svg { stroke: var(--wine); }
.tcard--dark  .tcheck svg { stroke: var(--rose); }
.tlist li.excluded { text-transform: none; font-weight: 400; text-decoration: line-through; opacity: .85; display: block; }
.tcard__highlight {
  position: relative; background: none; color: var(--rose);
  border: 0; border-top: 1px solid rgba(226,190,188,.3);
  border-radius: 0; padding: 26px 6px 4px; margin: 30px 0 0;
  font-family: var(--serif); font-weight: 500; font-size: 20px; font-style: italic;
  text-align: center; line-height: 1.5;
}
.tcard__highlight::before {
  content: "\201C"; display: block; font-family: var(--serif); font-style: normal;
  font-size: 44px; line-height: .4; color: var(--rose); opacity: .55; margin-bottom: 14px;
}
.tcard__note { font-family: var(--sans); font-size: 16px; margin-top: 22px; }
.tarife-footnote { text-align: center; max-width: 820px; margin: 46px auto 0; font-family: var(--sans); font-size: 16px; line-height: 1.55; }
.tarife-footnote a { text-decoration: underline; }

/* ============================================================
   KRISE / DISCLAIMER — zweispaltig
   ============================================================ */
.info-band { background: var(--wine); color: var(--text-light); }
.info-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 60px; }
.info-col { min-width: 0; }
.info-col h3 { font-size: 30px; text-transform: uppercase; color: var(--white); margin-bottom: 26px; line-height: 1.15; }
.info-col p { font-family: var(--sans); font-size: 17px; line-height: 1.6; margin: 0 0 18px; }
.crisis-lines { font-family: var(--sans); font-weight: 600; line-height: 1.8; overflow-wrap: anywhere; }
.crisis-lines a { text-decoration: underline; overflow-wrap: anywhere; }

/* ============================================================
   FAQ — Akkordeon (zweispaltig)
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 42px; align-items: start; }
.faq-col { display: flex; flex-direction: column; gap: 20px; }
.faq-item { background: var(--wine); color: var(--white); border-radius: var(--radius-md); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  color: var(--white); font-family: var(--serif); font-weight: 600;
  font-size: 19px; line-height: 1.35; letter-spacing: 0;
  padding: 24px 30px; display: flex; gap: 20px; align-items: center; justify-content: space-between;
}
.faq-q .plus { flex: none; width: 20px; height: 20px; position: relative; transition: transform .34s cubic-bezier(.34,1.4,.5,1); }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--white); border-radius: 2px;
  transition: transform .34s cubic-bezier(.34,1.4,.5,1);
}
.faq-q .plus::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-q .plus::after  { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item.open .faq-q .plus { transform: rotate(135deg); }
.faq-item.open .faq-q .plus::after { transform: translateX(-50%); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.faq-a__inner { overflow: hidden; min-height: 0; padding: 0 32px; font-family: var(--sans); font-size: 16px; line-height: 1.6; color: var(--cream); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a__inner { padding-bottom: 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--wine-dark); color: var(--text-light); padding: 80px 0 60px; text-align: center; }
.footer-logo { display: inline-block; margin-bottom: 34px; }
.footer-logo img { height: 84px; width: auto; border-radius: 12px; }
.social { display: flex; gap: 18px; justify-content: center; margin-bottom: 36px; }
.social a {
  width: 58px; height: 58px; border-radius: var(--radius-md);
  background: var(--wine-light); color: var(--white);
  display: flex; align-items: center; justify-content: center; transition: transform .15s, background .2s;
}
.social a:hover { transform: translateY(-3px); background: var(--wine); }
.social svg { width: 26px; height: 26px; }
.copyright { font-family: var(--sans); font-size: 16px; margin-bottom: 26px; }
.footer-links { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--serif); font-weight: 700; text-transform: uppercase;
  font-size: 15px; letter-spacing: -0.3px; text-decoration: underline; text-underline-offset: 5px;
}

/* ============================================================
   UNTERSEITEN (Rechtstexte / Checkout)
   ============================================================ */
.page-hero {
  background: var(--wine); color: var(--white);
  padding: calc(var(--header-h) + 56px) 0 56px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(22px, 6vw, 50px); /* skaliert mit der Breite, kleiner Floor -> lange Komposita passen ganz */
  text-transform: uppercase;
  color: var(--white);
  overflow-wrap: normal;   /* keine Wort-Zerhackung; passt dank Skalierung immer */
  word-break: keep-all;
  text-wrap: balance;
}
.page-hero p { font-family: var(--sans); font-size: 18px; margin: 14px auto 0; max-width: 720px; }

.legal { background: var(--cream); padding: 64px 0 90px; }
.legal .container { max-width: 900px; }
.legal h2 { font-size: 26px; text-transform: uppercase; color: var(--wine); margin: 40px 0 14px; }
.legal h3 { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--wine); margin: 26px 0 10px; }
.legal p, .legal li { font-family: var(--sans); font-size: 17px; line-height: 1.7; color: #3a2530; }
.legal p { margin: 0 0 14px; }
.legal ul { list-style: disc; padding-left: 22px; margin: 0 0 16px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--wine); text-decoration: underline; }
.legal strong { color: var(--wine); }
.legal .lead { font-size: 18px; }
.editor-note {
  background: #fbeada; border: 1px solid #e0b48a; color: #7a4a12;
  border-radius: 10px; padding: 14px 18px; margin: 0 0 20px; font-family: var(--sans); font-size: 15px; line-height: 1.55;
}
.back-link { display: inline-block; margin-top: 30px; font-family: var(--sans); font-weight: 600; color: var(--wine); }
/* Buttons gegen kontextuelle Link-Styles (z. B. .legal a) absichern */
a.btn { text-decoration: none; }
.legal a.btn { text-decoration: none; }
.legal a.btn--primary, .legal a.btn--wine { color: var(--white); }
.legal a.btn--cream, .legal a.btn--outline, .legal a.btn--rose { color: var(--wine); }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout { background: var(--cream); padding: 56px 0 90px; }
.checkout .container { max-width: 1080px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 34px; align-items: start; }

.summary-card {
  background: var(--wine); color: var(--white);
  border-radius: var(--radius-lg); padding: 34px 34px 38px;
  position: sticky; top: calc(var(--header-h) + 20px);
}
.summary-card h2 { font-size: 22px; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.summary-prod { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.2); }
.summary-prod .name { font-family: var(--serif); font-weight: 700; text-transform: uppercase; font-size: 18px; line-height: 1.25; }
.summary-prod .price { font-family: var(--serif); font-weight: 700; font-size: 32px; white-space: nowrap; }
.summary-desc { font-family: var(--sans); font-size: 15px; line-height: 1.55; margin: 16px 0 20px; color: var(--cream); }
.summary-list { display: flex; flex-direction: column; gap: 12px; }
.summary-list li { display: flex; gap: 12px; font-family: var(--sans); font-size: 14.5px; line-height: 1.4; }
.summary-list svg { flex: none; width: 18px; height: 18px; stroke: var(--rose); margin-top: 2px; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.2); font-family: var(--serif); font-weight: 700; }
.summary-total .t { text-transform: uppercase; font-size: 16px; }
.summary-total .v { font-size: 30px; }

.checkout-panel { background: #fff; border: 1px solid rgba(78,19,42,.14); border-radius: var(--radius-lg); padding: 34px 34px 38px; }
.checkout-panel h2 { font-size: 22px; text-transform: uppercase; color: var(--wine); margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--sans); font-weight: 600; font-size: 14px; color: var(--wine); margin-bottom: 7px; }
.field input {
  width: 100%; font-family: var(--sans); font-size: 16px; color: #2b1620;
  padding: 13px 15px; border: 1.5px solid rgba(78,19,42,.25); border-radius: 8px; background: var(--cream);
}
.field input:focus { outline: none; border-color: var(--wine); background: #fff; }

.consent-box { margin: 24px 0 6px; display: flex; flex-direction: column; gap: 16px; }
.consent { display: flex; gap: 13px; align-items: flex-start; font-family: var(--sans); font-size: 14.5px; line-height: 1.5; color: #3a2530; }
.consent input { flex: none; width: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--wine); cursor: pointer; }
.consent a { color: var(--wine); text-decoration: underline; }

/* Stripe Payment Element */
.pay-section { margin: 26px 0 18px; }
.pay-label { font-family: var(--serif); font-weight: 700; text-transform: uppercase; font-size: 16px; color: var(--wine); margin-bottom: 12px; }
#payment-element { min-height: 44px; }
.pay-message { display: none; font-family: var(--sans); font-size: 14px; line-height: 1.5; margin-top: 12px; padding: 10px 14px; border-radius: 8px; }
.pay-message.visible { display: block; }
.pay-message.error { color: #8a1c14; background: #fbe9e7; border: 1px solid #f2b8b2; }

.btn-pay { width: 100%; font-size: 16px; padding: 18px; }
.btn-pay:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-pay.is-busy { opacity: .85; cursor: progress; }
.btn-pay.is-busy::before { display: none; }
.secure-note { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 16px; font-family: var(--sans); font-size: 13px; color: #5a2e40; }
.secure-note svg { width: 15px; height: 15px; stroke: #5a2e40; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .cards-3, .tarife-grid, .faq-grid, .info-grid, .checkout-grid { grid-template-columns: minmax(0,1fr); }
  .result-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
  .summary-card { position: static; order: -1; }
  .section { padding: 68px 0; }
  .hero__content { padding: 130px 0 84px; max-width: 100%; }
  /* gleiche Richtung wie Desktop (horizontal) – nur mehr Deckung für die Lesbarkeit, nie volles Wein */
  .hero__overlay { background:
    linear-gradient(90deg, rgba(78,19,42,.9) 0%, rgba(78,19,42,.72) 44%, rgba(78,19,42,.5) 74%, rgba(78,19,42,.32) 100%),
    linear-gradient(180deg, transparent 52%, rgba(78,19,42,.55) 100%); }
  .hero__bg img { object-position: 70% 18%; }
  .hero__wave svg { height: 60px; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .container { padding: 0 18px; }
  /* Motiv sitzt rechts im Bild – auf schmalen Screens fester auf die Frau ausrichten,
     mehr Deckung links, damit der Text lesbar bleibt */
  .hero__bg img { object-position: 74% 16%; }
  .hero__overlay { background:
    linear-gradient(90deg, rgba(78,19,42,.94) 0%, rgba(78,19,42,.8) 46%, rgba(78,19,42,.55) 78%, rgba(78,19,42,.35) 100%),
    linear-gradient(180deg, transparent 50%, rgba(78,19,42,.58) 100%); }
  .pcard, .tcard { padding: 32px 26px; }
  /* Ergebnis-Karten 2-spaltig kompakter */
  .rcard { padding: 26px 18px; }
  .rcard__icon { width: 60px; height: 60px; margin-bottom: 18px; }
  .rcard__icon svg { width: 30px; height: 30px; }
  .rcard__title { font-size: 19px; margin-bottom: 12px; }
  .rcard__desc { font-size: 15px; line-height: 1.5; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  /* Trust-Zeile sauber stapeln statt Punkt-Trenner umbrechen zu lassen */
  .hero__trust { flex-direction: column; gap: 9px; }
  .hero__trust li + li::before { display: none; }
  /* Sticky-CTA-Leiste: Preiszeile weg, damit Button auf schmalen Screens Platz hat */
  .cta-bar__price { display: none; }
  .cta-bar__label { font-size: 14px; }
}

/* Mobile-Menü offen */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 auto 0; z-index: 99;
  background: var(--wine); padding: 20px 24px 30px;
  transform: translateY(-120%); transition: transform .3s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu a { display: block; padding: 14px 8px; color: var(--white); font-family: var(--sans); font-size: 18px; border-bottom: 1px solid rgba(255,255,255,.12); }

/* ============================================================
   REDESIGN — Micro-Interactions, A11y & Advanced Patterns
   ============================================================ */

/* -------- Fokus: sichtbare, markenkonforme Fokusringe -------- */
:where(a, button, input, .faq-q, [tabindex]):focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
  border-radius: 6px;
}
.section--wine :focus-visible,
.info-band :focus-visible,
.faq-item :focus-visible,
.tcard--dark :focus-visible { outline-color: var(--rose); }
.consent input:focus-visible,
.field input:focus-visible { outline: 3px solid var(--wine-light); outline-offset: 2px; }

/* Standard-Link-Farben (falls Nutzer später Links einfügt) */
.legal a:hover, .footer-links a:hover, .crisis-lines a:hover,
.tarife-footnote a:hover, .consent a:hover { opacity: .78; }

/* -------- Header: Zustand nach Scroll -------- */
.site-header {
  transition: background .3s ease, height .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  height: 66px;
  background: rgba(62, 3, 29, 0.92);
  box-shadow: 0 6px 26px rgba(0,0,0,.25);
}
.site-header.scrolled .logo img { height: 44px; transition: height .3s ease; }
.logo img { transition: height .3s ease; }

/* Aktiver Nav-Punkt (Scroll-Spy) */
.main-nav a { position: relative; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--rose); transform: scaleX(0); transform-origin: center;
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { opacity: 1; }

/* -------- Scroll-Reveal -------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* -------- Karten-Micro-Interaktionen -------- */
.pcard, .rcard {
  transition: transform .25s ease, box-shadow .25s ease;
}
.pcard:hover, .rcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(48,0,15,.28);
}
.rcard__icon { transition: background .25s ease, transform .25s ease; }
.rcard:hover .rcard__icon { background: var(--rose); transform: scale(1.06); }
.wenn-item { transition: transform .2s ease, background .25s ease; }
.wenn-item:hover { transform: translateX(6px); background: var(--wine-light); }
.wenn-item:hover .wenn-num { background: var(--rose); }
.wenn-num { transition: background .25s ease; }

/* Tarif-Karten: dunkle Karte hervorheben */
.tarife-grid { align-items: stretch; }
.tcard { display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.tcard--dark { position: relative; box-shadow: 0 20px 50px rgba(48,0,15,.3); }
.tcard--dark::before {
  content: "Empfohlen"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--rose); color: var(--wine);
  font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase; padding: 7px 18px; border-radius: 20px; white-space: nowrap;
}
.tcard:hover { transform: translateY(-4px); }
.tlist { flex: 1; }

/* FAQ Karte: dezenter Hover + Plus-Rotation feiner */
.faq-item { transition: box-shadow .25s ease; }
.faq-item:hover { box-shadow: 0 10px 28px rgba(48,0,15,.22); }

/* -------- Sticky Mobile-CTA-Leiste -------- */
.cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(62, 3, 29, 0.96);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 -8px 28px rgba(0,0,0,.3);
  transform: translateY(120%); transition: transform .35s ease;
}
.cta-bar.visible { transform: translateY(0); }
.cta-bar__label { font-family: var(--serif); font-weight: 700; text-transform: uppercase; color: var(--white); font-size: 15px; line-height: 1.2; }
.cta-bar__price { color: var(--rose); font-size: 13px; font-weight: 600; }
.cta-bar .btn { padding: 14px 26px; margin: 0; width: auto; flex: none; white-space: nowrap; }

/* -------- Checkout: Feld-Validierung -------- */
.field-error {
  display: none; margin-top: 6px;
  font-family: var(--sans); font-size: 13px; color: #c0392b;
}
.field.invalid input { border-color: #c0392b; background: #fdf3f2; }
.field.invalid .field-error { display: block; }
.field.valid input { border-color: #2e7d5b; }
.consent.invalid span { color: #c0392b; }

/* -------- prefers-reduced-motion: alle Bewegungen entschärfen -------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .btn:hover, .pcard:hover, .rcard:hover, .tcard:hover, .wenn-item:hover, .social a:hover { transform: none !important; }
}

@media (max-width: 960px) {
  .cta-bar { display: flex; }
}
/* Platz schaffen, damit die Leiste den Footer nicht verdeckt (nur mit CTA-Leiste) */
@media (max-width: 960px) {
  body:has(.cta-bar) .site-footer { padding-bottom: 120px; }
}

/* ============================================================
   PREMIUM UPGRADE — Editorial-Hero, Material, Typo, Tarife,
   Micro-Interactions.  Gold-Toning ist per Tweak zuschaltbar
   (html.gold …); alles andere ist fix.
   ============================================================ */

:root {
  --gold:        #C8972F;
  --gold-light:  #E7C86A;
  --shadow-1: 0 6px 20px rgba(48,0,15,.10);
  --shadow-2: 0 22px 54px rgba(48,0,15,.22);
}

/* -------- Elevation-System (fix) -------- */
.pcard, .rcard, .tcard { box-shadow: var(--shadow-1); }
.pcard:hover, .rcard:hover, .tcard:hover { box-shadow: var(--shadow-2); }
.tcard--dark { box-shadow: var(--shadow-2); }

/* -------- Typo-Rhythmus (fix) -------- */
.section-intro { font-size: 20px; line-height: 1.65; max-width: 900px; }
.section--wine .section-intro { color: rgba(246,245,238,.9); }

/* -------- Hero: Editorial + orchestrierte Einblendung (fix) -------- */
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 30px; padding: 0;
}
.hero__trust li {
  position: relative; list-style: none;
  font-family: var(--sans); font-size: 12.5px; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase; color: rgba(246,245,238,.82);
}
.hero__trust li + li::before {
  content: ""; position: absolute; left: -15px; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--rose);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(135% 105% at 68% 22%, transparent 52%, rgba(48,0,15,.24) 100%);
}
.hero__grain::after {
  content: ""; position: absolute; inset: 0; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes heroUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero__content > * { opacity: 0; animation: heroUp .75s cubic-bezier(.2,.7,.2,1) forwards; }
.hero__content > *:nth-child(1) { animation-delay: .10s; }
.hero__content > *:nth-child(2) { animation-delay: .20s; }
.hero__content > *:nth-child(3) { animation-delay: .30s; }
.hero__content > *:nth-child(4) { animation-delay: .40s; }
.hero__content > *:nth-child(5) { animation-delay: .50s; }
.hero__content > *:nth-child(6) { animation-delay: .60s; }

/* -------- Scroll-Fortschritt (fix) -------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 101;
  background: var(--rose); transition: width .08s linear;
}

/* -------- Tarife: Conversion-Feinschliff (fix) -------- */
.tcard__price { display: flex; align-items: baseline; gap: 10px; }
.tcard__price-note {
  font-family: var(--sans); font-weight: 600; font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase; opacity: .7;
}
.tcard__trust {
  display: flex; flex-wrap: wrap; gap: 8px; margin: -14px 0 30px;
}
.tcard__trust span {
  font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: .4px;
  padding: 5px 11px; border-radius: 20px; white-space: nowrap;
  border: 1px solid rgba(78,19,42,.22); color: var(--wine);
}
.tcard__trust--dark span { border-color: rgba(246,245,238,.32); color: rgba(246,245,238,.9); }

/* -------- Gold-Toggle-Steuerung (fix, Inhalt per Tweak) -------- */
.gold-toggle {
  position: fixed; bottom: 20px; right: 20px; z-index: 96;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: 40px; border: 1px solid rgba(78,19,42,.16);
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-1); cursor: pointer;
  font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: .6px;
  text-transform: uppercase; color: var(--wine); white-space: nowrap;
}
.gold-toggle__switch {
  width: 34px; height: 19px; border-radius: 20px; background: rgba(78,19,42,.22);
  position: relative; transition: background .2s ease; flex: none;
}
.gold-toggle__switch::after {
  content: ""; position: absolute; top: 2px; left: 2px; width: 15px; height: 15px;
  border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.3);
  transition: transform .2s ease;
}
html.gold .gold-toggle__switch { background: var(--gold); }
html.gold .gold-toggle__switch::after { transform: translateX(15px); }
.gold-toggle:hover { border-color: rgba(78,19,42,.34); }
@media (max-width: 960px) { .gold-toggle { bottom: 86px; right: 14px; padding: 11px; gap: 0; }
  .gold-toggle > span:last-child { display: none; } }

/* ============================================================
   GOLD-TONING  (nur aktiv bei html.gold) — bewusst sparsam:
   nur Hero-Kicker, Section-Zierlinie, „Empfohlen"-Ribbon und
   der Scroll-Fortschritt. Sonst trägt die Wein/Creme-Palette.
   ============================================================ */

/* Hero-Kicker: Rosé-Pille → edle Gold-Label-Zeile */
html.gold .hero__badge {
  background: transparent; color: var(--gold-light);
  padding: 10px 0 12px; border-radius: 0; letter-spacing: 2px;
  border-bottom: 1px solid rgba(200,151,47,.42);
}

/* Scroll-Fortschritt in Gold */
html.gold .scroll-progress { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

/* Akzent-Punkt der CTAs in Gold */
html.gold .btn--primary::before,
html.gold .btn--wine::before { background: var(--gold-light); }

/* Tarif-Zitat in Gold */
html.gold .tcard__highlight { color: var(--gold-light); border-top-color: rgba(231,200,106,.32); }
html.gold .tcard__highlight::before { color: var(--gold-light); }

/* Section-Titel: feine goldene Zierlinie */
html.gold .section-title { position: relative; padding-bottom: 22px; }
html.gold .section-title::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 52px; height: 2px; background: var(--gold);
}

/* „Empfohlen"-Ribbon der Empfehlung + deren Preis als Wertakzent */
html.gold .tcard--dark::before { background: var(--gold); color: var(--wine-darker); }
html.gold .tcard--dark .tcard__price { color: var(--gold-light); }

@media (prefers-reduced-motion: reduce) {
  .hero__content > * { opacity: 1 !important; animation: none !important; }
}
