/* ============================================================
   Glücksteam – Corporate Design Stylesheet
   Konzept: "Bunt mit Struktur" – Blau dominant, bunte Akzente,
   viel Weißraum. Max. 3 aktive Farben pro Abschnitt.
   ============================================================ */

/* ---------- Webfonts (selbst gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.woff2") format("woff2");
}

/* ---------- Designtokens ---------- */
:root {
  /* Primärfarbe: Vertrauen + Tiefe */
  --blue: #1f3c88;
  --blue-600: #2e5bc0;
  --blue-100: #dce6f8;
  --blue-050: #eef3fc;

  /* Nebenfarben: Lebendigkeit */
  --pink: #d6248a;
  --yellow: #f6b91a;

  /* Akzentfarben */
  --green: #3da35d;
  --orange: #ef7a2b;

  /* Neutrale Basis */
  --paper: #faf9f6;      /* Warmweiß */
  --white: #ffffff;
  --ink: #2b2b33;        /* Dunkelgrau statt Schwarz */
  --muted: #5d5d6b;
  --line: #e7e4dd;

  --maxw: 1140px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(31, 60, 136, 0.07);
  --shadow: 0 14px 40px rgba(31, 60, 136, 0.12);
  --shadow-lg: 0 24px 60px rgba(31, 60, 136, 0.16);

  --ff-head: "Poppins", "Trebuchet MS", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset / Basis ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--blue);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.1em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.narrow { max-width: 760px; }

/* ---------- Hilfsklassen ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
}

.lead { font-size: 1.18rem; color: var(--muted); }

.section { padding: clamp(56px, 8vw, 104px) 0; position: relative; }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.section--tint { background: var(--blue-050); }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, color 0.18s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--blue-600); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--blue); border-color: var(--blue-100); }
.btn--ghost:hover { border-color: var(--blue); background: var(--blue-050); }
.btn--white { background: #fff; color: var(--blue); }
.btn--white:hover { box-shadow: var(--shadow); }
.btn--light { background: rgba(255,255,255,0.16); color:#fff; border-color: rgba(255,255,255,0.5);}
.btn--light:hover { background: rgba(255,255,255,0.26); }

.btn-arrow { transition: transform 0.18s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.brand-name {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--blue);
  line-height: 1;
}
.brand-name small {
  display: block;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.brand:hover { text-decoration: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: block;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { background: var(--blue-050); color: var(--blue); text-decoration: none; }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after {
  content: "";
  display: block;
  height: 3px;
  width: 22px;
  border-radius: 3px;
  background: var(--yellow);
  margin: 4px auto 0;
}
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 22px;
  margin-inline: auto;
  background: var(--blue);
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(120deg, #16306e 0%, var(--blue) 55%, #2a4ea0 100%);
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 38%;
  opacity: 0.34;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,48,110,0.25) 0%, rgba(22,48,110,0.6) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(70px, 12vw, 132px) 0 clamp(80px, 12vw, 140px);
  max-width: 760px;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero .hero-claim { color: #fff; }
.hero p.lead { color: rgba(255,255,255,0.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); }

/* Dekorative Punkte/Sterne im Hero */
.hero-deco {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(1px);
}

/* ---------- "Werte" Karten ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value-ico {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
}
.value-ico svg { width: 32px; height: 32px; }
.ico-blue { background: var(--blue-050); color: var(--blue); }
.ico-pink { background: #fbe3f0; color: var(--pink); }
.ico-green { background: #e2f3e7; color: var(--green); }
.ico-orange { background: #fdeadb; color: var(--orange); }
.ico-yellow { background: #fdf3d6; color: #b9870a; }
.value-card h3 { color: var(--ink); }
.value-card p { margin-bottom: 0; color: var(--muted); }

/* ---------- Angebots-Kacheln (farbcodiert) ---------- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.offer-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--c, var(--blue));
}
.offer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.offer-tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c, var(--blue));
  background: color-mix(in srgb, var(--c, var(--blue)) 12%, white);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.offer-card h3 { color: var(--ink); margin-bottom: 8px; }
.offer-card p { color: var(--muted); margin-bottom: 0; }

/* ---------- Bild + Text Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.media-frame { position: relative; }
.media-frame::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: var(--radius-lg);
  background: var(--c, var(--yellow));
  opacity: 0.22;
  z-index: -1;
}

/* ---------- Zitat ---------- */
.quote {
  position: relative;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  overflow: hidden;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: -20px;
  left: 24px;
  font-family: Georgia, serif;
  font-size: 9rem;
  color: rgba(255,255,255,0.16);
  line-height: 1;
}
.quote blockquote {
  margin: 0;
  position: relative;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.4;
}
.quote cite { display: block; margin-top: 18px; font-style: normal; font-weight: 500; color: rgba(255,255,255,0.8); font-family: var(--ff-body); font-size: 1rem; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-bottom: 5px solid var(--c, var(--blue));
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-body { padding: 22px 24px 26px; }
.team-body h3 { color: var(--ink); margin-bottom: 2px; }
.team-role {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c, var(--blue));
  margin-bottom: 12px;
}
.team-body p { color: var(--muted); font-size: 0.98rem; margin-bottom: 0; }
.team-tags { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; }
.team-tags li {
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--ff-head);
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 11px;
}

