:root {
    --forest: #3a5a3c;
    --forest-deep: #2d4a2f;
    --forest-light: #4a7a4d;
    --cream: #f5efe5;
    --cream-dark: #ebe3d5;
    --gold: #b5984a;
    --gold-light: #d4bc78;
    /* Dunkleres Gold ausschliesslich fuer kleine Textzeilen. #b5984a erreicht auf
       Creme nur Kontrast 2.4 und ist bei 10-13px schwer lesbar; dieser Ton liegt
       bei 4.6 und damit ueber der Lesbarkeitsschwelle. Deko-Gold bleibt unberuehrt. */
    --gold-text: #7f6a34;
    --text-dark: #2a2a25;
    --text-muted: #6b6b60;
    --sage: #8fa98f;
    --sage-light: #c5d5c5;
    --cream-light: #faf7f1;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  /* Header: startet transparent ueber dem Hero-Bild und bekommt beim Scrollen
     erst Hintergrund + Schatten (Klasse .scrolled wird ab 60px per JS gesetzt).
     Der leichte Verlauf sorgt dafuer, dass die Navigation auch auf hellen
     Stellen des Hero-Bildes lesbar bleibt. */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 1.3rem 4%;
    display: flex; justify-content: space-between; align-items: center;
    background: linear-gradient(to bottom, rgba(245, 239, 229, 0.55), rgba(245, 239, 229, 0));
    box-shadow: none;
    transition: background 0.45s ease, box-shadow 0.45s ease, padding 0.45s ease;
  }
  nav.scrolled {
    padding: 0.7rem 4%;
    background: rgba(245, 239, 229, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(58, 90, 60, 0.1);
  }
  /* Bei offenem Mobile-Menue braucht der Header immer einen Hintergrund */
  nav:has(.nav-links.open), nav.menue-offen {
    background: var(--cream);
    box-shadow: 0 1px 30px rgba(58, 90, 60, 0.1);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 400; font-style: italic; color: var(--forest);
    letter-spacing: -0.02em; text-decoration: none; line-height: 1.2;
  }
  .nav-logo small {
    display: block; font-family: 'Nunito Sans', sans-serif;
    font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-muted); margin-top: 0.1rem;
  }
  .nav-links {
    display: flex; gap: 2rem; list-style: none; align-items: center;
  }
  .nav-links > li { position: relative; display: flex; align-items: center; }
  .nav-links a {
    text-decoration: none; color: var(--forest);
    font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: color 0.3s; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px; background: var(--gold);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--forest); color: var(--cream) !important;
    padding: 0.6rem 1.6rem; border-radius: 100px;
    font-size: 0.82rem !important; letter-spacing: 0.06em !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--forest-deep); transform: translateY(-1px); }

  .nav-freebie {
    background: linear-gradient(135deg, var(--gold), #d4bc78) !important;
    color: var(--forest-deep) !important; font-weight: 700 !important;
    padding: 0.5rem 1.2rem !important; border-radius: 100px !important;
    font-size: 0.78rem !important; letter-spacing: 0.06em !important;
    text-transform: uppercase !important; display: inline-flex; align-items: center; gap: 0.4rem;
    animation: shimmer 3s ease-in-out infinite;
  }
  .nav-freebie::after { display: none !important; }
  .nav-freebie:hover { transform: translateY(-2px) !important; box-shadow: 0 6px 20px rgba(181, 152, 74, 0.4) !important; }
  @keyframes shimmer {
    0%, 100% { box-shadow: 0 0 0 rgba(181, 152, 74, 0); }
    50% { box-shadow: 0 0 12px rgba(181, 152, 74, 0.3); }
  }

  .nav-va {
    color: var(--gold-text) !important; font-style: italic;
  }
  .nav-va::after { background: var(--gold) !important; }

  /* Dropdown */
  .dropdown-trigger { cursor: pointer; display: flex; align-items: center; gap: 0.3rem; }
  .dropdown-trigger svg { width: 10px; height: 10px; transition: transform 0.3s; }
  .dropdown-menu {
    position: absolute; top: calc(100% + 12px); left: -1rem;
    background: rgba(248, 243, 235, 0.98); backdrop-filter: blur(15px);
    border-radius: 16px; padding: 0.8rem 0; min-width: 200px;
    box-shadow: 0 15px 50px rgba(58, 90, 60, 0.12);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(58, 90, 60, 0.06);
  }
  .dropdown:hover .dropdown-menu,
  .dropdown.open .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .dropdown:hover .dropdown-trigger svg { transform: rotate(180deg); }
  .dropdown-menu a {
    display: block; padding: 0.7rem 1.5rem;
    font-size: 0.82rem !important; text-transform: none !important;
    letter-spacing: 0.02em !important; color: var(--text-dark) !important;
    transition: all 0.2s;
  }
  .dropdown-menu a::after { display: none; }
  .dropdown-menu a:hover { background: rgba(58, 90, 60, 0.05); color: var(--forest) !important; padding-left: 1.8rem; }

  .mobile-toggle {
    display: none; background: none; border: none; cursor: pointer;
    padding: 0.4rem 0.7rem; align-items: center; gap: 0.55rem;
    border: 1px solid rgba(58, 90, 60, 0.25); border-radius: 100px;
  }
  .mobile-toggle .mt-text {
    font-family: 'Nunito Sans', sans-serif; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--forest);
  }
  .mobile-toggle .mt-bars { display: block; width: 22px; }
  .mobile-toggle .mt-bars span {
    display: block; width: 22px; height: 2px; background: var(--forest);
    margin: 5px 0; border-radius: 2px; transition: all 0.3s ease;
  }
  .mobile-toggle.active .mt-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-toggle.active .mt-bars span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active .mt-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; background: var(--cream);
  }
  .hero-img {
    position: absolute; inset: 0;
    background: url("img/hero-familie.jpg") center/cover no-repeat;
    opacity: 0.35;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(90deg, var(--cream) 25%, rgba(245, 239, 229, 0.4) 100%);
  }
  .hero-grain {
    position: absolute; inset: 0; opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
  }
  .hero-decor {
    position: absolute; right: -5%; top: 10%; width: 55%; height: 80%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: radial-gradient(ellipse at center, rgba(58, 90, 60, 0.04), transparent 70%);
    animation: morphBlob 20s ease-in-out infinite;
  }
  @keyframes morphBlob {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    25% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%; }
    50% { border-radius: 30% 70% 50% 50% / 60% 40% 70% 30%; }
    75% { border-radius: 50% 50% 60% 40% / 30% 70% 40% 60%; }
  }
  .hero-content { position: relative; z-index: 2; padding: 0 8%; max-width: 800px; }
  .hero-tag {
    display: inline-block; font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-text);
    margin-bottom: 2rem; opacity: 0; animation: fadeUp 1s 0.3s forwards;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 300;
    line-height: 1.1; color: var(--forest); letter-spacing: -0.02em;
    margin-bottom: 1.8rem; opacity: 0; animation: fadeUp 1s 0.5s forwards;
  }
  .hero h1 em { font-style: italic; font-weight: 400; color: var(--forest-light); }
  .hero p {
    font-size: 1.15rem; line-height: 1.8; color: var(--text-muted);
    max-width: 540px; font-weight: 300;
    opacity: 0; animation: fadeUp 1s 0.7s forwards;
  }
  .hero-buttons {
    display: flex; gap: 1.2rem; margin-top: 2.8rem;
    opacity: 0; animation: fadeUp 1s 0.9s forwards;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--gold); color: var(--forest-deep);
    padding: 1rem 2.4rem; border-radius: 100px;
    font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(197, 165, 90, 0.3); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: var(--forest);
    padding: 1rem 2rem; border-radius: 100px;
    font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em;
    text-decoration: none; border: 1.5px solid rgba(58, 90, 60, 0.3);
    transition: all 0.4s; cursor: pointer;
  }
  .btn-secondary:hover { border-color: var(--forest); background: rgba(58, 90, 60, 0.05); }
  .scroll-hint {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    opacity: 0; animation: fadeUp 1s 1.3s forwards;
    cursor: pointer;
  }
  .scroll-chevron {
    animation: bounceDown 2s ease-in-out infinite;
  }
  .scroll-chevron svg {
    width: 32px; height: 32px; stroke: var(--forest); opacity: 0.45;
    transition: opacity 0.3s;
  }
  .scroll-hint:hover .scroll-chevron svg { opacity: 0.8; }
  .scroll-label {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--text-muted); opacity: 0.5;
  }
  @keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── SECTIONS ── */
  section { padding: 7rem 8%; }
  .section-tag {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold-text); margin-bottom: 1.2rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 300;
    line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.5rem;
  }
  .section-subtitle {
    font-size: 1.05rem; line-height: 1.8; color: var(--text-muted);
    max-width: 640px; font-weight: 300;
  }

  /* ── INTRO CARDS ── */
  .intro { background: var(--cream); }
  .intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 4rem; }
  .intro-card {
    padding: 2.8rem 2.2rem; border-radius: 24px; background: var(--cream-light);
    border: 1px solid rgba(58, 90, 60, 0.06);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative; overflow: hidden;
  }
  .intro-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--forest), var(--gold));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .intro-card:hover::before { transform: scaleX(1); }
  .intro-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(58, 90, 60, 0.08); }
  .intro-card-icon {
    width: 52px; height: 52px; border-radius: 16px;
    background: linear-gradient(135deg, var(--forest), var(--forest-light));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.6rem; color: var(--cream); font-size: 1.4rem;
  }
  .intro-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 0.8rem; color: var(--forest-deep); }
  .intro-card p { font-size: 0.95rem; line-height: 1.75; color: var(--text-muted); font-weight: 300; }

  /* ── ABOUT (dark) ── */
  .about { background: var(--forest-deep); color: var(--cream); position: relative; overflow: hidden; }
  .about::before {
    content: ''; position: absolute; top: -30%; right: -10%;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 165, 90, 0.07), transparent 70%);
  }
  .about .section-subtitle { color: var(--sage-light); }
  .about-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 4rem; }
  .about-col h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
    font-weight: 500; margin-bottom: 1.8rem; color: var(--gold-light);
  }
  .about-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
  .about-list li {
    display: flex; align-items: flex-start; gap: 1rem;
    font-size: 0.98rem; line-height: 1.7; color: var(--sage-light); font-weight: 300;
  }
  .about-list li::before {
    content: ''; flex-shrink: 0; width: 8px; height: 8px;
    border-radius: 50%; background: var(--gold); margin-top: 0.55rem;
  }

  /* ── COACHING ── */
  .coaching { background: var(--cream); }
  .approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; }
  .approach-item {
    text-align: center; padding: 2.5rem 1.5rem; border-radius: 24px;
    background: var(--cream-light); border: 1px solid rgba(58, 90, 60, 0.05); transition: all 0.4s;
  }
  .approach-item:hover { transform: translateY(-4px); box-shadow: 0 15px 50px rgba(58, 90, 60, 0.06); }
  .approach-icon {
    width: 64px; height: 64px; margin: 0 auto 1.4rem; border-radius: 50%;
    background: var(--cream-dark); display: flex; align-items: center;
    justify-content: center; font-size: 1.6rem; transition: all 0.4s;
  }
  .approach-item:hover .approach-icon { background: var(--forest); color: var(--cream); transform: scale(1.1); }
  .approach-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 0.7rem; color: var(--forest-deep); }
  .approach-item p { font-size: 0.88rem; line-height: 1.7; color: var(--text-muted); font-weight: 300; }

  /* Process */
  .process { background: var(--forest-deep); color: var(--cream); }
  .process .section-subtitle { color: var(--sage-light); }
  .process-steps { display: flex; gap: 0; margin-top: 4rem; position: relative; }
  .process-steps::before {
    content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
    height: 2px; background: linear-gradient(90deg, var(--gold), var(--sage), var(--gold)); opacity: 0.3;
  }
  .step { flex: 1; text-align: center; position: relative; padding: 0 1rem; }
  .step-num {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(197, 165, 90, 0.1); border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.4rem;
    font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
    font-weight: 500; color: var(--gold); transition: all 0.4s;
    position: relative; z-index: 2;
  }
  .step:hover .step-num { background: var(--gold); color: var(--forest-deep); transform: scale(1.1); }
  .step h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; margin-bottom: 0.6rem; color: var(--cream); }
  .step p { font-size: 0.88rem; color: var(--sage-light); font-weight: 300; line-height: 1.6; }

  /* ── ELTERNBERATUNG ── */
  .elternberatung { background: var(--cream); }
  .audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 4rem; }
  .audience-card {
    display: flex; align-items: flex-start; gap: 1.6rem; padding: 2.4rem;
    border-radius: 24px; background: var(--cream-light);
    border: 1px solid rgba(58, 90, 60, 0.05); transition: all 0.4s;
  }
  .audience-card:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(58, 90, 60, 0.06); }
  .audience-icon {
    flex-shrink: 0; width: 56px; height: 56px; border-radius: 18px;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; transition: all 0.4s;
  }
  .audience-card:hover .audience-icon { background: linear-gradient(135deg, var(--forest), var(--forest-light)); color: var(--cream); }
  .audience-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--forest-deep); margin-bottom: 0.5rem; }
  .audience-card p { font-size: 0.92rem; line-height: 1.7; color: var(--text-muted); font-weight: 300; }

  /* Testimonials */
  .testimonials { background: var(--forest-deep); color: var(--cream); }
  .testimonials .section-subtitle { color: var(--sage-light); }
  .test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 4rem; }
  .test-card {
    padding: 2.8rem 2.2rem; border-radius: 24px;
    background: rgba(248, 243, 235, 0.04);
    border: 1px solid rgba(248, 243, 235, 0.08); transition: all 0.4s;
  }
  .test-card:hover { background: rgba(248, 243, 235, 0.07); transform: translateY(-4px); }
  .test-quote { font-size: 2.5rem; color: var(--gold); font-family: 'Cormorant Garamond', serif; line-height: 1; margin-bottom: 1.2rem; opacity: 0.6; }
  .test-card p { font-size: 1rem; line-height: 1.8; color: var(--sage-light); font-weight: 300; font-style: italic; margin-bottom: 1.6rem; }
  .test-author { font-size: 0.85rem; font-weight: 600; color: var(--gold-light); letter-spacing: 0.04em; }

  /* ── WORKSHOPS ── */
  .workshops { background: var(--cream); }
  .workshop-intro {
    max-width: 780px; margin-bottom: 4rem;
  }
  .workshop-intro p {
    font-size: 1.02rem; line-height: 1.85; color: var(--text-muted); font-weight: 300; margin-bottom: 1rem;
  }
  .workshop-intro .highlight-box {
    background: var(--cream-light); border-radius: 20px; padding: 2rem 2.5rem; margin: 2rem 0;
    border-left: 4px solid var(--gold);
    display: flex; gap: 2rem; align-items: center;
  }
  .highlight-box .price-tag {
    font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
    font-weight: 400; color: var(--forest); white-space: nowrap;
  }
  .highlight-box .price-tag small { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; display: block; }
  .highlight-box p { font-size: 0.92rem; line-height: 1.7; color: var(--text-muted); font-weight: 300; }

  .workshop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; margin-top: 3rem; }
  .workshop-card {
    border-radius: 20px; background: var(--cream-light);
    border: 1px solid rgba(58, 90, 60, 0.06); transition: all 0.4s; overflow: hidden;
  }
  .workshop-card:hover { box-shadow: 0 10px 35px rgba(58, 90, 60, 0.06); }
  .workshop-card.past { opacity: 0.55; }
  .workshop-card.past:hover { opacity: 0.85; }
  .workshop-header {
    padding: 2rem 2rem 1.8rem; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
  }
  .workshop-header:hover { background: rgba(58, 90, 60, 0.02); }
  .workshop-chevron {
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
    background: rgba(58, 90, 60, 0.06); display: flex; align-items: center;
    justify-content: center; transition: all 0.3s; margin-top: 0.3rem;
  }
  .workshop-chevron svg { width: 14px; height: 14px; stroke: var(--forest); transition: transform 0.3s; }
  .workshop-card.open .workshop-chevron svg { transform: rotate(180deg); }
  .workshop-card.open .workshop-chevron { background: var(--forest); }
  .workshop-card.open .workshop-chevron svg { stroke: var(--cream); }
  .workshop-details {
    max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .workshop-card.open .workshop-details { max-height: 1400px; }
  .workshop-details-inner { padding: 0 2rem 2rem; border-top: 1px solid rgba(58, 90, 60, 0.06); }
  .workshop-details-inner p { font-size: 0.88rem; line-height: 1.7; color: var(--text-muted); font-weight: 300; margin-top: 1.2rem; }
  .ws-btn {
    display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.2rem;
    padding: 0.75rem 1.6rem; border-radius: 100px; font-size: 0.82rem; font-weight: 600;
    text-decoration: none; transition: all 0.3s; border: none; cursor: pointer; font-family: inherit;
  }
  .ws-btn-primary { background: var(--forest); color: var(--cream); }
  .ws-btn-primary:hover { background: var(--forest-light); transform: translateY(-2px); }
  .ws-btn-past { background: rgba(181, 152, 74, 0.12); color: #7c6833; }
  .ws-btn-past:hover { background: rgba(181, 152, 74, 0.2); }
  .ws-form { margin-top: 1.2rem; display: none; flex-direction: column; gap: 0.8rem; }
  .ws-form.show { display: flex; }
  .ws-form input { padding: 0.75rem 1rem; border-radius: 10px; border: 1.5px solid rgba(58, 90, 60, 0.12); background: white; font-family: inherit; font-size: 0.85rem; outline: none; }
  .ws-form input:focus { border-color: var(--forest); }
  .ws-form button { align-self: flex-start; }
  .ws-past-badge { display: inline-block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); background: rgba(0,0,0,0.05); padding: 0.2rem 0.6rem; border-radius: 100px; margin-left: 0.5rem; vertical-align: middle; }

  /* --- Terminliste pro Workshop (einzelne Slots) --- */
  .ws-dates { margin-top: 1.2rem; font-size: 0.8rem; color: var(--gold-text); line-height: 1.7; }
  .ws-date-item { white-space: nowrap; }
  .ws-date-item.slot-past { color: var(--text-muted); text-decoration: line-through; opacity: 0.7; }
  .ws-date-sep { opacity: 0.5; margin: 0 0.4rem; }
  .ws-date-note { color: var(--text-muted); }

  /* --- Terminauswahl im Anmeldeformular --- */
  .ws-slots { border: none; padding: 0; margin: 0 0 0.2rem; }
  .ws-slots legend { font-size: 0.78rem; font-weight: 600; color: var(--forest-deep); padding: 0; margin-bottom: 0.6rem; }
  .ws-slot {
    display: flex; align-items: center; gap: 0.7rem; cursor: pointer;
    padding: 0.7rem 1rem; border-radius: 10px; background: white;
    border: 1.5px solid rgba(58, 90, 60, 0.12); font-size: 0.85rem;
    color: var(--forest-deep); transition: all 0.25s; margin-bottom: 0.5rem;
  }
  .ws-slot:hover { border-color: var(--forest); }
  .ws-slot input { width: 16px; height: 16px; accent-color: var(--forest); margin: 0; padding: 0; flex-shrink: 0; cursor: pointer; }
  .ws-slot:has(input:checked) { border-color: var(--forest); background: rgba(58, 90, 60, 0.04); }
  .ws-slot.slot-past { opacity: 0.45; cursor: not-allowed; text-decoration: line-through; }
  .ws-slot.slot-past:hover { border-color: rgba(58, 90, 60, 0.12); }
  .ws-slot.slot-past input { cursor: not-allowed; }
  .ws-slot-tag { margin-left: auto; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; }

  /* --- Teaser "Nächster Termin" --- */
  .next-ws {
    display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap;
    max-width: 760px; margin: 3rem auto 0; padding: 1.8rem 2rem;
    border-radius: 20px; background: var(--cream-light);
    border: 1px solid rgba(181, 152, 74, 0.28);
    box-shadow: 0 10px 35px rgba(58, 90, 60, 0.06);
  }
  .next-ws-cal {
    flex-shrink: 0; width: 76px; height: 76px; border-radius: 16px;
    background: var(--forest); color: var(--cream);
    display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1;
  }
  .next-ws-day { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; }
  .next-ws-mon { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.25rem; opacity: 0.85; }
  .next-ws-body { flex: 1 1 240px; min-width: 0; }
  .next-ws-badge {
    display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: #7c6833; background: rgba(197, 165, 90, 0.14);
    padding: 0.3rem 0.8rem; border-radius: 100px; margin-bottom: 0.7rem;
  }
  .next-ws-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--forest-deep); line-height: 1.3; margin-bottom: 0.4rem; }
  .next-ws-when { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; }
  .next-ws-when strong { color: var(--forest); font-weight: 600; }
  .next-ws .ws-btn { margin-top: 0; flex-shrink: 0; }
  .next-ws.is-empty { border-color: rgba(58, 90, 60, 0.12); }

  @media (max-width: 640px) {
    .next-ws { gap: 1.2rem; padding: 1.5rem 1.4rem; }
    .next-ws-cal { width: 62px; height: 62px; }
    .next-ws-day { font-size: 1.6rem; }
    .next-ws .ws-btn { width: 100%; justify-content: center; }
    .ws-date-item { white-space: normal; }
  }
  .workshop-month {
    display: inline-block; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold-text); background: rgba(197, 165, 90, 0.1);
    padding: 0.35rem 0.9rem; border-radius: 100px; margin-bottom: 1rem;
  }
  .workshop-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--forest-deep); margin-bottom: 0.7rem; line-height: 1.3; }
  .workshop-card p { font-size: 0.88rem; line-height: 1.7; color: var(--text-muted); font-weight: 300; }
  .workshop-einzel {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    border-radius: 20px; padding: 2.5rem; margin-top: 3rem;
    border: 1px solid rgba(58, 90, 60, 0.06);
  }
  .workshop-einzel h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; color: var(--forest-deep); margin-bottom: 1rem; }
  .workshop-einzel p { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); font-weight: 300; }
  .workshop-einzel .einzel-price {
    font-family: 'Cormorant Garamond', serif; font-size: 2rem;
    color: var(--forest); margin-top: 1rem; font-weight: 400;
  }

  /* ── VA TEASER ── */
  .va-teaser {
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    padding: 4rem 8%; text-align: center;
  }
  .va-teaser-inner {
    max-width: 600px; margin: 0 auto;
    padding: 3rem; border-radius: 24px; background: var(--cream-light);
    border: 1px solid rgba(58, 90, 60, 0.06);
  }
  .va-teaser h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; color: var(--forest-deep); margin-bottom: 1rem; }
  .va-teaser p { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); font-weight: 300; margin-bottom: 1.5rem; }
  .va-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--forest); font-weight: 600; font-size: 0.9rem;
    text-decoration: none; border-bottom: 2px solid var(--gold);
    padding-bottom: 2px; transition: all 0.3s;
  }
  .va-link:hover { color: var(--gold); }

  /* ── CONTACT ── */
  .contact {
    background: linear-gradient(170deg, var(--cream-dark), var(--cream));
    text-align: center; padding: 7rem 8% 5rem;
  }
  .contact .section-title { max-width: 700px; margin: 0 auto 1rem; }
  .contact .section-subtitle { max-width: 560px; margin: 0 auto 3rem; text-align: center; }
  .contact-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
    max-width: 800px; margin: 0 auto 3.5rem;
  }
  .contact-card {
    padding: 2rem 1.5rem; border-radius: 20px; background: var(--cream-light);
    border: 1px solid rgba(58, 90, 60, 0.06); text-align: center; transition: all 0.4s;
  }
  .contact-card:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(58, 90, 60, 0.06); }
  .contact-card-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
  .contact-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--forest-deep); margin-bottom: 0.4rem; }
  .contact-card p { font-size: 0.88rem; color: var(--text-muted); font-weight: 300; }
  .contact-buttons { display: flex; justify-content: center; gap: 1.2rem; }
  .btn-primary-dark {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--forest); color: var(--cream);
    padding: 1.1rem 2.8rem; border-radius: 100px;
    font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em;
    text-decoration: none; transition: all 0.4s; border: none; cursor: pointer;
  }
  .btn-primary-dark:hover { background: var(--forest-deep); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(58, 90, 60, 0.2); }

  /* ── FOOTER ── */
  footer {
    background: var(--forest-deep); color: var(--sage);
    padding: 3rem 8%; display: flex; justify-content: space-between;
    align-items: center; font-size: 0.85rem; font-weight: 300;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--cream); }

  /* ── BACK TO TOP ── */
  .back-to-top {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--forest); color: var(--cream);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(58, 90, 60, 0.25);
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
  .back-to-top:hover { background: var(--forest-light); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(58, 90, 60, 0.35); }
  .back-to-top svg { width: 20px; height: 20px; }

  /* Kontaktformular: Name + E-Mail nebeneinander, auf dem Handy untereinander.
     min-width:0 ist noetig, weil 1fr sonst die min-content-Breite der Inputs
     erzwingt und die Felder aus dem Bildschirm ragen. */
  .kontakt-felder { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .kontakt-felder input { min-width: 0; width: 100%; }
  @media (max-width: 640px) {
    .kontakt-felder { grid-template-columns: 1fr; }
  }

  /* ── REVEAL ── */
  .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    section { padding: 5rem 6%; }
    .intro-grid { grid-template-columns: 1fr; }
    .about-columns { grid-template-columns: 1fr; gap: 3rem; }
    .approach-grid { grid-template-columns: repeat(2, 1fr); }
    .test-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; gap: 2rem; }
    .process-steps::before { display: none; }
    .audience-grid { grid-template-columns: 1fr; }
    .workshop-grid { grid-template-columns: 1fr; }
    .workshop-card[style] { max-width: 100% !important; }
    .contact-cards { grid-template-columns: 1fr; max-width: 400px; }
    [style*="grid-template-columns: 1fr 1fr"][style*="gap: 5rem"] { grid-template-columns: 1fr !important; }
    [style*="height: 500px"] { height: 350px !important; }
    [style*="grid-template-columns: repeat(3, 1fr)"][style*="gap: 1.5rem"] { grid-template-columns: 1fr !important; }
    .highlight-box { flex-direction: column; gap: 1rem; }
    [style*="grid-template-columns: 1fr 1fr"][style*="gap: 4rem"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns: repeat(3, 1fr)"][style*="gap: 2.5rem"] { grid-template-columns: 1fr !important; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .nav-links.open {
      display: flex; flex-direction: column;
      position: absolute; top: 100%; left: 0; right: 0;
      background: var(--cream); padding: 2rem; gap: 1.5rem;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    .nav-links.open .dropdown {
      flex-direction: column; align-items: center;
    }
    .nav-links.open .dropdown-menu {
      position: static; opacity: 0; visibility: hidden; max-height: 0;
      transform: none; box-shadow: none; border: none;
      background: transparent; padding: 0;
      transition: all 0.3s ease; overflow: hidden;
    }
    .nav-links.open .dropdown-menu a { text-align: center; }
    .nav-links.open .dropdown.open .dropdown-menu {
      opacity: 1; visibility: visible; max-height: 200px;
      padding: 0.5rem 0;
    }
    .dropdown-trigger { display: flex; align-items: center; gap: 0.3rem; }
    .dropdown.open .dropdown-trigger svg { transform: rotate(180deg); }
    .hero-content { padding: 0 5%; }
    .hero h1 { font-size: 2.4rem; }
    .hero-buttons { flex-direction: column; }
    .approach-grid { grid-template-columns: 1fr; }
    .contact-buttons { flex-direction: column; align-items: center; }
  }

  /* About photo */
  .about-photo-wrap {
    display: flex; justify-content: center; margin-bottom: 2rem; position: relative; z-index: 3;
  }
  .about-photo {
    width: 200px; height: 200px; border-radius: 50%;
    object-fit: cover; object-position: center top;
    border: 4px solid var(--gold);
    box-shadow: 0 15px 50px rgba(30, 53, 32, 0.4);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .about-photo:hover { transform: scale(1.05); }
  @media (max-width: 768px) {
    .about-photo { width: 160px; height: 160px; }
    .about-photo-wrap { margin-bottom: 1.5rem; }
  }


  /* Newsletter Popup */
  .nl-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(45, 74, 47, 0.6); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.4s ease;
  }
  .nl-overlay.active { opacity: 1; visibility: visible; }
  .nl-popup {
    background: var(--cream-light); border-radius: 28px; padding: 3rem 2.5rem;
    max-width: 460px; width: 90%; position: relative;
    box-shadow: 0 30px 80px rgba(45, 74, 47, 0.25);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nl-overlay.active .nl-popup { transform: translateY(0) scale(1); }
  .nl-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(58, 90, 60, 0.06); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 1.2rem; transition: all 0.3s;
  }
  .nl-close:hover { background: rgba(58, 90, 60, 0.12); color: var(--forest); }
  .nl-popup .nl-icon { font-size: 2.5rem; margin-bottom: 1rem; }
  .nl-popup h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
    font-weight: 400; color: var(--forest); margin-bottom: 0.8rem; line-height: 1.3;
  }
  .nl-popup p {
    font-size: 0.92rem; line-height: 1.75; color: var(--text-muted);
    font-weight: 300; margin-bottom: 1.8rem;
  }
  .nl-form { display: flex; flex-direction: column; gap: 1rem; }
  .nl-form input {
    padding: 1rem 1.2rem; border-radius: 12px;
    border: 1.5px solid rgba(58, 90, 60, 0.15);
    background: white; font-family: inherit; font-size: 0.92rem;
    outline: none; transition: border 0.3s;
  }
  .nl-form input:focus { border-color: var(--forest); }
  .nl-form button {
    background: var(--forest); color: var(--cream); padding: 1rem 2rem;
    border-radius: 100px; border: none; cursor: pointer;
    font-family: inherit; font-size: 0.9rem; font-weight: 600;
    transition: all 0.4s;
  }
  .nl-form button:hover { background: var(--forest-light); transform: translateY(-2px); }
  .nl-hint {
    font-size: 0.75rem; color: var(--text-muted); text-align: center;
    margin-top: 0.5rem; font-weight: 300;
  }
  .nl-success { display: none; text-align: center; }
  .nl-success.show { display: block; }
  .nl-success .nl-check { font-size: 3rem; margin-bottom: 1rem; }
  .nl-success h3 { margin-bottom: 0.5rem; }


  /* Form validation */
  .required-mark { color: #c4795b; font-weight: 600; }
  input:invalid:not(:placeholder-shown), textarea:invalid:not(:placeholder-shown) {
    border-color: #c4795b !important;
  }
  .form-error {
    display: none; font-size: 0.78rem; color: #c4795b; margin-top: -0.5rem;
  }
  input:invalid:not(:placeholder-shown) + .form-error { display: block; }

/* ── WEGWEISER-KARTEN auf der Startseite ── */
.wegweiser { padding: 7rem 8%; background: var(--cream); text-align: center; }
.wegweiser-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem;
  max-width: 1100px; margin: 3.5rem auto 0; text-align: left;
}
.weg-karte {
  display: flex; flex-direction: column;
  background: var(--cream-light); border: 1px solid rgba(58, 90, 60, 0.07);
  border-radius: 20px; padding: 2.5rem 2rem;
  text-decoration: none; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.weg-karte:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(58, 90, 60, 0.09); border-color: rgba(181, 152, 74, 0.3); }
