/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #A0522D;
  --color-primary-light: #C4845C;
  --color-bg: #FAF5F0;
  --color-bg-alt: #F0E8DF;
  --color-text: #3B2F2F;
  --color-text-light: #6B5B5B;
  --color-accent: #8B9A6B;
  --color-white: #FFFDF9;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --max-width: 1100px;
  --section-padding: 6rem 2rem;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

/* === Typography === */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.3rem; }

p {
  max-width: 65ch;
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 245, 240, 0.9);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 1px 10px rgba(59, 47, 47, 0.08);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--color-primary);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: all 0.3s;
}

/* === Hero === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(170deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.hero__content {
  max-width: 700px;
}

.hero__label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(160, 82, 45, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* === Section Shared === */
.section {
  padding: var(--section-padding);
}

.section__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section h2 {
  margin-bottom: 1.5rem;
}

/* === About === */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}

.about__image {
  aspect-ratio: 3/4;
  background: var(--color-bg-alt);
  border-radius: 12px;
  overflow: hidden;
}

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

.about__text p {
  margin-bottom: 1.2rem;
  color: var(--color-text-light);
}

.about__text p:first-of-type {
  color: var(--color-text);
  font-size: 1.05rem;
}

/* === Angebot === */
.angebot {
  background: var(--color-bg-alt);
}

.angebot__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.angebot__card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.angebot__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59, 47, 47, 0.08);
}

.angebot__icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.angebot__card h3 {
  margin-bottom: 0.8rem;
  color: var(--color-primary);
}

.angebot__card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.angebot__pricing {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--color-white);
  border-radius: 12px;
}

.angebot__price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--color-primary);
  margin: 0.5rem 0;
}

.angebot__price-detail {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* === Netzwerk === */
.netzwerk__container {
  text-align: center;
}

.netzwerk h2 em {
  color: var(--color-primary);
  font-style: italic;
}

.netzwerk__intro {
  max-width: 58ch;
  margin: 1.5rem auto 0;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

.netzwerk__how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 3.5rem auto 2rem;
  max-width: 900px;
  text-align: left;
}

.netzwerk__step {
  position: relative;
  padding-top: 0.5rem;
}

.netzwerk__step-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-primary);
  width: 2.6rem;
  height: 2.6rem;
  border: 1.5px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.netzwerk__step h3 {
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-size: 1.15rem;
}

.netzwerk__step p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.netzwerk__note {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 1rem auto 2rem;
}

@media (max-width: 768px) {
  .netzwerk__how {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* === Contact === */
.contact {
  text-align: center;
}

.contact__info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: var(--color-primary);
  transition: opacity 0.2s;
}

.contact__link:hover {
  opacity: 0.7;
}

.contact__text {
  max-width: 50ch;
  margin: 0 auto;
  color: var(--color-text-light);
}

/* === Footer === */
.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
  border-top: 1px solid var(--color-bg-alt);
}

.footer__links {
  margin-top: 0.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--color-text-light);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--color-primary);
}

/* === Legal Pages === */
.legal {
  padding-top: 8rem;
}

.legal h1 {
  margin-bottom: 2rem;
}

.legal h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.legal p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.legal a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* === Scroll Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* === Quiz === */
.quiz {
  text-align: center;
}

.quiz__container {
  max-width: 640px;
  margin: 2rem auto 0;
  background: var(--color-white);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 24px rgba(59, 47, 47, 0.06);
}

.quiz__progress {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.quiz__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  transition: background 0.3s;
}

.quiz__dot.active {
  background: var(--color-primary);
}

.quiz__dot.done {
  background: var(--color-accent);
}

.quiz__step {
  display: none;
}

.quiz__step.active {
  display: block;
}

