/* ============================================================
   YUTHI Marketplace — Layout Prototype Stylesheet
   Aesthetic: Refined Swiss Editorial × Botanical Modernism
   Brand-Schrift: Gordita (lokale OTF-Familie)
   ============================================================ */

/* ---------- BRAND-FONT GORDITA ---------- */
@font-face {
  font-family: "Gordita";
  src: url("fonts/Gordita-Light.otf") format("opentype");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Gordita";
  src: url("fonts/Gordita-LightItalic.otf") format("opentype");
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Gordita";
  src: url("fonts/Gordita-Regular.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Gordita";
  src: url("fonts/Gordita-RegularItalic.otf") format("opentype");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Gordita";
  src: url("fonts/Gordita-Medium.otf") format("opentype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Gordita";
  src: url("fonts/Gordita-MediumItalic.otf") format("opentype");
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Gordita";
  src: url("fonts/Gordita-Bold.otf") format("opentype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Gordita";
  src: url("fonts/Gordita-BoldItalic.otf") format("opentype");
  font-weight: 700; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Gordita";
  src: url("fonts/Gordita-Black.otf") format("opentype");
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Gordita";
  src: url("fonts/Gordita-BlackItalic.otf") format("opentype");
  font-weight: 900; font-style: italic; font-display: swap;
}

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand */
  --sage:        #93b48b;  /* HAUPTFARBE — Header, Hero */
  --sage-darker: #7A9A7E;  /* für Hover/Gradient */
  --sage-dark:   #5A7F5E;  /* dunkler Akzent */
  --sage-deeper: #486650;
  --sage-mist:   #DDE5DD;
  --sage-light:  #C7DABF;  /* helle Sage für Tints */
  --forest:      #1F2D20;
  --gold:        #C9A14A;
  --gold-soft:   #D7B570;
  --gold-dark:   #A8842C;

  /* Surface */
  --cream:       #FAF7F2;
  --cream-deep:  #F0EBE0;
  --paper:       #FFFEFB;
  --ink:         #1A1A1A;
  --ink-soft:    #5C5950;
  --ink-muted:   #8C8980;
  --line:        #E6E1D4;

  /* Type */
  --display: "Gordita", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --body:    "Gordita", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Spacing scale (modular) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4.5rem;
  --s-9: 6.5rem;
  --s-10: 9rem;

  /* Radii */
  --r-sm: 4px;
  --r:    8px;
  --r-lg: 18px;
  --r-pill: 999px;

  /* Shadows — soft, editorial */
  --shadow-1: 0 1px 2px rgba(31, 45, 32, 0.04), 0 0 0 1px rgba(31, 45, 32, 0.04);
  --shadow-2: 0 4px 12px rgba(31, 45, 32, 0.06), 0 0 0 1px rgba(31, 45, 32, 0.04);
  --shadow-3: 0 18px 40px -12px rgba(31, 45, 32, 0.18), 0 6px 16px -8px rgba(31, 45, 32, 0.12);

  /* Motion */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bouncy: cubic-bezier(0.68, -0.05, 0.25, 1.6);

  --container: 1680px;
  --gutter: clamp(1rem, 4vw, 3rem);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, textarea { font: inherit; }

/* ---------- TYPOGRAPHY ---------- */
.display {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.95;
}
.display-italic { font-style: italic; }
.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
}
.numeral {
  font-family: var(--display);
  font-weight: 300;
  font-feature-settings: "lnum" 1;
}
.lead { font-size: 1.18rem; line-height: 1.55; color: var(--ink-soft); }
.small { font-size: 13px; color: var(--ink-soft); }

/* ---------- BRAND THEME RULES ----------
   Forest bg → Text cream, Akzente gold
   Sage bg   → Text forest, Akzente gold
   Cream bg  → Text forest, Akzente sage
   ----------------------------------------- */

/* Forest-Sektionen (dunkel): Akzente in Gold */
.subhub-hero .eyebrow,
.subhub-hero h1 em,
.subhub-hero h2 em,
.hero-anim .eyebrow,
.hero-anim h1 em,
.hero-anim h2 em,
.science-section .eyebrow,
.science-section h2 em,
.faq-section .eyebrow,
.faq-section h2 em,
.newsletter-section .eyebrow,
.newsletter-section h2 em { color: var(--gold); }

/* Sage-Sektionen: Akzente in Weiß (Cream) — Text bleibt forest */
.compare-section .eyebrow,
.compare-section h2 em,
.zertifiziert-on-sage .section-head .eyebrow,
.zertifiziert-on-sage .section-head h2 em,
.zertifiziert-on-sage h2 em,
.sage-zone .section-head.on-sage .eyebrow,
.sage-zone .section-head.on-sage h2 em,
.sage-zone .section-head .eyebrow,
.sage-zone .section-head h2 em,
.community-section .section-head .eyebrow,
.community-section .section-head h2 em,
.community-section h2 em,
.cross-hub-section.bg-sage .eyebrow,
.cross-hub-section.bg-sage h2 em,
.glossary-section.bg-sage .eyebrow,
.glossary-section.bg-sage h2 em,
.verified-section .eyebrow,
.verified-section h2 em,
.verified-section .verified-text .eyebrow,
.verified-section .verified-text h2 em { color: var(--cream) !important; }

/* ============================================================
   BRAND-WIDE COLOR LOGIC (universal section-aware rules)
   Regel:
   - Dunkelgrüne (Forest) Sections → Text WEISS, Akzente GOLD
   - Sage Sections                  → Text DUNKELGRÜN, Akzente GOLD
   - Cream/Weiße Sections           → Text DUNKELGRÜN, Akzente SAGE
   Sections markieren über Klassen: .on-forest, .on-sage, .on-cream
   ============================================================ */

/* --- Forest (dunkelgrün) Background --- */
.on-forest,
[class*="-on-forest"],
.on-forest h1, .on-forest h2, .on-forest h3, .on-forest h4, .on-forest h5, .on-forest h6,
.on-forest p, .on-forest li, .on-forest dt, .on-forest dd,
[class*="-on-forest"] h1, [class*="-on-forest"] h2, [class*="-on-forest"] h3,
[class*="-on-forest"] h4, [class*="-on-forest"] h5, [class*="-on-forest"] h6,
[class*="-on-forest"] p, [class*="-on-forest"] li {
  color: var(--cream);
}
.on-forest em, .on-forest .accent, .on-forest .eyebrow,
.on-forest h1 em, .on-forest h2 em, .on-forest h3 em, .on-forest h4 em,
[class*="-on-forest"] em, [class*="-on-forest"] .accent, [class*="-on-forest"] .eyebrow,
[class*="-on-forest"] h1 em, [class*="-on-forest"] h2 em, [class*="-on-forest"] h3 em {
  color: var(--gold) !important;
}

/* --- Sage Background --- */
.on-sage,
[class*="-on-sage"],
.on-sage h1, .on-sage h2, .on-sage h3, .on-sage h4, .on-sage h5, .on-sage h6,
.on-sage p, .on-sage li, .on-sage dt, .on-sage dd,
[class*="-on-sage"] h1, [class*="-on-sage"] h2, [class*="-on-sage"] h3,
[class*="-on-sage"] h4, [class*="-on-sage"] h5, [class*="-on-sage"] h6,
[class*="-on-sage"] p, [class*="-on-sage"] li {
  color: var(--forest);
}
.on-sage em, .on-sage .accent, .on-sage .eyebrow,
.on-sage h1 em, .on-sage h2 em, .on-sage h3 em, .on-sage h4 em,
[class*="-on-sage"] em, [class*="-on-sage"] .accent, [class*="-on-sage"] .eyebrow,
[class*="-on-sage"] h1 em, [class*="-on-sage"] h2 em, [class*="-on-sage"] h3 em {
  color: var(--cream) !important;
}

/* --- Cream/Weiß Background (Default für alle nicht markierten Sections) --- */
.on-cream,
[class*="-on-cream"],
.on-cream h1, .on-cream h2, .on-cream h3, .on-cream h4, .on-cream h5, .on-cream h6,
.on-cream p, .on-cream li, .on-cream dt, .on-cream dd,
[class*="-on-cream"] h1, [class*="-on-cream"] h2, [class*="-on-cream"] h3,
[class*="-on-cream"] h4, [class*="-on-cream"] h5, [class*="-on-cream"] h6,
[class*="-on-cream"] p, [class*="-on-cream"] li {
  color: var(--forest);
}
.on-cream em, .on-cream .accent, .on-cream .eyebrow,
.on-cream h1 em, .on-cream h2 em, .on-cream h3 em, .on-cream h4 em,
[class*="-on-cream"] em, [class*="-on-cream"] .accent, [class*="-on-cream"] .eyebrow,
[class*="-on-cream"] h1 em, [class*="-on-cream"] h2 em, [class*="-on-cream"] h3 em {
  color: var(--sage) !important;
}

/* ============================================================
   GOOGLE-RATING MINI-WIDGET · site-weit im Hero
   Horizontale Pille (kompakt): [Google] ★ 4.9 (247)
   ============================================================ */
.g-mini-card {
  background: rgba(250,247,242,0.96);
  color: var(--forest);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  text-decoration: none;
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.25);
  display: inline-flex; flex-direction: row; align-items: center;
  gap: 0.55rem;
  font-size: 13px; line-height: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}
.g-mini-card:hover { transform: translateY(-2px); box-shadow: 0 8px 22px -6px rgba(0,0,0,0.3); }
.g-mini-logo {
  font-family: "Product Sans", Arial, sans-serif;
  font-weight: 700; font-size: 13px;
}
.g-mini-logo .g1 { color: #4285F4; } .g-mini-logo .g2 { color: #EA4335; }
.g-mini-logo .g3 { color: #FBBC05; } .g-mini-logo .g4 { color: #4285F4; }
.g-mini-logo .g5 { color: #34A853; } .g-mini-logo .g6 { color: #EA4335; }
.g-mini-star { color: #FBBC05; font-size: 14px; line-height: 1; }
.g-mini-score { font-weight: 700; font-size: 14px; color: var(--forest); }
.g-mini-count { font-size: 12px; color: var(--ink-muted); }

/* Widget rechts oben im Hero — klar unter der Topbar (sticky, 130px hoch) */
.hero-anim .g-mini-card.hero-widget,
.subhub-hero .g-mini-card.hero-widget,
.rechner-hero .g-mini-card.hero-widget,
.hero-cinematic .g-mini-card.hero-widget {
  position: absolute;
  top: clamp(1.5rem, 2.5vw, 2.25rem);
  right: clamp(1.5rem, 3vw, 2.5rem);
  z-index: 5;
}
@media (max-width: 720px) {
  .hero-cinematic .g-mini-card.hero-widget,
  .hero-anim .g-mini-card.hero-widget,
  .subhub-hero .g-mini-card.hero-widget,
  .rechner-hero .g-mini-card.hero-widget { position: static; margin: 0.5rem 0 1.2rem; }
}

/* CTAs horizontal nebeneinander, rechts auf Lead-Text-Höhe */
.hero-anim .hero-ctas-row,
.subhub-hero .hero-ctas-row {
  position: absolute;
  right: 2rem;
  bottom: 17rem;
  z-index: 6;
  display: flex; flex-direction: row;
  gap: 0.6rem; flex-wrap: wrap;
  justify-content: flex-end;
}
.hero-anim .hero-ctas-row .hero-top-cta,
.hero-anim .hero-ctas-row .hero-bottom-cta,
.subhub-hero .hero-ctas-row .hero-top-cta,
.subhub-hero .hero-ctas-row .hero-bottom-cta {
  position: static !important;
  top: auto !important; right: auto !important; bottom: auto !important; left: auto !important;
}
@media (max-width: 880px) {
  .hero-anim .hero-ctas-row,
  .subhub-hero .hero-ctas-row { bottom: 12rem; }
}
@media (max-width: 720px) {
  .hero-anim .g-mini-card.hero-widget,
  .subhub-hero .g-mini-card.hero-widget { position: static; margin: 0 0 1rem; }
  .hero-anim .hero-ctas-row,
  .subhub-hero .hero-ctas-row { position: static; margin-top: 1.2rem; justify-content: flex-start; }
}

/* Zertifizierungs-Siegel als grosses Wasserzeichen hinter der „Vier Schritte"-Sektion */
/* Inhalt liegt garantiert ueber dem Siegel (Schutzzone gegen Ueberlappung) */
.zertifiziert-on-sage > .container { position: relative; z-index: 2; }
.zertifiziert-on-sage .siegel-stamp {
  position: absolute;
  /* Mittig hinter der gesamten Sektion — dezent, gross, stoert Text nicht */
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: min(620px, 60%);
  height: auto;
  opacity: 0.12;            /* Wasserzeichen — Text bleibt klar lesbar */
  filter: none;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
  transform-origin: 50% 50%;
}
.zertifiziert-on-sage:hover .siegel-stamp {
  opacity: 0.16;
}
@media (max-width: 880px) {
  .zertifiziert-on-sage .siegel-stamp { width: 75%; opacity: 0.1; }
}

/* Cream/helle Sektionen: Akzente in Sage */
.info-section .eyebrow,
.info-section h2 em,
.providers-section .eyebrow,
.providers-section h2 em,
.glossary-section .eyebrow,
.glossary-section h2 em,
.magazin-mini .eyebrow,
.magazin-mini h2 em,
.cross-sub-section .eyebrow,
.cross-sub-section h2 em,
.cross-hub-section .eyebrow,
.cross-hub-section h2 em { color: var(--sage); }

/* ---------- LAYOUT PRIMITIVES ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.grain::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.06;
  z-index: 1000;
  mix-blend-mode: multiply;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.01em;
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-3);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  box-shadow: inset 0 0 0 1.5px var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
}
.btn-gold {
  background: var(--gold);
  color: var(--forest);
}
.btn-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}
.btn-ghost {
  padding: 0.6rem 0;
  color: var(--forest);
  font-weight: 600;
  border-bottom: 1px solid var(--forest);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--sage-dark); border-bottom-color: var(--sage-dark); }

.btn .arrow {
  display: inline-block; transition: transform 0.4s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- TOP BAR ---------- */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--sage);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

/* Scroll-Progress-Linie unter der Topbar */
.topbar-progress {
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(255, 210, 117, 0.6);
  transition: width 0.12s linear;
  z-index: 101;
}
.topbar.is-scrolled {
  box-shadow: 0 6px 20px -10px rgba(31, 45, 32, 0.25);
  background: rgba(147, 180, 139, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
  gap: var(--s-4);
  transition: height 0.35s var(--ease-out);
}
.topbar.is-scrolled .topbar-inner { height: 70px; }

/* Logo & Pills schrumpfen sanft mit */
.topbar .brand-logo,
.topbar .brand img,
.topbar-brand img {
  transition: transform 0.35s var(--ease-out);
}
.topbar.is-scrolled .brand-logo,
.topbar.is-scrolled .brand img,
.topbar.is-scrolled .topbar-brand img {
  transform: scale(0.82);
}
.topbar-pills .nav-item .hub-pill,
.topbar-pills .hub-pill {
  transition: padding 0.35s var(--ease-out), font-size 0.35s var(--ease-out);
}
.topbar.is-scrolled .topbar-pills .hub-pill,
.topbar.is-scrolled .topbar-pills .nav-item .hub-pill {
  padding: 0.4rem 0.85rem;
  font-size: 13px;
}
.topbar-pills {
  display: flex; align-items: center; gap: 0.5rem;
  flex: 1;
  justify-content: center;
  /* kein overflow-x — sonst werden die Mega-Menüs abgeschnitten */
}
.topbar-pills .nav-item .hub-pill,
.topbar-pills .hub-pill {
  padding: 0.55rem 1.05rem;
  font-size: 14px;
  flex-shrink: 0;
  gap: 0.5rem;
  letter-spacing: 0;
  line-height: 1.15;
}
.topbar-pills .pill-icon { font-size: 1.25em; }
/* Pill-Text mit 2 Zeilen */
.pill-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  white-space: nowrap;
}
.pill-text > span { display: block; }
.pill-icon {
  font-size: 1.15em;
  line-height: 1;
  flex-shrink: 0;
}
/* Pills + Mega-Menü-Wrapper */
.topbar-pills .nav-item {
  position: static; /* damit Mega-Menü relativ zur topbar positioniert */
}
.topbar-pills .nav-item .hub-pill {
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
/* Hover-Verhalten ist bereits über .hub-pill:hover oben definiert (cream + forest) */
.topbar-secondary {
  display: flex; align-items: center; gap: var(--s-3);
  font-size: 13px; font-weight: 500;
}
.topbar-secondary a {
  color: rgba(250, 247, 242, 0.8);
  padding: 0.4rem 0.6rem;
  border-radius: var(--r);
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.topbar-secondary a:hover { color: var(--cream); background: rgba(250, 247, 242, 0.1); }

@media (max-width: 1100px) {
  .topbar-pills { justify-content: flex-start; }
  .topbar-secondary { display: none; }
}
@media (max-width: 880px) {
  .topbar-pills { display: none; }
}
.brand {
  display: inline-flex; align-items: center;
  height: 70px;
  transition: opacity 0.3s var(--ease-out);
}
.brand:hover { opacity: 0.85; }
.brand img { height: 100%; width: auto; display: block; }
@media (max-width: 880px) { .brand { height: 54px; } .topbar-inner { height: 80px; } }

.nav-main {
  display: flex; gap: clamp(0.8rem, 2vw, 1.6rem);
  font-size: 14px;
  font-weight: 500;
}
.nav-main a {
  position: relative;
  padding: 0.4rem 0;
  color: var(--cream);
  transition: color 0.25s var(--ease-out);
}
.nav-main a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-main a:hover { color: var(--gold); }
.nav-main a:hover::after { width: 100%; }

.topbar-right { display: flex; align-items: center; gap: var(--s-3); }

/* Sprach-/Land-Switch — nur auf Hub- und Sub-Hub-Seiten ausgeblendet
   (dort braucht die Active-Pill den Platz). Frontpage + alle anderen Seiten
   zeigen sie weiterhin. Body-Klasse wird in script.js gesetzt. */
body.is-hub-section .lang-switch { display: none !important; }
body.is-hub-section .loc-switch-wrap { display: none !important; }

.lang-switch {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream);
  cursor: pointer;
  padding: 0.65rem 1rem;
  border-radius: var(--r);
  border: 1px solid rgba(250, 247, 242, 0.3);
  transition: all 0.3s var(--ease-out);
  background: transparent;
}
.lang-switch:hover { background: rgba(250, 247, 242, 0.15); border-color: var(--cream); }

/* Inline-Dropdown-Wrapper für Sprach-Switch */
.lang-switch-wrap { position: relative; }
.lang-switch-wrap .lang-switch .arrow-down {
  font-size: 9px;
  margin-left: 0.2rem;
  transition: transform 0.25s var(--ease-out);
  display: inline-block;
}
.lang-switch-wrap.is-open .lang-switch .arrow-down { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0.4rem;
  display: flex; flex-direction: column;
  min-width: 170px;
  box-shadow: 0 16px 32px -8px rgba(31, 45, 32, 0.22);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all 0.25s var(--ease-out);
  z-index: 110;
}
.lang-switch-wrap.is-open .lang-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-dropdown button {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0.8rem;
  font-size: 13.5px;
  color: var(--forest);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.2s;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}
.lang-dropdown button:hover { background: var(--sage-mist); }
.lang-dropdown button.is-active { background: var(--sage-mist); font-weight: 700; }
.lang-dropdown .flag { font-size: 1.05rem; }

/* ============================================
   Marketplace-Pill (Variante D: Trenner + Gold-Soft)
   ============================================ */
/* Wrapper für die 7. Pill mit vertikalem Trenner davor */
.topbar-pills .nav-item.is-marketplace-item {
  display: flex; align-items: center; gap: 0.6rem;
  position: static; /* damit Mega-Menü auf Topbar-Ebene positioniert wird */
}
.topbar-pills .nav-item.is-marketplace-item::before {
  content: "";
  display: inline-block;
  width: 1px; height: 26px;
  background: rgba(250, 247, 242, 0.28);
  margin-right: 0.15rem;
  flex-shrink: 0;
}
/* Die Marketplace-Pill selbst (gold-soft Hintergrund + Border) */
.hub-pill.is-marketplace {
  background: rgba(255, 210, 117, 0.12);
  border: 1px solid rgba(255, 210, 117, 0.35);
  color: var(--cream);
}
.hub-pill.is-marketplace:hover {
  background: rgba(255, 210, 117, 0.22);
  border-color: rgba(255, 210, 117, 0.55);
  color: var(--cream);
}
.hub-pill.is-marketplace .pill-icon {
  font-size: 1.3em;
}

/* ============ ACTIVE-STATE: Hub-Pill (auf Hub-Seiten) ============ */
.topbar-pills a.hub-pill.is-active-hub,
.topbar-pills a.hub-pill.is-active-hub:link,
.topbar-pills a.hub-pill.is-active-hub:visited {
  background: var(--forest) !important;
  color: var(--cream) !important;
}
.topbar-pills a.hub-pill.is-active-hub:hover {
  background: #2a3e2c !important;
  color: var(--cream) !important;
}

/* ============ ACTIVE-STATE: Sub-Hub-Pill (Variante E) ============
   Auf Sub-Hub-Seiten: Pill wird Forest, zeigt nur 1. Wort des Hub-Namens
   + Gold-Sublabel mit dem Sub-Hub-Namen. */
.topbar-pills a.hub-pill.is-active-subhub,
.topbar-pills a.hub-pill.is-active-subhub:link,
.topbar-pills a.hub-pill.is-active-subhub:visited {
  background: var(--forest) !important;
  color: var(--cream) !important;
  padding-right: 0.45rem;
}
.topbar-pills a.hub-pill.is-active-subhub:hover {
  background: #2a3e2c !important;
  color: var(--cream) !important;
}
.topbar-pills a.hub-pill.is-active-subhub .pill-text {
  flex-direction: row !important;
  align-items: center;
  gap: 0.45rem;
}
/* Zweite Zeile des Hub-Namens („Bewegung", „Supplements", …) ausblenden */
.topbar-pills a.hub-pill.is-active-subhub .pill-text > span:nth-child(2) {
  display: none !important;
}
/* Sub-Hub-Label als Gold-Pill */
.topbar-pills a.hub-pill.is-active-subhub .subhub-label {
  background: var(--gold);
  color: var(--forest);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  display: inline-block;
}
/* Scroll-State: Sub-Hub-Pill schrumpft mit */
.topbar.is-scrolled .topbar-pills a.hub-pill.is-active-subhub .subhub-label {
  font-size: 11px;
  padding: 0.2rem 0.55rem;
}

/* "Anbieter werden" — Link-Style Button für Inhaber-Bewerbung */
.btn-provider {
  background: transparent;
  color: var(--cream);
  padding: 0.85rem 0.4rem;
  border-radius: var(--r);
  font-weight: 600; font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s var(--ease-out);
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}
.btn-provider:hover {
  opacity: 0.85;
  border-bottom-color: var(--gold-soft);
  color: var(--gold-soft);
}
@media (max-width: 1100px) { .btn-provider { display: none; } }

/* Login & Register Buttons */
.btn-login {
  background: transparent;
  color: var(--cream);
  padding: 0.85rem 1.4rem;
  border-radius: var(--r);
  font-weight: 600; font-size: 15px;
  transition: background 0.3s var(--ease-out);
  border: none;
  cursor: pointer;
}
.btn-login:hover { background: rgba(250, 247, 242, 0.15); }
.btn-register {
  background: var(--gold);
  color: var(--forest);
  padding: 0.85rem 1.5rem;
  border-radius: var(--r);
  font-weight: 700; font-size: 15px;
  transition: all 0.3s var(--ease-out);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px -2px rgba(255, 210, 117, 0.45);
}
.btn-register:hover {
  background: var(--gold-soft, #ffe4a8);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(255, 210, 117, 0.7);
}

/* ---- Mein-Bereich-Dropdown (ersetzt Anmelden/Registrieren) ---- */
.bereich-wrap { position: relative; }
.btn-bereich {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--gold); color: var(--forest);
  padding: 0.65rem 1.4rem; border-radius: var(--r);
  font-weight: 700; font-size: 14px; line-height: 1; white-space: nowrap;
  border: 1px solid var(--gold); cursor: pointer;
  box-shadow: 0 4px 12px -2px rgba(255, 210, 117, 0.45);
  transition: all 0.3s var(--ease-out);
}
.btn-bereich:hover { background: var(--gold-soft, #ffe4a8); transform: translateY(-2px); box-shadow: 0 8px 20px -4px rgba(255, 210, 117, 0.7); }
.btn-bereich .arrow-down { font-size: 9px; transition: transform 0.25s var(--ease-out); display: inline-block; }
.bereich-wrap.is-open .btn-bereich .arrow-down { transform: rotate(180deg); }
.bereich-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 0.5rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  min-width: 290px; box-shadow: 0 16px 40px -8px rgba(31,45,32,0.28);
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: all 0.25s var(--ease-out); z-index: 120;
}
.bereich-wrap.is-open .bereich-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.bereich-item {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.7rem 0.8rem; border-radius: 10px;
  text-decoration: none; color: var(--forest); transition: background 0.2s;
}
.bereich-item:hover { background: var(--sage-mist); }
.bereich-item .bi-ico { font-size: 1.3rem; flex: none; }
.bereich-item .bi-txt { display: flex; flex-direction: column; flex: 1; line-height: 1.25; }
.bereich-item .bi-txt strong { font-size: 14.5px; font-weight: 700; }
.bereich-item .bi-txt small { font-size: 12px; color: var(--ink-muted); margin-top: 1px; }
.bereich-item .bi-arr { color: var(--gold); font-weight: 700; opacity: 0; transition: opacity 0.2s, transform 0.2s; }
.bereich-item:hover .bi-arr { opacity: 1; transform: translateX(2px); }

/* Drei Topbar-Buttons (Sprache · Ort · Mein Bereich) auf gleiche Höhe */
.topbar-right .lang-switch,
.topbar-right .loc-switch,
.topbar-right .btn-bereich {
  height: 44px;
  padding-top: 0; padding-bottom: 0;
  box-sizing: border-box;
  white-space: nowrap;
}

.menu-toggle { display: none; }

/* ---------- TOPBAR · kompakter bei MacBook / schmaleren Desktop-Breiten ---------- */
@media (max-width: 1500px) {
  .topbar-inner { gap: 0.6rem; }
  .topbar-pills { gap: 0.3rem; }
  .topbar-pills .nav-item .hub-pill,
  .topbar-pills .hub-pill {
    padding: 0.45rem 0.8rem;
    font-size: 13px;
    gap: 0.4rem;
  }
  .topbar-right { gap: 0.5rem; }
  .btn-provider { padding: 0.5rem 0.9rem; font-size: 13px; }
  .btn-login, .btn-register { padding: 0.5rem 1rem; font-size: 13px; }
  .lang-switch { padding: 0.4rem 0.7rem; font-size: 13px; }
}
@media (max-width: 1280px) {
  .topbar-pills .nav-item .hub-pill,
  .topbar-pills .hub-pill {
    padding: 0.4rem 0.6rem;
    font-size: 12px;
    gap: 0.3rem;
  }
  .topbar-pills .pill-icon { font-size: 1.05em; }
  .topbar-inner { gap: 0.4rem; }
  .brand { height: 80px; }
}

@media (max-width: 980px) {
  .nav-main { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
  .menu-toggle svg { width: 22px; height: 22px; }
}

/* ---------- SPLASH (Sprach-Wahl) ---------- */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: safe center;
  padding: clamp(1.5rem, 4vh, 3rem) var(--gutter);
  overflow-y: auto;            /* zu hoher Inhalt (kleine Bildschirme) → Splash selbst scrollt, "Weiter" bleibt erreichbar */
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-out);
}
.splash.is-active { opacity: 1; pointer-events: auto; }
.splash.is-leaving { opacity: 0; }

.splash-logo {
  width: clamp(130px, 18vw, 200px);
  height: auto;
  margin-bottom: clamp(0.9rem, 2.2vh, 1.6rem);
  animation: bloom-in 1.4s var(--ease-out) both;
}
@keyframes bloom-in {
  0%   { transform: scale(0.78); opacity: 0; filter: blur(8px); }
  60%  { filter: blur(0); }
  100% { transform: scale(1); opacity: 1; filter: blur(0); }
}

.splash-headlines {
  margin-bottom: clamp(1.2rem, 3vh, 2rem);
}
.splash-headlines p {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: line-rise 0.8s var(--ease-out) forwards;
}
.splash-headlines p:nth-child(1) { font-size: clamp(2rem, 5vw, 3.6rem); color: var(--forest); animation-delay: 0.6s; }
.splash-headlines p:nth-child(2) { font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--ink-soft); font-style: italic; animation-delay: 0.85s; }
.splash-headlines p:nth-child(3) { font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--ink-soft); font-style: italic; animation-delay: 1.05s; }
.splash-headlines p:nth-child(4) { font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--ink-soft); font-style: italic; animation-delay: 1.25s; }

@keyframes line-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.splash-langs {
  display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center;
  opacity: 0; animation: line-rise 0.8s 1.55s var(--ease-out) forwards;
}
.splash-lang {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border: 1.5px solid var(--forest);
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--forest);
  background: transparent;
  transition: all 0.35s var(--ease-out);
}
.splash-lang:hover {
  background: var(--forest); color: var(--cream); transform: translateY(-2px);
}
.splash-lang .flag { font-size: 1.05rem; }

.splash-foot {
  margin-top: var(--s-6); font-size: 12px; color: var(--ink-muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0; animation: line-rise 0.8s 1.85s var(--ease-out) forwards;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(201, 161, 74, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(90, 127, 94, 0.10), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: var(--s-5);
}
.hero-eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--sage-dark);
}
.hero-headline {
  font-size: clamp(2.6rem, 6.5vw, 5.8rem);
  margin: 0 0 var(--s-5);
  color: var(--forest);
}
.hero-headline span { display: block; }
.hero-headline .accent {
  font-style: italic;
  color: var(--sage-dark);
 }
.hero-sub {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 0 var(--s-6);
  color: var(--ink-soft);
  line-height: 1.6;
}
.hero-sub strong { color: var(--forest); font-weight: 700; }
.hero-sub .dot-sep,
.dot-sep {
  display: inline-block;
  margin: 0 0.4em;
  color: var(--gold);
  font-weight: 700;
  transform: translateY(-0.05em);
  opacity: 0.9;
}

.hero-ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-bottom: var(--s-7); }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: clamp(1rem, 3vw, 2rem);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.4rem; }

