/* ============================================================
   Fitz Foundation
   Marken-CI: Kolibri, Tuerkis-Verlauf (Meergruen -> Cyan), Poppins
   Bildsprache: filmisch, Gegenlicht, Silhouetten (siehe Look & Feel)
   ============================================================ */

:root {
  --ink: #1d1d1b;
  --green: #35ba8c;
  --blue: #2aa3c7;
  --teal-deep: #1f8aa8;
  --gradient: linear-gradient(118deg, var(--green) 0%, var(--blue) 100%);

  --deep: #0c262c;              /* dunkles Petrol, Basis dunkler Sektionen */
  --deep-2: #12363d;
  --bg: #f7fcfc;
  --surface: #ffffff;
  --muted: #55686c;
  --line: rgba(42, 163, 199, 0.16);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 60px -28px rgba(31, 138, 168, 0.45);
  --shadow-lg: 0 40px 90px -40px rgba(9, 42, 50, 0.55);

  --wrap: 1180px;
  --pad: clamp(1.25rem, 5vw, 3rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- gemeinsame Typo-Bausteine --- */
.eyebrow {
  font-weight: 600;
  font-size: clamp(0.66rem, 1.4vw, 0.74rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.eyebrow--light { color: rgba(255, 255, 255, 0.72); }

.section__title {
  margin-top: 0.7rem;
  font-weight: 600;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section__lead {
  margin-top: 1rem;
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: clamp(2.5rem, 7vh, 4rem) clamp(7rem, 15vh, 9rem);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  animation: heroPan 26s ease-in-out infinite alternate;
}

@keyframes heroPan {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

/* Verlauf: unten satt dunkel fuer Textkontrast, oben nur leicht */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(8, 24, 28, 0.95) 0%, rgba(8, 24, 28, 0.78) 22%, rgba(8, 24, 28, 0.34) 54%, rgba(8, 24, 28, 0.1) 100%),
    linear-gradient(105deg, rgba(8, 24, 28, 0.58) 0%, rgba(8, 24, 28, 0) 58%);
}

.hero__inner { position: relative; }

.hero__logo {
  width: clamp(175px, 22vw, 250px);
  height: auto;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}

.hero__title {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: clamp(2rem, 6.4vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero__title span:last-child {
  color: transparent;
  background: linear-gradient(100deg, #7ee0bd 0%, #6fd4ec 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead {
  margin-top: clamp(1.1rem, 2.6vw, 1.6rem);
  max-width: 42ch;
  font-size: clamp(1rem, 2vw, 1.16rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero__tags {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: clamp(1.4rem, 3vw, 2rem);
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.hero__tags i {
  width: 26px; height: 2px;
  border-radius: 2px;
  background: var(--gradient);
}


.hero .cta-row .btn--ghost svg { animation: nudge 2.4s ease-in-out infinite; }

@keyframes nudge {
  0%, 100% { transform: translateY(0); opacity: 0.75; }
  50%      { transform: translateY(5px); opacity: 1; }
}

/* --- schwebende Marken-Partikel (Kolibri-Aufloesung) --- */
.particles { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.p {
  position: absolute;
  display: block;
  background: var(--gradient);
  border-radius: 3px;
  opacity: 0.5;
  animation: drift 18s ease-in-out infinite;
}
.p1 { width: 10px; height: 10px; top: 16%; left: 12%; animation-delay: 0s;   opacity: .4; }
.p2 { width: 6px;  height: 6px;  top: 24%; left: 82%; animation-delay: -3s;  opacity: .45; }
.p3 { width: 14px; height: 14px; top: 62%; left: 8%;  animation-delay: -6s;  opacity: .28; }
.p4 { width: 8px;  height: 8px;  top: 72%; left: 88%; animation-delay: -9s;  opacity: .4; }
.p5 { width: 5px;  height: 5px;  top: 40%; left: 92%; animation-delay: -2s;  opacity: .5; }
.p6 { width: 11px; height: 11px; top: 82%; left: 46%; animation-delay: -12s; opacity: .24; }
.p7 { width: 7px;  height: 7px;  top: 10%; left: 60%; animation-delay: -5s;  opacity: .4; }
.p8 { width: 9px;  height: 9px;  top: 54%; left: 74%; animation-delay: -14s; opacity: .3; }

@keyframes drift {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-26px) rotate(120deg); }
  100% { transform: translateY(0) rotate(240deg); }
}

/* ============================================================
   SCHWERPUNKTE – Bildkacheln, in den Hero hochgezogen
   ============================================================ */
.focus {
  position: relative;
  z-index: 2;
  margin-top: clamp(-2.5rem, -4vw, -4rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.4rem);
}

.tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.tile__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(9, 32, 38, 0.94) 6%, rgba(9, 32, 38, 0.62) 42%, rgba(9, 32, 38, 0.08) 78%);
}
.tile:hover .tile__img { transform: scale(1.07); }

.tile__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
  color: #fff;
}

.tile__kicker {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8fe3c4;
}

.tile__title {
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 1.22;
}

.tile__text {
  margin-top: 0.45rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   PROJEKTE – heller Block, nummerierte Liste, versetzt
   ============================================================ */
.projects {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 7rem);
  background:
    radial-gradient(60vmax 50vmax at 12% -10%, rgba(53, 186, 140, 0.13), transparent 62%),
    radial-gradient(58vmax 48vmax at 92% 108%, rgba(42, 163, 199, 0.14), transparent 64%),
    var(--bg);
}

.section__head { max-width: 62ch; }

.proj {
  margin-top: clamp(2.4rem, 6vw, 4rem);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2rem, 6vw, 5rem);
  row-gap: clamp(2.4rem, 5vw, 3.6rem);
}

/* rechte Spalte versetzt – bricht die starre Rasterwirkung */
.proj__item:nth-child(even) { margin-top: clamp(1.5rem, 4vw, 3.2rem); }

.proj__item {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* Bildflaeche je Projekt - aktuell Platzhalter, spaeter echte Fotos */
.proj__media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  border: 1px dashed rgba(42, 163, 199, 0.35);
  background:
    linear-gradient(135deg, rgba(53, 186, 140, 0.14) 0%, rgba(42, 163, 199, 0.14) 100%),
    var(--surface);
}

.proj__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.proj__mark { width: 24%; height: auto; opacity: 0.2; }

.proj__soon {
  position: absolute;
  bottom: 0.85rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  opacity: 0.75;
}

.proj__num {
  position: absolute;
  top: 0.7rem;
  left: 0.95rem;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.proj__title {
  margin-top: 1rem;
  font-weight: 600;
  font-size: clamp(1.12rem, 2.4vw, 1.35rem);
  line-height: 1.28;
}

.proj__text {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ============================================================
   EINSATZ-GALERIE - Platzhalter fuer kommende Projektfotos
   ============================================================ */
.gallery {
  padding-block: clamp(3rem, 7vw, 5rem) clamp(3.5rem, 9vw, 6.5rem);
  background: var(--bg);
}

.shots {
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.8vw, 1.2rem);
}

.shot {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px dashed rgba(42, 163, 199, 0.35);
  background:
    linear-gradient(135deg, rgba(53, 186, 140, 0.12) 0%, rgba(42, 163, 199, 0.12) 100%),
    var(--surface);
}

.shot__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.shot__mark { width: 26%; height: auto; opacity: 0.2; }

.shot__label {
  position: absolute;
  bottom: 0.75rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-deep);
  opacity: 0.7;
}

/* ============================================================
   ZITAT – vollflaechiges Bild
   ============================================================ */
.quote {
  position: relative;
  min-height: clamp(360px, 62svh, 620px);
  display: grid;
  place-items: center;
  padding-block: clamp(4rem, 12vw, 8rem);
  text-align: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.quote__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  z-index: -2;
}
.quote::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(7, 22, 26, 0.84) 0%, rgba(7, 22, 26, 0.5) 55%, rgba(7, 22, 26, 0.76) 100%);
}

.quote__text {
  max-width: 30ch;
  margin: 0 auto;
  font-size: clamp(1.25rem, 3.4vw, 2rem);
  font-weight: 300;
  line-height: 1.38;
  letter-spacing: -0.005em;
}

.quote__claim {
  margin-top: clamp(1.2rem, 3vw, 1.8rem);
  font-size: clamp(0.72rem, 1.7vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #8fe3c4;
}

/* ============================================================
   GALA – dunkel, mit Kolibri-Wasserzeichen
   ============================================================ */
.gala {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
  background: linear-gradient(150deg, var(--deep) 0%, var(--deep-2) 100%);
  color: #fff;
  overflow: hidden;
}
.gala::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gradient);
}

.gala::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--line-dark);
}

