/*
Theme Name:  mach ma laut
Theme URI:   https://mach-ma-laut.de
Author:      Kristoffer Baumann
Author URI:  https://mach-ma-laut.de
Description: Custom theme for mach ma laut – Musik, Moderation, Pädagogik, Stadtgestaltung.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: machmalaut
*/

/* =========================================================
   VARIABLEN & RESET
   ========================================================= */
:root {
  --night:     #0A0A0F;
  --night-2:   #15151D;
  --night-3:   #050507;
  --bone:      #F4F2EC;
  --ink:       #141214;
  --ink-soft:  #5A5560;
  --magenta:   #EC2D8A;
  --magenta-2: #C61E72;
  --blue:      #38BDF8;
  --blue-2:    #0EA5E9;
  --display:   'Bricolage Grotesque', system-ui, sans-serif;
  --text:      'Inter', system-ui, sans-serif;
  --max:       1280px;
  --pad:       clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.55;
  color: var(--bone);
  background: var(--night);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--text);
  border: 0;
  cursor: pointer;
  border-radius: 2px;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
}
.btn-hot  { background: var(--magenta); color: var(--bone); }
.btn-hot:hover { background: var(--magenta-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}
.btn-ghost:hover { background: var(--blue); color: var(--night); border-color: var(--blue); }

/* =========================================================
   HEADER / NAV  –  zwei Modi
   .header--abs  = Homepage (transparent, absolute)
   .header--fixed = Unterseiten (blur, fixed)
   ========================================================= */
header {
  top: 0; left: 0; right: 0;
  z-index: 50;
}
header.header--abs {
  position: absolute;
  padding: 28px var(--pad);
}
header.header--fixed {
  position: fixed;
  padding: 18px var(--pad);
  background: rgba(5,5,7,0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244,242,236,.06);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img { height: 60px; width: auto; }
@media (max-width: 600px) { .logo img { height: 44px; } }

.menu {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 28px;
  align-items: center;
}
.menu a {
  font-size: 14px;
  color: rgba(244,242,236,.72);
  font-weight: 500;
  transition: color .15s;
}
.menu a:hover,
.menu a.active,
.menu .current-menu-item > a { color: var(--bone); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--bone);
  margin: 5px 0;
  transition: transform .22s, opacity .22s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .menu {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(5,5,7,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 80px 40px;
  }
  .menu.open { display: flex; }
  .menu li   { text-align: center; }
  .menu a    { font-size: 22px; color: var(--bone); }
  .menu .btn { font-size: 18px; padding: 14px 32px; margin-top: 8px; }
}

/* =========================================================
   GEMEINSAME KOMPONENTEN
   ========================================================= */
.eyebrow {
  font-family: var(--text);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow .dot { font-size: 9px; }

.section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0;
}
.section-sub {
  font-size: 17px;
  line-height: 1.58;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0;
}
.inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Page Hero (alle Unterseiten) */
.page-hero {
  background: var(--night-3);
  padding: 140px var(--pad) 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 38vw; max-width: 520px;
  height: 6px;
  background: var(--magenta);
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-hero .section-title { color: var(--bone); margin-bottom: 0; }
.page-hero-lead {
  font-size: clamp(16px, 1.4vw, 18px);
  color: rgba(244,242,236,.72);
  line-height: 1.62;
  margin: 0 0 28px;
}
@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .page-hero { padding-bottom: 60px; }
}

/* Page CTA (Unterseiten unten) */
.page-cta {
  background: var(--night-3);
  padding: 80px var(--pad) 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,45,138,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}
.page-cta h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--bone);
  margin: 0 0 16px;
}
.page-cta p {
  font-size: 17px;
  color: rgba(244,242,236,.55);
  margin: 0 0 36px;
  line-height: 1.55;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   HOMEPAGE HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--night-3);
}
.hero-photo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 60%;
  z-index: 0;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.55) saturate(0.45);
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--night-3) 0%, rgba(5,5,7,0.7) 20%, rgba(5,5,7,0.15) 50%, transparent 75%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--night-3) 0%, var(--night-3) 32%, rgba(5,5,7,0.30) 54%, rgba(5,5,7,0.05) 75%, transparent 90%),
    linear-gradient(to bottom, rgba(5,5,7,0.65) 0%, transparent 18%, transparent 70%, rgba(5,5,7,0.90) 100%);
}
.hero .hero-glow {
  z-index: 2;
  background:
    radial-gradient(ellipse 30% 48% at 78% 25%, rgba(236,45,138,0.40) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 60% 88%, rgba(56,189,248,0.38) 0%, transparent 62%),
    radial-gradient(ellipse 20% 30% at 5%  60%, rgba(56,189,248,0.18) 0%, transparent 70%);
}
.hero-texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, transparent 0 2px, rgba(255,255,255,.009) 2px 3px);
  mix-blend-mode: overlay;
}
.hero-stripe {
  position: absolute;
  left: var(--pad);
  top: 108px; bottom: 80px;
  width: 5px;
  background: var(--magenta);
  z-index: 3;
}
.hero-grid {
  position: relative;
  z-index: 4;
  max-width: var(--max);
  margin: 0 auto;
  padding: 108px var(--pad) 68px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  font-family: var(--text);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bone);
  flex-wrap: wrap;
  max-width: 600px;
}
.hero-eyebrow .dot  { color: var(--blue); font-size: 9px; letter-spacing: 0; }
.hero-eyebrow .name { color: var(--blue); }
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(58px, 11.5vw, 152px);
  line-height: 0.90;
  letter-spacing: -0.045em;
  margin: 0;
  color: var(--bone);
  text-shadow: 0 4px 40px rgba(5,5,7,0.50);
}
.hero h1 .punkt { color: var(--magenta); }
.hero-tagline {
  display: table;
  background: var(--magenta);
  color: var(--bone);
  font-family: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-indent: 0.22em;
  padding: 8px 16px;
  border-radius: 2px;
  margin: 12px 0 32px;
}
.hero-sub { max-width: 520px; }
.hero-lead {
  font-size: clamp(16px, 1.4vw, 18px);
  color: rgba(244,242,236,.80);
  margin: 0 0 28px;
  line-height: 1.55;
}
.hero-lead b { color: var(--bone); font-weight: 600; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

/* =========================================================
   SERVICES / CARDS
   ========================================================= */
.services {
  background: var(--bone);
  color: var(--ink);
  padding: 84px var(--pad) 96px;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 38vw; max-width: 520px;
  height: 8px;
  background: var(--magenta);
}
.services-inner { max-width: var(--max); margin: 0 auto; }
.services-head { margin-bottom: 52px; }
.services-head-bottom {
  border-top: 1px solid rgba(20,18,20,0.13);
  margin-top: 22px;
  padding-top: 20px;
}
.services .eyebrow { color: var(--magenta); }
.services .section-title { color: var(--ink); }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  background: var(--night);
  color: var(--bone);
  border-radius: 6px;
  padding: 30px 26px 28px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  transition: transform .28s, background .28s;
  text-decoration: none;
}
.card:hover { transform: translateY(-6px); background: var(--night-2); }
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 52px; height: 4px;
  background: var(--card-color, var(--magenta));
  border-radius: 0 0 2px 0;
  transition: width .38s;
}
.card:hover::before { width: 100%; border-radius: 0; }
.card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -0.14em; right: -0.05em;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(100px, 10vw, 140px);
  line-height: 1;
  color: rgba(244,242,236,0.038);
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
  transition: color .3s;
}
.card:hover::after { color: rgba(244,242,236,0.072); }
.card-header { margin-bottom: 18px; }
.card-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 3.8vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--card-color, var(--magenta));
  display: block;
  margin-bottom: 5px;
}
.card-label {
  font-family: var(--text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244,242,236,0.38);
  display: block;
  text-indent: 0.3em;
}
.card-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.card-desc {
  font-size: 14px;
  line-height: 1.60;
  color: rgba(244,242,236,.68);
  flex: 1;
  margin: 0 0 20px;
}
.card-link {
  font-weight: 700;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--card-color, var(--magenta));
  text-indent: 0.12em;
}
.card-link::after { content: '→'; font-size: 14px; letter-spacing: 0; text-indent: 0; transition: transform .18s; }
.card:hover .card-link::after { transform: translateX(6px); }
.card.c-m { --card-color: var(--magenta); }
.card.c-b { --card-color: var(--blue); }

