/* ==========================================================================
   Impactalyst — styles.css
   Direction C "Ego ablegen" · bold · statement-typography
   Tokens & rules: see DESIGN.md
   ========================================================================== */

:root{
  /* color */
  --color-bg:#23292F;
  --color-surface:#2B3340;
  --color-surface-2:#333C49;
  --color-border:#3F4855;
  --color-text:#F4F1EA;
  --color-text-muted:#9AA2AD;
  --color-accent:#D2A954;
  --color-accent-hover:#E0BC6E;
  --color-focus:#F4F1EA;
  --color-invert-bg:#F4F1EA;
  --color-invert-surface:#ECE7DB;
  --color-invert-text:#23292F;
  --color-invert-muted:#5C6470;
  --color-invert-border:#D8D1C2;
  /* Gold auf Creme: #A87F30 erreichte nur 3.24:1 und fiel durch WCAG AA.
     #7E5C1C liegt bei 5.4:1. Der helle Gold-Ton bleibt der dunklen Seite
     vorbehalten, wo er 6.3:1 schafft. */
  --color-accent-on-invert:#7E5C1C;
  --color-accent-on-invert-hover:#5F4614;
  /* Aufgehellter Muted-Ton für Flächen, auf denen #9AA2AD unter 4.5:1 rutscht
     (z. B. --color-surface-2 im Beitritts-Band: 4.32:1). */
  --color-text-muted-hi:#ADB4BE;

  /* type */
  --font-display:'Bricolage Grotesque',-apple-system,BlinkMacSystemFont,sans-serif;
  --font-body:'Geist',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --font-mono:'JetBrains Mono',ui-monospace,'SFMono-Regular',monospace;

  /* spacing scale (8pt) */
  --space-1:4px; --space-2:8px; --space-3:12px; --space-4:16px;
  --space-6:24px; --space-8:32px; --space-12:48px; --space-16:64px;
  --space-24:96px; --space-32:128px; --space-40:160px;

  --container:1180px;
  --radius:2px;
}

