@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Fraunces:ital,wght@0,500;0,700;1,500;1,700&display=swap');

:root {
  --primary: #0E0E0E;
  --primary-dark: #000000;
  --accent: #7CCEC2;
  --accent-soft: #C6E8E4;
  --accent-deep: #2F8C82;
  --bg: #FFFFFF;
  --bg-soft: #F7F9F8;
  --text: #0E0E0E;
  --text-soft: #4A5550;
  --border: #E5EBE9;
  --white: #FFFFFF;
  --shadow: 0 24px 50px -20px rgba(14,14,14,0.18);
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent-deep); }

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

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
}
.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  background: white;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text small {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--accent-deep); }
.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}
.nav-cta:hover {
  background: var(--accent-deep);
  color: white !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text);
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 90px 0 120px;
  background: var(--bg);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.6;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--accent-soft); }
  50% { box-shadow: 0 0 0 8px rgba(124,206,194,0.2); }
}

h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--text);
}
h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-deep);
}
.hero p.lead {
  font-size: 19px;
  color: var(--text-soft);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 24px -8px rgba(14,14,14,0.35);
}
.btn-primary:hover {
  background: var(--accent-deep);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -8px rgba(47,140,130,0.4);
}
.btn-ghost {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-soft);
  font-size: 14px;
  flex-wrap: wrap;
}
.trust-icons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-icons span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-soft);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: white;
  padding: 18px 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 290px;
  border: 1px solid var(--border);
}
.hero-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-deep);
}
.hero-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.hero-badge span {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.4;
}

/* ============== SECTIONS ============== */
section { padding: 110px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.section-eyebrow {
  display: inline-block;
  color: #1E6A62;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 100px;
}
h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: var(--text);
}
.section-head p {
  font-size: 18px;
  color: var(--text-soft);
}

/* ============== KURSE ============== */
.kurse {
  background: var(--bg-soft);
}
.kurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.kurs-card {
  background: white;
  padding: 36px 30px;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.kurs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.kurs-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.kurs-card:hover::before { transform: scaleX(1); }

.kurs-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-deep);
  border: 1px solid var(--border);
}
.kurs-icon svg { width: 30px; height: 30px; }
.kurs-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text);
}
.kurs-card .meta {
  display: flex;
  gap: 14px;
  margin: 16px 0 14px;
  font-size: 14px;
  color: var(--text-soft);
  flex-wrap: wrap;
}
.kurs-card .meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.kurs-card p {
  color: var(--text-soft);
  margin-bottom: 22px;
  font-size: 16px;
}
.kurs-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 15px;
  color: #1E6A62;
}
.kurs-link:hover { color: var(--primary); }

/* ============== GALERIE ============== */
.galerie {
  background: var(--bg);
  padding: 110px 0;
}
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
  margin-top: 12px;
}
.galerie-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  margin: 0;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.galerie-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px -20px rgba(14,14,14,0.28);
}
.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.galerie-item:hover img { transform: scale(1.05); }
.galerie-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,14,14,0.5));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.galerie-item:hover::after { opacity: 1; }

.g-1 { grid-column: span 2; grid-row: span 2; }
.g-2 { grid-column: span 2; grid-row: span 1; }
.g-3 { grid-column: span 2; grid-row: span 1; }
.g-4 { grid-column: span 4; grid-row: span 1; }
.g-5 { grid-column: span 3; grid-row: span 1; }

@media (max-width: 900px) {
  .galerie-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-1, .g-2, .g-3, .g-4, .g-5 { grid-column: span 1; grid-row: span 1; }
}

/* ============== ÜBER MICH ============== */
.about {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--accent-soft);
  opacity: 0.5;
  pointer-events: none;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-visual {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-stats {
  position: absolute;
  bottom: -32px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 20px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 90px;
  padding: 6px 4px;
  border-radius: 12px;
  transition: transform .25s ease, background .25s ease;
}
.about-stat:hover {
  transform: translateY(-3px);
  background: rgba(124,206,194,0.14);
}
.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  font-size: 20px;
  margin-bottom: 10px;
}
.about-stat.stat-2 .stat-icon {
  background-image: linear-gradient(135deg, #2F8C82 0%, #7CCEC2 100%);
}
.about-stat.stat-3 .stat-icon {
  background-image: linear-gradient(135deg, #C6E8E4 0%, #2F8C82 100%);
}
.about-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.1;
  margin-bottom: 4px;
  color: white;
}
.about-stat span:not(.stat-icon) {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.85;
  font-weight: 600;
  line-height: 1.3;
}

.about-content h2 { text-align: left; margin-bottom: 24px; }
.about-content > p {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 28px;
}
.about-list {
  list-style: none;
  margin-top: 28px;
}
.about-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-list li:last-child { border-bottom: none; }
.about-list .check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}
.about-list strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  font-size: 17px;
}
.about-list span {
  color: var(--text-soft);
  font-size: 15px;
}

/* ============== ABLAUF ============== */
.ablauf {
  background: var(--bg-soft);
}
.ablauf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.ablauf-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 8px, transparent 8px 16px);
  opacity: 0.6;
  z-index: 0;
}
.ablauf-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ablauf-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 24px -8px rgba(14,14,14,0.3);
  border: 6px solid var(--bg-soft);
}
.ablauf-step h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.ablauf-step p {
  color: var(--text-soft);
  font-size: 15px;
}

