/* Sehenswerk — CI: Schwarz #0a0a0a, Orange #ea861b */

:root {
  --grund:      #0a0a0a;
  --flaeche:    #151515;
  --flaeche-2:  #1e1e1e;
  --rand:       #2a2a2a;
  --text:       #ececec;
  --text-leise: #9a9a9a;
  --akzent:     #ea861b;
  --akzent-hell:#f59c3c;
  --radius:     6px;
  --breite:     1360px;
}

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

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

body {
  margin: 0;
  background: var(--grund);
  color: var(--text);
  font: 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }

.wrap { max-width: var(--breite); margin: 0 auto; padding: 0 20px; }
.klein { font-size: .875rem; color: var(--text-leise); }
.leer { color: var(--text-leise); padding: 40px 0; }

.skip {
  position: absolute; left: -9999px;
  background: var(--akzent); color: #000; padding: 10px 16px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

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

/* ---------- Kopf ---------- */
.kopf {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rand);
}
.kopf-innen {
  display: flex; align-items: center; gap: 24px;
  padding-top: 12px; padding-bottom: 12px;
}
.marke img { width: 200px; height: auto; }

/* ---------- Suche ---------- */
.suche { display: flex; flex: 1; max-width: 560px; margin-left: auto; }
.suche input {
  flex: 1; min-width: 0;
  background: var(--flaeche-2);
  border: 1px solid var(--rand); border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--text); padding: 10px 14px; font-size: .95rem;
}
.suche input::placeholder { color: #6d6d6d; }
.suche input:focus { outline: none; border-color: var(--akzent); }
.suche button {
  background: var(--akzent); border: 0; cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0 18px; display: grid; place-items: center;
}
.suche button svg { fill: #0a0a0a; }
.suche button:hover { background: var(--akzent-hell); }

.suche--gross { max-width: 720px; margin: 0 auto; }
.suche--gross input { padding: 16px 20px; font-size: 1.05rem; }
.suche--gross button { padding: 0 26px; }

/* ---------- Startseite ---------- */
.buehne {
  padding: 72px 0 56px;
  background:
    radial-gradient(1100px 380px at 50% -120px, rgba(234, 134, 27, .16), transparent 70%),
    var(--grund);
  border-bottom: 1px solid var(--rand);
  text-align: center;
}
.buehne h1 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); margin-bottom: .35em; }
.buehne h1 em { color: var(--akzent); font-style: normal; }
.buehne p.unter {
  color: var(--text-leise); max-width: 620px; margin: 0 auto 32px; font-size: 1.05rem;
}
.zahlen {
  display: flex; justify-content: center; gap: 36px; flex-wrap: wrap;
  margin-top: 30px; color: var(--text-leise); font-size: .875rem;
}
.zahlen b { display: block; color: var(--text); font-size: 1.35rem; font-weight: 700; }

/* ---------- Abschnitte ---------- */
.block { padding: 48px 0; }
.block-kopf {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 22px; flex-wrap: wrap;
}
.block-kopf h2 { margin: 0; font-size: 1.4rem; }
.block-kopf .hinweis { color: var(--text-leise); font-size: .875rem; }

/* ---------- Kachelraster ---------- */
.raster {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}
.kachel a { display: block; }
.kachel-bild {
  position: relative; display: block;
  aspect-ratio: 16 / 9; overflow: hidden;
  background: var(--flaeche-2);
  border: 1px solid var(--rand); border-radius: var(--radius);
}
.kachel-bild img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease, opacity .2s;
}
.kachel a:hover .kachel-bild img { transform: scale(1.06); }
.kachel a:hover .kachel-bild { border-color: var(--akzent); }
.kachel-titel {
  display: block; margin-top: 8px; font-size: .875rem; line-height: 1.35;
  color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.kachel a:hover .kachel-titel { color: var(--akzent); }

.marker {
  position: absolute; bottom: 6px; right: 6px;
  background: rgba(0, 0, 0, .8); color: #fff;
  font-size: .68rem; font-weight: 600; letter-spacing: .04em;
  padding: 2px 6px; border-radius: 3px;
}
.marker--mr { right: auto; left: 6px; background: rgba(234, 134, 27, .92); color: #0a0a0a; }

/* ---------- Chips ---------- */
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.chip {
  display: inline-block;
  background: var(--flaeche); border: 1px solid var(--rand);
  border-radius: 999px; padding: 6px 14px;
  font-size: .875rem; color: var(--text-leise);
  transition: .15s;
}
.chip:hover { border-color: var(--akzent); color: var(--akzent); }
.chip--aktiv { background: var(--akzent); border-color: var(--akzent); color: #0a0a0a; font-weight: 600; }

/* ---------- Kategoriekacheln ---------- */
.kat-raster {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.kat {
  position: relative; display: block; aspect-ratio: 16 / 9;
  border: 1px solid var(--rand); border-radius: var(--radius);
  overflow: hidden; background: var(--flaeche-2);
}
.kat img { width: 100%; height: 100%; object-fit: cover; opacity: .55; transition: .35s; }
.kat:hover img { opacity: .8; transform: scale(1.05); }
.kat span {
  position: absolute; inset: auto 0 0 0; padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .88));
  font-weight: 700; font-size: 1.05rem;
}
.kat b { display: block; font-size: .78rem; font-weight: 500; color: var(--text-leise); }

/* ---------- Detailseite ---------- */
.clip { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, 1fr); gap: 40px; padding: 36px 0 56px; }
.clip-bild {
  position: relative; display: block;
  border: 1px solid var(--rand); border-radius: var(--radius);
  overflow: hidden; background: var(--flaeche-2);
}
.clip-bild img { width: 100%; transition: transform .4s ease; }
.clip-bild:hover { border-color: var(--akzent); }
.clip-bild:hover img { transform: scale(1.03); }

/* Hinweis, dass das Bild zu Pond5 führt — erscheint beim Überfahren */
.clip-bild-lupe {
  position: absolute; inset: auto 0 0 0;
  padding: 26px 16px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .85));
  color: #fff; font-size: .875rem; font-weight: 600;
  opacity: 0; transition: opacity .2s;
}
.clip-bild:hover .clip-bild-lupe,
.clip-bild:focus-visible .clip-bild-lupe { opacity: 1; }
.clip h1 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.clip-text { color: var(--text-leise); font-size: 1.02rem; margin-bottom: 26px; }
ul.clip-text { padding-left: 22px; }
ul.clip-text li { margin-bottom: 7px; }
.clip-text a { color: var(--akzent); }
.clip-text a:hover { text-decoration: underline; }

