/* ================================================================
   Ad hoc Rhetorik — Michael Jäger
   Editorial · Authoritative · Precise
   ================================================================ */

:root {
  --navy-900: #0a162e;
  --navy-800: #0f1e3d;
  --navy-700: #18305a;
  --navy-600: #234478;
  --teal-400: #5fbed1;
  --teal-300: #8fd5e3;
  --teal-200: #c4e8ef;
  --cream: #f5f1ea;
  --cream-warm: #efe8db;
  --paper: #faf7f1;
  --ink: #0a0a0a;
  --ink-soft: #2b2b2b;
  --rule: rgba(15, 30, 61, 0.14);
  --rule-light: rgba(245, 241, 234, 0.18);

  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy-800);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ============== UTILITIES ============== */

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal-400);
}

.eyebrow.on-dark {
  color: var(--teal-300);
}

.eyebrow.on-dark::before {
  background: var(--teal-400);
}

/* ============== NAVIGATION ============== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  background: rgba(250, 247, 241, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--rule);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: transparent;
}

.brand-mark img {
  position: absolute;
  width: 168%;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text .name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--navy-800);
}

.brand-text .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-800);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--navy-800);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: var(--navy-800);
  color: var(--cream) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid var(--navy-800);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--navy-900);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 30, 61, 0.25);
}

.nav-cta svg {
  transition: transform 0.3s ease;
}

.nav-cta:hover svg {
  transform: translateX(2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy-800);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ============== HERO ============== */

.hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
  background: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(95, 190, 209, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(56px, 8.5vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--navy-800);
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 144;
}

.hero-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-headline .word:nth-child(1) { animation-delay: 0.05s; }
.hero-headline .word:nth-child(2) { animation-delay: 0.16s; }
.hero-headline .word:nth-child(3) { animation-delay: 0.28s; }
.hero-headline .word:nth-child(4) { animation-delay: 0.40s; }
.hero-headline .word:nth-child(5) { animation-delay: 0.52s; }

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--navy-800);
  display: inline;
  background-image: linear-gradient(
    to top,
    transparent 0.04em,
    var(--teal-400) 0.04em,
    var(--teal-400) 0.38em,
    transparent 0.38em
  );
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left center;
  animation: highlight-grow 1.2s 1.1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  padding: 0 0.04em;
  border-radius: 2px;
}

@keyframes highlight-grow {
  to {
    background-size: 100% 100%;
  }
}

.hero-headline .dot {
  color: var(--teal-400);
  -webkit-text-fill-color: var(--teal-400);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-meta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: rise 1s 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-meta .divider {
  width: 60px;
  height: 1px;
  background: var(--navy-800);
}

.hero-meta .role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-700);
}

.hero-side {
  position: relative;
  padding-bottom: 20px;
}

.hero-lede {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.45;
  color: var(--navy-700);
  margin-bottom: 28px;
  max-width: 440px;
  opacity: 0;
  animation: rise 1s 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-lede::first-letter {
  font-size: 2.4em;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  font-weight: 500;
  font-style: normal;
  color: var(--teal-400);
}

.hero-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 440px;
  margin-bottom: 36px;
  opacity: 0;
  animation: rise 1s 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: rise 1s 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary {
  background: var(--navy-800);
  color: var(--cream);
  border-color: var(--navy-800);
}

.btn-primary:hover {
  background: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 30, 61, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}

.btn-ghost:hover {
  background: var(--navy-800);
  color: var(--cream);
}

.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ===== Hero Showcase ===== */

.hero-showcase {
  position: relative;
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: end;
}

.showcase-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy-800);
}

.showcase-item.tall {
  aspect-ratio: 3/4;
}

