/* =========================================================
   FONTS ‚Äì lokal mit Cache-Breaker
   ========================================================= */
@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/PlayfairDisplay-Regular.woff2?v=2026-02-06") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/PlayfairDisplay-Bold.woff2?v=2026-02-06") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("assets/fonts/Lora-Regular.woff2?v=2026-02-06") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("assets/fonts/Lora-Bold.woff2?v=2026-02-06") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Keyframes */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
}
}

/* =========================================================
   VARIABLEN ‚Äì warme, ruhige Farbwelt (Apricot/Kupfer)
   ========================================================= */
:root {
  /* Backgrounds */
  --bg-main: #F6C4A6;          /* warmes Apricot */
  --bg-soft: #F6C4A6;          /* warmes Apricot */
  --panel-bg: #F6C4A6;         /* warmes Apricot */

  /* Text */
  --text-main: #754C24;
  --text-strong: #4B2F16;
  --text-muted: rgba(75,47,22,.78);
  --text-soft: rgba(75,47,22,.60);

  /* Brand */
  --sage: #8CAD99;
  --sage-soft: rgba(140,173,153,.20);

  --cream: #F8E9DA;
  --peach: #FABFA2;

  /* Lines */
  --line-soft: rgba(117,76,36,.14);
  --line-softer: rgba(117,76,36,.10);

  /* Fonts */
  --font-heading: "Dancing Script", cursive;
  --font-body: "Montserrat", sans-serif;
  --fs-h3: 22px;

  /* Layout */
  --max-width: 980px;
  --padding-side: 32px;

  /* Spacing */
  --section-space: 0px;
  --section-space-sm: 0px;

  /* Radius */
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --radius-pill: 999px;
}

/* =========================================================
   BASIS
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  background: var(--bg-main);
  color: var(--text-main);
  line-height: var(--lh-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection {
  background: rgba(140,173,153,.28);
  color: var(--text-strong);
}

:focus-visible {
  outline: 2px solid rgba(140,173,153,.55);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(140,173,153,.55);
  outline-offset: 3px;
}

/* Skip-Link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
}
.skip-link:focus {
  left: 12px;
  background: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-soft);
  z-index: 999;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-side);
}

.section { padding: var(--section-space) 0; }
@media (max-width: 720px){
  .section { padding: var(--section-space-sm) 0; }
}

.prose { max-width: 70ch; }

/* =========================================================
   TYPOGRAFIE
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-heading);
  font-weight: var(--w-regular);
  letter-spacing: .01em;
  text-wrap: balance;
}

h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
  margin-bottom: 10px;
}
h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-head);
  margin-bottom: 14px;
}
h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-head);
  margin-bottom: 8px;
}

/* Rhythm */
h2 + p,
h3 + p { margin-top: 6px; }

p { margin: 0 0 16px; }

ul { margin: 0 0 16px; padding-left: 18px; }
li { margin: 6px 0; }

.page-intro {
  font-size: var(--fs-body);
  color: rgba(75,47,22,.85);
}

.fine-note,
.meta-line {
  font-size: var(--fs-body);
  color: var(--text-soft);
}

.meta-line { margin: -2px 0 10px; }

.text-sage { color: var(--sage); }

/* =========================================================
   Definition List ‚Äì schwebend & edel (Sage)
   ========================================================= */
dl {
  position: relative;
  margin: 0 0 40px;
  padding-left: 28px;
}
dl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(140,173,153,0),
    rgba(140,173,153,.45),
    rgba(140,173,153,0)
  );
  border-radius: 2px;
}
dt {
  font-family: var(--font-heading);
  font-size: var(--fs-ui);
  font-weight: var(--w-regular);
  letter-spacing: .02em;
  color: var(--text-strong);
  margin-top: 22px;
}
dt:first-of-type { margin-top: 0; }
dd {
  margin: 6px 0 0;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: rgba(75,47,22,.85);
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,251,247,.90);
  border-bottom: 1px solid var(--line-soft);
  z-index: 80;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 14px;
}

.site-logo { height: 70px; width: auto; }

.site-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* Links */
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: background .2s ease, color .2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(140,173,153,.18);
}

/* down (details/summary) */
.nav-dropdown { position: relative; }

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
  line-height: 1;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }

.nav-dropdown summary:hover { background: rgba(140,173,153,.16); }
.nav-dropdown.is-active summary { background: rgba(140,173,153,.20); }

