/* ============================================================
   MO GAHBLER – style.css
   ============================================================ */

:root {
  --cream:       #F4EDE4;
  --cream-light: #FAF7F3;
  --dark:        #1A1510;
  --dark-2:      #251E16;
  --accent:      #bc6100;
  --accent-h:    #9e5100;
  --text:        #2C2417;
  --muted:       #8B7355;
  --white:       #FFFFFF;

  --ff-hero: 'cabrito-didone-condensed', sans-serif;
  --ff-sans: 'neue-haas-grotesk-display', sans-serif;
  --ff-body: 'halyard-text', sans-serif;

  --text-h2:    clamp(1.7rem, 3.5vw, 2.6rem);
  --text-h3:    clamp(1.4rem, 2.2vw, 1.8rem);
  --text-body:  1rem;
  --text-label: 0.72rem;

  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-6:  3rem;
  --sp-8:  4rem;
  --sp-12: 6rem;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --nav-h:  72px;
  --radius: 3px;
  --ease:   0.3s ease;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; font-size: 16px; }
body   { font-family: var(--ff-body); color: var(--text); background: var(--cream-light); line-height: 1.75; overflow-x: hidden; }
img    { display: block; max-width: 100%; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { font-family: var(--ff-body); }

section[id] { scroll-margin-top: var(--nav-h); }

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ── Typography ─────────────────────────────────────────── */
.section-title {
  font-family: var(--ff-sans);
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: var(--space-md);
}
.section-title--light { color: var(--cream); }

.section-title::after,
.koops__tile-title::after,
.kontakt__title::after {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--accent);
  margin-top: 0.65rem;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  font-family: var(--ff-sans);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary       { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-h); border-color: var(--accent-h); transform: translateY(-2px); }
.btn--outline-light       { background: transparent; color: var(--accent); border-color: var(--accent); padding: 0.55rem 1.1rem; font-size: 0.68rem; }
.btn--outline-light:hover { background: var(--accent); color: var(--white); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
  height: var(--nav-h);
  background: rgba(26,21,16,0.98);
  backdrop-filter: blur(10px);
}

.nav__left { display: flex; align-items: center; gap: 1.25rem; }
.nav__logo { display: flex; align-items: center; }
.nav__logo-img {
  height: 38px;
  width: auto;
  filter: invert(1);
  opacity: 0.85;
  transition: opacity var(--ease);
}
.nav__logo-img:hover { opacity: 1; }

.nav__socials { display: flex; align-items: center; gap: 0.85rem; }
.nav__social { color: rgba(255,255,255,0.55); transition: color var(--ease); display: flex; align-items: center; }
.nav__social svg { width: 20px; height: 20px; }
.nav__social:hover { color: var(--white); }

.nav__right { display: flex; align-items: center; justify-content: flex-end; gap: var(--space-md); }
.nav__menu { display: flex; align-items: center; gap: var(--space-md); }
.nav__link {
  font-family: var(--ff-sans);
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  position: relative; transition: color var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform var(--ease);
}
.nav__link:hover,
.nav__link.active { color: var(--white); }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }

.nav__link--cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  letter-spacing: 0.08em;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--accent-h); }

.nav__lang { display: flex; align-items: center; gap: 0.2rem; margin-left: var(--space-sm); }
.nav__lang-sep { color: rgba(255,255,255,0.2); font-size: 0.7rem; }
.nav__lang-btn {
  background: none; border: none;
  color: rgba(255,255,255,0.4);
  font-family: var(--ff-sans); font-size: var(--text-label); font-weight: 500; letter-spacing: 0.12em;
  cursor: pointer; padding: 0.2rem 0.25rem; transition: color var(--ease);
}
.nav__lang-btn.active, .nav__lang-btn:hover { color: var(--white); }

.nav__hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: var(--space-xs); z-index: 210;
}
.nav__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: transform var(--ease), opacity var(--ease); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,21,16,0.1) 0%, rgba(26,21,16,0.4) 50%, rgba(26,21,16,0.85) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.hero__wortmarke {
  width: clamp(280px, 48vw, 640px);
  height: auto;
  filter: invert(1);
  margin-bottom: var(--sp-4);
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero__ctas {
  display: flex;
  justify-content: center;
  animation: fadeUp 0.9s 0.5s ease both;
}

/* ════════════════════════════════════════════════════════════
   ÜBER MO
   ════════════════════════════════════════════════════════════ */
.ueber-mo { padding: var(--sp-8) 0; background: var(--cream-light); }
.ueber-mo > .container { max-width: 1200px; }

.ueber-mo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
}

