/* =========================================================
   Glückskind - Mentoring & Coaching
   Asymmetrisches Layout mit organischen Formen
   Farbkonzept:
   - Hintergrund: dunkles Lila-Blau  #415574
   - Text: Weiß
   - Hervorhebung: dunkles Gelb-Gold #E4C58A
   ========================================================= */

@font-face {
  font-family: "Gistesy";
  src: url("../assets/fonts/gistesy.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir Light";
  src: url("../assets/fonts/avenir-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #415574;
  --bg-dark: #354762;
  --bg-light: #4d6386;
  --text: #ffffff;
  --accent: #E4C58A;
  --accent-soft: rgba(228, 197, 138, 0.35);
  --font-head: "Avenir Light", "Avenir Next", Avenir, var(--font-body);
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
  --font-hand: "Gistesy", "Segoe Script", cursive;
  --max-width: 1320px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

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

.accent {
  color: var(--accent);
}

/* =========================
   Hintergrund-Blobs
   ========================= */

.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.bg-blob-1 {
  width: 520px;
  height: 520px;
  top: -160px;
  right: -140px;
  background: radial-gradient(circle, rgba(228, 197, 138, 0.22), transparent 70%);
}

.bg-blob-2 {
  width: 460px;
  height: 460px;
  top: 48%;
  left: -200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10), transparent 70%);
}

.bg-blob-3 {
  width: 420px;
  height: 420px;
  bottom: -140px;
  right: 8%;
  background: radial-gradient(circle, rgba(228, 197, 138, 0.14), transparent 70%);
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

/* =========================
   Header
   ========================= */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 85px;
  padding: 1rem clamp(1.25rem, 5vw, 3rem);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(65, 85, 116, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-link {
  flex-shrink: 0;
  align-self: flex-start;
}

.logo {
  height: 120px;
  width: 253px;
  display: block;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
}

/* =========================
   Hero - Split-Layout
   ========================= */

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem) clamp(3rem, 7vw, 5rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 10vw, 8rem);
  align-items: center;
  min-height: calc(100vh - 110px);
}

.hero-eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.3rem, 3.3vw, 3.05rem);
  line-height: 1.15;
}

.hero-sub {
  margin-top: 1rem;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  font-weight: 500;
}

.hero-sub em {
  font-style: italic;
}

.hero-quote {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-left: 1.25rem;
  border-left: 3px solid var(--accent);
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.5;
  max-width: 34ch;
}

.hero-cta {
  display: inline-block;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 0.85rem 2rem;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  background: var(--accent);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* Bild in organischer Blob-Form mit versetztem Rahmen */

.hero-visual {
  position: relative;
  justify-self: center;
  max-width: 520px;
  width: 100%;
  overflow: visible;
}

.hero-greeting {
  position: absolute;
  left: 60%;
  bottom: 10%;
  top: auto;
  z-index: 2;
  margin: 0;
  font-family: var(--font-hand);
  font-size: clamp(2.15rem, 4.4vw, 3.05rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--accent);
  white-space: nowrap;
  transform: rotate(10deg);
  transform-origin: left bottom;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.hero-img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  animation: blob-morph 14s ease-in-out infinite alternate;
}

.hero-frame {
  position: absolute;
  inset: -18px -14px 14px 18px;
  border: 1.5px solid var(--accent-soft);
  border-radius: 55% 45% 48% 52% / 52% 46% 54% 48%;
  animation: blob-morph 14s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

@keyframes blob-morph {
  0% {
    border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  }
  100% {
    border-radius: 45% 55% 44% 56% / 55% 45% 58% 42%;
  }
}

/* Schwebende Pusteblumen-Samen */

.seed {
  position: absolute;
  width: 34px;
  height: 34px;
  color: var(--accent);
  opacity: 0.7;
  animation: seed-float 7s ease-in-out infinite;
}

.seed-1 {
  top: -8%;
  right: 4%;
  transform: rotate(20deg);
}

.seed-2 {
  bottom: 6%;
  left: -10%;
  width: 26px;
  animation-delay: -2.5s;
  transform: rotate(-30deg);
}

.seed-3 {
  top: 32%;
  right: -12%;
  width: 22px;
  animation-delay: -5s;
  transform: rotate(45deg);
}

@keyframes seed-float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 6px -16px;
  }
}