/* Panel */
.dropdown-panel{
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 320px;
  max-width: 420px;
  background: var(--panel-bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 14px 14px 10px;
  box-shadow: 0 12px 28px rgba(75,47,22,.06);
}

/* show when open */
.nav-dropdown[open] .dropdown-panel { display: block; }

/* optional: desktop hover open */
@media (min-width: 921px)
  { display: block; }

/* Groups inside dropdown */
.dropdown-group{
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(117,76,36,.08);
}
.dropdown-group:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.dropdown-title{
  display: block;
  font-size: var(--fs-label);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(75,47,22,.55);
  margin: 4px 0 8px;
}

.dropdown-subgroup{
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px dashed rgba(117,76,36,.10);
}
.dropdown-subtitle{
  display: block;
  font-size: var(--fs-label);
  color: rgba(75,47,22,.56);
  margin: 0 0 6px;
}

.dropdown-panel a{
  display: block;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-ui);
  color: rgba(75,47,22,.86);
}
.dropdown-panel a:hover{
  background: rgba(248,233,218,.75);
}
.nav-dropdown .dropdown-panel a.is-active{
  background: rgba(248,233,218,.85);
  font-weight: 600;
}

/* =========================================================
   BURGER (Mobile)
   ========================================================= */
.nav-toggle{
  display: none;
  border: 1px solid var(--line-soft);
  background: rgba(255,251,247,.9);
  border-radius: var(--radius-sm);
  padding: 10px 10px;
  cursor: pointer;
}

.nav-toggle-lines{
  width: 22px;
  height: 14px;
  display: inline-block;
  position: relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background: rgba(75,47,22,.70);
  border-radius: 2px;
}
.nav-toggle-lines::before{ top: 2px; }
.nav-toggle-lines::after{ bottom: 2px; }

.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.12);
  z-index: 70;
}

/* mobile nav panel */
@media (max-width: 920px){
  .nav-toggle{ display: inline-flex; align-items:center; justify-content:center; }
  .site-nav{
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    background: var(--panel-bg);
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    z-index: 75;
    box-shadow: 0 14px 32px rgba(75,47,22,.08);
  }
  .site-nav.is-open{ display: flex; }

  .nav-link, .nav-dropdown summary{
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px;
  }

  .nav-dropdown{ width: 100%; }

  .dropdown-panel{
    position: static;
    display: none;
    min-width: 0;
    max-width: 100%;
    box-shadow: none;
    padding: 10px 0 0;
    border: 0;
    background: transparent;
  }

  .nav-dropdown[open] .dropdown-panel{ display: block; }

  .dropdown-panel a{ padding: 10px 14px; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding-top: 0;
  padding-bottom: 0;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(248,233,218,.70), transparent 64%),
    radial-gradient(820px 380px at 88% 16%, rgba(250,191,162,.14), transparent 68%),
    radial-gradient(520px 260px at 60% 92%, rgba(140,173,153,.10), transparent 62%);
}

.page-hero { padding-top: 0px; }

.hero-content { max-width: 72ch; }

.hero-claim {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  font-style: normal;
  margin-top: 32px;
  margin-bottom: 30px;
}

.hero-bold {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  font-style: bold;
  margin-top: 30px;
}

.hero-bold-ws {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  font-style: bold;
}

.hero-subline {
  font-size: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 40px;
}

.hero-subline-ws {
  font-size: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0px;
}

.hero-poem {
  max-width: 34ch;
  padding-left: 16px;
  position: relative;
}

.hero-poem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(140,173,153,0),
    rgba(140,173,153,.40),
    rgba(140,173,153,0)
  );
  border-radius: 2px;
}

.hero-poem p {
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: .02em;
  color: rgba(75,47,22,.64);
}

/* =========================================================
   AKZENTE & SEKTIONEN
   ========================================================= */
.accent-line {
  width: 36px;
  height: 2px;
  background: rgba(250,191,162,.55);
  margin: 20px 0 24px;
}

.section-warm { background: var(--bg-soft); }

/* =========================================================
   BEDEUTUNG / FLOWS
   ========================================================= */
