/* ================================================================
   SYSTEMKRAFT MENSCH – Stylesheet
   ================================================================ */

/* ── Lokale Schriftarten ─────────────────────────────────── */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-v40-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-v17-latin-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-v17-latin-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-v17-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

:root {
  --gruen:        #2f8f8a;
  --gruen-dunkel: #1d6b67;
  --gruen-hell:   #e8f5f4;
  --creme:        #f7f4ee;
  --dunkel:       #1e2a28;
  --grau:         #6b7c7a;
  --text:         #2d3835;
  --weiss:        #ffffff;
  --akzent:       #7bc67e;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--weiss);
  overflow-x: hidden;
}

/* ── Navigation ──────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(47,143,138,0.12);
  transition: all 0.3s ease;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo-namen {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gruen);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gruen); }

.nav-cta {
  background: var(--gruen) !important;
  color: var(--weiss) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--gruen-dunkel) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 52vw, 860px);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.90) 28%,
    rgba(255,255,255,0.55) 48%,
    rgba(255,255,255,0.0)  68%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(620px, 52vw, 860px);
}
.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gruen);
  margin-bottom: 1.2rem;
  display: block;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--dunkel);
  max-width: 560px;
  margin-bottom: 1.4rem;
}
.hero-title em { color: var(--gruen); font-style: normal; }
.hero-text {
  color: var(--grau);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gruen);
  color: var(--weiss);
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--gruen-dunkel);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47,143,138,0.28);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gruen);
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--gruen);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--gruen); color: var(--weiss); transform: translateY(-2px); }
.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--weiss);
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.75);
  transition: all 0.2s;
}
.btn-outline-white:hover { background: var(--weiss); color: var(--gruen); }

/* ── Trust Strip ─────────────────────────────────────────── */
.trust-strip {
  background: var(--gruen);
  padding: 1.2rem 2rem;
}
.trust-strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 4rem;
}
.trust-item {
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item::before { content: '✓ '; font-weight: 700; }

/* ── Sections ────────────────────────────────────────────── */
.section { padding: 5rem 2rem; }
.section-creme { background: var(--creme); }
.section-gruen {
  background: linear-gradient(135deg, var(--gruen-dunkel) 0%, var(--gruen) 100%);
}
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gruen);
  display: block;
  margin-bottom: 0.8rem;
}
.section-gruen .section-eyebrow { color: rgba(255,255,255,0.7); }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--dunkel);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-gruen .section-title { color: var(--weiss); }
.section-lead {
  color: var(--grau);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 3rem;
}
.section-gruen .section-lead { color: rgba(255,255,255,0.85); }

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--gruen-dunkel) 0%, var(--gruen) 60%, var(--akzent) 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--weiss);
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.page-hero .breadcrumb {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.6rem;
  display: block;
}

/* ── Two Column ──────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* ── Leistungen Grid ─────────────────────────────────────── */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.leistung-card {
  background: var(--weiss);
  border: 1px solid rgba(47,143,138,0.15);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: none;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.leistung-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gruen), var(--akzent));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.leistung-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(47,143,138,0.12); border-color: var(--gruen); }
.leistung-card:hover::before { transform: scaleX(1); }
.leistung-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 1.2rem;
  display: block;
}
.leistung-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--dunkel);
  font-weight: 600;
}

/* ── Team Cards ──────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.team-card {
  background: var(--weiss);
  border: 1px solid rgba(47,143,138,0.1);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.3s;
}
.team-card:hover { box-shadow: 0 16px 40px rgba(47,143,138,0.1); transform: translateY(-4px); }
.team-photo {
  width: 150px; height: 150px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  border: 3px solid var(--gruen-hell);
  margin-bottom: 1.5rem; display: block;
}
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gruen-hell), var(--gruen));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  font-weight: 700; color: var(--weiss); margin-bottom: 1.5rem;
}
.team-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--dunkel);
  margin-bottom: 0.4rem;
}
.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gruen);
  margin-bottom: 1.2rem;
  display: block;
}
.team-bio { color: var(--grau); font-size: 0.95rem; line-height: 1.75; }

/* ── Step Cards ──────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step-card {
  background: var(--weiss);
  border: 1px solid rgba(47,143,138,0.12);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(47,143,138,0.12); }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gruen-hell); color: var(--gruen);
  font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-family: 'Playfair Display', serif;
}
.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--dunkel);
  margin-bottom: 0.6rem;
}
.step-text { color: var(--grau); font-size: 0.92rem; line-height: 1.7; }

/* ── Anlässe Grid ────────────────────────────────────────── */
.anlaesse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.anlass-card {
  background: var(--weiss);
  border: 1px solid rgba(47,143,138,0.15);
  border-radius: 20px;
  padding: 2rem;
}
.anlass-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gruen-hell);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.2rem;
}
.anlass-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.2rem;
}
.anlass-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem; color: var(--dunkel); margin-bottom: 0.8rem;
}
.anlass-text { color: var(--grau); font-size: 0.9rem; line-height: 1.7; }

.info-box {
  background: var(--gruen-hell);
  border-radius: 20px;
  padding: 2.5rem;
}
.info-box p { color: var(--text); font-size: 0.95rem; line-height: 1.75; margin-bottom: 0.8rem; }
.info-box p:last-child { margin-bottom: 0; }
.info-box strong { color: var(--gruen-dunkel); }