/* ---------- Großer Team-Steckbrief (Team-Seite) ---------- */
.member {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  margin-bottom: 30px;
}
.member.reverse { grid-template-columns: 1fr 300px; }
.member.reverse .member-photo { order: 2; }
.member-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border-bottom: 6px solid var(--c, var(--blue));
}
.member-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.member h3 { color: var(--ink); margin-bottom: 2px; }
.member .member-role { font-family: var(--ff-head); font-weight: 600; color: var(--c, var(--blue)); margin-bottom: 16px; }
.member dl { margin: 0; }
.member dt {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c, var(--blue));
  margin-top: 16px;
}
.member dd { margin: 3px 0 0; color: var(--ink); }
.member dd.muted { color: var(--muted); }

/* ---------- Statistik / Fakten ---------- */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.fact { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 26px 16px; box-shadow: var(--shadow-sm); }
.fact .num { font-family: var(--ff-head); font-weight: 700; font-size: 2.1rem; color: var(--blue); line-height: 1; }
.fact .lbl { font-size: 0.92rem; color: var(--muted); margin-top: 8px; }

/* ---------- Säulen / Stern ---------- */
.pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.pillar { text-align: center; }
.pillar .p-ico {
  width: 72px; height: 72px; border-radius: 20px;
  display: grid; place-items: center; margin: 0 auto 14px;
}
.pillar .p-ico svg { width: 34px; height: 34px; }
.pillar h3 { font-size: 1.08rem; color: var(--ink); margin-bottom: 6px; }
.pillar p { font-size: 0.92rem; color: var(--muted); margin: 0; }

/* ---------- Themenblöcke (Chips) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--c, var(--blue));
  border-radius: 12px;
  padding: 12px 18px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

/* ---------- Institutionen-Band ---------- */
.band {
  background: linear-gradient(135deg, #16306e, var(--blue) 60%, #28489a);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 60px);
  position: relative;
  overflow: hidden;
}
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,0.9); }
.band .check-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.band .check-list li { position: relative; padding-left: 34px; }
.band .check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--yellow) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f3c88' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/13px no-repeat;
}

/* ---------- Zwei-Wege Auswahl (Eltern vs. Institution) ---------- */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.path-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 38px 34px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.path-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.path-card .path-top { height: 8px; position: absolute; top: 0; left: 0; right: 0; background: var(--c); }
.path-ico {
  width: 70px; height: 70px; border-radius: 20px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: color-mix(in srgb, var(--c) 14%, white);
  color: var(--c);
}
.path-ico svg { width: 36px; height: 36px; }
.path-card h3 { color: var(--ink); font-size: 1.5rem; }
.path-card .path-sub { font-family: var(--ff-head); font-weight: 600; color: var(--c); margin-bottom: 14px; }
.path-card ul { margin: 0 0 24px; padding-left: 0; list-style: none; }
.path-card ul li { position: relative; padding-left: 26px; margin-bottom: 9px; color: var(--muted); }
.path-card ul li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--c);
}

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 32px;
}
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ci {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-050); color: var(--blue);
  display: grid; place-items: center;
}
.contact-list .ci svg { width: 22px; height: 22px; }
.contact-list .ct strong { display:block; font-family: var(--ff-head); color: var(--ink); }
.contact-list .ct span { color: var(--muted); font-size: 0.96rem; }

/* Formular */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display:block; font-family: var(--ff-head); font-weight:600; font-size:0.9rem; margin-bottom:6px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px var(--blue-100);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--muted); }
.checkbox input { width: auto; margin-top: 4px; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 10px; }

/* ---------- CTA Abschnitt ---------- */
.cta {
  background: linear-gradient(135deg, var(--pink), #b81f76);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 66px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,0.92); max-width: 560px; margin-inline: auto; }
.cta .hero-actions { justify-content: center; }

/* ---------- Info-Box / Hinweis ---------- */
.note-box {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow);
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 0.95rem;
  color: var(--muted);
}
.note-box strong { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
  background: #16223f;
  color: rgba(255,255,255,0.78);
  padding: 64px 0 28px;
  font-size: 0.95rem;
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; font-family: var(--ff-head); }
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: #fff; }
.footer-brand img { height: 56px; margin-bottom: 14px; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.4)); }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 9px; }
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* ---------- Page-Header (Unterseiten) ---------- */
.page-head {
  background: var(--blue-050);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 7vw, 84px) 0 clamp(40px, 6vw, 64px);
  position: relative;
  overflow: hidden;
}
.page-head .eyebrow { color: var(--c, var(--blue-600)); }
.page-head h1 { margin-bottom: 12px; }
.page-head p { max-width: 640px; color: var(--muted); font-size: 1.12rem; margin: 0; }
.breadcrumb { font-size: 0.86rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--muted); }

/* Dekoblob für Page-Header */
.blob {
  position: absolute;
  border-radius: 46% 54% 60% 40% / 50% 42% 58% 50%;
  opacity: 0.16;
  z-index: 0;
}

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px 18px 22px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }
  .nav-links.open { max-height: 460px; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; border-radius: 10px; }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { background: var(--blue-050); }
  .nav-cta { margin: 6px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 780px) {
  .value-grid, .offer-grid, .team-grid { grid-template-columns: 1fr; }
  .split, .contact-grid, .paths { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .media-frame::before { inset: 12px -12px -12px 12px; }
  .member, .member.reverse { grid-template-columns: 1fr; gap: 24px; }
  .member.reverse .member-photo { order: 0; }
  .member-photo { max-width: 320px; }
  .pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .facts { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