/* Hero Visual — Hexagon-Pflanzen-Konstellation */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-inline: auto;
}
.hero-orb {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.6), transparent 50%),
    radial-gradient(circle at 50% 50%, var(--sage-mist), var(--cream-deep));
  box-shadow: var(--shadow-3);
  animation: orb-float 6s ease-in-out infinite;
}
@keyframes orb-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero-petals {
  position: absolute; inset: 0;
  animation: petal-rotate 60s linear infinite;
}
@keyframes petal-rotate {
  to { transform: rotate(360deg); }
}
.hero-icon {
  position: absolute;
  width: clamp(56px, 10vw, 84px);
  height: clamp(56px, 10vw, 84px);
  border-radius: 50%;
  background: var(--paper);
  display: grid; place-items: center;
  font-size: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-2);
  transition: transform 0.5s var(--ease-bouncy);
}
.hero-icon:hover { transform: scale(1.12); z-index: 5; }
.hero-icon.i1 { top: 0%; left: 50%; transform: translate(-50%, -10%); }
.hero-icon.i2 { top: 25%; right: -2%; }
.hero-icon.i3 { bottom: 25%; right: -2%; }
.hero-icon.i4 { bottom: 0%; left: 50%; transform: translate(-50%, 10%); }
.hero-icon.i5 { bottom: 25%; left: -2%; }
.hero-icon.i6 { top: 25%; left: -2%; }
.hero-center-mark {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.hero-center-mark .label {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  color: var(--forest);
  letter-spacing: -0.01em;
}
.hero-center-mark .number {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 300;
  color: var(--sage-dark);
  display: block;
  line-height: 1;
}
.hero-center-mark .sublabel {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 360px; }
  .hero-trust { font-size: 12px; }
}

