/* ===================================================
   BARNABAS INITIATIVE – LIGHT DESIGN SYSTEM
   =================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy:        #1b2a3f;
  --navy-light:  #2b3e5c;
  --terra:       #c4704d;
  --terra-light: #d4845f;
  --sand:        #f5ede3;
  --beige:       #d4b896;
  --muted:       #a69b8a;
  --white:       #ffffff;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(27,42,63,0.10);
  --shadow-lg:   0 12px 40px rgba(27,42,63,0.14);
}

body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--navy); background: var(--white); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
p { color: #3a3530; margin-bottom: 16px; }
h1, h2, h3 { line-height: 1.25; color: var(--navy); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── SECTIONS ── */
.section { padding: 80px 0; background: var(--white); }
.section--sand  { background: var(--sand); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--navy p { color: rgba(255,255,255,.75); }
.section--navy h2 { color: var(--white); }

/* ── TAGS / LABELS ── */
.tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--terra); margin-bottom: 12px; }
.section--navy .tag { color: var(--beige); }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 15px; cursor: pointer; transition: transform .15s, background .15s, box-shadow .15s; border: 2px solid transparent; font-family: inherit; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.btn--primary   { background: var(--terra); color: var(--white); }
.btn--primary:hover { background: var(--terra-light); }
.btn--outline   { background: transparent; border-color: var(--white); color: var(--white); }
.btn--outline:hover { background: rgba(255,255,255,.12); }
.btn--outline-dark { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ── NAVBAR ── */
.navbar { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid rgba(27,42,63,.08); box-shadow: 0 2px 12px rgba(27,42,63,.06); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.navbar__logo { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; white-space: nowrap; display: flex; align-items: center; gap: 10px; }
.navbar__logo img { height: 36px; width: auto; }
.navbar__logo-text span { color: var(--terra); }
.navbar__nav { display: flex; align-items: center; gap: 6px; list-style: none; }
.navbar__nav a { padding: 8px 14px; font-size: 14px; font-weight: 600; color: #2c2c3e; border-radius: 6px; transition: background .15s, color .15s; white-space: nowrap; }
.navbar__nav a:hover,
.navbar__nav a.active { background: var(--sand); color: var(--navy); }
.navbar__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.navbar__spenden { padding: 9px 18px; font-size: 13px; border-radius: 6px; border: 1.5px solid var(--navy); color: var(--navy); font-weight: 700; transition: background .15s, color .15s; white-space: nowrap; }
.navbar__spenden:hover { background: var(--navy); color: var(--white); }
.navbar__cta { padding: 9px 18px; font-size: 13px; border-radius: 6px; background: var(--terra); color: var(--white); font-weight: 700; transition: background .15s; white-space: nowrap; }
.navbar__cta:hover { background: var(--terra-light); }
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; }
.mobile-menu { display: none; flex-direction: column; background: var(--white); border-top: 1px solid rgba(27,42,63,.08); padding: 16px 24px 24px; gap: 4px; }
.mobile-menu a { padding: 12px 0; font-weight: 600; font-size: 15px; color: #2c2c3e; border-bottom: 1px solid rgba(27,42,63,.06); }
.mobile-menu .btn { margin-top: 12px; text-align: center; border-bottom: none; }
.mobile-menu.open { display: flex; }

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger { display: flex; align-items: center; gap: 4px; }
.nav-chevron { width: 14px; height: 14px; transition: transform .2s; }
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border-radius: 10px; box-shadow: 0 8px 32px rgba(27,42,63,.14); border: 1px solid rgba(27,42,63,.08); padding: 8px; min-width: 160px; list-style: none; z-index: 200; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { display: block; padding: 10px 16px; font-size: 14px; font-weight: 600; color: var(--navy); border-radius: 6px; transition: background .15s; white-space: nowrap; }
.dropdown-menu li a:hover { background: var(--sand); color: var(--terra); }

/* ── HERO ── */
.hero {
  background:
    linear-gradient(135deg, rgba(27,42,63,0.88) 0%, rgba(43,62,92,0.75) 50%, rgba(43,62,92,0.60) 100%),
    url('/images/strassengespraech-maenner.png') center/cover no-repeat;
  background-color: var(--navy);
  color: var(--white);
  padding: 110px 0 100px;
}
.hero__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--beige); margin-bottom: 20px; }
.hero__title { font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; max-width: 700px; color: var(--white); }
.hero__title em { font-style: normal; color: var(--terra); }
.hero__sub { font-size: clamp(1rem, 2.5vw, 1.15rem); color: rgba(255,255,255,.85); max-width: 580px; margin-bottom: 0; line-height: 1.7; }
.hero__trust { margin-top: 48px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; opacity: .8; font-size: 13px; color: rgba(255,255,255,.75); }
.hero__trust span { display: flex; align-items: center; gap: 6px; }
.hero__trust-star { width: 14px; height: 14px; fill: var(--beige); }

/* ── PAGE HERO (Unterseiten) ── */
.page-hero { padding: 80px 0; color: var(--white); }
.page-hero__tag { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--beige); margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; color: var(--white); margin-bottom: 20px; line-height: 1.1; }
.page-hero h1 em { font-style: normal; color: var(--terra); }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.80); max-width: 600px; margin: 0; }

