/* =========================================================
   Polyamorie-Beratung.de — Design System
   Warm, ruhig, kompetent. Keine grellen Regenbogenfarben,
   stattdessen ein reduziertes, hochwertiges Farbschema mit
   einem dezenten Mehrfarb-Akzent (Poly-Flagge) als Signatur.
   ========================================================= */

:root {
  /* Farben */
  --color-bg: #FDFBF8;
  --color-bg-alt: #F4EEE5;
  --color-surface: #FFFFFF;
  --color-text: #2B2622;
  --color-text-soft: #5B5148;
  --color-border: #E6DCCE;

  --color-primary: #E23E82;       /* lebendiges Pink/Magenta – moderne Polyamorie-Flagge */
  --color-primary-dark: #C0296A;
  --color-secondary: #3B2145;     /* tiefes Aubergine/Violett statt Petrol */
  --color-accent: #8B5CF6;        /* Violett */

  /* Bunte Signaturpalette – Pink, Violett & Gold der modernen Polyamorie-Flagge,
     dazu Koralle & Teal als warme/kühle Ergänzung. Anspielung auf bunte Haare
     als Markenzeichen. */
  --hue-pink: #E23E82;
  --hue-violet: #8B5CF6;
  --hue-gold: #F4B740;
  --hue-coral: #F0713D;
  --hue-teal: #2E9E8F;
  --hue-berry: #C6437B;
  --hue-periwinkle: #6E7CE0;

  --gradient-signature: linear-gradient(90deg, var(--hue-pink) 0%, var(--hue-violet) 50%, var(--hue-gold) 100%);
  /* Eigener, dunklerer Gold-Ton am Ende — der volle --hue-gold ist auf hellem
     Hintergrund als Text kaum lesbar (Kontrast < 2:1). Für Textelemente
     außerdem --color-primary-text/--color-gold-text unten. */
  --gradient-hero-text: linear-gradient(90deg, var(--hue-pink), var(--hue-violet) 55%, #8C640C);

  /* Text-sichere, dunklere Varianten der Markenfarben — für Fließtext auf
     hellem Grund, wo die kräftigen UI-Farben (Buttons, Flächen) den
     WCAG-AA-Mindestkontrast von 4.5:1 nicht erreichen würden */
  --color-primary-text: #A81F58;
  --color-gold-text: #8C640C;

  /* Sanfte, helle Farbtöne für abwechselnde Sektions-Hintergründe — genug
     Farbe für Abwechslung, aber leicht/transparent genug für gute Lesbarkeit.
     Gold bewusst sehr zurückhaltend (nur ein Hauch), da eine volle
     Gelb-Fläche schnell schmutzig/unangenehm wirkt — Gold bleibt kräftig
     nur als Akzent (Icons, Chips, Blobs), nie als große Fläche. */
  --tint-pink: #FBE7F0;
  --tint-violet: #F0E9FC;
  --tint-gold: #FAF2DF;

  /* Volltonfarben für auffällige Blockflächen (Bänder, Sticker, Karten) */
  --block-pink: #E23E82;
  --block-violet: #6A3FD6;
  --block-gold: #F4B740;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-soft: 0 4px 24px rgba(43, 38, 34, 0.06);
  --shadow-medium: 0 12px 40px rgba(43, 38, 34, 0.10);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-label: "Oswald", "Segoe UI", sans-serif;

  --max-width: 1160px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #201C19;
    --color-bg-alt: #2A2420;
    --color-surface: #2A2420;
    --color-text: #F3EDE5;
    --color-text-soft: #C9BEB1;
    --color-border: #40372F;
    --shadow-soft: 0 4px 24px rgba(0,0,0,0.25);
    --shadow-medium: 0 12px 40px rgba(0,0,0,0.35);
    --tint-pink: #2E2027;
    --tint-violet: #241F2E;
    --tint-gold: #2A2419;
  }
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Safari (v.a. iOS) hat einen bekannten Bug: Elemente mit CSS filter
     (siehe .shape-blob unten, filter: blur()) koennen "overflow-x: hidden"
     eines Vorfahren durchbrechen und die Seite horizontal scrollbar machen.
     "overflow-x: clip" verhindert das zuverlaessiger; hidden bleibt als
     Fallback fuer aeltere Browser ohne clip-Unterstuetzung stehen. */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.8rem, 6.2vw, 4.8rem); }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p { margin: 0 0 1em; color: var(--color-text-soft); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-text);
  margin-bottom: 1em;
}

