/* Transformakers — Advisory for Social Impact
   Editoriales Manifest-Design aus der Logo-Farbwelt */
:root {
  --navy: #131730;
  --navy-soft: #1c2142;
  --bg: #fcfcfe;
  --bg-lav: #f1f1f8;
  --ink: #1a1d33;
  --ink-soft: #565c78;
  --blue: #2b4a9c;
  --peri: #7c7ab5;
  --teal: #5fc4ce;
  --lav: #b7b0d8;
  --border: #e4e4ef;
  --max: 1140px;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.6rem, 6.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 0.4em; }
h3 { font-size: 1.3rem; letter-spacing: -0.015em; }

.lead { color: var(--ink-soft); font-size: 1.16rem; max-width: 40em; }

section { padding: 110px 0; position: relative; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 0.72rem; font-weight: 700;
  color: var(--peri); margin-bottom: 20px;
}
.kicker::before {
  content: ""; width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--peri));
}

/* Scroll-Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(19, 23, 48, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; max-width: var(--max); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 34px; width: auto; }
.logo span { color: #fff; font-weight: 700; font-size: 1.18rem; letter-spacing: -0.02em; }
.logo .logo-sub { color: var(--lav); font-weight: 500; font-size: 0.95rem; white-space: nowrap; }
@media (max-width: 1000px) { .logo .logo-sub { display: none; } }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255, 255, 255, 0.72); text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
}
.nav-links a:hover { color: #fff; }
.nav-links .nav-cta { color: var(--teal); }
.nav-links .nav-cta:hover { color: #fff; }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(1300px 800px at 82% -12%, var(--navy-soft), var(--navy) 62%);
  color: #fff;
  padding: 160px 0 140px;
  overflow: hidden;
}
.hero h1 { max-width: 13.5em; margin-bottom: 30px; }
.hero h1 .grad {
  background: linear-gradient(100deg, var(--teal) 0%, var(--lav) 55%, var(--peri) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { color: rgba(255, 255, 255, 0.78); margin-bottom: 48px; }
.hero .wrap { position: relative; z-index: 2; }

.cta-row { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 15px 34px; border-radius: 4px; font-size: 1rem;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #fff; color: var(--navy); }
.btn-primary:hover { background: var(--teal); }
.arrow-link {
  color: #fff; text-decoration: none; font-weight: 600; font-size: 1rem;
  border-bottom: 1.5px solid var(--teal); padding-bottom: 3px;
}
.arrow-link::after { content: " →"; color: var(--teal); }
.arrow-link:hover { color: var(--teal); }

/* ---------- Themenfelder (Manifest-Zeilen) ---------- */
.rows { margin-top: 30px; border-top: 1px solid var(--border); }
.row {
  display: grid; grid-template-columns: 110px 1fr 1.15fr; gap: 34px;
  padding: 46px 0; border-bottom: 1px solid var(--border);
  align-items: start; position: relative;
  transition: background 0.2s ease;
}
.row:hover { background: linear-gradient(90deg, transparent, rgba(124, 122, 181, 0.06), transparent); }
.row .num {
  font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(120deg, var(--teal), var(--peri));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-top: 4px;
}
.row h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.row p { color: var(--ink-soft); font-size: 1rem; padding-top: 6px; }
@media (max-width: 860px) {
  .row { grid-template-columns: 64px 1fr; }
  .row p { grid-column: 2; padding-top: 0; }
  .row .num { font-size: 1.7rem; }
}

/* ---------- Arbeitsweise (dunkles Band) ---------- */
.method-band {
  background: linear-gradient(140deg, var(--navy) 40%, #222950 100%);
  color: #fff; overflow: hidden;
}
.method-band .kicker { color: var(--teal); }
.method-band .lead { color: rgba(255, 255, 255, 0.75); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; margin-top: 64px;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { border-top: 1px solid rgba(255, 255, 255, 0.22); padding-top: 20px; position: relative; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.14em; color: var(--teal);
}
.step h3 { margin: 10px 0 8px; font-size: 1.08rem; }
.step p { color: rgba(255, 255, 255, 0.72); font-size: 0.94rem; }

/* ---------- Über ---------- */
.about { background: var(--bg-lav); overflow: hidden; }
.person { display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start; margin-top: 56px; }
@media (max-width: 860px) { .person { grid-template-columns: 1fr; } }
.portrait {
  aspect-ratio: 4/5; max-width: 320px; border-radius: 6px;
  background: linear-gradient(150deg, #e6e4f2, #d5ebee);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: 0.85rem; overflow: hidden;
  box-shadow: 0 28px 60px rgba(43, 74, 156, 0.16);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.credit { font-size: 0.75rem; color: var(--ink-soft); margin-top: 10px; }
.person h3 { font-size: 1.7rem; margin-bottom: 4px; }
.person .role {
  color: var(--blue); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 22px;
}
.person p { color: var(--ink-soft); margin-bottom: 14px; }
.person p strong { color: var(--ink); }

/* ---------- Kontakt ---------- */
.contact { overflow: hidden; padding: 130px 0; }
.contact .wrap { position: relative; z-index: 2; }
.contact h2 { max-width: 14em; }
.contact .lead { margin-bottom: 48px; }
.contact .email {
  font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em;
  color: var(--blue); text-decoration: none;
  border-bottom: 3px solid var(--teal);
}
.contact .email:hover { color: var(--peri); }

/* ---------- Footer ---------- */
footer { background: var(--navy); color: rgba(255, 255, 255, 0.65); padding: 44px 0; }
.foot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
.foot a { color: rgba(255, 255, 255, 0.65); font-size: 0.85rem; text-decoration: none; }
.foot span { font-size: 0.85rem; }
.foot a:hover { color: #fff; }
.foot nav { display: flex; gap: 24px; }
.foot .foot-logo { display: flex; align-items: center; gap: 10px; }
.foot .foot-logo img { height: 26px; }

/* ---------- Unterseiten (Impressum etc.) ---------- */
.legal { padding: 80px 28px; max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: 2rem; margin-bottom: 1em; }
.legal h2 { font-size: 1.15rem; margin-top: 1.8em; }
.legal p, .legal li { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0.8em; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  section { padding: 76px 0; }
  .hero { padding: 104px 0 88px; }
}