/* =========================================================
   ÜBER MICH
   ========================================================= */
.about {
  background: var(--night-2);
  padding: 84px var(--pad) 96px;
  position: relative;
  overflow: hidden;
}
.about::after {
  content: '';
  position: absolute;
  right: -8%; top: 5%;
  width: 52%; height: 90%;
  background: radial-gradient(ellipse at center, rgba(236,45,138,0.08) 0%, rgba(56,189,248,0.05) 45%, transparent 70%);
  pointer-events: none;
}
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about .eyebrow { color: var(--magenta); }
.about .section-title { color: var(--bone); margin-bottom: 20px; }
.about-lead {
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.55;
  color: rgba(244,242,236,.78);
  margin: 0 0 26px;
  max-width: 500px;
}
.stations {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stations li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.48;
  color: rgba(244,242,236,.68);
}
.stations li::before { content: '●'; color: var(--magenta); font-size: 8px; margin-top: 6px; flex-shrink: 0; }
.stations li:nth-child(even)::before { color: var(--blue); }
.stations li strong { color: var(--bone); font-weight: 600; }
.about-photo { position: relative; }
.about-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--magenta);
  border-radius: 4px;
  opacity: 0.45;
  transform: translate(-10px, 10px);
  z-index: 0;
}
.about-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 4px;
  filter: brightness(0.92) saturate(0.9);
}