.hero-lead {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-size: clamp(2.8rem, 6.2vw, 4.8rem);
  color: var(--color-text);
  margin: 0 0 0.5em;
}

.signature-rule {
  height: 3px;
  width: 64px;
  border-radius: 2px;
  background: var(--gradient-signature);
  margin: 0 0 1.4em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  /* --color-primary allein ergibt mit weißer Schrift nur 4.0:1 Kontrast —
     knapp unter WCAG AA (4.5:1) für Standardtext. --color-primary-dark
     schafft 5.58:1 und bleibt farblich klar erkennbar als derselbe Ton. */
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--color-primary-text); box-shadow: var(--shadow-medium); }

.btn-ghost {
  /* Bewusst blickdicht (nicht transparent): Ghost-Buttons stehen oft auf
     bunten Flecken/Verläufen — mit transparentem Hintergrund wurden Rand
     und Text dort unlesbar. Ein blickdichter Hintergrund garantiert
     Lesbarkeit unabhängig vom Untergrund. */
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border);
  box-shadow: var(--shadow-soft);
}
.btn-ghost:hover { background: var(--color-bg-alt); }

.btn-light {
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
}

.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow-anchor: none;
  /* position:sticky ist selbst schon ein Containing Block für absolut
     positionierte Kinder (z.B. die mobile .nav-links unten) — dadurch
     folgt das Mobilmenü immer der TATSÄCHLICHEN Header-Höhe, statt sich
     an einer fest verdrahteten Pixelzahl zu orientieren (die bei
     umbrechendem Logo-Text nicht mehr stimmt). */
  background: rgba(250, 246, 241, 0.97);
  border-bottom: 1px solid var(--color-border);
  /* Bewusst KEIN backdrop-filter/transform hier: das würde einen neuen
     Containing Block erzeugen und die position:fixed Mobilnavigation
     (.nav-links) relativ zu diesem ~65px hohen Header statt zum Viewport
     positionieren. */
}
@media (prefers-color-scheme: dark) {
  .site-header { background: rgba(32, 28, 25, 0.97); }
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gradient-signature);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--color-text-soft);
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--color-primary-text); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: underline;
  color: var(--color-text);
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 80vh;
    overflow-y: auto;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 32px 24px;
    gap: 22px;
    /* -110% allein reicht nicht: die Liste ist mit allen Dropdown-Unterpunkten
       oft deutlich hoeher als der Header, dadurch ragte das untere Ende beim
       Zuklappen weiterhin sichtbar in den Header hinein. Zusaetzlich -100vh
       garantiert vollstaendiges Verschwinden ueber dem Viewport, unabhaengig
       von der tatsaechlichen Listenlaenge. */
    transform: translateY(calc(-100% - 100vh));
    transition: transform 0.25s ease;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-links > li { width: 100%; }
  .nav-links.is-open { transform: translateY(0); }
  .nav-toggle { display: block; font-size: 1.05rem; }
  /* Termin-buchen-Button hier ausblenden: der .floating-book-btn übernimmt
     ab dieser Breite bereits sichtbar die Booking-CTA-Rolle, ein zweiter
     Button direkt daneben im Header wäre redundant. */
  .nav-cta { display: none; }
  /* Kompakterer Header auf Mobile: Logo und Menü-Link sitzen naeher am
     oberen Rand statt in viel Weißraum zu "schweben". */
  .nav-wrap { padding: 10px 20px; }
  .logo-img { height: 72px; }
}

