/* BMSBASE — the bms Lifestyle — Entwurf, 2026-07-05 */

:root {
  --red: #C81C34;
  --red-2: #9D2E40;
  --red-3: #72353E;
  --gray: #2E3236;
  --gray-2: #23262a;
  --bg-light: #f6f5f4;
  --white: #ffffff;
  --text: #1c1e20;
  --text-muted: #5b5f63;
  --border: rgba(46,50,54,0.12);
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 4px;
  --maxw: 1180px;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section--alt { background: var(--bg-light); }
.section--dark {
  background: var(--gray);
  color: #eceded;
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .kicker { color: #e78e98; }
.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 20px;
}
.section p.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 720px;
}
.section--dark p.lead { color: #c7cacc; }

/* ---------- Draft banner ---------- */
.draft-banner {
  background: #1c1e20;
  color: #f4d3d8;
  font-size: 13px;
  text-align: center;
  padding: 10px 16px;
  border-bottom: 2px solid var(--red);
  position: relative;
  z-index: 60;
}
.draft-banner strong { color: var(--white); }
.draft-banner a { text-decoration: underline; color: #ffb9c1; }

/* ---------- TODO / placeholder markers ---------- */
.todo {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red);
  background: rgba(200,28,52,0.08);
  border: 1px dashed var(--red);
  border-radius: 3px;
  padding: 1px 8px;
  margin-left: 6px;
  white-space: normal;
}
.placeholder-box {
  border: 1.5px dashed var(--red-2);
  background: rgba(200,28,52,0.05);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 14.5px;
  color: var(--text);
  margin: 24px 0;
}
.placeholder-box strong { color: var(--red); }
.section--dark .placeholder-box {
  background: rgba(255,255,255,0.05);
  border-color: #e78e98;
  color: #eceded;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 38px; width: auto; }
.brand-text {
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.15;
}
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: none;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a { padding: 8px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover { border-color: var(--red); color: var(--red); }
.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.nav-cta:hover { background: var(--red-2); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: transform 0.15s, background 0.15s, color 0.15s;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-2); transform: translateY(-2px); }
.btn--outline {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn--outline:hover { background: rgba(255,255,255,0.1); }
.section:not(.section--dark) .btn--outline {
  border-color: var(--gray);
  color: var(--gray);
}
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, #23262a 0%, var(--gray) 55%, #3a3f44 100%);
  color: #fff;
  padding: 150px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -100px;
  width: 560px;
  height: 560px;
  background: url('../img/triad-graphic.png') center/contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}
.hero-inner { max-width: 720px; position: relative; z-index: 2; }
.hero .kicker { color: #ff8a97; }
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 22px;
}
.hero h1 span { color: var(--red); }
.hero p.lead { color: #d7d9da; font-size: 19px; max-width: 640px; }
.hero .todo { background: rgba(255,255,255,0.08); }

/* ---------- Pillars grid ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.pillar-card:hover { transform: translateY(-6px); }
.pillar-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-card h3 { font-size: 21px; }
.pillar-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }
.pillar-link { font-weight: 700; font-size: 13.5px; color: var(--red); text-transform: uppercase; letter-spacing: 0.04em; }
.pillar-link:hover { text-decoration: underline; }

/* ---------- Two column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.two-col.reverse .col-media { order: 2; }
.col-media img, .img-placeholder { border-radius: var(--radius); }
.img-placeholder {
  background: repeating-linear-gradient(135deg, #e3e2e0, #e3e2e0 12px, #ececea 12px, #ececea 24px);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
  font-size: 13px;
}
.section--dark .img-placeholder {
  background: repeating-linear-gradient(135deg, #3a3f44, #3a3f44 12px, #34383c 12px, #34383c 24px);
  border-color: rgba(255,255,255,0.12);
  color: #b8bbbd;
}
.feature-list { margin-top: 24px; }
.feature-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.section--dark .feature-list li { border-color: rgba(255,255,255,0.1); }
.feature-list li::before {
  content: "";
  min-width: 8px;
  height: 8px;
  margin-top: 8px;
  background: var(--red);
  border-radius: 50%;
}

/* ---------- Quote ---------- */
.quote-block {
  border-left: 3px solid var(--red);
  padding: 6px 0 6px 24px;
  margin: 28px 0;
  font-size: 17px;
  font-style: italic;
  color: var(--text);
}
.source-note { font-size: 12.5px; color: var(--text-muted); margin-top: 12px; }
.section--dark .source-note { color: #b8bbbd; }

/* ---------- Xperience grid ---------- */
.xp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.xp-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}
.xp-tile .xp-icon {
  width: 40px; height: 40px; margin: 0 auto 14px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-family: var(--font-head);
}
.xp-tile h4 { font-size: 14.5px; color: #fff; margin-bottom: 6px; text-transform: none; letter-spacing: 0; }
.xp-tile p { font-size: 12.5px; color: #b8bbbd; margin: 0; }

/* ---------- Consulting sub-cards ---------- */
.sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.sub-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--white);
}
.sub-card h3 { font-size: 18px; color: var(--red); }
.sub-card p { font-size: 14.5px; color: var(--text-muted); }

/* ---------- Founder ---------- */
.founder-card {
  display: flex;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-top: 40px;
}
.founder-card .img-placeholder { width: 160px; aspect-ratio: 1; flex-shrink: 0; border-radius: 50%; }
.founder-card h3 { font-size: 20px; margin-bottom: 4px; }
.founder-card .role { color: var(--red); font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; display:block; }
.values-row { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.value-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.value-item .pillar-icon { width: 28px; height: 28px; margin: 0; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.team-card { text-align: center; }
.team-card .img-placeholder { aspect-ratio: 1; border-radius: 50%; margin: 0 auto 14px; width: 120px; }
.team-card h4 { font-size: 15px; margin-bottom: 2px; text-transform: none; letter-spacing: 0; }
.team-card p { font-size: 12.5px; color: var(--text-muted); margin: 0; }

/* ---------- Transformations ---------- */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.transform-card .img-placeholder { aspect-ratio: 3/4; }
.transform-card p { font-size: 12.5px; text-align: center; color: var(--text-muted); margin-top: 8px; }

/* ---------- Ecosystem ---------- */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.eco-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--bg-light);
}
.eco-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.eco-badge--noxqs { color: var(--red); }
.eco-badge--fiteria { color: var(--gray); }
.eco-card p { color: var(--text-muted); font-size: 14.5px; }
.eco-card a.pillar-link { display: inline-block; margin-top: 6px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-list { margin-top: 28px; }
.contact-list li { font-size: 15.5px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-list a:hover { color: var(--red); }

/* ---------- Review panel ---------- */
.review-panel {
  background: #fff8f2;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}
.review-panel h2 { font-size: 24px; }
.review-list { counter-reset: item; margin-top: 24px; }
.review-list li {
  counter-increment: item;
  position: relative;
  padding: 12px 0 12px 40px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.review-list li::before {
  content: counter(item);
  position: absolute;
  left: 0; top: 10px;
  width: 24px; height: 24px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.review-list a { color: var(--red); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: #1c1e20;
  color: #b8bbbd;
  padding: 56px 0 28px;
  font-size: 13.5px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 30px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a:hover { color: #fff; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 12.5px;
  color: #797d7f;
}

/* ---------- Pull-quote strip ---------- */
.pull-quote-strip {
  background: var(--gray);
  color: #fff;
  padding: 16px 0;
  text-align: center;
}
.pull-quote-strip p {
  margin: 0;
  font-family: var(--font-head);
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pull-quote-strip span { color: #ff8a97; }

/* ---------- Method / concept cards (Die BMS-Methode, Gründer-Story) ---------- */
.method-grid, .founder-story {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.method-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  background: var(--white);
}
.method-num {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.method-card h3 { font-size: 17px; margin-bottom: 8px; }
.method-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ---------- Credo block ---------- */
.credo-block {
  border-left: 3px solid var(--red);
  background: rgba(200,28,52,0.04);
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.credo-block h3 { color: var(--red); font-size: 18px; margin-bottom: 8px; }
.credo-block p { margin: 0; font-size: 15px; }
.section--dark .credo-block { background: rgba(255,255,255,0.05); }
.section--dark .method-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.section--dark .method-card p { color: #c7cacc; }

/* ---------- Zitate-Grid (Sprüche des Mimoversums) ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  margin-top: 32px;
}
.quote-grid .quote-block { margin: 14px 0; }

/* ---------- Bewusstseins-Stufen ---------- */
.stage-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 28px 0 8px;
}
.stage-item { text-align: center; }
.stage-dot {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0 auto 14px;
}
.stage-item h4 { font-size: 14px; margin-bottom: 6px; text-transform: none; letter-spacing: 0; }
.stage-item p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ---------- Zwei Schweinehunde ---------- */
.schweinehund-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

/* ---------- Erfolgs-Pyramide ---------- */
.pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
}
.pyramid-tier {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 22px 32px;
}
.pyramid-tier--1 { width: 100%; }
.pyramid-tier--2 { width: 78%; }
.pyramid-tier--3 { width: 56%; }
.pyramid-pct {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--red);
  min-width: 76px;
  flex-shrink: 0;
}
.pyramid-tier h4 { color: #fff; font-size: 16px; margin-bottom: 6px; }
.pyramid-tier p { color: #c7cacc; font-size: 13.5px; margin: 0; }

/* ---------- Expertenforum Z-Cards ---------- */
.zcard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.zcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
}
.zcard-domain {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.zcard h4 { font-size: 15px; margin-bottom: 6px; color: var(--text-muted); font-weight: 600; text-transform: none; letter-spacing: 0; }
.zcard p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ---------- Membership tiers ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}
.tier-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.tier-card--top {
  border: 1.5px solid var(--red);
  background: linear-gradient(160deg, #fff 0%, rgba(200,28,52,0.04) 100%);
  box-shadow: var(--shadow);
}
.tier-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.tier-card h3 { font-size: 19px; margin-bottom: 8px; }
.tier-card p { font-size: 14.5px; color: var(--text-muted); flex-grow: 1; }

/* ---------- Customer journeys ---------- */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.journey-card h3 { color: var(--red); }

/* ---------- No Excuses color spectrum ---------- */
.color-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.color-swatch {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  background: var(--white);
}
.color-chip {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 1px solid rgba(0,0,0,0.15);
}
.color-swatch h4 { font-size: 13px; margin-bottom: 6px; text-transform: none; letter-spacing: 0; }
.color-swatch p { font-size: 12px; color: var(--text-muted); margin: 0; }
.color-swatch--earned { border: 1.5px solid var(--red); background: rgba(200,28,52,0.04); }

/* ---------- Stat row (No-Excuses-Anzug 300-Stück split) ---------- */
.stat-row { display: flex; gap: 28px; margin-top: 32px; flex-wrap: wrap; }
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 34px;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}
.stat-item p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ---------- Fünf Säulen (life pillars, center = health) ---------- */
.pillar5-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 44px 0 8px;
}
.pillar5-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
}
.pillar5-item--core {
  border-color: var(--red);
  background: rgba(200,28,52,0.14);
}
.pillar5-num {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
}
.pillar5-item h4 { font-size: 14px; color: #fff; margin-bottom: 6px; text-transform: none; letter-spacing: 0; }
.pillar5-item p { font-size: 12.5px; color: #b8bbbd; margin: 0; }

/* ---------- Mentoren / wissenschaftliche Paten ---------- */
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
  margin: 40px 0 8px;
}
.mentor-item { border-top: 1px solid var(--border); padding-top: 14px; }
.mentor-item h4 { font-size: 14.5px; margin-bottom: 4px; text-transform: none; letter-spacing: 0; }
.mentor-item p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .pillars-grid, .sub-grid { grid-template-columns: 1fr; }
  .xp-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid, .transform-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col, .contact-grid { grid-template-columns: 1fr; }
  .two-col.reverse .col-media { order: 0; }
  .founder-card { flex-direction: column; text-align: center; }
  .method-grid, .founder-story, .schweinehund-grid, .zcard-grid { grid-template-columns: repeat(2, 1fr); }
  .stage-track { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .pyramid-tier--1, .pyramid-tier--2, .pyramid-tier--3 { width: 100%; }
  .tier-grid { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr; }
  .color-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-row { flex-direction: column; }
  .pillar5-grid { grid-template-columns: repeat(3, 1fr); }
  .mentor-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 80px; }
  .xp-grid, .team-grid, .transform-grid { grid-template-columns: 1fr 1fr; }
  .eco-grid { grid-template-columns: 1fr; }
  .method-grid, .founder-story, .schweinehund-grid, .zcard-grid, .stage-track { grid-template-columns: 1fr; }
  .pyramid-tier { flex-direction: column; text-align: center; gap: 8px; }
  .pull-quote-strip p { font-size: 12px; }
  .color-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar5-grid { grid-template-columns: 1fr; }
  .mentor-grid { grid-template-columns: 1fr; }
}