/* ---------- SEARCH STRIP ---------- */
.search-strip {
  position: relative; z-index: 2;
  margin: calc(var(--s-7) * -1) auto 0;
  max-width: 760px;
  padding: 0 var(--gutter);
}
.search-bar {
  display: flex; align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.4rem 0.4rem 0.4rem 1.5rem;
  box-shadow: var(--shadow-2);
  gap: 1rem;
  transition: box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.search-bar:focus-within { box-shadow: var(--shadow-3); border-color: var(--sage-dark); }
.search-bar svg { flex-shrink: 0; color: var(--sage-dark); }
.search-bar input {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: 15px; padding: 0.7rem 0; color: var(--ink);
}
.search-bar input::placeholder { color: var(--ink-muted); }
.search-bar button {
  background: var(--forest); color: var(--cream);
  padding: 0.7rem 1.2rem;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 13px;
  transition: background 0.3s var(--ease-out);
}
.search-bar button:hover { background: var(--sage-dark); }

.search-suggestions {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: var(--s-3); padding-left: 0.5rem;
  font-size: 13px; color: var(--ink-muted);
}
.search-suggestions a {
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  background: var(--cream-deep);
  transition: background 0.3s var(--ease-out);
}
.search-suggestions a:hover { background: var(--sage-mist); color: var(--forest); }

/* ---------- SECTION FRAME ---------- */
section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-head {
  display: flex; flex-direction: column; gap: var(--s-3);
  max-width: 720px; margin-bottom: var(--s-7);
}
.section-head .eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; }
.section-head .eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--sage-dark);
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--forest);
  margin: 0;
}
.section-head h2 em {
  font-style: italic; color: var(--sage-dark);
 }
.section-head p { color: var(--ink-soft); margin: 0; max-width: 580px; }

/* ============================================================
   KOMPAKTE KATEGORIE-CARDS (Fiverr-Style)
   ============================================================ */
.cat-strip {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
@media (max-width: 880px) { .cat-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .cat-strip { grid-template-columns: repeat(2, 1fr); } }

.cat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem 1rem 1.3rem;
  text-align: center;
  text-decoration: none;
  color: var(--forest);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.cat-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(147, 180, 139, 0.35), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: -1;
}
.cat-card:hover {
  transform: translateY(-3px);
  border-color: var(--sage);
  box-shadow: 0 16px 32px -16px rgba(31, 45, 32, 0.2);
}
.cat-card:hover::before { opacity: 1; }
.cat-card .icon {
  font-size: 1.9rem;
  display: block;
  margin-bottom: 0.7rem;
}
.cat-card .name {
  font-size: 14px; font-weight: 600;
  line-height: 1.3;
  color: var(--forest);
}

/* ============================================================
   HORIZONTALER "BELIEBT" SCROLLER (Fiverr-Style)
   ============================================================ */
.popular-section { padding: clamp(2rem, 4vw, 3rem) 0; }
.popular-header {
  max-width: var(--container);
  margin: 0 auto 1.5rem;
  padding: 0 var(--gutter);
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; flex-wrap: wrap;
}
.popular-header h3 {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0;
}
.popular-header h3 em { font-style: italic; color: var(--sage-dark); }
.popular-header a.see-all {
  font-size: 13px; font-weight: 600;
  color: var(--sage-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--sage-dark);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.popular-header a.see-all:hover { color: var(--forest); border-color: var(--forest); }

/* Controls: Pfeile + "Alle ansehen" */
.popular-controls {
  display: flex; align-items: center; gap: 0.6rem;
}
.popular-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--forest);
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.popular-arrow:hover {
  background: var(--forest);
  color: var(--cream);
  transform: scale(1.05);
}
.popular-arrow:active { transform: scale(0.97); }
.popular-arrow svg { width: 18px; height: 18px; }

.popular-scroll {
  display: flex; gap: 1rem;
  overflow-x: auto;
  padding: 0.4rem var(--gutter) 1.5rem;
  scrollbar-width: none;
  max-width: 100vw;
  scroll-behavior: smooth;
}
.popular-scroll.is-paused-anim { scroll-behavior: smooth; }
.popular-scroll::-webkit-scrollbar { display: none; }

.popular-card {
  /* 5 Cards sichtbar auf Desktop (≥1100px), breiter als hoch */
  flex: 0 0 calc(20% - 0.8rem);
  scroll-snap-align: start;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none;
  position: relative;
  isolation: isolate;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: flex; flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 5 / 4;
  padding: 1.1rem 1.2rem;
}
@media (max-width: 1100px) {
  .popular-card { flex: 0 0 calc(25% - 0.75rem); }
}
@media (max-width: 760px) {
  .popular-card { flex: 0 0 calc(33.33% - 0.66rem); }
}
@media (max-width: 480px) {
  .popular-card { flex: 0 0 70%; }
}

/* Foto-Hintergrund mit Zoom bei Hover */
.popular-card .card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: -2;
  transition: transform 0.7s var(--ease-out);
}
.popular-card:hover .card-bg { transform: scale(1.08); }
.popular-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(0,0,0,0.4); }
/* Dunkler Gradient für Lesbarkeit */
.popular-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,45,32,0.25) 0%, rgba(31,45,32,0.55) 55%, rgba(31,45,32,0.92) 100%);
  z-index: -1;
  transition: opacity 0.4s var(--ease-out);
}
.popular-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.35);
}
/* Tag als Glas-Pille oben links */
.popular-card .card-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-pill);
  width: fit-content;
  margin: 0 4rem 0 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
/* Body-Wrapper für Title + Reveal-Text unten */
.popular-card .card-body {
  display: flex;
  flex-direction: column;
}
.popular-card .card-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--cream);
  padding: 0;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
/* Hover-Reveal: Beschreibungstext slidet rein */
.popular-card .card-reveal {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(250, 247, 242, 0.88);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  transition: max-height 0.4s var(--ease-out),
              opacity 0.3s var(--ease-out),
              margin-top 0.4s var(--ease-out);
}
.popular-card:hover .card-reveal {
  max-height: 90px;
  opacity: 1;
  margin-top: 0.5rem;
}
.popular-card .card-emoji {
  position: absolute;
  top: 0.9rem; right: 1rem;
  font-size: 1.9rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
  z-index: 1;
}

/* ---------- HUBS GRID ---------- */
.hubs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.hub {
  position: relative;
  display: flex; flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 4 / 5;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  isolation: isolate;
}
.hub::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gradient, linear-gradient(135deg, var(--sage-mist), var(--cream-deep)));
  z-index: -1;
  transition: transform 1.2s var(--ease-out);
}
.hub:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.hub:hover::before { transform: scale(1.08); }

.hub-icon { font-size: 2.4rem; }
.hub-body h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin: 0 0 var(--s-2);
  letter-spacing: -0.01em;
  color: var(--forest);
  line-height: 1.1;
}
.hub-body p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 var(--s-4);
  line-height: 1.55;
}
.hub-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 13px; font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.04em;
  transition: gap 0.4s var(--ease-out), color 0.4s var(--ease-out);
}
.hub:hover .hub-arrow { gap: 0.8rem; color: var(--sage-dark); }

