/* Wenn der Berg sich erhebt · Stil der Startseite und der Unterseite Die Serie.
   Handschrift der Studio-Seite: Ink und Gold, Playfair Display und Inter, Aurora, Ken-Burns, Reveal. */
@font-face { font-family: 'Inter'; src: url('schriften/inter-var.woff2') format('woff2'); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('schriften/playfair-var.woff2') format('woff2'); font-weight: 400 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('schriften/playfair-italic-var.woff2') format('woff2'); font-weight: 400 900; font-style: italic; font-display: swap; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #080808; --bg2: #0e0d0b; --bg3: #161410; --bg4: #1e1b14;
  --border: rgba(212,160,48,0.14); --text: #f0ead8; --muted: #9c907c;
  --accent: #d4a030; --accent2: #f0c060; --white: #fff;
  --serif: 'Playfair Display', Georgia, serif; --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --leiste: 56px;
}
/* Kein overflow-x: clip auf html oder body: Damit zeichnet Chrome die Seite beim Bildlauf nicht mehr. */
/* Der Sprung auf eine Marke beim Laden (zum Beispiel /#newsletter aus einer Videobeschreibung) ist sofort da; weiches Rollen schaltet das Skript danach ein. */
html { scroll-padding-top: calc(var(--leiste) + 8px); }
html.weich { scroll-behavior: smooth; }
body {
  background: linear-gradient(180deg, #070707 0%, #0c0b08 22%, #090807 44%, #0e0c09 66%, #0a0907 84%, #070707 100%);
  color: var(--text); font-family: var(--sans); line-height: 1.7; -webkit-font-smoothing: antialiased;
}
/* Aurora: fließende Goldlichtflächen hinter allem */
body::before {
  content: ''; position: fixed; inset: -10%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(48% 34% at 16% 10%, rgba(212,160,48,0.11), transparent 62%),
    radial-gradient(52% 38% at 86% 36%, rgba(240,192,96,0.075), transparent 62%),
    radial-gradient(46% 32% at 22% 64%, rgba(212,160,48,0.07), transparent 62%),
    radial-gradient(50% 36% at 78% 88%, rgba(240,192,96,0.06), transparent 62%);
  animation: auroraDrift 30s ease-in-out infinite alternate; will-change: transform, opacity;
}
@keyframes auroraDrift { 0% { transform: translate3d(0,0,0) scale(1); opacity: .85; } 50% { transform: translate3d(1.5%,-2%,0) scale(1.05); opacity: 1; } 100% { transform: translate3d(-1%,-3.5%,0) scale(1.08); opacity: .9; } }
@keyframes kenBurns { 0% { transform: scale(1) translate(0,0); } 50% { transform: scale(1.05) translate(-0.8%,-0.6%); } 100% { transform: scale(1) translate(0,0); } }
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

a { color: var(--accent2); }
em { font-style: italic; }
img, video { display: block; max-width: 100%; height: auto; }
.sprung { position: absolute; left: -999px; top: 0; background: var(--accent); color: #000; padding: .6rem 1rem; z-index: 999; }
.sprung:focus { left: 1rem; top: 1rem; }
:focus-visible { outline: 2px solid var(--accent2); outline-offset: 3px; }

/* ── Reveal: aus der Unschärfe scharf ── */
.reveal { opacity: 0; transform: translateY(40px); filter: blur(9px);
  transition: opacity 1.05s cubic-bezier(.22,1,.36,1), transform 1.15s cubic-bezier(.22,1,.36,1), filter 1.05s cubic-bezier(.22,1,.36,1); will-change: opacity, transform, filter; }
.reveal.bild { filter: none; transform: translateY(26px); }
.reveal.visible { opacity: 1 !important; transform: none !important; filter: blur(0) !important; }
.rd1 { transition-delay: .1s; } .rd2 { transition-delay: .2s; } .rd3 { transition-delay: .3s; } .rd4 { transition-delay: .4s; }

/* ── Kopfleiste: einzeilig, höchstens 56 Pixel ── */
header.leiste {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--leiste);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 0 2.5rem; background: rgba(8,8,8,0.84); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.wortmarke { font-family: var(--serif); font-weight: 700; font-size: .98rem; color: var(--text); text-decoration: none; white-space: nowrap; }
.wortmarke span { color: var(--accent); }
.leiste-rechts { display: flex; align-items: center; gap: 1.6rem; }
nav ul { display: flex; gap: 1.6rem; list-style: none; }
nav a { color: var(--muted); text-decoration: none; font-size: .8rem; letter-spacing: .05em; transition: color .2s; white-space: nowrap; }
nav a:hover, nav a.aktiv { color: var(--text); }

/* ── Knöpfe: gefüllt in Gold für das Hauptziel, Umriss für das zweite ── */
.knopf { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 1.5rem; font-family: var(--sans); font-weight: 700; font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; border-radius: 2px; cursor: pointer; transition: opacity .2s, transform .2s, border-color .2s, background .2s; position: relative; overflow: hidden; border: 1px solid transparent; }
.knopf.gold { background: var(--accent); color: #000; border-color: var(--accent); }
.knopf.gold::after { content: ''; position: absolute; top: 0; left: -85%; width: 55%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255,255,255,0.5), transparent); transform: skewX(-20deg); transition: left .55s ease; pointer-events: none; }
.knopf.gold:hover::after { left: 135%; }
.knopf.gold:hover { opacity: .92; transform: translateY(-2px); }
.knopf.umriss { background: rgba(8,8,8,0.35); color: var(--text); border-color: rgba(240,234,216,0.35); }
.knopf.umriss:hover { border-color: var(--text); transform: translateY(-2px); }
.knopf.klein { min-height: 36px; padding: 0 1rem; font-size: .72rem; }
/* Goldlinien-Verweis: Linie unter dem Text, beim Hover läuft die Fläche voll */
.linie { display: inline-block; position: relative; color: var(--text); text-decoration: none; font-weight: 600; font-size: .92rem; letter-spacing: .06em; padding: .55rem 0 .5rem; border-bottom: 1px solid var(--accent); background: linear-gradient(to top, rgba(212,160,48,0.18), rgba(212,160,48,0.18)) no-repeat left bottom / 100% 0; transition: background-size .5s cubic-bezier(.16,1,.3,1), color .3s; cursor: pointer; font-family: var(--sans); }
.linie:hover, .linie:focus-visible { background-size: 100% 100%; color: var(--accent2); }

/* ── Eingang mit stummem Video ── */
.eingang { min-height: 100vh; min-height: 100svh; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: calc(var(--leiste) + 3rem) 1.5rem 7rem; }
.eingang-bild { position: absolute; inset: 0; z-index: 0; }
.eingang-bild img, .eingang-bild video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.eingang-bild img { opacity: .85; animation: kenBurns 22s ease-in-out infinite; transform-origin: center center; }
.eingang-bild video { opacity: 0; transition: opacity 1.4s ease; }
.eingang-bild video.laeuft { opacity: .88; }
.eingang::before { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(8,8,8,0.72) 0%, rgba(8,8,8,0.18) 30%, rgba(8,8,8,0.12) 55%, rgba(8,8,8,0.92) 100%); }
.eingang > :not(.eingang-bild) { position: relative; z-index: 2; }
.eingang h1 { font-family: var(--serif); font-weight: 700; font-size: clamp(2.6rem, 7vw, 6rem); line-height: 1.05; letter-spacing: -0.015em; max-width: 1000px; margin-bottom: 1.3rem; text-shadow: 0 2px 30px rgba(0,0,0,.7); animation: heroFadeIn 1.2s ease .25s both; }
.eingang .satz { font-size: clamp(1.05rem, 2.1vw, 1.35rem); color: var(--text); font-weight: 300; max-width: 720px; margin-bottom: .8rem; text-shadow: 0 1px 18px rgba(0,0,0,.8); animation: heroFadeIn 1.2s ease .5s both; }
.eingang .wann { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent2); font-weight: 600; text-shadow: 0 1px 12px rgba(0,0,0,.9); margin-bottom: 2.2rem; animation: heroFadeIn 1.2s ease .7s both; }
.eingang .knoepfe { display: flex; gap: .9rem; flex-wrap: wrap; justify-content: center; animation: heroFadeIn 1.2s ease .85s both; }