/* =========================================================
   KONTAKT / FORMULAR
   ========================================================= */
.contact {
  background: var(--night-2);
  padding: 84px var(--pad) 96px;
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 38vw; max-width: 520px;
  height: 6px;
  background: var(--magenta);
}
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.contact .eyebrow { color: var(--magenta); }
.contact .section-title { color: var(--bone); margin-bottom: 18px; }
.contact-lead {
  font-size: 16px;
  line-height: 1.62;
  color: rgba(244,242,236,.58);
  margin: 0 0 36px;
  max-width: 340px;
}
.contact-info address {
  font-style: normal;
  font-size: 15px;
  line-height: 2.0;
  color: rgba(244,242,236,.48);
}
.contact-info address a { color: rgba(244,242,236,.48); transition: color .15s; }
.contact-info address a:hover { color: var(--bone); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-indent: 0.26em;
  color: rgba(244,242,236,.42);
  margin-bottom: 10px;
}
.form-input {
  width: 100%;
  background: rgba(244,242,236,.045);
  border: 1px solid rgba(244,242,236,.11);
  border-radius: 4px;
  color: var(--bone);
  font-family: var(--text);
  font-size: 15px;
  padding: 12px 16px;
  transition: border-color .2s, background .2s;
  outline: none;
}
.form-input::placeholder { color: rgba(244,242,236,.24); }
.form-input:focus { border-color: var(--magenta); background: rgba(244,242,236,.07); }
.form-textarea { resize: vertical; min-height: 138px; line-height: 1.55; }

.anlass-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { cursor: pointer; }
.pill input { display: none; }
.pill span {
  display: block;
  font-family: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 15px;
  border: 1px solid rgba(244,242,236,.16);
  border-radius: 100px;
  color: rgba(244,242,236,.50);
  transition: border-color .18s, color .18s, background .18s;
  white-space: nowrap;
  user-select: none;
}
.pill:hover span { border-color: rgba(244,242,236,.36); color: rgba(244,242,236,.80); }
.pill input:checked + span { border-color: var(--magenta); color: var(--bone); background: rgba(236,45,138,.14); }

.form-submit-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-note { font-size: 13px; color: rgba(244,242,236,.28); margin: 0; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}
.form-success.visible { display: flex; }

/* =========================================================
   REFERENZEN / MARQUEE
   ========================================================= */
.refs {
  background: var(--night);
  padding: 84px 0 96px;
  position: relative;
  overflow: hidden;
}
.refs::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 38vw; max-width: 520px;
  height: 6px;
  background: var(--blue);
}
.refs-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.refs-head { margin-bottom: 48px; }
.refs .eyebrow { color: var(--blue); }
.refs .eyebrow .dot { color: var(--blue); }
.refs .section-title { color: var(--bone); }
.refs-sub { font-size: 16px; color: rgba(244,242,236,.40); margin: 16px 0 0; }

.refs-marquee {
  overflow: hidden;
  background: var(--magenta);
  padding: 13px 0;
  margin-bottom: 56px;
}
.refs-marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.refs-marquee-track .mname {
  font-family: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-indent: 0.24em;
  color: var(--bone);
  padding: 0 24px;
}
.refs-marquee-track .msep { color: rgba(244,242,236,0.50); font-size: 7px; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.refs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 56px;
  border-top: 1px solid rgba(244,242,236,.08);
  padding-top: 48px;
}
.refs-cat-title {
  font-family: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-indent: 0.26em;
  color: var(--blue);
  margin: 0 0 14px;
}
.refs-cat-names { font-size: 14px; line-height: 1.80; color: rgba(244,242,236,.52); margin: 0; }

/* =========================================================
   LIVE & BÜHNE
   ========================================================= */
.acts {
  background: var(--bone);
  color: var(--ink);
  padding: 80px var(--pad) 90px;
  position: relative;
}
.acts::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 38vw; max-width: 400px;
  height: 6px;
  background: var(--magenta);
}
.acts .eyebrow { color: var(--magenta); }
.acts .section-title { color: var(--ink); margin-bottom: 48px; }

