:root {
  --nav-muted: #a8a49b;
}

/* ---------- HEADER (statisch, volle Breite, nur padding) ---------- */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--pad);
}

.wordmark {
  display: block;
  text-decoration: none;
}
.wordmark-logo {
  height: clamp(56px, 6.5vw, 88px);
  width: auto;
  display: block;
}

/* ---------- NAV-TOGGLE (Burger, nur mobil sichtbar) ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 0;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 0;
}

/* ---------- NAV ---------- */
.nav {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: clamp(48px, 5vw, 90px);
  row-gap: 3px;
}
.nav a,
.nav span {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.3;
  letter-spacing: 0.005em;
  text-transform: lowercase;
  color: var(--nav-muted);
  text-decoration: none;
}
.nav a {
  transition: color 0.2s ease;
}
.nav a:hover {
  color: var(--ink);
}
.nav a.current {
  color: var(--ink);
}
.nav span.nav-disabled {
  color: var(--nav-muted);
  cursor: default;
}

/* Sprachwahl: vorerst nur DE aktiv, alles nicht-klickbar */
.lang {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
}
.lang span {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.3;
  text-transform: lowercase;
  color: var(--ink);
  cursor: default;
}
.lang span.lang-disabled { opacity: 0.4; }
.lang span.active { opacity: 1; }
.lang-sep { opacity: 0.3; }

@media (max-width: 760px) {
  .site-header {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .wordmark { flex-shrink: 0; }
  .nav-toggle { display: flex; }
  .nav { display: none; grid-template-columns: auto; row-gap: 0; }
  .nav.is-open {
    display: grid;
    width: 100%;
    background: var(--bg);
    padding-top: 28px;
    padding-bottom: 40px;
    row-gap: 28px;
  }
}

/* ---------- FOOTER (statisch, volle Breite, nur padding) ---------- */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 20px 40px;
  padding: clamp(40px, 6vh, 72px) var(--pad);
  border-top: 1px solid rgba(26, 24, 20, 0.14);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 2.6vw, 44px);
}
.footer-links a {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.1vw, 17px);
  letter-spacing: 0.005em;
  text-transform: lowercase;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer-links a:hover { opacity: 0.55; }
.footer-copy {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1vw, 15px);
  color: var(--ink);
  opacity: 0.6;
}

/* ---------- Platzhalter-Boxen (Bilder folgen später einzeln) ----------
   Eigene, kontextunabhängige Füllfarbe: muss auf hellem UND dunklem
   Untergrund (z. B. im Hero) lesbar bleiben. */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #a9a296;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(26, 24, 20, 0.08),
    rgba(26, 24, 20, 0.08) 10px,
    rgba(26, 24, 20, 0.16) 10px,
    rgba(26, 24, 20, 0.16) 20px
  );
  border: 1px dashed rgba(26, 24, 20, 0.4);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}

/* ---------- Platzhalter-Seiten (programme, kollaboration, kontakt, ...) ---------- */
.placeholder-page {
  padding: clamp(72px, 14vh, 180px) var(--pad);
  min-height: 40vh;
}
.placeholder-page h1 {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 64px);
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin-bottom: 0.5em;
}
.placeholder-page p {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(16px, 1.15vw, 18px);
  opacity: 0.65;
  max-width: 60ch;
}