.quiz__question {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.quiz__options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz__option {
  padding: 1rem 1.5rem;
  border: 1.5px solid var(--color-bg-alt);
  border-radius: 10px;
  background: var(--color-bg);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  text-align: left;
  transition: all 0.2s;
}

.quiz__option:hover {
  border-color: var(--color-primary-light);
  background: var(--color-white);
}

.quiz__option.selected {
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.quiz__result {
  display: none;
}

.quiz__result.active {
  display: block;
}

.quiz__result-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.quiz__result h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.quiz__result p {
  color: var(--color-text-light);
  margin: 0 auto 1.5rem;
  max-width: 45ch;
}

.quiz__restart {
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 1rem;
  text-decoration: underline;
  font-family: var(--font-sans);
}

.quiz__restart:hover {
  color: var(--color-text);
}

/* === FAQ === */
.faq__list {
  max-width: 740px;
  margin: 2rem auto 0;
}

.faq__item {
  border-bottom: 1px solid var(--color-bg-alt);
}

.faq__item summary {
  padding: 1.3rem 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
  transition: color 0.2s;
}

.faq__item summary:hover {
  color: var(--color-primary);
}

.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform 0.3s;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__answer {
  padding: 0 0 1.3rem;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 60ch;
}

/* === Newsletter === */
.newsletter {
  background: var(--color-bg-alt);
  text-align: center;
  padding: 4rem 2rem;
}

.newsletter__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.newsletter h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 0.5rem;
}

.newsletter__subtitle {
  color: var(--color-text-light);
  margin: 0 auto 1.5rem;
  max-width: 45ch;
}

.newsletter__form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid var(--color-bg);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--color-white);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter__input::placeholder {
  color: var(--color-text-light);
}

.newsletter__input:focus {
  border-color: var(--color-primary);
}

/* === Mobile === */
@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 1.5rem;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--color-bg);
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__toggle {
    display: block;
    z-index: 101;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__image {
    max-height: 350px;
  }

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

  .quiz__container {
    padding: 2rem 1.5rem;
  }

  .newsletter__form {
    flex-direction: column;
  }
}

/* ============================================================
   NEW MULTI-PAGE COMPONENTS
   ============================================================ */

/* === Footer (multi-column, new pages) === */
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  text-align: left;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.footer__tagline {
  color: var(--color-text-light);
  font-size: 0.9rem;
  max-width: 28ch;
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.footer__nav a {
  color: var(--color-text-light);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--color-primary); }

.footer__legal {
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.8rem;
  color: var(--color-text-light);
  border-top: 1px solid var(--color-bg-alt);
  max-width: 100%;
}

/* === Hero (neue Seiten) === */
.page-hero {
  padding: 9rem 2rem 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* === About Page === */
.about-text {
  padding: 0 2rem 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  max-width: 65ch;
  line-height: 1.8;
}

/* === Timeline (Werdegang) === */
.timeline {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.timeline__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.timeline__entries {
  margin-top: 2.5rem;
}

.timeline__entry {
  display: grid;
  grid-template-columns: 120px 1px 1fr;
  gap: 0 2rem;
  padding: 1.25rem 0;
}

.timeline__year {
  text-align: right;
  font-size: 0.82rem;
  color: var(--color-text-light);
  padding-top: 0.25rem;
  line-height: 1.4;
}

.timeline__line {
  position: relative;
  background: var(--color-bg);
}

.timeline__line::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-primary-light);
}

.timeline__content { padding-left: 0.25rem; }

.timeline__company {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-text);
}

.timeline__role {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-top: 0.1rem;
}

.timeline__desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 0.3rem;
  max-width: 55ch;
  line-height: 1.5;
}

/* === CV-CTA (Link zu lebenslauf.html) === */
.cv-cta {
  padding: 4rem 2rem;
  text-align: center;
}

.cv-cta__inner {
  display: inline-block;
  padding: 2.5rem 3rem;
  border: 1px solid var(--color-bg-alt);
  background: var(--color-white);
  max-width: 480px;
  width: 100%;
}

.cv-cta__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.cv-cta__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.cv-cta__sub {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  max-width: 35ch;
  margin-left: auto;
  margin-right: auto;
}

/* === Values (about-Variante) === */
.values-section {
  padding: var(--section-padding);
}

.values-section__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.value-item__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.value-item__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 32ch;
}

/* === CTA Section === */
.cta-section {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
  text-align: center;
}

.cta-section__container {
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--color-text-light);
  margin: 0 auto 2rem;
  max-width: 45ch;
}

/* === Workshops (Studio) === */
.workshops {
  padding: var(--section-padding);
}

.workshops__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.workshops__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.workshop {
  padding: 2rem;
  border: 1px solid var(--color-bg-alt);
  background: var(--color-white);
}

.workshop__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.workshop__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 32ch;
}