.weg-karte-akzent { background: linear-gradient(160deg, #fdfbf6 0%, var(--cream-dark) 100%); border-color: rgba(181, 152, 74, 0.28); }
.weg-icon { font-size: 2rem; line-height: 1; margin-bottom: 1.2rem; }
.weg-karte h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 600;
  color: var(--forest-deep); margin-bottom: 0.8rem; line-height: 1.25;
}
.weg-karte p { font-size: 0.9rem; line-height: 1.75; color: var(--text-muted); font-weight: 300; flex: 1; }
.weg-link {
  display: inline-block; margin-top: 1.6rem; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--forest); transition: gap 0.3s, color 0.3s;
}
.weg-karte:hover .weg-link { color: var(--gold-text); }

/* Aktiver Navigationspunkt */
.nav-links a.aktiv { color: var(--forest-deep); font-weight: 700; }
.nav-links a.aktiv::after { width: 100%; }

@media (max-width: 1024px) { .wegweiser-grid { grid-template-columns: 1fr; max-width: 520px; } }
@media (max-width: 768px)  { .wegweiser { padding: 5rem 6%; } }

/* Naechster Monatsabend - dezenter Hinweis im Hero, verlinkt auf die Workshop-Seite */
.hero-termin {
  display: inline-flex; align-items: center; gap: 0.9rem;
  margin-top: 2.2rem; padding: 0.85rem 1.4rem 0.85rem 1.2rem;
  /* Startet unsichtbar und blendet ein wie die uebrigen Hero-Elemente.
     Kein animation-delay, weil der Block erst erscheint, wenn die Termine
     geladen sind - das Einblenden loest deshalb das Skript aus. */
  opacity: 0; transform: translateY(30px);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(58, 90, 60, 0.12); border-radius: 100px;
  text-decoration: none; max-width: 100%;
  transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.hero-termin.eingeblendet { opacity: 1; transform: translateY(0); }
.hero-termin:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(181, 152, 74, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(58, 90, 60, 0.12);
}
.hero-termin-punkt {
  flex-shrink: 0; width: 9px; height: 9px; border-radius: 50%;
  background: var(--forest-light); position: relative;
}
.hero-termin-punkt::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1.5px solid var(--forest-light); opacity: 0;
  animation: terminPuls 2.6s ease-out infinite;
}
@keyframes terminPuls {
  0%   { transform: scale(0.7); opacity: 0.7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}
.hero-termin-text { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.hero-termin-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #7c6833;
}
.hero-termin-datum {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  font-weight: 600; color: var(--forest-deep); line-height: 1.25;
}
.hero-termin-thema {
  font-size: 0.76rem; color: var(--text-muted); font-weight: 300;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.hero-termin-pfeil {
  flex-shrink: 0; color: var(--forest); font-size: 1rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-termin:hover .hero-termin-pfeil { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) { .hero-termin-punkt::after { animation: none; } }
@media (max-width: 640px) {
  .hero-termin { width: 100%; padding: 0.8rem 1.1rem; gap: 0.7rem; }
  .hero-termin-thema { font-size: 0.72rem; }
}