.showcase-item.wide {
  aspect-ratio: 5/4;
  margin-bottom: 60px;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-item:hover img {
  transform: scale(1.04);
}

.showcase-meta {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: var(--cream);
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.showcase-stats {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 24px 40px;
  display: flex;
  gap: 56px;
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(15, 30, 61, 0.10);
  z-index: 5;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  color: var(--navy-800);
}

.stat-value sup {
  color: var(--teal-400);
  font-size: 16px;
}

.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-top: 6px;
}

/* ============== TICKER ============== */

.ticker {
  background: var(--navy-800);
  color: var(--cream);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}

.ticker-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: ticker 50s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 80px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-size: 28px;
  flex-shrink: 0;
}

.ticker-item .star {
  color: var(--teal-400);
  font-style: normal;
  font-size: 18px;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* ============== NUTZEN ============== */

.nutzen {
  padding: 140px 0;
  background: var(--cream);
  position: relative;
}

.nutzen-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}

.nutzen-item {
  display: flex;
  gap: 28px;
  align-items: baseline;
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background 0.4s ease, padding 0.4s ease;
}

.nutzen-item:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid var(--rule);
}

.nutzen-item:nth-child(even) {
  padding-left: 48px;
}

.nutzen-item:hover {
  background: var(--paper);
}

.nutzen-item .n-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--teal-400);
  font-weight: 600;
  flex-shrink: 0;
  width: 32px;
}

.nutzen-item p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--navy-800);
}

.nutzen-item p em {
  font-style: italic;
  color: var(--teal-400);
  font-weight: 500;
}

@media (max-width: 768px) {
  .nutzen-grid {
    grid-template-columns: 1fr;
  }
  .nutzen-item:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }
  .nutzen-item:nth-child(even) {
    padding-left: 0;
  }
  .nutzen-item p {
    font-size: 19px;
  }
}

/* ============== METHODIK LIST ============== */

.methodik-list {
  list-style: none;
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 28px;
}

.methodik-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}

.methodik-list li span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--teal-400);
  flex-shrink: 0;
}

.methodik-list li p {
  font-size: 16px;
  line-height: 1.45;
  color: var(--navy-800);
  margin: 0;
}

@media (max-width: 768px) {
  .methodik-list {
    grid-template-columns: 1fr;
  }
}

/* ============== FORMATE LOCATIONS ============== */

.formate-locations {
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--rule-light);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.formate-locations .loc-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-300);
}

.formate-locations .loc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.loc-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(95, 190, 209, 0.08);
  border: 1px solid rgba(95, 190, 209, 0.2);
  color: var(--cream);
  font-size: 14px;
  border-radius: 999px;
  font-weight: 500;
}

.loc-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 0 4px rgba(95, 190, 209, 0.18);
}

/* ============== ZIELGRUPPE ============== */

.zielgruppe {
  padding: 140px 0;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.zielgruppe::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 190, 209, 0.16), transparent 60%);
  pointer-events: none;
}

.zg-inner {
  position: relative;
  z-index: 1;
}

.zg-inner .eyebrow {
  justify-content: center;
}

.zg-inner h2 {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy-800);
  margin-top: 28px;
  margin-bottom: 36px;
}

.zg-inner h2 em {
  font-style: italic;
  color: var(--teal-400);
}

.zg-inner h2 .dot {
  color: var(--teal-400);
}

.zg-inner > p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
  color: var(--navy-700);
  max-width: 720px;
  margin: 0 auto 56px;
}

.zg-goals {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.zg-goal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(15, 30, 61, 0.05);
}

.zg-goal .zg-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--teal-400);
  line-height: 1;
}

.zg-goal .zg-label {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: -0.005em;
}

/* ============== DEFINITION SECTION ============== */

.definition {
  padding: 140px 0;
  background: var(--paper);
  position: relative;
}

.definition-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.definition-label {
  position: sticky;
  top: 120px;
}

.definition-label h2 {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy-800);
  margin-top: 20px;
}

.definition-label h2 em {
  font-style: italic;
  color: var(--teal-400);
}