/* ---------- Floating Booking-Button ---------- */
.floating-book-btn {
  position: fixed;
  z-index: 250;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-medium);
  transition: background 0.2s ease, transform 0.2s ease;
  bottom: 24px;
  right: 24px;
  padding: 14px 22px;
  border-radius: 999px;
}
.floating-book-btn:hover { background: var(--color-primary-dark); transform: translateY(-2px); }
.floating-book-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
@media (max-width: 640px) {
  .floating-book-btn {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    justify-content: center;
    padding: 16px 20px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

/* ---------- Nav-Dropdowns (Über mich / Angebote) ---------- */
.has-dropdown {
  position: relative;
}
.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.has-dropdown > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.6;
}
.dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 901px) {
  /* Unsichtbare Hover-Brücke über die GESAMTE Breite/Position des Dropdowns
     (nicht nur des schmalen Trigger-Links) — vorher war die Brücke nur so
     breit wie "Angebote ▾" selbst, das Dropdown darunter aber 250px breit
     und nach links versetzt. Beim Runterfahren zu einem Eintrag rechts im
     Menü verließ die Maus dadurch den Hover-Bereich, bevor sie das Dropdown
     erreichte, und das Menü schloss sich vorzeitig. Jetzt deckt die Brücke
     exakt Position und Breite des Dropdowns ab. */
  .has-dropdown::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -18px;
    width: 250px;
    height: 14px;
  }
  .dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: -18px;
    min-width: 250px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    padding: 10px;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 50;
  }
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .dropdown a {
    display: block;
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    white-space: nowrap;
  }
  .dropdown a:hover { background: var(--color-bg-alt); }
}
@media (max-width: 900px) {
  .has-dropdown > a::after { display: none; }
  .dropdown {
    padding: 10px 0 4px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-left: 2px solid var(--color-border);
    margin-top: 14px;
  }
  .dropdown a { font-size: 0.9rem; color: var(--color-text-soft); }
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 88px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: var(--gradient-signature);
  opacity: 0.55;
  border-radius: 30% 70% 68% 32% / 40% 45% 55% 60%;
  z-index: -1;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 260px;
  height: 260px;
  background: var(--block-gold);
  opacity: 0.5;
  border-radius: 60% 40% 45% 55% / 55% 60% 40% 45%;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 900px) {
  /* Auf schmalen Screens ist der Blob sonst größer als der Textbereich und
     legt sich über die Überschrift statt dahinter zu bleiben */
  .hero::before { width: 300px; height: 300px; top: -80px; right: -120px; opacity: 0.4; }
  .hero::after { width: 150px; height: 150px; opacity: 0.4; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--color-text-soft);
  font-weight: 500;
}
.trust-item strong { color: var(--color-text); font-family: var(--font-display); font-size: 1.15rem; }

.placeholder-media {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-border));
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-soft);
  font-size: 0.85rem;
  padding: 24px;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}
.placeholder-media::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gradient-signature);
  opacity: 0.15;
  filter: blur(30px);
}
.placeholder-media.landscape { aspect-ratio: 16/10; }
.placeholder-media.square { aspect-ratio: 1; }
/* Echtes Foto innerhalb der Platzhalter-Box: füllt die Box exakt aus
   (object-fit:cover) und kann durch overflow:hidden auf .placeholder-media
   nie über den Rahmen hinausragen — verhindert die "wacklige" Seite. */
.placeholder-media picture,
.placeholder-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Sections ---------- */
section { padding: 88px 0; position: relative; }