/* Hub-Variant mit Video-Background */
.hub.hub-video {
  isolation: isolate;
  color: var(--cream);
}
.hub.hub-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}
.hub.hub-video::before {
  /* überschreibt den Standard-Gradient mit dunklem Lesbarkeits-Overlay */
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.30) 55%,
    rgba(31, 45, 32, 0.65) 100%);
  z-index: -1;
}
.hub.hub-video .hub-icon {
  position: absolute;
  right: var(--s-5);
  bottom: var(--s-5);
  z-index: 2;
  font-size: 2.8rem;
  line-height: 1;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.5));
}
/* Hub-Body soll trotzdem unten bleiben, da Icon nun absolute ist */
.hub.hub-video .hub-body {
  margin-top: auto;
  padding-right: clamp(3rem, 6vw, 4.5rem); /* Platz für Icon rechts */
}
.hub.hub-video .hub-body h3 {
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.hub.hub-video .hub-body p {
  color: rgba(250, 247, 242, 0.92);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.hub.hub-video .hub-arrow {
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.hub.hub-video:hover .hub-arrow { color: var(--gold-soft); }

/* Hub-Variants */
.hub.h1 { --gradient: linear-gradient(160deg, #C9D5BD, #FAF7F2); }
.hub.h2 { --gradient: linear-gradient(160deg, #F2E0BA, #FAF7F2); }
.hub.h3 { --gradient: linear-gradient(160deg, #BAC4D5, #FAF7F2); }
.hub.h4 { --gradient: linear-gradient(160deg, #DABDC9, #FAF7F2); }
.hub.h5 { --gradient: linear-gradient(160deg, #BDD5D2, #FAF7F2); }
.hub.h6 { --gradient: linear-gradient(160deg, #D5C9BD, #FAF7F2); }

@media (max-width: 880px) { .hubs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .hubs { grid-template-columns: 1fr; } .hub { aspect-ratio: 3 / 2.4; } }

/* ---------- SO FUNKTIONIERT YUTHI (Timeline-Style) ---------- */
.how-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream);
}
.how-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.how-timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft) 0%, var(--sage-dark) 100%);
  z-index: 0;
}
.how-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
}
.how-step {
  text-align: center;
}
.how-step .dot {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--sage-dark);
  margin: 0 auto 1.3rem;
  display: grid; place-items: center;
  font-size: 1.8rem;
  position: relative;
  box-shadow: 0 0 0 8px var(--cream);
  transition: transform 0.4s var(--ease-bouncy), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.how-step:hover .dot {
  transform: scale(1.12);
  border-color: var(--forest);
  box-shadow: 0 0 0 8px var(--cream), 0 12px 28px -10px rgba(31, 45, 32, 0.3);
}
.how-step h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--forest);
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}
.how-step p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  padding: 0 1rem;
}
@media (max-width: 880px) {
  .how-steps { grid-template-columns: 1fr; gap: var(--s-6); }
  .how-timeline::before { display: none; }
}

/* ---------- HOW IT WORKS · Staggered Reveal ----------
   Schritte erscheinen nacheinander, sobald die Section sichtbar wird.
   Triggert über die bestehende .reveal/.is-visible-Logik (script.js). */
.how-timeline.reveal .how-step {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.how-timeline.reveal.is-visible .how-step {
  opacity: 1;
  transform: translateY(0);
}
.how-timeline.reveal.is-visible .how-step:nth-child(1) { transition-delay: 0.10s; }
.how-timeline.reveal.is-visible .how-step:nth-child(2) { transition-delay: 0.35s; }
.how-timeline.reveal.is-visible .how-step:nth-child(3) { transition-delay: 0.60s; }

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

/* ---------- HOW IT WORKS (alt — wird ersetzt) ---------- */
.how {
  background: var(--cream-deep);
  border-radius: var(--r-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
}
.how-step .number {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(3rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--s-4);
  position: relative; display: inline-block;
}
.how-step .number::after {
  content: ""; position: absolute; left: 110%; top: 50%;
  width: clamp(2rem, 5vw, 4rem); height: 1px;
  background: var(--gold-soft);
  display: none;
}
.how-step:not(:last-child) .number::after { display: block; }
.how-step h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--forest);
  margin: 0 0 var(--s-2);
  letter-spacing: -0.01em;
}
.how-step p { color: var(--ink-soft); margin: 0; font-size: 15px; }

@media (max-width: 880px) { .how-grid { grid-template-columns: 1fr; gap: var(--s-6); } .how-step .number::after { display: none !important; } }

/* ---------- VERIFIED ---------- */
.verified {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.verified-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.pillar {
  padding: var(--s-5);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.pillar .icon { font-size: 1.5rem; margin-bottom: var(--s-3); }
.pillar h4 { font-family: var(--body); font-size: 14px; font-weight: 700; margin: 0 0 var(--s-1); color: var(--forest); }
.pillar p { font-size: 13px; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* ---------- YUTHI VERIFIED · Section-Background (Sage → Cream Verlauf) ---------- */
.verified-section {
  background: #93b48b;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

/* Pillar-Texte in Forest (dunkles Grün) statt grau */
.verified-section .pillar p {
  color: var(--forest);
}

/* ---------- YUTHI VERIFIED · Siegel-Block (Stempel-Reveal + Lanserhof-Float) ---------- */
.verified-seal {
  position: sticky;
  top: 6rem;
  display: grid;
  place-items: center;
  padding: 2rem 0;
  max-width: 460px;
  margin-inline: auto;
}
.seal-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, rgba(201, 161, 74, 0.18) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 1.2s 0.4s var(--ease-out);
  pointer-events: none;
}
.seal-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(31, 45, 32, 0.18));
  transform: scale(0.6) rotate(-18deg);
  opacity: 0;
  transition: transform 1.1s var(--ease-bouncy), opacity 0.7s var(--ease-out);
}

/* Reveal-Trigger über bestehende .reveal/.is-visible-Logik */
.verified.reveal.is-visible .seal-glow { opacity: 1; }
.verified.reveal.is-visible .seal-img {
  transform: scale(1) rotate(0);
  opacity: 1;
  animation: seal-float 6s ease-in-out infinite 1.8s;
}
@keyframes seal-float {
  0%, 100% { transform: translateY(0) rotate(0) scale(1); }
  25%      { transform: translateY(-6px) rotate(0.8deg) scale(1.015); }
  50%      { transform: translateY(0) rotate(0) scale(1); }
  75%      { transform: translateY(-4px) rotate(-0.6deg) scale(1.01); }
}

/* Pillar-Stagger nach dem Siegel + Hover-Lift */
.verified.reveal .pillar {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.verified.reveal.is-visible .pillar { opacity: 1; transform: translateY(0); }
.verified.reveal.is-visible .pillar:nth-child(1) { transition-delay: 0.70s; }
.verified.reveal.is-visible .pillar:nth-child(2) { transition-delay: 0.85s; }
.verified.reveal.is-visible .pillar:nth-child(3) { transition-delay: 1.00s; }
.verified.reveal.is-visible .pillar:nth-child(4) { transition-delay: 1.15s; }

.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--sage);
  box-shadow: 0 12px 28px -14px rgba(31, 45, 32, 0.2);
}
.pillar .icon { transition: transform 0.4s var(--ease-bouncy); display: inline-block; }
.pillar:hover .icon { transform: scale(1.18) rotate(-6deg); }

@media (max-width: 880px) {
  .verified { grid-template-columns: 1fr; }
  .verified-pillars { grid-template-columns: 1fr; }
  .verified-seal { position: relative; top: auto; max-width: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  .seal-img, .seal-glow, .verified.reveal .pillar { transition: none !important; animation: none !important; }
  .seal-img, .verified.reveal .pillar { opacity: 1 !important; transform: none !important; }
  .seal-glow { opacity: 1 !important; }
}

/* ---------- ANBIETER MARQUEE ---------- */
/* ============================================================
   ANBIETER-SECTION · Dark Premium · Marquee · Filter-Chips
   ============================================================ */
.anbieter-section {
  background: linear-gradient(180deg,
    #93b48b 0%,
    var(--forest) 12%,
    var(--forest) 100%);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
  color: var(--cream);
}
.anbieter-section::before {
  content: "";
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 60%;
  background: radial-gradient(ellipse, rgba(201, 161, 74, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.anbieter-section > .container { position: relative; }
.anbieter-section .section-head { max-width: 900px; margin-bottom: 0; }
.anbieter-section .section-head .eyebrow { color: var(--gold-soft); }
.anbieter-section .section-head h2 { color: var(--cream); }
.anbieter-section .section-head h2 em { color: var(--gold-soft); font-style: italic; }
.anbieter-section .section-head .lead {
  color: rgba(255,255,255,0.7);
  max-width: none;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .anbieter-section .section-head .lead { white-space: normal; }
}

/* Filter-Chips */
.anbieter-section .filter-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: var(--s-6) 0 var(--s-5);
}
.anbieter-section .filter-chip {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  font-family: inherit;
  font-size: 13px; font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.anbieter-section .filter-chip.active {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
  box-shadow: 0 0 24px -4px rgba(201, 161, 74, 0.5);
}
.anbieter-section .filter-chip:hover:not(.active) {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

/* Marquee */
.anbieter-section .marquee {
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
  margin: 0 calc(var(--gutter) * -1);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.anbieter-section .marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0 var(--gutter);
  animation: marquee-scroll 45s linear infinite;
}
.anbieter-section .marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.625rem)); }
}
.anbieter-section .marquee-hint {
  text-align: center; font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem; letter-spacing: 0.05em;
}

/* Provider Cards (Glasmorphism) */
.anbieter-section .provider-card {
  width: 300px; flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s var(--ease-out), background 0.4s, border-color 0.4s, box-shadow 0.4s;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.anbieter-section .provider-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.07);
  border-color: var(--gold-soft);
  box-shadow:
    0 24px 48px -16px rgba(0,0,0,0.5),
    0 0 80px -24px rgba(201, 161, 74, 0.4);
}
.anbieter-section .provider-image {
  aspect-ratio: 4/3;
  background-color: rgba(147, 180, 139, 0.18);
  background-image: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
/* Wenn ein Bild-Image als Inline-Style gesetzt ist, wird der Gradient als Overlay genutzt */
.anbieter-section .provider-image[style*="background-image"] {
  background-color: var(--forest);
}
/* Emoji-Badge oben rechts (kleine Glas-Pille) */
.anbieter-section .provider-image .emoji-badge {
  position: absolute; top: 14px; right: 14px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid; place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
/* Kategorie-Tag oben links (Glas-Pille) */
.anbieter-section .provider-image .badge {
  position: absolute; top: 14px; left: 14px;
  right: auto;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--cream);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.anbieter-section .provider-body { padding: 1.25rem; }
/* Verified + Emoji nebeneinander */
.anbieter-section .verified-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.6rem;
  gap: 0.6rem;
}
.anbieter-section .verified-row .verified-badge {
  margin-bottom: 0;
}
.anbieter-section .provider-body .emoji-badge {
  font-size: 1.5rem;
  line-height: 1;
  background: transparent;
  box-shadow: none;
  width: auto; height: auto;
  padding: 0;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: inline-block;
  position: static;
  flex-shrink: 0;
}
.anbieter-section .verified-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--gold-soft); text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.anbieter-section .verified-badge::before {
  content: ""; width: 8px; height: 8px;
  background: var(--sage); border-radius: 50%;
  animation: verified-pulse 2s ease-out infinite;
}
@keyframes verified-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(147, 180, 139, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(147, 180, 139, 0); }
  100% { box-shadow: 0 0 0 0 rgba(147, 180, 139, 0); }
}
.anbieter-section .provider-card h4 {
  font-family: var(--display); font-weight: 400;
  font-size: 1.3rem; color: var(--cream);
  margin: 0 0 0.3rem;
  letter-spacing: -0.01em;
}
.anbieter-section .provider-card .meta {
  font-size: 13.5px; color: rgba(255,255,255,0.6);
  margin: 0 0 1rem;
}
.anbieter-section .provider-score {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.anbieter-section .provider-score > span:first-child {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
}
.anbieter-section .provider-score .yuthi {
  font-family: var(--display); font-style: italic;
  font-size: 1.5rem; color: var(--gold-soft);
  transition: transform 0.4s var(--ease-bouncy);
}
.anbieter-section .provider-card:hover .yuthi { transform: scale(1.15); }

/* CTA-Button */
.anbieter-section .cta-row {
  display: flex; justify-content: center;
  margin-top: var(--s-6);
}
.anbieter-section .cta-btn {
  background: transparent;
  color: var(--cream);
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-size: 0.95rem; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: all 0.3s var(--ease-out);
}
.anbieter-section .cta-btn:hover {
  background: var(--gold); color: var(--forest);
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: 0 0 32px -8px rgba(201, 161, 74, 0.5);
}
.anbieter-section .cta-btn .arrow { transition: transform 0.3s; }
.anbieter-section .cta-btn:hover .arrow { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  .anbieter-section .marquee-track { animation: none; }
  .anbieter-section .verified-badge::before { animation: none; }
}

/* ---------- NEWSLETTER (Cream Editorial + 3D-PDF-Mockup) ---------- */
#newsletter {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg,
    var(--forest) 0%,
    var(--forest) 20%,
    var(--cream) 65%,
    var(--cream) 100%);
}
.newsletter {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(2.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(31,45,32,0.2), 0 12px 24px -12px rgba(31,45,32,0.1);
  border: 1px solid var(--line);
}
.newsletter::before {
  content: "";
  position: absolute; left: -10%; bottom: -25%;
  width: 55%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 180, 139, 0.22), transparent 65%);
  pointer-events: none;
}
.newsletter-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .newsletter-inner { grid-template-columns: 1fr; } }

.newsletter .eyebrow {
  color: var(--sage-dark);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.newsletter h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--forest);
  margin: 1rem 0 1rem;
}
.newsletter h2 em { font-style: italic; color: var(--sage-dark); }
.newsletter p.lead { color: var(--ink-soft); margin-bottom: 1.5rem; }
.newsletter p.lead strong { color: var(--forest); }

/* Inline Sign-up Form (Booking-Style Pill) */
.signup-form-inline {
  display: flex; gap: 0.5rem;
  background: var(--paper);
  padding: 0.5rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px -12px rgba(31, 45, 32, 0.1);
  margin-bottom: 0.8rem;
}
.signup-form-inline input {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: 15px; padding: 0.85rem 1rem; color: var(--ink);
  font-family: var(--body);
}
.signup-form-inline input::placeholder { color: var(--ink-muted); }
.signup-form-inline button {
  background: var(--forest); color: var(--cream);
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 14px;
  border: none; cursor: pointer;
  transition: background 0.3s var(--ease-out);
  white-space: nowrap;
}
.signup-form-inline button:hover { background: var(--sage-dark); }
.newsletter .fineprint {
  font-size: 11.5px;
  color: var(--ink-muted);
  margin: 0;
  letter-spacing: 0.02em;
}

/* 3D-PDF-Mockup */
.pdf-mockup-wrap {
  perspective: 1200px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* Echtes PDF-Cover (statt Attrappe) — exakt gleiche Grösse wie früher (320px, 3/4) */
.pdf-cover {
  margin: 0;
  width: 100%; max-width: 320px;
  aspect-ratio: 3/4;
  border-radius: 12px;
  transform: rotateY(-12deg) rotateX(6deg);
  box-shadow:
    -20px 30px 60px -20px rgba(31, 45, 32, 0.4),
    -10px 20px 40px -10px rgba(31, 45, 32, 0.2);
  transition: transform 0.5s var(--ease-out);
  position: relative;
}
.pdf-cover:hover { transform: rotateY(-4deg) rotateX(1deg); }
.pdf-cover img {
  display: block; width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.pdf-cover-badge {
  position: absolute;
  top: -12px; left: -12px;
  background: var(--gold);
  color: var(--forest);
  padding: 0.4rem 0.85rem;
  border-radius: var(--r);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px -4px rgba(31, 45, 32, 0.45);
  white-space: nowrap;
}
/* Erklärung zum Welcome-PDF — linke Spalte */
.pdf-explainer {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--gold);
}
.pdf-mockup {
  width: 100%; max-width: 320px;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #FAF7F2 0%, #F0EBE0 100%);
  border-radius: 12px;
  padding: 2rem 1.6rem;
  transform: rotateY(-12deg) rotateX(6deg);
  box-shadow:
    -20px 30px 60px -20px rgba(31, 45, 32, 0.4),
    -10px 20px 40px -10px rgba(31, 45, 32, 0.2);
  position: relative;
  transition: transform 0.5s var(--ease-out);
  cursor: pointer;
  border: 1px solid rgba(31, 45, 32, 0.08);
}
.pdf-mockup:hover { transform: rotateY(-4deg) rotateX(1deg); }
.pdf-mockup .pdf-badge {
  background: var(--gold);
  color: var(--forest);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em;
  display: inline-block;
}
.pdf-mockup h5 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--forest);
  margin: 1rem 0;
  line-height: 1.2;
}
.pdf-mockup ul {
  list-style: none; padding: 0; margin: 0;
}
.pdf-mockup li {
  font-size: 12px;
  color: var(--ink-soft);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
}
.pdf-mockup li:last-child { border-bottom: none; }
.pdf-mockup .pages {
  position: absolute;
  bottom: 1.5rem; left: 1.6rem;
  font-size: 10.5px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
}
.signup-form .fineprint {
  font-size: 11px; color: rgba(250, 247, 242, 0.5);
  letter-spacing: 0.04em;
  margin: 0;
}
.signup-proof {
  margin-top: var(--s-4);
  font-size: 13px; font-style: italic;
  color: rgba(250, 247, 242, 0.7);
}

@media (max-width: 880px) { .newsletter-inner { grid-template-columns: 1fr; } }

/* ---------- MAGAZIN · Bento-Grid (asymmetrisch) ---------- */
.magazine-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 1rem;
}
.magazine-bento .b1 { grid-column: 1 / 3; grid-row: 1 / 3; }  /* gross, links */
.magazine-bento .b2 { grid-column: 3 / 4; grid-row: 1 / 2; }
.magazine-bento .b3 { grid-column: 4 / 5; grid-row: 1 / 2; }
.magazine-bento .b4 { grid-column: 3 / 5; grid-row: 2 / 3; }

@media (max-width: 880px) {
  .magazine-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .magazine-bento .b1,
  .magazine-bento .b2,
  .magazine-bento .b3,
  .magazine-bento .b4 {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4/3;
  }
}

.bento-card {
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
  background: var(--forest);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: block;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(31, 45, 32, 0.3);
}
.bento-card .bento-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 0.7s var(--ease-out);
}
.bento-card:hover .bento-bg { transform: scale(1.08); }
.bento-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,45,32,0.20) 0%, rgba(31,45,32,0.55) 55%, rgba(31,45,32,0.92) 100%);
  z-index: -1;
}
.bento-card .bento-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.3rem 1.5rem;
  color: var(--cream);
}
.bento-card .bento-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
}
.bento-card h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--cream);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
/* Grosse Featured-Card hat grössere Schrift */
.magazine-bento .b1 h4 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
}
.magazine-bento .b1 .bento-body {
  padding: 2rem 2.2rem;
}

