/* ============================================================
   Karim Thiam – Website
   Design: tiefes Indigo (senegalesische Indigo-Textilien) +
   warmes Bühnen-Bernstein. Signatur: gewebtes Streifenband
   nach Vorbild westafrikanischer Streifenwebstoffe.
   ============================================================ */

/* ---------- Schriften: lokal gehostet (DSGVO-konform) ---------- */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolage-grotesque-latin-opsz-normal.woff2") format("woff2-variations"),
       url("../fonts/bricolage-grotesque-latin-opsz-normal.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrument-sans-latin-wght-normal.woff2") format("woff2-variations"),
       url("../fonts/instrument-sans-latin-wght-normal.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --night:   #151a2e;
  --night-2: #101424;
  --panel:   #1d2440;
  --panel-2: #232b4d;
  --line:    #2d3559;
  --sand:    #f1eada;
  --mute:    #a4abc7;
  --amber:   #e8a23d;
  --amber-2: #f4c878;
  --clay:    #a6402c;

  --font-display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1140px;
  --radius: 14px;
  --pad-x: clamp(1rem, 4vw, 2.5rem);
}

/* Anker-Ziele nicht unter dem fixierten Header verschwinden lassen */
[id] { scroll-margin-top: 5.5rem; }

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--night);
  color: var(--sand);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--amber-2); text-decoration: none; }
a:hover { color: var(--amber); }
svg[hidden] { display: none !important; }

h1, h2, h3, h4 { line-height: 1.12; margin: 0 0 0.6em; text-wrap: balance; }

p { margin: 0 0 1em; text-wrap: pretty; }


::selection { background: var(--amber); color: var(--night-2); }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--amber);
  color: var(--night-2);
  padding: 0.6rem 1rem;
  z-index: 100;
  font-weight: 600;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ---------- Signatur: gewebtes Streifenband ---------- */
.weave {
  height: 10px;
  background: repeating-linear-gradient(90deg,
    var(--amber)   0px  46px,
    var(--sand)   46px  54px,
    var(--clay)   54px  96px,
    var(--panel-2) 96px 104px,
    var(--sand)  104px 112px,
    #c07f2a      112px 158px,
    var(--panel-2) 158px 166px
  );
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(16, 20, 36, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--sand);
  white-space: nowrap;
}
.brand:hover { color: var(--sand); }
.brand .brand__dot { color: var(--amber); }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: var(--sand);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.site-nav a:hover { color: var(--amber-2); border-bottom-color: var(--amber); }
.site-nav a.is-active { color: var(--amber-2); border-bottom-color: var(--amber); }
.site-nav .nav-cta {
  border: 1.5px solid var(--amber);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  color: var(--amber-2);
  font-weight: 600;
}
.site-nav .nav-cta:hover {
  background: var(--amber);
  color: var(--night-2);
  border-bottom-color: var(--amber);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--sand);
  margin: 4.5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 4.25rem 0 auto 0;
    background: rgba(16, 20, 36, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-115%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
  }
  body.nav-open .site-nav { transform: translateY(0); visibility: visible; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem var(--pad-x) 1.5rem;
  }
  .site-nav li { border-bottom: 1px solid var(--line); }
  .site-nav li:last-child { border-bottom: none; padding-top: 1rem; }
  .site-nav a { display: block; padding: 0.9rem 0; font-size: 1.1rem; border-bottom: none; }
  .site-nav .nav-cta { text-align: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  padding: 0.8rem 1.7rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--amber); color: var(--night-2); }