/* ---------- Scroll-Stapel-Effekt ("neuer Abschnitt legt sich über den
   alten") ---------- Bewusst NICHT auf jede Sektion pauschal angewendet:
   position:sticky pinnt eine Sektion an top:0, bis ihre eigene Boxhöhe
   durchgescrollt ist — bei Sektionen, die länger als ein Bildschirm sind
   (lange Fließtexte, Ablauf-Schritte, FAQ), würde das einen Teil des
   Inhalts effektiv unsichtbar machen, weil die nächste Sektion schon
   darüberzieht, bevor alles gelesen werden konnte. Der Effekt läuft daher
   nur auf der Klasse ".pin-scroll", die gezielt auf kurze, garantiert
   bildschirmfüllende Abschnitte gesetzt wird (Hero, CTA-Bänder). */
.pin-scroll {
  position: sticky;
  top: 0;
  z-index: 0;
  background: var(--color-bg);
}
@media (prefers-reduced-motion: reduce) {
  .pin-scroll { position: static; }
}
.section-alt { background: var(--color-bg-alt); }
.tint-pink { background: var(--tint-pink); }
.tint-violet { background: var(--tint-violet); }
.tint-gold { background: var(--tint-gold); }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin: 0 0 52px; text-align: left; }

/* Verspielte, unscharfe Farbflecken als Sektions-Deko — legen sich hinter
   den Content (z-index -1), sorgen für "knackigere" Hintergründe */
.shape-blob {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 38% 62% 65% 35% / 45% 40% 60% 55%;
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
}
section > .container { position: relative; z-index: 1; }
.shape-blob.pink { background: var(--block-pink); opacity: 0.5; }
.shape-blob.violet { background: var(--block-violet); opacity: 0.45; }
.shape-blob.gold { background: var(--block-gold); opacity: 0.5; }
.shape-blob.teal { background: var(--hue-teal); opacity: 0.4; }
.shape-blob.coral { background: var(--hue-coral); opacity: 0.45; }
.shape-blob.top-right { top: -90px; right: -90px; }
.shape-blob.bottom-left { bottom: -90px; left: -90px; }
.shape-blob.top-left { top: -70px; left: -70px; }
@media (max-width: 700px) {
  .shape-blob { width: 200px; height: 200px; }
}

/* Kleinere, knackige Deko-Punkte/Ringe für zusätzliches "Spiel" */
.shape-ring {
  position: absolute;
  border-radius: 50%;
  border: 10px solid currentColor;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.shape-dot {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); gap: 22px 28px; }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--hue-pink);
}
.grid .card:nth-child(4n+1)::before { background: var(--hue-pink); }
.grid .card:nth-child(4n+2)::before { background: var(--hue-violet); }
.grid .card:nth-child(4n+3)::before { background: var(--hue-gold); }
.grid .card:nth-child(4n+4)::before { background: var(--hue-teal); }

/* Etwas Spiel: Kärtchen liegen leicht schräg wie echte Karteikarten
   und richten sich beim Hover auf */
.grid .card:nth-child(odd) { transform: rotate(-0.6deg); }
.grid .card:nth-child(even) { transform: rotate(0.6deg); }

.card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.card-head h3 { margin: 0; }

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.card-head .card-icon { margin-bottom: 0; }

/* Bunte Rotation für Card-Icons & Tags — automatisch, ohne Klassen im HTML */
.grid .card:nth-child(4n+1) .card-icon { background: var(--hue-pink); }
.grid .card:nth-child(4n+2) .card-icon { background: var(--hue-violet); }
.grid .card:nth-child(4n+3) .card-icon { background: var(--hue-gold); }
.grid .card:nth-child(4n+4) .card-icon { background: var(--hue-teal); }

.tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--color-bg-alt);
  color: var(--color-secondary);
  margin-bottom: 12px;
}
.grid .card:nth-child(4n+1) .tag { background: color-mix(in srgb, var(--hue-pink) 16%, transparent); color: var(--hue-pink); }
.grid .card:nth-child(4n+2) .tag { background: color-mix(in srgb, var(--hue-violet) 16%, transparent); color: var(--hue-violet); }
.grid .card:nth-child(4n+3) .tag { background: color-mix(in srgb, var(--hue-gold) 22%, transparent); color: var(--color-gold-text); }
.grid .card:nth-child(4n+4) .tag { background: color-mix(in srgb, var(--hue-teal) 18%, transparent); color: var(--hue-teal); }

