@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url('/fonts/SourceSerif4[opsz,wght].woff2') format('woff2 supports variations'),
       url('/fonts/SourceSerif4[opsz,wght].woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: italic;
  font-weight: 100 900;
  font-display: block;
  src: url('/fonts/SourceSerif4-Italic[opsz,wght].woff2') format('woff2 supports variations'),
       url('/fonts/SourceSerif4-Italic[opsz,wght].woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url('/fonts/DMSans[opsz,wght].woff2') format('woff2 supports variations'),
       url('/fonts/DMSans[opsz,wght].woff2') format('woff2');
}

:root {
  --c-green:  #1D3A28;
  --c-greenM: #2D5A3D;
  --c-cream:  #F6F2EA;
  --c-sand:   #EDE8D8;
  --c-dark:   #1A1610;
  --c-muted:  #6B6257;
  --c-rule:   #D4CFC4;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  background: var(--c-cream);
  color: var(--c-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ============================================
   TYPOGRAPHY TOKENS
   ============================================ */
.t-display {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.028em;
  text-wrap: pretty;
}

.t-h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.75rem, 2.8vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.018em;
  text-wrap: pretty;
}

.t-h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 400;
  line-height: 1.35;
  text-wrap: pretty;
}

.t-body {
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.78;
  color: var(--c-muted);
}

.t-pull {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.42;
  color: var(--c-dark);
}

.t-label {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ============================================
   COLOR UTILITIES
   ============================================ */
.text-dark        { color: var(--c-dark); }
.text-muted       { color: var(--c-muted); }
.text-cream       { color: var(--c-cream); }
.text-sand        { color: var(--c-sand); }
.text-bene-dark   { color: var(--c-dark); }
.text-bene-muted  { color: var(--c-muted); }

/* ============================================
   SECTION SPACING & RULES
   ============================================ */
.section-pad {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 6rem);
}

.bene-hr {
  border: none;
  border-top: 1px solid var(--c-rule);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background: var(--c-green);
  color: var(--c-cream);
  padding: 0.9rem 2.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: filter 0.18s ease;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { filter: brightness(1.18); }

.btn-primary-inv {
  display: inline-block;
  background: var(--c-cream);
  color: var(--c-green);
  padding: 0.9rem 2.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: filter 0.18s ease;
  cursor: pointer;
  border: none;
}
.btn-primary-inv:hover { filter: brightness(0.95); }

.btn-ghost-hero {
  display: inline-block;
  background: none;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.9rem 2.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.18s ease;
  cursor: pointer;
}
.btn-ghost-hero:hover { border-color: rgba(255,255,255,0.6); }

.btn-ghost {
  display: inline-block;
  background: none;
  color: var(--c-dark);
  border: 1px solid var(--c-rule);
  padding: 0.9rem 2.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.18s ease;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--c-muted); }

/* ============================================
   NAV
   ============================================ */
#main-nav {
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

#main-nav .nav-logo {
  color: #fff;
  text-decoration: none;
}

#main-nav .nav-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.18s ease;
}
#main-nav .nav-link:hover { color: #fff; }

#main-nav .nav-cta {
  display: inline-block;
  background: var(--c-cream);
  color: var(--c-green);
  border: none;
  padding: 0.65rem 1.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.18s ease;
}
#main-nav .nav-cta:hover { filter: brightness(0.95); }

#main-nav.nav-scrolled {
  background: rgba(246, 242, 234, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(26, 22, 16, 0.07);
}
#main-nav.nav-scrolled .nav-logo { color: var(--c-dark); }
#main-nav.nav-scrolled .nav-link { color: var(--c-muted); }
#main-nav.nav-scrolled .nav-link:hover { color: var(--c-dark); }
#main-nav.nav-scrolled .nav-cta {
  background: var(--c-green);
  color: var(--c-cream);
}
#main-nav.nav-scrolled .nav-cta:hover { filter: brightness(1.18); }

body.page-content #main-nav {
  background: rgba(246, 242, 234, 0.97);
  box-shadow: 0 1px 0 rgba(26, 22, 16, 0.07);
}
body.page-content #main-nav .nav-logo { color: var(--c-dark); }
body.page-content #main-nav .nav-link { color: var(--c-muted); }
body.page-content #main-nav .nav-link:hover { color: var(--c-dark); }
body.page-content #main-nav .nav-cta {
  background: var(--c-green);
  color: var(--c-cream);
}