.btn--primary:hover { background: var(--amber-2); color: var(--night-2); }
.btn--ghost { border-color: var(--line); color: var(--sand); background: transparent; }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber-2); }
.btn--small { padding: 0.5rem 1.1rem; font-size: 0.92rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(7rem, 14vh, 9.5rem);
  padding-bottom: clamp(3.5rem, 8vh, 6rem);
  background:
    radial-gradient(1200px 600px at 25% -10%, rgba(232, 162, 61, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(166, 64, 44, 0.12), transparent 60%),
    var(--night-2);
  overflow: hidden;
}

@media (max-width: 820px) {
    .hero {
      padding-top: clamp(5rem, 10vh, 9.5rem);
      padding-bottom: clamp(3.5rem, 8vh, 6rem);
    }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__eyebrow {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 9.5vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.hero__title span { display: block; }
.hero__title .hero__title-accent { color: var(--amber); }

.hero__lead {
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--mute);
  margin-bottom: 2rem;
}
.hero__lead strong { color: var(--sand); font-weight: 600; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.hero__portrait {
  justify-self: end;
  width: min(100%, 430px);
  margin: 0;
}
.hero__frame img {
  border-radius: calc(var(--radius) - 2px);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  /* Porträt ist höher als 4:5 – oben ausrichten, damit der Kopf
     beim Zuschnitt nicht angeschnitten wird */
  object-position: 50% 18%;
}
.hero__credit {
  display: block;
  text-align: right;
  margin-top: 0.55rem;
  font-size: 0.72rem;
  color: var(--mute);
  letter-spacing: 0.06em;
}

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__portrait { justify-self: center; margin-top: 0.5rem; }

  .hero__frame img {
    /* wie im Original ein hohes Porträt am Handy – aber auf kleinen
       Displays nicht über den Viewport hinauswachsen lassen */
    height: min(740px, 85svh);
  }
}

/* ---------- Social-Icons ---------- */
.socials {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  color: var(--sand);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.socials a:hover {
  border-color: var(--amber);
  color: var(--amber-2);
  transform: translateY(-2px);
}
.socials svg { width: 1.15rem; height: 1.15rem; fill: currentColor; }

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(4rem, 9vw, 6.5rem); }
.section--tint { background: var(--night-2); }

.section-head { margin-bottom: clamp(2rem, 5vw, 3.2rem); max-width: 46rem; }
.eyebrow {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.7rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  letter-spacing: -0.01em;
}
.section-intro { color: var(--mute); font-size: 1.05rem; max-width: 40rem; }

/* ---------- Über ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-photo img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
}
.about-photo { position: sticky; top: 6rem; margin: 0; }

.about-text p { color: var(--sand); }
.about-text p + p { margin-top: 1.1em; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}
.chips li {
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  color: var(--sand);
  background: var(--panel);
}
.chips-label {
  margin: 1.8rem 0 0;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

.timeline {
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
  border-left: 2px solid var(--line);
}
.timeline li {
  position: relative;
  padding: 0 0 1.35rem 1.6rem;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
}
.timeline__years {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--amber-2);
  font-size: 1rem;
  display: block;
}
.timeline__what { color: var(--sand); }
.timeline__detail { color: var(--mute); font-size: 0.95rem; }

.tour-line {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.95rem;
}
.tour-line strong {
  color: var(--sand);
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; }
}

/* ---------- Projekte ---------- */
.project {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: start;
  padding: clamp(1.8rem, 4vw, 2.8rem) 0;
  border-top: 1px solid var(--line);
}
.project:first-child { border-top: none; padding-top: 0; }
.project:nth-child(even) .project__media { order: 2; }

.project__media { position: sticky; top: 6rem; }
.project__media img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

.project--noimage { grid-template-columns: 1fr; }

.project__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  margin-bottom: 0.25rem;
}
.project__subtitle {
  color: var(--amber);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.project__text { color: var(--sand); }

.project__lineup { margin-top: 1.5rem; }
.project__lineup-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.6rem;
}
.lineup-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.lineup-list li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--sand);
  font-size: 0.98rem;
}
.lineup-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.5rem;
  height: 2px;
  background: var(--amber);
}

.project__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

@media (max-width: 820px) {
  .project { grid-template-columns: 1fr; }
  .project:nth-child(even) .project__media { order: 0; }
  .project__media { position: static; }
}

/* ---------- Shows ---------- */
.show-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.show-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.8rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem clamp(1.1rem, 3vw, 1.7rem);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.show-card:hover { transform: translateY(-2px); border-color: var(--amber); }

.show-date {
  display: grid;
  justify-items: center;
  min-width: 4.6rem;
  padding-right: clamp(1rem, 3vw, 1.6rem);
  border-right: 1px solid var(--line);
  font-family: var(--font-display);
  line-height: 1.05;
}
.show-date__day { font-size: 1.9rem; font-weight: 800; color: var(--amber); }
.show-date__month { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.show-date__year { font-size: 0.78rem; color: var(--mute); }
.show-date__tba { font-weight: 700; color: var(--amber); font-size: 0.95rem; text-align: center; }

.show-card__title { font-size: 1.12rem; font-weight: 600; font-family: var(--font-body); margin: 0 0 0.15rem; }
.show-card__place { color: var(--mute); margin: 0; font-size: 0.95rem; }

.show-card__link {
  border: 1.5px solid var(--amber);
  color: var(--amber-2);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.show-card__link:hover { background: var(--amber); color: var(--night-2); }

@media (max-width: 560px) {
  .show-card { grid-template-columns: auto 1fr; }
  .show-card__link { grid-column: 2; justify-self: start; }
}

.shows-empty {
  background: var(--panel);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 5vw, 2.6rem);
  text-align: center;
}
.shows-empty__lead { font-weight: 600; font-size: 1.15rem; margin-bottom: 0.4rem; }
.shows-empty p:last-of-type { color: var(--mute); margin-bottom: 1.4rem; }

/* Vergangene Shows */
.past-shows { margin-top: clamp(2.5rem, 6vw, 3.5rem); }
.past-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--mute);
}
.past-year {
  border-top: 1px solid var(--line);
}
.past-year:last-child { border-bottom: 1px solid var(--line); }
.past-year summary {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  cursor: pointer;
  padding: 0.95rem 0.2rem;
  list-style: none;
}
.past-year summary::-webkit-details-marker { display: none; }
.past-year summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--amber);
  transition: transform 0.2s ease;
}
.past-year[open] summary::after { content: "–"; }
.past-year__label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--sand);
}
.past-year__count { color: var(--mute); font-size: 0.9rem; }