/* ── INTRO BAND ── */
.intro-band { background: var(--terra); color: var(--white); padding: 22px 0; text-align: center; }
.intro-band p { color: var(--white); font-size: 1.05rem; font-weight: 600; margin: 0; }

/* ── PILLAR CARDS ── */
.pillars__header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow); border-top: 4px solid var(--terra); transition: transform .2s, box-shadow .2s; }
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar-card__num { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--terra); text-transform: uppercase; margin-bottom: 14px; }
.pillar-card h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 12px; }
.pillar-card p { font-size: 0.95rem; margin: 0; }
.pillar-card__link { display: inline-block; margin-top: 20px; font-size: 14px; font-weight: 700; color: var(--terra); border-bottom: 2px solid transparent; transition: border-color .15s; }
.pillar-card__link:hover { border-color: var(--terra); }

/* ── OFFER CARDS (navy background) ── */
.offers__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.offers__cards { display: flex; flex-direction: column; gap: 16px; }
.offer-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 24px 28px; display: flex; gap: 18px; align-items: flex-start; transition: background .2s; }
.offer-card:hover { background: rgba(255,255,255,.12); }
.offer-card__icon { width: 44px; height: 44px; background: var(--terra); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.offer-card__icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.offer-card__body h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 4px; }
.offer-card__body p { color: rgba(255,255,255,.65); font-size: 0.9rem; margin: 0; }

/* ── FORMAT CARDS (Seminare light) ── */
.formate-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.format-card-light { background: var(--white); border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow); border-top: 4px solid var(--terra); transition: transform .2s, box-shadow .2s; }
.format-card-light:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.format-card-light__icon { width: 52px; height: 52px; background: var(--sand); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.format-card-light__icon svg { width: 26px; height: 26px; stroke: var(--terra); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.format-card-light h3 { color: var(--navy); margin-bottom: 8px; }
.format-card-light__desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; line-height: 1.7; }
.format-card-light__details { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.format-card-light__details li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--muted); }
.format-card-light__details li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }

/* ── 4-ZIMMER ── */
.rooms__header { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.rooms__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.room-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; box-shadow: var(--shadow); text-align: center; position: relative; overflow: hidden; }
.room-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--terra); }
.room-card__icon { width: 56px; height: 56px; background: var(--sand); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.room-card__icon svg { width: 28px; height: 28px; stroke: var(--terra); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.room-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 8px; }
.room-card p { font-size: 0.88rem; margin: 0; }
.rooms__cta { text-align: center; margin-top: 40px; }

/* ── VISION ── */
.vision__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.vision__quote { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--navy); line-height: 1.3; border-left: 4px solid var(--terra); padding-left: 24px; margin-bottom: 24px; letter-spacing: -0.01em; }
.vision__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 24px; height: 300px; }
.vision__img img { width: 100%; height: 100%; object-fit: cover; }
.vision__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-light { text-align: center; padding: 24px; background: var(--sand); border-radius: var(--radius); }
.stat-light__num { font-size: 2.2rem; font-weight: 900; color: var(--terra); display: block; }
.stat-light__label { font-size: 0.85rem; color: var(--muted); }