/* ============================================
   HERO — CINÉMA
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,22,16,0.88) 0%,
    rgba(26,22,16,0.58) 50%,
    rgba(26,22,16,0.18) 100%
  );
}

/* Editorial annotation badge */
.hero-badge {
  position: absolute;
  right: clamp(2.5rem, 8vw, 9rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

.hero-badge-line {
  display: block;
  width: 0.5px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.hero-badge-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

.hero-badge-text .badge-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  white-space: nowrap;
}

.hero-badge-text .badge-name {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.34);
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 7;
  margin-top: auto;
  padding: 0 clamp(1.5rem, 6vw, 6rem) clamp(3.5rem, 6vw, 5rem);
  max-width: 80rem;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 1rem;
}

.hero-h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: #fff;
  margin-bottom: 2rem;
  text-wrap: pretty;
  max-width: 15ch;
}

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.68;
  color: rgba(255,255,255,0.68);
  margin-bottom: 3rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Ticker bar */
.hero-ticker {
  position: relative;
  z-index: 7;
  flex-shrink: 0;
  background: rgba(29,58,40,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.1rem 0;
  display: block;
  overflow: hidden;
}

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

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  width: max-content;
  animation: ticker-scroll 38s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-word {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.42);
  white-space: nowrap;
}

.ticker-dot {
  color: rgba(255,255,255,0.14);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================
   SECTION BACKGROUNDS
   ============================================ */
#wendepunkt,
#bewerbung {
  background: var(--c-green);
}

#scheitern,
#fit,
#faq,
#stimmen {
  background: var(--c-sand);
}

footer {
  background: var(--c-dark);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-col { max-width: 56ch; }

.problem-grid {
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: 3fr 2fr;
    gap: 6rem;
    align-items: start;
  }
}

/* ============================================
   ATMOSPHERIC PLACEHOLDER
   ============================================ */
.atmo-ph {
  position: relative;
  overflow: hidden;
  background: repeating-linear-gradient(
    -45deg,
    var(--c-sand) 0px,
    var(--c-sand) 2px,
    var(--c-cream) 2px,
    var(--c-cream) 10px
  );
  border: 1px solid var(--c-rule);
}

.atmo-ph-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-rule);
  text-align: center;
  padding: 1rem;
}

/* ============================================
   WENDEPUNKT (green)
   ============================================ */
.wendepunkt-inner { max-width: 56ch; }

.quote-deco {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 7rem;
  line-height: 0.8;
  color: rgba(246,242,234,0.12);
  margin-bottom: -0.75rem;
  font-weight: 300;
  user-select: none;
  display: block;
}

#wendepunkt .t-h2  { color: var(--c-cream); }
#wendepunkt .t-body {
  color: var(--c-sand);
  font-size: 1.1rem;
  line-height: 1.78;
  opacity: 0.9;
}

/* ============================================
   SCHEITERN STATIONS
   ============================================ */
.stations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #C4BEB4;
  border: 1px solid #C4BEB4;
  max-width: 62ch;
  margin-top: 2.5rem;
}

.station-card {
  background: var(--c-sand);
  padding: 1.75rem 1.5rem;
}

.station-num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: #C4BEB4;
  line-height: 1;
  margin-bottom: 0.875rem;
}

.station-text {
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--c-dark);
}

.scheitern-conclusion { max-width: 62ch; }

/* ============================================
   LÖSUNG — SOLUTION ROWS
   ============================================ */
.solution-icon-wrap {
  width: 32px;
  height: 32px;
  color: var(--c-green);
  display: block;
  margin-bottom: 1rem;
}

.solution-row {
  border-top: 1px solid var(--c-rule);
}
.solution-row:last-child {
  border-bottom: 1px solid var(--c-rule);
}

/* ============================================
   FIT — YES/NO LISTS
   ============================================ */
.fit-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.fit-marker {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2em;
}

.fit-yes { color: var(--c-green); }
.fit-no  { color: var(--c-rule); }

/* ============================================
   PROZESS — STEPS
   ============================================ */
.step-row { border-top: 1px solid var(--c-rule); }
.step-row:last-child { border-bottom: 1px solid var(--c-rule); }

.step-num-large {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--c-rule);
}

/* ============================================
   TESTIMONIALS (Placeholder)
   ============================================ */
.testimonial-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.testimonial-card {
  border-top: 1px solid var(--c-rule);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-ph-portrait {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: repeating-linear-gradient(
    45deg,
    var(--c-rule) 0px,
    var(--c-rule) 1px,
    transparent 1px,
    transparent 7px
  );
  border: 1px solid var(--c-rule);
}

/* ============================================
   FAQ
   ============================================ */
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.34s ease;
}

.faq-body > div { overflow: hidden; }

.faq-item[data-open="true"] .faq-body { grid-template-rows: 1fr; }
.faq-item[data-open="true"] .faq-plus { transform: rotate(45deg); }