/* =========================
   Intro - zentrierter Fließtext
   ========================= */

.intro {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 3rem);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.12) 18%, rgba(0, 0, 0, 0.12) 82%, transparent);
}

.intro-inner {
  max-width: 52.8125rem;
  margin: 0 auto;
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}

.intro-lead {
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 500;
  line-height: 1.45;
}

.intro-greeting {
  color: var(--text);
}

.intro-line {
  display: inline;
}

.intro-line-accent {
  display: block;
}

@media (max-width: 52rem) {
  .intro-line {
    display: block;
  }
}

.intro-transition {
  max-width: 40ch;
  margin: clamp(2.5rem, 7vw, 4.5rem) auto 0;
  text-align: center;
  color: var(--text);
}

/* =========================
   Erlebniswelten - versetzte Karten
   ========================= */

.worlds {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 3rem);
  scroll-margin-top: calc(120px + 1.5rem);
}

.worlds-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.worlds-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
}

.worlds-hint {
  font-style: italic;
  opacity: 0.8;
}

.worlds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.world-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  padding: 2.5rem 2.25rem;
  border: 1.5px solid var(--accent-soft);
  border-radius: 50%;
  background: linear-gradient(160deg, var(--bg-light), var(--bg-dark));
  color: var(--text);
  text-decoration: none;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.world-card:hover,
.world-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.world-num {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
  opacity: 0.85;
}

.world-name {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
}

.world-desc {
  font-size: 0.98rem;
  opacity: 0.9;
  width: 222px;
  max-width: 24ch;
}

.world-arrow {
  margin-top: 0.75rem;
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.world-card:hover .world-arrow {
  transform: translateX(8px);
}

/* =========================
   Aufklappbare Karten
   ========================= */

.reveals {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 3rem) clamp(4rem, 9vw, 7rem);
}

.reveals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  max-width: 980px;
  margin: 0 auto;
}

.reveal-card {
  padding: 1.75rem clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.reveal-intro {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  opacity: 0.9;
}

.reveal-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 600;
  padding: 0.25rem 0;
  transition: opacity 0.25s ease;
}

.reveal-toggle:hover,
.reveal-toggle:focus-visible {
  opacity: 0.8;
}

.chevron {
  flex-shrink: 0;
  width: 0.55em;
  height: 0.55em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-15%);
  transition: transform 0.3s ease;
}

.reveal-toggle[aria-expanded="true"] .chevron {
  transform: rotate(225deg) translateY(-15%);
}

.reveal-content[hidden] {
  display: none;
}

.reveal-content {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--accent-soft);
  line-height: 1.65;
}

.reveal-block + .reveal-block,
.reveal-block + .reveal-key,
.reveal-key + .reveal-block {
  margin-top: 1.15rem;
}

.reveal-prose {
  margin: 0;
  max-width: 58ch;
  font-size: 1.05rem;
}

.reveal-prose + .reveal-lines {
  margin-top: 0.65rem;
}

.reveal-lines {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.reveal-lines li {
  font-size: 1.05rem;
  line-height: 1.65;
}

.reveal-lines--soft li {
  font-style: italic;
  opacity: 0.95;
}

.reveal-key {
  margin: 1.25rem 0 0;
  padding: 0.85rem 0 0.85rem 1.25rem;
  border-left: 3px solid var(--accent);
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  font-weight: 600;
  line-height: 1.55;
}

blockquote.reveal-key {
  margin-inline: 0;
}

.reveal-key .reveal-lines {
  gap: 0.35rem;
}

.reveal-key .reveal-lines li {
  font-size: inherit;
  font-weight: inherit;
}

/* Wird als Fallback behalten, falls Inhalte ohne JS-Animation eingeblendet werden */
@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Testimonials
   ========================= */

.testimonials {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 3rem) clamp(4rem, 9vw, 7rem);
}