/* ── Abschnitte ── */
.abschnitt { padding: 6.5rem 4rem; position: relative; }
.innen { max-width: 1120px; margin: 0 auto; }
.schmal { max-width: 720px; }
.ueberzeile { display: inline-flex; align-items: center; gap: .6rem; color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.2rem; }
.ueberzeile::before { content: '◆'; font-size: .45rem; }
h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(1.8rem, 3.8vw, 2.9rem); line-height: 1.12; margin-bottom: 1.3rem; letter-spacing: -0.01em; }
h2 em { color: var(--accent); }
h3 { font-family: var(--serif); font-weight: 700; font-size: 1.28rem; margin: 2.2rem 0 .7rem; }
p { font-size: 1.04rem; color: #d9d2c0; margin-bottom: 1.2rem; max-width: 60ch; }
p.leise { color: var(--muted); font-size: .92rem; }
.einleitung p { font-size: 1.16rem; line-height: 1.75; color: var(--text); font-weight: 300; }
figure { margin: 0; }
figcaption { font-size: .76rem; color: var(--muted); margin-top: .7rem; letter-spacing: .02em; }
.bild { position: relative; overflow: hidden; border: 1px solid var(--border); background: var(--bg3); }
.bild img { width: 100%; height: 100%; object-fit: cover; }
.zweispaltig { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: center; }
.zweispaltig.umgekehrt { grid-template-columns: 1fr 1.05fr; }
.zweispaltig .bild { aspect-ratio: 3/2; }
.zweispaltig .bild.hoch { aspect-ratio: 4/5; }
.parallax .bild img { will-change: transform; transform: translateY(0) scale(1.12); }
.kernsatz { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.7rem, 3.4vw, 2.7rem); line-height: 1.3; color: var(--text); max-width: 20ch; margin: 1.2rem 0 2rem; border-left: 2px solid var(--accent); padding-left: 1.4rem; }
.zitat { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.45; color: var(--text); border-left: 2px solid var(--accent); padding-left: 1.4rem; margin: 1.6rem 0 1.2rem; max-width: 30ch; }
.doppelseite { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem 4rem; }
.doppelseite p { max-width: none; }
.schichten { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.6rem 2.4rem; margin-top: 3.5rem; }
.schicht { border-top: 1px solid var(--border); padding-top: 1.3rem; }
.schicht .nr { font-family: var(--serif); font-size: 1.4rem; color: var(--accent); opacity: .6; margin-bottom: .5rem; }
.schicht h3 { margin: 0 0 .6rem; font-size: 1.22rem; }
.schicht p { font-size: .95rem; max-width: none; margin-bottom: 0; }
.jahr { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2.6rem; }
.zeit { border-left: 1px solid var(--accent); padding-left: 1.2rem; }
.zeit .wann { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: .5rem; }
.zeit p { font-size: .95rem; margin-bottom: 0; max-width: none; }
.streifen { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3.5rem; }
.streifen .bild { aspect-ratio: 3/2; }