.act-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.act-card {
  background: var(--night);
  color: var(--bone);
  border-radius: 6px;
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, background .25s;
  display: flex;
  flex-direction: column;
}
.act-card:hover { transform: translateY(-4px); background: var(--night-2); }
.act-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 4px; width: 48px;
  background: var(--ac, var(--magenta));
  transition: width .35s;
}
.act-card:hover::before { width: 100%; }
.act-card.ac-b { --ac: var(--blue); }
.act-genre { font-size: 10px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ac, var(--magenta)); margin: 0 0 14px; display: block; }
.act-title { font-family: var(--display); font-weight: 800; font-size: clamp(24px,2.2vw,32px); letter-spacing: -0.03em; line-height: 1.0; margin: 0 0 14px; color: var(--bone); overflow-wrap: break-word; }
.act-desc { font-size: 15px; line-height: 1.62; color: rgba(244,242,236,.62); margin: 0 0 22px; flex: 1; }
.act-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.act-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,242,236,.38); border: 1px solid rgba(244,242,236,.12); padding: 4px 10px; border-radius: 100px; }

.moderation { background: var(--night-2); padding: 80px var(--pad) 88px; }
.moderation .eyebrow { color: var(--magenta); }
.moderation .section-title { color: var(--bone); margin-bottom: 48px; }
.moderation-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.moderation-text p { font-size: 16px; line-height: 1.65; color: rgba(244,242,236,.65); margin: 0 0 22px; }
.moderation-text strong { color: var(--bone); font-weight: 600; }
.moderation-formats-title { font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: -0.02em; color: var(--bone); margin: 0 0 14px; }
.moderation-list { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.moderation-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: rgba(244,242,236,.62); }
.moderation-list li::before { content: '●'; color: var(--magenta); font-size: 8px; margin-top: 6px; flex-shrink: 0; }
.moderation-list li:nth-child(even)::before { color: var(--blue); }
.moderation-panel { background: rgba(244,242,236,.04); border: 1px solid rgba(244,242,236,.08); border-radius: 6px; padding: 28px; display: flex; flex-direction: column; gap: 22px; }
.panel-q { font-size: 10px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--blue); margin: 0 0 6px; }
.panel-a { font-size: 15px; color: rgba(244,242,236,.62); margin: 0; line-height: 1.55; }

.termine { background: var(--bone); color: var(--ink); padding: 80px var(--pad) 90px; position: relative; }
.termine::before { content: ''; position: absolute; top: 0; left: 0; width: 28vw; max-width: 360px; height: 6px; background: var(--blue); }
.termine .eyebrow { color: var(--magenta); }
.termine .section-title { color: var(--ink); margin-bottom: 48px; }
.termine-list { display: flex; flex-direction: column; gap: 0; }
.termin { display: grid; grid-template-columns: 110px 1fr auto; gap: 24px; align-items: center; padding: 22px 0; border-bottom: 1px solid rgba(20,18,20,.1); }
.termin:first-child { border-top: 1px solid rgba(20,18,20,.1); }
.termin-date { font-family: var(--display); font-weight: 800; font-size: clamp(15px,1.5vw,18px); letter-spacing: -0.02em; color: var(--ink); line-height: 1.15; }
.termin-date span { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); font-family: var(--text); margin-bottom: 3px; }
.termin-title { font-family: var(--display); font-weight: 700; font-size: clamp(16px,1.5vw,19px); letter-spacing: -0.02em; color: var(--ink); margin: 0 0 4px; }
.termin-place { font-size: 13px; color: var(--ink-soft); margin: 0; }
.termin-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; white-space: nowrap; }
.badge-hot { background: var(--magenta); color: var(--bone); }
.badge-soon { background: rgba(56,189,248,.15); color: var(--blue-2); border: 1px solid rgba(56,189,248,.25); }

/* =========================================================
   WORKSHOPS
   ========================================================= */
.formats { background: var(--bone); color: var(--ink); padding: 80px var(--pad) 90px; position: relative; }
.formats::before { content: ''; position: absolute; top: 0; right: 0; width: 38vw; max-width: 400px; height: 6px; background: var(--blue); }
.formats .eyebrow { color: var(--magenta); }
.formats .section-title { color: var(--ink); margin-bottom: 48px; }
.format-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.format-card { background: var(--night); color: var(--bone); border-radius: 6px; padding: 32px 28px 28px; position: relative; overflow: hidden; transition: transform .25s,background .25s; }
.format-card:hover { transform: translateY(-4px); background: var(--night-2); }
.format-card::before { content: ''; position: absolute; top: 0; left: 0; height: 4px; width: 48px; background: var(--fc, var(--magenta)); transition: width .35s; }
.format-card:hover::before { width: 100%; }
.format-card.fc-b { --fc: var(--blue); }
.format-num { font-family: var(--display); font-weight: 800; font-size: clamp(40px,3.5vw,52px); line-height: 0.95; letter-spacing: -0.04em; color: var(--fc, var(--magenta)); display: block; margin-bottom: 6px; }
.format-num-label { font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(244,242,236,.35); display: block; margin-bottom: 20px; }
.format-title { font-family: var(--display); font-weight: 700; font-size: clamp(20px,1.8vw,24px); letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 12px; }
.format-desc { font-size: 14px; line-height: 1.62; color: rgba(244,242,236,.68); margin: 0 0 20px; flex: 1; }
.format-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.format-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,242,236,.38); border: 1px solid rgba(244,242,236,.12); padding: 4px 10px; border-radius: 100px; }