/* === Process (Studio: Discovery → Umsetzung) === */
.process {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.process__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.process__intro {
  max-width: 55ch;
  color: var(--color-text-light);
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.process__step {
  background: var(--color-white);
  padding: 2.5rem 2rem;
}

.process__step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--color-primary-light);
  font-style: italic;
  line-height: 1;
  margin-bottom: 1rem;
}

.process__step-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.process__step-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* === For Whom (Studio) === */
.for-whom {
  padding: var(--section-padding);
}

.for-whom__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.for-whom__text {
  max-width: 65ch;
  color: var(--color-text-light);
  margin-top: 1.5rem;
  line-height: 1.8;
}

.for-whom__text p + p {
  margin-top: 1rem;
}

/* === Hub Hero === */
.hub-hero {
  padding: 11rem 2rem 6rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hub-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.15;
  max-width: 14ch;
}

.hub-hero h1 em {
  font-style: italic;
  color: var(--color-primary);
}

.hub-hero__sub {
  margin-top: 1.5rem;
  color: var(--color-text-light);
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* === Doors (Hub Drei-Türen) === */
.doors {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.doors__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.doors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.door {
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-bg);
  background: var(--color-white);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.door:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(59, 47, 47, 0.07);
}

.door--featured {
  border-color: var(--color-primary-light);
}

.door__verb {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: block;
}

.door__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.door__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
  flex: 1;
}

.door__link {
  display: inline-block;
  margin-top: 1.75rem;
  color: var(--color-primary);
  font-size: 0.9rem;
  transition: gap 0.2s;
}

.door__link:hover {
  text-decoration: underline;
}

/* === Hub: Robin-Teaser === */
.hub-about {
  padding: var(--section-padding);
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hub-about__text p {
  color: var(--color-text-light);
  margin-top: 1rem;
  line-height: 1.8;
}

.hub-about__link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--color-primary);
  font-size: 0.9rem;
}

.hub-about__link:hover { text-decoration: underline; }

/* === Contact Doors === */
.contact-doors {
  padding: var(--section-padding);
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-door {
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-bg-alt);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
}

.contact-door__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.contact-door__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.contact-door__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.75rem;
}