.ueber-mo__photo-tile {
  overflow: hidden;
  border-radius: 6px 0 0 6px;
}
.ueber-mo__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  min-height: 300px;
  transform: scale(1.12) translateY(-5%);
}
.ueber-mo__text-tile {
  background: transparent;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 var(--sp-6) var(--sp-6);
  border-radius: 0 6px 6px 0;
}
.ueber-mo__text-inner {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.ueber-mo__text-tile .section-title { margin-bottom: 0; }
.ueber-mo__sub {
  font-family: var(--ff-sans);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.ueber-mo__text-tile p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.8;
  hyphens: auto;
}

/* ════════════════════════════════════════════════════════════
   INSTRUMENTE — Karten-Grid
   ════════════════════════════════════════════════════════════ */
.instrumente {
  background: var(--cream);
  padding: var(--sp-8) 0;
}
.instrumente > .container { max-width: 1200px; }

.instr__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(26,21,16,0.1);
  border-left: 1px solid rgba(26,21,16,0.1);
  margin-top: var(--sp-6);
}

.instr__card {
  padding: var(--sp-6) var(--sp-6);
  border-right: 1px solid rgba(26,21,16,0.1);
  border-bottom: 1px solid rgba(26,21,16,0.1);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.instr__card-title {
  font-family: var(--ff-sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
}

.instr__card-desc {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  flex-grow: 1;
}

.instr__card-sub {
  font-family: var(--ff-sans);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: var(--sp-1);
}

.instr__card-list {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: rgba(44,36,23,0.5);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   KOOPERATIONEN
   ════════════════════════════════════════════════════════════ */
.koops {
  background: var(--dark);
  padding: var(--sp-8) 0;
}
.koops > .container { max-width: 1200px; }
.koops__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}
.koops__tile { padding: 0; }
.koops__tile-title {
  font-family: var(--ff-sans);
  font-size: var(--text-h2);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}
.koops__subline {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: rgba(244,237,228,0.4);
  line-height: 1.65;
  margin-bottom: var(--sp-2);
}
.koops__list { display: flex; flex-direction: column; }
.koops__list li {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: rgba(244,237,228,0.55);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(244,237,228,0.07);
  line-height: 1.4;
}
.koops__list li:last-child { border-bottom: none; }

/* ════════════════════════════════════════════════════════════
   ANGEBOTE
   ════════════════════════════════════════════════════════════ */
.angebote {
  background: var(--dark-2);
  padding: var(--sp-8) 0;
}
.angebote > .container { max-width: 1200px; }

.angebote__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.angebote__col {
  padding: var(--sp-6) var(--sp-4);
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.angebote__col .btn { align-self: flex-start; margin-top: auto; }
.angebote__col h3 {
  font-family: var(--ff-sans);
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}
.angebote__sub {
  font-family: var(--ff-sans);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.angebote__desc {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: rgba(244,237,228,0.5);
  line-height: 1.7;
  flex-grow: 1;
}

/* ════════════════════════════════════════════════════════════
   PROJEKTE
   ════════════════════════════════════════════════════════════ */
.projekte { background: var(--cream-light); padding: var(--sp-8) 0; }
.projekte > .container { max-width: 1200px; }
.proj__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
  margin-top: var(--sp-6);
}
.proj-card {
  position: relative;
  height: 380px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.proj-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.proj-card:hover .proj-card__bg { transform: scale(1.04); }
.proj-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,16,0.9) 0%, rgba(26,21,16,0.15) 60%);
}
.proj-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-4);
  z-index: 1;
}
.proj-card__num {
  display: block;
  font-family: var(--ff-sans);
  font-size: var(--text-label);
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: var(--sp-1);
}
.proj-card__title {
  font-family: var(--ff-hero);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.proj-card__sub {
  font-family: var(--ff-sans);
  font-size: var(--text-label);
  letter-spacing: 0.12em;
  color: rgba(244,237,228,0.5);
}

/* ════════════════════════════════════════════════════════════
   ANSTEHENDE TERMINE
   ════════════════════════════════════════════════════════════ */
.demnächst {
  background: var(--accent);
  padding: var(--sp-6) 0;
}
.demnächst > .container { max-width: 1200px; }

.demnächst__label {
  font-family: var(--ff-sans);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-bottom: var(--sp-3);
}

.demnächst__dates {
  display: flex;
  justify-content: center;
}

.demnächst__item {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: var(--sp-2) var(--sp-4);
  border-right: 1px solid rgba(255,255,255,0.2);
}
.demnächst__item:first-child { border-left: 1px solid rgba(255,255,255,0.2); }

.demnächst__date {
  font-family: var(--ff-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.demnächst__desc {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
  line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════
   MEDIA
   ════════════════════════════════════════════════════════════ */
.media {
  background: var(--dark-2);
  padding: var(--sp-8) 0;
}
.media > .container { max-width: 1200px; }

.media__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.media__card {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  transition: transform 0.3s ease;
}
.media__card:hover { transform: translateY(-3px); }

.media__thumb {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.media__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.4s ease, filter 0.4s ease;
}
.media__card:hover .media__thumb img {
  transform: scale(1.05);
  filter: brightness(0.55);
}

.media__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.media__play svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.6));
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.media__card:hover .media__play svg {
  transform: scale(1.15);
  opacity: 1;
}

.media__card-title {
  padding: 0.75rem 1rem;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(244,237,228,0.55);
  line-height: 1.4;
  transition: color 0.3s ease;
}
.media__card:hover .media__card-title { color: rgba(244,237,228,0.9); }

/* ════════════════════════════════════════════════════════════
   KONTAKT
   ════════════════════════════════════════════════════════════ */
.kontakt { background: var(--dark); padding: var(--sp-8) 0; }
.kontakt > .container { max-width: 1200px; }

.kontakt__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-12);
  align-items: start;
}