.schools { background: var(--night-2); padding: 80px var(--pad) 88px; }
.schools .eyebrow { color: var(--blue); }
.schools .section-title { color: var(--bone); margin-bottom: 48px; }
.schools-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.schools-text p { font-size: 16px; line-height: 1.65; color: rgba(244,242,236,.65); margin: 0 0 22px; }
.schools-text strong { color: var(--bone); font-weight: 600; }
.schools-formats-title { font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: -0.02em; color: var(--bone); margin: 0 0 14px; }
.schools-list { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.schools-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: rgba(244,242,236,.62); }
.schools-list li::before { content: '●'; color: var(--magenta); font-size: 8px; margin-top: 6px; flex-shrink: 0; }
.schools-list li:nth-child(even)::before { color: var(--blue); }
.schools-faq { background: rgba(244,242,236,.04); border: 1px solid rgba(244,242,236,.08); border-radius: 6px; padding: 28px; display: flex; flex-direction: column; gap: 22px; }
.faq-q { font-size: 10px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--magenta); margin: 0 0 6px; }
.faq-a { font-size: 15px; color: rgba(244,242,236,.62); margin: 0; line-height: 1.55; }

.mobile-sec { background: var(--bone); color: var(--ink); padding: 72px var(--pad) 80px; }
.mobile-sec .eyebrow { color: var(--magenta); }
.mobile-sec .section-title { color: var(--ink); margin-bottom: 20px; }
.mobile-lead { font-size: 17px; line-height: 1.62; color: var(--ink-soft); max-width: 620px; margin: 0 0 32px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 13px; font-weight: 600; padding: 8px 18px; border: 1px solid rgba(20,18,20,.18); border-radius: 100px; color: var(--ink-soft); }

/* =========================================================
   STUDIO
   ========================================================= */
.leistungen { background: var(--bone); color: var(--ink); padding: 80px var(--pad) 90px; position: relative; }
.leistungen::before { content: ''; position: absolute; top: 0; right: 0; width: 38vw; max-width: 400px; height: 6px; background: var(--magenta); }
.leistungen .eyebrow { color: var(--magenta); }
.leistungen .section-title { color: var(--ink); margin-bottom: 48px; }
.leistung-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.leistung-card { background: var(--night); color: var(--bone); border-radius: 6px; padding: 32px 28px 28px; position: relative; overflow: hidden; transition: transform .25s,background .25s; display: flex; flex-direction: column; }
.leistung-card:hover { transform: translateY(-4px); background: var(--night-2); }
.leistung-card::before { content: ''; position: absolute; top: 0; left: 0; height: 4px; width: 48px; background: var(--lc, var(--magenta)); transition: width .35s; }
.leistung-card:hover::before { width: 100%; }
.leistung-card.lc-b { --lc: var(--blue); }
.leistung-num { font-family: var(--display); font-weight: 800; font-size: clamp(40px,3.5vw,52px); line-height: 0.95; letter-spacing: -0.04em; color: var(--lc, var(--magenta)); display: block; margin-bottom: 6px; }
.leistung-num-label { font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(244,242,236,.35); display: block; margin-bottom: 20px; }
.leistung-title { font-family: var(--display); font-weight: 700; font-size: clamp(18px,1.7vw,22px); letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 12px; }
.leistung-desc { font-size: 14px; line-height: 1.62; color: rgba(244,242,236,.68); margin: 0 0 20px; flex: 1; }
.leistung-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.leistung-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,242,236,.38); border: 1px solid rgba(244,242,236,.12); padding: 4px 10px; border-radius: 100px; }

.prozess { background: var(--night-2); padding: 80px var(--pad) 88px; }
.prozess .eyebrow { color: var(--blue); }
.prozess .section-title { color: var(--bone); margin-bottom: 48px; }
.prozess-list { display: flex; flex-direction: column; gap: 0; max-width: 820px; }
.prozess-item { display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: start; padding: 28px 0; border-bottom: 1px solid rgba(244,242,236,.07); }
.prozess-item:first-child { border-top: 1px solid rgba(244,242,236,.07); }
.prozess-num { font-family: var(--display); font-weight: 800; font-size: clamp(28px,2.8vw,40px); line-height: 1.0; letter-spacing: -0.04em; }
.prozess-num.n-m { color: var(--magenta); }
.prozess-num.n-b { color: var(--blue); }
.prozess-title { font-family: var(--display); font-weight: 700; font-size: clamp(17px,1.6vw,20px); letter-spacing: -0.02em; color: var(--bone); margin: 4px 0 8px; }
.prozess-desc { font-size: 15px; line-height: 1.60; color: rgba(244,242,236,.58); margin: 0; }

