/* ==========================================================================
   STEFES MODERN — WBCE CMS Template
   template.css
   ========================================================================== */

/* nunito-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/nunito-v32-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 500;
  src: url('./fonts/nunito-v32-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  src: url('./fonts/nunito-v32-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: url('./fonts/nunito-v32-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  src: url('./fonts/nunito-v32-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* ---------- 1. Design Tokens ---------- */
:root {
  --color-primary: #f5c842;      /* gelb */
  --color-primary-light: #2e6b4f;
  --color-primary-soft: #fffbea;
  --color-accent: #e6791f;       /* warmes Amber/Orange */
  --color-accent-dark: #c4630f;
  --color-ink: #1c1a12;
  --color-text: #4a4530;
  --color-muted: #f5c842;
  --color-line: #e3e8e4;
  --color-bg: #ffffff;
  --color-bg-soft: #fffbea;

  --font-base: 'Nunito', sans-serif;

  --container-w: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(22, 56, 43, 0.06);
  --shadow-md: 0 14px 34px rgba(22, 56, 43, 0.14);
  --transition: 220ms ease;
}


:root {
  --sun: #f5c842;
  --sun-light: #fde97a;
  --sun-pale: #fffbea;
  --sun-deep: #e0a800;
  --white: #ffffff;
  --off-white: #fdfcf7;
  --ink: #1c1a12;
  --ink-mid: #4a4530;
  --ink-soft: #8a8470;
  --sage: #6b8f6e;
  --coral: #e8654a;
  --cream: #f9f6ee;
  --border: rgba(245,200,66,0.25);
  --shadow: 0 4px 24px rgba(28,26,18,0.08);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-base); 'Nunito', 
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 0.5em; font-weight: 800; line-height: 1.2; color: var(--color-ink); }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-accent);
  color: #fff;
  padding: 10px 16px;
  z-index: 9999;
}
.skip-link:focus { left: 0; }

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { background: var(--color-accent-dark); }
.btn-outline { border-color: var(--color-line); color: var(--color-ink); }
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-ghost-light { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }

/* ---------- 4. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fdfcf7;
  border-bottom: 2px solid var(--color-primary);
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-top {
  background: var(--color-primary);
  color: rgba(255,255,255,0.88);
  font-size: 0.84rem;
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  gap: 16px;
}
.header-contact { display: flex; gap: 18px; flex-wrap: wrap; }
.header-contact a:hover { color: #fff; }
.lang-switch { display: flex; align-items: center; gap: 6px; }
.lang-switch a { opacity: 0.7; font-weight: 600; letter-spacing: 0.04em; }
.lang-switch a.is-active, .lang-switch a:hover { opacity: 1; color: #fff; }

.header-main-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 24px;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
}
.nav-logo-icon {
  background: var(--sun);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- 5. Main Navigation (works with show_menu2 default markup) ---------- */
.main-nav { flex: 1; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: wrap;
}
.main-nav li { position: relative; }
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.45rem 0.8rem; border-radius: 30px;
  transition: background 0.2s, color 0.2s;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.open > a {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}

/* Submenüs (beliebige Verschachtelungstiefe von show_menu2) */
.main-nav li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px;
  display: none;
  z-index: 50;
}
.main-nav li li { width: 100%; }
.main-nav li li ul { top: 0; left: 100%; }
.main-nav li ul a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
}
.main-nav li ul a:hover { background: var(--color-bg-soft); color: var(--color-primary); }

.main-nav li:hover > ul,
.main-nav li.open > ul { display: block; }

/* kleines Dropdown-Toggle-Symbol, von template.js eingefügt */
.submenu-toggle {
  position: absolute;
  right: 4px; top: 4px;
  width: 30px; height: 30px;
  background: transparent;
  border: 0;
  display: none;
  color: var(--color-muted);
}
.submenu-toggle svg { transition: transform var(--transition); }
.main-nav li.open > .submenu-toggle svg { transform: rotate(180deg); }

.btn-nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 38px;
  background: transparent;
  border: 0;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ---------- 11. Main content (alle Seiten) ---------- */
.content-section { padding: 70px 0 90px; }
.content-wrap { max-width: 820px; margin: 0 auto; }
.page-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 28px; }
.wysiwyg :is(h2, h3, h4) { margin-top: 1.4em; }
.wysiwyg p { color: var(--color-text); }
.wysiwyg a { color: var(--color-primary); text-decoration: underline; text-decoration-color: var(--color-line); }
.wysiwyg a:hover { text-decoration-color: currentColor; }
.wysiwyg img { border-radius: var(--radius-sm); }
.wysiwyg ul, .wysiwyg ol { padding-left: 1.3em; margin-bottom: 1em; }
.wysiwyg ul { list-style: disc; }
.wysiwyg ol { list-style: decimal; }
.wysiwyg table { width: 100%; border-collapse: collapse; margin: 1.4em 0; }
.wysiwyg table th, .wysiwyg table td { border: 1px solid var(--color-line); padding: 10px 12px; text-align: left; }
.is-home .content-section { background: var(--color-bg-soft); }