/* Stat tile pop-in animation */
@keyframes statPopin {
  0%   { opacity: 0; transform: scale(0.80) translateY(20px); }
  60%  { transform: scale(1.05) translateY(-4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.stat-light--anim { opacity: 0; }
.stat-light--anim.visible { animation: statPopin 0.55s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.stat-light--anim[data-delay="1"].visible { animation-delay: 0.05s; }
.stat-light--anim[data-delay="2"].visible { animation-delay: 0.15s; }
.stat-light--anim[data-delay="3"].visible { animation-delay: 0.25s; }
.stat-light--anim[data-delay="4"].visible { animation-delay: 0.35s; }

/* ── WERTE CARDS ── */
.werte-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wert-card-light { padding: 32px 28px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border-top: 4px solid var(--terra); }
.wert-card-light__icon { width: 48px; height: 48px; background: var(--sand); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.wert-card-light__icon svg { width: 24px; height: 24px; stroke: var(--terra); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.wert-card-light h3 { color: var(--navy); }
.wert-card-light p { color: var(--muted); margin: 0; font-size: 0.9rem; line-height: 1.8; }

/* ── BEREICHE CARDS ── */
.bereiche-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.bereich-card-light { background: var(--white); border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow); border-top: 4px solid var(--terra); }
.bereich-card-light__num { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--terra); text-transform: uppercase; margin-bottom: 12px; }
.bereich-card-light h3 { color: var(--navy); margin-bottom: 10px; }
.bereich-card-light p { color: var(--muted); margin: 0; font-size: 0.9rem; line-height: 1.8; }

/* ── SEMINAR INTRO ── */
.seminar-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.seminar-intro__img { border-radius: var(--radius); overflow: hidden; height: 400px; box-shadow: var(--shadow); }
.seminar-intro__img img { width: 100%; height: 100%; object-fit: cover; }
.inhalte-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.inhalte-list li { display: flex; gap: 14px; align-items: flex-start; }
.inhalte-list__icon { width: 36px; height: 36px; background: var(--sand); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.inhalte-list__icon svg { width: 18px; height: 18px; stroke: var(--terra); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.inhalte-list__text strong { color: var(--navy); display: block; font-size: 0.95rem; }
.inhalte-list__text span { color: var(--muted); font-size: 0.88rem; }

/* ── TESTIMONIAL SLIDER ── */
.testimonial-slider { max-width: 820px; margin: 0 auto; overflow: hidden; position: relative; }
.testimonial-track { display: flex; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.testimonial { min-width: 100%; text-align: center; padding: 0 16px; }
.testimonial__stars { color: var(--beige); font-size: 22px; margin-bottom: 24px; letter-spacing: 4px; }
.testimonial__text { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-style: italic; color: var(--white); line-height: 1.8; margin-bottom: 28px; }
.testimonial__author { font-size: 0.9rem; color: rgba(255,255,255,.65); margin: 0; }
.testimonial__author strong { color: var(--white); }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.testimonial-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; cursor: pointer; transition: background .3s, transform .3s; padding: 0; }
.testimonial-dot.active { background: var(--terra); transform: scale(1.3); }

/* ── SINGLE TESTIMONIAL ── */
.testimonial-single { max-width: 760px; margin: 0 auto; text-align: center; }
.testimonial-single__stars { color: var(--beige); font-size: 22px; letter-spacing: 4px; margin-bottom: 24px; }
.testimonial-single__text { font-size: clamp(1.1rem, 2.5vw, 1.3rem); font-style: italic; color: var(--white); line-height: 1.8; margin-bottom: 24px; }
.testimonial-single__author { font-size: 0.9rem; color: rgba(255,255,255,.65); }
.testimonial-single__author strong { color: var(--white); }

/* ── STEPS (light) ── */
.steps__header { text-align: center; max-width: 580px; margin: 0 auto 52px; }
.steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps__grid::before { content: ''; position: absolute; top: 28px; left: 12.5%; width: 75%; height: 2px; background: linear-gradient(90deg, var(--terra), var(--terra-light)); z-index: 0; }
.step-light { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-light__num { width: 56px; height: 56px; border-radius: 50%; background: var(--terra); color: var(--white); font-size: 1.3rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(196,112,77,.4); }
.step-light h3 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.step-light p { font-size: 0.88rem; color: var(--muted); }
.steps__cta { text-align: center; margin-top: 48px; }

/* ── FAQ ── */
.faq__header { text-align: center; max-width: 580px; margin: 0 auto 48px; }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid rgba(27,42,63,.12); border-radius: var(--radius); overflow: hidden; }
.faq-item__q { padding: 20px 24px; font-weight: 700; font-size: 1rem; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; user-select: none; transition: background .15s; }
.faq-item__q:hover { background: var(--sand); }
.faq-item__q svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform .25s; stroke: var(--terra); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.faq-item.open .faq-item__q svg { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; padding: 0 24px; font-size: 0.95rem; color: var(--muted); }
.faq-item.open .faq-item__a { max-height: 240px; padding: 0 24px 20px; }

/* ── NEWSLETTER ── */
.newsletter { text-align: center; max-width: 560px; margin: 0 auto; }
.newsletter__form { display: flex; gap: 12px; margin-top: 28px; }
.newsletter__form input { flex: 1; padding: 14px 18px; border: 2px solid rgba(27,42,63,.15); border-radius: 8px; font-size: 15px; outline: none; transition: border-color .15s; font-family: inherit; color: var(--navy); background: var(--white); }
.newsletter__form input:focus { border-color: var(--terra); }
.newsletter__form button { padding: 14px 24px; background: var(--terra); color: var(--white); border: none; border-radius: 8px; font-weight: 700; font-size: 15px; cursor: pointer; white-space: nowrap; font-family: inherit; transition: background .15s; }
.newsletter__form button:hover { background: var(--terra-light); }
.newsletter__hint { font-size: 12px; color: var(--muted); margin-top: 12px; margin-bottom: 0; }
.newsletter__success { display: none; background: rgba(196,112,77,0.1); border-radius: var(--radius); padding: 24px; margin-top: 28px; }
.newsletter__success p { color: var(--navy); font-weight: 700; margin: 0; }

/* ── INLINE OPTIN ── */
.inline-optin { background: var(--sand); border-radius: var(--radius); padding: 28px 32px; text-align: left; }
.inline-optin__label { font-size: 0.92rem; color: var(--navy); font-weight: 600; margin-bottom: 14px; }
.inline-optin__form { display: flex; gap: 10px; flex-wrap: wrap; }
.inline-optin__form input { flex: 1; min-width: 200px; padding: 12px 16px; border: 2px solid rgba(27,42,63,.15); border-radius: 8px; font-size: 15px; outline: none; transition: border-color .15s; font-family: inherit; color: var(--navy); background: var(--white); }
.inline-optin__form input:focus { border-color: var(--terra); }
.inline-optin__form button { padding: 12px 22px; background: var(--terra); color: var(--white); border: none; border-radius: 8px; font-weight: 700; font-size: 14px; cursor: pointer; white-space: nowrap; font-family: inherit; transition: background .15s; }
.inline-optin__form button:hover { background: var(--terra-light); }

/* ── KONTAKT FORM ── */
.kontakt-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: start; }
.form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 14px 18px; border: 2px solid rgba(27,42,63,.12); border-radius: 8px; font-size: 15px; font-family: inherit; outline: none; transition: border-color .15s, box-shadow .15s; color: var(--navy); background: #fafafa; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--terra); background: var(--white); box-shadow: 0 0 0 3px rgba(196,112,77,.1); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 16px; background: var(--terra); color: var(--white); border: none; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; font-family: inherit; transition: background .15s, transform .15s; margin-top: 8px; }
.form-submit:hover { background: var(--terra-light); transform: translateY(-1px); }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 10px; text-align: center; }
.form-success { display: none; background: var(--sand); border-radius: var(--radius); padding: 40px; text-align: center; margin-bottom: 24px; }

/* ── KONTAKT INFO ── */
.kontakt-info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.kontakt-info-item { display: flex; gap: 16px; align-items: center; padding: 20px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.kontakt-info-item__icon { width: 48px; height: 48px; background: var(--sand); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kontakt-info-item__icon svg { width: 22px; height: 22px; stroke: var(--terra); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.kontakt-info-item h3 { color: var(--navy); font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.kontakt-info-item p { margin: 0; font-size: 0.9rem; }
.kontakt-info-item a { color: var(--terra); font-weight: 600; }

/* ── SPENDEN BOX ── */
.spenden-box { background: var(--sand); border-radius: var(--radius); padding: 32px; border-left: 4px solid var(--terra); }
.spenden-box h3 { color: var(--navy); margin-bottom: 10px; }
.spenden-box a { color: var(--terra); font-weight: 600; }

/* ── ALT BLOCKS (Spenden) ── */
.alt-block { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.alt-block--reverse { direction: rtl; }
.alt-block--reverse > * { direction: ltr; }
.alt-block__img { border-radius: var(--radius); overflow: hidden; height: 380px; box-shadow: var(--shadow); }
.alt-block__img img { width: 100%; height: 100%; object-fit: cover; }
.alt-block__number { font-size: 64px; font-weight: 900; color: rgba(196,112,77,.12); line-height: 1; margin-bottom: -8px; }
.alt-block__quote { font-style: italic; color: var(--terra); font-size: 0.95rem; border-left: 3px solid var(--terra); padding-left: 16px; margin: 20px 0; line-height: 1.6; }
.alt-block__quote strong { color: var(--muted); font-style: normal; font-size: 0.85rem; }
.alt-block__enables { background: var(--sand); border-radius: 6px; padding: 12px 16px; margin-top: 16px; }
.alt-block__enables p { font-size: 0.88rem; color: var(--muted); margin: 0; }
.alt-block__enables strong { color: var(--navy); }

/* ── SPENDEN FORM ── */
.spenden-form-wrap { max-width: 760px; margin: 0 auto; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; }
.spenden-form-wrap h3 { color: var(--navy); text-align: center; margin-bottom: 8px; font-size: 1.4rem; }
.spenden-form-wrap > p { text-align: center; margin-bottom: 28px; }
.ueberweisung-box { background: var(--sand); border-radius: var(--radius); padding: 36px; border-left: 4px solid var(--terra); max-width: 560px; margin: 0 auto; }
.ueberweisung-box h3 { color: var(--navy); margin-bottom: 20px; }
.bank-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(27,42,63,.08); font-size: 0.95rem; gap: 16px; }
.bank-row:last-of-type { border-bottom: none; }
.bank-row span:first-child { color: var(--muted); font-weight: 600; flex-shrink: 0; }
.bank-row span:last-child { color: var(--navy); font-weight: 700; font-family: monospace; text-align: right; }
.bank-hint { font-size: 0.85rem; color: var(--muted); margin-top: 16px; margin-bottom: 0; line-height: 1.7; }

/* ── LEGAL CONTENT ── */
.legal-content { max-width: 780px; }
.legal-content h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-top: 48px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--sand); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-top: 28px; margin-bottom: 8px; }
.legal-content p { color: #4a5568; margin-bottom: 16px; line-height: 1.8; }
.legal-content a { color: var(--terra); text-decoration: underline; }
.legal-content ul { margin: 0 0 16px 20px; color: #4a5568; line-height: 1.8; }
.legal-content ul li { margin-bottom: 4px; }
.legal-content strong { color: var(--navy); }
.legal-tag { display: inline-block; background: var(--sand); color: var(--terra); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; margin-bottom: 8px; }

/* ── PHOTO BREAK ── */
.photo-break { height: 420px; background-size: cover; background-position: center; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 56px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand { max-width: 280px; }
.footer__logo { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer__logo span { color: var(--terra); }
.footer__desc { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer__col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 0.9rem; color: rgba(255,255,255,.65); transition: color .15s; }
.footer__col a:hover { color: var(--terra); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.45); }
.footer__bottom a { color: rgba(255,255,255,.45); text-decoration: underline; }
.footer__bottom a:hover { color: rgba(255,255,255,.75); }

/* ── SCROLL ANIMATIONS ── */
[data-anim] { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-anim].visible { opacity: 1; transform: translateY(0); }
[data-anim][data-delay="1"] { transition-delay: .10s; }
[data-anim][data-delay="2"] { transition-delay: .20s; }
[data-anim][data-delay="3"] { transition-delay: .30s; }
[data-anim][data-delay="4"] { transition-delay: .40s; }

/* ── VORTEILE (Webinare) ── */
.vorteile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.vorteil-card-light { background: var(--white); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); border-top: 4px solid var(--terra); text-align: center; }
.vorteil-card-light__icon { width: 56px; height: 56px; background: var(--sand); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.vorteil-card-light__icon svg { width: 28px; height: 28px; stroke: var(--terra); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.vorteil-card-light h3 { color: var(--navy); margin-bottom: 8px; }
.vorteil-card-light p { color: var(--muted); margin: 0; font-size: 0.9rem; line-height: 1.8; }

/* ── TERMINE (Webinare) ── */
.termine-list { display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }
.termin-card-light { background: var(--navy); border-radius: var(--radius); padding: 32px 36px; display: flex; align-items: center; justify-content: space-between; gap: 32px; color: var(--white); transition: transform .2s; }
.termin-card-light:hover { transform: translateY(-2px); }
.termin-card-light--placeholder { background: var(--navy-light); opacity: 0.7; }
.termin-card-light__badge { background: var(--terra); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 10px; }
.termin-card-light__badge--soon { background: rgba(255,255,255,.15); }
.termin-card-light__meta { font-size: 0.82rem; font-weight: 700; color: var(--terra); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 6px; }
.termin-card-light__title { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.termin-card-light__desc { color: rgba(255,255,255,.65); font-size: 0.92rem; margin: 0; }
.btn--calendly { background: var(--terra); color: var(--white); padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: 14px; border: none; cursor: pointer; font-family: inherit; transition: background .15s; white-space: nowrap; display: inline-block; }
.btn--calendly:hover { background: var(--terra-light); }
.btn--disabled { background: rgba(255,255,255,.15); color: rgba(255,255,255,.5); cursor: default; pointer-events: none; }

/* ── ANGEBOT BLOCK (Training) ── */
.angebot-block { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.angebot-block--reverse { direction: rtl; }
.angebot-block--reverse > * { direction: ltr; }
.angebot-block__img { border-radius: var(--radius); overflow: hidden; height: 400px; box-shadow: var(--shadow); }
.angebot-block__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.angebot-block__img:hover img { transform: scale(1.03); }
.angebot-block__label { display: inline-block; background: var(--navy); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }
.angebot-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 20px 0 28px; }
.angebot-features li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--navy); }
.angebot-features li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pillars__grid    { grid-template-columns: 1fr; gap: 20px; }
  .rooms__grid      { grid-template-columns: 1fr 1fr; }
  .offers__layout   { grid-template-columns: 1fr; gap: 40px; }
  .vision__layout   { grid-template-columns: 1fr; gap: 40px; }
  .steps__grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps__grid::before { display: none; }
  .footer__grid     { grid-template-columns: 1fr 1fr; }
  .footer__brand    { grid-column: 1/-1; max-width: 100%; }
  .werte-grid       { grid-template-columns: 1fr 1fr; }
  .bereiche-grid    { grid-template-columns: 1fr; }
  .formate-grid     { grid-template-columns: 1fr; }
  .kontakt-layout   { grid-template-columns: 1fr; gap: 40px; }
  .alt-block        { grid-template-columns: 1fr; gap: 36px; }
  .alt-block--reverse { direction: ltr; }
  .vorteile-grid    { grid-template-columns: 1fr 1fr; }
  .termin-card-light { flex-direction: column; align-items: flex-start; }
  .seminar-intro    { grid-template-columns: 1fr; gap: 40px; }
  .angebot-block    { grid-template-columns: 1fr; gap: 40px; }
  .angebot-block--reverse { direction: ltr; }
}
@media (max-width: 640px) {
  .section          { padding: 56px 0; }
  .hero             { padding: 72px 0 64px; }
  .navbar__nav      { display: none; }
  .hamburger        { display: flex; }
  .navbar__actions .navbar__spenden { display: none; }
  .rooms__grid      { grid-template-columns: 1fr 1fr; }
  .steps__grid      { grid-template-columns: 1fr; }
  .newsletter__form { flex-direction: column; }
  .footer__grid     { grid-template-columns: 1fr; }
  .vision__stats    { grid-template-columns: 1fr 1fr; }
  .werte-grid       { grid-template-columns: 1fr; }
  .vorteile-grid    { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .form-card        { padding: 24px; }
  .container        { padding: 0 20px; }
}
