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

    :root {
      --rose:      #f5e8e2;
      --rose-mid:  #e8c4b8;
      --rose-deep: #c8907c;
      --gold:      #c9a46a;
      --gold-l:    #e6d0a8;
      --cream:     #fdf8f5;
      --cream-d:   #f5ebe4;
      --dark:      #3a2520;
      --muted:     #7a5a52;
      --ff:        'Cormorant Garamond', Georgia, serif;
      --fb:        'DM Sans', sans-serif;
    }

    /* Globaler Schrift-Bump: 16px → 17px Basis. Alle rem-Werte skalieren
       proportional mit (~+6 %), das Layout (px-Paddings) bleibt stabil. */
    html { scroll-behavior: smooth; font-size: 106.25%; }

    body {
      background: var(--cream);
      color: var(--dark);
      font-family: var(--fb);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
      position: relative;
    }

    /* ───── ATMOSPHÄRE-LAYER ─────
       1) globale Wärme: weiche radiale Lichtquellen oben/unten — Eisbrecher
       2) feines Papier-Grain als SVG-Noise — Tiefe, analoge Haptik
       Beide Layer sind dezent (opacity-niedrig) und liegen hinter allen Inhalten. */
    body::before,
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }
    body::before {
      background:
        radial-gradient(ellipse 80% 60% at 12% 8%,  rgba(232,196,184,0.34) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 90% 92%, rgba(201,164,106,0.16) 0%, transparent 60%),
        radial-gradient(ellipse 90% 80% at 50% 50%, rgba(253,248,245,0)   0%, rgba(58,37,32,0.04) 100%);
      animation: bodyBreath 18s ease-in-out infinite;
    }
    body::after {
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.23  0 0 0 0 0.14  0 0 0 0 0.13  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
      opacity: 0.16;
      mix-blend-mode: multiply;
    }
    @keyframes bodyBreath {
      0%, 100% { opacity: 1;    transform: translateY(0); }
      50%      { opacity: 0.85; transform: translateY(-4px); }
    }
    @media (prefers-reduced-motion: reduce) {
      body::before { animation: none; }
    }

    /* alles inhaltliche liegt über der Atmosphäre */
    nav.nav-main, section, footer { position: relative; z-index: 1; }

    a { color: inherit; }

    /* ───── REVEAL-ON-SCROLL ─────
       Sektionen blenden langsam aus dem unteren Tempo ein (12 px hoch, 800 ms).
       Spiegelt Danielas „in deinem Tempo" — kein Aufploppen, sondern Ankommen. */
    .reveal {
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1);
    }
    .reveal.in { opacity: 1; transform: none; }
    .reveal-d1 { transition-delay: 0.08s; }
    .reveal-d2 { transition-delay: 0.16s; }
    .reveal-d3 { transition-delay: 0.24s; }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
    }

    /* ───── SCROLLBAR ─────
       Dünner goldener Strich statt Standard-Grau — Detail-Pflege. */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, rgba(201,164,106,0.35), rgba(200,144,124,0.30));
      border-radius: 8px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, rgba(201,164,106,0.55), rgba(200,144,124,0.5));
    }
    html { scrollbar-color: rgba(201,164,106,0.35) transparent; scrollbar-width: thin; }

    /* Auswahl-Hervorhebung */
    ::selection { background: rgba(232,196,184,0.55); color: var(--dark); }

    /* ────────────────────────────── CHARIS-GOLDKITT */
    /* Kintsugi-Naht: leicht unregelmäßige Goldlinie, mehrfach wiederverwendet */
    .charis-thread {
      display: block;
      width: 100%;
      max-width: 240px;
      height: 8px;
      margin: 56px auto;
      filter: drop-shadow(0 0 3px rgba(201,164,106,0.28));
    }
    .charis-thread.tiny    { max-width: 56px; height: 6px; margin: 18px auto; }
    .charis-thread.short   { max-width: 96px;  margin: 32px auto; }
    .charis-thread.medium  { max-width: 200px; }
    .charis-thread.wide    { max-width: 360px; }
    .charis-thread.left    { margin-left: 0; margin-right: auto; }
    .charis-thread.right   { margin-left: auto; margin-right: 0; }
    .charis-thread.tight   { margin: 22px auto; }
    .charis-thread.dark    { filter: drop-shadow(0 0 4px rgba(230,208,168,0.45)); }

    /* ────────────────────────────── NAV (top, fixed) */
    .nav-main {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 60px;
      background: rgba(253,248,245,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,164,106,0.15);
    }

    .nav-logo {
      font-family: var(--ff);
      font-size: 1.35rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      color: var(--dark);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .nav-logo span { color: var(--gold); font-style: italic; }
    .nav-logo-img { height: 36px; width: auto; display: block; }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      font-size: 0.74rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 10px 22px;
      border: 1px solid var(--gold);
      color: var(--gold);
      text-decoration: none;
      transition: all 0.3s;
    }
    .nav-cta:hover { background: var(--gold); color: #fff; }

    /* ────────────────────────────── HERO */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: flex-start;   /* Text startet oben — keine zentrumsbedingte Lücke neben dem Portrait */
      position: relative;
      overflow: hidden;
      padding: 130px 60px 80px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 80% at 70% 40%, #f6e6df 0%, #fdf3ee 55%, var(--cream) 100%);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 640px;
    }

    .hero-eyebrow {
      font-size: 0.74rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
    }

    .hero-title {
      font-family: var(--ff);
      font-size: clamp(2.8rem, 6vw, 5.4rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--dark);
      margin-bottom: 28px;
    }
    .hero-title .more { font-weight: 300; }
    .hero-title em {
      font-style: italic;
      font-weight: 400;
      color: var(--dark);
    }
    .hero-title .du { color: var(--rose-deep); }

    .hero-sub {
      font-size: 1.02rem;
      color: var(--muted);
      max-width: 480px;
      margin-bottom: 38px;
      line-height: 1.85;
    }

    .hero-quote {
      font-family: var(--ff);
      font-style: italic;
      font-size: 1.27rem;   /* +15% — Zitate prominenter */
      color: var(--dark);
      max-width: 460px;
      margin: 28px 0 36px;
      padding-left: 20px;
      border-left: 1px solid var(--gold);
      line-height: 1.6;
    }

    .hero-cta-hint {
      font-family: var(--ff);
      font-style: italic;
      font-size: 1rem;
      color: var(--gold);
      max-width: 460px;
      margin: 0 0 22px;
      letter-spacing: 0.01em;
      line-height: 1.6;
    }
    .hero-cta-hint span { margin-right: 8px; }

    .hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

    .btn-primary {
      display: inline-block;
      padding: 14px 32px;
      background: linear-gradient(135deg, var(--rose-deep), #b87560);
      color: #fff;
      font-family: var(--fb);
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: all 0.35s;
      border: none;
      cursor: pointer;
    }
    .btn-primary:hover {
      background: linear-gradient(135deg, #b87560, var(--rose-deep));
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(200,144,124,0.32);
    }

    .btn-ghost {
      display: inline-block;
      padding: 14px 32px;
      border: 1px solid var(--rose-mid);
      color: var(--dark);
      font-family: var(--fb);
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: all 0.3s;
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

    .hero-image-wrap {
      position: absolute;
      right: 6%;
      top: 130px;              /* synchron zum Hero-Padding-Top — Bild + Text starten auf gleicher Höhe */
      z-index: 1;
      width: 420px;
      height: 540px;
      animation: heroFloat 9s ease-in-out infinite;
    }
    /* atmender Goldhof hinter dem Portrait — Eisbrecher-Wärme */
    .hero-image-wrap::before {
      content: '';
      position: absolute;
      inset: -8% -10% -12% -10%;
      background:
        radial-gradient(ellipse 70% 75% at 50% 55%, rgba(201,164,106,0.32) 0%, rgba(232,196,184,0.18) 35%, transparent 70%);
      filter: blur(28px);
      z-index: -1;
      animation: heroAura 8s ease-in-out infinite;
    }
    @keyframes heroFloat {
      0%, 100% { transform: translateY(-6px); }
      50%      { transform: translateY(6px); }
    }
    @keyframes heroAura {
      0%, 100% { opacity: 0.85; transform: scale(1); }
      50%      { opacity: 1;    transform: scale(1.04); }
    }

    .hero-image {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 25%;
      border-radius: 52% 48% 48% 52% / 56% 52% 48% 44%;
      box-shadow:
        0 30px 80px rgba(58,37,32,0.22),
        0 8px 24px rgba(58,37,32,0.14),
        inset 0 0 0 1px rgba(255,255,255,0.4);
      filter: saturate(1.02);
      animation: heroMorph 22s ease-in-out infinite;
    }
    @keyframes heroMorph {
      0%, 100% { border-radius: 52% 48% 48% 52% / 56% 52% 48% 44%; }
      33%      { border-radius: 48% 52% 54% 46% / 50% 56% 44% 50%; }
      66%      { border-radius: 54% 46% 50% 50% / 48% 50% 56% 52%; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-image-wrap, .hero-image, .hero-image-wrap::before {
        animation: none;
      }
      .hero-image-wrap { transform: none; }
    }

    .hero-credibility {
      position: relative;
      z-index: 2;
      margin-top: 60px;
      padding-top: 28px;
      max-width: 600px;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      line-height: 1.8;
    }
    .hero-credibility .dot { color: var(--gold); margin: 0 6px; }

    /* ────────────────────────────── SECTION SHARED */
    section { padding: 110px 60px; position: relative; }

    .section-label {
      font-size: 0.72rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: var(--ff);
      font-size: clamp(2rem, 4.2vw, 3.2rem);
      font-weight: 300;
      line-height: 1.18;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .section-title em {
      font-style: italic;
      font-weight: 400;
      color: var(--rose-deep);
    }

    .section-text {
      font-size: 0.96rem;
      color: var(--muted);
      line-height: 1.9;
      max-width: 560px;
    }

    /* ────────────────────────────── ÜBER MICH */
    #about {
      background: #fff;
      display: flex;
      align-items: center;
      gap: 80px;
      position: relative;
    }
    /* Sektions-Vignette: zarte Aufhellung im Zentrum, Sammlung der Aufmerksamkeit */
    #about::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 0%, rgba(58,37,32,0.025) 100%);
      pointer-events: none;
    }
    #about > * { position: relative; z-index: 1; }

    .about-img {
      flex: 0 0 360px;
      width: 360px;
      height: 460px;
      object-fit: cover;
      object-position: center 30%;
      border-radius: 50% 50% 44% 56% / 54% 46% 54% 46%;
      box-shadow:
        0 24px 60px rgba(58,37,32,0.18),
        0 6px 18px rgba(58,37,32,0.10),
        inset 0 0 0 1px rgba(255,255,255,0.35);
      animation: aboutMorph 28s ease-in-out infinite;
    }
    @keyframes aboutMorph {
      0%, 100% { border-radius: 50% 50% 44% 56% / 54% 46% 54% 46%; }
      50%      { border-radius: 46% 54% 50% 50% / 50% 52% 48% 50%; }
    }
    @media (prefers-reduced-motion: reduce) {
      .about-img { animation: none; }
    }

    .about-content { flex: 1; max-width: 600px; }

    .about-content .section-text { margin-top: 18px; }
    .about-content .section-text + .section-text { margin-top: 18px; }

    /* ────────────────────────────── MEIN WARUM */
    #warum {
      background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232,196,184,0.18) 0%, transparent 70%),
        var(--cream);
      text-align: center;
      position: relative;
    }
    /* sanfte innere Vignette: nach unten dunkler → das „Tiefer-Werden" der Erzählung */
    #warum::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 100% at 50% 60%, transparent 50%, rgba(58,37,32,0.05) 100%);
      pointer-events: none;
    }
    #warum > * { position: relative; z-index: 1; }

    #warum .section-title { margin-left: auto; margin-right: auto; }

    /* Drop-Cap auf den ersten Warum-Absatz: leises Eintreten in die Geschichte */
    #warum .warum-paragraph:first-of-type::first-letter {
      font-family: var(--ff);
      font-style: italic;
      font-size: 3.6em;
      line-height: 0.85;
      float: left;
      padding: 0.08em 0.12em 0 0;
      color: var(--rose-deep);
      font-weight: 400;
    }

    .warum-body {
      max-width: 640px;
      margin: 0 auto;
      text-align: left;
    }

    .warum-paragraph {
      font-family: var(--ff);
      font-weight: 300;
      font-size: 1.18rem;
      line-height: 1.85;
      color: var(--dark);
    }

    .warum-paragraph + .warum-paragraph { margin-top: 6px; }

    /* ────────────────────────────── WERTE-MANIFEST */
    #werte {
      background: #fff;
      text-align: center;
    }

    .werte-list {
      max-width: 720px;
      margin: 60px auto 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .werte-item { padding: 8px 16px; }

    .werte-headline {
      font-family: var(--ff);
      font-size: 1.55rem;
      font-weight: 400;
      line-height: 1.4;
      color: var(--dark);
      margin-bottom: 12px;
      font-style: italic;
    }

    .werte-text {
      font-size: 0.94rem;
      color: var(--muted);
      line-height: 1.8;
      max-width: 560px;
      margin: 0 auto;
    }

    /* ────────────────────────────── ANGEBOTE */
    #angebote { background: var(--cream-d); }

    .angebote-header {
      text-align: center;
      max-width: 620px;
      margin: 0 auto 48px;
    }
    .angebote-header .section-text { margin: 18px auto 0; text-align: center; }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1140px;
      margin: 0 auto;
    }

    .card {
      background: #fff;
      border-radius: 4px;
      padding: 44px 36px 40px;
      position: relative;
      overflow: hidden;
      transition: transform 0.6s cubic-bezier(0.22,1,0.36,1),
                  box-shadow 0.6s cubic-bezier(0.22,1,0.36,1);
      border: 1px solid rgba(232,196,184,0.35);
      box-shadow:
        0 1px 2px rgba(58,37,32,0.04),
        0 8px 24px rgba(58,37,32,0.05);
      display: flex;
      flex-direction: column;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--rose-mid), var(--gold));
    }
    /* leiser warmer Lichthof — sichtbar beim Hover, sonst nur geahnt */
    .card::after {
      content: '';
      position: absolute;
      inset: -1px;
      background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(232,196,184,0.22) 0%, transparent 65%);
      opacity: 0;
      transition: opacity 0.7s ease;
      pointer-events: none;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow:
        0 1px 2px rgba(58,37,32,0.04),
        0 28px 60px rgba(200,144,124,0.20),
        0 8px 22px rgba(58,37,32,0.08);
    }
    .card:hover::after { opacity: 1; }

    .card.featured {
      background: linear-gradient(160deg, #3a2520 0%, #5a3530 100%);
      color: #fff;
    }
    .card.featured::before {
      background: linear-gradient(90deg, var(--gold), var(--gold-l));
    }
    .card.featured .card-title { color: #fff; }
    .card.featured .card-text { color: rgba(255,255,255,0.78); }
    .card.featured .card-meta { color: var(--gold-l); }
    .card.featured .card-list li { color: rgba(255,255,255,0.78); }
    .card.featured .card-list li::before { color: var(--gold-l); }

    .card-icon {
      font-family: var(--ff);
      font-size: 1.6rem;
      margin-bottom: 18px;
      color: var(--gold);
    }

    .card-title {
      font-family: var(--ff);
      font-size: 1.55rem;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 14px;
      line-height: 1.25;
    }

    .card-text {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 22px;
    }

    .card-list { list-style: none; margin-bottom: 24px; }
    .card-list li {
      font-size: 0.84rem;
      color: var(--muted);
      padding: 4px 0 4px 16px;
      position: relative;
    }
    .card-list li::before {
      content: '·';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-weight: bold;
    }

    .card-meta {
      font-family: var(--ff);
      font-size: 1.4rem;
      font-style: italic;
      color: var(--dark);
    }
    .card-sub {
      font-size: 0.74rem;
      letter-spacing: 0.12em;
      color: var(--muted);
      margin-top: 4px;
    }

    .card .charis-thread {
      max-width: 60px;
      margin: 18px 0 22px;
      height: 6px;
    }
    .card.featured .charis-thread {
      filter: drop-shadow(0 0 4px rgba(230,208,168,0.45));
    }

    .btn-card {
      display: inline-block;
      align-self: flex-start;
      margin-top: auto;
      padding: 11px 26px;
      border: 1px solid var(--rose-deep);
      color: var(--rose-deep);
      font-size: 0.74rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
    }
    .btn-card:hover { background: var(--rose-deep); color: #fff; }

    .card.featured .btn-card {
      border-color: var(--gold);
      color: var(--gold);
    }
    .card.featured .btn-card:hover { background: var(--gold); color: var(--dark); }

    /* ────────────────────────────── VERANSTALTUNGEN */
    #veranstaltungen {
      background: #fff;
      text-align: center;
    }

    .events-header { max-width: 620px; margin: 0 auto 50px; }
    .events-header .section-text { margin: 18px auto 0; text-align: center; }

    .event-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      max-width: 720px;
      margin: 0 auto;
    }
    .event-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 1080px; }

    .event-card {
      display: grid;
      grid-template-columns: 130px 1fr;
      gap: 32px;
      align-items: start;
      padding: 36px;
      background: var(--cream);
      border: 1px solid rgba(201,164,106,0.18);
      text-align: left;
    }

    .event-date {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 6px;
    }
    .event-day {
      font-family: var(--ff);
      font-size: 3.4rem;
      font-weight: 300;
      line-height: 1;
      color: var(--dark);
    }
    .event-month {
      font-family: var(--fb);
      font-size: 0.76rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 6px;
    }
    .event-year {
      font-family: var(--fb);
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      color: var(--muted);
      margin-top: 2px;
    }
    .event-date .charis-thread {
      max-width: 60px;
      margin: 12px auto 0;
      height: 6px;
    }

    .event-body { padding-top: 4px; }
    .event-status {
      display: inline-block;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }
    .event-status::before {
      content: '·';
      display: inline-block;
      margin-right: 6px;
      font-size: 1.4em;
      vertical-align: middle;
      color: var(--gold);
    }
    .event-status.placeholder { color: var(--muted); }
    .event-status.placeholder::before { color: var(--muted); }

    .event-title {
      font-family: var(--ff);
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .event-meta {
      font-size: 0.82rem;
      letter-spacing: 0.05em;
      color: var(--muted);
      margin-bottom: 14px;
    }
    .event-text {
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 22px;
      max-width: 480px;
    }
    .event-empty {
      max-width: 560px;
      margin: 0 auto;
      font-family: var(--ff);
      font-style: italic;
      font-size: 1.15rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── Archiv: Rückblick auf vergangene Workshops ── */
    .event-archive {
      max-width: 720px;
      margin: 64px auto 0;
      text-align: center;
    }
    .event-archive .charis-thread.short { margin: 0 auto 22px; }
    .archive-label {
      color: var(--muted);
      margin-bottom: 22px;
    }
    .archive-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .event-card.past {
      background: transparent;
      border-color: rgba(201,164,106,0.16);
      padding: 22px 28px;
      opacity: 0.78;
      transition: opacity 0.4s ease;
      align-items: center;
    }
    .event-card.past:hover { opacity: 1; }
    .event-card.past .event-day { font-size: 2.5rem; color: var(--muted); }
    .event-card.past .event-month { color: var(--gold); }
    .event-card.past .event-title { font-size: 1.3rem; margin-bottom: 6px; }
    .event-card.past .event-meta { margin-bottom: 0; }

    /* ────────────────────────────── STIMMEN / REVIEWS */
    #stimmen {
      background: linear-gradient(135deg, #3a2520 0%, #5a3530 100%);
      color: #fff;
      text-align: center;
    }

    #stimmen .section-label { color: var(--gold-l); }
    #stimmen .section-title { color: #fff; }
    #stimmen .section-title em { color: var(--rose-mid); }

    .review-aggregate {
      margin: 30px auto 60px;
      display: inline-flex;
      align-items: baseline;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .agg-score {
      font-family: var(--ff);
      font-size: 3rem;
      font-weight: 300;
      color: var(--gold-l);
      letter-spacing: 0.04em;
    }
    .agg-stars {
      font-size: 1.05rem;
      color: var(--gold);
      letter-spacing: 0.1em;
    }
    .agg-caption {
      font-size: 0.84rem;
      letter-spacing: 0.14em;
      color: rgba(255,255,255,0.55);
      text-transform: uppercase;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1080px;
      margin: 0 auto;
    }

    .review {
      padding: 36px 30px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(201,164,106,0.18);
      text-align: left;
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .review-quote-mark {
      font-family: var(--ff);
      font-size: 4.2rem;
      line-height: 0.6;
      color: rgba(201,164,106,0.45);
      position: absolute;
      top: 22px;
      left: 22px;
      pointer-events: none;
    }
    .review-text {
      font-family: var(--ff);
      font-size: 1.24rem;
      font-style: italic;
      font-weight: 300;
      line-height: 1.78;
      color: rgba(255,255,255,0.92);
      padding-top: 22px;
      margin-bottom: 18px;
    }
    .review .charis-thread {
      max-width: 56px;
      margin: 0 0 14px;
      height: 6px;
    }
    .review-name {
      font-size: 0.86rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-l);
    }
    .review-date {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.45);
      margin-top: 4px;
    }
    .review.placeholder .review-text { color: rgba(255,255,255,0.5); }

    .review-toggle {
      margin: 36px auto 0;
      background: none;
      border: none;
      color: var(--gold-l);
      font-family: var(--fb);
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      cursor: pointer;
      padding: 10px 18px;
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, color 0.3s;
    }
    .review-toggle:hover {
      border-color: var(--gold-l);
      color: #fff;
    }

    .review-google-link {
      display: inline-block;
      margin-top: 28px;
      color: rgba(255,255,255,0.5);
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-decoration: none;
      border-bottom: 1px solid rgba(201,164,106,0.3);
      padding-bottom: 4px;
      transition: color 0.3s, border-color 0.3s;
    }
    .review-google-link:hover {
      color: var(--gold-l);
      border-color: var(--gold-l);
    }

    /* ────────────────────────────── HINTERGRUND / AKKORDEON */
    #hintergrund {
      background: var(--cream);
    }

    .hintergrund-wrap {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }

    .accordion {
      margin-top: 50px;
      text-align: left;
    }

    .acc-item {
      border-top: 1px solid rgba(201,164,106,0.28);
    }
    .acc-item:last-child { border-bottom: 1px solid rgba(201,164,106,0.28); }

    .acc-header {
      width: 100%;
      background: none;
      border: none;
      padding: 22px 4px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-family: var(--ff);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--dark);
      cursor: pointer;
      text-align: left;
      letter-spacing: 0.01em;
    }
    .acc-header .acc-toggle {
      font-family: var(--ff);
      font-size: 1.6rem;
      color: var(--gold);
      transition: transform 0.35s;
      line-height: 1;
    }
    .acc-item.open .acc-toggle { transform: rotate(45deg); }

    .acc-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
    }
    .acc-body-inner {
      padding: 4px 4px 28px;
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.85;
    }
    .acc-body-inner ul {
      list-style: none;
      margin: 8px 0 0;
    }
    .acc-body-inner li {
      padding: 4px 0 4px 18px;
      position: relative;
    }
    .acc-body-inner li::before {
      content: '·';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-weight: bold;
    }
    .acc-body-inner strong { color: var(--dark); font-weight: 500; }

    /* ────────────────────────────── KONTAKT */
    #kontakt {
      background:
        radial-gradient(ellipse 55% 70% at 20% 30%, rgba(232,196,184,0.30) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 85% 80%, rgba(201,164,106,0.14) 0%, transparent 60%),
        #fff;
      display: flex;
      align-items: flex-start;
      gap: 80px;
      position: relative;
      overflow: hidden;
    }
    /* Kerzenlicht-Glow: weiches warmes Innenleuchten, das langsam atmet —
       Daniela ist hier, im Raum, präsent */
    #kontakt::before {
      content: '';
      position: absolute;
      width: 520px; height: 520px;
      left: -120px; top: -120px;
      background: radial-gradient(circle, rgba(232,196,184,0.32) 0%, transparent 65%);
      filter: blur(40px);
      animation: kontaktGlow 12s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes kontaktGlow {
      0%, 100% { transform: translate(0, 0)     scale(1);    opacity: 0.85; }
      50%      { transform: translate(20px, 30px) scale(1.12); opacity: 1; }
    }
    @media (prefers-reduced-motion: reduce) {
      #kontakt::before { animation: none; }
    }
    #kontakt > * { position: relative; z-index: 1; }

    .kontakt-content { flex: 1; max-width: 480px; }

    .kontakt-form {
      flex: 1;
      max-width: 540px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group label {
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      padding: 14px 18px;
      background: var(--cream);
      border: 1px solid var(--rose-mid);
      border-radius: 2px;
      font-family: var(--fb);
      font-size: 0.92rem;
      color: var(--dark);
      outline: none;
      transition: border-color 0.3s;
      appearance: none;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--gold);
    }
    .form-group textarea {
      min-height: 130px;
      resize: vertical;
    }

    .kontakt-info {
      margin-top: 36px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 0.9rem;
      color: var(--muted);
    }

    .contact-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--rose-deep);
      flex-shrink: 0;
    }

    .form-note {
      font-size: 0.82rem;
      color: var(--muted);
      font-style: italic;
      margin-top: -4px;
      padding: 10px 14px;
      border-left: 2px solid rgba(201,164,106,0.4);
      background: rgba(232,196,184,0.12);
      line-height: 1.55;
      transition: color 0.4s, background 0.4s, border-color 0.4s;
    }
    .form-note.form-status-error {
      color: #8a3530;
      border-left-color: #c8907c;
      background: rgba(200,144,124,0.18);
      font-style: normal;
    }
    .form-note.form-status-ok {
      color: #4a6b3a;
      border-left-color: var(--gold);
      background: rgba(201,164,106,0.14);
      font-style: normal;
    }

    /* ────────────────────────────── FOOTER */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.6);
      padding: 56px 60px 42px;
    }

    .footer-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }

    .footer-logo {
      font-family: var(--ff);
      font-size: 1.3rem;
      font-weight: 400;
      color: #fff;
      letter-spacing: 0.04em;
    }
    .footer-logo span { color: var(--gold); font-style: italic; }

    .footer-tagline {
      font-family: var(--ff);
      font-style: italic;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.55);
      margin-top: 8px;
      max-width: 320px;
      line-height: 1.6;
    }

    .footer-meta {
      font-size: 0.74rem;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.36);
      margin-top: 18px;
    }

    .footer-nav {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-nav a {
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover { color: var(--gold); }

    .footer-charis {
      max-width: 100%;
      margin: 32px 0 0;
    }

    /* ────────────────────────────── RESPONSIVE */
    @media (max-width: 900px) {
      .nav-main { padding: 14px 20px; gap: 12px; }
      .nav-links { display: none; }
      .nav-logo { font-size: 1.15rem; }
      .nav-cta { padding: 8px 14px; font-size: 0.68rem; letter-spacing: 0.1em; }

      section { padding: 70px 22px; }

      /* Hero: stacked layout, kein Overlap mehr */
      #hero {
        min-height: auto;
        padding: 96px 22px 60px;
        flex-direction: column;
        align-items: stretch;
      }
      .hero-content { max-width: 100%; }
      .hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.18em; margin-bottom: 18px; }
      .hero-title { font-size: clamp(2.4rem, 11vw, 3.4rem); line-height: 1.08; margin-bottom: 22px; }
      .hero-sub { font-size: 0.96rem; max-width: 100%; margin-bottom: 24px; }
      .hero-quote { font-size: 1.15rem; max-width: 100%; margin: 22px 0 28px; }

      .hero-buttons { flex-direction: column; gap: 10px; }
      .hero-buttons .btn-primary,
      .hero-buttons .btn-ghost {
        display: block;
        text-align: center;
        padding: 14px 22px;
        font-size: 0.74rem;
      }
      .hero-buttons .btn-ghost { margin-left: 0; }

      .hero-image-wrap {
        position: static;
        transform: none;
        width: 100%;
        max-width: 280px;
        height: 360px;
        margin: 0 auto 36px;
        order: -1;
      }
      .hero-content { order: 1; }
      .hero-credibility {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
        line-height: 1.9;
        margin-top: 40px;
        padding-top: 22px;
        border-top: 1px solid rgba(201,164,106,0.2);
      }
      .hero-credibility .dot { margin: 0 4px; }

      .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

      #about, #kontakt { flex-direction: column; gap: 40px; }
      .about-img { flex: 0 0 auto; width: 100%; max-width: 280px; height: 340px; margin: 0 auto; }
      .about-content { max-width: 100%; }

      #warum .warum-paragraph { font-size: 1.05rem; line-height: 1.8; }
      .werte-headline { font-size: 1.3rem; }

      .cards { grid-template-columns: 1fr; gap: 20px; }
      .card { padding: 36px 28px 32px; }

      .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
      .review { padding: 30px 24px; }

      .event-grid.two { grid-template-columns: 1fr; }
      .event-card { grid-template-columns: 1fr; gap: 14px; padding: 26px 22px; }
      .event-date { flex-direction: row; gap: 12px; align-items: baseline; }
      .event-day { font-size: 2.6rem; }
      .event-date .charis-thread { display: none; }

      .acc-header { font-size: 1.1rem; padding: 18px 4px; }

      .kontakt-form { width: 100%; }

      footer { padding: 44px 22px 32px; }
      .footer-row { flex-direction: column; gap: 28px; }
      .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 18px; }
    }

    @media (max-width: 380px) {
      .nav-cta { display: none; }
      .hero-title { font-size: 2.2rem; }
    }