.daten { list-style: none; margin: 0 0 26px; padding: 0; border-top: 1px solid var(--rand); }
.daten li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 9px 0; border-bottom: 1px solid var(--rand); font-size: .9rem;
}
.daten span:first-child { color: var(--text-leise); }

.btn {
  display: inline-block; border-radius: var(--radius);
  padding: 11px 20px; font-weight: 600; font-size: .95rem;
  background: var(--flaeche-2); border: 1px solid var(--rand); color: var(--text);
  cursor: pointer; transition: .15s;
}
.btn:hover { border-color: var(--akzent); color: var(--akzent); }
.btn--haupt {
  background: var(--akzent); border-color: var(--akzent); color: #0a0a0a;
  width: 100%; text-align: center; padding: 15px 20px; font-size: 1.02rem;
}
.btn--haupt:hover { background: var(--akzent-hell); border-color: var(--akzent-hell); color: #0a0a0a; }

/* Zweiter Kaufweg: gleiche Breite, aber zurückhaltend — Pond5 bleibt der Hauptweg */
.btn--zweit {
  display: block; width: 100%; text-align: center;
  margin-top: 10px; padding: 13px 20px;
  border-color: var(--rand); color: var(--text-leise);
}
.btn--zweit:hover { border-color: var(--akzent); color: var(--akzent); }

.hinweis-ki {
  font-size: .8rem; color: var(--text-leise);
  border-left: 2px solid var(--rand); padding-left: 10px; margin-top: 14px;
}

.krume { font-size: .85rem; color: var(--text-leise); padding-top: 20px; }
.krume a:hover { color: var(--akzent); }

/* ---------- Filterleiste ---------- */
.filter { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 18px 0 26px; }
.filter-trenner { width: 1px; height: 22px; background: var(--rand); margin: 0 8px; }
.filter-titel { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-leise); }

/* ---------- Blättern ---------- */
.blaettern {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 40px 0 8px; flex-wrap: wrap;
}
.blaettern-stand { color: var(--text-leise); font-size: .875rem; }

/* ---------- Fuß ---------- */
.fuss { border-top: 1px solid var(--rand); background: #070707; padding: 46px 0 28px; margin-top: 40px; }
.fuss-raster { display: grid; gap: 32px; grid-template-columns: 2fr 1fr 1fr 1fr; }
.fuss-logo { width: 170px; margin-bottom: 14px; opacity: .9; }
.fuss-titel { font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; color: var(--text-leise); margin-bottom: 12px; }
.fuss-liste { list-style: none; margin: 0; padding: 0; }
.fuss-liste li { margin-bottom: 8px; font-size: .9rem; }
.fuss-liste a { color: var(--text-leise); }
.fuss-liste a:hover { color: var(--akzent); }
.fuss-schluss { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--rand); }

/* ---------- Schmale Bildschirme ---------- */
@media (max-width: 900px) {
  .clip { grid-template-columns: 1fr; gap: 26px; }
  .fuss-raster { grid-template-columns: 1fr 1fr; }
  .kopf-innen { flex-wrap: wrap; gap: 12px; }
  .suche--klein { order: 3; max-width: none; flex-basis: 100%; }
  .marke img { width: 165px; }
}
@media (max-width: 560px) {
  .raster { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
  .fuss-raster { grid-template-columns: 1fr; }
  .buehne { padding: 48px 0 40px; }
  .zahlen { gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .kachel a:hover .kachel-bild img { transform: none; }
}