.testimonials-head {
  max-width: none;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.testimonials-eyebrow {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: normal;
  text-transform: none;
  opacity: 1;
  margin-bottom: 0.75rem;
}

.testimonials-title {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 300;
  line-height: 1.65;
  max-width: min(100%, 52rem);
  opacity: 0.9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Sprechblase */
.testimonial-bubble {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
  height: clamp(17rem, 32vw, 19.5rem);
  padding: 2.25rem clamp(1.5rem, 3vw, 2.25rem) 2rem;
  background: var(--bg-light);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

/* Schwänzchen: rotiertes Quadrat, überdeckt die Randlinie der Blase */
.testimonial-bubble::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: clamp(2.25rem, 4vw, 3.25rem);
  width: 22px;
  height: 22px;
  background: var(--bg-light);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom-right-radius: 5px;
  transform: rotate(45deg);
  transition: border-color 0.3s ease;
}

/* Bei jeder zweiten Karte zeigt das Schwänzchen nach rechts */
.testimonial-card:nth-child(even) .testimonial-bubble::after {
  left: auto;
  right: clamp(2.25rem, 4vw, 3.25rem);
}

.testimonial-card:hover .testimonial-bubble,
.testimonial-card:hover .testimonial-bubble::after {
  border-color: var(--accent-soft);
}

.testimonial-card:hover .testimonial-bubble {
  transform: translateY(-3px);
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.35rem 1rem;
  border: 1px solid var(--accent-soft);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.testimonial-emoji {
  font-size: 1.05rem;
}

.testimonial-quote {
  flex: 1;
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.55;
}

.testimonial-author {
  margin-top: 1.6rem;
  padding-left: clamp(2.25rem, 4vw, 3.25rem);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

/* Bei jeder zweiten Karte steht der Name rechts unter dem Schwänzchen */
.testimonial-card:nth-child(even) .testimonial-author {
  padding-left: 0;
  padding-right: clamp(2.25rem, 4vw, 3.25rem);
  text-align: right;
}

.testimonial-author::before {
  content: "- ";
  color: var(--accent);
}

/* =========================
   Teams-Seite: Hero
   ========================= */

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}

.teams-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem) clamp(3rem, 7vw, 5rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 9vw, 7rem);
  align-items: center;
}

.teams-hero-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.teams-hero-text {
  display: grid;
  gap: 1.25rem;
}

/* Kernbotschaft als morphender Blob - Gegenstück zum Startseiten-Portrait */

.teams-hero-visual {
  position: relative;
  justify-self: center;
  max-width: 440px;
  width: 100%;
}

.teams-hero-blob {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1.05;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(160deg, var(--bg-light), var(--bg-dark));
  border: 1.5px solid var(--accent-soft);
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  animation: blob-morph 14s ease-in-out infinite alternate;
  text-align: center;
}

.teams-hero-blob p {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 500;
  line-height: 1.5;
  max-width: 24ch;
}

.teams-hero-blob em {
  font-style: italic;
}

/* =========================
   Teams-Seite: Kontrast
   ========================= */

.contrast {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 3rem);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.12) 18%, rgba(0, 0, 0, 0.12) 82%, transparent);
}

.contrast-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.contrast-card {
  padding: 2.25rem clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 18px;
}

.contrast-now {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contrast-vision {
  background: linear-gradient(160deg, var(--bg-light), var(--bg-dark));
  border: 1.5px solid var(--accent-soft);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

.contrast-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.contrast-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.contrast-list li {
  position: relative;
  padding-left: 1.5rem;
}

.contrast-now .contrast-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.55rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.45);
}