/* ============================================================
   HUB-SIDENAV · Sub-Themen als Side-Navigation (Variante D)
   ============================================================ */
.hub-sidenav {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.hub-sidenav .sn-list {
  display: flex; flex-direction: column; gap: 0.3rem;
  position: sticky; top: 100px;
  align-self: start;
}
.hub-sidenav .sn-list a {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.85rem 1rem;
  border-radius: var(--r);
  text-decoration: none; color: var(--ink-soft);
  font-size: 14.5px; font-weight: 600;
  transition: all 0.2s var(--ease-out);
  cursor: pointer;
  border: 1px solid transparent;
}
.hub-sidenav .sn-list a .ico { font-size: 1.2rem; }
.hub-sidenav .sn-list a:hover {
  background: var(--cream-deep); color: var(--forest);
}
.hub-sidenav .sn-list a.is-active {
  background: var(--sage-mist); color: var(--forest);
  border-color: rgba(147, 180, 139, 0.3);
}
.hub-sidenav .sn-list a .num {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,0,0,0.05); color: var(--ink-soft);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  margin-left: auto;
}
.hub-sidenav .sn-list a.is-active .num {
  background: var(--forest); color: var(--cream);
}

.hub-sidenav .sn-content { padding: 0.5rem 1rem 1rem 0; min-height: 500px; }
.hub-sidenav .sn-pane { display: none; }
.hub-sidenav .sn-pane.is-active { display: block; animation: panefadein 0.4s var(--ease-out); }
@keyframes panefadein {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hub-sidenav .sn-pane .sn-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-dark); font-weight: 700;
}
.hub-sidenav .sn-pane h3 {
  font-family: var(--display); font-weight: 350;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--forest);
  margin: 0.4rem 0 1rem;
  letter-spacing: -0.015em; line-height: 1.1;
}
.hub-sidenav .sn-pane h3 em { font-style: italic; color: var(--sage-dark); }
.hub-sidenav .sn-pane .sn-lead {
  font-size: 16px; color: var(--ink); line-height: 1.6;
  margin: 0 0 1.2rem;
}
.hub-sidenav .sn-pane p {
  font-size: 15px; color: var(--ink-soft); line-height: 1.65;
  margin: 0 0 1rem;
}
.hub-sidenav .sn-pane p strong { color: var(--ink); font-weight: 600; }

.hub-sidenav .sn-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 1.2rem 0 1.5rem; padding: 1.1rem;
  background: var(--sage-mist); border-radius: var(--r);
}
.hub-sidenav .sn-stats > div { text-align: center; }
.hub-sidenav .sn-stats .num {
  font-family: var(--display); font-style: italic;
  font-size: 1.6rem; color: var(--forest);
  display: block; line-height: 1;
}
.hub-sidenav .sn-stats .lab {
  font-size: 11px; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 0.3rem; display: block;
}

.hub-sidenav .sn-sources {
  background: var(--cream-deep);
  border-radius: var(--r); border-left: 3px solid var(--gold);
  padding: 1.1rem 1.3rem; margin: 1.2rem 0 1.5rem;
}
.hub-sidenav .sn-sources strong {
  display: block;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sage-dark);
  margin-bottom: 0.7rem;
}
.hub-sidenav .sn-sources ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.hub-sidenav .sn-sources ul li {
  font-size: 12.5px; color: var(--ink-soft); line-height: 1.55;
}
.hub-sidenav .sn-sources ul li em { color: var(--forest); font-style: italic; }
.hub-sidenav .sn-sources ul li a {
  color: var(--sage-dark); text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 2px;
  font-weight: 500;
}
.hub-sidenav .sn-sources ul li a:hover { color: var(--forest); }
.hub-sidenav .sn-sources ul li a::after {
  content: " ↗"; font-size: 0.85em; opacity: 0.7;
}

.hub-sidenav .sn-cross {
  display: grid; gap: 0.5rem;
  margin: 0 0 1.5rem;
}
.hub-sidenav .sn-cross > strong {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--forest);
  margin-bottom: 0.3rem;
}
.hub-sidenav .sn-cross a {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  background: var(--cream-deep);
  border-radius: var(--r);
  text-decoration: none;
  font-size: 13.5px; color: var(--forest); font-weight: 600;
  transition: background 0.2s var(--ease-out);
}
.hub-sidenav .sn-cross a:hover { background: var(--sage-mist); }
.hub-sidenav .sn-cross a .ico { font-size: 1.1rem; }
.hub-sidenav .sn-cross a small { font-weight: 400; color: var(--ink-soft); font-size: 12px; }
.hub-sidenav .sn-cross a .arr { margin-left: auto; color: var(--sage-dark); }

.hub-sidenav .sn-cta {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.hub-sidenav .sn-cta a {
  padding: 0.85rem 1.4rem; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: all 0.2s var(--ease-out);
  border: 1px solid transparent;
}
.hub-sidenav .sn-cta a.info {
  background: transparent; color: var(--forest);
  border-color: var(--line);
}
.hub-sidenav .sn-cta a.info:hover { background: var(--cream-deep); }
.hub-sidenav .sn-cta a.primary { background: var(--forest); color: var(--cream); }
.hub-sidenav .sn-cta a.primary:hover { background: #2c3a2e; }

@media (max-width: 980px) {
  .hub-sidenav { grid-template-columns: 1fr; padding: 1.5rem; }
  .hub-sidenav .sn-list {
    position: static;
    flex-direction: row; flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .hub-sidenav .sn-list a { white-space: nowrap; flex-shrink: 0; }
  .hub-sidenav .sn-list a .num { display: none; }
  .hub-sidenav .sn-content { padding: 0; }
}

/* ============================================================
   HUB-DEEP · Sub-Themen ausführlich (4 Sektionen pro Thema)
   ============================================================ */
.topic-toc {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
  margin: var(--s-5) 0 var(--s-7);
}
@media (max-width: 1100px) { .topic-toc { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .topic-toc { grid-template-columns: repeat(2, 1fr); } }
.topic-toc-item {
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0.9rem 1rem;
  text-decoration: none; color: var(--forest);
  font-size: 14px; font-weight: 600;
  transition: all 0.3s var(--ease-out);
}
.topic-toc-item:hover { background: var(--sage-mist); border-color: var(--sage); transform: translateY(-2px); }
.topic-toc-item .num { width: 24px; height: 24px; border-radius: 50%; background: var(--sage-mist); color: var(--forest); display: grid; place-items: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.topic-toc-item .ico { font-size: 1.1rem; }

.topic-deep {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: var(--s-6);
  scroll-margin-top: 100px;
}
.topic-deep .topic-hero {
  background: linear-gradient(135deg, #C9D5BD 0%, #DDE5DD 100%);
  padding: 2.5rem 3rem;
  display: grid; grid-template-columns: 1fr 280px;
  gap: 2rem; align-items: center;
}
@media (max-width: 900px) {
  .topic-deep .topic-hero { grid-template-columns: 1fr; padding: 2rem; }
}
.topic-deep .topic-hero .eyebrow { color: var(--forest); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; }
.topic-deep .topic-hero h2 { font-family: var(--display); font-weight: 350; font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--forest); margin: 0.6rem 0 1rem; letter-spacing: -0.02em; line-height: 1.1; }
.topic-deep .topic-hero h2 em { font-style: italic; color: var(--sage-dark); }
.topic-deep .topic-hero .topic-lead { font-size: 16px; color: var(--ink); line-height: 1.6; margin: 0; }
.topic-deep .topic-hero .topic-visual { background: rgba(255,255,255,0.6); border-radius: var(--r); aspect-ratio: 4/3; display: grid; place-items: center; font-size: 5rem; }

.topic-deep .topic-body { padding: 2.5rem 3rem 3rem; }
@media (max-width: 900px) { .topic-deep .topic-body { padding: 2rem; } }

.topic-deep .topic-section + .topic-section { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.topic-deep .topic-section.first { margin-top: 0; padding-top: 0; border-top: none; }
.topic-deep .topic-section h3 { font-family: var(--display); font-weight: 350; font-size: clamp(1.3rem, 2.4vw, 1.6rem); color: var(--forest); margin: 0 0 1rem; letter-spacing: -0.015em; }
.topic-deep .topic-section h3 em { font-style: italic; color: var(--sage-dark); }
.topic-deep .topic-section p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; margin: 0 0 1rem; }
.topic-deep .topic-section p strong { color: var(--ink); font-weight: 600; }
.topic-deep .topic-section ul { padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin: 0 0 1rem; }
.topic-deep .topic-section ul li { display: flex; gap: 0.8rem; font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.topic-deep .topic-section ul li::before { content: "→"; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.topic-deep .topic-section ul li strong { color: var(--ink); font-weight: 600; }

.sources-box {
  background: var(--cream-deep); border-radius: var(--r);
  padding: 1.4rem 1.6rem; margin: 1.5rem 0;
}
.sources-box .eyebrow-mini { color: var(--sage-dark); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.6rem; display: block; }
.sources-box ul { padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin: 0; }
.sources-box ul li { font-size: 13px; color: var(--ink-soft); line-height: 1.5; display: block; }
.sources-box ul li::before { content: ""; }
.sources-box ul li em { color: var(--forest); font-style: italic; }

.cross-links {
  background: var(--sage-mist); border-radius: var(--r-lg);
  padding: 1.6rem; margin: 1.8rem 0;
  display: grid; gap: 0.7rem;
}
.cross-links .eyebrow-mini { color: var(--forest); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.4rem; }
.cross-links a {
  display: flex; align-items: center;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.6); border-radius: var(--r);
  text-decoration: none; transition: background 0.3s var(--ease-out);
}
.cross-links a:hover { background: rgba(255,255,255,0.95); }
.cross-links a .ico { font-size: 1.4rem; margin-right: 0.9rem; flex-shrink: 0; }
.cross-links a .txt { flex: 1; font-size: 14px; color: var(--forest); font-weight: 600; }
.cross-links a .txt small { display: block; font-weight: 400; color: var(--ink-soft); font-size: 12.5px; margin-top: 0.2rem; }
.cross-links a .arr { color: var(--sage-dark); font-weight: 700; margin-left: 0.8rem; }

.cta-compare {
  background: var(--forest); color: var(--cream);
  border-radius: var(--r-lg); padding: 1.6rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; flex-wrap: wrap;
  margin: 1.8rem 0 0;
}
.cta-compare .cta-text h4 { font-family: var(--display); font-weight: 400; font-size: 1.3rem; margin: 0 0 0.3rem; color: var(--cream); letter-spacing: -0.01em; }
.cta-compare .cta-text p { margin: 0; opacity: 0.85; font-size: 14px; }
.cta-compare .cta-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cta-compare a {
  background: var(--gold); color: var(--forest);
  padding: 0.85rem 1.5rem; border-radius: var(--r-pill);
  font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  text-decoration: none; white-space: nowrap;
  transition: all 0.2s var(--ease-out);
  border: 1px solid var(--gold);
}
.cta-compare a:hover { transform: translateY(-2px); }
.cta-compare a.secondary {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(250,247,242,0.35);
}
.cta-compare a.secondary:hover { background: rgba(250,247,242,0.1); border-color: rgba(250,247,242,0.6); }

/* ---------- COMMUNITY · Brand-Color Cards ---------- */
.community-section .section-head .eyebrow { color: var(--forest); }
.community-section .section-head .eyebrow::before { background: var(--forest); }
.community-section .section-head h2 { color: var(--forest); }
.community-section .section-head h2 em { color: var(--cream); font-style: italic; }
.community-section .section-head p { color: var(--forest); opacity: 0.85; }

.community-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: var(--s-3);
}
.channel {
  display: block;
  padding: 0;
  border-radius: var(--r-lg);
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  color: #fff;
  aspect-ratio: 3 / 5;
  min-height: 320px;
}
.channel:hover { transform: translateY(-6px); }

.channel.tiktok    { background: #000; box-shadow: 0 16px 32px -16px rgba(0,0,0,0.4); }
.channel.tiktok:hover { box-shadow: 0 22px 44px -12px rgba(255, 0, 80, 0.45); }
.channel.instagram { background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 80%, #515BD4 100%); box-shadow: 0 16px 32px -16px rgba(221, 42, 123, 0.4); }
.channel.instagram:hover { box-shadow: 0 22px 44px -12px rgba(221, 42, 123, 0.5); }
.channel.linkedin  { background: #0A66C2; box-shadow: 0 16px 32px -16px rgba(10, 102, 194, 0.4); }
.channel.linkedin:hover { box-shadow: 0 22px 44px -12px rgba(10, 102, 194, 0.55); }
.channel.facebook  { background: #1877F2; box-shadow: 0 16px 32px -16px rgba(24, 119, 242, 0.4); }
.channel.facebook:hover { box-shadow: 0 22px 44px -12px rgba(24, 119, 242, 0.55); }
.channel.whatsapp  { background: #25D366; box-shadow: 0 16px 32px -16px rgba(37, 211, 102, 0.4); }
.channel.whatsapp:hover { box-shadow: 0 22px 44px -12px rgba(37, 211, 102, 0.55); }
.channel.youtube   { background: #FF0033; box-shadow: 0 16px 32px -16px rgba(255, 0, 51, 0.4); }
.channel.youtube:hover { box-shadow: 0 22px 44px -12px rgba(255, 0, 51, 0.55); }

/* Icon-Badge oben rechts */
.channel-icon {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid; place-items: center;
  z-index: 3;
}
.channel-icon svg { width: 22px; height: 22px; fill: #fff; }

/* Vertikaler Brand-Name (Magazine-Style, hochkant links) */
.channel-name-vert {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  z-index: 4;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
.channel:hover .channel-name-vert { opacity: 0.85; }

/* Default Content unten links — nur Desc + CTA, kein Name */
.channel-default {
  position: absolute;
  left: 3.5rem; right: 1.2rem; bottom: 1.2rem;
  z-index: 2;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.channel-name { display: none; }
.channel-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
  margin: 0 0 0.8rem;
}
.channel-cta {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.channel-cta::after {
  content: "→";
  transition: transform 0.3s var(--ease-out);
}
.channel:hover .channel-cta::after { transform: translateX(4px); }

@media (max-width: 1100px) {
  .community-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .channel { aspect-ratio: auto; min-height: 280px; }
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 880px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  padding: var(--s-5) 0;
  text-align: left;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  letter-spacing: -0.01em;
  color: var(--forest);
  transition: color 0.3s var(--ease-out);
}
.faq-q:hover { color: var(--sage-dark); }
.faq-q .plus {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid var(--ink-muted);
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  transition: all 0.4s var(--ease-out);
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out);
}
.faq-q .plus::before { width: 12px; height: 1px; }
.faq-q .plus::after { width: 1px; height: 12px; }
.faq-item.is-open .faq-q .plus { background: var(--forest); border-color: var(--forest); }
.faq-item.is-open .faq-q .plus::before, .faq-item.is-open .faq-q .plus::after { background: var(--cream); }
.faq-item.is-open .faq-q .plus::after { transform: scaleY(0); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.faq-item.is-open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 var(--s-5);
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 15px; line-height: 1.7;
}
.faq-a-inner a { color: var(--sage-dark); border-bottom: 1px solid var(--sage-dark); }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--sage-mist), var(--cream-deep));
  border-radius: var(--r-lg);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0 0 var(--s-3);
  line-height: 1.05;
}
.final-cta p { color: var(--ink-soft); max-width: 540px; margin: 0 auto var(--s-6); }
.final-form {
  display: flex; gap: var(--s-2);
  max-width: 520px;
  margin-inline: auto;
  background: var(--paper);
  border-radius: var(--r-pill);
  padding: 0.4rem 0.4rem 0.4rem 1.5rem;
  box-shadow: var(--shadow-2);
}
.final-form input {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: 15px; padding: 0.7rem 0;
}
.final-form button {
  background: var(--forest); color: var(--cream);
  padding: 0.8rem 1.4rem;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 14px;
}
.final-form button:hover { background: var(--sage-dark); }

/* ---------- FOOTER ---------- */
footer {
  background: var(--forest);
  color: var(--cream);
  padding: var(--s-9) 0 var(--s-6);
  margin-top: var(--s-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(250, 247, 242, 0.12);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--s-3); margin-top: -30px; }
.footer-brand .brand {
  height: 100px;
  margin-bottom: -27px;
  margin-left: -11px;
}
.footer-brand .tagline {
  font-family: var(--display); font-style: italic;
  color: rgba(250, 247, 242, 0.7);
  font-size: 1.05rem; line-height: 1.4;
  max-width: 280px;
}
.footer-brand .address {
  font-size: 13px; color: rgba(250, 247, 242, 0.6);
  line-height: 1.6;
}
.footer-col h5 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--s-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-col a {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.78);
  transition: color 0.3s var(--ease-out);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--s-4);
  padding-top: var(--s-5);
  font-size: 13px;
  color: rgba(250, 247, 242, 0.55);
}
.footer-langs { display: flex; gap: var(--s-3); }
.footer-langs button {
  font-size: 12px; font-weight: 600;
  color: rgba(250, 247, 242, 0.6);
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 0.6rem; border-radius: var(--r);
  transition: all 0.3s var(--ease-out);
}
.footer-langs button:hover, .footer-langs button.is-active { background: rgba(250, 247, 242, 0.1); color: var(--cream); }

@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- DIVIDER mit YUTHI-Mark (Sage-Hintergrund, dunkles Grün-Symbol) ---------- */
.botanical-divider {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s-5);
  padding: var(--s-7) var(--gutter);
  background: #93b48b;
  color: var(--forest);
  margin: 0;
}
.botanical-divider .line {
  flex: 1; max-width: 260px;
  height: 1px; background: rgba(31, 45, 32, 0.25);
}
.botanical-divider svg { width: 28px; height: 28px; }
.divider-mark {
  width: 64px; height: 64px;
  display: block;
  flex-shrink: 0;
}

/* ---------- HUB-PAGE-SPEZIFISCH (für diagnostik.html) ---------- */
.page-hero {
  padding: var(--s-9) 0 var(--s-7);
  background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
  position: relative;
}
.page-hero .breadcrumb {
  font-size: 12px; color: var(--ink-muted);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: var(--s-5);
}
.page-hero .breadcrumb a { color: var(--ink-muted); }
.page-hero .breadcrumb a:hover { color: var(--sage-dark); }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--forest);
  margin: 0 0 var(--s-4);
  max-width: 14ch;
}
.page-hero h1 em { font-style: italic; color: var(--sage-dark); font-variation-settings: "opsz" 144, "SOFT" 100; }
.page-hero .lead { max-width: 620px; }

.page-hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: var(--s-7);
  padding-top: var(--s-6);
  border-top: 1px solid var(--line);
}
.page-stat .num {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest); line-height: 1;
}
.page-stat .label {
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-muted);
  margin-top: 0.4rem;
}

.subhubs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.subhub {
  padding: var(--s-5);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: all 0.3s var(--ease-out);
}
.subhub:hover { background: var(--cream-deep); transform: translateY(-2px); }
.subhub h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0 0 var(--s-2);
  color: var(--forest);
}
.subhub p { font-size: 13px; color: var(--ink-soft); margin: 0; }

@media (max-width: 880px) { .subhubs { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .subhubs { grid-template-columns: 1fr; } }

.providers-table {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.providers-table .row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr auto;
  gap: var(--s-4);
  padding: var(--s-5);
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease-out);
}
.providers-table .row:hover { background: var(--cream); }
.providers-table .row:last-child { border-bottom: none; }
.providers-table .row.head {
  background: var(--cream-deep);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
}
.providers-table .row.head:hover { background: var(--cream-deep); }
.provider-name {
  font-family: var(--display); font-weight: 400;
  font-size: 1.15rem; color: var(--forest);
  letter-spacing: -0.01em;
}
.provider-name small { display: block; font-family: var(--body); font-size: 12px; color: var(--ink-muted); margin-top: 2px; letter-spacing: 0.06em; }
.providers-table .city, .providers-table .price { font-size: 14px; color: var(--ink-soft); }
.providers-table .yuthi-score {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--sage-mist); color: var(--forest);
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 980px) {
  .providers-table .row { grid-template-columns: 1fr; gap: var(--s-2); }
  .providers-table .row.head { display: none; }
  .providers-table .row > * { display: block; }
  .providers-table .city::before { content: "📍 "; }
  .providers-table .price::before { content: "💰 "; }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NEUE KOMPONENTEN — Mega-Menü, Such-Widget, Plattform-Block
   ============================================================ */

/* ---------- MEGA-MENÜ (Hover) ---------- */
.nav-main { gap: clamp(0.6rem, 1.6vw, 1.4rem); }
.nav-item {
  position: static;
  display: flex; align-items: center;
}
.nav-item > a {
  position: relative;
  padding: 0.4rem 0;
  color: var(--ink);
  font-size: 14px; font-weight: 500;
  transition: color 0.25s var(--ease-out);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.nav-item > a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--sage-dark);
  transition: width 0.4s var(--ease-out);
}
.nav-item:hover > a,
.nav-item:focus-within > a,
.nav-item.is-open > a { color: var(--sage-dark); }
.nav-item:hover > a::after,
.nav-item:focus-within > a::after,
.nav-item.is-open > a::after { width: 100%; }