.preise { background: var(--bone); color: var(--ink); padding: 80px var(--pad) 90px; position: relative; }
.preise::before { content: ''; position: absolute; top: 0; left: 0; width: 28vw; max-width: 360px; height: 6px; background: var(--blue); }
.preise .eyebrow { color: var(--magenta); }
.preise .section-title { color: var(--ink); margin-bottom: 16px; }
.preise-sub { font-size: 16px; color: var(--ink-soft); margin: 0 0 48px; }
.preis-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.preis-card { background: var(--night); color: var(--bone); border-radius: 6px; padding: 36px 32px 32px; position: relative; overflow: hidden; }
.preis-card::before { content: ''; position: absolute; top: 0; left: 0; height: 4px; width: 100%; background: linear-gradient(90deg, var(--pc, var(--magenta)) 0%, transparent 70%); }
.preis-card.pc-b { --pc: var(--blue); }
.preis-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--pc, var(--magenta)); margin: 0 0 12px; display: block; }
.preis-title { font-family: var(--display); font-weight: 800; font-size: clamp(20px,2vw,26px); letter-spacing: -0.03em; color: var(--bone); margin: 0 0 8px; }
.preis-amount { font-family: var(--display); font-weight: 800; font-size: clamp(36px,4vw,56px); letter-spacing: -0.04em; line-height: 1.0; color: var(--pc, var(--magenta)); margin: 0 0 6px; }
.preis-amount-note { font-size: 12px; color: rgba(244,242,236,.38); margin: 0 0 24px; }
.preis-list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.preis-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(244,242,236,.65); }
.preis-list li::before { content: '●'; color: var(--pc, var(--magenta)); font-size: 7px; margin-top: 6px; flex-shrink: 0; }
.preis-list li.add::before { color: rgba(244,242,236,.25); }
.preis-list li.add { color: rgba(244,242,236,.38); }
.preis-note { font-size: 13px; color: rgba(244,242,236,.30); margin: 0; font-style: italic; }

/* =========================================================
   STADTWERK
   ========================================================= */
.was { background: var(--bone); color: var(--ink); padding: 80px var(--pad) 90px; position: relative; }
.was::before { content: ''; position: absolute; top: 0; right: 0; width: 38vw; max-width: 400px; height: 6px; background: var(--blue); }
.was .eyebrow { color: var(--magenta); }
.was .section-title { color: var(--ink); margin-bottom: 48px; }
.was-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.was-text p { font-size: 17px; line-height: 1.68; color: var(--ink-soft); margin: 0 0 22px; }
.was-text strong { color: var(--ink); font-weight: 600; }
.was-quote { background: var(--night); border-radius: 6px; padding: 36px; position: relative; overflow: hidden; }
.was-quote::before { content: ''; position: absolute; top: 0; left: 0; height: 4px; width: 100%; background: linear-gradient(90deg, var(--magenta) 0%, var(--blue) 100%); }
.was-quote blockquote { font-family: var(--display); font-weight: 700; font-size: clamp(18px,1.9vw,24px); letter-spacing: -0.025em; line-height: 1.3; color: var(--bone); margin: 0 0 20px; }
.was-quote cite { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-style: normal; font-weight: 600; color: rgba(244,242,236,.38); }

.ansaetze { background: var(--night-2); padding: 80px var(--pad) 88px; }
.ansaetze .eyebrow { color: var(--blue); }
.ansaetze .section-title { color: var(--bone); margin-bottom: 48px; }
.ansaetze-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.ansatz-card { background: rgba(244,242,236,.04); border: 1px solid rgba(244,242,236,.08); border-radius: 6px; padding: 32px 28px 28px; position: relative; overflow: hidden; transition: transform .25s,background .25s; }
.ansatz-card:hover { transform: translateY(-3px); background: rgba(244,242,236,.07); }
.ansatz-card::before { content: ''; position: absolute; top: 0; left: 0; height: 4px; width: 48px; background: var(--ac, var(--magenta)); transition: width .35s; }
.ansatz-card:hover::before { width: 100%; }
.ansatz-card.ac-b { --ac: var(--blue); }
.ansatz-num { font-family: var(--display); font-weight: 800; font-size: clamp(36px,3.2vw,48px); line-height: 0.95; letter-spacing: -0.04em; color: var(--ac, var(--magenta)); display: block; margin-bottom: 6px; }
.ansatz-num-label { font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(244,242,236,.30); display: block; margin-bottom: 20px; }
.ansatz-title { font-family: var(--display); font-weight: 700; font-size: clamp(18px,1.7vw,22px); letter-spacing: -0.02em; line-height: 1.1; color: var(--bone); margin: 0 0 12px; }
.ansatz-desc { font-size: 14px; line-height: 1.62; color: rgba(244,242,236,.58); margin: 0; }