.contrast-vision .contrast-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.contrast-arrow {
  font-size: 2.5rem;
  color: var(--accent);
  text-align: center;
}

/* =========================
   Teams-Seite: Warum das funktioniert
   ========================= */

.why {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 3rem);
}

.why-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.why-head {
  position: relative;
  padding-top: 2.5rem;
}

.big-quote {
  position: absolute;
  top: -1.5rem;
  left: -0.75rem;
  font-family: var(--font-head);
  font-size: 9rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  user-select: none;
}

.why-motto {
  margin-top: 1rem;
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 500;
}

.why-motto em {
  font-style: italic;
}

.why-body {
  display: grid;
  gap: 1.25rem;
  margin-top: clamp(0.5rem, 3vw, 2.5rem);
  font-size: 1.15rem;
}

.possible {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.possible-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.possible-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

/* Chips tanzen leicht aus der Reihe */
.possible-chips li {
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--accent-soft);
  border-radius: 999px;
  font-size: 1rem;
  color: var(--accent);
  background: rgba(228, 197, 138, 0.06);
  transition: transform 0.3s ease, background 0.3s ease;
}

.possible-chips li:nth-child(odd) {
  transform: rotate(-1.5deg) translateY(3px);
}

.possible-chips li:nth-child(even) {
  transform: rotate(1.5deg) translateY(-3px);
}

.possible-chips li:nth-child(3n) {
  border-radius: 999px 999px 999px 8px;
}

.possible-chips li:hover {
  transform: rotate(0deg) translateY(-4px);
  background: rgba(228, 197, 138, 0.14);
}

/* =========================
   Teams-Seite: Anlässe
   ========================= */

.occasions {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 5vw, 3rem);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.12) 25%, rgba(0, 0, 0, 0.12) 75%, transparent);
}

.occasions-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

.occasions-sub {
  font-style: italic;
  opacity: 0.8;
}

/* Anlässe als schwebende Kreise - kleine Geschwister der Erlebniswelt-Karten */

.occasions-bubbles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 1rem 0;
}

.occasion-bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(130px, 16vw, 185px);
  aspect-ratio: 1 / 1;
  padding: 1rem;
  border: 1.5px solid var(--accent-soft);
  border-radius: 50%;
  background: linear-gradient(160deg, var(--bg-light), var(--bg-dark));
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  line-height: 1.3;
  hyphens: manual;
  animation: seed-float 7s ease-in-out infinite;
  transition: border-color 0.3s ease;
}

.occasion-bubble:hover {
  border-color: var(--accent);
}

.occasion-bubble:nth-child(1) {
  transform: translateY(10px);
}

.occasion-bubble:nth-child(2) {
  animation-delay: -2s;
  transform: translateY(-12px);
}

.occasion-bubble:nth-child(3) {
  animation-delay: -4s;
  transform: translateY(14px);
}

.occasion-bubble:nth-child(4) {
  animation-delay: -6s;
  transform: translateY(-8px);
}

.occasions-outro {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* =========================
   Teams-Seite: Erlebnis-Reise
   ========================= */

.journey {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 3rem);
}

.journey-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.journey-hint {
  margin-top: 0.5rem;
  font-style: italic;
  opacity: 0.8;
}

/* Gestrichelte Reise-Linie in der Mitte, Karten wechseln die Seite */

.journey-track {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.journey-track::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 50%;
  border-left: 2px dashed var(--accent-soft);
  transform: translateX(-50%);
}