/* ---------- 12. Footer ---------- */
.site-footer { background: var(--color-ink); color: rgba(255,255,255,0.7); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 64px 24px 40px;
}
.footer-col h3 {
  color: #f5c842;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-about p { font-size: 0.92rem; line-height: 1.7; }
.footer-list li { margin-bottom: 10px; }
.footer-list a, .footer-menu a { font-size: 0.92rem; transition: color var(--transition); }
.footer-list a:hover, .footer-menu a:hover { color: #fff; }
.footer-menu ul { display: flex; flex-direction: column; gap: 10px; }

.footer-note {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 24px;
  font-size: 0.85rem;
}
.footer-note:empty { display: none; padding: 0; border: 0; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 24px;
  font-size: 0.82rem;
}
.footer-credit { opacity: 0.6; }

.footer-logo-row {
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem;
}
.footer-logo-icon {
  background: var(--sun); width: 40px; height: 40px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.footer-brand-name {
  font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: white;
}
.footer-brand-sub {
  font-size: 0.75rem; color: rgba(255,255,255,0.35); line-height: 1.6;
  max-width: 220px;
}

/* ---------- 13. Scroll reveal ---------- */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- 14. Responsive ---------- */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-legal-col { grid-column: span 2; }
}

@media (max-width: 880px) {
  .header-contact { display: none; }
  .btn-nav-cta { display: none; }

  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    inset: 0;
    top: 0;
    background: #fff;
    padding: 96px 24px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 400;
  }
  body.nav-open .main-nav { transform: translateX(0); }

  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav > ul > li > a { padding: 14px 12px; font-size: 1.05rem; }
  .main-nav li ul {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--color-primary-soft);
    margin-left: 12px;
    min-width: 0;
  }
  .main-nav li li ul { left: auto; }
  .main-nav li.open > ul { display: block; }
  .submenu-toggle { display: flex; align-items: center; justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding-top: 48px; }
  .footer-about { grid-column: span 2; }
  .footer-legal-col { grid-column: span 1; }
}

@media (max-width: 540px) {
  .hero { padding: 90px 0 70px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about, .footer-legal-col { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}






/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--sun);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 6rem 2rem 4rem;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: var(--sun-light);
  border-radius: 50%;
  opacity: 0.5;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: 30%;
  width: 400px; height: 400px;
  background: var(--sun-deep);
  border-radius: 50%;
  opacity: 0.15;
}