/* ---- reset ---- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}

body{
  background:var(--color-bg);
  color:var(--color-text);
  font-family:var(--font-body);
  font-size:1.0625rem;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  position:relative;
  overflow-x:hidden;
}

/* film grain over the whole dark canvas */
body::before{
  content:"";position:fixed;inset:0;pointer-events:none;z-index:0;opacity:.05;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
::selection{background:var(--color-accent);color:#23292F}

/* ---- layout helpers ---- */
.container{
  width:100%;max-width:var(--container);margin-inline:auto;
  padding-inline:clamp(1.25rem,5vw,4rem);
  position:relative;z-index:2;
}
.section{padding-block:clamp(4rem,10vw,6rem)}
.eyebrow{
  font-family:var(--font-mono);font-size:.76rem;font-weight:500;
  letter-spacing:.14em;text-transform:uppercase;color:var(--color-accent);
  display:inline-flex;align-items:center;gap:.6rem;
}
.eyebrow::before{content:"//";opacity:.55}

/* skip link */
.skip{position:absolute;left:-9999px;top:0;z-index:100;background:var(--color-accent);
  color:#23292F;padding:.7rem 1.1rem;border-radius:var(--radius);font-weight:500}
.skip:focus{left:1rem;top:1rem}

/* ---- header / nav ---- */
.site-header{
  position:sticky;top:0;z-index:50;
  transition:background-color .25s ease,border-color .25s ease,backdrop-filter .25s ease;
  border-bottom:1px solid transparent;
}
.site-header.scrolled{
  background:rgba(35,41,47,.82);backdrop-filter:blur(12px);
  border-bottom-color:var(--color-border);
}
.nav{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;align-items:center;gap:.65rem;font-family:var(--font-display)}
.brand__icon{width:28px;height:28px;color:var(--color-accent);flex:none}
.brand__word{font-size:1.1rem;letter-spacing:.12em;line-height:1}
.brand__word b{font-weight:800}
.brand__word span{font-weight:400;color:var(--color-text)}
.nav__links{display:flex;align-items:center;gap:2rem}
.nav__links a{
  font-family:var(--font-mono);font-size:.82rem;letter-spacing:.03em;
  color:var(--color-text-muted);transition:color .2s ease;
}
.nav__links a:not(.btn):hover,.nav__links a:not(.btn):focus-visible{color:var(--color-accent)}
.nav__links a:focus-visible{outline:2px solid var(--color-focus);outline-offset:4px;border-radius:2px}
.nav__links a.nav__cta{color:#23292F}
.nav__links a.nav__cta:hover{color:#23292F}
.nav__cta{margin-left:.5rem}
.nav__toggle{display:none;background:none;border:0;cursor:pointer;color:var(--color-text);
  width:44px;height:44px;align-items:center;justify-content:center}
.nav__toggle svg{width:26px;height:26px}

/* ---- buttons ---- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--font-body);font-weight:500;font-size:1rem;line-height:1;
  padding:1rem 2.1rem;border-radius:var(--radius);border:1px solid transparent;
  cursor:pointer;text-align:center;
  transition:transform 150ms ease-out,background-color 200ms ease-out,border-color 200ms ease-out,color 200ms ease-out;
}
.btn:focus-visible{outline:2px solid var(--color-focus);outline-offset:3px}
.btn--primary{background:var(--color-accent);color:#23292F}
.btn--primary:hover{background:var(--color-accent-hover);transform:translateY(-2px)}
.btn--secondary{background:transparent;color:var(--color-text);border-color:var(--color-border)}
.btn--secondary:hover{background:var(--color-surface-2);transform:translateY(-2px)}
.btn--ghost{font-family:var(--font-mono);font-size:.84rem;color:var(--color-text-muted);
  padding:.5rem 0;background:none}
.btn--ghost:hover{color:var(--color-text)}

/* ---- hero ---- */
.hero{position:relative;padding-block:clamp(3.5rem,9vw,7rem) clamp(4rem,9vw,7rem);overflow:hidden}
.hero__glow{
  position:absolute;top:34%;left:26%;width:62vw;height:62vw;max-width:760px;max-height:760px;
  transform:translate(-50%,-50%);pointer-events:none;z-index:0;
  background:radial-gradient(circle,rgba(210,169,84,.16),transparent 62%);
}
.hero__watermark{
  position:absolute;right:-7vw;top:6vh;width:46vw;max-width:600px;
  color:var(--color-accent);opacity:.07;z-index:0;pointer-events:none;
}
.hero__inner{position:relative;z-index:2;max-width:60ch}
.hero h1{
  font-family:var(--font-display);font-weight:800;
  font-size:clamp(3.25rem,11vw,8rem);line-height:.98;letter-spacing:-.04em;
  margin-top:1.8rem;
}
.hero h1 .light{color:var(--color-text)}
.strike{position:relative;display:inline-block;color:var(--color-text)}
.strike::after{
  content:"";position:absolute;left:-3%;right:-3%;top:53%;height:.085em;
  background:var(--color-accent);border-radius:3px;transform:rotate(-4deg);
  transform-origin:center;
}
.hero__lead{
  margin-top:1.8rem;max-width:46ch;color:var(--color-text-muted);
  font-size:clamp(1.05rem,1.6vw,1.28rem);line-height:1.65;
}
.hero__actions{display:flex;align-items:center;gap:1.8rem;flex-wrap:wrap;margin-top:2.6rem}

/* ---- manifest ---- */
.manifest{border-top:1px solid var(--color-border)}
.manifest__grid{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);
  gap:clamp(2rem,5vw,4.5rem);align-items:start}
.manifest__lead{font-family:var(--font-display);font-weight:700;
  font-size:clamp(1.6rem,3vw,2.4rem);line-height:1.12;letter-spacing:-.02em}
.manifest__body p{color:var(--color-text-muted);font-size:1.0625rem;line-height:1.75;max-width:60ch}
.manifest__body p + p{margin-top:1.1rem}
.pullquote{
  margin-top:2rem;padding-left:1.4rem;border-left:3px solid var(--color-accent);
  font-family:var(--font-display);font-weight:700;font-style:normal;
  font-size:clamp(1.25rem,2.2vw,1.7rem);line-height:1.25;color:var(--color-text);
}

/* ---- founder ---- */
.founder{background:var(--color-surface);border-top:1px solid var(--color-border);
  position:relative;z-index:2}
.founder__grid{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);
  gap:clamp(2rem,5vw,4.5rem);align-items:center}
.founder__photo{margin:0;max-width:380px;border:1px solid var(--color-border);
  border-radius:var(--radius);overflow:hidden;
  box-shadow:0 16px 40px -12px rgba(0,0,0,.45)}
.founder__photo img{display:block;width:100%;height:auto;aspect-ratio:3/4;object-fit:cover}
.founder__quote{margin-top:1.4rem;font-family:var(--font-display);font-weight:700;
  font-size:clamp(1.4rem,2.6vw,2.1rem);line-height:1.2;letter-spacing:-.02em;
  color:var(--color-text);padding-left:1.4rem;border-left:3px solid var(--color-accent)}
.founder__text{margin-top:1.4rem;color:var(--color-text-muted);max-width:50ch;line-height:1.7}
.founder__meta{margin-top:1.6rem;font-family:var(--font-display);font-weight:700;
  font-size:1.05rem;color:var(--color-text);line-height:1.5}
.founder__meta span{display:inline-block;font-family:var(--font-mono);font-weight:500;
  font-size:.78rem;letter-spacing:.04em;color:var(--color-text-muted);margin-top:.25rem}
.founder__cta{margin-top:1.8rem}

/* ---- invert block (the single light section) ---- */
.invert{background:var(--color-invert-bg);color:var(--color-invert-text);position:relative;z-index:2}
.invert .eyebrow{color:var(--color-accent-on-invert)}
.invert .eyebrow::before{opacity:.55}
.invert h2{font-family:var(--font-display);font-weight:800;letter-spacing:-.03em;
  font-size:clamp(2rem,5vw,3.2rem);line-height:1.04;margin-top:1.2rem;max-width:18ch}
.values{list-style:none;margin-top:3rem;display:grid;grid-template-columns:repeat(2,1fr);
  gap:0;border-top:1px solid var(--color-invert-border)}
.values li{padding:1.8rem 1.6rem 1.8rem 0;border-bottom:1px solid var(--color-invert-border)}
.values li:nth-child(odd){padding-left:0}
.values li:nth-child(even){padding-left:1.6rem;border-left:1px solid var(--color-invert-border)}
.values__num{font-family:var(--font-mono);font-size:.78rem;
  color:var(--color-accent-on-invert);letter-spacing:.1em}
.values__title{font-family:var(--font-display);font-weight:700;font-size:1.35rem;
  letter-spacing:-.01em;margin:.5rem 0 .4rem}
.values__desc{color:var(--color-invert-muted);font-size:.98rem;line-height:1.6;max-width:42ch}

/* ---- join / form ---- */
.join{position:relative;z-index:2;border-top:1px solid var(--color-border)}
.join__grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:clamp(2.5rem,6vw,5rem);align-items:start}
.join h2{font-family:var(--font-display);font-weight:800;letter-spacing:-.03em;
  font-size:clamp(2.2rem,6vw,3.6rem);line-height:1.0;margin-top:1.2rem}
.join__intro{margin-top:1.4rem;color:var(--color-text-muted);max-width:44ch;line-height:1.7}
.join__note-open{margin-top:1.6rem;font-family:var(--font-mono);font-size:.8rem;
  color:var(--color-accent);letter-spacing:.03em;display:flex;gap:.6rem;align-items:flex-start}
.join__note-open::before{content:"—";opacity:.7}

.form{background:var(--color-surface);border:1px solid var(--color-border);
  border-radius:var(--radius);padding:clamp(1.5rem,3vw,2.2rem);
  box-shadow:0 16px 40px -12px rgba(0,0,0,.45)}
.form__row{margin-bottom:1.1rem}
.form__row--split{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form label{display:block;font-family:var(--font-mono);font-size:.74rem;letter-spacing:.08em;
  text-transform:uppercase;color:var(--color-text-muted);margin-bottom:.5rem}
.form input,.form select,.form textarea{
  width:100%;font-family:var(--font-body);font-size:1rem;color:var(--color-text);
  background:var(--color-surface-2);border:1px solid var(--color-border);
  border-radius:var(--radius);padding:.85rem 1rem;transition:border-color .2s ease;
}
.form input::placeholder,.form textarea::placeholder{color:var(--color-text-muted);opacity:.7}
.form input:focus,.form select:focus,.form textarea:focus{
  outline:none;border-color:var(--color-accent)}
.form input:focus-visible,.form select:focus-visible,.form textarea:focus-visible{
  outline:2px solid var(--color-focus);outline-offset:2px}
.form textarea{resize:vertical;min-height:110px}
.form select{appearance:none;cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239AA2AD' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 1rem center;padding-right:2.4rem}
.form__submit{width:100%;margin-top:.4rem}
.form__note{margin-top:1rem;font-size:.82rem;color:var(--color-text-muted);line-height:1.55}
.form__note a{color:var(--color-accent);text-decoration:underline;text-underline-offset:2px}
.form__success{display:none;margin-top:1rem;padding:1rem 1.1rem;border-radius:var(--radius);
  background:rgba(210,169,84,.12);border:1px solid var(--color-accent);
  color:var(--color-text);font-size:.95rem;line-height:1.55}
.form__error{display:none;margin-top:1rem;font-size:.88rem;color:#E8A0A0}

/* ---- footer ---- */
.site-footer{background:var(--color-surface);border-top:1px solid var(--color-border);
  position:relative;z-index:2;padding-block:clamp(2.5rem,5vw,3.5rem)}
.footer__top{display:flex;justify-content:space-between;align-items:flex-start;gap:2rem;flex-wrap:wrap}
.footer__brand{display:flex;align-items:center;gap:.6rem;font-family:var(--font-display)}
.footer__brand .brand__icon{width:24px;height:24px}
.footer__tag{margin-top:1rem;color:var(--color-text-muted);font-size:.95rem;max-width:32ch}
.footer__links{display:flex;gap:1.6rem;flex-wrap:wrap;font-family:var(--font-mono);
  font-size:.82rem;color:var(--color-text-muted)}
.footer__links a:hover{color:var(--color-accent)}
.footer__bottom{margin-top:2.5rem;padding-top:1.5rem;border-top:1px solid var(--color-border);
  display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;
  font-size:.78rem;color:var(--color-text-muted)}
.footer__bottom .credits{font-family:var(--font-mono);letter-spacing:.02em}

/* ---- reveal animation (only when JS is active; no-JS keeps content visible) ---- */
.js .reveal{opacity:0;transform:translateY(18px);
  transition:opacity .6s ease-out,transform .6s ease-out}
.js .reveal.is-visible{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .js .reveal{opacity:1;transform:none;transition:none}
  .btn:hover,.btn--primary:hover,.btn--secondary:hover{transform:none}
  .entry__link:hover .entry__arrow,
  .entry__link:focus-visible .entry__arrow{transform:none}
}

/* ---- legal pages ---- */
.legal{padding-block:clamp(3rem,7vw,5rem);max-width:760px}
.legal h1{font-family:var(--font-display);font-weight:800;letter-spacing:-.03em;
  font-size:clamp(2rem,5vw,3rem);line-height:1.05;margin-bottom:.5rem}
.legal h2{font-family:var(--font-display);font-weight:700;font-size:1.4rem;
  letter-spacing:-.02em;margin-top:2.5rem;margin-bottom:.8rem}
.legal h3{font-size:1.05rem;font-weight:600;margin-top:1.4rem;margin-bottom:.4rem}
.legal p,.legal li{color:var(--color-text-muted);line-height:1.7;margin-bottom:.6rem}
.legal ul{padding-left:1.2rem;margin-bottom:.8rem}
.legal a{color:var(--color-accent);text-decoration:underline;text-underline-offset:2px}
.legal .back{font-family:var(--font-mono);font-size:.82rem;margin-bottom:2rem;display:inline-block}

/* ==========================================================================
   Unterseiten — Kopf, Prosa, Listen, Team, Beitritts-Band
   Listen sind bewusst editoriale Zeilen, KEINE Karten:
   DESIGN.md §4 ("Karten sind nicht das Leitmotiv") + CLAUDE.md §7 (Anti-Slop).
   ========================================================================== */

/* ---- Seitenkopf ---- */
.page-head{
  padding-block:clamp(3rem,8vw,5rem) clamp(2.5rem,6vw,4rem);
  border-bottom:1px solid var(--color-border);position:relative;z-index:2;
}
.page-head h1{
  font-family:var(--font-display);font-weight:800;
  font-size:clamp(2.3rem,6.5vw,4.4rem);line-height:1.03;letter-spacing:-.035em;
  margin-top:1.1rem;max-width:17ch;
}
.page-head__lead{
  margin-top:1.4rem;color:var(--color-text-muted);
  font-size:clamp(1.05rem,1.6vw,1.22rem);line-height:1.65;max-width:54ch;
}

/* ---- Abschnittsüberschrift auf Unterseiten ---- */
.section__title{
  font-family:var(--font-display);font-weight:700;letter-spacing:-.025em;
  font-size:clamp(1.6rem,3.4vw,2.4rem);line-height:1.1;margin-top:1rem;
}

/* ---- Fließtext ---- */
.prose-section{border-bottom:1px solid var(--color-border)}
.prose{max-width:62ch}
.prose p{color:var(--color-text-muted);font-size:1.0625rem;line-height:1.75}
.prose p + p{margin-top:1.1rem}
.prose h2{font-family:var(--font-display);font-weight:700;letter-spacing:-.025em;
  font-size:clamp(1.4rem,2.8vw,1.9rem);line-height:1.15;margin:2.4rem 0 .8rem}
.prose h3{font-family:var(--font-display);font-weight:700;font-size:1.2rem;
  letter-spacing:-.015em;margin:1.8rem 0 .5rem}
.prose ul,.prose ol{margin:1rem 0 1rem 1.2rem;color:var(--color-text-muted)}
.prose li + li{margin-top:.4rem}
.prose a{color:var(--color-accent);text-decoration:underline;text-underline-offset:3px}
.prose a:hover{color:var(--color-accent-hover)}
.prose strong{color:var(--color-text);font-weight:600}
.prose blockquote{
  margin:2rem 0;padding-left:1.4rem;border-left:3px solid var(--color-accent);
  font-family:var(--font-display);font-weight:700;
  font-size:clamp(1.25rem,2.2vw,1.7rem);line-height:1.25;color:var(--color-text);
}
.prose blockquote p{color:inherit;font-size:inherit;line-height:inherit}

/* ---- Listen-Sektionen ---- */
.list-section{border-bottom:1px solid var(--color-border);position:relative;z-index:2;
  padding-block:clamp(3rem,7vw,4.5rem)}
.list-section--muted{background:var(--color-surface)}
.list-section__head{
  display:flex;justify-content:space-between;align-items:flex-end;
  gap:1.5rem;flex-wrap:wrap;
}
.back-link{display:table;margin-bottom:2rem}
.back-link + .entry-list,
.back-link + .resource-list{margin-top:0}

/* ---- Listenzeile ---- */
.entry-list{list-style:none;margin-top:clamp(1.75rem,3.5vw,2.5rem);
  border-top:1px solid var(--color-border)}
.entry{border-bottom:1px solid var(--color-border)}
.entry__link{
  display:grid;grid-template-columns:7.5rem minmax(0,1fr) 1.75rem;
  align-items:start;gap:clamp(1rem,3vw,2.5rem);
  padding-block:clamp(1.3rem,3vw,1.9rem);cursor:pointer;
}
.entry__link:focus-visible{outline:2px solid var(--color-focus);outline-offset:4px;border-radius:2px}
.entry__meta{
  font-family:var(--font-mono);font-size:.78rem;letter-spacing:.08em;
  color:var(--color-text-muted);padding-top:.4rem;white-space:nowrap;
}
.entry__title{
  display:block;font-family:var(--font-display);font-weight:700;
  font-size:clamp(1.15rem,2.2vw,1.55rem);letter-spacing:-.02em;line-height:1.2;
  transition:color 200ms ease-out;
}
.entry__teaser{
  display:block;margin-top:.55rem;color:var(--color-text-muted);
  font-size:.98rem;line-height:1.6;max-width:58ch;
}
.entry__arrow{
  color:var(--color-text-muted);align-self:center;
  transition:transform 200ms ease-out,color 200ms ease-out;
}
.entry__arrow svg{width:1.4rem;height:1.4rem;display:block}
.entry__link:hover .entry__title,
.entry__link:focus-visible .entry__title{color:var(--color-accent)}
.entry__link:hover .entry__arrow,
.entry__link:focus-visible .entry__arrow{color:var(--color-accent);transform:translateX(4px)}
.entry-list--past .entry__title{font-size:clamp(1.05rem,1.8vw,1.25rem)}

/* ---- Ressourcen ---- */
.resource-list{list-style:none;margin-top:clamp(1.75rem,3.5vw,2.5rem);
  border-top:1px solid var(--color-border)}
.resource{border-bottom:1px solid var(--color-border)}
.resource__link{display:block;padding-block:clamp(1.2rem,2.6vw,1.6rem);cursor:pointer}
.resource__link:focus-visible{outline:2px solid var(--color-focus);outline-offset:4px;border-radius:2px}
.resource__type{
  display:inline-block;font-family:var(--font-mono);font-size:.72rem;
  letter-spacing:.12em;text-transform:uppercase;color:var(--color-accent);
}
.resource__title{
  display:block;margin-top:.45rem;font-family:var(--font-display);font-weight:700;
  font-size:clamp(1.1rem,2vw,1.35rem);letter-spacing:-.015em;line-height:1.25;
  transition:color 200ms ease-out;
}
.resource__teaser{display:block;margin-top:.45rem;color:var(--color-text-muted);
  font-size:.96rem;line-height:1.6;max-width:60ch}
.resource__source{display:block;margin-top:.5rem;font-family:var(--font-mono);
  font-size:.74rem;letter-spacing:.05em;color:var(--color-text-muted)}
.resource__link:hover .resource__title,
.resource__link:focus-visible .resource__title{color:var(--color-accent)}

/* ---- Team ---- */
.team{background:var(--color-surface);border-bottom:1px solid var(--color-border);
  position:relative;z-index:2}
.team__list{list-style:none;margin-top:3rem;display:grid;gap:clamp(2rem,5vw,3.5rem)}
.team__item{display:grid;grid-template-columns:minmax(0,180px) minmax(0,1fr);
  gap:clamp(1.5rem,4vw,2.5rem);align-items:start}
.team__photo{width:100%;aspect-ratio:1;object-fit:cover;border-radius:var(--radius);
  border:1px solid var(--color-border)}
.team__name{font-family:var(--font-display);font-weight:700;font-size:1.35rem;
  letter-spacing:-.02em;line-height:1.2}
.team__role{margin-top:.35rem;font-family:var(--font-mono);font-size:.76rem;
  letter-spacing:.06em;color:var(--color-accent)}
.team__bio{margin-top:1rem;max-width:56ch}
.team__bio p{color:var(--color-text-muted);line-height:1.7}
.team__bio p + p{margin-top:.8rem}
.team__link{display:inline-block;margin-top:1.1rem;font-family:var(--font-mono);
  font-size:.8rem;color:var(--color-text-muted);cursor:pointer;
  transition:color 200ms ease-out}
.team__link:hover,.team__link:focus-visible{color:var(--color-accent)}

/* ---- Wiederkehrender Beitritts-Band ---- */
.join-band{
  background:var(--color-surface-2);border-bottom:1px solid var(--color-border);
  padding-block:clamp(2.5rem,6vw,3.75rem);position:relative;z-index:2;
}
.join-band__inner{display:flex;justify-content:space-between;align-items:center;
  gap:clamp(1.5rem,4vw,3rem);flex-wrap:wrap}
.join-band h2{font-family:var(--font-display);font-weight:700;letter-spacing:-.025em;
  font-size:clamp(1.5rem,3vw,2.1rem);line-height:1.1}
.join-band p{margin-top:.7rem;color:var(--color-text-muted-hi);max-width:52ch;font-size:.98rem}
.join-band .btn{flex:none}

/* ==========================================================================
   Detailseiten — Fachartikel, Event-Recaps, Einzel-Event
   ========================================================================== */

/* ---- Kopf einer Detailseite ---- */
.article-head{
  padding-block:clamp(2.5rem,6vw,4rem) clamp(2.5rem,6vw,3.5rem);
  position:relative;z-index:2;
}
.article-head .eyebrow{margin-top:.5rem}
/* Kopf und folgende Sektion stapeln sonst zwei volle Section-Paddings. */
.article-head + .prose-section,
.article-head + .section{padding-top:clamp(1.5rem,3vw,2.25rem)}
.article-head h1{
  font-family:var(--font-display);font-weight:800;
  font-size:clamp(2.1rem,5.5vw,3.8rem);line-height:1.05;letter-spacing:-.035em;
  margin-top:1.1rem;max-width:20ch;
}
.article-head__teaser{
  margin-top:1.3rem;color:var(--color-text-muted);
  font-size:clamp(1.05rem,1.6vw,1.2rem);line-height:1.6;max-width:56ch;
}
.article-head__meta{
  margin-top:1.8rem;font-family:var(--font-mono);font-size:.78rem;
  letter-spacing:.06em;color:var(--color-text-muted);
}
.article-head__meta .sep{margin-inline:.6rem;opacity:.5}

/* ---- Artikeltext auf Creme ----
   Der eine Invert-Block dieser Seite (DESIGN.md §5, pro Seite gelesen).
   Langform-Lesen auf Navy wäre schlechter. */
.article-body{padding-block:clamp(3rem,7vw,4.5rem)}
.prose--invert p{color:#4A525E}
.prose--invert h2,.prose--invert h3,.prose--invert strong{color:var(--color-invert-text)}
.prose--invert ul,.prose--invert ol{color:#4A525E}
.prose--invert a{color:var(--color-accent-on-invert)}
.prose--invert a:hover{color:var(--color-accent-on-invert-hover)}
.prose--invert blockquote{color:var(--color-invert-text);
  border-left-color:var(--color-accent-on-invert)}
.prose--invert hr{border:0;border-top:1px solid var(--color-invert-border);margin:2.5rem 0}

.tag-list{
  list-style:none;display:flex;flex-wrap:wrap;gap:.5rem;
  margin-top:2.5rem;padding-top:1.5rem;border-top:1px solid var(--color-invert-border);
  max-width:62ch;
}
.tag{
  font-family:var(--font-mono);font-size:.72rem;letter-spacing:.08em;
  text-transform:uppercase;color:var(--color-invert-muted);
  border:1px solid var(--color-invert-border);border-radius:var(--radius);
  padding:.3rem .6rem;
}

/* ---- Event-Metadaten ---- */
.event-meta{
  margin-top:2rem;display:flex;flex-wrap:wrap;gap:clamp(1.5rem,4vw,3rem);
  border-top:1px solid var(--color-border);padding-top:1.5rem;
}
.event-meta__item dt{
  font-family:var(--font-mono);font-size:.72rem;letter-spacing:.12em;
  text-transform:uppercase;color:var(--color-accent);
}
.event-meta__item dd{
  margin-top:.4rem;font-family:var(--font-display);font-weight:700;
  font-size:1.15rem;letter-spacing:-.015em;color:var(--color-text);
}

/* ---- Anmeldung ---- */
.event-signup{border-top:1px solid var(--color-border);position:relative;z-index:2}
.event-signup__grid{
  display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:clamp(2.5rem,6vw,5rem);align-items:start;
}
.event-signup__note{margin-top:1.1rem;color:var(--color-text-muted);max-width:44ch;line-height:1.7}
.event-signup .btn{margin-top:1.8rem}
.event-signup__grid .btn{margin-top:0}
.label-optional{font-family:var(--font-mono);font-size:.7rem;letter-spacing:.06em;
  color:var(--color-text-muted);text-transform:uppercase}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:900px){
  .manifest__grid,.join__grid{grid-template-columns:1fr}
  .join__grid{gap:2.5rem}
  .founder__grid{grid-template-columns:1fr;gap:2rem}
  .founder__photo{max-width:320px;margin-inline:auto}
}
@media (max-width:768px){
  /* Touch-Targets ≥ 44px (CLAUDE.md §13). Betrifft eigenständige Links —
     Inline-Links im Fließtext sind davon laut WCAG 2.2 ausgenommen. */
  .brand{padding-block:8px}
  .btn--ghost{min-height:44px}
  .team__link{min-height:44px;display:inline-flex;align-items:center}
  .back-link{padding-block:.6rem}

  .entry__link{grid-template-columns:minmax(0,1fr) 1.5rem;gap:.9rem}
  .entry__meta{grid-column:1 / -1;padding-top:0;margin-bottom:.35rem}
  .list-section__head{align-items:flex-start}
  .team__item{grid-template-columns:1fr}
  .team__photo{max-width:200px}
  .event-signup__grid{grid-template-columns:1fr;gap:2.5rem}
  .join-band__inner{align-items:flex-start}
  .join-band .btn{width:100%}
  .nav__links{
    position:fixed;inset:64px 0 auto 0;flex-direction:column;align-items:flex-start;
    gap:0;background:var(--color-surface);border-bottom:1px solid var(--color-border);
    padding:.5rem 0;transform:translateY(-130%);transition:transform .3s ease;
    box-shadow:0 16px 40px -12px rgba(0,0,0,.45);
  }
  .nav__links.open{transform:translateY(0)}
  .nav__links a{width:100%;padding:1rem clamp(1.25rem,5vw,4rem);font-size:1rem}
  .nav__links .nav__cta{margin:.8rem clamp(1.25rem,5vw,4rem) 1rem;width:calc(100% - 2 * clamp(1.25rem,5vw,4rem))}
  .nav__toggle{display:inline-flex}
  .values{grid-template-columns:1fr}
  .values li,.values li:nth-child(even){padding:1.6rem 0;border-left:0}
  .form__row--split{grid-template-columns:1fr}
}
@media (max-width:480px){
  .hero__actions{flex-direction:column;align-items:stretch}
  .hero__actions .btn{width:100%}
}
