/* ============================================================
   REPACE — Website
   Ruhig · kontemplativ · minimal
   Keine externen Schriften/Tracker (DSGVO-sicher)
   ============================================================ */

/* ---- Schrift: Satoshi (frei, Fontshare) – geometrische Sans, dünn ---- */
@font-face {
  font-family: "Repace Sans";
  src: url("assets/fonts/Satoshi-Light.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Repace Sans";
  src: url("assets/fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Repace Sans";
  src: url("assets/fonts/Satoshi-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}

:root {
  --green:        #003C29;   /* Markengrün */
  --green-deep:   #002418;   /* dunkler für Verläufe */
  --green-soft:   #0A4D37;
  --red:          #D62100;   /* Markenrot „Repace Teachings" */
  --red-deep:     #B01B00;
  --red-accent:   #FF7454;   /* helleres Rot, lesbar auf Grün */
  /* Platzhalter für ein späteres 3. Format – Farbe später festlegen.
     Zum Aktivieren: Kachel + Folgen-Spalte bekommen die Klasse *--format3 */
  --format3:      #1C6E8C;   /* vorläufig; ersetzen, wenn das 3. Format kommt */
  --format3-deep: #155a72;
  --cream:        #F7F3EA;   /* warmes Cremeweiß (Seitengrund) */
  --cream-2:      #EFE8D8;
  --ink:          #16201B;   /* Fließtext */
  --muted:        #5E6A63;   /* gedämpft */
  --line:         rgba(0,60,41,.14);
  --line-light:   rgba(255,255,255,.18);

  /* Satoshi (geometrische Sans), dünn gehalten */
  --serif: "Repace Sans", -apple-system, "Segoe UI", Roboto, sans-serif;   /* Überschriften */
  --sans:  "Repace Sans", -apple-system, "Segoe UI", Roboto, sans-serif;   /* Fließtext */
  --mono:  "Repace Sans", -apple-system, "Segoe UI", Roboto, sans-serif;   /* Labels */

  --maxw: 1080px;
  --gap: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 { letter-spacing: -0.01em; }

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

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gap);
}

/* ---- Mono-Label (wie im Logo) ---- */
.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}
.eyebrow.on-green { color: rgba(255,255,255,.65); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem var(--gap);
}
.site-header .brand {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: .85rem;
  color: #fff;
  text-decoration: none;
  padding-left: .35em; /* optische Mitte für letter-spacing */
}
.nav {
  display: flex;
  gap: 1.8rem;
}
.nav a {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color .25s ease;
}
.nav a:hover { color: #fff; }

@media (max-width: 640px) {
  .nav { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(120% 90% at 50% 0%, var(--green-soft) 0%, var(--green) 45%, var(--green-deep) 100%);
  color: #fff;
  overflow: hidden;
  padding: 7rem var(--gap) 5rem;
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero__logo {
  width: min(280px, 58vw);
  margin: 0 auto 2.6rem;
}
.hero__tagline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 20em;
  margin: 0 auto;
}
.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,.8);
  max-width: 30em;
  margin: 0 auto;
}
.scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  z-index: 2;
  animation: float 2.8s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding-block: clamp(5.5rem, 13vw, 9.5rem); }

.section-head { max-width: 38rem; margin-bottom: 3.5rem; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.55rem, 3.3vw, 2.15rem);
  line-height: 1.25;
  margin: 0 0 1rem;
  color: var(--green);
}
.section-head p { color: var(--muted); margin: 0; font-size: 1.05rem; }

.lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.5;
  color: var(--green);
  max-width: 26em;
  margin: 0;
}
.section-sub {
  color: var(--muted);
  margin: .8rem 0 0;
  max-width: 32em;
  font-size: .98rem;
}
.lead .light { color: var(--muted); }
.lead em { font-style: normal; font-weight: 500; color: var(--green); }
.intro-body {
  margin: 1.8rem 0 0;
  max-width: 34em;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Trenner */
.intro { border-bottom: 1px solid var(--line); }

/* ---- Themen-Raster ---- */
.themes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.theme {
  background: var(--cream);
  padding: 2.2rem 1.8rem;
  transition: background .3s ease;
}
.theme:hover { background: var(--cream-2); }
.theme .n {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--muted);
}
.theme h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  margin: .6rem 0 .5rem;
  color: var(--green);
}
.theme p { margin: 0; font-size: .95rem; color: var(--muted); line-height: 1.6; }

/* ---- Reflexion / Tool-Karte ---- */
.tools { background: var(--cream); }
.tools .section-head h2 { color: var(--green); }
.tools .section-head p { color: var(--muted); }

.tool-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 3.2rem);
  background: rgba(255,255,255,.03);
}
.tool-card__text { flex: 1 1 22rem; }
.tool-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  margin: .4rem 0 .8rem;
}
.tool-card p { color: rgba(255,255,255,.78); margin: 0 0 1.6rem; max-width: 34em; }

.badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  background: #fff;
  padding: .35em .8em;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .9em 1.6em;
  border-radius: 999px;
  border: 1px solid currentColor;
  transition: background .25s ease, color .25s ease;
}
.btn--light { color: #fff; }
.btn--light:hover { background: #fff; color: var(--green); }
.btn--green { color: var(--green); border-color: var(--green); }
.btn--green:hover { background: var(--green); color: #fff; }
.btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

/* ---- Tool-Liste (Reflexion) ---- */
.tool-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.tool {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--line);
}
.tool__no {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--muted);
  min-width: 2rem;
}
.tool__body { flex: 1; }
.tool__body h3 {
  font-weight: 400;
  font-size: clamp(1.05rem, 2.3vw, 1.3rem);
  margin: 0 0 .2rem;
  color: var(--green);
}
.tool__body p { margin: 0; color: var(--muted); font-size: .9rem; }
.tool__state {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.tool__state--link {
  color: var(--green);
  text-decoration: none;
  border: 1px solid var(--line);
  padding: .6em 1em;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease;
}
.tool__state--link:hover { background: var(--green); color: #fff; }

/* ---- Podcast (grüner Grund) ---- */
.podcast { background: var(--green); color: #fff; }
.podcast h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.55rem, 3.3vw, 2.15rem);
  line-height: 1.25;
  margin: 0 0 1rem;
  color: #fff;
}
.podcast .section-sub { color: rgba(255,255,255,.7); }

/* „Was ist REPACE" – einfarbig, oben im grünen Bereich */
.repace-intro { max-width: 46rem; margin: clamp(1rem, 3vw, 2.5rem) 0 0; }
.repace-lead {
  color: #fff;
  font-weight: 300;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
  margin: 0;
}
/* zarte Querlinie, endet kurz vor dem rechten Rand */
.repace-divider {
  height: 1px;
  background: rgba(255,255,255,.2);
  margin: clamp(3.5rem, 7vw, 5.5rem) 14% clamp(3.5rem, 7vw, 5.5rem) 0;
}

/* Überschrift über der Folgenauswahl */
.ep-cols__head {
  margin: 0 0 1.3rem;
}

/* Folgen-Spalten – je eigene Fläche, skaliert auto von 2 auf 3 Formate */
.ep-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;          /* gleiche Höhe aller Flächen */
}
.ep-col {
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border-radius: 16px;
}
.ep-col--repace    { background: rgba(255,255,255,.05); }
.ep-col--teachings { background: var(--red); }
.ep-col--format3   { background: var(--format3); }
.ep-col__label {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 2.05rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 1.6rem;
}

.ep-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.16);
  flex: 1;                        /* füllt die Fläche → Zeilen links/rechts auf gleicher Höhe */
  display: flex;
  flex-direction: column;
}
.ep {
  flex: 1;                        /* Zeilen gleich hoch = symmetrisch */
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  text-decoration: none;
  color: inherit;
}
.ep:last-child { border-bottom: none; }
.ep__body { flex: 1; }
.ep__tag {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.ep__body h3 {
  font-weight: 400;
  font-size: clamp(1rem, 2.1vw, 1.22rem);
  line-height: 1.3;
  margin: .4rem 0 .3rem;
  color: #fff;
}
.ep__body p { margin: 0; color: rgba(255,255,255,.7); font-size: .86rem; line-height: 1.5; }
.ep__play {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.4);
  padding: .55em 1em;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease;
}
.ep-col--repace .ep:hover .ep__play    { background: #fff; color: var(--green);   border-color: #fff; }
.ep-col--teachings .ep:hover .ep__play { background: #fff; color: var(--red);     border-color: #fff; }
.ep-col--format3 .ep:hover .ep__play   { background: #fff; color: var(--format3); border-color: #fff; }

/* Shows – skaliert automatisch von 2 auf 3 Formate (auto-fit) */
.shows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.show {
  display: block;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: clamp(3rem, 5vw, 4.4rem) clamp(1.8rem, 3vw, 2.6rem);
  transition: transform .25s ease, background .25s ease;
}
.show__logo {
  display: block;
  width: min(170px, 50%);
  margin: .4rem auto 2.6rem;   /* zentriert, mit Luft */
}
.show__label {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 2.05rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: .6rem;
}
.show p { margin: 0 0 1.5rem; color: rgba(255,255,255,.7); font-size: .92rem; }
/* Plattform-Icons (Apple Podcasts / Spotify) */
.show__platforms { display: flex; gap: 1rem; }
.pf {
  display: inline-flex;
  color: #fff;
  opacity: .82;
  transition: opacity .2s ease, transform .2s ease;
}
.pf:hover { opacity: 1; transform: translateY(-2px); }
.pf svg { width: 30px; height: 30px; fill: currentColor; display: block; }
/* Teachings-Kachel in Markenrot */
.show--teachings { background: var(--red); border-color: transparent; }
.show--teachings:hover { background: var(--red-deep); }
.show--teachings .show__label { color: #fff; }
.show--teachings p { color: rgba(255,255,255,.82); }
/* Vorbereitet für ein 3. Format (noch nicht im Markup): */
.show--format3 { background: var(--format3); border-color: transparent; }
.show--format3:hover { background: var(--format3-deep); }
.show--format3 .show__label { color: rgba(255,255,255,.72); }
.show--format3 p { color: rgba(255,255,255,.82); }

/* ---- About me (Grün) ---- */
.about { background: var(--green); color: #fff; }
.about h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.55rem, 3.3vw, 2.15rem);
  line-height: 1.25;
  margin: 0 0 1.4rem;
  color: #fff;
}
.about-intro { max-width: 40rem; margin-bottom: clamp(1.5rem, 3vw, 2rem); }
.about-lead { color: rgba(255,255,255,.75); margin: 0; font-size: 1.05rem; }

/* Team-Gruppen (Repace / Teachings) */
.team-group { margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.team-group__label {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin: 0 0 1.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.16);
}
.team-group__note { margin: clamp(1.3rem, 2.5vw, 1.7rem) 0 0; color: rgba(255,255,255,.6); max-width: 42em; font-size: .9rem; line-height: 1.55; }
/* Platzhalter für fehlendes Foto */
.member__ph {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* Team-Raster – kleine, hochkant-rechteckige Fotos, linksbündig */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 160px));
  justify-content: start;
  gap: clamp(1.2rem, 3vw, 2rem);
}
.member { margin: 0; }
.member img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.member figcaption {
  margin-top: .9rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.member__name { color: #fff; font-weight: 500; }
.member__role { color: rgba(255,255,255,.6); font-size: .85rem; }
.team__note { margin: clamp(2rem, 4vw, 3rem) 0 0; color: rgba(255,255,255,.6); max-width: 42em; font-size: .92rem; }

/* Entstehungsgeschichte */
.story { margin: 0 0 clamp(3.5rem, 7vw, 5.5rem); max-width: 46rem; }
.story__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.55rem, 3.3vw, 2.15rem);
  line-height: 1.25;
  margin: 0 0 1.4rem;
  color: #fff;
}
.story__text p { color: rgba(255,255,255,.78); margin: 0; line-height: 1.7; }
.story__text p + p { margin-top: 1rem; }

/* Co-Hosts */
.hosts { margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line-light); }
.hosts__label {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0 0 .8rem;
}
.host { color: rgba(255,255,255,.78); margin: 0 0 .3rem; font-size: .98rem; }
.host strong { color: #fff; font-weight: 400; }
.hosts__note { margin-top: 1rem; color: rgba(255,255,255,.6); font-size: .92rem; }

/* ---- Kontakt ---- */
.contact { background: var(--cream); }
.contact .section-head h2 { color: var(--green); }
.form { max-width: 34rem; }
.field { margin-bottom: 1.3rem; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .8em .9em;
  transition: border-color .2s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.consent {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
  line-height: 1.5;
}
.consent input { margin-top: .25em; accent-color: var(--green); }
.consent a { color: var(--green); }
.form .btn { border: none; background: var(--green); color: #fff; cursor: pointer; font-family: var(--mono); }
.form .btn:hover { background: var(--green-soft); }

/* ============================================================
   FOLGE UNS (Instagram)
   ============================================================ */
.follow-strip {
  background: var(--green);
  text-align: center;
  padding: clamp(2.6rem, 5vw, 3.6rem) var(--gap);
  border-top: 1px solid rgba(255,255,255,.08);
}
.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  text-decoration: none;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  padding: .85em 1.7em;
  transition: background .25s ease, color .25s ease;
}
.follow-btn svg { width: 20px; height: 20px; }
.follow-btn:hover { background: #fff; color: var(--green); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.7);
  padding-block: 3.5rem;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: center;
  justify-content: space-between;
}
.footer-ig {
  display: inline-flex;
  color: rgba(255,255,255,.7);
  transition: color .2s ease;
}
.footer-ig:hover { color: #fff; }
.footer-ig svg { width: 22px; height: 22px; fill: currentColor; display: block; }
.site-footer .brand {
  font-family: var(--mono);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #fff;
  font-size: .9rem;
  text-decoration: none;
}
.footer-nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-nav a {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-nav a:hover { color: #fff; }
.site-footer small { display: block; width: 100%; color: rgba(255,255,255,.4); font-size: .75rem; }

/* sanftes Einblenden */
@media (prefers-reduced-motion: no-preference){
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.in { opacity: 1; transform: none; }
}