.past-list {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.past-item {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  font-size: 0.97rem;
}
.past-item__date {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--amber);
  min-width: 3.4rem;
}
.past-item__text { color: var(--mute); }
a.past-item__text { text-decoration: underline; text-underline-offset: 3px; }
a.past-item__text:hover { color: var(--amber-2); }

/* ---------- Galerie ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.9rem;
}
.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  background: var(--panel);
  border-radius: 10px;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.045); }
.gallery-item__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 0.9rem 0.7rem;
  font-size: 0.85rem;
  color: var(--sand);
  text-align: left;
  background: linear-gradient(transparent, rgba(16, 20, 36, 0.88));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery-item:hover .gallery-item__caption,
.gallery-item:focus-visible .gallery-item__caption { opacity: 1; }

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 12, 24, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox[hidden] { display: none; }
body.lightbox-open { overflow: hidden; }

.lightbox img {
  max-width: min(94vw, 1100px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox__caption {
  color: var(--sand);
  margin-top: 0.9rem;
  font-size: 0.95rem;
  text-align: center;
  min-height: 1.4em;
}
.lightbox__counter { color: var(--mute); font-size: 0.8rem; margin-top: 0.2rem; }

.lightbox button {
  position: absolute;
  background: rgba(29, 36, 64, 0.85);
  border: 1.5px solid var(--line);
  color: var(--sand);
  border-radius: 50%;
  width: 2.9rem;
  height: 2.9rem;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lightbox button:hover { border-color: var(--amber); color: var(--amber-2); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: 0.8rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 0.8rem; top: 50%; transform: translateY(-50%); }

/* ---------- Videos (YouTube, Zwei-Klick) ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(1rem, 3vw, 1.8rem);
}
/* Nur ein Video: nicht über die volle Breite strecken */
.video-grid:has(> .video-card:only-child) {
  grid-template-columns: minmax(0, 620px);
}

.video-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0.8rem 0 0;
}

.video-facade,
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
}
.video-facade {
  display: block;
  border: 1px solid var(--line);
  background:
    radial-gradient(60% 80% at 50% 20%, rgba(232, 162, 61, 0.14), transparent 70%),
    var(--panel);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.video-facade:hover { border-color: var(--amber); transform: translateY(-2px); }

.video-facade__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.video-facade__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-facade__play svg {
  width: 4.2rem;
  height: 4.2rem;
  padding: 1.1rem;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--amber);
  fill: var(--night-2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.video-facade:hover .video-facade__play svg,
.video-facade:focus-visible .video-facade__play svg {
  transform: scale(1.08);
  background: var(--amber-2);
}

.video-facade__hint {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 0.9rem 0.7rem;
  font-size: 0.8rem;
  color: var(--sand);
  background: linear-gradient(transparent, rgba(16, 20, 36, 0.9));
  text-align: left;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-cards { display: grid; gap: 0.9rem; }
.contact-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  color: var(--sand);
  transition: border-color 0.2s ease, transform 0.15s ease;
}
a.contact-card:hover { border-color: var(--amber); transform: translateY(-2px); color: var(--sand); }
.contact-card__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.3rem;
}
.contact-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  overflow-wrap: anywhere;
}
.contact-card__hint { color: var(--mute); font-size: 0.88rem; margin: 0.3rem 0 0; }

.contact-socials { margin-top: 1.4rem; }
.contact-socials .chips-label { margin-top: 0; margin-bottom: 0.8rem; }

/* Formular */
.contact-form { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
  color: var(--mute);
}
.field input,
.field textarea {
  width: 100%;
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: var(--sand);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.field textarea { min-height: 9rem; resize: vertical; }

.form-status { color: var(--amber-2); font-size: 0.95rem; min-height: 1.4em; margin: 0; }
.form-note { color: var(--mute); font-size: 0.88rem; margin: 0; }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--night-2);
  padding: clamp(2.5rem, 6vw, 3.5rem) 0 2rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
}
.footer-brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--mute);
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}
.footer-meta {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  color: var(--mute);
  font-size: 0.85rem;
}
.footer-meta p { margin: 0; }

/* ---------- Fehleranzeige (Inhalte nicht ladbar) ---------- */
.load-error {
  border: 1.5px dashed var(--clay);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  color: var(--sand);
}
.load-error__hint { color: var(--mute); font-size: 0.9rem; margin: 0; }

/* ---------- Einblendungen ---------- */
.will-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.will-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Rechtsseiten (Impressum / Datenschutz) ---------- */
.legal-main {
  padding-top: clamp(7rem, 14vh, 9rem);
  padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
}
.legal {
  max-width: 46rem;
}
.legal h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1.6rem;
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 2.2rem;
  color: var(--amber-2);
}
.legal p, .legal li { color: var(--sand); }
.legal ul { padding-left: 1.2rem; }
.legal .legal-meta { color: var(--mute); font-size: 0.9rem; }
.legal address { font-style: normal; line-height: 1.7; }
.legal .placeholder {
  background: rgba(232, 162, 61, 0.14);
  border-radius: 4px;
  padding: 0 0.25em;
}
.footer-legal a { color: var(--mute); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--amber-2); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .will-reveal { opacity: 1; transform: none; }
}