.megamenu {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--s-7) 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), visibility 0.35s var(--ease-out);
  z-index: 50;
  pointer-events: none;
  box-shadow: 0 24px 40px -20px rgba(31,45,32,0.15);
}
/* Unsichtbare Brücke zwischen Pill und Mega-Menü — verhindert „Hover-Loch" */
.megamenu::before {
  content: "";
  position: absolute;
  top: -20px; left: 0; right: 0;
  height: 20px;
}
.nav-item:hover .megamenu,
.nav-item:focus-within .megamenu,
.nav-item.is-open .megamenu {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.megamenu-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--s-7);
}
.megamenu-intro { padding-right: var(--s-6); border-right: 1px solid var(--line); }
.megamenu-intro .icon { font-size: 2.2rem; margin-bottom: var(--s-3); }
.megamenu-intro h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0 0 var(--s-2);
}
.megamenu-intro p { font-size: 14px; color: var(--ink-soft); margin: 0 0 var(--s-4); line-height: 1.55; }

.megamenu-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3) var(--s-5);
  align-content: start;
}
.megamenu-item {
  display: block;
  padding: var(--s-2) 0;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  transition: color 0.25s var(--ease-out), padding-left 0.3s var(--ease-out);
  border-bottom: 1px solid var(--line);
}
.megamenu-item:hover { color: var(--sage-dark); padding-left: 0.4rem; }
.megamenu-item small {
  display: block;
  font-size: 12px; font-weight: 400;
  color: var(--ink-muted);
  margin-top: 2px;
}
@media (max-width: 980px) { .megamenu { display: none; } }

/* ---------- HERO Cinematisch (Variante C: Vollflächen-Bild + Overlay) ---------- */
.hero.hero-cinematic {
  position: relative;
  min-height: clamp(640px, 88vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
  padding: clamp(4rem, 10vw, 8rem) 0;
  isolation: isolate;
}
/* Hintergrund-Slideshow als full-bleed Layer */
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg .hero-image-slide {
  position: absolute; inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s var(--ease-out);
  pointer-events: none;
}
.hero-bg .hero-image-slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
.hero-bg .hero-image-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
}
.hero-bg .hero-image-slide.is-active img {
  animation: hero-cinematic-zoom 7s linear forwards;
}
@keyframes hero-cinematic-zoom {
  from { transform: scale(1.06) translate(0, 0); }
  to   { transform: scale(1.15) translate(-1.5%, -1%); }
}

/* Dunkler Overlay über Bild für Lesbarkeit */
.hero-cinematic::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(31, 45, 32, 0.5) 0%,
    rgba(31, 45, 32, 0.3) 35%,
    rgba(31, 45, 32, 0.55) 70%,
    rgba(31, 45, 32, 0.85) 100%);
  z-index: 3;
  pointer-events: none;
}

/* Content zentriert im Vordergrund */
.hero-cinematic-content {
  position: relative;
  z-index: 4;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.hero-cinematic .hero-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.hero-cinematic .hero-eyebrow::before { content: none; }
.hero-cinematic .hero-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.4rem, 6.2vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.hero-cinematic .hero-headline span { display: inline; margin-right: 0.4rem; }
.hero-cinematic .hero-headline .accent {
  display: block;
  margin-right: 0;
  margin-top: 0.15em;
  font-style: italic;
  color: var(--gold-soft);
}
.hero-cinematic .hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: rgba(250, 247, 242, 0.96);
  max-width: 920px;
  margin: 1.6rem auto 2.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-cinematic .hero-trust {
  display: inline-flex;
  gap: clamp(1.2rem, 3.5vw, 2.6rem);
  flex-wrap: wrap;
  justify-content: center;
  font-size: 15px;
  color: rgba(250, 247, 242, 0.95);
  margin-top: 1.6rem;
  border: none;
  padding: 0;
}
.hero-cinematic .hero-trust span {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

/* Großes Such-Widget zentral — langes Suchfeld + Filter-Icon + Suchen-Button */
.hero-cinematic .search-big {
  max-width: 1120px;
  margin: 0 auto 0.5rem;
  background: rgba(255, 254, 251, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-pill);
  padding: 0.55rem 0.55rem 0.55rem 2rem;
  display: flex; align-items: center; gap: 0.7rem;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.5), 0 12px 24px -12px rgba(0, 0, 0, 0.25);
  text-align: left;
  position: relative;
}
.hero-cinematic .search-big .search-icon {
  flex-shrink: 0;
  color: var(--sage-dark);
  width: 26px; height: 26px;
}
.hero-cinematic .search-big input {
  flex: 1;
  border: none; outline: none; background: transparent;
  font-size: 17.5px;
  padding: 1.3rem 0;
  color: var(--ink);
  font-family: var(--body);
  min-width: 0;
}
.hero-cinematic .search-big input::placeholder { color: var(--ink-muted); }

.hero-cinematic .search-big .search-filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--forest);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  flex-shrink: 0;
  position: relative;
}
.hero-cinematic .search-big .search-filter-btn:hover {
  background: var(--cream-deep);
  border-color: var(--sage-dark);
}
.hero-cinematic .search-big .search-filter-btn.is-active {
  background: var(--sage-mist);
  border-color: var(--sage-dark);
  color: var(--forest);
}
.hero-cinematic .search-big .search-filter-btn svg {
  width: 22px; height: 22px;
}
.hero-cinematic .search-big .search-filter-btn .filter-badge {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--gold);
  color: var(--forest);
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.hero-cinematic .search-big .search-filter-btn.has-filters .filter-badge {
  opacity: 1;
}

.hero-cinematic .search-big .search-go {
  background: var(--gold);
  color: var(--forest);
  height: 52px;
  padding: 0 2rem;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 15.5px;
  border: none; cursor: pointer;
  transition: background 0.3s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.3s var(--ease-out);
  display: inline-flex; align-items: center; gap: 0.6rem;
  flex-shrink: 0;
}
.hero-cinematic .search-big .search-go:hover {
  background: #ffe199;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(255, 210, 117, 0.55);
}
.hero-cinematic .search-big .search-go svg {
  width: 20px; height: 20px;
  color: var(--forest);
  flex-shrink: 0;
}

/* Filter-Panel als Modal-Overlay (zentriert mit Backdrop) */
.search-filter-panel {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(31, 45, 32, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s var(--ease-out);
  text-align: left;
  color: var(--ink);
}
.search-filter-panel.is-open {
  opacity: 1;
  visibility: visible;
}
.filter-modal {
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5), 0 20px 40px -16px rgba(0,0,0,0.25);
  padding: 2rem 2rem 1.5rem;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.35s var(--ease-out);
}
.search-filter-panel.is-open .filter-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.filter-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.filter-modal-header h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--forest);
  margin: 0;
}
.filter-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--cream-deep);
  color: var(--forest);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.3s var(--ease-out), transform 0.2s var(--ease-out);
}
.filter-close:hover {
  background: var(--ink);
  color: var(--cream);
  transform: rotate(90deg);
}
.filter-close svg { width: 16px; height: 16px; }

@media (max-width: 540px) {
  .search-filter-panel { padding: 1rem; align-items: flex-end; }
  .filter-modal {
    max-width: none;
    max-height: 85vh;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    padding: 1.5rem 1.5rem 1.25rem;
  }
  .search-filter-panel.is-open .filter-modal {
    transform: translateY(0);
  }
}

.filter-group { margin-bottom: 1.1rem; }
.filter-group:last-of-type { margin-bottom: 0.5rem; }
.filter-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.5rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.filter-group select,
.filter-group input[type="text"] {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 14px;
  font-family: var(--body);
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%235C5950' stroke-width='1.8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}
.filter-group select:focus,
.filter-group input[type="text"]:focus {
  outline: 2px solid var(--sage-dark);
  outline-offset: 2px;
}