/* ── Newsletter-Band direkt unter dem Video ── */
.band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: linear-gradient(180deg, rgba(212,160,48,0.06), rgba(212,160,48,0.02)); }
.band .zweispaltig { gap: 3rem; }
.band .bild { aspect-ratio: 3/2; }
.band form { max-width: 520px; }

/* ── Ich-Abschnitt ── */
.ich { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: linear-gradient(180deg, transparent, rgba(212,160,48,0.035) 50%, transparent); }
.ich p { font-family: var(--serif); font-size: 1.22rem; line-height: 1.7; color: var(--text); font-weight: 400; }
.unterschrift { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--accent2); margin-top: 1rem; }
.beleg { display: grid; grid-template-columns: 200px 1fr; gap: 1.3rem; align-items: center; margin-top: 2.4rem; padding-top: 1.8rem; border-top: 1px solid var(--border); }
.beleg .bild { aspect-ratio: 16/9; }
.beleg p { font-size: .95rem; margin-bottom: .5rem; font-family: var(--sans); }

/* ── Gratwanderung ── */
.gratname { font-family: var(--sans); text-transform: uppercase; line-height: .95; margin: 0 0 .8rem; letter-spacing: .06em; }
.gratname .g { display: block; font-weight: 800; font-size: clamp(2.6rem, 6vw, 4.6rem); color: var(--text); letter-spacing: .02em; }
.gratname .w { display: block; font-weight: 500; font-size: clamp(.95rem, 1.8vw, 1.3rem); color: var(--accent); letter-spacing: .32em; margin-top: .35rem; }
.untertitel { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--text); margin-bottom: 1.4rem; }
.folge { border: 1px solid var(--border); padding: 1.2rem 1.3rem; margin-top: 1.4rem; background: rgba(22,20,16,0.6); max-width: 520px; }
.folge .klein { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: .5rem; }
.folge p { margin-bottom: .7rem; }
.folge .bild { aspect-ratio: 16/9; margin: .8rem 0 1rem; }