/* ── Seminare Themen ─────────────────────────────────────── */
.themen-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.thema-card {
  background: var(--gruen-hell);
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  text-align: center;
  width: 175px;
  flex-shrink: 0;
}
.thema-icon { width: 48px; height: 48px; margin: 0 auto 0.8rem; display: block; color: var(--gruen); }
.thema-card strong { color: var(--dunkel); font-size: 0.95rem; display: block; }

/* ── Werte Grid ──────────────────────────────────────────── */
.werte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.wert-card {
  background: var(--weiss);
  border: 1px solid rgba(47,143,138,0.12);
  border-radius: 20px;
  padding: 2rem;
}
.wert-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gruen-hell);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gruen);
}
.wert-icon svg { width: 26px; height: 26px; }
.wert-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem; color: var(--dunkel); margin-bottom: 0.6rem;
}
.wert-text { color: var(--grau); font-size: 0.92rem; line-height: 1.7; }

/* ── Überzeugung ─────────────────────────────────────────── */
.ueberzeugung-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ueberzeugung-grid .col-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
blockquote.zitat {
  border: none;
  background: none;
  padding: 0;
  margin-top: 2rem;
  position: relative;
}
blockquote.zitat::before {
  content: '\201C';
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 6rem;
  color: var(--gruen);
  opacity: 0.25;
  position: absolute;
  top: -2rem;
  left: -1rem;
  line-height: 1;
}
blockquote.zitat p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--dunkel);
  font-size: 1.25rem;
  line-height: 1.7;
  padding-left: 1rem;
  line-height: 1.7;
}

/* ── Kontakt ─────────────────────────────────────────────── */
.kontakt-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-check-group {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.form-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 400;
}
.form-check-label input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gruen);
}
.form-check-label span {
  font-size: 0.88rem;
  color: var(--grau);
  line-height: 1.6;
}
.form-check-label a { color: var(--gruen); text-decoration: underline; }
.form-status-msg {
  border-radius: 14px;
  padding: 1.1rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}
.form-msg-success {
  background: var(--gruen-hell);
  color: var(--gruen-dunkel);
  border: 1px solid rgba(47,143,138,0.3);
}
.form-msg-error {
  background: #fff0f0;
  color: #c0392b;
  border: 1px solid rgba(192,57,43,0.25);
}
.kontakt-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.kontakt-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gruen-hell);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.kontakt-text { color: var(--text); font-size: 0.95rem; }

/* ── Formular ────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label { font-weight: 500; font-size: 0.9rem; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(47,143,138,0.25);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  background: var(--weiss);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gruen); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-dsgvo { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; font-weight: 400; margin-bottom: 1.2rem; }
.form-dsgvo input { width: auto; margin-top: 3px; flex-shrink: 0; accent-color: var(--gruen); }
.form-dsgvo span { font-size: 0.85rem; color: var(--grau); }
.form-dsgvo a { color: var(--gruen); text-decoration: underline; }
.form-hinweis { font-size: 0.82rem; color: var(--grau); margin-top: 0.8rem; }
.form-message { border-radius: 12px; padding: 1rem 1.4rem; font-size: 0.95rem; font-weight: 500; }
.form-message.form-success { background: var(--gruen-hell); color: var(--gruen-dunkel); border: 1px solid rgba(47,143,138,0.3); }
.form-message.form-error { background: #fff0f0; color: #c0392b; border: 1px solid rgba(192,57,43,0.3); }
.kontakt-form .g-recaptcha { margin-bottom: 0.5rem; }
.form-success {
  display: none;
  background: var(--gruen-hell);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.form-success h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gruen-dunkel);
  margin-bottom: 0.5rem;
}

/* ── Legal Pages ─────────────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.legal-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  color: var(--dunkel);
  margin-bottom: 2rem;
}
.legal-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: var(--dunkel);
  margin: 2rem 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(47,143,138,0.15);
}
.legal-content h3 { font-size: 1rem; color: var(--dunkel); margin: 1rem 0 0.4rem; }
.legal-content p,
.legal-content li { color: var(--grau); line-height: 1.75; margin-bottom: 0.8rem; }
.legal-content ul { padding-left: 1.5rem; }
.legal-content a { color: var(--gruen); }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--dunkel);
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
}
.footer-logo img {
  height: 220px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  display: block;
}
.footer-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--weiss);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}
.footer-col h4 {
  color: var(--weiss);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--akzent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; margin-left: 1.5rem; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── Fade-in Animations ──────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(47,143,138,0.12);
  }
  .hamburger { display: flex; }
  .two-col,
  .two-col.reverse,
  .team-grid,
  .kontakt-grid,
  .ueberzeugung-grid { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .leistung-card img { width: 120px; height: 120px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row-2 { grid-template-columns: 1fr; }
  .anlaesse-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 3.5rem 1.5rem; }
  .hero-content { padding: 7rem 1.5rem 3rem; }
  .hero-content { padding: 3rem 1.5rem; min-height: clamp(520px, 80vw, 700px); }
  .hero-bg-img { object-position: 77% top; }
  .hero-overlay {
    background: rgba(255,255,255,0.62);
  }
  .thema-card { width: 140px; }
}

@media (max-width: 600px) {
  .thema-card { width: calc(50% - 0.6rem); }
}