.meaning-flow {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.meaning-item{
  border: 1px solid rgba(117,76,36,.08);
  background: rgba(255,251,247,.9);
  border-radius: 18px;
  padding: 18px 18px 14px;
  opacity: 0;                                      /* Start unsichtbar */
  transform: translateX(-100px);   /* Start links au&#64258;erhalb */
  transition: all 3s ease;               /* Sanfte Bewegung */
  text-align: left;
  align-items: center;
  display: inline-block;
}

.meaning-item .soft-link{ margin-top: 32px; }

.meaning-item.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   VARIANTE: 2 SPALTEN (nur wenn explizit gesetzt)
   ========================================================= */

.meaning-flow-2col{
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

/* Karten kompakter nur in dieser Variante */
.meaning-flow-2col .meaning-item{
  padding: 18px 16px 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Sichtbar */
.meaning-flow-2col .meaning-item.in-view{
  opacity: 1;
  transform: translateY(0);
}

/* Text leicht größer als bei 3col (mehr Platz vorhanden) */
.meaning-flow-2col .meaning-item p{
  margin-bottom: 12px;
  font-size: 15px;
}

/* Tablet */
@media (max-width: 900px){
  .meaning-flow-2col{
    grid-template-columns: 1fr;
  }
}

/* Mobile fallback */
@media (max-width: 720px){
  .meaning-flow-2col{
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   VARIANTE: 3 SPALTEN (nur wenn explizit gesetzt)
   ========================================================= */

.meaning-flow-3col{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

/* Karten kompakter nur in dieser Variante */
.meaning-flow-3col .meaning-item{
  padding: 16px 14px 14px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Sichtbar */
.meaning-flow-3col .meaning-item.in-view{
  opacity: 1;
  transform: translateY(0);
}

/* Text etwas kompakter */
.meaning-flow-3col .meaning-item p{
  margin-bottom: 10px;
  font-size: 14px;
}

/* Mobile fallback */
@media (max-width: 720px){
  .meaning-flow-3col{
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   BILDER (Themenbild oben)
   ========================================================= */
.theme-figure{
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(117,76,36,.08);
  background: rgba(248,233,218,.35);
}

.theme-image{
  width: 100%;
  height: 260px;
  object-fit: cover;
}

@media (max-width: 720px){
  .theme-image{ height: 210px; }
}

/* ============================================
   Stimmungsbild ‚Äì ganz frei & ruhig
   ============================================ */
.hero-image-free{
  margin: 0 auto;
  max-width: 620px;
}

.hero-image-free img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;

  /* &#10024; Asymmetrisch organische Form */
  border-radius: 58% 42% 63% 37% / 41% 59% 44% 56%;

  /* optional: noch organischer */
  overflow: hidden;

  /* optional: sanfter Schatten */
  box-shadow: 0 18px 36px rgba(75,47,22,.12);
}

/* ================= HERO IMAGE ñ VARIANTE 2 ================= */
.hero-image-free2{
  margin: 0 auto;
  max-width: 620px;
}

.hero-image-free2 img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;

  /* &#10024; Asymmetrisch organische Form */
  border-radius: 62% 38% 55% 45% / 48% 52% 60% 40%;

  /* optional: noch organischer */
  overflow: hidden;

  /* optional: sanfter Schatten */
  box-shadow: 0 18px 36px rgba(75,47,22,.12);
}

/* =========================================================
   PORTRAIT (&#8730;úber mich)
   ========================================================= */
.portrait-soft{
  margin: 26px 0 22px;
  text-align: center;
}

.portrait-soft-frame{
  width: min(360px, 86vw);
  margin: 0 auto;
  border-radius: 999px;
  overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, rgba(140,173,153,.22), rgba(248,233,218,.32));
}

.portrait-soft-img{
  width: 100%;
  height: auto;
  display: block;
}

.portrait-soft-caption{
  margin-top: 10px;
  font-size: var(--fs-meta);
  color: var(--text-soft);
}

/* =========================================================
   CTA / Links
   ========================================================= */
.soft-link {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: rgba(248,233,218,.92);
  border: 1px solid rgba(117,76,36,.08);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.soft-link:hover{
  background: rgba(248,233,218,1);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(75,47,22,.08);
}

.email-strong { font-weight: var(--w-bold); }

.email-link{
  font-weight: var(--w-bold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  border-top: 1px solid rgba(117,76,36,.1);
  padding: 36px 0 56px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-logo { height: 45px; width: auto; }

.footer-links a{
  padding: 5px 10px;
  border-radius: 12px;
  transition: background .2s ease;
}
.footer-links a:hover{
  background: rgba(140,173,153,.12);
}

/* =========================================================
   AKTUELLES / EVENTS
   ========================================================= */
.events{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.event-card{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  border: 1px solid rgba(117,76,36,.10);
  background: rgba(255,251,247,.85);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 24px rgba(75,47,22,.04);
  transition: transform .25s ease, box-shadow .25s ease;
}

.event-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(75,47,22,.08);
}

.event-media{ background: rgba(248,233,218,.55); }

.event-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 170px;
}

.event-body{ padding: 18px 18px 16px; }

.event-top{
  display: flex;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.event-date{
  font-size: var(--fs-meta);
  color: rgba(75,47,22,.62);
}

.event-tag{
  font-size: var(--fs-label);
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(75,47,22,.56);
  background: rgba(248,233,218,.65);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
}

.event-time{
  font-size: 13px;
  color: rgba(75,47,22,.62);
}

.event-title{
  margin: 0 0 10px;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.2;
  font-family: var(--font-heading);
  font-weight: var(--w-regular);
  color: var(--text-strong);
}

.event-text{
  margin: 0 0 14px;
  color: rgba(75,47,22,.86);
}

.event-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: var(--fs-meta);
  color: rgba(75,47,22,.62);
  margin-bottom: 14px;
}

.event-price{
  font-weight: var(--w-bold);
  color: rgba(75,47,22,.82);
}

.event-meta-sep{ opacity: .35; }

.event-actions{ margin-top: 6px; }

.event-card.is-past{
  opacity: .55;
  background: rgba(248,233,218,.45);
  border-color: rgba(117,76,36,.08);
}
.event-card.is-past .event-title{
  text-decoration: line-through;
  opacity: .75;
}
.event-card.is-past .soft-link{
  pointer-events: none;
  opacity: .5;
}

@media (max-width: 720px){
  .event-card{ grid-template-columns: 1fr; }
  .event-img{ min-height: 190px; }
}

/* =========================================================
   PARTNER KARTEN ‚Äì sauber ausgerichtet
   ========================================================= */
.partner-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.partner-card{
  background: rgba(255,251,247,.9);
  border: 1px solid rgba(117,76,36,.08);
  border-radius: 20px;
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 480px;
  box-shadow: 0 10px 24px rgba(75,47,22,.04);
  transition: transform .25s ease, box-shadow .25s ease;
}

.partner-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(75,47,22,.08);
}

.partner-logo{
  height: 70px;
  width: auto;
  margin-bottom: 26px;
  object-fit: contain;
}

.partner-name{
  margin: 0 0 10px;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.2;
  font-family: var(--font-heading);
  font-weight: var(--w-regular);
  color: var(--text-strong);
}

.partner-field{
  font-size: var(--fs-ui);
  color: rgba(75,47,22,.55);
  margin-bottom: 22px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-description{
  font-size: var(--fs-body-sm);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: auto;
}

.partner-card .soft-link{ margin-top: 32px; }

/* =========================================================
   FORM (Kontakt ‚Äì Basis, ruhig)
   ========================================================= */
.form{
  display: grid;
  gap: 12px;
  max-width: 680px;
}

.input, .textarea{
  width: 100%;
  border: 1px solid rgba(117,76,36,.14);
  background: rgba(255,251,247,.92);
  border-radius: 14px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: var(--fs-ui);
  color: rgba(75,47,22,.85);
}

.textarea{ min-height: 140px; resize: vertical; }

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 720px){
  .form-row{ grid-template-columns: 1fr; }
}

    /* ================= Timeline CSS ================= */
    .timeline {
      margin-top: 24px;
      padding-left: 30px;
      border-left: 2px solid rgba(140, 173, 153, 0.6); /* Linie pastellgr¸n */
      position: relative;
    }

    .timeline-item {
      position: relative;
      padding: 18px 0 12px 0;
      opacity: 0;
      transform: translateY(30px); /* Startposition f¸r Animation */
      transition: transform 0.6s ease, opacity 0.6s ease;
    }

    .timeline-item.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .timeline-item::before {
      content: "";
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(140, 173, 153, 0.9); /* Pastellgr¸n Punkt */
      left: -37px; /* Mittig auf Linie */
      top: 22px; /* oben beim Datum */
      transition: transform 0.6s ease, opacity 0.6s ease;
    }

    .timeline-item.in-view::before {
      transform: translateY(0);
      opacity: 1;
    }

    .timeline-date {
      font-family: var(--font-heading);
      font-size: 19px;
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 6px;
      position: relative;
    }

    .timeline-content {
      color: rgba(75, 47, 22, 0.86);
      font-size: 14px;
      line-height: 1.6;
      padding-left: 6px;
    }

@media (max-width: 720px) {
  .timeline { padding-left: 24px; }
  .timeline-item::before {
    left: -31px;   
    top: 22px;
  }
}

/* =========================================================
   FEINSCHLIFF ‚Äì ruhiger, w&#8730;§rmer, klarer (Step 2)
   ========================================================= */

/* 1) HERO: etwas ruhiger, weniger ‚ÄûHelligkeits-Boost‚Äú */
.hero{
  padding-top: 2px;
  padding-bottom: 54px;
  background: linear-gradient(
    to bottom,
    rgba(248,233,218,.70),
    rgba(246,196,166,.42)
  );
}

/* 2) Stimmungsbild im Hero ‚Äì frei & nah an der &#8730;úberschrift */
.hero-image-free{
  margin: 18px auto 0;
  max-width: 620px;
}
.hero-image-free img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: none;
  border: none;
  box-shadow: none;
}

/* 3) Buttons/Links: ruhige, erwachsene Prim&#8730;§r-/Sekund&#8730;§rlogik */
.soft-link{
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  background: rgba(248,233,218,.85);
  border: 1px solid rgba(117,76,36,.12);
  color: var(--text-strong);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.soft-link:hover{
  background: rgba(248,233,218,.95);
  border-color: rgba(117,76,36,.16);
  transform: translateY(-1px);
}

/* Link-Variante f&#8730;ºr Text-Links (E-Mail etc.) */
.email-link{
  text-decoration: underline;
  text-decoration-color: rgba(117,76,36,.30);
  text-underline-offset: 3px;
}
.email-link:hover{
  text-decoration-color: rgba(117,76,36,.55);
}

/* 4) Dropdown/Panel: etwas ruhiger und ‚Äûpapieriger‚Äú */
.dropdown-panel{
  background: rgba(255,244,236,.96);
  border: 1px solid rgba(117,76,36,.14);
  border-radius: 18px;
  padding: 18px;
}

/* Dropdown-Links ruhiger */
.dropdown-panel a{
  display: block;
  padding: 8px 10px;
  border-radius: 12px;
}
.dropdown-panel a:hover{
  background: rgba(140,173,153,.14);
}

/* 5) Timeline: Linie & Punkte minimal dunkler, ohne laut zu werden */
.timeline{
  border-left-color: rgba(140,173,153,.52);
}
.timeline-item::before{
  background: rgba(140,173,153,.58);
}

/* 6) Content: sanfter Standard-Abstand */
.content-section{
  padding-top: 0px;
  padding-bottom: 5px;
}

/* ============================================
   HERO ANIMATION (neu & sauber)
   ============================================ */

/* Startzustand */
.hero-animate-left,
.hero-animate-right {
  opacity: 0;
}

/* --------------------------------------------
   TEXT (von links, langsamer & weich)
   -------------------------------------------- */
.hero-animate-left {
  transform: translateX(-60px);
}

.hero-animate-left.is-visible {
  animation: heroSlideLeft 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroSlideLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --------------------------------------------
   BILD (Zoom-In Effekt)
   -------------------------------------------- */
.hero-animate-right {
  transform: scale(0.6);
  opacity: 0;
}

.hero-animate-right.is-visible {
  animation: heroZoomIn 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

#formStatus {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  display: none;
  transition: all 0.3s ease;
}

/* sichtbar */
#formStatus.is-visible {
  display: block;
}

/* Erfolg */
#formStatus.success {
  background: rgba(120, 160, 120, 0.12);
  border: 1px solid rgba(120, 160, 120, 0.4);
  color: #2e5e2e;
}

/* Fehler */
#formStatus.error {
  background: rgba(180, 80, 80, 0.12);
  border: 1px solid rgba(180, 80, 80, 0.4);
  color: #7a1f1f;
}

/* Laden */
#formStatus.loading {
  background: rgba(75, 47, 22, 0.08);
  border: 1px solid rgba(75, 47, 22, 0.2);
  color: #4b2f16;
}

#formStatus.is-visible {
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}