/* ── Unterstützen: drei Wege ── */
.wege { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 1.6rem 0 .6rem; max-width: 560px; }
.weg-karte { border: 1px solid var(--border); background: rgba(22,20,16,0.6); padding: 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
.weg-karte .klein { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.weg-karte p { margin: 0; font-size: .96rem; max-width: none; }
.konto { display: grid; grid-template-columns: auto 1fr auto; gap: .35rem 1rem; align-items: center; width: 100%; margin-top: .3rem; font-size: .95rem; }
.konto dt { color: var(--muted); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.konto dd { margin: 0; color: var(--text); font-variant-numeric: tabular-nums; letter-spacing: .02em; word-break: break-all; }
.konto button { background: transparent; border: 1px solid var(--border); color: var(--muted); font-family: var(--sans); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .6rem; cursor: pointer; border-radius: 2px; min-height: 32px; }
.konto button:hover { color: var(--accent2); border-color: var(--accent); }
.konto .leer { grid-column: 3; }

/* ── Unterstützen ── */
.stand { font-size: .9rem; color: var(--muted); margin-top: 1.2rem; }
.hinweis { font-size: .78rem; color: var(--muted); line-height: 1.6; max-width: 60ch; margin-top: 1.2rem; }
details { margin-top: 1.4rem; max-width: 60ch; }
summary { cursor: pointer; font-size: .82rem; color: var(--muted); letter-spacing: .04em; }
summary:hover { color: var(--text); }
details pre { white-space: pre-wrap; font-family: var(--sans); font-size: .85rem; color: #d9d2c0; margin-top: .8rem; padding: .9rem 1rem; border: 1px solid var(--border); background: var(--bg3); }
.tafel { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-top: 1.4rem; }
.tafel div { border-top: 1px solid var(--border); padding-top: .6rem; }
.tafel .w { font-family: var(--serif); font-size: 1.5rem; color: var(--text); }
.tafel .b { font-size: .78rem; color: var(--muted); }

/* ── Formulare im Linienstil ── */
form { display: flex; flex-direction: column; gap: 1.25rem; }
.reihe { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.zeile { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: end; }
.feld { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.feld label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.feld input, .feld textarea { background: transparent; border: 0; border-bottom: 1px solid rgba(240,234,216,0.3); color: var(--text); padding: .7rem 0; font-size: 1.02rem; font-family: var(--sans); outline: none; transition: border-color .25s; border-radius: 0; appearance: none; -webkit-appearance: none; min-width: 0; width: 100%; min-height: 44px; }
.feld textarea { resize: vertical; min-height: 6.5rem; line-height: 1.55; }
.feld input:focus, .feld textarea:focus { border-bottom-color: var(--accent); }
.feld input[aria-invalid="true"], .feld textarea[aria-invalid="true"] { border-bottom-color: #c0453a; }
.haken { display: flex; flex-direction: column; gap: .8rem; }
.haken label { display: flex; align-items: flex-start; gap: .65rem; font-size: .86rem; color: #d9d2c0; cursor: pointer; line-height: 1.55; }
.haken input { appearance: none; -webkit-appearance: none; width: 18px; height: 18px; min-width: 18px; margin-top: .2rem; border: 1px solid var(--accent); background: transparent; cursor: pointer; display: grid; place-content: center; }
.haken input::before { content: ''; width: 10px; height: 10px; background: var(--accent2); transform: scale(0); transition: transform .15s; }
.haken input:checked::before { transform: scale(1); }
.haken a { color: var(--accent2); }
.knopfzeile { display: flex; flex-direction: column; gap: .8rem; align-items: flex-start; }
.meldung { display: none; padding: 1.3rem 1.4rem; border: 1px solid rgba(212,160,48,0.4); background: rgba(212,160,48,0.08); }
.meldung.sichtbar { display: block; }
.meldung h3 { margin: 0 0 .4rem; font-size: 1.1rem; color: var(--accent); }
.meldung p { margin-bottom: .3rem; font-size: .95rem; }
.fehler { color: #e8b4ae; }
.formfuss { font-size: .74rem; color: var(--muted); line-height: 1.55; max-width: 60ch; }
.verborgen { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.direkt { font-size: .92rem; color: var(--muted); margin-top: 1.2rem; }
.schwarzweiss { font-size: .92rem; color: var(--muted); font-style: italic; }

/* ── Goldstaub im Eingang, wie auf der Studio-Seite ── */
.teilchen { position: absolute; inset: 0; pointer-events: none; z-index: 2; overflow: hidden; }
.teil { position: absolute; width: 2px; height: 2px; background: var(--accent2); border-radius: 50%; opacity: 0; animation: teilchenSteigen var(--dauer) ease-in-out infinite; animation-delay: var(--verzug); }
@keyframes teilchenSteigen { 0% { transform: translateY(0) translateX(0); opacity: 0; } 20% { opacity: .7; } 80% { opacity: .45; } 100% { transform: translateY(-140px) translateX(var(--dx, 20px)); opacity: 0; } }
.eingang-bild video.laeuft { animation: kenBurns 30s ease-in-out infinite; }

/* ── Der Weg: drei Stationen mit bewegtem Bild, überblendet beim Bildlauf ── */
.weg { position: relative; height: 340vh; }
.weg-fest { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; background: #070707; }
.weg-station { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; will-change: opacity; }
.weg-station.aktiv { opacity: 1; }
.weg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 12s linear; }
.weg-station.aktiv .weg-video { transform: scale(1.12); }
.weg-satz { position: absolute; left: 50%; top: 50%; transform: translate(-50%, calc(-50% + 30px)); width: min(860px, 88vw); text-align: center; margin: 0; max-width: none; z-index: 2;
  font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 3.8vw, 3rem); line-height: 1.28; color: var(--text); text-shadow: 0 2px 18px rgba(0,0,0,.95), 0 0 60px rgba(0,0,0,.85);
  opacity: 0; transition: opacity 1.2s ease .35s, transform 1.4s cubic-bezier(.22,1,.36,1) .35s; }
.weg-station.aktiv .weg-satz { opacity: 1; transform: translate(-50%, -50%); }
.weg-schatten { position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(ellipse 70% 60% at 50% 55%, transparent 45%, rgba(7,7,7,0.45) 100%),
              linear-gradient(to bottom, rgba(7,7,7,0.8) 0%, transparent 18%, transparent 82%, rgba(7,7,7,0.92) 100%); }
.weg-fortschritt { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); width: 2px; height: 120px; background: rgba(212,160,48,0.18); z-index: 3; }
.weg-fortschritt span { display: block; width: 100%; height: 0%; background: linear-gradient(to bottom, var(--accent2), var(--accent)); }
.weg-unterschrift { position: absolute; bottom: 22px; right: 24px; font-size: .72rem; color: var(--muted); text-shadow: 0 1px 6px rgba(0,0,0,.9); z-index: 3; }
/* Bei reduzierter Bewegung oder Datensparmodus: drei stehende Bilder mit ihren Sätzen untereinander */
html.berg-still .weg { height: auto; }
html.berg-still .weg-fest { position: relative; height: auto; overflow: visible; }
html.berg-still .weg-station { position: relative; opacity: 1; height: 62vh; min-height: 360px; margin-bottom: 2px; }
html.berg-still .weg-video { transform: none; transition: none; }
html.berg-still .weg-satz { opacity: 1; transform: translate(-50%, -50%); }
html.berg-still .weg-schatten, html.berg-still .weg-fortschritt { display: none; }

/* ── Impressionen: Bildfeld mit zwei Formaten, beide Welten gleich stark ── */
.impressionen { padding: 5rem 2.5rem 6rem; }
.impressionen .kopf { max-width: 1120px; margin: 0 auto 2.2rem; display: flex; align-items: baseline; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.impressionen h2 { margin: 0; }
.impressionen .kopf p { margin: 0; color: var(--muted); font-size: .92rem; max-width: 46ch; }
.raster { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; grid-auto-flow: dense; gap: 12px; max-width: 1400px; margin: 0 auto; }
.raster figure { position: relative; overflow: hidden; border: 1px solid var(--border); background: var(--bg3); grid-row: span 1; }
.raster figure.hoch { grid-row: span 2; }
.raster figure.breit { grid-column: span 2; }
.raster img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 1.6s cubic-bezier(.16,1,.3,1), filter .6s ease; }
.raster figure:hover img { transform: scale(1.08); }
.raster figcaption { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; padding: 1.6rem .9rem .7rem; font-size: .7rem; letter-spacing: .06em; color: rgba(240,234,216,0.85); background: linear-gradient(to top, rgba(8,8,8,0.85), transparent); opacity: 0; transition: opacity .5s ease; }
.raster figure:hover figcaption { opacity: 1; }
@media (max-width: 1024px) { .raster { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 170px; } }
@media (max-width: 860px) { .impressionen { padding: 3.5rem 1rem 4rem; } .raster { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 8px; } .raster figcaption { opacity: 1; padding: 1.2rem .6rem .5rem; font-size: .62rem; } }

/* ── Zwischenbild in voller Breite ── */
.bleed { position: relative; overflow: hidden; }
.bleed .bild { aspect-ratio: 21/9; border: 0; }
.bleed .bild img { transform: scale(1.12); will-change: transform; }
.bleed::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to bottom, rgba(8,8,8,0.9), rgba(8,8,8,0.1) 35%, rgba(8,8,8,0.1) 65%, rgba(8,8,8,0.9)); }

/* ── Bilder leben: langsamer Zug in den Abschnitten ── */
.zweispaltig .bild img, .band .bild img { animation: kenBurns 26s ease-in-out infinite; }
.portrait .bild img { animation: none; }

/* ── Schluss und Fußzeile ── */
.schluss { position: relative; overflow: hidden; padding: 0; }
.schluss .bild { aspect-ratio: 21/9; border: 0; }
.schluss .bild::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,8,8,0.85), rgba(8,8,8,0.15) 45%, rgba(8,8,8,0.9)); }
.schlusszeile { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; z-index: 2; font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 4vw, 3rem); color: var(--text); text-shadow: 0 2px 24px rgba(0,0,0,.9); padding: 1rem; }
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 2.6rem 2.5rem; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; }
.f-links { display: flex; gap: 1.6rem; list-style: none; flex-wrap: wrap; align-items: center; }
.f-links a { font-size: .78rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.f-links a:hover { color: var(--text); }
.f-links a.knopf { color: #000; }
.f-mitte { display: flex; align-items: center; gap: .8rem; font-size: .78rem; color: var(--muted); }
.f-mitte img { height: 30px; width: 30px; }
.f-mitte a { color: var(--text); text-decoration: none; border-bottom: 1px solid var(--accent); }
.f-rechts { display: flex; flex-direction: column; align-items: flex-end; gap: .4rem; text-align: right; }
.f-copy { font-size: .74rem; color: var(--muted); }
.f-legal { display: flex; gap: 1.1rem; list-style: none; }
.f-legal a { font-size: .74rem; color: var(--muted); text-decoration: none; }
.f-legal a:hover { color: var(--accent2); }

/* ── Unterseite ── */
.unterseite-kopf { padding: calc(var(--leiste) + 5rem) 4rem 3rem; }
.unterseite-kopf h1 { font-family: var(--serif); font-weight: 700; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.08; margin-bottom: 1rem; }

@media (max-width: 1024px) {
  .abschnitt { padding: 5rem 2.5rem; }
  header.leiste { padding: 0 1.5rem; }
  .zweispaltig, .zweispaltig.umgekehrt { grid-template-columns: 1fr; gap: 2rem; }
  .doppelseite { grid-template-columns: 1fr; gap: 0; }
  .schichten { grid-template-columns: 1fr 1fr; }
  .jahr { grid-template-columns: 1fr 1fr; }
  .streifen { grid-template-columns: 1fr 1fr; }
  .unterseite-kopf { padding-left: 2.5rem; padding-right: 2.5rem; }
}
@media (max-width: 860px) {
  header.leiste { padding: 0 1.1rem; }
  nav { display: none; }
  .eingang { padding-bottom: 5.5rem; }
  .eingang .knoepfe { flex-direction: column; align-items: stretch; width: min(360px, 100%); }
  .eingang .knopf { width: 100%; }
  .abschnitt { padding: 4rem 1.2rem; }
  .reihe { grid-template-columns: 1fr; }
  .zeile { grid-template-columns: 1fr; }
  .zeile .knopf { width: 100%; }
  .beleg { grid-template-columns: 1fr; }
  .beleg .bild { max-width: 300px; }
  .schichten { grid-template-columns: 1fr; gap: 2rem; }
  .jahr { grid-template-columns: 1fr; gap: 1.6rem; }
  .streifen { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .weg { height: 240vh; }
  footer { grid-template-columns: 1fr; padding: 2.2rem 1.2rem; gap: 1.3rem; }
  .f-rechts { align-items: flex-start; text-align: left; }
  .f-legal { flex-wrap: wrap; }
  .linie { min-height: 44px; display: inline-flex; align-items: center; }
  .kernsatz { padding-left: 1rem; }
  html.berg-still .berg-standbild-text { padding: 2rem 1.2rem .5rem; }
  .unterseite-kopf { padding-left: 1.2rem; padding-right: 1.2rem; }
}
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
  .eingang-bild img { animation: none; }
  .reveal { filter: none; transition: opacity .4s ease, transform .4s ease; }
  .parallax .bild img, .bleed .bild img { transform: none !important; }
  .zweispaltig .bild img, .band .bild img, .eingang-bild video { animation: none; }
  .teil { animation: none; }
}