.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.grid .card:nth-child(odd):hover { transform: rotate(0deg) translateY(-4px); }
.grid .card:nth-child(even):hover { transform: rotate(0deg) translateY(-4px); }
.card:hover {
  box-shadow: var(--shadow-medium);
}

.text-gradient {
  background: var(--gradient-hero-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Pricing ---------- */
.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.price-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
}
.grid .price-card:nth-child(5n+1)::after { background: var(--hue-pink); }
.grid .price-card:nth-child(5n+2)::after { background: var(--hue-violet); }
.grid .price-card:nth-child(5n+3)::after { background: var(--hue-gold); }
.grid .price-card:nth-child(5n+4)::after { background: var(--hue-coral); }
.grid .price-card:nth-child(5n+5)::after { background: var(--hue-teal); }
.price-card.is-featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-medium);
}
.price-card.is-featured::before {
  content: "Beliebteste Wahl";
  position: absolute;
  top: -13px;
  left: 30px;
  background: var(--color-primary-dark);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-text);
  margin: 10px 0 2px;
}
.price-per-session {
  font-size: 0.85rem;
  color: var(--color-text-soft);
  margin-bottom: 18px;
}
.price-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex-grow: 1;
}
.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--color-text-soft);
  padding: 7px 0;
  border-bottom: 1px dashed var(--color-border);
}
.price-list li:last-child { border-bottom: none; }
.price-note {
  font-size: 0.82rem;
  color: var(--color-text-soft);
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 18px;
}

.price-table-wrap { overflow-x: auto; margin-top: 40px; }
table.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-width: 560px;
}
table.price-table th, table.price-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.94rem;
}
table.price-table th { background: var(--color-bg-alt); font-weight: 600; }
table.price-table tr:last-child td { border-bottom: none; }