.filter-radius {
  display: flex; align-items: center; gap: 0.8rem;
}
.filter-radius input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--cream-deep);
  outline: none;
}
.filter-radius input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--forest);
  cursor: pointer;
  border: 2px solid var(--paper);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.filter-radius input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--forest);
  cursor: pointer;
  border: 2px solid var(--paper);
}
.filter-radius .radius-value {
  font-size: 13px; font-weight: 700;
  color: var(--forest);
  min-width: 56px;
  text-align: right;
}

.filter-actions {
  display: flex; justify-content: space-between; gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.filter-reset {
  background: transparent;
  color: var(--ink-soft);
  border: none;
  padding: 0.5rem 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
}
.filter-reset:hover { color: var(--forest); }
.filter-apply {
  background: var(--forest);
  color: var(--cream);
  border: none;
  padding: 0.65rem 1.3rem;
  border-radius: var(--r);
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  transition: background 0.3s var(--ease-out);
}
.filter-apply:hover { background: var(--sage-dark); }

@media (max-width: 540px) {
  .hero-cinematic .search-big {
    padding: 0.45rem 0.45rem 0.45rem 1.2rem;
    flex-wrap: wrap;
  }
  .hero-cinematic .search-big input { font-size: 15px; padding: 0.85rem 0; min-width: 100px; }
  .hero-cinematic .search-big .search-go { padding: 0 1rem; font-size: 13px; }
}

.hero-cinematic .search-quick {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: 14px;
  color: rgba(250, 247, 242, 0.85);
}
.hero-cinematic .search-quick a {
  padding: 0.45rem 1rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s var(--ease-out);
}
.hero-cinematic .search-quick a:hover { background: rgba(255, 255, 255, 0.32); }

/* Badge oben rechts */
.hero-cinematic .hero-badge {
  position: absolute;
  top: clamp(1.5rem, 3vw, 2.5rem);
  right: clamp(1.5rem, 3vw, 2.5rem);
  z-index: 5;
  background: var(--gold);
  color: var(--forest);
  padding: 0.6rem 1.1rem;
  border-radius: var(--r);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.35);
}

/* Slideshow-Dots am unteren Rand zentriert (ohne Balken) */
.hero-cinematic .hero-image-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0 auto;
  width: fit-content;
  transform: none;
  z-index: 5;
  display: flex; gap: 0.65rem;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  border-radius: 0;
  justify-content: center;
}
.hero-cinematic .hero-image-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.hero-cinematic .hero-image-dot:hover { background: rgba(255, 255, 255, 0.9); }
.hero-cinematic .hero-image-dot.is-active {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Captions weg im cinematic-Modus (zu viel Info) */
.hero-cinematic .hero-image-caption { display: none; }

@media (max-width: 720px) {
  .hero-cinematic .hero-badge { position: static; display: inline-block; margin-bottom: 1.5rem; }
}

/* Hero-Image-Slideshow (Crossfade-Loop, Ken-Burns + Mouse-Tilt 3D) */
.hero-content-row { perspective: 1400px; }
.hero-image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.35), 0 12px 24px -12px rgba(0, 0, 0, 0.18);
  aspect-ratio: 4 / 3;
  background: var(--cream-deep);
  transition: transform 0.22s ease-out, box-shadow 0.4s var(--ease-out);
  isolation: isolate;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-image:hover {
  box-shadow:
    0 50px 90px -35px rgba(0, 0, 0, 0.45),
    0 20px 40px -18px rgba(0, 0, 0, 0.25);
}
.hero-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(31, 45, 32, 0.45) 100%);
  pointer-events: none;
  z-index: 3;
}

/* JS-gesteuerte Slideshow: jeder Slide bekommt .is-active per JavaScript */
.hero-image-slide {
  position: absolute; inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s var(--ease-out);
  pointer-events: none;
}
.hero-image-slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hero-image-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.8s var(--ease-out);
}
.hero-image-slide.is-active img {
  animation: slideshow-kenburns 6s linear forwards;
}
@keyframes slideshow-kenburns {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1%, -0.8%); }
}

.hero-image-caption {
  position: absolute;
  left: var(--s-5); bottom: var(--s-5);
  z-index: 4;
  color: var(--cream);
  letter-spacing: 0.02em;
  display: flex; flex-direction: column; gap: 0.4rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  max-width: calc(100% - var(--s-7));
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.hero-image-slide.is-active .hero-image-caption {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.hero-image-caption .tag {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.4rem 0.85rem;
  background: rgba(31, 45, 32, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  width: fit-content;
  border: 1px solid rgba(250, 247, 242, 0.2);
}
.hero-image-caption .desc,
.hero-image-caption > span:not(.tag) {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--cream);
}

/* Slide-Indikator-Punkte unten rechts — klickbar für manuelles Navigieren */
.hero-image-dots {
  position: absolute;
  right: var(--s-5); bottom: var(--s-5);
  z-index: 4;
  display: flex; gap: 0.5rem;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 0.7rem;
  border-radius: var(--r-pill);
}
.hero-image-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.hero-image-dot:hover { background: rgba(255, 255, 255, 0.75); }
.hero-image-dot.is-active {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.25);
}

@media (prefers-reduced-motion: reduce) {
  .hero-image-slide,
  .hero-image-slide img,
  .hero-image-caption { transition: none; animation: none; }
}

/* HUB-Pills im Hero (Booking-Tab-Style) */
.hub-pills {
  display: flex; flex-wrap: wrap; gap: var(--s-2);
  margin-bottom: var(--s-6);
  position: relative; z-index: 2;
}
.hub-pill,
a.hub-pill,
a.hub-pill:link,
a.hub-pill:visited {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1rem;
  border-radius: var(--r);          /* 8px — wie Registrieren-Button */
  font-size: 14px; font-weight: 600;
  border: none;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}
.hub-pill:hover,
a.hub-pill:hover,
a.hub-pill:visited:hover,
.hub-pill.is-active {
  background: var(--cream);
  color: var(--forest);
  font-weight: 700;
}

/* ---------- SUCH-WIDGET (Booking/Airbnb-Style) ---------- */
.search-widget {
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 60px -25px rgba(31,45,32,0.25), 0 12px 24px -12px rgba(31,45,32,0.12);
  padding: var(--s-5);
  position: relative;
}
.search-widget-tabs {
  display: flex; flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--line);
}
.search-tab {
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-pill);
  background: transparent;
  font-weight: 500; font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.search-tab:hover { background: var(--cream-deep); }
.search-tab.is-active { background: var(--forest); color: var(--cream); }

.search-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1px;
  background: var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.search-field {
  background: var(--paper);
  padding: var(--s-3) var(--s-5);
  display: flex; flex-direction: column; gap: 4px;
  cursor: pointer;
  transition: background 0.3s var(--ease-out);
  text-align: left;
  border: none;
  font: inherit;
}
.search-field:hover { background: var(--cream); }
.search-field-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.search-field-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.search-field-value.placeholder { color: var(--ink-muted); font-weight: 400; }
.search-go {
  background: var(--forest);
  color: var(--cream);
  padding: 0 var(--s-6);
  min-height: 64px;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: background 0.3s var(--ease-out);
}
.search-go:hover { background: var(--sage-dark); }
.search-go svg { width: 18px; height: 18px; }

@media (max-width: 880px) {
  .search-fields { grid-template-columns: 1fr; }
  .search-go { padding: 1rem; min-height: auto; }
}

.search-quick {
  margin-top: var(--s-4);
  display: flex; flex-wrap: wrap; gap: var(--s-2);
  align-items: center;
  font-size: 13px; color: var(--ink-muted);
}
.search-quick a {
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  background: var(--cream);
  font-weight: 500;
  transition: all 0.3s var(--ease-out);
}
.search-quick a:hover { background: var(--sage-mist); color: var(--forest); }

/* ---------- PLATTFORM-STATS-BLOCK (Variante B: helle Cards + Gold-Spotlight) ---------- */
.platform-stats-section {
  position: relative;
  z-index: 2;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(180deg,
    var(--cream) 0%,
    #93b48b 100%);
}
.platform-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px -25px rgba(31, 45, 32, 0.3), 0 12px 24px -12px rgba(0,0,0,0.12);
  isolation: isolate;
  border: 1px solid rgba(31, 45, 32, 0.05);
}
/* Spotlight folgt Maus in #C9A14A Gold */
.platform-stats::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255, 210, 117, 0.45), transparent 65%);
  border-radius: 50%;
  left: var(--mx, 50%);
  top: var(--my, 50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: 0;
}
.platform-stats:hover::before { opacity: 1; }

.platform-stat {
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.2rem, 2vw, 1.8rem);
  text-align: center;
  border-right: 1px solid rgba(31, 45, 32, 0.08);
  position: relative; z-index: 1;
  transition: transform 0.4s var(--ease-out);
}
.platform-stat:last-child { border-right: none; }
.platform-stat:hover { transform: translateY(-4px); }

.platform-stat .icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
  transition: transform 0.4s var(--ease-bouncy);
}
.platform-stat:hover .icon { transform: scale(1.15) rotate(-5deg); }

.platform-stat .icon.flags-stack {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.platform-stat .num {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  color: var(--forest);
  line-height: 1;
  display: inline-block;
}
.platform-stat .num em {
  color: var(--sage-dark);
  font-style: italic;
}
.platform-stat .label {
  margin-top: 0.4rem;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}
.platform-stat .micro {
  margin-top: 0.5rem;
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
}
@media (max-width: 880px) {
  .platform-stats { grid-template-columns: repeat(2, 1fr); }
  .platform-stat:nth-child(2) { border-right: none; }
  .platform-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(31, 45, 32, 0.08); }
}

/* ---------- Sage-Fade in die nächste Sektion ("So funktioniert YUTHI") ---------- */
.section-fade-from-sage {
  background: linear-gradient(180deg,
    #93b48b 0%,
    var(--cream) 35%);
  padding-top: clamp(3rem, 6vw, 5rem) !important;
}
.platform-stat .num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  color: var(--forest);
  letter-spacing: -0.025em;
  line-height: 1;
  display: block;
}
.platform-stat .num em { font-style: italic; color: var(--sage-dark); }
.platform-stat .label {
  margin-top: var(--s-2);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.platform-stat .micro {
  margin-top: var(--s-2);
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
}
@media (max-width: 880px) {
  .platform-stats { grid-template-columns: repeat(2, 1fr); }
  .platform-stat:nth-child(2) { border-right: none; }
}

/* ---------- LIVE-PLATTFORM-AKTIVITÄT ---------- */
.live-feed {
  background: rgba(255, 254, 251, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(250, 247, 242, 0.25);
  border-radius: var(--r);
  padding: var(--s-4) var(--s-5);
  margin-top: var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-3);
  max-width: 520px;
}
.live-feed-head {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.live-pulse {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: live-pulse 2s ease-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 161, 74, 0.6); }
  100% { box-shadow: 0 0 0 12px rgba(201, 161, 74, 0); }
}
.live-item {
  display: flex; gap: 0.7rem;
  font-size: 13px;
  color: rgba(250, 247, 242, 0.85);
  align-items: flex-start;
  line-height: 1.45;
}
.live-item .when {
  color: rgba(250, 247, 242, 0.55);
  flex-shrink: 0; min-width: 38px;
  font-size: 11px; padding-top: 2px; letter-spacing: 0.05em;
}
.live-item strong { color: var(--cream); font-weight: 700; }

/* ---------- SPLASH 2-Schritte: Sprache + Wohnsitz ---------- */
.splash-section { margin-bottom: clamp(1rem, 2.5vh, 1.6rem); width: 100%; max-width: 540px; }
.splash-section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--s-3);
  text-align: center;
}
.splash-langs-row {
  display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap;
}
.splash-mini-lang {
  padding: 0.6rem 1.1rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--ink-muted);
  background: transparent;
  color: var(--forest);
  font-weight: 600; font-size: 13px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.splash-mini-lang:hover, .splash-mini-lang.is-active {
  background: var(--forest); color: var(--cream); border-color: var(--forest);
}

/* ---------- DOMAIN-WAHL IM SPLASH ---------- */
.splash-countries {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3);
  max-width: 480px; width: 100%;
}
.splash-country {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: var(--s-4) var(--s-5);
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  text-align: left;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}
.splash-country:hover {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.splash-country .flag-domain {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 16px;
  color: var(--forest);
  transition: color 0.3s var(--ease-out);
}
.splash-country:hover .flag-domain { color: var(--cream); }
.splash-country .flag { font-size: 1.3rem; }
.splash-country .country-name {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.splash-country:hover .country-name { color: rgba(250, 247, 242, 0.7); }

/* ---------- ACCESSIBILITY ---------- */
:focus-visible {
  outline: 2px solid var(--sage-dark);
  outline-offset: 3px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   FLOW-HERO — Sage→Cream Verlauf, nahtlos mit Topbar verbunden
   Aktiviert durch <body class="has-flow-hero">
   Wirkt auf: .hero-anim (Hubs), .subhub-hero (Sub-Hubs)
   ════════════════════════════════════════════════════════════════════════ */

/* Topbar nahtlos an Hero anschließen — auch beim Scrollen */
body.has-flow-hero .topbar {
  box-shadow: none !important;
  border-bottom: 0 !important;
  background: var(--sage) !important;
}
body.has-flow-hero .topbar.is-scrolled {
  box-shadow: none !important;
  background: var(--sage) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Hero: Sage→Cream Verlauf */
body.has-flow-hero .hero-anim,
body.has-flow-hero .subhub-hero,
body.has-flow-hero .list-hero,
body.has-flow-hero .mp-hero {
  background: linear-gradient(180deg,
    var(--sage) 0%,
    var(--sage) 16%,
    #99B891 24%,
    #A8C09F 36%,
    #B8CDB0 48%,
    #C7DABF 60%,
    #D5E0CC 70%,
    #DDE5DD 80%,
    #ECEDE4 90%,
    var(--cream) 100%) !important;
  color: var(--forest);
  padding: 2rem var(--gutter) 11rem;
  position: relative;
  overflow: hidden;
  min-height: 620px;   /* konsistente Höhe — auch bei kurzen Texten */
}

/* Glow-Spots — subtle, ab Mitte */
body.has-flow-hero .hero-anim::before,
body.has-flow-hero .subhub-hero::before,
body.has-flow-hero .list-hero::before,
body.has-flow-hero .mp-hero::before {
  content: "";
  position: absolute;
  top: 55%; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 70%, rgba(255,210,117,0.04), transparent 85%),
    radial-gradient(ellipse 70% 50% at 80% 80%, rgba(72,102,80,0.04), transparent 85%);
  pointer-events: none;
}

/* Eyebrow — Gold-Dark mit Linie davor */
body.has-flow-hero .hero-anim .eyebrow,
body.has-flow-hero .subhub-hero .eyebrow {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
body.has-flow-hero .hero-anim .eyebrow::before,
body.has-flow-hero .subhub-hero .eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold-dark);
  margin-right: 0.7rem;
  vertical-align: middle;
}

/* H1 — Forest, leicht-light, mit harmonischen Abständen */
body.has-flow-hero .hero-anim h1,
body.has-flow-hero .subhub-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  color: var(--forest);
  margin: 1.6rem 0 1.8rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* H1 .rotate — Shimmer-Effekt entfernt, ruhige Forest-Überschrift */
body.has-flow-hero .hero-anim h1 .rotate,
body.has-flow-hero .subhub-hero h1 .rotate {
  display: inline-block;
  font-style: italic;
  /* kein Goldverlauf, kein clip-text, keine Animation mehr */
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--forest);
  color: var(--forest);
  animation: none;
  transition: opacity 0.35s ease;
}

/* Lead — Forest @ 85% */
body.has-flow-hero .hero-anim .hero-lead,
body.has-flow-hero .subhub-hero .hero-lead {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--forest);
  max-width: 720px;
  line-height: 1.6;
  margin: 1.6rem 0 0;
  opacity: 0.85;
}
body.has-flow-hero .hero-anim .lead,
body.has-flow-hero .subhub-hero .lead {
  color: var(--forest);
  opacity: 0.85;
}