.definition-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.definition-text p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.definition-text p:first-child {
  font-family: var(--serif);
  font-weight: 350;
  font-size: 28px;
  line-height: 1.35;
  color: var(--navy-800);
}

.definition-text p:first-child em {
  font-style: italic;
  color: var(--teal-400);
}

.definition-pull {
  margin-top: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 24px;
}

.definition-pull .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  font-weight: 400;
  color: var(--teal-400);
  line-height: 1;
}

.definition-pull p {
  font-family: var(--serif);
  font-size: 20px !important;
  font-style: italic;
  font-weight: 350;
  color: var(--navy-800) !important;
  line-height: 1.4 !important;
}

/* ============== ABOUT (PROFIL) ============== */

.profil {
  padding: 140px 0;
  background: var(--navy-900);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.profil::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(95, 190, 209, 0.1), transparent 60%);
  pointer-events: none;
}

.profil-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.profil-portrait {
  position: relative;
}

.profil-portrait .frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--navy-800);
}

.profil-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profil-portrait .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 46, 0.6));
}

.profil-portrait .credit {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  z-index: 2;
}

.profil-portrait .signature {
  position: absolute;
  top: -20px;
  right: -30px;
  background: var(--teal-400);
  color: var(--navy-900);
  padding: 14px 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(95, 190, 209, 0.3);
  z-index: 3;
  transform: rotate(3deg);
}

.profil-content h2 {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-top: 24px;
  margin-bottom: 28px;
}

.profil-content h2 em {
  font-style: italic;
  color: var(--teal-300);
}

.profil-content p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 241, 234, 0.78);
  margin-bottom: 20px;
}

.profil-content p strong {
  color: var(--cream);
  font-weight: 600;
}

.qualifications {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--rule-light);
}

.qualifications-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 24px;
}

.qual-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  list-style: none;
}

.qual-list li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(245, 241, 234, 0.85);
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-light);
}

.qual-list li::before {
  content: "›";
  color: var(--teal-400);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  flex-shrink: 0;
}

/* ============== THEMEN ============== */

.themen {
  padding: 140px 0;
  background: var(--cream);
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--navy-800);
  margin-top: 24px;
}

.section-head h2 em {
  font-style: italic;
  color: var(--teal-400);
}

.section-head .head-aside {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 440px;
  justify-self: end;
}

.themen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.thema {
  padding: 40px 32px 48px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  background: var(--cream);
  transition: background 0.4s ease, transform 0.4s ease;
  cursor: default;
}

.thema:hover {
  background: var(--paper);
}

.thema-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--navy-600);
  margin-bottom: 28px;
}

.thema h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy-800);
  margin-bottom: 16px;
  min-height: 60px;
}

.thema h3 em {
  font-style: italic;
  color: var(--teal-400);
}

.thema p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.thema-arrow {
  margin-top: 32px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--navy-800);
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.thema:hover .thema-arrow {
  background: var(--navy-800);
  color: var(--cream);
  transform: rotate(-45deg);
}

/* ============== MANIFESTO ============== */

.manifesto {
  padding: 160px 0;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -300px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(95, 190, 209, 0.12), transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.manifesto-img {
  position: relative;
  aspect-ratio: 4/5;
}

.manifesto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  background: var(--navy-800);
  filter: contrast(1.05);
  display: block;
}

.manifesto-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 30, 61, 0.05), rgba(15, 30, 61, 0.4));
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
}

.manifesto-img .quote-card {
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 24px 26px;
  max-width: 300px;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(15, 30, 61, 0.18);
  z-index: 2;
}

.manifesto-img .quote-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--navy-800);
  margin-bottom: 16px;
}

.manifesto-img .quote-card .quote-attr {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-600);
}

.manifesto-text h2 {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--navy-800);
  margin-top: 24px;
  margin-bottom: 36px;
}

.manifesto-text h2 em {
  font-style: italic;
  color: var(--teal-400);
}