/* ============== KONTAKT ============== */
.kontakt {
  background: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
}
.kontakt::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.18;
  pointer-events: none;
}
.kontakt::after {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -150px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.12;
  pointer-events: none;
}
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.kontakt .section-eyebrow {
  background: rgba(124,206,194,0.2);
  color: var(--accent);
}
.kontakt h2 { color: white; }
.kontakt > .container > .kontakt-inner > div > p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 32px;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}
.kontakt-info > div,
.kontakt-info > a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  color: white !important;
}
.kontakt-info > a {
  text-decoration: none;
  transition: transform 0.2s ease;
}
.kontakt-info > a:hover { transform: translateX(2px); }
.kontakt-info > a:hover .icon {
  background: var(--accent);
  color: var(--primary);
}
.kontakt-info .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(124,206,194,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent) !important;
  transition: background 0.2s ease, color 0.2s ease;
}

.kontakt-form {
  background: white;
  padding: 36px;
  border-radius: 24px;
  color: var(--text);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.kontakt-form h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 6px;
}
.kontakt-form .sub {
  color: var(--text-soft);
  margin-bottom: 22px;
  font-size: 15px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--bg-soft);
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
}
.field textarea { resize: vertical; min-height: 100px; }
.form-alt {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted, #666);
  text-align: center;
}
.form-alt a {
  color: var(--accent-deep, #1E6A62);
  font-weight: 600;
  text-decoration: underline;
}

.kontakt-form button {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}

/* ============== FOOTER ============== */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 28px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
footer .brand { justify-content: center; color: white; margin-bottom: 16px; }
footer .links { display: flex; gap: 24px; justify-content: center; margin-bottom: 22px; flex-wrap: wrap; }
footer .links a { color: rgba(255,255,255,0.7); }
footer .links a:hover { color: var(--accent); }
footer .copy { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  margin-top: 18px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-instagram:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ============== MOBILE ============== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
  }
  .nav-toggle { display: block; }
  .hero { padding: 60px 0 90px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-badge { left: 20px; bottom: -20px; }
  .kurs-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-stats { right: 20px; bottom: -24px; gap: 8px; padding: 16px 14px; }
  .about-stat { min-width: 78px; }
  .about-stat strong { font-size: 15px; }
  .stat-icon { width: 34px; height: 34px; font-size: 17px; }
  .ablauf-grid { grid-template-columns: repeat(2, 1fr); }
  .ablauf-grid::before { display: none; }
  .kontakt-inner { grid-template-columns: 1fr; gap: 40px; }
  section { padding: 80px 0; }
}

@media (max-width: 500px) {
  .container { padding: 0 20px; }
  .ablauf-grid { grid-template-columns: 1fr; }
  .about-stats { position: static; margin-top: 24px; flex-wrap: wrap; justify-content: center; }
  .about-stat { min-width: 100px; }
}

/* ============== TERMINE ============== */
.termine-hero {
  padding: 90px 0 60px;
  background: var(--bg);
  text-align: center;
}
.termine-hero .lead {
  max-width: 620px;
  margin: 0 auto;
  font-size: 19px;
  color: var(--text-soft);
}
.termine-instagram {
  padding: 0 0 60px;
}
.instagram-cta {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 44px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.instagram-cta-icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.instagram-cta h2 {
  font-size: 26px;
  margin-bottom: 10px;
  text-align: left;
}
.instagram-cta p {
  color: var(--text-soft);
  margin-bottom: 20px;
}
.termine-liste {
  background: var(--bg-soft);
  padding: 100px 0;
}
.termine-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.termine-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.termine-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.termine-datum {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: #1E6A62;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.termine-uhrzeit {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-soft);
}
.termine-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.termine-info h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
}
.termine-ort {
  font-size: 14px;
  color: var(--text-soft);
}
.termine-eigen {
  padding: 100px 0;
}
.termine-eigen-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--primary);
  color: white;
  border-radius: 28px;
  padding: 50px;
}
.termine-eigen-inner h2 { color: white; text-align: left; }
.termine-eigen-inner p { color: rgba(255,255,255,0.8); font-size: 17px; }
.termine-eigen-inner .btn-primary {
  background: var(--accent);
  color: var(--primary);
  white-space: nowrap;
}
.termine-eigen-inner .btn-primary:hover { background: white; }

@media (max-width: 700px) {
  .instagram-cta { flex-direction: column; text-align: center; }
  .instagram-cta h2 { text-align: center; }
  .termine-item { flex-direction: column; align-items: flex-start; gap: 10px; }
  .termine-eigen-inner { flex-direction: column; text-align: center; padding: 36px; }
  .termine-eigen-inner h2 { text-align: center; }
}

/* ============== PLACEHOLDER ============== */
.wchat-placeholder {
  background: #FFF4D6;
  border: 2px dashed #E8B04A;
  border-radius: 8px;
  padding: 4px 10px;
  color: #8B6914;
  font-weight: 700;
  font-size: 0.95em;
  display: inline-block;
}
.wchat-placeholder::before {
  content: '⚠ ';
}

/* ============== ENTRANCE ANIMATION ============== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}
.fade-in.delay-1 { animation-delay: 0.15s; }
.fade-in.delay-2 { animation-delay: 0.3s; }
.fade-in.delay-3 { animation-delay: 0.45s; }