/* ---------- Steps / Ablauf ---------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  position: relative;
  padding-bottom: 44px;
}
.step:last-child { padding-bottom: 0; }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  color: var(--color-primary-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  z-index: 1;
}
.steps .step:nth-child(5n+1) .step-num { border-color: var(--hue-pink); color: var(--hue-pink); }
.steps .step:nth-child(5n+2) .step-num { border-color: var(--hue-violet); color: var(--hue-violet); }
.steps .step:nth-child(5n+3) .step-num { border-color: var(--color-gold-text); color: var(--color-gold-text); }
.steps .step:nth-child(5n+4) .step-num { border-color: var(--hue-coral); color: var(--hue-coral); }
.steps .step:nth-child(5n+5) .step-num { border-color: var(--hue-teal); color: var(--hue-teal); }
.step::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}
.step:last-child::before { display: none; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--hue-pink);
}
.grid .quote-card:nth-child(5n+1) { border-left-color: var(--hue-pink); }
.grid .quote-card:nth-child(5n+2) { border-left-color: var(--hue-violet); }
.grid .quote-card:nth-child(5n+3) { border-left-color: var(--hue-gold); }
.grid .quote-card:nth-child(5n+4) { border-left-color: var(--hue-coral); }
.grid .quote-card:nth-child(5n+5) { border-left-color: var(--hue-teal); }
.quote-card p { color: var(--color-text); font-style: italic; font-size: 1.02rem; }
.quote-attr { font-size: 0.85rem; color: var(--color-text-soft); font-weight: 600; font-style: normal; }
.quote-label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--color-gold-text); margin-bottom: 8px; }
.steckbrief-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.steckbrief-list li { padding-left: 0; color: var(--color-text); }
.steckbrief-list strong { color: var(--color-gold-text); margin-right: 8px; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-primary-text);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--color-secondary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px 60px;
  text-align: center;
  box-shadow: 0 24px 60px -16px rgba(226, 62, 130, 0.4), var(--shadow-medium);
}
/* Dezenter Farbverlaufs-Rahmen, damit die CTA-Box mehr "catcht" statt im
   Hintergrund unterzugehen — reine Deko, ändert nichts am Textkontrast */
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--gradient-signature);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  pointer-events: none;
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.cta-band p { color: #DDE3E0; max-width: 560px; margin-left: auto; margin-right: auto; }
@media (max-width: 700px) { .cta-band { padding: 40px 24px; } }

/* Kompakte Inline-CTA für Zwischendurch auf längeren Seiten — bewusst
   leichter als .cta-band, damit sie mitten im Inhalt nicht wie ein
   zweiter voller Werbeblock wirkt, sondern wie ein natürlicher Hinweis. */
.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  flex-wrap: wrap;
  background: var(--color-surface);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  margin: 44px 0;
  box-shadow: var(--shadow-soft);
}
.inline-cta p {
  margin: 0;
  font-weight: 600;
  color: var(--color-text);
  font-size: 1.02rem;
}
.inline-cta .btn { white-space: nowrap; flex-shrink: 0; }
@media (max-width: 560px) {
  .inline-cta { padding: 20px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-secondary);
  color: #E7E2DA;
  padding: 64px 0 28px;
}
@media (max-width: 640px) {
  /* Reserviert Platz fuer den fixen Button am Seitenende — auf .site-footer
     statt body, damit dort weiterhin dessen dunkler Hintergrund steht statt
     eines hellen Streifens der body-Hintergrundfarbe. */
  .site-footer { padding-bottom: 96px; }
}
.site-footer a { color: #E7E2DA; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-grid h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-newsletter {
  max-width: 420px;
  margin: 36px auto 4px;
}
.footer-newsletter .ml-form-embedWrapper.embedForm { width: 100% !important; }
.footer-newsletter .newsletter-consent-note { color: #C9D0CC; text-align: center; }
.link-button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #B9C0BC;
}

/* ---------- Blog ---------- */
.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
}
.blog-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  z-index: 1;
}
.grid .blog-card:nth-child(5n+1)::before { background: var(--hue-pink); }
.grid .blog-card:nth-child(5n+2)::before { background: var(--hue-violet); }
.grid .blog-card:nth-child(5n+3)::before { background: var(--hue-gold); }
.grid .blog-card:nth-child(5n+4)::before { background: var(--hue-coral); }
.grid .blog-card:nth-child(5n+5)::before { background: var(--hue-teal); }
.blog-card .placeholder-media { border-radius: 0; aspect-ratio: 16/10; }
.blog-card-body { padding: 26px; }
.blog-meta { font-size: 0.8rem; color: var(--color-text-soft); margin-bottom: 10px; }
.blog-card h3 a { text-decoration: none; color: var(--color-text); }
.blog-card h3 a:hover { color: var(--color-primary-text); }

.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { margin-top: 1.6em; }
.article-body h3 { margin-top: 1.3em; }
.article-body ul, .article-body ol { color: var(--color-text-soft); }
.article-hero-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-text-soft);
  margin-bottom: 24px;
}
.author-box {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 56px;
}
.author-box .placeholder-media { width: 76px; height: 76px; border-radius: 50%; aspect-ratio: 1; flex-shrink: 0; }

/* ---------- Scroll Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(44px) scale(0.98);
  transition: opacity 0.75s cubic-bezier(.16,.8,.3,1), transform 0.75s cubic-bezier(.16,.8,.3,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* Kleinere, schnellere Variante für einzelne Elemente INNERHALB einer
   Sektion (Karten, Chips, Zitate …) — läuft leicht zeitversetzt pro Element
   (via transition-delay in main.js), dadurch "kaskadieren" sie beim
   Scrollen nacheinander rein statt alle gleichzeitig aufzupoppen. */
