/* =====================================================================
   Der Tanz mit dem Feuer — Gestaltung
   Alles in einer Datei; die Seite ist zehn Seiten gross, ein Baukasten
   waere hier mehr Aufwand als Nutzen.

   Die Farben kommen aus den Fotos: Nachtschwarz mit Warmstich, Glut,
   Flamme. Bewusst dunkel — Feuerfotos leben davon, und auf hellem Grund
   sehen sie aus wie Schnappschuesse. Schriften sind Systemschriften: keine
   Google-Fonts, kein Nachladen, keine IP an Dritte.
   ===================================================================== */

:root {
  --nacht: #100a07;
  --nacht-2: #17100c;
  --karte: #1e1511;
  --linie: rgba(232, 163, 74, 0.18);

  --glut: #e8a34a;
  --glut-hell: #f6c884;
  --flamme: #d2451e;

  --text: #f3e8de;
  --text-leise: #b7a394;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --schale: min(1180px, 100% - 48px);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--nacht);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--glut); }

.schale { width: var(--schale); margin-inline: auto; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.12; margin: 0; }

h2 { font-size: clamp(30px, 4.2vw, 46px); }
h3 { font-size: clamp(21px, 2.2vw, 26px); }

.kicker {
  margin: 0 0 10px;
  color: var(--glut);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead { color: var(--text-leise); font-size: clamp(17px, 1.6vw, 19px); }

/* ---------- Knöpfe ---------- */
.knopf {
  display: inline-block;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.knopf-glut {
  background: linear-gradient(135deg, var(--flamme), var(--glut));
  color: #1a0f08;
  box-shadow: 0 10px 30px rgba(210, 69, 30, 0.32);
}

.knopf-glut:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(210, 69, 30, 0.42); }

.knopf-linie { border-color: var(--linie); color: var(--text); }
.knopf-linie:hover { border-color: var(--glut); color: var(--glut-hell); }

/* ---------- Kopfzeile ---------- */
.kopf {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 10, 7, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linie);
}

.kopf-innen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
}

.wortmarke {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.wortmarke span { color: var(--glut); }

.kopf-nav { display: flex; align-items: center; gap: 26px; }

.kopf-nav a {
  color: var(--text-leise);
  font-size: 14.5px;
  text-decoration: none;
  transition: color 160ms ease;
}

.kopf-nav a:hover { color: var(--glut-hell); }

@media (max-width: 820px) {
  .kopf-nav a:not(.knopf) { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(76vh, 660px);
  padding: 90px 0 56px;
  overflow: hidden;
}

.hero-bild {
  position: absolute;
  inset: 0;
}

.hero-bild img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }

.hero-bild::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 10, 7, 0.72) 0%, rgba(16, 10, 7, 0.3) 40%, var(--nacht) 100%);
}

.hero-inhalt { position: relative; max-width: 720px; }

.hero h1 {
  font-size: clamp(38px, 7vw, 74px);
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero p { color: #e6d5c6; font-size: clamp(17px, 1.8vw, 20px); max-width: 34em; }

.hero-aktionen { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ---------- Abschnitte ---------- */
.band { padding: clamp(64px, 8vw, 108px) 0; }
.band-dunkler { background: var(--nacht-2); }

.band-kopf { max-width: 720px; margin-bottom: 44px; }
.band-kopf p { margin: 14px 0 0; }

/* ---------- Team ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.person {
  background: var(--karte);
  border: 1px solid var(--linie);
  border-radius: 3px;
  overflow: hidden;
}

.person img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.person-text { padding: 22px 24px 26px; }
.person-text h3 { margin-bottom: 4px; }

.person-rolle {
  margin: 0 0 14px;
  color: var(--glut);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.person-text p { margin: 0 0 10px; color: var(--text-leise); font-size: 15px; line-height: 1.6; }
.person-text p:last-child { margin-bottom: 0; }
.person-text strong { color: var(--text); font-weight: 600; }

/* ---------- Shows ---------- */
.show-raster {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.show-karte {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 3px;
  text-decoration: none;
  color: inherit;
  background: var(--karte);
  border: 1px solid var(--linie);
  transition: transform 260ms ease, border-color 260ms ease;
}

.show-karte:hover { transform: translateY(-4px); border-color: rgba(232, 163, 74, 0.45); }

.show-karte img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 700ms ease;
}

.show-karte:hover img { transform: scale(1.05); }

.show-karte-text { padding: 20px 22px 24px; }
.show-karte-text h3 { margin-bottom: 8px; }
.show-karte-text p { margin: 0; color: var(--text-leise); font-size: 14.5px; line-height: 1.6; }

.show-karte-mehr {
  display: inline-block;
  margin-top: 14px;
  color: var(--glut);
  font-size: 14px;
  font-weight: 600;
}

/* ---------- Infoblöcke ---------- */
.info-raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px 40px;
}

.info h3 { margin-bottom: 12px; color: var(--glut-hell); }
.info p { margin: 0 0 12px; color: var(--text-leise); font-size: 15.5px; }
.info p:last-child { margin-bottom: 0; }

/* ---------- Fakten ---------- */
.fakten {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--linie);
  border-radius: 3px;
  background: var(--karte);
  list-style: none;
}

.fakten div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 16px 22px;
  font-size: 15px;
}