/* Butterfly SVG pattern overlay */
.hero-butterflies {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-butterflies svg {
  position: absolute;
  fill: var(--sun-deep);
}
/* scattered sizes and positions */
.hb1  { width:100px; top: 8%;  left: 6%;   opacity:0.45; transform: rotate(-15deg); }
.hb2  { width: 60px; top: 15%; left: 22%;  opacity:0.38; transform: rotate(10deg); }
.hb3  { width:130px; top: 5%;  left: 42%;  opacity:0.32; transform: rotate(-5deg); }
.hb4  { width: 50px; top: 22%; left: 60%;  opacity:0.42; transform: rotate(20deg); }
.hb5  { width:120px; top: 3%;  left: 78%;  opacity:0.35; transform: rotate(-25deg); }
.hb6  { width: 80px; top: 38%; left: 3%;   opacity:0.40; transform: rotate(8deg); }
.hb7  { width: 48px; top: 45%; left: 35%;  opacity:0.35; transform: rotate(-12deg); }
.hb8  { width:150px; top: 55%; left: 68%;  opacity:0.28; transform: rotate(18deg); }
.hb9  { width: 68px; top: 68%; left: 15%;  opacity:0.38; transform: rotate(-8deg); }
.hb10 { width: 95px; top: 72%; left: 50%;  opacity:0.32; transform: rotate(30deg); }
.hb11 { width: 55px; top: 80%; left: 82%;  opacity:0.42; transform: rotate(-20deg); }
.hb12 { width:120px; top: 82%; left: 28%;  opacity:0.28; transform: rotate(5deg); }
.hb13 { width: 42px; top: 30%; left: 88%;  opacity:0.45; transform: rotate(-30deg); }
.hb14 { width: 88px; top: 60%; left: 92%;  opacity:0.35; transform: rotate(15deg); }
.hb15 { width: 70px; top: 12%; left: 92%;  opacity:0.38; transform: rotate(-10deg); }
.hero-content {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 30px;
  padding: 0.3rem 0.9rem;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.hero h1 em {
  font-style: italic;
  color: #fff;
  -webkit-text-stroke: 2px var(--ink);
  text-stroke: 2px var(--ink);
}
.hero-sub {
  font-size: 1.05rem; font-weight: 400;
  color: var(--ink-mid); line-height: 1.8;
  margin-bottom: 2.5rem; max-width: 420px;
}
.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-dark {
  background: var(--ink); color: var(--sun);
  padding: 0.85rem 2rem; border-radius: 4px;
  text-decoration: none; font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform 0.15s, background 0.2s;
  border: 2px solid var(--ink);
}
.btn-dark:hover { transform: translateY(-2px); background: #2d2b1e; }
.btn-white {
  background: white; color: var(--ink);
  padding: 0.85rem 2rem; border-radius: 4px;
  text-decoration: none; font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 2px solid var(--ink);
  transition: transform 0.15s, background 0.2s;
}
.btn-white:hover { transform: translateY(-2px); background: var(--sun-pale); }

.hero-visual {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.hero-card-stack {
  position: relative;
  width: 340px; height: 380px;
}
.hero-card {
  position: absolute;
  background: white;
  border-radius: 8px;
  padding: 1.8rem;
  box-shadow: 0 8px 32px rgba(28,26,18,0.15);
}
.hero-card-main {
  top: 20px; left: 20px;
  width: 300px;
  border-top: 4px solid var(--sun);
  z-index: 2;
}
.hero-card-back {
  top: 0; left: 40px;
  width: 300px; height: 100%;
  background: var(--sun-light);
  transform: rotate(3deg);
  z-index: 1;
}
.hero-card-icon { font-size: 2.5rem; margin-bottom: 0.8rem; display: block; }
.hero-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; color: var(--ink);
  margin-bottom: 0.5rem;
}
.hero-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; }
.hero-card-stat {
  display: flex; gap: 1rem; margin-top: 1.2rem;
  padding-top: 1rem; border-top: 1px solid var(--cream);
}
.stat-item { text-align: center; flex: 1; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem; color: var(--sun-deep);
  line-height: 1; display: block;
}
.stat-lbl { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); }

/* ── TICKET BAND ── */
.ticket-band {
  background: var(--ink);
  color: var(--sun);
  padding: 0.9rem 2rem;
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.ticket-band-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sun); opacity: 0.4; flex-shrink: 0;
}
.ticket-band a { color: var(--sun-light); text-decoration: none; }



/* HERO STRIP */
.page-hero {
  margin-top: 0px;
  background: var(--sun);
  padding: 4rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: var(--sun-light); border-radius: 50%; opacity: 0.5;
}
/* Subtle butterfly pattern */
.page-hero-butterfly {
  position: absolute; font-size: 8rem; opacity: 0.08;
  right: 5%; top: 50%; transform: translateY(-50%);
  pointer-events: none; line-height: 1;
}
.page-hero-inner { max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.8);
  border-radius: 30px; padding: 0.28rem 0.9rem;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 0.9rem;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--ink); line-height: 1.15;
}



/* ── SECTION WRAPPER ── */
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-sun { background: var(--sun); }
.section-ink { background: var(--ink); }


/* ── SECTION HEADER ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--sun); border-radius: 30px;
  padding: 0.28rem 0.9rem;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 1rem;
}
.section-tag-white {
  background: rgba(255,255,255,0.15); color: var(--white);
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 30px; border: 1px solid rgba(255,255,255,0.3);
  padding: 0.28rem 0.9rem;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1rem;
}
h2.serif {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15; margin-bottom: 1rem;
}
h2.serif.white { color: var(--white); }
.lead {
  font-size: 1.08rem; color: var(--ink-mid);
  line-height: 1.8; max-width: 560px; margin-bottom: 2.5rem;
}
.lead.white { color: rgba(255,255,255,0.75); }

/* ── ÜBER UNS ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.about-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.feature-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 1.2rem;
  background: var(--sun-pale);
  border-radius: 8px;
  border-left: 3px solid var(--sun-deep);
}
.feature-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.feature-title { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink); }
.feature-text { font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.15rem; }

.about-aside {
  background: var(--sun);
  border-radius: 8px;
  padding: 2.5rem;
  position: sticky; top: 80px;
}
.about-aside-butterfly {
  font-size: 4rem; margin-bottom: 1.5rem; display: block;
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.about-stat-box {
  background: white; border-radius: 6px; padding: 1rem;
  text-align: center;
}
.about-stat-box .num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: var(--sun-deep);
  display: block; line-height: 1;
}
.about-stat-box .lbl {
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--ink-soft); margin-top: 0.2rem;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid, .mitmachen-grid { grid-template-columns: 1fr; }
  .about-aside, .contact-panel { position: static; }
  .termine-layout { grid-template-columns: 1fr; }
  .chronik-grid { grid-template-columns: 1fr; }
  .chronik-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
