/* =========================================================================
   IDA BRENNER — Fotografin, Hannover
   Schwarzweiss-Editorial. Zwei Schriften: Geist (Grotesk) fuer alles,
   Instrument Serif kursiv nur als Akzent in Klammern und Zahlen.
   ========================================================================= */

:root {
  --schwarz: #0d0d0d;
  --weiss: #ffffff;
  --tinte: #141414;
  --grau-text: #6b6b6b;
  --linie: #d5d5d5;
  --linie-zart: #e6e6e6;
  --feld: #d9d9d9;
  --feld-fokus: #cccccc;

  --rand: clamp(18px, 5.2vw, 76px);
  --kopf-h: 74px;
  --spalt: clamp(10px, 1vw, 16px);

  --sans: 'Geist', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;

  --tempo: 320ms cubic-bezier(.22, .61, .36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--weiss);
  color: var(--tinte);
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 0.62vw + 11.6px, 16px);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
figure { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
a { color: inherit; }

/* Alle Fotos laufen bewusst in Schwarzweiss — das haelt die Seite zusammen,
   auch wenn ein einzelnes Bild farbig geliefert wird. */
.hero-bild img, .ueber-bild img, .koll-bild img, .kachel-bild img,
.ansatz-bild img, .gal img, .cta-bild img, .marke-bild, .stimme-bild {
  filter: grayscale(1) contrast(1.03);
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--schwarz); color: #fff; padding: 12px 18px;
  font-size: 13px; letter-spacing: .04em;
}
.skip:focus { left: 8px; top: 8px; }

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

/* ---------------------------------------------------------------- Kopf --- */

.kopf {
  position: sticky; top: 0; z-index: 90;
  background: var(--weiss);
  border-bottom: 1px solid var(--schwarz);
}
.kopf-innen {
  height: var(--kopf-h);
  padding-inline: var(--rand);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}

.marke { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.marke-bild {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; background: var(--feld);
}
.marke-name {
  font-family: var(--serif); font-style: italic; font-size: 20px;
  line-height: 1; letter-spacing: .01em;
}
@media (min-width: 861px) { .marke-name { display: none; } }

.nav { display: flex; gap: clamp(18px, 2.6vw, 44px); }
.nav a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .015em;
  color: var(--tinte);
  position: relative;
  padding-block: 6px;
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--tempo);
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }

.burger {
  display: none;
  width: 40px; height: 40px; padding: 0;
  background: none; border: 1px solid var(--schwarz); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span {
  display: block; width: 17px; height: 1px; background: var(--schwarz);
  transition: transform var(--tempo), opacity var(--tempo);
}
.burger[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

@media (max-width: 860px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: var(--kopf-h) 0 auto 0;
    background: var(--weiss);
    border-bottom: 1px solid var(--schwarz);
    flex-direction: column; gap: 0;
    padding: 8px var(--rand) 26px;
    transform: translateY(-8px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity var(--tempo), transform var(--tempo), visibility var(--tempo);
    max-height: calc(100dvh - var(--kopf-h)); overflow-y: auto;
  }
  .nav.offen { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav a {
    font-size: 22px; padding: 14px 0;
    border-bottom: 1px solid var(--linie-zart);
  }
  .nav a::after { display: none; }
}

/* ------------------------------------------------------------ Bausteine --- */

.titel-gross {
  font-size: clamp(2rem, 5.4vw, 4.4rem);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

em, .kursiv {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.mehr-zeile { display: flex; justify-content: flex-end; margin-top: clamp(24px, 3vw, 48px); }
.mehr {
  display: inline-flex; align-items: center; gap: 14px;
  text-decoration: none; font-size: 13px;
}
.mehr svg { transition: transform var(--tempo); }
.mehr:hover svg, .mehr:focus-visible svg { transform: translateX(8px); }

/* ---------------------------------------------------------------- Hero --- */

.hero { padding: clamp(34px, 6vw, 78px) var(--rand) clamp(28px, 4vw, 54px); }

.hero-typo { padding-left: clamp(0px, 17vw, 260px); }

.hero-kicker {
  font-size: clamp(1.3rem, 2.4vw, 2.1rem);
  line-height: 1;
  margin-bottom: clamp(6px, 1vw, 14px);
}

.hero-titel {
  font-size: clamp(3.4rem, 13.4vw, 11.5rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.045em;
  text-transform: uppercase;
  position: relative; z-index: 2;
}
.hero-titel span { display: block; }

.hero-bilder {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--spalt);
  /* Die Bilder schieben sich unter die Riesenschrift — wie in der Vorlage.
     Bewusst knapp gehalten: `hero-wide.jpg` ist laut BILDLISTE oben hell,
     aber ein tiefer Ueberlappungswert wuerde schwarze Schrift auf einem
     dunkleren Foto unlesbar machen. */
  margin-top: clamp(4px, .8vw, 14px);
  position: relative; z-index: 1;
}
.hero-bild-hoch { grid-column: 1 / 3; aspect-ratio: 5 / 9; }
.hero-bild-breit { grid-column: 5 / 13; aspect-ratio: 2 / 1; }
.hero-bild img, .ueber-bild img, .koll-bild img, .kachel-bild img,
.ansatz-bild img, .cta-bild img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-bild { background: var(--feld); overflow: hidden; }

.hero-fuss {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: clamp(16px, 2vw, 28px);
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--grau-text);
}

@media (max-width: 700px) {
  .hero-typo { padding-left: 0; }
  .hero-bilder { grid-template-columns: repeat(6, 1fr); margin-top: 14px; }
  .hero-bild-hoch { grid-column: 1 / 3; aspect-ratio: 3 / 4; }
  .hero-bild-breit { grid-column: 3 / 7; aspect-ratio: 4 / 3; }
}

/* ---------------------------------------------------------- Ueber mich --- */

.ueber {
  padding: clamp(56px, 8vw, 130px) var(--rand);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .86fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
}
.ueber-absatz {
  margin-top: clamp(22px, 3vw, 42px);
  max-width: 56ch;
  font-size: clamp(14px, .5vw + 12.6px, 17px);
  line-height: 1.75;
}

.zahlen {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 20px);
  margin-top: clamp(34px, 5vw, 76px);
  max-width: 560px;
}
.zahl {
  border: 1px solid var(--schwarz);
  padding: clamp(14px, 1.6vw, 22px) clamp(10px, 1.4vw, 20px);
  display: flex; flex-direction: column; gap: clamp(10px, 1.6vw, 22px);
}
.zahl-wert {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem); line-height: 1;
}
.zahl-label {
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  line-height: 1.4;
}

.ueber-bild { aspect-ratio: 4 / 3; background: var(--feld); overflow: hidden; }

@media (max-width: 860px) {
  .ueber { grid-template-columns: 1fr; }
  .ueber-bild { order: -1; aspect-ratio: 4 / 3; }
}

/* -------------------------------------------------------- Kollektionen --- */

.arbeiten { padding: clamp(46px, 6vw, 100px) var(--rand) clamp(56px, 8vw, 120px); }
.koll-liste { margin-top: clamp(34px, 5vw, 82px); }
.koll { border-top: 1px solid var(--linie); }
.koll:last-child { border-bottom: 1px solid var(--linie); }

.koll-kopf {
  width: 100%; background: none; border: 0; cursor: pointer;
  font: inherit; color: inherit; text-align: left;
  display: grid;
  grid-template-columns: minmax(64px, 44%) 1fr auto;
  align-items: center;
  gap: clamp(12px, 3vw, 40px);
  padding: clamp(18px, 2.4vw, 34px) 0;
  transition: opacity var(--tempo);
}
.koll-kopf:hover { opacity: .58; }
.koll-nr { font-size: clamp(1.1rem, 1.6vw, 1.45rem); white-space: nowrap; }
.koll-nr em { font-size: 1.15em; }
.koll-nr span { margin-left: .5em; color: var(--grau-text); }
.koll-name {
  text-transform: uppercase;
  font-size: clamp(13px, 1.1vw, 17px);
  letter-spacing: .04em;
}
.koll-pfeil { display: inline-flex; transition: transform var(--tempo); }
.koll-kopf:hover .koll-pfeil { transform: translateX(10px); }
.koll-kopf[aria-expanded="true"] .koll-pfeil { transform: rotate(90deg); }

.koll-inhalt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  gap: clamp(20px, 4vw, 60px);
  padding: 4px 0 clamp(28px, 3.4vw, 48px);
  align-items: start;
}
.koll-inhalt[hidden] { display: none; }
.koll-text { max-width: 54ch; }
.koll-daten {
  display: flex; flex-wrap: wrap; gap: clamp(18px, 3vw, 46px);
  margin-top: clamp(18px, 2vw, 28px);
}
.koll-daten dt {
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--grau-text); margin-bottom: 5px;
}
.koll-daten dd { font-size: 15px; }
.koll-cta {
  display: inline-block; margin-top: clamp(20px, 2.4vw, 34px);
  font-size: 13px; text-decoration: none;
  border-bottom: 1px solid currentColor; padding-bottom: 3px;
}
.koll-bild { aspect-ratio: 3 / 2; background: var(--feld); overflow: hidden; }