.fakten div + div { border-top: 1px solid var(--linie); }
.fakten dt { color: var(--glut); font-weight: 600; }
.fakten dd { margin: 0; color: var(--text-leise); }

@media (max-width: 560px) {
  .fakten div { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- Galerie ---------- */
.galerie {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.galerie img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  transition: opacity 260ms ease;
}

.galerie a:hover img { opacity: 0.82; }

/* ---------- Referenzen ---------- */
.anlaesse {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.anlaesse li {
  padding: 8px 16px;
  border: 1px solid var(--linie);
  border-radius: 999px;
  color: var(--text-leise);
  font-size: 13.5px;
}

/* ---------- Kontakt ---------- */
.kontakt-raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

.kontakt-karte {
  padding: 30px 32px;
  border: 1px solid var(--linie);
  border-radius: 3px;
  background:
    radial-gradient(circle at 88% 8%, rgba(210, 69, 30, 0.18), transparent 42%),
    var(--karte);
}

.kontakt-karte p { margin: 0 0 6px; color: var(--text-leise); font-size: 15.5px; }
.kontakt-karte a { text-decoration: none; }
.kontakt-karte a:hover { text-decoration: underline; }
.kontakt-gross { font-family: var(--serif); font-size: clamp(24px, 3vw, 32px); margin: 18px 0 0; }
.kontakt-gross a { color: var(--glut-hell); }

/* ---------- Fußzeile ---------- */
.fuss {
  padding: 44px 0 56px;
  border-top: 1px solid var(--linie);
  background: var(--nacht-2);
  color: var(--text-leise);
  font-size: 14px;
}

.fuss-innen { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; }
.fuss a { color: var(--text-leise); text-decoration: none; }
.fuss a:hover { color: var(--glut); }
.fuss-links { display: flex; flex-wrap: wrap; gap: 20px; }

/* ---------- Detailseiten ---------- */
.brotkrumen { margin: 0 0 14px; font-size: 13.5px; color: var(--text-leise); }
.brotkrumen a { color: var(--text-leise); text-decoration: none; }
.brotkrumen a:hover { color: var(--glut); }
.brotkrumen span { margin: 0 8px; opacity: 0.5; }

.detail-spalten {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

@media (max-width: 860px) {
  .detail-spalten { grid-template-columns: 1fr; }
}

.detail-text p { margin: 0 0 18px; font-size: clamp(16px, 1.5vw, 18px); }
.detail-text p:last-child { margin-bottom: 0; }

/* ---------- Rechtsseiten ---------- */
.recht { max-width: 760px; padding: clamp(48px, 6vw, 88px) 0; }
.recht h1 { font-size: clamp(32px, 4.5vw, 46px); margin-bottom: 28px; }
.recht h2 { font-size: clamp(21px, 2.4vw, 26px); margin: 36px 0 12px; color: var(--glut-hell); }
.recht p, .recht li { color: var(--text-leise); font-size: 15.5px; }
.recht a { word-break: break-word; }

/* Bewegung nur, wo sie gewuenscht ist. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