.gala__mark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 42vw, 520px);
  height: auto;
  opacity: 0.14;
  pointer-events: none;
}

.gala__inner {
  position: relative;
  max-width: 56ch;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gala__title {
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: clamp(1.7rem, 4.6vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.gala__text {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.08rem);
}

/* ============================================================
   KONTAKT
   ============================================================ */

.contact__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
}

.clink {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: 0 12px 32px -22px rgba(31, 138, 168, 0.6);
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease, border-color 0.28s ease;
}
.clink__icon { display: grid; place-items: center; width: 20px; height: 20px; color: var(--blue); }
.clink__icon svg { width: 18px; height: 18px; }
.clink:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 22px 44px -20px rgba(31, 138, 168, 0.6);
}
.clink:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.clink--wa .clink__icon { color: #25d366; }


/* ============================================================
   BUTTONS / CTA
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease,
              background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-3px); }
.btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }

/* primaer: Markenverlauf */
.btn--primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 16px 38px -16px rgba(31, 138, 168, 0.75);
}
.btn--primary:hover { box-shadow: 0 24px 50px -18px rgba(31, 138, 168, 0.9); }

/* sekundaer auf dunklem Grund */
.btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.14); }
.btn--ghost:focus-visible { outline-color: #fff; }

/* sekundaer auf hellem Grund */
.btn--outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
  box-shadow: 0 12px 32px -22px rgba(31, 138, 168, 0.6);
}
.btn--outline:hover { border-color: var(--teal-deep); color: var(--teal-deep); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: clamp(1.6rem, 3.5vw, 2.2rem);
}
.cta-row--center { justify-content: center; }

