/* blocks.css - Block-specific styles */
/* ─── HERO ─── */
  #hero {
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    padding-top: 0;
  }

  .hero-visual {
    position: relative;
    overflow: hidden;
    background: var(--cream-dark);
    display: flex;
    flex-direction: column;
  }

  .hero-img-wrap {
    position: relative;
    margin: 10rem 2rem 0 2rem;
    background: var(--cream-dark);
    overflow: hidden;
  }

  .hero-img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .hero-quote-below {
    position: absolute;
    bottom: 22rem;
    left: 0;
    right: 0;
    padding: 0 2.5rem;
    background: transparent;
    z-index: 5;
  }

  .hero-quote-below p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--forest);
    line-height: 1.55;
    margin: 0 0 0.4rem 0;
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
  }

  .hero-quote-below cite {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    font-style: normal;
    padding-left: 1rem;
  }

  .hero-visual::after {
    content: '';
    position: absolute; inset: 0;
    background: none;
  }

  .hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 20% 80%, rgba(212,168,130,0.12) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(122,176,170,0.15) 0%, transparent 50%);
  }

  .hero-ornament {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 380px; height: 380px;
    border: 1px solid rgba(212,168,130,0.2);
    border-radius: 50%;
    z-index: 1;
  }

  .hero-ornament::before {
    content: '';
    position: absolute; inset: 20px;
    border: 1px solid rgba(212,168,130,0.12);
    border-radius: 50%;
  }

  .hero-ornament::after {
    content: '';
    position: absolute; inset: -20px;
    border: 1px solid rgba(212,168,130,0.08);
    border-radius: 50%;
  }

  .hero-text-side {
    display: flex; flex-direction: column; justify-content: flex-start;
    padding: 10rem 5rem 5rem 5rem;
    background: var(--white);
    position: relative;
  }

  .hero-text-side::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--gold), var(--sage));
  }

  .hero-eyebrow {
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--sage); font-family: 'Jost', sans-serif; font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.3s;
  }

  .hero-h1 {
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: 300; line-height: 1.1;
    color: var(--forest);
    margin-bottom: 1.75rem;
    opacity: 0; transform: translateY(30px);
    animation: fadeUp 0.9s ease forwards 0.5s;
  }

  .hero-h1 em { color: var(--sage); font-style: italic; }

  .hero-sub {
    font-size: 1.1rem; font-weight: 300; color: var(--text-mid);
    max-width: 440px; line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.9s ease forwards 0.7s;
  }

  .hero-list {
    list-style: none;
    margin: 0 0 0.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.9s ease forwards 0.8s;
  }

  .hero-list li {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-mid);
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.6;
  }

  .hero-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
  }

  .hero-cta-group {
    display: flex; gap: 1rem; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.9s ease forwards 0.9s;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--forest);
    color: var(--cream);
    padding: 1rem 2.2rem;
    font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
    text-decoration: none; border-radius: 2px;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif; font-weight: 500;
  }

  .btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); }

  .btn-secondary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: transparent;
    color: var(--forest);
    padding: 1rem 2.2rem;
    font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
    text-decoration: none; border-radius: 2px;
    border: 1px solid rgba(52,88,88,0.3);
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif; font-weight: 400;
  }

  .btn-secondary:hover { border-color: var(--sage); color: var(--sage-dark); transform: translateY(-2px); }

  .hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--mist);
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 1.1s;
  }

  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 400; color: var(--forest);
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--stone); margin-top: 4px;
  }

  /* ─── FLOATING LEAF ─── */
  .leaf-divider {
    display: flex; justify-content: center; align-items: center;
    padding: 1.5rem 0;
  }

  .leaf-divider svg { width: 120px; opacity: 0.4; }

  /* ─── SECTION COMMONS ─── */
  section { position: relative; }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
  }

  .section-pad { padding: 6rem 0; }
  .section-pad-lg { padding: 8rem 0; }

  .section-label {
    font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--sage); font-family: 'Jost', sans-serif; font-weight: 500;
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 1rem;
  }

  .section-label::before {
    content: '';
    display: block; width: 32px; height: 1px;
    background: var(--sage);
  }

  .section-h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300; line-height: 1.2;
    color: var(--forest);
  }

  .section-h2 em { font-style: italic; color: var(--sage); }

  /* ─── S2: PAIN ─── */
  #pain { background: var(--forest); }

  .pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    background: rgba(212,168,130,0.15);
  }

  .pain-item {
    background: var(--forest);
    padding: 3rem 2.5rem;
    transition: background 0.3s;
  }

  .pain-item:hover { background: rgba(122,176,170,0.08); }

  .pain-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; font-weight: 300;
    color: rgba(212,168,130,0.25);
    line-height: 1;
    margin-bottom: 1rem;
  }

  .pain-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 300;
    color: var(--cream);
    line-height: 1.5;
  }

  .pain-sub {
    margin-top: 0.75rem;
    font-size: 0.85rem; color: rgba(168,196,184,0.7);
    font-weight: 300;
  }

  /* ─── S3: INTRO ─── */
  #intro { background: var(--white); }

  .intro-layout {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 6rem; align-items: center;
  }

  .intro-promise-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 4px;
    border: 1px solid rgba(122,176,170,0.2);
  }

  .intro-promise-icon {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .intro-promise-item p {
    font-size: 1.05rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.7;
  }

  .intro-check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .intro-check-list li {
    font-size: 0.97rem;
    color: var(--text-mid);
    font-weight: 300;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
  }

  .intro-check-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
  }

  .intro-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 300; font-style: italic;
    color: var(--forest); line-height: 1.4;
    position: relative; padding-left: 2rem;
  }

  .intro-quote::before {
    content: '"';
    position: absolute; left: 0; top: -0.3rem;
    font-size: 5rem; color: var(--sage-light);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    opacity: 0.4;
  }

  .intro-quote cite {
    display: block; margin-top: 1.5rem;
    font-size: 0.78rem; font-style: normal;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--stone);
  }

  .intro-text p {
    font-size: 1rem; color: var(--text-mid);
    margin-bottom: 1.2rem; font-weight: 300; line-height: 1.85;
  }

  /* ─── S4: TANYA BIO ─── */
  #bio { background: var(--cream); overflow: hidden; }

  .bio-layout {
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 5rem; align-items: start;
  }

  .bio-image-wrap {
    position: relative;
  }

  .bio-image-frame {
    width: 100%; padding-top: 105%;
    background: #2A4848;
    position: relative; overflow: hidden;
  }

  .bio-image-frame img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 1;
  }

  .bio-image-frame::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(52,88,88,0.4) 100%);
  }

  .bio-accent {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 200px; height: 200px;
    border: 1px solid rgba(212,168,130,0.3);
    border-radius: 50%;
    z-index: -1;
  }

  .bio-content { padding-top: 1rem; }

  .bio-name {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300; color: var(--forest);
    margin-bottom: 0.5rem;
  }

  .bio-title {
    font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--sage); margin-bottom: 2rem;
  }

  .bio-text {
    font-size: 1.05rem; color: var(--text-mid);
    line-height: 1.9; font-weight: 300;
    margin-bottom: 1.2rem;
  }

  .bio-tags {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-top: 2rem;
  }

  .bio-tag {
    font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(122,176,170,0.4);
    border-radius: 2px;
    color: var(--sage-dark);
  }

  /* ─── S5: PAIN BRIDGE ─── */
  #bridge {
    background: var(--cream-dark);
    text-align: center;
  }

  .bridge-inner { max-width: 720px; margin: 0 auto; }

  .bridge-h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300; color: var(--forest);
    line-height: 1.25; margin-bottom: 1.5rem;
  }

  .bridge-h2 em { font-style: italic; color: var(--earth); }

  .bridge-text {
    font-size: 1.05rem; color: var(--text-mid);
    font-weight: 300; line-height: 1.9;
    margin-bottom: 2.5rem;
  }

  /* ─── S6: ZIELGRUPPE ─── */
  #target { background: var(--white); }

  .target-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 3.5rem;
  }

  .target-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(122,176,170,0.2);
    border-radius: 4px;
    position: relative; overflow: hidden;
    transition: all 0.4s ease;
    background: var(--white);
  }

  .target-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--gold));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
  }

  .target-card:hover::before { transform: scaleX(1); }
  .target-card:hover { border-color: rgba(122,176,170,0.4); transform: translateY(-4px); }

  .target-icon {
    width: 44px; height: 44px;
    background: var(--cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
  }

  .target-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 500;
    color: var(--forest); margin-bottom: 0.85rem;
  }

  .target-text {
    font-size: 1rem; color: var(--text-mid);
    line-height: 1.85; font-weight: 300;
  }

  /* ─── S7: ANGEBOTE ─── */
  #angebote { background: var(--forest); }

  .angebote-header { margin-bottom: 4rem; }
  .angebote-header .section-label { color: var(--sage-light); }
  .angebote-header .section-label::before { background: var(--sage-light); }
  .angebote-header .section-h2 { color: var(--cream); }

  .angebote-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  }

  .angebot-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,168,130,0.2);
    border-radius: 4px;
    padding: 3rem;
    transition: all 0.4s;
    position: relative; overflow: hidden;
  }

  .angebot-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity 0.4s;
  }

  .angebot-card:hover::after { opacity: 1; }
  .angebot-card:hover { background: rgba(255,255,255,0.07); }

  .angebot-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem; font-weight: 300;
    color: rgba(212,168,130,0.15);
    line-height: 1; margin-bottom: 1rem;
  }

  .angebot-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem; font-weight: 400;
    color: var(--cream); margin-bottom: 1.2rem;
  }

  .angebot-desc {
    font-size: 1rem; color: rgba(168,196,184,0.95);
    font-weight: 300; line-height: 1.9;
    margin-bottom: 1.75rem;
  }

  .angebot-list {
    list-style: none; display: flex; flex-direction: column; gap: 0.6rem;
  }

  .angebot-list li {
    font-size: 1.05rem; color: rgba(168,196,184,0.97);
    padding-left: 1.2rem; position: relative; font-weight: 300;
  }

  .angebot-list li::before {
    content: '–';
    position: absolute; left: 0;
    color: var(--gold); opacity: 0.6;
  }

  /* ─── S8: HOW IT WORKS ─── */
  #prozess { background: var(--cream); }

  .prozess-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 4rem;
    position: relative;
  }

  .prozess-steps::before {
    content: '';
    position: absolute; top: 28px; left: 12.5%; right: 12.5%;
    height: 1px; background: var(--mist);
    z-index: 0;
  }

  .step {
    text-align: center; padding: 0 1.5rem;
    position: relative; z-index: 1;
  }

  .step-circle {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--sage-light);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; color: var(--sage-dark);
    font-weight: 400;
  }

  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 500;
    color: var(--forest); margin-bottom: 0.75rem;
  }

  .step-text { font-size: 1.05rem; color: var(--text-mid); font-weight: 300; line-height: 1.8; }

  /* ─── S9: SYSTEMISCHE AUFSTELLUNG DEEP ─── */
  #aufstellung-deep { background: var(--earth-dark); overflow: hidden; }

  .aufstellung-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
  }

  .aufstellung-visual { position: relative; order: -1; }

  .aufstellung-frame {
    width: 100%; padding-top: 100%;
    position: relative; overflow: hidden;
    border-radius: 4px;
  }

  .aufstellung-frame-inner {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 60% 30%, rgba(212,168,130,0.12) 0%, transparent 55%),
      radial-gradient(ellipse at 20% 80%, rgba(42,72,72,0.2) 0%, transparent 50%),
      var(--earth-dark);
    display: flex; align-items: center; justify-content: center;
  }

  .aufstellung-badge {
    background: rgba(42,72,72,0.88);
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid rgba(212,168,130,0.2);
    margin-top: 1.5rem;
  }

  .aufstellung-badge-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-style: italic;
    color: var(--cream); line-height: 1.5;
  }

  .aufstellung-badge-author {
    font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--earth-light); margin-top: 0.75rem;
  }

  .aufstellung-content .section-label { color: var(--earth-light); }
  .aufstellung-content .section-label::before { background: var(--earth-light); }
  .aufstellung-content .section-h2 { color: var(--cream); }

  .aufstellung-text {
    font-size: 1.05rem; color: rgba(212,185,154,0.97);
    line-height: 1.9; font-weight: 300; margin-top: 1.5rem;
  }

  .aufstellung-list {
    list-style: none; margin-top: 2rem;
    display: flex; flex-direction: column; gap: 1rem;
  }

  .aufstellung-list li {
    display: flex; gap: 1rem; align-items: flex-start;
    font-size: 1rem; color: rgba(212,185,154,0.97);
    font-weight: 300;
  }

  .aufstellung-list li span:first-child {
    width: 20px; height: 20px; flex-shrink: 0;
    border: 1px solid rgba(212,168,130,0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem; color: var(--gold); margin-top: 2px;
  }

  .aufstellung-svg-art { width: 70%; opacity: 0.15; }

  

  /* ─── S10: PFERDE ─── */
  #achtsame-pferdekommunikation { background: var(--sage-dark); overflow: hidden; }

  .pferde-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
  }

  .pferde-content .section-label { color: var(--sage-light); }
  .pferde-content .section-label::before { background: var(--sage-light); }
  .pferde-content .section-h2 { color: var(--cream); }

  .pferde-text {
    font-size: 1.05rem; color: rgba(196,180,155,0.97);
    line-height: 1.9; font-weight: 300; margin-top: 1.5rem;
  }

  .pferde-list {
    list-style: none; margin-top: 2rem;
    display: flex; flex-direction: column; gap: 1rem;
  }

  .pferde-list li {
    display: flex; gap: 1rem; align-items: flex-start;
    font-size: 1rem; color: rgba(196,180,155,0.97);
    font-weight: 300;
  }

  .pferde-list li span:first-child {
    width: 20px; height: 20px; flex-shrink: 0;
    border: 1px solid rgba(212,168,130,0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem; color: var(--gold); margin-top: 2px;
  }

  .pferde-visual {
    position: relative;
  }

  .pferde-frame {
    width: 100%; padding-top: 100%;
    background: var(--forest);
    position: relative; overflow: hidden;
    border-radius: 4px;
  }

  .pferde-frame-inner {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 70%, rgba(122,176,170,0.3) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 30%, rgba(212,168,130,0.1) 0%, transparent 50%),
      var(--forest);
    display: flex; align-items: center; justify-content: center;
  }

  .pferde-svg-art {
    width: 70%; opacity: 0.18;
  }

  .pferde-badge {
    background: rgba(52,88,88,0.88);
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid rgba(212,168,130,0.2);
    margin-top: 1.5rem;
  }

  .pferde-badge-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-style: italic;
    color: var(--cream); line-height: 1.5;
  }

  .pferde-badge-author {
    font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--sage-light); margin-top: 0.75rem;
  }

  /* ─── S10: CHRONISCHE BELASTUNGEN ─── */
  #belastungen { background: var(--white); }

  .belastungen-intro {
    max-width: 600px; margin-bottom: 4rem;
  }

  .belastungen-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--mist);
  }

  .belastung-item {
    background: var(--white);
    padding: 2.5rem 2.5rem 2.5rem 3.5rem;
    transition: background 0.3s;
  }

  .belastung-item:hover { background: var(--cream); }

  .belastung-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 500;
    color: var(--forest); margin-bottom: 0.85rem;
  }

  .belastung-text {
    font-size: 1rem; color: var(--text-mid);
    font-weight: 300; line-height: 1.8;
  }

  /* ─── S11: TESTIMONIALS ─── */
  #testimonials { background: var(--cream-dark); }

  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 3.5rem;
  }

  .testimonial {
    background: var(--white);
    padding: 2.5rem 2.5rem 2.5rem 3.5rem;
    border-radius: 4px;
    position: relative;
    transition: transform 0.3s;
  }

  .testimonial:hover { transform: translateY(-4px); }

  .testimonial::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem; color: var(--sage-light);
    opacity: 0.3;
    position: absolute; top: 1rem; right: 1.5rem;
    line-height: 1;
  }

  .testimonial-stars {
    color: var(--gold); font-size: 0.7rem; letter-spacing: 2px;
    margin-bottom: 1rem;
  }

  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; font-style: italic;
    color: var(--text-mid); line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .testimonial-author {
    font-size: 0.72rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--stone);
    padding-top: 1.25rem;
    border-top: 1px solid var(--mist);
  }

  /* ─── EVENT: AUFSTELLUNGSTAG ─── */
  #aufstellungstag { background: var(--white); }

  .event-layout {
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 5rem; align-items: start;
  }

  .event-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 0.35rem 1rem; border-radius: 2px;
    background: var(--cream-dark); color: var(--sage-dark);
    margin-bottom: 1.5rem;
  }

  .event-badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--sage); flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .event-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300; color: var(--forest);
    line-height: 1.2; margin-bottom: 1rem;
  }

  .event-title em { font-style: italic; color: var(--sage); }

  .event-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-style: italic;
    color: var(--text-mid); line-height: 1.6;
    border-left: 2px solid var(--sage-light);
    padding-left: 1.25rem; margin: 1.5rem 0 2rem;
  }

  .event-desc {
    font-size: 1.05rem; color: var(--text-mid);
    font-weight: 300; line-height: 1.9;
    margin-bottom: 1rem;
  }

  .event-card {
    background: var(--forest);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2.5rem 2.5rem 3.5rem;
    position: sticky; top: 100px;
  }

  .event-card-label {
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--sage-light); margin-bottom: 0.4rem;
  }

  .event-card-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 300; color: var(--cream);
    margin-bottom: 0.4rem; line-height: 1.1;
  }

  .event-card-sub {
    font-size: 0.9rem; color: rgba(181,201,208,0.95);
    margin-bottom: 2rem; font-weight: 300;
  }

  .event-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

  .event-detail {
    display: flex; gap: 1rem; align-items: flex-start;
    font-size: 1rem; color: rgba(181,201,208,0.8); font-weight: 300;
  }

  .event-detail-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    border: 1px solid rgba(212,168,130,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
  }

  .event-detail strong { color: var(--cream); font-weight: 400; display: block; margin-bottom: 1px; }

  .event-prices {
    border-top: 1px solid rgba(181,201,208,0.15);
    padding-top: 1.5rem; margin-bottom: 1.75rem;
  }

  .event-price-row {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 0.6rem;
  }

  .event-price-label { font-size: 0.95rem; color: rgba(181,201,208,0.95); font-weight: 300; }
  .event-price-value { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--cream); }

  .event-note {
    font-size: 1.05rem; color: rgba(181,201,208,0.95);
    font-weight: 300; line-height: 1.6; margin-bottom: 1.5rem;
  }

  .event-types { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }

  .event-type {
    display: flex; gap: 0.75rem; align-items: flex-start;
    font-size: 1.05rem; color: rgba(181,201,208,0.75); font-weight: 300; line-height: 1.5;
  }

  .event-type-dot {
    width: 16px; height: 16px; border-radius: 50%;
    border: 1px solid rgba(212,168,130,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.55rem; color: var(--gold); flex-shrink: 0; margin-top: 2px;
  }

  .event-yearly {
    text-align: center; margin-top: 2rem;
    font-size: 0.7rem; letter-spacing: 0.1em;
    color: rgba(181,201,208,0.85); text-transform: uppercase;
  }

  

  /* ─── S12: TRANSFORMATION ─── */
  #transformation { background: var(--sage-dark); border-top: 4px solid var(--cream-dark); }

  .transform-header .section-label { color: var(--sage-light); }
  .transform-header .section-label::before { background: var(--sage-light); }
  .transform-header .section-h2 { color: var(--cream); }

  .transform-cols {
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 3rem; align-items: start; margin-top: 4rem;
  }

  .transform-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }

  .transform-before li {
    font-size: 1.05rem; color: rgba(168,196,184,0.97);
    padding: 1rem 1.25rem;
    border: 1px solid rgba(168,196,184,0.3);
    border-radius: 3px;
    font-weight: 300; position: relative;
    padding-left: 2rem;
  }

  .transform-before li::before {
    content: '×'; position: absolute; left: 0.75rem;
    color: rgba(42,72,72,0.75); font-size: 0.75rem;
  }

  .transform-after li {
    font-size: 1.05rem; color: rgba(196,220,180,0.97);
    padding: 1rem 1.25rem;
    background: rgba(122,176,170,0.15);
    border: 1px solid rgba(122,176,170,0.35);
    border-radius: 3px;
    font-weight: 300; position: relative;
    padding-left: 2rem;
  }

  .transform-after li::before {
    content: '✓'; position: absolute; left: 0.75rem;
    color: var(--sage-light); font-size: 0.75rem;
  }

  .transform-arrow {
    display: flex; align-items: center; justify-content: center;
    align-self: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; color: var(--gold); opacity: 0.7;
    line-height: 1;
  }

  /* ─── S13: QUALIFIKATIONEN ─── */
  #qualifikationen { background: var(--cream); }

  .quali-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 3.5rem;
  }

  .quali-item {
    padding: 2rem;
    border-left: 2px solid var(--sage-light);
    padding-left: 1.5rem;
  }

  .quali-year {
    font-size: 0.7rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .quali-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 500;
    color: var(--forest); margin-bottom: 0.4rem;
  }

  .quali-inst {
    font-size: 1.05rem; color: var(--text-mid);
    font-weight: 300;
  }

  .diplom-wrap {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .diplom-label {
    font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--sage-dark); margin: 0;
  }

  .diplom-frame {
    border: 1px solid rgba(212,168,130,0.3);
    border-radius: 4px;
    overflow: hidden;
    max-width: 640px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(10,25,25,0.18);
  }

  .diplom-img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* ─── TESTIMONIALS CAROUSEL ─── */
  .testimonials-carousel-section { background: var(--earth-dark); overflow: hidden; }
  .testimonials-carousel-section .section-h2 { color: var(--cream); }
  .testimonials-carousel-section .section-h2 em { color: var(--gold); }
  .testimonials-carousel-section .section-label { color: var(--sage); }

  .tcarousel-outer {
    overflow: hidden;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
    padding: 0.5rem 0 2.5rem;
  }

  .tcarousel-outer:active { cursor: grabbing; }

  .tcarousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: tcarousel-scroll 40s linear infinite;
    padding: 0 2rem;
  }

  .tcarousel-outer:hover .tcarousel-track,
  .tcarousel-outer.is-dragging .tcarousel-track {
    animation-play-state: paused;
  }

  @keyframes tcarousel-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .tcarousel-card {
    flex: 0 0 360px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,168,130,0.2);
    border-radius: 4px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .tcarousel-stars {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
  }

  .tcarousel-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--cream);
    font-weight: 300;
    flex: 1;
    margin: 0;
  }

  .tcarousel-author {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .tcarousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-bottom: 3rem;
  }

  .tcarousel-btn {
    background: none;
    border: 1px solid rgba(212,168,130,0.4);
    color: var(--gold);
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s;
  }

  .tcarousel-btn:hover {
    background: rgba(212,168,130,0.12);
    border-color: var(--gold);
  }

  .tcarousel-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .tcarousel-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(212,168,130,0.3);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }

  .tcarousel-dot.active {
    background: var(--gold);
    transform: scale(1.3);
  }

  /* ─── S14: WERTE ─── */
  #werte { background: var(--white); }

  .werte-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 3rem; margin-top: 4rem;
  }

  .wert-item { text-align: center; }

  .wert-circle {
    width: 72px; height: 72px;
    border-radius: 50%;
    border: 1px solid rgba(122,176,170,0.3);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    transition: all 0.3s;
  }

  .wert-item:hover .wert-circle {
    background: var(--cream);
    border-color: var(--sage);
    transform: scale(1.05);
  }

  .wert-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 500;
    color: var(--forest); margin-bottom: 0.85rem;
  }

  .wert-text { font-size: 1.05rem; color: var(--text-mid); font-weight: 300; line-height: 1.8; }

  /* ─── S15: MEHR TESTIMONIALS ─── */
  #testimonials2 { background: var(--cream-dark); }

  .testimonial-feature {
    max-width: 780px; margin: 3.5rem auto 0;
    text-align: center;
  }

  .testimonial-feature-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-style: italic; font-weight: 300;
    color: var(--forest); line-height: 1.6;
    margin-bottom: 2rem;
  }

  .testimonial-feature-author {
    font-size: 0.72rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--stone);
  }

  .testimonials2-more {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem; margin-top: 3rem;
  }

  /* ─── S17: FAQ ─── */
  #faq { background: var(--white); }

  .faq-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: transparent;
    margin-top: 3.5rem;
  }

  .faq-item {
    background: var(--white);
    padding: 2.5rem 2.5rem 2.5rem 3.5rem;
    border-radius: 8px;
    border: 1.5px solid var(--cream-dark);
    box-shadow: 0 4px 24px rgba(52,88,88,0.07);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(52,88,88,0.12);
    border-color: var(--sage-light);
  }

  .faq-q {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 500;
    color: var(--forest); margin-bottom: 0.75rem;
    display: flex; justify-content: space-between; align-items: start; gap: 1rem;
  }

  .faq-a {
    font-size: 1rem; color: var(--text-mid);
    font-weight: 300; line-height: 1.85;
  }

  /* ─── S18: VERTRAUEN CTA ─── */
  #trust { background: var(--cream-dark); text-align: center; }

  .trust-inner { max-width: 640px; margin: 0 auto; }

  .trust-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(122,176,170,0.3);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
  }

  .trust-h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300; color: var(--forest);
    margin-bottom: 1rem; line-height: 1.2;
  }

  .trust-h2 em { font-style: italic; color: var(--sage); }

  .trust-text {
    font-size: 1rem; color: var(--text-mid);
    font-weight: 300; line-height: 1.85;
    margin-bottom: 2.5rem;
  }

  .trust-bullets {
    display: flex; justify-content: center; gap: 2.5rem;
    flex-wrap: wrap; margin-bottom: 3rem;
  }

  .trust-bullet {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.78rem; color: var(--text-mid);
    letter-spacing: 0.05em;
  }

  .trust-bullet span:first-child {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(122,176,170,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.5rem; color: var(--sage-dark);
  }

  /* ─── S19: KONTAKT ─── */
  #kontakt { background: transparent; padding-top: 2rem; }

  .kontakt-layout {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
  }

  .kontakt-info .section-label { color: var(--sage-dark); }
  .kontakt-info .section-label::before { background: var(--sage-dark); }

  .kontakt-h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 400; color: var(--forest);
    margin-bottom: 1.5rem; line-height: 1.15;
  }

  .kontakt-h2 em { font-style: italic; color: var(--sage); }

  .kontakt-text {
    font-size: 1.05rem; color: var(--text-mid);
    font-weight: 300; line-height: 1.85; margin-bottom: 2.5rem;
  }

  .kontakt-details { display: flex; flex-direction: column; gap: 1rem; }

  .kontakt-detail {
    display: flex; align-items: center; gap: 1rem;
    font-size: 0.95rem; color: var(--text-mid); font-weight: 400;
  }
  .kontakt-detail a { color: var(--text-mid); text-decoration: none; transition: color 0.3s; }
  .kontakt-detail a:hover { color: var(--sage-dark); }

  .kontakt-detail-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    border: 1px solid rgba(122,176,170,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    color: var(--sage-dark);
  }

  .form-wrap {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(122,176,170,0.12);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 24px 55px rgba(35,68,68,0.06);
  }

  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 400; color: var(--forest);
    margin-bottom: 2rem;
  }

  .form-group { margin-bottom: 1.25rem; }

  .form-group label {
    display: block;
    font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--sage-dark); margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(122,176,170,0.3);
    border-radius: 0;
    padding: 0.65rem 0.5rem;
    font-size: 0.95rem; color: var(--text-dark);
    font-family: 'Jost', sans-serif; font-weight: 300;
    outline: none;
    transition: all 0.3s;
    -webkit-appearance: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-bottom-color: var(--sage-dark); }

  .form-group textarea { height: 100px; resize: none; padding-top: 1rem; }

  .form-group select option { background: var(--white); color: var(--text-dark); }

  .form-submit {
    width: 100%;
    background: var(--forest);
    color: var(--cream);
    border: none;
    padding: 1.1rem;
    font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
    font-family: 'Jost', sans-serif; font-weight: 500;
    cursor: pointer; border-radius: 2px;
    transition: background 0.3s;
    margin-top: 1rem;
  }
  .form-submit:hover { background: var(--sage-dark); }

  .topic-fieldset {
    border: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    min-width: 0;
  }

  .topic-legend {
    display: block;
    font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--sage-dark); margin-bottom: 0.5rem;
    padding: 0; float: none; width: 100%;
  }

  .topic-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.25rem;
  }

  .topic-chip {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-dark);
  }

  .topic-chip input[type="checkbox"] {
    display: none;
    width: auto;
    border: none;
  }

  .topic-chip span {
    display: inline-block;
    padding: 0.55rem 1.1rem;
    border: 1px solid rgba(122,176,170,0.4);
    border-radius: 2px;
    background: transparent;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.4;
  }

  .topic-chip input[type="checkbox"]:checked + span {
    background: var(--forest);
    border-color: var(--forest);
    color: var(--cream);
  }

  .topic-chip:hover span {
    border-color: var(--sage);
  }


  /* ─── S20: FOOTER ─── */
  footer {
    background: var(--cream-dark);
    padding: 3rem;
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem; align-items: start;
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: var(--forest);
    font-weight: 400;
  }

  .footer-logo span { font-style: italic; color: var(--sage-dark); }

  .footer-sub {
    font-size: 0.72rem; color: var(--text-mid);
    margin-top: 0.5rem; font-weight: 400;
  }

  .footer-links { display: flex; flex-direction: column; gap: 0.5rem; }

  .footer-links a {
    font-size: 0.78rem; color: var(--text-mid);
    text-decoration: none; transition: color 0.3s; font-weight: 400;
  }

  .footer-links a:hover { color: var(--sage-light); }

  .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
    justify-content: flex-end;
    align-self: start;
  }

  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .footer-social a:hover {
    transform: translateY(-3px);
    opacity: 1;
  }

  .footer-bottom {
    grid-column: 1 / -1;
    font-size: 0.7rem;
    color: var(--text-mid);
    text-align: center;
    font-weight: 400;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(122,176,170,0.2);
  }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    /* Fallback: if JS observer never fires, show content after 0.8s */
    animation: revealFallback 0.7s ease 0.8s forwards;
  }
  @keyframes revealFallback { to { opacity: 1; transform: none; } }
  .reveal.visible {
    opacity: 1; transform: none;
    animation: none;
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  /* ─── LAPTOP / MEDIUM ─── */
  

  /* ─── MOBILE ─── */
  /* ─── TABLET (max 1100px) ─── */
  

  /* ─── MOBILE (max 900px) ─── */
  

  /* ─── SMALL MOBILE (max 480px) ─── */
  

  /* ═══════════════════════════════════════════
     VISUELLE AUFWERTUNGEN — Premium Upgrades
  ═══════════════════════════════════════════ */

  /* ── Subtile Textur auf cream Hintergrund ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
  }

  /* ── Goldene Trennlinie zwischen Sektionen ── */
  .section-divider {
    width: 3rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 3rem;
  }

  /* ── Section Labels aufwerten ── */
  .section-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
  }

  /* ── Hero: floating particles ── */
  .hero-text-side::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122,176,170,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-text-side::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,130,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  /* ── Intro Quote: dekoratives Anführungszeichen ── */
  .intro-quote::before {
    content: '„';
    position: absolute;
    top: -2.5rem;
    left: -1rem;
    font-size: 8rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--sage-light);
    opacity: 0.2;
    line-height: 1;
    pointer-events: none;
  }

  .intro-quote {
    position: relative;
  }

  /* ── Pain Karten: hover lift ── */
  .pain-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(52,88,88,0.08);
  }

  /* ── Target Karten: hover lift ── */
  .target-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(52,88,88,0.1);
    border-color: var(--sage);
  }

  /* ── Bio: floating dekoratives Element ── */
  .bio-image-wrap::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(122,176,170,0.25);
    border-radius: 2px;
    pointer-events: none;
    z-index: 0;
  }

  /* ── Angebote: schimmernde Trennlinie ── */
  .angebote-layout {
    position: relative;
  }

  /* ── Step Nummern aufwerten ── */
  .step-num {
    background: transparent !important;
    border: 1.5px solid var(--sage-light) !important;
    color: var(--forest) !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.3rem !important;
    transition: background 0.3s, color 0.3s;
  }

  .prozess-step:hover .step-num {
    background: var(--forest) !important;
    color: var(--cream) !important;
  }

  /* ── Testimonials: Anführungszeichen Deko ── */
  .testimonial-card {
    position: relative;
    transition: transform 0.3s ease;
  }

  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    right: 1.25rem;
    font-size: 5rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--sage-light);
    opacity: 0.15;
    line-height: 1;
    pointer-events: none;
  }

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

  /* ── FAQ: schöne Öffnungsanimation ── */
  .faq-item {
    transition: background 0.3s ease;
  }

  .faq-item:hover {
    background: rgba(122,176,170,0.05);
  }

  /* ── Buttons: schimmernder Hover-Effekt ── */
  .btn-primary {
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
  }

  .btn-primary:hover::before {
    left: 100%;
  }

  /* ── Kontakt: Formular-Inputs schöner ── */
  .form-input:focus, .form-textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(122,176,170,0.12);
    outline: none;
  }

  /* ── Bridge Sektion: dezenter Gradient ── */
  #bridge {
    position: relative;
    overflow: hidden;
  }

  #bridge::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122,176,170,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  /* ── Aufstellungstag Event Card: Glanz ── */
  .event-card {
    position: relative;
    overflow: hidden;
  }

  .event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(181,201,208,0.4), transparent);
  }

  /* ── Footer: subtile obere Linie ── */
  footer {
    position: relative;
  }

  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(122,176,170,0.3), transparent);
  }

  /* ── Scroll-reveal Verbesserung ── */
  .reveal {
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* ── Gold Akzent-Linie bei Section Labels ── */
  .section-label::before {
    background: linear-gradient(90deg, var(--gold), var(--sage)) !important;
  }

  /* ── Pferde Sektion: Tiefe durch Overlay ── */
  #achtsame-pferdekommunikation {
    position: relative;
  }

  #achtsame-pferdekommunikation::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(36,60,60,0.4), transparent);
    pointer-events: none;
  }

  /* ── Aufstellung Deep: Deko-Kreis ── */
  #aufstellung-deep {
    position: relative;
    overflow: hidden;
  }

  #aufstellung-deep::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(122,176,170,0.08);
    pointer-events: none;
  }

  #aufstellung-deep::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid rgba(122,176,170,0.06);
    pointer-events: none;
  }

  /* ── Vorher/Nachher: hover on items ── */
  .transform-before li, .transform-after li {
    transition: transform 0.2s ease, border-color 0.2s ease;
  }

  .transform-before li:hover {
    transform: translateX(4px);
    border-color: rgba(168,196,184,0.5);
  }

  .transform-after li:hover {
    transform: translateX(4px);
    border-color: rgba(122,176,170,0.5);
    background: rgba(122,176,170,0.18);
  }

  /* ── Nav: schöner aktiver Link ── */
  .nav-links a {
    position: relative;
  }

  .nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }

  .nav-links a:not(.nav-cta):hover::after {
    width: 100%;
  }

  /* ── Intro Promise Karten: hover ── */
  .intro-promise-item {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .intro-promise-item:hover {
    transform: translateY(-5px);
    border-color: rgba(122,176,170,0.4);
    box-shadow: 0 12px 40px rgba(52,88,88,0.07);
  }

  /* ── Gold Zahl Deko im Hero ── */
  .hero-stat-num {
    background: linear-gradient(135deg, var(--forest), var(--sage-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* ── Aufstellungstag Inklusion Items hover ── */
  .inclusion-item {
    transition: transform 0.2s ease;
  }

  .inclusion-item:hover {
    transform: translateX(4px);
  }


  /* ═══════════════════════════════════════════
     LESBARKEIT & WEISSRAUM OPTIMIERUNGEN
  ═══════════════════════════════════════════ */

  /* Mehr Luft zwischen Absätzen */
  .event-desc + .event-desc { margin-top: 1.2rem; }
  .intro-text p + p { margin-top: 1rem; }
  .bio-text p + p { margin-top: 1.2rem; }

  /* Pain Karten: kompakter Icon, mehr Luft */
  .pain-card { padding: 2.5rem 2rem; }
  .pain-icon { margin-bottom: 1.25rem; }

  /* Prozess: mehr Luft zwischen Schritten */
  .prozess-step { padding: 2rem 1.5rem; }

  /* Angebote: Listenpunkte übersichtlicher */
  .angebot-list { gap: 0.8rem; }

  /* FAQ: mehr Luft */

  /* Testimonials: kompakter */
  .testimonial-card { padding: 2rem 1.75rem; }

  /* Bridge: grosszügiger */
  #bridge .container { max-width: 700px; text-align: center; }
  .bridge-text { font-size: 1.05rem; margin: 0 auto; max-width: 520px; }

  /* Aufstellung Deep Text: besser lesbar */
  .aufstellung-text p + p { margin-top: 1rem; }

  /* Intro Promise Cards: kompakter */
  .intro-promise-item { padding: 1.75rem 1.25rem; }

  /* Belastungen: kompakter */
  .belastung-item { padding: 1.75rem 1.5rem; }

  /* Section Padding reduzieren wo zuviel Luft */
  #bridge.section-pad { padding: 5rem 0; }

  /* Kontakt Text */
  .kontakt-text { font-size: 1rem; line-height: 1.75; }

  /* Bio Tags: übersichtlicher */
  .bio-tags { gap: 0.5rem; margin-top: 1.5rem; }
  .bio-tag { padding: 0.3rem 0.85rem; font-size: 0.72rem; }

  /* Hero List: kompakter */
  .hero-list { gap: 0.5rem; }

  /* Aufstellungstag: kompakter */
  .event-desc { margin-bottom: 0 !important; }

  /* ── Intro Statement Block ── */
  .intro-statement-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage);
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .intro-statement-label::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--gold);
  }

  .intro-statements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .intro-statement-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .intro-statement-dash {
    color: var(--gold);
    font-size: 1.2rem;
    line-height: 1.6;
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', serif;
  }

  .intro-statement-item p {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.75;
    font-weight: 300;
  }

  .intro-statement-conclusion {
    margin-top: 2.5rem;
    font-size: 1.25rem;
    color: var(--forest);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.5;
    padding-left: 2.25rem;
    border-left: 2px solid var(--gold);
  }

  .intro-pferd-block {
    background: var(--cream-dark);
    border-radius: 4px;
    padding: 2rem;
    border-left: 2px solid var(--gold);
  }

  /* Mobile */
  

  /* ── Vorher/Nachher: Desktop/Mobile Versionen ── */
  .transform-mobile { display: none; }
  .transform-desktop { display: grid; }

  .transform-pair {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .transform-pair-before {
    font-size: 1.05rem;
    color: rgba(168,196,184,0.95);
    font-weight: 300;
    padding: 0.9rem 1.25rem;
    border: 1px solid rgba(168,196,184,0.3);
    border-radius: 3px;
    text-align: right;
  }

  .transform-pair-arrow {
    color: var(--gold);
    font-size: 1.2rem;
    text-align: center;
    flex-shrink: 0;
  }

  .transform-pair-after {
    font-size: 1.05rem;
    color: rgba(196,220,180,0.97);
    font-weight: 300;
    padding: 0.9rem 1.25rem;
    background: rgba(122,176,170,0.15);
    border: 1px solid rgba(122,176,170,0.35);
    border-radius: 3px;
  }

  

  /* ── NAV DROPDOWN ── */
  .nav-dropdown { position: relative; display: flex; align-items: center; }

  .nav-dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 0.3rem; font-size: 0.65rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-mid); line-height: 1; }

  .nav-arrow { font-size: 0.55rem; transition: transform 0.3s; line-height: 1; position: relative; top: 1px; }

  .nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid rgba(122,176,170,0.2);
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(52,88,88,0.12);
    min-width: 240px;
    padding: 0.5rem 0 0.75rem 0;
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(0);
    transition: opacity 0.2s ease;
    z-index: 200;
    list-style: none;
  }

  /* Bridge gap between toggle and submenu */
  .nav-submenu::before {
    content: '';
    display: block;
    height: 0.75rem;
    margin-top: -0.75rem;
  }

  .nav-submenu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-mid);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  .nav-submenu li a:hover {
    background: var(--cream);
    color: var(--forest);
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-submenu:hover {
    opacity: 1;
    pointer-events: all;
  }

  .nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
  }

  /* ── BLOG GRID ── */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .blog-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid rgba(122,176,170,0.2);
    box-shadow: 0 4px 20px rgba(52,88,88,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(52,88,88,0.1);
  }

  .blog-card-tag {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--forest);
    line-height: 1.35;
    margin-bottom: 1rem;
  }

  .blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
    flex: 1;
    margin-bottom: 1.5rem;
  }

  .blog-card-link {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s, gap 0.2s;
  }

  .blog-card-link:hover { color: var(--gold); }

  

  .nav-link-item {
    font-size: 0.65rem !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    color: var(--text-mid) !important;
    font-family: 'Jost', sans-serif !important;
    font-weight: 400 !important;
    line-height: 1 !important;
  }

  .nav-links li a, .nav-links-item {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
  }
  .nav-dropdown { vertical-align: middle; }

  .nav-dropdown { margin-top: 2px; }

  /* ── Blog Artikel ── */
  .blog-article-body p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1.25rem;
  }

  .blog-article-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--forest);
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
  }

  .blog-article-body strong { color: var(--forest); font-weight: 600; }

  /* Blog card image */
  .blog-card { overflow: hidden; }

  #pain strong {
    color: #D4C5A9 !important;
    font-weight: 600;
  }

  

  /* Transformation section text adjustments */
  #transformation .section-h2 { color: var(--cream); }
  #transformation .transform-before li { color: rgba(244,248,247,0.9); border-color: rgba(244,248,247,0.2); }
  #transformation .transform-after li { color: rgba(244,248,247,0.97); }
  #transformation .transform-pair-before { color: rgba(244,248,247,0.85); border-color: rgba(244,248,247,0.2); }
  #transformation .transform-pair-after { color: rgba(244,248,247,0.97); }