.manifesto-text p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.manifesto-text p.lead {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 350;
  line-height: 1.4;
  color: var(--navy-800);
}

.manifesto-text p.lead em {
  font-style: italic;
  color: var(--teal-400);
}

/* ============== FORMATE ============== */

.formate {
  padding: 140px 0;
  background: var(--navy-800);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.formate::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-400), transparent);
}

.formate-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.formate-head h2 {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-top: 24px;
}

.formate-head h2 em {
  font-style: italic;
  color: var(--teal-300);
}

.formate-head .head-aside {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(245, 241, 234, 0.7);
  max-width: 440px;
  justify-self: end;
}

.formate-list {
  display: flex;
  flex-direction: column;
}

.format-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr 0.6fr 60px;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--rule-light);
  cursor: default;
  transition: padding 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.format-row:last-child {
  border-bottom: 1px solid var(--rule-light);
}

.format-row:hover {
  padding-left: 16px;
  padding-right: 16px;
}

.format-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--teal-300);
}

.format-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.format-title em {
  font-style: italic;
  color: var(--teal-300);
}

.format-desc {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 241, 234, 0.7);
}

.format-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-300);
  text-align: right;
}

.format-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--cream);
  display: grid;
  place-items: center;
  color: var(--cream);
  justify-self: end;
  transition: all 0.3s ease;
}

.format-row:hover .format-arrow {
  background: var(--teal-400);
  border-color: var(--teal-400);
  color: var(--navy-900);
  transform: rotate(-45deg);
}

/* ============== KONTAKT ============== */

.kontakt {
  padding: 140px 0;
  background: var(--cream);
  position: relative;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.kontakt-main {
  position: relative;
}

.kontakt-main h2 {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(56px, 7vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--navy-800);
  margin-top: 24px;
}

.kontakt-main h2 em {
  font-style: italic;
  color: var(--teal-400);
}

.kontakt-main h2 .dot {
  color: var(--teal-400);
}

.kontakt-main p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--navy-700);
  margin-top: 36px;
  margin-bottom: 40px;
  max-width: 540px;
}

.kontakt-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.kontakt-info {
  display: grid;
  gap: 32px;
}

.info-block {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}

.info-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-bottom: 14px;
}

.info-content {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--navy-800);
}

.info-content a {
  position: relative;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--teal-400);
}

.info-content small {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-600);
  margin-top: 8px;
}

/* ============== FOOTER ============== */

footer {
  background: var(--navy-900);
  color: var(--cream);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-400), transparent);
}

.footer-watermark {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(120px, 18vw, 260px);
  line-height: 1;
  color: rgba(95, 190, 209, 0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 56px;
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}

.footer-brand .brand-text .name {
  color: var(--cream);
  font-size: 20px;
}

.footer-brand .brand-text .label {
  color: var(--teal-300);
}

.footer-brand p {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 241, 234, 0.6);
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a,
.footer-col span {
  font-size: 15px;
  color: rgba(245, 241, 234, 0.78);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--teal-300);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--rule-light);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.5);
}

.footer-bottom .legal {
  display: flex;
  gap: 24px;
}

.footer-bottom .legal a:hover {
  color: var(--teal-300);
}

/* ============== LEGAL MODAL ============== */

/* ============== LEGAL PAGE (Impressum / Datenschutz) ============== */

.nav.is-static {
  border-bottom-color: var(--rule);
}

.legal-page {
  padding: 160px 0 120px;
  background: var(--paper);
  min-height: calc(100vh - 80px);
}

.legal-page__head {
  margin-bottom: 48px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-600);
  padding: 10px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.legal-back:hover {
  background: var(--navy-800);
  color: var(--cream);
  border-color: var(--navy-800);
}

.legal-back svg {
  transition: transform 0.2s ease;
}

.legal-back:hover svg {
  transform: translateX(-3px);
}

.legal-page__body {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 760px;
}