/* ═══════════ MEHRSEITIGE VERSION — Ergänzungen ═══════════ */

/* Aktive Navigation */
.nav-links a[aria-current="page"] { color: var(--gold); }
.nav-links a[aria-current="page"]::after {
  content: ''; display: block; height: 1px; margin-top: 3px;
  background: var(--gold); opacity: 0.6;
}

/* Vor-/Nach-Workshop-Bereich (Veranstaltungen) */
.event-extra {
  margin: 4px 0 18px;
  padding: 16px 20px;
  background: rgba(201,164,106,0.08);
  border-left: 2px solid var(--gold);
  border-radius: 0 6px 6px 0;
}
.event-extra-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.event-extra p { font-size: 0.92rem; color: var(--muted); line-height: 1.75; }

/* Workshop-Fotos */
.event-fotos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin: 6px 0 20px;
}
.event-fotos img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 4px; box-shadow: 0 6px 18px rgba(58,37,32,0.12);
}

/* Impressum / Rechtstexte */
.legal-page { max-width: 760px; margin: 0 auto; }
.legal-page .section-title { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }
.legal-h {
  font-family: var(--ff); font-style: italic; font-weight: 400;
  font-size: 1.45rem; color: var(--dark); margin: 34px 0 8px;
}
.legal-page p, .legal-page address {
  color: var(--muted); line-height: 1.8; font-size: 0.98rem; margin-bottom: 10px;
}
.legal-page address { font-style: normal; }
.legal-page a { color: var(--dark); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.legal-page a:hover { color: var(--gold); }
.legal-note {
  display: inline-block; color: var(--muted); font-style: italic;
  background: var(--cream-d); border-left: 2px solid var(--gold);
  padding: 8px 14px; border-radius: 0 4px 4px 0; font-size: 0.92rem;
}

    /* ═══════ Anmeldung & Teilnehmer-Bereich ═══════ */
    .anmelden-section { max-width: 760px; margin: 0 auto; }
    .anmelden-section .events-header { margin-bottom: 36px; }
    .anmelden-form { margin: 0 auto; width: 100%; }
    .anmelden-form .btn-primary { align-self: flex-start; }
    .anmelden-form .optional { text-transform: none; letter-spacing: 0; opacity: 0.7; font-style: italic; }

    /* Honeypot: für Menschen unsichtbar, für Bots ein normales Feld */
    .hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

    .form-error {
      max-width: 540px; margin: 0 auto 26px;
      background: rgba(200,144,124,0.14); border-left: 2px solid var(--rose-deep);
      color: var(--rose-deep); padding: 12px 16px; font-size: 0.9rem;
    }

    .btn-card.ghost { border-color: rgba(58,37,32,0.25); color: var(--muted); }
    .btn-card.ghost:hover { background: transparent; border-color: var(--rose-deep); color: var(--rose-deep); }

    .tn-section .event-card { margin-bottom: 28px; }
    .tn-dateien { list-style: none; margin: 14px 0 4px; padding: 0; }
    .tn-dateien li { padding: 9px 0; border-bottom: 1px solid rgba(58,37,32,0.1); }
    .tn-dateien a {
      color: var(--rose-deep); text-decoration: none; font-size: 0.92rem;
      background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 1px;
      transition: background-size 0.4s;
    }
    .tn-dateien a:hover { background-size: 100% 1px; }
    .tn-dateien a::before { content: '⤓  '; opacity: 0.6; }
    .tn-login { margin-top: 44px; }
    .tn-login .form-note a { color: var(--rose-deep); }