.beispiele { background: var(--bone); color: var(--ink); padding: 80px var(--pad) 90px; position: relative; }
.beispiele::before { content: ''; position: absolute; top: 0; left: 0; width: 28vw; max-width: 340px; height: 6px; background: var(--magenta); }
.beispiele .eyebrow { color: var(--magenta); }
.beispiele .section-title { color: var(--ink); margin-bottom: 48px; }
.beispiele-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.beispiel-card { background: var(--night); color: var(--bone); border-radius: 6px; padding: 32px 28px; position: relative; overflow: hidden; }
.beispiel-card::before { content: ''; position: absolute; top: 0; left: 0; height: 4px; width: 100%; background: linear-gradient(90deg, var(--magenta) 0%, transparent 60%); }
.beispiel-ort { font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--magenta); margin: 0 0 10px; display: block; }
.beispiel-title { font-family: var(--display); font-weight: 700; font-size: clamp(17px,1.6vw,20px); letter-spacing: -0.02em; color: var(--bone); margin: 0 0 10px; }
.beispiel-desc { font-size: 14px; line-height: 1.62; color: rgba(244,242,236,.58); margin: 0; }

.gespraech { background: var(--night-2); padding: 72px var(--pad) 80px; }
.gespraech-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.gespraech-text .eyebrow { color: var(--blue); }
.gespraech-text .section-title { color: var(--bone); margin-bottom: 20px; }
.gespraech-text p { font-size: 16px; line-height: 1.65; color: rgba(244,242,236,.62); max-width: 460px; margin: 0 0 32px; }
.gespraech-facts { display: flex; flex-direction: column; gap: 20px; }
.fact { display: flex; align-items: flex-start; gap: 18px; padding: 22px; background: rgba(244,242,236,.04); border: 1px solid rgba(244,242,236,.08); border-radius: 6px; }
.fact-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.fact-title { font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: -0.02em; color: var(--bone); margin: 0 0 4px; }
.fact-desc { font-size: 13px; color: rgba(244,242,236,.52); line-height: 1.5; margin: 0; }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal-page { padding: 140px var(--pad) 96px; min-height: 80vh; }
.legal-inner { max-width: 780px; margin: 0 auto; }
.legal-eyebrow { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: var(--magenta); margin: 0 0 20px; display: flex; align-items: center; gap: 12px; }
.legal-page h1 { font-family: var(--display); font-weight: 800; font-size: clamp(32px,5vw,56px); line-height: 0.96; letter-spacing: -0.04em; color: var(--bone); margin: 0 0 52px; }
.legal-page h2 { font-family: var(--display); font-weight: 700; font-size: clamp(18px,2vw,22px); letter-spacing: -0.02em; color: var(--bone); margin: 40px 0 10px; }
.legal-page p { font-size: 16px; line-height: 1.68; color: rgba(244,242,236,.62); margin: 0 0 16px; }
.legal-page ul { font-size: 16px; line-height: 1.68; color: rgba(244,242,236,.62); margin: 0 0 16px; padding-left: 20px; }
.legal-page ul li { margin-bottom: 6px; }
.legal-page a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-page address { font-style: normal; font-size: 16px; line-height: 1.9; color: rgba(244,242,236,.62); margin: 0 0 32px; }
.legal-divider { border: 0; border-top: 1px solid rgba(244,242,236,.08); margin: 36px 0; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(244,242,236,.45); margin-bottom: 40px; transition: color .15s; }
.back-link:hover { color: var(--bone); }
.highlight-box { background: rgba(244,242,236,.04); border: 1px solid rgba(244,242,236,.08); border-left: 3px solid var(--magenta); border-radius: 4px; padding: 20px 22px; margin: 0 0 24px; }
.highlight-box p { margin: 0; font-size: 15px; color: rgba(244,242,236,.55); }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--night-3);
  border-top: 1px solid rgba(244,242,236,.07);
  padding: 72px var(--pad) 44px;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 60px; }