[data-reveal="item"] {
  transform: translateY(24px) scale(0.98);
  transition-duration: 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Stacking Cards (Angebote / Kurse) — Ordnerreiter-Optik ---------- */
.stack {
  position: relative;
  overflow-anchor: none;
  padding-top: 20px;
}
.stack-card {
  position: sticky;
  overflow-anchor: none;
  overflow: hidden;
  top: 110px;
  margin-bottom: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}
.stack-card:nth-child(1) { top: 90px; }
.stack-card:nth-child(2) { top: 112px; }
.stack-card:nth-child(3) { top: 134px; }
.stack-card:nth-child(4) { top: 156px; }
.stack-card:nth-child(5) { top: 178px; }

/* Reiter-Lasche oberhalb der Karte, wie bei einem Aktenordner */
.stack-tab {
  position: absolute;
  top: -18px;
  left: 40px;
  width: 130px;
  height: 30px;
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

/* Volltonfarbener Balken mit Kategorie-Label */
.stack-bar {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 16px 40px;
}

.stack-body {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px 40px 40px;
}
.stack-body h3 { margin-bottom: 6px; }

.stack-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
}

/* Die Reiter-Lasche bleibt in der vollen, kräftigen Markenfarbe (rein
   dekorativ, keine Textlast). Der Balken darunter trägt Text — dafür pro
   Farbton so abgestimmt, dass die Beschriftung WCAG-AA-Kontrast erreicht
   (mind. 4.5:1), statt überall pauschal Weiß auf hell zu setzen. */
.stack-card:nth-child(5n+1) .stack-tab { background: var(--hue-pink); }
.stack-card:nth-child(5n+2) .stack-tab { background: var(--hue-violet); }
.stack-card:nth-child(5n+3) .stack-tab { background: var(--hue-gold); }
.stack-card:nth-child(5n+4) .stack-tab { background: var(--hue-coral); }
.stack-card:nth-child(5n+5) .stack-tab { background: var(--hue-teal); }

.stack-card:nth-child(5n+1) .stack-bar { background: #C0296A; color: #fff; }
.stack-card:nth-child(5n+2) .stack-bar { background: #7038D4; color: #fff; }
.stack-card:nth-child(5n+3) .stack-bar { background: var(--hue-gold); color: #2B2622; }
.stack-card:nth-child(5n+4) .stack-bar { background: #C24E22; color: #fff; }
.stack-card:nth-child(5n+5) .stack-bar { background: #227A6E; color: #fff; }

.stack-card:nth-child(5n+1) .stack-num { color: var(--hue-pink); }
.stack-card:nth-child(5n+2) .stack-num { color: var(--hue-violet); }
.stack-card:nth-child(5n+3) .stack-num { color: #8C640C; }
.stack-card:nth-child(5n+4) .stack-num { color: var(--hue-coral); }
.stack-card:nth-child(5n+5) .stack-num { color: var(--hue-teal); }

.stack-card .stack-cta { justify-self: end; white-space: nowrap; }

.stack-card.is-course {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}
.stack-card.is-course h3, .stack-card.is-course p { color: #fff; }
.stack-card.is-course .stack-num { color: var(--hue-gold); }

@media (max-width: 760px) {
  .stack-body {
    grid-template-columns: 1fr;
    padding: 30px 24px 32px;
    gap: 14px;
    text-align: left;
  }
  .stack-bar { padding: 14px 24px; }
  .stack-tab { left: 24px; }
  .stack-card .stack-cta { justify-self: start; }
}

/* Handgezeichneter Kreis-Doodle hinter CTA-Links — spielerischer Akzent,
   angelehnt an den "MORE INFO"-Kringel bei Jenna Kutcher */
.doodle-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--color-text);
  padding: 14px 30px;
  white-space: nowrap;
}
.doodle-btn::before {
  content: "";
  position: absolute;
  inset: -14px -20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 90'%3E%3Cpath d='M14,46 C10,18 45,7 108,8 C168,9 208,17 210,45 C212,74 165,84 108,83 C42,82 18,76 14,46 Z' fill='none' stroke='%23E23E82' stroke-width='4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.stack-card:nth-child(5n+2) .doodle-btn::before { filter: hue-rotate(255deg) saturate(1.4); }
.stack-card:nth-child(5n+3) .doodle-btn::before { filter: hue-rotate(20deg) saturate(2.2) brightness(1.15); }
.stack-card:nth-child(5n+4) .doodle-btn::before { filter: hue-rotate(320deg) saturate(1.6); }
.stack-card:nth-child(5n+5) .doodle-btn::before { filter: hue-rotate(150deg) saturate(1.8); }
.stack-card.is-course .doodle-btn { color: #fff; }
.stack-card.is-course .doodle-btn::before { filter: hue-rotate(20deg) saturate(2.2) brightness(1.3); }

/* ---------- Haltung-Chips (Schwerpunkte-Teaser) ---------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
}
.chip:nth-child(6n+1) { border-color: var(--hue-pink); color: var(--color-primary-text); }
.chip:nth-child(6n+2) { border-color: var(--hue-violet); color: #7038D4; }
.chip:nth-child(6n+3) { border-color: var(--hue-gold); color: var(--color-gold-text); }
.chip:nth-child(6n+4) { border-color: var(--hue-coral); color: #B8451D; }
.chip:nth-child(6n+5) { border-color: var(--hue-teal); color: #1E6E63; }
.chip:nth-child(6n+6) { border-color: var(--hue-periwinkle); color: #4A5AC9; }

/* ---------- Quicklink-Karten (große Bild/Farb-Kacheln mit Kurz-Nav,
   angelehnt an "Beauty/Business/Health" bei Jenna Kutcher) ---------- */
.quicklink-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.quicklink-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}
.quicklink-media {
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  text-align: center;
  color: #fff;
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}
.quicklink-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.quicklink-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.quicklink-media span {
  position: relative;
  z-index: 2;
  padding-bottom: 4px;
}
.quicklink-card:nth-child(3n+1) .quicklink-media::after { background: linear-gradient(200deg, color-mix(in srgb, var(--hue-pink) 15%, transparent) 0%, color-mix(in srgb, var(--hue-berry) 85%, transparent) 100%); }
.quicklink-card:nth-child(3n+2) .quicklink-media::after { background: linear-gradient(200deg, color-mix(in srgb, var(--hue-violet) 15%, transparent) 0%, color-mix(in srgb, var(--color-secondary) 88%, transparent) 100%); }
.quicklink-card:nth-child(3n+3) .quicklink-media::after { background: linear-gradient(200deg, color-mix(in srgb, var(--hue-coral) 15%, transparent) 0%, color-mix(in srgb, var(--hue-gold) 85%, transparent) 100%); }
.quicklink-caption {
  padding: 18px 4px 0;
  text-align: center;
}
.quicklink-caption h3 { margin-bottom: 4px; font-size: 1.15rem; }
.quicklink-caption p { margin: 0; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 0.85rem; }
.badge-note {
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--color-text-soft);
  background: var(--color-bg-alt);
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  padding: 16px;
  transform: translateY(120%);
  transition: transform 0.35s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 760px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  padding: 24px 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}
.cookie-banner-text { flex: 1 1 320px; }
.cookie-banner-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}
.cookie-banner-text strong { color: var(--color-text); }
.cookie-banner-text a { color: var(--color-primary-text); }
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-banner-actions .btn { white-space: nowrap; }
.cookie-settings-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--color-text-soft);
  text-decoration: underline;
  cursor: pointer;
}
@media (max-width: 560px) {
  .cookie-banner-inner { padding: 20px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1 1 auto; }
}