@media (max-width: 760px) {
  .koll-kopf { grid-template-columns: 62px 1fr auto; }
  .koll-inhalt { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------- Warum ich --- */

.warum { padding: clamp(46px, 6vw, 100px) var(--rand) clamp(56px, 8vw, 120px); }
.warum-grid {
  margin-top: clamp(30px, 4vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--spalt);
}
.kachel { aspect-ratio: 3 / 4; overflow: hidden; }
.kachel-text {
  border: 1px solid var(--schwarz);
  padding: clamp(14px, 1.5vw, 24px);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 18px;
}
.kachel-oben { font-size: clamp(12px, .78vw, 15px); line-height: 1.5; }
.kachel-oben em { font-size: 1.22em; line-height: 1.2; }
.kachel-unten {
  font-size: clamp(10px, .66vw, 12px);
  letter-spacing: .07em; text-transform: uppercase; line-height: 1.65;
}
.kachel-schwarz { background: var(--schwarz); }
.kachel-bild { background: var(--feld); }

@media (max-width: 900px) {
  .warum-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kachel-oben { font-size: 14px; }
  .kachel-unten { font-size: 11px; }
}
@media (max-width: 460px) {
  .warum-grid { grid-template-columns: 1fr; }
  .kachel { aspect-ratio: 4 / 3; }
  .kachel-bild, .kachel-schwarz { aspect-ratio: 3 / 4; }
}

/* ---------------------------------------------------------- Mein Ansatz --- */

.ansatz { padding: clamp(46px, 6vw, 100px) var(--rand) clamp(70px, 9vw, 150px); }
.ansatz-kopf {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
}
.ansatz-lead { max-width: 54ch; padding-top: 6px; }

/* Die Zeilenluecke ist hier bewusst gross: die schwarze Karte fuellt sie aus
   und beginnt dadurch genau an der Unterkante der Fotos. */
.ansatz-grid {
  --luecke: clamp(30px, 5.4vw, 96px);
  margin-top: clamp(30px, 4vw, 62px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: var(--spalt);
  row-gap: var(--luecke);
}
.ansatz-bild { background: var(--feld); overflow: hidden; }
.ansatz-bild-a { grid-column: 1 / 3; grid-row: 1; aspect-ratio: 16 / 10; }
.ansatz-bild-b { grid-column: 3 / 4; grid-row: 1; aspect-ratio: 11 / 14; }

.schritt {
  grid-row: 2;
  border: 1px solid var(--schwarz);
  background: var(--weiss);
  padding: clamp(13px, 1.4vw, 22px);
  min-height: clamp(150px, 15vw, 230px);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 20px;
}
.schritt-nr { font-size: clamp(11px, .8vw, 14px); }
.schritt-text {
  text-transform: uppercase;
  font-size: clamp(11px, .78vw, 14px);
  letter-spacing: .05em; line-height: 1.55;
}
.schritt-text em { text-transform: none; font-size: 1.32em; letter-spacing: 0; }

.schritt-schwarz {
  grid-column: 3; grid-row: 2;
  background: var(--schwarz); color: #fff; border-color: var(--schwarz);
  margin-top: calc(-1 * var(--luecke));
  justify-content: flex-start;
}
.schritt-fliess { font-size: clamp(11px, .74vw, 13.5px); line-height: 1.62; }

/* Liegt quer ueber der Kante zwischen Karte 02 und der schwarzen Karte.
   `transform` haelt sie aus dem Layout heraus — die Zeile bleibt vierspaltig. */
.schritt-gedreht {
  grid-column: 3; grid-row: 2;
  transform: translate(-58%, 30%) rotate(-4.5deg);
  z-index: 3;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
}

@media (max-width: 900px) {
  .ansatz-kopf { grid-template-columns: 1fr; }
  .ansatz-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ansatz-bild-a { grid-column: 1 / 3; grid-row: 1; aspect-ratio: 16 / 10; }
  .ansatz-bild-b { grid-column: 1 / 3; grid-row: 2; aspect-ratio: 4 / 3; }
  .schritt { grid-row: auto; }
  .schritt-schwarz { grid-column: auto; grid-row: auto; margin-top: 0; }
  .schritt-gedreht { grid-column: auto; grid-row: auto; transform: none; box-shadow: none; }
}
@media (max-width: 520px) {
  .ansatz-grid { grid-template-columns: 1fr; }
  .ansatz-bild-a, .ansatz-bild-b { grid-column: 1; }
}

/* -------------------------------------------------------------- Stimmen --- */

.stimmen { padding: clamp(46px, 6vw, 100px) var(--rand) clamp(50px, 7vw, 110px); }
.stimmen-grid {
  margin-top: clamp(34px, 5vw, 78px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
}
.stimme { display: flex; flex-direction: column; gap: 18px; }
.stimme-bild {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; background: var(--feld);
}
.stimme blockquote { margin: 0; }
.stimme p { font-size: clamp(12px, .72vw, 14px); line-height: 1.72; }
.stimme figcaption { font-size: 12px; letter-spacing: .02em; }
.stimme figcaption span { color: var(--grau-text); }

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

/* -------------------------------------------------------------- Galerie --- */

.galerie { padding: clamp(46px, 6vw, 100px) var(--rand) clamp(56px, 8vw, 120px); }
.gal-grid {
  margin-top: clamp(34px, 5vw, 78px);
  columns: 3;
  column-gap: clamp(12px, 1.8vw, 30px);
}
.gal {
  break-inside: avoid;
  margin-bottom: clamp(12px, 1.8vw, 30px);
  background: var(--feld);
  overflow: hidden;
  cursor: zoom-in;
}
.gal img {
  width: 100%; height: auto;
  transition: transform 600ms cubic-bezier(.22, .61, .36, 1);
}
.gal:hover img { transform: scale(1.03); }

/* Die Einzuege brechen das Spaltenraster auf — ohne sie sieht die Galerie
   aus wie drei brave Saeulen statt wie eine Collage. */
.gal-2 { margin-inline: 22% 4%; }
.gal-5 { margin-inline: 6% 16%; }
.gal-7 { margin-inline: 26% 2%; margin-top: clamp(10px, 2vw, 34px); }
.gal-9 { margin-inline: 2% 20%; }
.gal-10 { margin-inline: 10% 6%; }

@media (max-width: 900px) { .gal-grid { columns: 2; } }
@media (max-width: 560px) {
  .gal-grid { columns: 1; }
  .gal-2, .gal-5, .gal-7, .gal-9, .gal-10 { margin-inline: 0; }
}

/* ------------------------------------------------------------- Kontakt --- */

.cta {
  padding: clamp(50px, 7vw, 120px) var(--rand) clamp(60px, 8vw, 130px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .78fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}
.cta-titel {
  font-size: clamp(1.9rem, 4.4vw, 3.7rem);
  font-weight: 400; line-height: .98;
  letter-spacing: -.025em; text-transform: uppercase;
  max-width: 15ch;
}
.cta-titel em { text-transform: none; font-size: 1.06em; }

.formular { margin-top: clamp(30px, 4vw, 56px); max-width: 520px; }
.feld { margin-bottom: 12px; }
.feld label {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}
.feld input, .feld select {
  width: 100%;
  font: inherit; font-size: 15px;
  color: var(--tinte);
  background: var(--feld);
  border: 1px solid transparent;
  border-radius: 0;
  padding: 17px 18px;
  appearance: none;
}
.feld select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%23141414' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 46px;
}
.feld input::placeholder { color: #6f6f6f; }
.feld input:focus, .feld select:focus {
  outline: none; background: var(--feld-fokus); border-color: var(--schwarz);
}
.feld input:focus-visible, .feld select:focus-visible { outline: 2px solid var(--schwarz); outline-offset: 2px; }
.feld input[aria-invalid="true"] { border-color: #b0140f; }

.feld-fehler { color: #a0110c; font-size: 13px; margin: 4px 0 10px; }
.feld-fehler[hidden] { display: none; }

.knopf {
  display: block; width: 100%;
  background: var(--schwarz); color: #fff;
  border: 1px solid var(--schwarz); border-radius: 0;
  font: inherit; font-size: 15px;
  padding: 18px 20px; margin-top: 10px;
  text-align: center; text-decoration: none; cursor: pointer;
  transition: background var(--tempo), color var(--tempo);
}
.knopf:hover { background: #fff; color: var(--schwarz); }
.knopf-hell { background: #fff; color: var(--schwarz); }
.knopf-hell:hover { background: var(--schwarz); color: #fff; }

.formular-hinweis {
  margin-top: 16px; font-size: 12px; line-height: 1.6; color: var(--grau-text);
}
.formular-hinweis a { color: inherit; }

.cta-bild { aspect-ratio: 1 / 1; background: var(--feld); overflow: hidden; }

@media (max-width: 860px) {
  .cta { grid-template-columns: 1fr; }
  .cta-bild { order: -1; aspect-ratio: 4 / 3; }
}

/* ------------------------------------------------------------------ Fuss --- */

.fuss {
  background: var(--schwarz); color: #fff;
  padding: clamp(44px, 6vw, 92px) var(--rand) clamp(28px, 3vw, 44px);
}
.fuss-innen {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
}
.fuss-name {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem); line-height: 1;
}
.fuss-ort { margin-top: clamp(18px, 2.4vw, 34px); font-size: 14px; color: #cfcfcf; }
.fuss-recht {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: clamp(34px, 6vw, 96px);
}
.fuss-recht a, .fuss-nav a, .fuss-tel, .fuss-mail {
  color: #cfcfcf; text-decoration: none; font-size: 14px;
  transition: color var(--tempo);
}
.fuss-recht a:hover, .fuss-nav a:hover, .fuss-tel:hover, .fuss-mail:hover { color: #fff; }

.fuss-nav { display: flex; flex-direction: column; gap: 16px; }
.fuss-nav a { color: #fff; }

.fuss-kontakt { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.fuss-tel, .fuss-mail { color: #fff; }
.fuss-social { display: flex; gap: 14px; margin-top: clamp(20px, 4vw, 60px); }
.fuss-social a {
  width: 34px; height: 34px; border: 1px solid #4a4a4a; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; transition: background var(--tempo), color var(--tempo);
}
.fuss-social a:hover { background: #fff; color: var(--schwarz); }

.fuss-demo {
  margin-top: clamp(36px, 5vw, 72px);
  padding-top: 20px;
  border-top: 1px solid #2a2a2a;
  font-size: 12px; color: #8d8d8d;
}

@media (min-width: 861px) { .fuss-kontakt { align-items: flex-end; text-align: right; } }
@media (max-width: 860px) { .fuss-innen { grid-template-columns: 1fr; } .fuss-recht { margin-top: 26px; } }

/* ----------------------------------------------------------------- Modal --- */

.modal { position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-hg { position: absolute; inset: 0; background: rgba(10, 10, 10, .62); }
.modal-box {
  position: relative; z-index: 1;
  background: #fff; border: 1px solid var(--schwarz);
  padding: clamp(24px, 3.4vw, 44px);
  width: min(520px, 100%);
  max-height: calc(100dvh - 40px); overflow-y: auto;
}
.modal-zu {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; background: none; border: 0; cursor: pointer;
  display: grid; place-items: center; color: var(--tinte);
}
.modal-kicker { font-size: 20px; line-height: 1; color: var(--grau-text); }
.modal-titel {
  margin-top: 8px;
  font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 400;
  line-height: 1; letter-spacing: -.02em; text-transform: uppercase;
}
.modal-text {
  margin-top: 16px; font-size: 14px; line-height: 1.68;
  border-top: 1px solid var(--linie); padding-top: 16px; white-space: pre-line;
}
.modal-knoepfe { margin-top: 22px; display: grid; gap: 10px; }
.modal-knoepfe .knopf { margin-top: 0; }
.modal-fuss { margin-top: 16px; font-size: 12px; color: var(--grau-text); }

/* ------------------------------------------------------------- Lightbox --- */

.lightbox {
  position: fixed; inset: 0; z-index: 160;
  background: rgba(8, 8, 8, .95);
  display: grid; place-items: center; padding: clamp(14px, 4vw, 60px);
}
.lightbox[hidden] { display: none; }
.lb-figur { max-width: min(1100px, 100%); max-height: 100%; display: grid; gap: 14px; }
.lb-figur img {
  max-width: 100%; max-height: calc(100dvh - 150px);
  width: auto; margin-inline: auto; object-fit: contain;
  filter: grayscale(1) contrast(1.03);
}
.lb-figur figcaption { color: #cfcfcf; font-size: 13px; text-align: center; }
.lb-zu, .lb-nav {
  position: absolute; background: none; border: 0; cursor: pointer; color: #fff;
  width: 48px; height: 48px; display: grid; place-items: center;
}
.lb-zu { top: 10px; right: 12px; }
.lb-prev { left: 6px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 6px; top: 50%; transform: translateY(-50%); }
.lb-zu:hover, .lb-nav:hover { opacity: .6; }

/* ----------------------------------------------------------- Bewegungen --- */

/* Bewusst `translate` statt `transform`: die gedrehte Karte 03 traegt ihre
   Drehung in `transform` — ein Einblenden ueber `transform` wuerde sie loeschen. */
.auf { opacity: 0; translate: 0 18px; }
.auf-da { opacity: 1; translate: none; transition: opacity 700ms ease, translate 700ms cubic-bezier(.22, .61, .36, 1); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .auf { opacity: 1; translate: none; }
  .gal:hover img { transform: none; }
}