.footer-brand .logo-footer img { height: 46px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: rgba(244,242,236,.42); line-height: 1.65; max-width: 300px; margin: 0; }
.footer-col h4 { font-family: var(--text); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; color: var(--magenta); margin: 0 0 22px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 15px; color: rgba(244,242,236,.58); transition: color .15s; }
.footer-col ul li a:hover { color: var(--bone); }
.footer-col address { font-style: normal; font-size: 15px; color: rgba(244,242,236,.58); line-height: 1.78; }
.footer-col address a { transition: color .15s; }
.footer-col address a:hover { color: var(--bone); }
.footer-bottom { border-top: 1px solid rgba(244,242,236,.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(244,242,236,.28); }
.footer-bottom a { color: rgba(244,242,236,.38); transition: color .15s; }
.footer-bottom a:hover { color: var(--bone); }
.footer-legal { display: flex; gap: 24px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .cards              { grid-template-columns: repeat(2,1fr); }
  .about-inner        { grid-template-columns: 1fr 280px; gap: 48px; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .footer-brand       { grid-column: 1 / -1; }
  .format-grid        { grid-template-columns: 1fr 1fr; }
  .ansaetze-grid      { grid-template-columns: 1fr 1fr; }
  .leistung-grid      { grid-template-columns: 1fr 1fr; }
  .preis-grid         { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-photo         { width: 100%; opacity: 0.40; }
  .hero-photo::after  { background: linear-gradient(to bottom, var(--night-3) 0%, transparent 22%, transparent 62%, var(--night-3) 100%), linear-gradient(to right, var(--night-3) 0%, transparent 65%); }
  .hero-bg            { background: linear-gradient(to right, rgba(5,5,7,0.95) 0%, rgba(5,5,7,0.78) 55%, rgba(5,5,7,0.55) 100%); }
  .hero-stripe        { top: 90px; bottom: 60px; }
  .hero-grid          { padding-top: 96px; padding-bottom: 52px; }
  .about-inner        { grid-template-columns: 1fr; gap: 40px; }
  .about-photo        { order: -1; max-width: 240px; margin: 0 auto; }
  .footer-grid        { grid-template-columns: 1fr; gap: 36px; }
  .act-grid           { grid-template-columns: 1fr; }
  .moderation-inner   { grid-template-columns: 1fr; gap: 40px; }
  .schools-inner      { grid-template-columns: 1fr; gap: 40px; }
  .was-inner          { grid-template-columns: 1fr; gap: 40px; }
  .beispiele-inner    { grid-template-columns: 1fr; }
  .gespraech-inner    { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner      { grid-template-columns: 1fr; gap: 48px; }
  .contact-lead       { max-width: none; }
  .refs-grid          { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
  .prozess-item       { grid-template-columns: 48px 1fr; gap: 16px; }
}

@media (max-width: 700px) {
  .termin             { grid-template-columns: 1fr; gap: 8px; }
  .termin-badge       { align-self: start; }
}

@media (max-width: 600px) {
  .format-grid        { grid-template-columns: 1fr; }
  .ansaetze-grid      { grid-template-columns: 1fr; }
  .leistung-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .cards              { grid-template-columns: 1fr; }
  .hero h1            { font-size: clamp(52px, 16vw, 90px); letter-spacing: -0.035em; }
  .form-row           { grid-template-columns: 1fr; }
  .refs-grid          { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .act-title          { font-size: clamp(22px, 6vw, 28px); }
  .moderation-panel   { padding: 20px; }
  .was-quote blockquote { font-size: 18px; }
  .gespraech-facts .fact { padding: 16px; }
}


/* =========================================================
   WATERMARK - Logo halbtransparent im Hintergrund
   ========================================================= */
.wm { position: relative; overflow: hidden; }
.wm::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 480px;
  height: 480px;
  background: url('/wp-content/themes/machmalaut-theme/assets/logo.png') center / contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}
.wm > .inner,
.wm > .page-hero-inner,
.wm > .schools-inner,
.wm > .was-inner,
.wm > .prozess-list { position: relative; z-index: 1; }

/* =========================================================
   PAGE HERO - optionales Hintergrundfoto
   ========================================================= */
.page-hero { position: relative; overflow: hidden; }
.page-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.14;
  filter: grayscale(30%);
}
.page-hero-inner { position: relative; z-index: 1; }

/* =========================================================
   PHOTO STRIP - Cinematic Bildstreifen zwischen Sections
   ========================================================= */
.photo-strip {
  width: 100%;
  height: clamp(220px, 36vw, 500px);
  overflow: hidden;
  position: relative;
}
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.photo-strip::before,
.photo-strip::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 100px;
  z-index: 1;
  pointer-events: none;
}
.photo-strip::before { top: 0;    background: linear-gradient(to bottom, var(--night), transparent); }
.photo-strip::after  { bottom: 0; background: linear-gradient(to top,   var(--night), transparent); }

@media (max-width: 768px) {
  .wm::after { width: 280px; height: 280px; right: -20px; bottom: -20px; }
  .photo-strip { height: clamp(180px, 50vw, 300px); }
}