/* === Stage (Bühne) === */
.stage {
  padding: var(--section-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.stage__section {
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.stage__section:last-child {
  margin-bottom: 0;
}

.stage__label-block {}

.stage__text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.stage__text p + p {
  margin-top: 1rem;
}

/* === Mobile: new components === */
@media (max-width: 768px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    padding: 2rem 1.5rem;
  }

  .footer__brand { grid-column: 1 / -1; }

  .timeline__entry {
    grid-template-columns: 80px 1px 1fr;
    gap: 0 1rem;
  }

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

  .cv-cta__inner {
    padding: 2rem 1.5rem;
  }

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

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

  .stage__section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .hub-about {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-doors {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   STUDIO PAGE — cool dark/tech identity (cyan accent)
   ============================================================ */

/* Farb-System für Studio — überschreibt globale Vars (auch Dark Mode) */
body[data-page="studio"] {
  --color-primary:       #22D3EE;
  --color-primary-light: #67E8F9;
  --color-bg:            #0A0E1A;
  --color-bg-alt:        #0F172A;
  --color-text:          #E2E8F0;
  --color-text-light:    #94A3B8;
  --color-accent:        #38BDF8;
  --color-white:         #111827;
}

/* Nav: dunkel mit Cyan-Akzenten */
.studio-nav {
  background: rgba(10, 14, 26, 0.96) !important;
}

.studio-nav .nav__logo       { color: #22D3EE; }
.studio-nav .nav__links a    { color: #64748B; }
.studio-nav .nav__links a:hover { color: #E2E8F0; }
.studio-nav .nav__lang       { border-color: #1E293B; color: #64748B; }
.studio-nav .nav__lang:hover { border-color: #22D3EE; color: #22D3EE; }
.studio-nav .nav__theme      { color: #64748B; }
.studio-nav .nav__theme:hover { color: #22D3EE; }
.studio-nav .nav__toggle span { background: #64748B; }
.studio-nav.scrolled { box-shadow: 0 1px 12px rgba(0, 0, 0, 0.6); }

@media (max-width: 768px) {
  .studio-nav .nav__links { background: #0A0E1A; }
}

/* Hero — immer dunkel */
.studio-hero {
  background: #0A0E1A;
  padding: 9rem 2rem 6rem;
}

.studio-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.studio-hero__status {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4ADE80;
  margin-bottom: 1.75rem;
}

.studio-hero h1 {
  color: #E2E8F0;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.studio-hero__sub {
  color: #64748B;
  font-size: 1.05rem;
  max-width: 55ch;
  margin-top: 1.5rem;
  line-height: 1.8;
}

.studio-hero__ctas {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.studio-hero__scroll {
  color: #475569;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.studio-hero__scroll:hover { color: #E2E8F0; }

/* Tech Stack Row */
.studio-stack {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.studio-stack__label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1E293B;
  margin-bottom: 1rem;
}

.studio-stack__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.studio-stack__item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 3px;
  color: #475569;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s;
}

.studio-stack__item:hover {
  border-color: rgba(34, 211, 238, 0.4);
  color: #94A3B8;
}

/* Leistungen / Service Cards */
.studio-services {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.studio-services__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.studio-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.studio-card {
  padding: 2.5rem 2rem;
  background: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.studio-card:hover {
  border-color: rgba(34, 211, 238, 0.2);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.06);
}

.studio-card__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.studio-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.studio-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  margin-bottom: 2rem;
}

.studio-card__list li {
  font-size: 0.875rem;
  color: var(--color-text-light);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.studio-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.75rem;
  top: 0.1em;
}

.studio-card__cta {
  font-size: 0.85rem;
  color: var(--color-primary);
  transition: opacity 0.2s;
  margin-top: auto;
}

.studio-card__cta:hover { opacity: 0.65; }

/* Portfolio / Projekte */
.studio-portfolio {
  padding: var(--section-padding);
}

.studio-portfolio__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.studio-projects { margin-top: 2.5rem; }

.studio-project {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-bg-alt);
}

.studio-project:first-child {
  border-top: 1px solid var(--color-bg-alt);
}

.studio-project__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.studio-project__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-text);
}

.studio-project__year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--color-text-light);
  white-space: nowrap;
}

.studio-project__desc {
  font-size: 0.875rem;
  color: var(--color-text-light);
  max-width: 60ch;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.studio-project__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.studio-project__tags span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  padding: 0.2rem 0.55rem;
  background: rgba(34, 211, 238, 0.07);
  color: #475569;
  border-radius: 3px;
  border: 1px solid rgba(34, 211, 238, 0.12);
}

@media (max-width: 768px) {
  .studio-services__grid { grid-template-columns: 1fr; }
  .studio-project__header { flex-direction: column; gap: 0.2rem; }
}

/* === Dark Mode === */
[data-theme="dark"] {
  --color-primary: #C4845C;
  --color-primary-light: #D4A07A;
  --color-bg: #1E1A17;
  --color-bg-alt: #2A2420;
  --color-text: #E8E0D8;
  --color-text-light: #A89888;
  --color-accent: #A0B080;
  --color-white: #252019;
}

[data-theme="dark"] .nav {
  background: rgba(30, 26, 23, 0.92);
}

[data-theme="dark"] .nav.scrolled {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .nav__links {
  background: var(--color-bg);
}

[data-theme="dark"] .btn--primary:hover {
  box-shadow: 0 4px 20px rgba(196, 132, 92, 0.3);
}

[data-theme="dark"] .door {
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .door:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .contact-door {
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .workshop-card {
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .quiz__container {
  background: var(--color-bg-alt);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .faq__item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .newsletter__input {
  background: var(--color-bg-alt);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--color-text);
}

[data-theme="dark"] .cv-cta__inner {
  border-color: rgba(255, 255, 255, 0.1);
}

/* === Nav Tools (lang + theme toggles) === */
.nav__tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.5rem;
}

.nav__lang {
  background: none;
  border: 1px solid var(--color-text-light);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.28rem 0.65rem;
  border-radius: 50px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}

.nav__lang:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.nav__theme {
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  line-height: 1;
}

.nav__theme:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .nav__tools {
    margin-left: auto;
    margin-right: 0.5rem;
  }
}

/* Studio: Button-Glow und Footer */
body[data-page="studio"] .btn--primary {
  color: #0A0E1A;
}

body[data-page="studio"] .btn--primary:hover {
  box-shadow: 0 4px 24px rgba(34, 211, 238, 0.3);
}

body[data-page="studio"] .footer {
  border-top-color: rgba(255, 255, 255, 0.06);
}

body[data-page="studio"] .process__step-num {
  color: #22D3EE;
  font-style: normal;
}

/* ================================================================
   COACHING PAGE — dark forest green / nature identity
   ================================================================ */

body[data-page="coaching"] {
  --color-primary:       #6BBF6A;
  --color-primary-light: #8DD68B;
  --color-bg:            #091509;
  --color-bg-alt:        #0E2210;
  --color-text:          #DCF0DC;
  --color-text-light:    #5C8B5C;
  --color-accent:        #8DB87A;
  --color-white:         #101E10;
}

/* Nav */
body[data-page="coaching"] .nav {
  background: rgba(9, 21, 9, 0.96);
}
body[data-page="coaching"] .nav__logo         { color: #6BBF6A; }
body[data-page="coaching"] .nav__links a       { color: #3D6B3D; }
body[data-page="coaching"] .nav__links a:hover { color: #DCF0DC; }
body[data-page="coaching"] .nav__lang          { border-color: #1A3A1A; color: #3D6B3D; }
body[data-page="coaching"] .nav__lang:hover    { border-color: #6BBF6A; color: #6BBF6A; }
body[data-page="coaching"] .nav__theme         { color: #3D6B3D; }
body[data-page="coaching"] .nav__theme:hover   { color: #6BBF6A; }
body[data-page="coaching"] .nav__toggle span   { background: #3D6B3D; }
body[data-page="coaching"] .nav.scrolled       { box-shadow: 0 1px 12px rgba(0, 0, 0, 0.6); }

@media (max-width: 768px) {
  body[data-page="coaching"] .nav__links { background: #091509; }
}

/* Hero — tiefer Wald, organisches SVG-Geäst */
body[data-page="coaching"] .hero {
  background: linear-gradient(160deg, #091509 0%, #0C1E0C 50%, #091509 100%);
  position: relative;
  overflow: hidden;
}

body[data-page="coaching"] .hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 700'%3E%3Cg stroke='%236BBF6A' stroke-width='1' fill='none' opacity='0.18'%3E%3Cpath d='M400 700 C390 620 370 570 350 500 C330 430 290 390 270 320'/%3E%3Cpath d='M350 500 C320 480 280 475 250 455'/%3E%3Cpath d='M370 570 C395 545 430 540 455 520'/%3E%3Cpath d='M270 320 C250 280 240 230 245 170 C248 120 260 80 270 40'/%3E%3Cpath d='M245 170 C220 160 195 155 175 140'/%3E%3Cpath d='M260 80 C285 65 310 50 330 30'/%3E%3Cpath d='M270 320 C295 300 320 295 345 275'/%3E%3Cpath d='M350 500 C370 465 380 430 375 390'/%3E%3Cpath d='M375 390 C395 375 420 365 440 345'/%3E%3Cpath d='M375 390 C355 370 340 345 345 310'/%3E%3Cpath d='M400 700 C420 660 450 640 475 610'/%3E%3Cpath d='M245 170 C260 145 265 115 258 85'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  pointer-events: none;
}

body[data-page="coaching"] .hero__label    { color: #6BBF6A; }
body[data-page="coaching"] .hero h1        { color: #DCF0DC; }
body[data-page="coaching"] .hero h1 em     { color: #6BBF6A; }
body[data-page="coaching"] .hero__subtitle { color: #3D6B3D; }

body[data-page="coaching"] .btn--primary {
  background: #6BBF6A;
  color: #091509;
}
body[data-page="coaching"] .btn--primary:hover {
  background: #8DD68B;
  box-shadow: 0 4px 24px rgba(107, 191, 106, 0.3);
  color: #091509;
}
body[data-page="coaching"] .btn--outline {
  border-color: #6BBF6A;
  color: #6BBF6A;
}
body[data-page="coaching"] .btn--outline:hover {
  background: #6BBF6A;
  color: #091509;
}

/* About */
body[data-page="coaching"] .about__image {
  background: #0E2210;
  border: 1px solid rgba(107, 191, 106, 0.08);
}

/* Angebot cards */
body[data-page="coaching"] .angebot__card:hover {
  box-shadow: 0 6px 24px rgba(107, 191, 106, 0.1);
  transform: translateY(-3px);
}
body[data-page="coaching"] .angebot__card h3    { color: #6BBF6A; }
body[data-page="coaching"] .angebot__price      { color: #6BBF6A; }
body[data-page="coaching"] .angebot__pricing {
  border: 1px solid rgba(107, 191, 106, 0.1);
}

/* Netzwerk Schritte */
body[data-page="coaching"] .netzwerk__step-num {
  border-color: #6BBF6A;
  color: #6BBF6A;
}
body[data-page="coaching"] .netzwerk h2 em { color: #6BBF6A; }

/* Quiz */
body[data-page="coaching"] .quiz__container {
  background: #101E10;
  box-shadow: none;
  border: 1px solid rgba(107, 191, 106, 0.08);
}
body[data-page="coaching"] .quiz__option {
  background: #091509;
  border-color: rgba(107, 191, 106, 0.12);
  color: #DCF0DC;
}
body[data-page="coaching"] .quiz__option:hover {
  border-color: rgba(107, 191, 106, 0.4);
  background: #0E2210;
}
body[data-page="coaching"] .quiz__option.selected {
  border-color: #6BBF6A;
  background: #0E2210;
  box-shadow: 0 0 0 1px #6BBF6A;
}
body[data-page="coaching"] .quiz__dot         { background: #1A3A1A; }
body[data-page="coaching"] .quiz__dot.active  { background: #6BBF6A; }
body[data-page="coaching"] .quiz__dot.done    { background: #3D6B3D; }
body[data-page="coaching"] .quiz__question    { color: #DCF0DC; }
body[data-page="coaching"] .quiz__result h3   { color: #6BBF6A; }

/* FAQ */
body[data-page="coaching"] .faq__item         { border-bottom-color: rgba(107, 191, 106, 0.1); }
body[data-page="coaching"] .faq__item summary::after { color: #6BBF6A; }

/* Newsletter */
body[data-page="coaching"] .newsletter {
  background: #0C1D0C;
}
body[data-page="coaching"] .newsletter__input {
  background: #091509;
  border-color: rgba(107, 191, 106, 0.15);
  color: #DCF0DC;
}
body[data-page="coaching"] .newsletter__input::placeholder { color: #3D6B3D; }
body[data-page="coaching"] .newsletter__input:focus        { border-color: #6BBF6A; }

/* Footer */
body[data-page="coaching"] .footer       { border-top-color: rgba(107, 191, 106, 0.08); }
body[data-page="coaching"] .footer__nav a:hover { color: #6BBF6A; }

/* ================================================================
   BÜHNE PAGE — weiß, expressiv, neurographisch
   ================================================================ */

body[data-page="buehne"] {
  --color-bg:            #FFFFFF;
  --color-bg-alt:        #F5F4F2;
  --color-text:          #111111;
  --color-text-light:    #666666;
  --color-primary:       #FF2D78;
  --color-primary-light: #FF6BA0;
  --color-accent:        #FF6B35;
  --color-white:         #FFFFFF;
}

/* Nav: weiß */
body[data-page="buehne"] .nav {
  background: rgba(255, 255, 255, 0.95);
}
body[data-page="buehne"] .nav__logo         { color: #111111; }
body[data-page="buehne"] .nav__links a       { color: #888888; }
body[data-page="buehne"] .nav__links a:hover { color: #FF2D78; }
body[data-page="buehne"] .nav__lang          { border-color: #DDDDDD; color: #888888; }
body[data-page="buehne"] .nav__lang:hover    { border-color: #FF2D78; color: #FF2D78; }
body[data-page="buehne"] .nav__theme         { color: #888888; }
body[data-page="buehne"] .nav__theme:hover   { color: #FF2D78; }
body[data-page="buehne"] .nav__toggle span   { background: #111111; }
body[data-page="buehne"] .nav.scrolled       { box-shadow: 0 1px 8px rgba(0,0,0,0.08); }

@media (max-width: 768px) {
  body[data-page="buehne"] .nav__links { background: #FFFFFF; }
}

/* === Neurographik Hero === */
.neuro-hero {
  position: relative;
  width: 100%;
  min-height: 68vh;
  background: #FFFFFF;
  display: flex;
  align-items: center;
}

.neuro-reveal {
  position: relative;
  height: 200vh;
  background: #FFFFFF;
}

.neuro-reveal__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.neuro-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.neuro-fill {
  opacity: 0;
}

.neuro-node {
  opacity: 0;
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center;
  transition: none;
}

.neuro-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6rem;
  width: 100%;
}

.neuro-hero__content > * { pointer-events: auto; }

.neuro-hero__label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #FF2D78;
  margin-bottom: 1.5rem;
}

.neuro-hero__h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: #111111;
  line-height: 1.1;
  font-weight: 400;
}

.neuro-hero__sub {
  font-size: 1.05rem;
  color: #666666;
  max-width: 46ch;
  margin-top: 1.5rem;
  line-height: 1.75;
}

.neuro-hero__ctas {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.neuro-hero__link {
  color: #999999;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.neuro-hero__link:hover { color: #111111; }

.neuro-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #CCCCCC;
  animation: neuroScrollBounce 2.2s ease-in-out infinite;
}

@keyframes neuroScrollBounce {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(7px); }
}

/* Button auf Bühne-Seite */
body[data-page="buehne"] .btn--primary {
  background: #111111;
  color: #FFFFFF;
}
body[data-page="buehne"] .btn--primary:hover {
  background: #333333;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* === Bühne Inhaltssektionen === */
.buehne-section {
  padding: var(--section-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.buehne-section--accent {
  background: #F5F4F2;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.buehne-section--accent > .buehne-section__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.buehne-section__container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.buehne-section__label-col .section__label { color: #FF2D78; }

body[data-page="buehne"] .section__label { color: #FF2D78; }

.buehne-section__text-col p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.85;
  max-width: 55ch;
  margin-bottom: 1rem;
}

.buehne-cta-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: #FF2D78;
  transition: opacity 0.2s;
}
.buehne-cta-link:hover { opacity: 0.65; }

/* === Brand Logos === */
.buehne-brands {
  padding: 5rem 2rem;
  background: #FFFFFF;
}

.buehne-brands__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.buehne-brands__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.buehne-brand {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.55rem 1.2rem;
  border: 1.5px solid currentColor;
  transition: background 0.2s, color 0.2s;
  cursor: default;
}

.buehne-brand--magenta { color: #FF2D78; }
.buehne-brand--cyan    { color: #00A8CC; }
.buehne-brand--orange  { color: #E05A00; }
.buehne-brand--violet  { color: #7C3AED; }
.buehne-brand--teal    { color: #007A72; }
.buehne-brand--yellow  { color: #B8960C; }

.buehne-brand:hover {
  background: currentColor;
  color: #FFFFFF !important;
}

/* === CTA Sektion === */
.buehne-cta-section {
  background: #111111;
  padding: var(--section-padding);
  text-align: center;
}

.buehne-cta-section__inner {
  max-width: 600px;
  margin: 0 auto;
}

.buehne-cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.buehne-cta-section p {
  color: #888888;
  margin: 0 auto 2rem;
  max-width: 42ch;
}

.buehne-cta-section .btn--primary {
  background: #FF2D78;
  color: #FFFFFF;
}

.buehne-cta-section .btn--primary:hover {
  background: #FF6BA0;
  box-shadow: 0 4px 24px rgba(255, 45, 120, 0.4);
}

/* === Footer Bühne === */
.buehne-footer {
  background: #111111;
  color: #888888;
  border-top: none !important;
}

.buehne-footer .footer__logo         { color: #FFFFFF; }
.buehne-footer .footer__tagline      { color: #555555; }
.buehne-footer .footer__nav h4       { color: #DDDDDD; }
.buehne-footer .footer__nav a        { color: #666666; }
.buehne-footer .footer__nav a:hover  { color: #FF2D78; }
.buehne-footer .footer__legal        { color: #444444; border-top-color: #222222; }

@media (max-width: 768px) {
  .neuro-hero__content        { padding: 0 2rem; }
  .neuro-hero__h1             { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .buehne-section__container  { grid-template-columns: 1fr; gap: 2rem; }
  .buehne-section--accent > .buehne-section__container { padding: 0 1.5rem; }
}