.faq-btn {
  border-top: 0.5px solid #E2DDD5;
  border-right: none;
  border-bottom: none;
  border-left: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.faq-item:last-child { border-bottom: 0.5px solid #E2DDD5; }
.faq-plus { color: var(--c-green); transition: transform 0.24s ease; flex-shrink: 0; }
.faq-q { max-width: 46ch; }

/* ============================================
   BEWERBUNG CTA (green)
   ============================================ */
#bewerbung .t-h2   { color: var(--c-cream); }
#bewerbung .t-body { color: var(--c-sand); opacity: 0.9; font-size: 1.05rem; }
#bewerbung .t-label { color: rgba(246,242,234,0.45); }
.cta-inner { max-width: 52ch; }

/* ============================================
   FOOTER
   ============================================ */
.footer-brand { color: var(--c-cream); }
.footer-copy  { color: #4A4540; }
.footer-hr    { border: none; border-top: 1px solid #2D2920; }

.footer-link {
  color: var(--c-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-link:hover { color: #fff; }

/* ============================================
   DSGVO MODAL
   ============================================ */
#modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 22, 16, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

#modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: var(--c-cream);
  border-radius: 14px;
  padding: 2rem 2rem 1.75rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  transform: translateY(8px);
  transition: transform 0.22s ease;
}

#modal-overlay.visible .modal-card { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--c-muted);
  cursor: pointer;
  padding: 0;
}

.modal-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: 1rem;
}

.modal-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--c-muted);
  margin-bottom: 1.5rem;
}

.modal-body a { color: var(--c-green); text-underline-offset: 2px; }

.modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.modal-btn-cancel {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--c-rule);
  background: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-dark);
  cursor: pointer;
  transition: border-color 0.15s;
}
.modal-btn-cancel:hover { border-color: var(--c-muted); }

.modal-btn-confirm {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: var(--c-green);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-cream);
  cursor: pointer;
  transition: filter 0.15s;
}
.modal-btn-confirm:hover { filter: brightness(1.15); }

/* ============================================
   TWEAKS PANEL
   ============================================ */
#tweaks-panel {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 300;
  background: white;
  border: 1px solid var(--c-rule);
  padding: 1.25rem 1.25rem 1.5rem;
  width: 220px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.14);
  display: none;
  font-size: 0.8125rem;
  font-family: 'DM Sans', sans-serif;
}

#tweaks-panel.visible { display: block; }

.tw-label {
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 0.45rem;
}

.tw-swatch {
  width: 26px;
  height: 26px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s;
}
.tw-swatch.active { border-color: var(--c-dark) !important; }

.tw-size-btn {
  flex: 1;
  padding: 5px 0;
  border: 1px solid var(--c-rule);
  background: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  cursor: pointer;
  color: var(--c-muted);
  transition: border-color 0.15s, color 0.15s;
}
.tw-size-btn.active {
  border-color: var(--c-green);
  color: var(--c-dark);
}

/* ============================================
   CONTENT PAGES (Impressum, Datenschutz)
   ============================================ */
.content-body { max-width: 62ch; }

.content-body h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--c-dark);
  margin-bottom: 3rem;
}

.content-body h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--c-dark);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.content-body h3 {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-dark);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.content-body p {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.78;
  color: var(--c-muted);
  margin-bottom: 1rem;
}

.content-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.content-body ul li {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.75;
  color: var(--c-muted);
  padding-left: 1rem;
  position: relative;
}

.content-body ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--c-rule);
}

.content-body a { color: var(--c-green); text-underline-offset: 2px; }

.content-body .uppercase-block {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--c-muted);
  letter-spacing: 0.01em;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.fixed    { position: fixed !important; }
.relative { position: relative; }
.absolute { position: absolute; }
.hidden   { display: none !important; }
.flex     { display: flex; }
.grid     { display: grid; }

.flex-col        { flex-direction: column; }
.flex-wrap       { flex-wrap: wrap; }
.flex-shrink-0   { flex-shrink: 0; }
.items-center    { align-items: center; }
.items-start     { align-items: flex-start; }
.items-baseline  { align-items: baseline; }
.justify-between { justify-content: space-between; }

.w-full    { width: 100%; }
.max-w-5xl { max-width: 64rem; }
.mx-auto   { margin-left: auto; margin-right: auto; }

