/* Shuto Entertainment — Gestaltungssystem
   Alle Farben und Abstände sind hier zentral definiert.
   Wer später etwas ändern will, ändert es an dieser Stelle. */

:root {
  --bg:        #0e0e11;   /* Hintergrund, fast schwarz */
  --bg-erhoben:#16161b;   /* abgesetzte Flächen, Karten */
  --linie:     #2a2a31;   /* Trenner und Rahmen */
  --text:      #f2f2f0;   /* Überschriften, gebrochenes Weiß */
  --text-leise:#a3a3ad;   /* Fließtext */
  --akzent:    #c8a24a;   /* Messing: Links, Knöpfe, Hervorhebungen */
  --akzent-hell:#dcb968;

  --breite:      1120px;
  --breite-text: 68ch;
  --radius:      10px;

  --schrift: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
             "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

/* ---------- Grundelemente ---------- */

h1, h2, h3, h4 {
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-top: 0; }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

p  { margin: 0 0 1.15em; max-width: var(--breite-text); }
ul, ol { max-width: var(--breite-text); padding-left: 1.2em; }
li { margin-bottom: .5em; }

a { color: var(--akzent); text-decoration: none; border-bottom: 1px solid rgba(200,162,74,.35); }
a:hover { color: var(--akzent-hell); border-bottom-color: var(--akzent-hell); }

strong { color: var(--text); font-weight: 600; }

hr { border: 0; border-top: 1px solid var(--linie); margin: 3rem 0; }

::selection { background: var(--akzent); color: #14110a; }

:focus-visible { outline: 2px solid var(--akzent); outline-offset: 3px; }

/* ---------- Aufbau ---------- */

.huelle { width: 100%; max-width: var(--breite); margin: 0 auto; padding: 0 24px; }

section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
section + section { border-top: 1px solid var(--linie); }

.eyebrow {
  color: var(--akzent);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 1rem;
}

.fuehrung { font-size: 1.18rem; color: #c3c3cc; max-width: 62ch; }

/* ---------- Kopfbereich ---------- */

header.seitenkopf {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,14,17,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linie);
}

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

.marke { display: flex; align-items: center; gap: .7rem; border: 0; }
.marke img { width: 38px; height: auto; display: block; }
.marke-text {
  color: var(--text); font-weight: 600; letter-spacing: .04em;
  font-size: .95rem; text-transform: uppercase; white-space: nowrap;
}

nav.haupt ul { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
nav.haupt a {
  color: var(--text-leise); font-size: .93rem; border: 0;
  padding: .35rem 0; border-bottom: 1px solid transparent;
}
nav.haupt a:hover, nav.haupt a[aria-current="page"] {
  color: var(--text); border-bottom-color: var(--akzent);
}

.menue-schalter {
  display: none; background: none; border: 1px solid var(--linie);
  color: var(--text); border-radius: 8px; padding: .5rem .7rem;
  font-size: .9rem; cursor: pointer;
}

/* ---------- Knöpfe ---------- */

.knopf {
  display: inline-block; border: 0;
  background: var(--akzent); color: #14110a;
  font-weight: 600; font-size: .98rem;
  padding: .85rem 1.6rem; border-radius: var(--radius);
  cursor: pointer; transition: background .15s ease, transform .15s ease;
}
.knopf:hover { background: var(--akzent-hell); color: #14110a; transform: translateY(-1px); }

.knopf.sekundaer {
  background: transparent; color: var(--text);
  border: 1px solid var(--linie);
}
.knopf.sekundaer:hover { border-color: var(--akzent); color: var(--akzent); background: transparent; }

.knopfreihe { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

/* ---------- Startbereich ---------- */

.buehne { padding: clamp(4rem, 11vw, 8.5rem) 0 clamp(3rem, 7vw, 5rem); }
.buehne h1 { max-width: 16ch; }
.buehne .fuehrung { margin-top: 1.5rem; font-size: 1.25rem; }

.credits {
  margin-top: 1.4rem; font-size: .88rem; color: #7f7f8a;
  letter-spacing: .01em; max-width: 60ch;
}

/* ---------- Karten und Raster ---------- */

.raster { display: grid; gap: 1.5rem; }
.raster.zwei  { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.raster.drei  { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }

.karte {
  background: var(--bg-erhoben);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.karte h3 { margin-bottom: .5rem; }
.karte p:last-child { margin-bottom: 0; }

.preis {
  color: var(--akzent); font-size: 1.5rem; font-weight: 600;
  letter-spacing: -.01em; display: block; margin: .2rem 0 1rem;
}
.preis small { display: block; font-size: .8rem; color: var(--text-leise); font-weight: 400; letter-spacing: 0; }

.karte ul { padding-left: 1.1em; margin: 0; }
.karte li { font-size: .95rem; }

/* ---------- Tabellen ---------- */

.tabellenhuelle { overflow-x: auto; margin: 2rem 0; }
table { border-collapse: collapse; width: 100%; font-size: .95rem; min-width: 560px; }
th, td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--linie); vertical-align: top; }
th { color: var(--text); font-weight: 600; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; }
tbody tr:hover { background: rgba(255,255,255,.02); }

/* ---------- Zitat / Hervorhebung ---------- */

.hervor {
  border-left: 3px solid var(--akzent);
  padding: .3rem 0 .3rem 1.4rem;
  margin: 2rem 0;
  color: var(--text);
  font-size: 1.15rem;
  max-width: 60ch;
}

/* ---------- Video-Platzhalter ---------- */

.videofeld {
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  background: var(--bg-erhoben);
  border: 1px solid var(--linie); border-radius: var(--radius);
  display: grid; place-items: center; text-align: center; padding: 2rem;
  color: #6f6f7a; font-size: .92rem;
}
.videofeld video, .videofeld iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; border-radius: var(--radius); object-fit: cover;
}

/* ---------- Frage-Antwort ---------- */

.fa { border-top: 1px solid var(--linie); padding: 1.6rem 0; max-width: var(--breite-text); }
.fa:last-child { border-bottom: 1px solid var(--linie); }
.fa h3 { margin-bottom: .4rem; }
.fa p:last-child { margin-bottom: 0; }

/* ---------- Formular ---------- */

form.kontakt { max-width: 560px; margin-top: 2rem; }
.feld { margin-bottom: 1.2rem; }
.feld label { display: block; color: var(--text); font-size: .9rem; margin-bottom: .4rem; font-weight: 500; }
.feld input, .feld textarea {
  width: 100%; background: var(--bg-erhoben); color: var(--text);
  border: 1px solid var(--linie); border-radius: 8px;
  padding: .8rem .9rem; font: inherit; font-size: .98rem;
}
.feld input:focus, .feld textarea:focus { border-color: var(--akzent); outline: none; }
.feld textarea { min-height: 150px; resize: vertical; }
.pflicht { color: var(--akzent); }
.hinweis { font-size: .85rem; color: #7f7f8a; margin-top: 1rem; }
.falle { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.meldung { border-radius: var(--radius); padding: 1rem 1.2rem; margin-bottom: 1.5rem; font-size: .95rem; }
.meldung.gut  { background: rgba(120,180,120,.1); border: 1px solid rgba(120,180,120,.4); color: #b6d8b6; }
.meldung.fehler { background: rgba(200,90,90,.1); border: 1px solid rgba(200,90,90,.4); color: #e2aaaa; }

/* ---------- Fußbereich ---------- */

footer.seitenfuss {
  border-top: 1px solid var(--linie);
  padding: 3.5rem 0 2.5rem;
  font-size: .9rem;
  color: #7f7f8a;
}
footer.seitenfuss .spalten {
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 2.5rem;
}
footer.seitenfuss h4 {
  color: var(--text); font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: .9rem;
}
footer.seitenfuss ul { list-style: none; padding: 0; margin: 0; }
footer.seitenfuss li { margin-bottom: .45rem; }
footer.seitenfuss a { color: #9b9ba5; border: 0; }
footer.seitenfuss a:hover { color: var(--akzent); }
.fussleiste { border-top: 1px solid var(--linie); padding-top: 1.5rem; font-size: .84rem; }

/* ---------- Mobil ---------- */

@media (max-width: 860px) {
  .menue-schalter { display: block; }
  nav.haupt {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--bg); border-bottom: 1px solid var(--linie); padding: 1rem 24px 1.5rem;
  }
  nav.haupt.offen { display: block; }
  nav.haupt ul { flex-direction: column; gap: .2rem; }
  nav.haupt a { display: block; padding: .7rem 0; }
  header.seitenkopf { position: relative; }
  body { font-size: 16.5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---------- Druck ---------- */
@media print {
  header.seitenkopf, footer.seitenfuss, .knopfreihe { display: none; }
  body { background: #fff; color: #000; }
}