.journey-stop {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Blob-Knoten sitzt auf der Linie */
.journey-node {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(160deg, var(--bg-light), var(--bg-dark));
  border: 1.5px solid var(--accent);
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  animation: blob-morph 14s ease-in-out infinite alternate;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.journey-node span {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
}

.journey-node svg {
  width: 30px;
  height: 30px;
  color: var(--accent);
}

/* Karten mit organisch ungleichen Ecken, abwechselnd links/rechts */

.journey-card {
  padding: 2rem clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.journey-stop:nth-child(odd) .journey-card {
  grid-column: 1;
  margin-right: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: 36px 36px 6px 36px;
}

.journey-stop:nth-child(even) .journey-card {
  grid-column: 2;
  margin-left: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: 36px 36px 36px 6px;
}

.journey-card:hover {
  border-color: var(--accent-soft);
  transform: translateY(-4px);
}

.journey-card-special {
  background: linear-gradient(160deg, var(--bg-light), var(--bg-dark));
  border: 1.5px solid var(--accent-soft);
}

.journey-kind {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.4rem;
}

.journey-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 600;
  line-height: 1.25;
}

.journey-sub {
  margin-top: 0.4rem;
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  opacity: 0.9;
}

.journey-toggle {
  margin-top: 0.9rem;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  color: var(--accent);
}

.journey-benefit-title {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
}

.journey-benefits {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.journey-benefits li {
  position: relative;
  padding-left: 1.5rem;
}

.journey-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* =========================
   Teams-Seite: Abschluss
   ========================= */

.closing {
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem) clamp(4rem, 9vw, 7rem);
  /* Läuft unten wieder hell aus, damit der Übergang zur Footer-Welle nicht abrupt wirkt */
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.12) 25%, rgba(0, 0, 0, 0.12) 70%, transparent);
}

.closing-inner {
  position: relative;
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.closing-seed-1 {
  top: -6%;
  left: -4%;
  transform: rotate(-25deg);
}

.closing-seed-2 {
  bottom: 10%;
  right: -6%;
  width: 26px;
  animation-delay: -3.5s;
  transform: rotate(35deg);
}

.closing-lead {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 600;
  line-height: 1.35;
}

.closing-statement {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.6;
}

.closing-final {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
}

.closing .hero-cta {
  margin-top: 0.5rem;
}

/* =========================
   Scroll-Animationen
   ========================= */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: none;
}

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

  .hero-img,
  .hero-frame,
  .seed,
  .teams-hero-blob,
  .journey-node,
  .occasion-bubble {
    animation: none;
  }
}

/* =========================
   Footer
   ========================= */

.site-footer {
  margin-top: 2rem;
}

.footer-wave {
  display: block;
  width: 100%;
  height: 70px;
  color: var(--bg-dark);
}

.footer-inner {
  background: var(--bg-dark);
  padding: 2.5rem 1.5rem 2rem;
  display: grid;
  justify-items: center;
  gap: 1.75rem;
  text-align: center;
}

.footer-logo {
  height: 80px;
  width: auto;
}

.footer-nav,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
}

.footer-nav a,
.footer-meta a {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.25s ease;
}

.footer-meta a {
  font-size: 0.9rem;
  opacity: 0.85;
}

.footer-nav a:hover,
.footer-meta a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* =========================
   Unterseiten (Platzhalter)
   ========================= */

.subpage {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 5vw, 3rem) clamp(4rem, 9vw, 7rem);
  min-height: calc(100vh - 110px - 260px);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 1.5rem;
  text-align: center;
}

.subpage-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.75;
}

.subpage h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
}

.subpage p {
  max-width: 50ch;
  font-size: 1.1rem;
  opacity: 0.9;
}

.back-link {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.85rem 2rem;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.back-link:hover,
.back-link:focus-visible {
  background: var(--accent);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* =========================
   Für-Dich-Seite: Die Reise eines Glückskindes
   ========================= */

.story-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 5vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.story-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.12;
  max-width: 22ch;
  margin: 0 auto;
}

.story-hero-lead {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.5;
  opacity: 0.9;
}

/* Erzähl-Spalte mit Kapiteln */

.story {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem) clamp(1.25rem, 5vw, 3rem) clamp(3rem, 6vw, 4.5rem);
  display: grid;
  gap: clamp(3.5rem, 8vw, 5.5rem);
}

.story-chapter {
  position: relative;
  display: grid;
  gap: 1.1rem;
  padding-left: clamp(1rem, 4vw, 2.5rem);
}