.overflow-hidden { overflow: hidden; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0   { top: 0; }
.left-0  { left: 0; }
.right-0 { right: 0; }
.z-50    { z-index: 50; }

.mt-1  { margin-top: 0.25rem; }
.mt-2  { margin-top: 0.5rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-20 { margin-top: 5rem; }
.mb-3  { margin-bottom: 0.75rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }

.px-6  { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-5  { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-7  { padding-top: 1.75rem; padding-bottom: 1.75rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.pt-32 { padding-top: 8rem; }
.pb-8  { padding-bottom: 2rem; }
.pr-10 { padding-right: 2.5rem; }

.gap-3   { gap: 0.75rem; }
.gap-6   { gap: 1.5rem; }
.gap-8   { gap: 2rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-3 { row-gap: 0.75rem; }

.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.font-serif    { font-family: 'Source Serif 4', Georgia, serif; }
.font-sans     { font-family: 'DM Sans', 'Helvetica Neue', system-ui, sans-serif; }
.font-light    { font-weight: 300; }
.font-normal   { font-weight: 400; }
.leading-none  { line-height: 1; }
.tracking-tight { letter-spacing: -0.025em; }
.text-sm  { font-size: 0.875rem; }
.text-xs  { font-size: 0.75rem; }
.text-xl  { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }

.hover-dark:hover  { color: var(--c-dark); }
.hover-white:hover { color: #fff; }
.transition-colors { transition: color 0.18s ease; }

/* Hero badge - horizontal editorial annotation */
.hero-badge {
  position: absolute;
  right: clamp(2rem, 24vw, 34rem);
  top: 30%;
  z-index: 6;
  pointer-events: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  transform: none;
}

.hero-badge-line-svg {
  width: clamp(70px, 13vw, 190px);
  height: 24px;
  flex-shrink: 0;
  margin-top: 0.35em;
}

.hero-badge-line { display: none; } /* old vertical line */

.hero-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  text-align: left;
}

.hero-badge-text .badge-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
}

.hero-badge-text .badge-name {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.42);
  white-space: nowrap;
}

@media (max-width: 599px) {
  .hero-badge { display: none; }
}

/* ============================================
   HERO IMAGE — position fix
   ============================================ */
.hero-img {
  object-position: 55% center;
}

/* ============================================
   FAQ — alignment fix
   ============================================ */
.faq-q { text-align: left; }

/* ============================================
   NAV LOGO — flex alignment
   ============================================ */
#main-nav .nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

/* ============================================
   FOOTER BRAND — white color
   ============================================ */
.footer-brand { color: #fff; }

/* ============================================
   HOVER ANIMATIONS
   ============================================ */

/* Station cards (Scheitern section) */
.station-card {
  transition: background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  cursor: default;
}
.station-card:hover {
  background-color: #e2dbc8;
  box-shadow: 0 8px 32px rgba(26, 22, 16, 0.1);
  transform: translateY(-2px);
  position: relative;
  z-index: 1;
}

/* Solution rows (Lösung section) */
.solution-row {
  transition: background-color 0.22s ease, padding-left 0.22s ease;
  padding-left: 0;
}
.solution-row:hover {
  background-color: rgba(29, 58, 40, 0.04);
  padding-left: 0.75rem;
}

/* Step rows (Prozess section) */
.step-row {
  transition: background-color 0.22s ease;
}
.step-row:hover {
  background-color: rgba(29, 58, 40, 0.04);
}

@media (max-width: 599px) {
  .hero-badge      { display: none; }
  .stations-grid   { grid-template-columns: 1fr; }
}

@media (min-width: 640px) {
  .sm-flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md-flex          { display: flex !important; }
  .md-hidden        { display: none !important; }
  .md-flex-row      { flex-direction: row; }
  .md-items-center  { align-items: center; }
  .md-grid-2        { grid-template-columns: repeat(2, 1fr); }
  .md-grid-72-1fr   { grid-template-columns: 72px 1fr; }
  .md-grid-180-1fr  { grid-template-columns: 180px 1fr; }
  .md-gap-14        { gap: 3.5rem; }
  .md-gap-16        { gap: 4rem; }
  .md-gap-20        { gap: 5rem; }
  .md-border-l      { border-left: 1px solid var(--c-rule); }
  .md-pl-16         { padding-left: 4rem; }
}

@media (min-width: 1024px) {
  .lg-px-16 { padding-left: 4rem; padding-right: 4rem; }
}

/* ============================================
   HERO FIXES — Alignment + Größe
   ============================================ */

/* Hero-content bündig mit Nav-Logo (gleiche Padding-Logik wie <nav>) */
.hero-content {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 4rem;
  max-width: none;
}
@media (min-width: 1024px) {
  .hero-content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* H1 Größe auf Niveau des Referenz-Designs */
.hero-h1 {
  font-size: clamp(2rem, 3.5vw, 3.8rem);
}

/* ============================================
   NAV LOGO — SVG als <img>, Farbwechsel via filter
   ============================================ */
#main-nav .nav-logo img {
  display: block;
  height: 22px;
  width: auto;
  transition: filter 0.35s ease;
}

/* Scrolled: cream Logo → schwarz machen */
#main-nav.nav-scrolled .nav-logo img {
  filter: brightness(0);
}

body.page-content #main-nav .nav-logo img {
  filter: brightness(0);
}