/* Question — Gold-Dark Akzent */
body.has-flow-hero .hero-anim .hero-question,
body.has-flow-hero .subhub-hero .hero-question {
  font-family: var(--display);
  font-weight: 350;
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  color: var(--gold-dark);
  margin: 2rem 0 0;
  opacity: 0.95;
}

/* CTAs — Forest mit Cream-Text */
body.has-flow-hero .hero-anim .hero-top-cta,
body.has-flow-hero .hero-anim .hero-bottom-cta,
body.has-flow-hero .subhub-hero .hero-top-cta,
body.has-flow-hero .subhub-hero .hero-bottom-cta {
  background: var(--forest) !important;
  color: var(--cream) !important;
  border: 1px solid var(--forest) !important;
  box-shadow: 0 8px 20px -8px rgba(31,45,32,0.5) !important;
}
body.has-flow-hero .hero-anim .hero-top-cta:hover,
body.has-flow-hero .hero-anim .hero-bottom-cta:hover,
body.has-flow-hero .subhub-hero .hero-top-cta:hover,
body.has-flow-hero .subhub-hero .hero-bottom-cta:hover {
  background: #2a4030 !important;
  box-shadow: 0 12px 28px -8px rgba(31,45,32,0.6) !important;
  transform: translateY(-2px);
}
body.has-flow-hero .hero-anim .hero-top-cta-secondary,
body.has-flow-hero .subhub-hero .hero-top-cta-secondary {
  background: transparent !important;
  color: var(--forest) !important;
  border-color: rgba(31,45,32,0.5) !important;
  box-shadow: none !important;
}
body.has-flow-hero .hero-anim .hero-top-cta-secondary:hover,
body.has-flow-hero .subhub-hero .hero-top-cta-secondary:hover {
  background: rgba(31,45,32,0.08) !important;
  border-color: var(--forest) !important;
}

/* Hero-CTAs-Row — Container-Mitte auf Question-Linie (vom Hero-Top gemessen — unabhängig von min-height) */
body.has-flow-hero .hero-anim .hero-ctas-row,
body.has-flow-hero .subhub-hero .hero-ctas-row {
  top: 15rem !important;             /* CTAs etwa auf Question-Linie vom Hero-Top */
  bottom: auto !important;
  transform: none !important;
  align-items: center !important;
}

/* Goldene Hairline mit Glow am Übergang Hero → nächste Sektion */
body.has-flow-hero .hero-anim + section,
body.has-flow-hero .subhub-hero + section,
body.has-flow-hero .list-hero + section,
body.has-flow-hero .mp-hero + section {
  position: relative;
}
body.has-flow-hero .hero-anim + section::before,
body.has-flow-hero .subhub-hero + section::before,
body.has-flow-hero .list-hero + section::before,
body.has-flow-hero .mp-hero + section::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 0;                      /* an der Cream-Sektion-Top — wie sport.html */
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 18%, var(--gold) 82%, transparent 100%);
  box-shadow: 0 0 16px rgba(201, 161, 74, 0.6);
  z-index: 10;
  border-radius: 24px 24px 0 0;  /* matched Cream-Sektion border-radius */
  pointer-events: none;
}

/* Sub-Hub: Erste Section direkt nach Hero wird selbst zur Cream-Section
   (statt separater hero-cream-trim) — Content fließt direkt nach Hairline */
body.has-flow-hero .subhub-hero + section {
  background: var(--cream) !important;
  margin-top: -240px !important;
  padding-top: 3rem !important;
  padding-bottom: 5rem !important;
  position: relative;
  z-index: 5;
  border-radius: 24px 24px 0 0;
}
body.has-flow-hero .subhub-hero + section > .inner > :first-child {
  margin-top: 0 !important;
}

/* Mehr Atemraum zwischen allen Sub-Hub-Sektionen */
body.has-flow-hero .subhub-hero ~ section ~ section {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* Science-Section: Forest-Linie 100px höher, Content bleibt an gleicher Position */
body.has-flow-hero .subhub-hero ~ section.science-section {
  background: var(--forest) !important;
  margin-top: -100px !important;
  padding-top: calc(4rem + 100px) !important;       /* Content ~50px höher gerückt */
  padding-bottom: 5rem !important;
  position: relative;
  z-index: 4;
}

/* Glossary-Section: Verlauf in der Mitte statt nur am Bottom */
body.has-flow-hero .glossary-section {
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    var(--cream) 40%,
    var(--sage) 65%,
    var(--sage) 100%
  ) !important;
}

/* ============================================================
   SUB-HUB END-CTA — Variante A (Sage-Banner)
   Eingesetzt am Ende jeder Sub-Hub-Seite vor dem Footer
   ============================================================ */
.subhub-end-cta-section {
  background: var(--forest);
  padding: 2.4rem var(--gutter) 3rem;
}
.cta-sage {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-darker) 100%);
  color: white;
  border-radius: 14px;
  padding: 1.6rem 1.9rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.6rem; flex-wrap: wrap;
  box-shadow: 0 18px 44px rgba(31, 45, 32, 0.14);
  position: relative;
  overflow: hidden;
}
.cta-sage::before {
  content: ""; position: absolute;
  top: -40%; right: -8%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(201,161,74,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-sage > div { position: relative; z-index: 1; }
.cta-sage h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 0 0.3rem;
  color: white;
  line-height: 1.3;
}
.cta-sage p {
  margin: 0; font-size: 0.94rem;
  opacity: 0.92; line-height: 1.5;
  max-width: 480px;
}
.cta-sage .btn {
  background: var(--gold);
  color: var(--forest);
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 14px rgba(201, 161, 74, 0.32);
  transition: all 0.25s var(--ease-out);
  position: relative; z-index: 1;
}
.cta-sage .btn:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 161, 74, 0.45);
}
.cta-sage .btn .arrow { transition: transform 0.25s; display: inline-block; }
.cta-sage .btn:hover .arrow { transform: translateX(3px); }
@media (max-width: 720px) {
  .cta-sage {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4rem 1.5rem;
  }
  .cta-sage h4 { font-size: 1.12rem; }
}

/* ============================================================
   ANBIETER-PROFIL VIDEO-SEKTION (YouTube/Vimeo Embed)
   16:9-Ratio, responsive, lazy-loadable
   ============================================================ */
.pp-video-wrap {
  position: relative;
  padding-bottom: 56.25%;        /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(31, 45, 32, 0.14);
  background: #1a1a1a;            /* Fallback während Embed lädt */
}
.pp-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.pp-video-caption {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin: 0.6rem 0 0;
  text-align: center;
  font-style: italic;
}
.pp-video-source-hint {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.72rem; color: var(--ink-muted);
  margin-top: 0.4rem; opacity: 0.7;
}
.pp-video-source-hint::before {
  content: "📺";
}
@media (max-width: 720px) {
  .pp-video-wrap { border-radius: 8px; }
}

/* ============================================================
   BOOKING-MODAL (Anbieter-Profil Anfrage-Form)
   Wiederverwendbar auf allen Profilseiten
   ============================================================ */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.booking-modal.is-open {
  display: flex;
  animation: bm-fade-in 0.2s ease-out;
}
@keyframes bm-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 45, 32, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}
.booking-modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  animation: bm-slide-up 0.3s var(--ease-out);
}
@keyframes bm-slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.booking-modal-close {
  position: absolute;
  top: 0.7rem; right: 0.7rem;
  width: 36px; height: 36px;
  background: rgba(31, 45, 32, 0.08);
  color: var(--forest);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
  font-family: inherit;
  z-index: 2;
}
.booking-modal-close:hover {
  background: rgba(31, 45, 32, 0.16);
  transform: rotate(90deg);
}
.booking-modal-header {
  padding: 1.6rem 1.8rem 0.8rem;
  border-bottom: 1px solid var(--line);
}
.booking-modal-header h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--forest);
  margin: 0 0 0.3rem;
  line-height: 1.25;
}
.booking-modal-header .sub {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.booking-modal-body {
  padding: 1.2rem 1.8rem 1.4rem;
}
.bm-field {
  margin-bottom: 0.85rem;
}
.bm-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.3rem;
}
.bm-field label .req { color: var(--gold-dark); margin-left: 0.2rem; }
.bm-field label .opt { color: var(--ink-muted); font-weight: 400; font-size: 0.78rem; margin-left: 0.3rem; }
.bm-field input[type="text"],
.bm-field input[type="email"],
.bm-field input[type="tel"],
.bm-field select,
.bm-field textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}
.bm-field input:focus,
.bm-field select:focus,
.bm-field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(31,45,32,0.08);
}
.bm-field textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
.bm-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}
.bm-field.has-error input,
.bm-field.has-error select,
.bm-field.has-error textarea {
  border-color: #b94a3a;
  box-shadow: 0 0 0 3px rgba(185,74,58,0.08);
}
.bm-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.82rem;
  color: var(--ink);
  line-height: 1.5;
  cursor: pointer;
}
.bm-checkbox-row input[type="checkbox"] {
  accent-color: var(--forest);
  margin-top: 0.15rem;
  width: 16px; height: 16px;
}
.bm-checkbox-row a { color: var(--forest); font-weight: 600; }
.bm-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: var(--forest);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 8px 22px rgba(31,45,32,0.22);
}
.bm-submit:hover:not(:disabled) {
  background: #2a4030;
  transform: translateY(-1px);
}
.bm-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}
.bm-trust {
  margin: 0.8rem 0 0;
  font-size: 0.76rem;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.5;
}
.bm-trust strong { color: var(--forest); }

/* SUCCESS-STATE */
.booking-modal-success {
  padding: 2.5rem 1.8rem;
  text-align: center;
}
.booking-modal-success .checkmark {
  width: 72px; height: 72px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, #B8923F 100%);
  color: var(--forest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 22px rgba(201,161,74,0.32);
}
.booking-modal-success h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--forest);
  margin: 0 0 0.5rem;
}
.booking-modal-success p {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.55;
  margin: 0 auto 1.2rem;
  max-width: 380px;
}
.booking-modal-success .next-steps {
  background: var(--cream);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  margin: 0.8rem auto;
  max-width: 380px;
  text-align: left;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--ink);
}
.booking-modal-success .next-steps strong { color: var(--forest); }

/* MOBILE */
@media (max-width: 560px) {
  .booking-modal { padding: 0.5rem; }
  .booking-modal-content { border-radius: 12px; }
  .booking-modal-header { padding: 1.2rem 1.3rem 0.7rem; }
  .booking-modal-body { padding: 1rem 1.3rem 1.2rem; }
  .bm-field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ====================================================
   Rechner-Callout (Sub-Hub → passende Rechner)
   D-Rahmen (Cream/Gold) + Stil-3-Fill-Hover-Kacheln mit Erklärung
   ==================================================== */
.rechner-callout { max-width: var(--container, 1100px); margin: 2.8rem auto 0; padding: 0 var(--gutter, 1.5rem); }
.rc-box {
  background: linear-gradient(160deg, #fffdf8 0%, #F0EBE0 100%);
  border: 1.5px solid #d9c08a; border-radius: 20px; padding: 2rem 1.8rem;
  text-align: center; box-shadow: 0 16px 44px -26px rgba(9, 38, 17, .32);
}
.rc-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: #b8860b; border: 1px solid #d9c08a; border-radius: 100px; padding: .25rem .8rem; }
.rc-box h3 { margin: .7rem 0 .25rem; font-size: 1.5rem; color: #1F2D20; font-weight: 500; }
.rc-sub { margin: 0 auto 1.4rem; font-size: 13.5px; color: #5e645b; max-width: 34rem; text-align: center; }
.rc-grid { display: flex; flex-wrap: nowrap; justify-content: center; gap: .75rem; }
.rc-card { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: .25rem; text-align: left; background: #fff; border: 1.5px solid #ECE4D2; border-radius: 14px; padding: 1rem 1.1rem; text-decoration: none; transition: .18s ease; }
.rc-card .rc-i { font-size: 1.5rem; line-height: 1; }
.rc-card .rc-n { font-weight: 700; color: #1F2D20; font-size: 14.5px; }
.rc-card .rc-d { font-size: 12px; color: #6b7269; line-height: 1.38; flex: 1; }
.rc-card .rc-go { font-size: 12px; color: #5A7F5E; font-weight: 700; margin-top: .25rem; }
.rc-card:hover { background: linear-gradient(135deg, #5A7F5E, #486650); border-color: transparent; transform: translateY(-3px); box-shadow: 0 14px 30px -16px rgba(9, 38, 17, .5); }
.rc-card:hover .rc-n { color: #fff; }
.rc-card:hover .rc-d { color: rgba(250, 247, 242, .85); }
.rc-card:hover .rc-go { color: #d9c08a; }
@media (max-width: 760px) { .rc-grid { flex-wrap: wrap; } .rc-card { flex: 1 1 160px; } }
@media (max-width: 480px) { .rc-card { flex: 1 1 100%; } }
.rc-allbtn { display: inline-block; margin-top: 1.6rem; background: #1F2D20; color: #FAF7F2; font-weight: 700; font-size: 14px; border-radius: 100px; padding: .85rem 2rem; text-decoration: none; transition: background .15s ease; }
.rc-allbtn:hover { background: #5A7F5E; }