/* Große, halbtransparente Kapitelnummer */
.story-num {
  position: absolute;
  top: -1.6rem;
  left: -0.5rem;
  font-family: var(--font-head);
  font-size: clamp(4.5rem, 9vw, 6.5rem);
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-soft);
  pointer-events: none;
}

.story-chapter-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 600;
  line-height: 1.2;
}

.story-staccato {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.7;
}

.story-quote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  padding-left: 1.25rem;
  border-left: 2px solid var(--accent);
}

/* Begrüßung: Sprechblase von Katja */

.story-greeting-bubble {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--bg-light);
  border: 1px solid var(--accent-soft);
  border-radius: 44px 52px 48px 40px / 48px 42px 52px 46px;
}

.story-greeting-bubble::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 3rem;
  width: 24px;
  height: 24px;
  background: var(--bg-light);
  border-right: 1px solid var(--accent-soft);
  border-bottom: 1px solid var(--accent-soft);
  border-bottom-right-radius: 8px;
  transform: rotate(45deg);
}

.story-greeting-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.2;
}

/* Der Kern von Glückskind */

.essence {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 5vw, 3rem);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.12) 20%, rgba(0, 0, 0, 0.12) 80%, transparent);
}

.essence-inner {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  justify-items: center;
}

.essence-lead {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  line-height: 1.5;
}

.essence-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.essence-chips li {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--accent-soft);
  border-radius: 999px;
  font-size: 0.98rem;
}

.essence-truth {
  font-size: 1.1rem;
  opacity: 0.9;
}

.essence-statement {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
}

/* Über Katja */

.katja {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem);
}

.katja-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.katja-portrait {
  position: relative;
  max-width: 340px;
  width: 100%;
  justify-self: center;
  margin: 0;
}

.katja-text {
  display: grid;
  gap: 1.1rem;
}

.katja-quote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-style: italic;
  line-height: 1.45;
  padding-left: 1.25rem;
  border-left: 2px solid var(--accent);
}

.katja-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-top: 0.5rem;
}

.katja-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.katja-list li {
  position: relative;
  padding-left: 1.5rem;
}

.katja-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.katja-final {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-style: italic;
  line-height: 1.55;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: center;
  }

  .hero-quote {
    margin-inline: auto;
    text-align: left;
  }

  .hero-visual {
    order: -1;
    max-width: 380px;
  }

  .hero-greeting {
    left: 54%;
    bottom: 8%;
    font-size: clamp(1.9rem, 6vw, 2.45rem);
    transform: rotate(8deg);
  }

  .worlds-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contrast-grid {
    grid-template-columns: 1fr;
  }

  .contrast-arrow {
    transform: rotate(90deg);
  }

  .why-inner {
    grid-template-columns: 1fr;
  }

  .why-body {
    margin-top: 0;
  }

  .teams-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .teams-hero-visual {
    order: -1;
    max-width: 340px;
  }

  /* Reise-Linie rutscht an den linken Rand, Karten daneben */
  .journey-track::before {
    left: 32px;
    transform: none;
  }

  .journey-node {
    left: 32px;
    width: 56px;
    height: 56px;
  }

  .journey-stop {
    grid-template-columns: 1fr;
  }

  .journey-stop:nth-child(odd) .journey-card,
  .journey-stop:nth-child(even) .journey-card {
    grid-column: 1;
    margin: 0 0 0 88px;
    border-radius: 6px 28px 28px 28px;
  }

  .katja-inner {
    grid-template-columns: 1fr;
  }

  .katja-portrait {
    max-width: 280px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list li a {
    display: block;
    padding: 0.9rem 2rem;
    border-bottom: none;
  }

  .logo {
    height: 56px;
  }

  .worlds {
    scroll-margin-top: calc(85px + 1rem);
  }

  .big-quote {
    font-size: 6rem;
    top: -1rem;
  }
}