/* ============================================================
   SPENDEN
   ============================================================ */
.donate {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
  background:
    radial-gradient(55vmax 45vmax at 88% -12%, rgba(53, 186, 140, 0.14), transparent 62%),
    var(--bg);
}
.donate__head { text-align: center; display: flex; flex-direction: column; align-items: center; }

.donate__note {
  margin-top: clamp(1.6rem, 4vw, 2.2rem);
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}


.pay {
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(0.8rem, 1.8vw, 1.1rem);
  text-align: left;
}

.pay__card {
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.pay__label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.98rem;
}
.pay__label svg { width: 19px; height: 19px; color: var(--blue); flex: none; }

.pay__text {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ============================================================
   WHATSAPP – schwebender Kontaktbutton
   ============================================================ */
.wa-fab {
  position: fixed;
  right: clamp(0.9rem, 2.5vw, 1.6rem);
  bottom: clamp(0.9rem, 2.5vw, 1.6rem);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 16px 36px -14px rgba(6, 60, 30, 0.6);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
  animation: waIn 0.6s cubic-bezier(.2,.8,.2,1) 1.4s backwards;
}
.wa-fab svg { width: 22px; height: 22px; flex: none; }
.wa-fab:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 22px 46px -14px rgba(6, 60, 30, 0.7); }
.wa-fab:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

@keyframes waIn {
  from { opacity: 0; transform: translateY(14px) scale(0.9); }
  to   { opacity: 1; transform: none; }
}

/* auf kleinen Screens nur das Icon */
@media (max-width: 620px) {
  .wa-fab { padding: 0.85rem; }
  .wa-fab__label { display: none; }
  /* Platz, damit der Button die Footer-Links nicht verdeckt */
  .foot { padding-bottom: clamp(4.5rem, 14vw, 5.5rem); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.62);
  padding-block: clamp(1.6rem, 4vw, 2.4rem);
  font-size: 0.8rem;
}
.foot__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
}
.foot .dot { color: var(--green); }
.foot__link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  border-bottom: 1px solid var(--line-dark);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.foot__link:hover { color: #fff; border-color: var(--green); }
.foot__link:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* ============================================================
   RECHTSTEXTE (Impressum / Datenschutz)
   ============================================================ */
.legal-page { background: var(--bg); padding-block: clamp(2.5rem, 7vw, 5rem); }

.legal {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.6rem, 5vw, 3.2rem);
  box-shadow: var(--shadow);
}

.legal__back { display: inline-block; margin-bottom: clamp(1.2rem, 3vw, 1.8rem); }
.legal__back img { width: clamp(150px, 26vw, 200px); height: auto; }
.legal__back:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }

.legal__title {
  font-weight: 600;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}
.legal__title--sub {
  margin-top: clamp(2.4rem, 6vw, 3.4rem);
  padding-top: clamp(1.6rem, 4vw, 2.2rem);
  border-top: 1px solid var(--line);
  scroll-margin-top: 1.5rem;
}

.legal__section { margin-top: clamp(1.5rem, 3.5vw, 2.1rem); }
.legal__section h2 { font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.legal__section p { margin-top: 0.5rem; color: var(--muted); font-size: 0.94rem; }
.legal__section a { color: var(--teal-deep); text-decoration: none; border-bottom: 1px solid var(--line); }
.legal__section a:hover { border-color: var(--teal-deep); }
.legal__section a:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.legal__updated { margin-top: clamp(2rem, 5vw, 2.8rem); font-size: 0.8rem; color: var(--muted); opacity: 0.85; }

.todo {
  background: #fff3bf;
  color: #7a5b00;
  padding: 0.1em 0.4em;
  border-radius: 5px;
  font-weight: 500;
}

/* ============================================================
   REVEAL
   ============================================================ */
/* Beim Laden sichtbare Hero-Elemente */
.r {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.9s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes reveal { to { opacity: 1; transform: none; } }

/* Scroll-Reveal: nur aktiv, wenn JS die Klasse setzt */
.has-reveal .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s cubic-bezier(.2,.8,.2,1), transform 0.85s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0ms);
}
.has-reveal .reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tiles .tile:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}

@media (max-width: 720px) {
  .proj { grid-template-columns: minmax(0, 1fr); }
  .shots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proj__item:nth-child(even) { margin-top: 0; }
  .hero__title { letter-spacing: 0.04em; }
}

@media (max-width: 560px) {
  .tiles { grid-template-columns: minmax(0, 1fr); }
  .tiles .tile:last-child { aspect-ratio: 4 / 5; }
  .focus { margin-top: clamp(-2rem, -5vw, -3rem); }
  .hero__tags { flex-wrap: wrap; gap: 0.6rem; }
  .hero__tags i { width: 18px; }
  
/* ============================================================
   REDUZIERTE BEWEGUNG
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .r { opacity: 1; transform: none; }
  .has-reveal .reveal { opacity: 1; transform: none; }
}