.kontakt__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding-top: var(--sp-2);
}

.kontakt__title {
  font-family: var(--ff-sans);
  font-size: var(--text-h2);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
}

.kontakt__lead {
  color: rgba(244,237,228,0.5);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── Formular ────────────────────────────────────────────── */
.kontakt__form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

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

.form__label {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,237,228,0.35);
  transition: color var(--ease);
}
.form__group:focus-within .form__label { color: var(--accent); }

.form__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244,237,228,0.15);
  padding: 0.55rem 0;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--cream);
  outline: none;
  transition: border-color var(--ease);
  appearance: none;
  border-radius: 0;
}
.form__input::placeholder { color: rgba(244,237,228,0.18); }
.form__input:focus { border-bottom-color: var(--accent); }

.form__textarea {
  resize: none;
  min-height: 80px;
}

.form__newsletter {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid rgba(188,97,0,0.35);
  border-radius: var(--radius);
  background: rgba(188,97,0,0.08);
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease);
}
.form__newsletter:hover {
  background: rgba(188,97,0,0.14);
  border-color: rgba(188,97,0,0.6);
}
.form__newsletter-check { display: none; }

.form__newsletter-box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(244,237,228,0.3);
  border-radius: 3px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), border-color var(--ease);
}
.form__newsletter-check:checked + .form__newsletter-box {
  background: var(--accent);
  border-color: var(--accent);
}
.form__newsletter-check:checked + .form__newsletter-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.form__newsletter-text {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: rgba(244,237,228,0.55);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.form__newsletter-text strong {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.03em;
}

.form__submit { align-self: flex-start; }

.form__feedback {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  min-height: 1.2em;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer { background: var(--dark-2); border-top: 1px solid rgba(244,237,228,0.05); padding: var(--space-lg) 0 var(--space-md); }
.footer > .container { max-width: 1200px; }
.footer__top { display: flex; justify-content: space-between; align-items: center; padding-bottom: var(--space-md); margin-bottom: var(--space-md); border-bottom: 1px solid rgba(244,237,228,0.07); }
.footer__left { display: flex; align-items: center; gap: 1.25rem; }
.footer__logo { height: 34px; filter: invert(1); opacity: 0.4; transition: opacity var(--ease); }
.footer__logo:hover { opacity: 0.7; }
.footer__socials { display: flex; align-items: center; gap: 0.85rem; }
.footer__social { color: rgba(244,237,228,0.3); transition: color var(--ease); display: flex; align-items: center; }
.footer__social svg { width: 18px; height: 18px; }
.footer__social:hover { color: rgba(244,237,228,0.75); }
.footer__nav { display: flex; gap: var(--space-md); }
.footer__nav a { font-family: var(--ff-sans); font-size: 0.78rem; color: rgba(244,237,228,0.4); transition: color var(--ease); letter-spacing: 0.06em; }
.footer__nav a:hover { color: var(--cream); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: rgba(244,237,228,0.25); }
.footer__bottom a { color: rgba(244,237,228,0.3); transition: color var(--ease); }
.footer__bottom a:hover { color: var(--cream); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ueber-mo__grid { grid-template-columns: 1fr; height: auto; }
  .ueber-mo__photo-tile { height: 56vw; min-height: 260px; }
  .ueber-mo__text-tile { padding: var(--sp-6); }
  .angebote__cols { grid-template-columns: 1fr; }
  .koops__grid    { grid-template-columns: 1fr; }
  .proj__grid     { grid-template-columns: repeat(2, 1fr); }
  .instr__grid    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__socials { display: none; }
  .nav__hamburger { display: flex; }
  .nav__menu {
    display: none; position: fixed;
    inset-block-start: var(--nav-h); inset-inline: 0;
    background: rgba(26,21,16,0.98); backdrop-filter: blur(12px);
    flex-direction: column; align-items: flex-start;
    padding: var(--space-lg) var(--space-md); gap: var(--space-md);
  }
  .nav__menu.open { display: flex; }
  .nav__lang { margin-left: 0; }

  .proj__grid  { grid-template-columns: 1fr; }
  .media__grid { grid-template-columns: repeat(2, 1fr); }
  .demnächst__dates { flex-direction: column; align-items: center; }
  .demnächst__item { max-width: 100%; border-right: none; border-left: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .demnächst__item:first-child { border-left: none; border-top: 1px solid rgba(255,255,255,0.2); }
  .kontakt__inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer__top    { flex-direction: column; gap: var(--space-md); }
  .footer__nav    { flex-wrap: wrap; justify-content: center; gap: var(--space-sm); }
  .footer__bottom { flex-direction: column; gap: var(--space-xs); text-align: center; }
}

@media (max-width: 480px) {
  :root { --space-xl: 4.5rem; --space-lg: 3rem; }
  .form__row { grid-template-columns: 1fr; }
}