.legal-page__body h1 {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy-800);
  margin-bottom: 10px;
}

.legal-page__body .legal-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}

.legal-page__body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  color: var(--navy-800);
  margin-top: 36px;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}

.legal-page__body p {
  margin-bottom: 16px;
}

.legal-page__body a {
  color: var(--navy-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page__body a:hover {
  color: var(--teal-400);
}

@media (max-width: 640px) {
  .legal-page {
    padding: 120px 0 80px;
  }

  .legal-page__head {
    margin-bottom: 32px;
  }

  .legal-page__body {
    font-size: 15px;
  }

  .legal-page__body h3 {
    font-size: 19px;
    margin-top: 28px;
  }
}

/* ============== RESPONSIVE ============== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-side {
    padding-bottom: 0;
  }

  .definition-grid,
  .profil-grid,
  .manifesto-grid,
  .kontakt-grid,
  .section-head,
  .formate-head {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .definition-label {
    position: static;
  }

  .section-head .head-aside,
  .formate-head .head-aside {
    justify-self: start;
  }

  .themen-grid {
    grid-template-columns: 1fr 1fr;
  }

  .qual-list {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .format-row {
    grid-template-columns: 60px 1fr 50px;
    gap: 20px;
  }

  .format-desc,
  .format-tag {
    display: none;
  }

  .manifesto-img .quote-card {
    bottom: 20px;
    right: 20px;
    left: 20px;
    max-width: none;
  }

  .showcase-stats {
    position: static;
    transform: none;
    margin: 0 auto 24px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .container,
  .container-narrow {
    padding: 0 20px;
  }

  .nav-cta span {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 110;
  }

  .brand,
  .nav-cta {
    position: relative;
    z-index: 110;
  }

  .nav-cta {
    padding: 10px 14px;
  }

  .nav.nav-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
  }

  .nav > .container > nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    padding: 110px 32px 48px;
    z-index: 95;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav.nav-open > .container > nav {
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    padding-top: 24px;
  }

  .nav-links a {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 32px;
    color: var(--navy-800);
  }

  .nav-links a::after {
    display: none;
  }

  .nav.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  body.no-scroll {
    overflow: hidden;
  }

  .hero {
    padding: 130px 0 80px;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 60px;
  }

  .showcase-item.wide {
    margin-bottom: 0;
  }

  .definition,
  .profil,
  .themen,
  .manifesto,
  .formate,
  .kontakt {
    padding: 80px 0;
  }

  .themen-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .ticker-item {
    font-size: 20px;
    gap: 56px;
  }

  .ticker-track {
    gap: 56px;
  }

  .profil-portrait .signature {
    right: 20px;
    top: 20px;
    transform: rotate(0);
  }

  .hero-actions,
  .kontakt-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }
}

/* ============== REVEAL ON SCROLL ============== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== LIVE-MOMENT (Stage Photos in 02-Section) ========== */
.live-moment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-top: clamp(2.5rem, 4vw, 4rem);
}

.live-moment-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #1a1a1a;
  aspect-ratio: 3 / 2;
}

.live-moment-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 900ms cubic-bezier(.22,.61,.36,1), filter 600ms ease;
  filter: saturate(0.95);
}

.live-moment-item:hover img {
  transform: scale(1.04);
  filter: saturate(1);
}

.live-moment-item figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1.1rem 1.25rem .9rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 60%, transparent 100%);
  color: #fff;
  font-size: .82rem;
  letter-spacing: 0.04em;
}

.live-moment-item figcaption > span:first-child {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.live-moment-item figcaption > span:last-child {
  font-style: italic;
  opacity: 0.88;
  text-align: right;
}

@media (max-width: 760px) {
  .live-moment-head {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }
  .live-moment-grid {
    grid-template-columns: 1fr;
  }
  .live-moment-item {
    aspect-ratio: 4 / 3;
  }
}
