/* =====================================================
   DARREN SUTTER — Portfolio
   ===================================================== */

/* ---- Design Tokens ---- */
:root {
  --bg:        #ffffff;   /* Weiss aus dem Bild — helle Bildbereiche fliessen in den Hintergrund */
  --ink:       #0a0a0a;   /* fast-schwarz */
  --muted:     #6b6b6b;
  --line:      #e4e3e0;

  --accent:        #ff480b; /* Orange — frei */
  --accent-red:    #cc0a14; /* Rot aus dem Video */
  --turquoise:     #00b7f4; /* Türkis — Hover Startseite */
  --purple:        #7c2fff; /* Violett — Hover Work */

  /* Pro-Seite-Variablen (Default = Startseite) */
  --nav-ink:       #0a0a0a; /* Nav-/Logo-Textfarbe */
  --hover:         var(--turquoise); /* Hover-Farbe (Nav + E-Mail) */

  --maxw: 1440px;
  --gutter: clamp(20px, 4.5vw, 72px);

  --font-sans:    "Inter", system-ui, sans-serif;
  --font-display: "Anton", "Inter", sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; height: auto; }

/* ---- Per-Seite-Hover ---- */
body.page-home  { --nav-ink: #0a0a0a; --hover: var(--turquoise); }
body.page-about { --nav-ink: #0a0a0a; --hover: var(--accent-red); }
body.page-work  { --nav-ink: #0a0a0a; --hover: var(--purple); } /* Violett */

/* ---- Header ---- */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px var(--gutter);
  color: var(--nav-ink); z-index: 100;
}
.logo {
  position: relative;
  font-family: var(--font-display); font-size: 22px; letter-spacing: .04em;
  color: var(--nav-ink);
  transition: transform .25s ease;
}
.logo:hover { transform: translateY(-3px); }
/* fester Akzent-Strich unter dem Logo, wächst bei Hover gleichmässig nach aussen */
.logo::after {
  content: ""; position: absolute; left: 50%; bottom: -7px;
  width: 18px; height: 3px; background: var(--hover);
  transform: translateX(-50%);
  transition: width .28s ease;
}
.logo:hover::after { width: 150%; }
.nav { display: flex; gap: 26px; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; }
.nav a { transition: color .25s; }
.nav a:hover { color: var(--hover); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 95vh;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 28px;
  padding-top: 14vh;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: clamp(20px, 4vw, 64px);
  flex: 1;
}

/* --- Text-Seite --- */
.hero-text { align-self: flex-end; padding-bottom: 8px; }

.hero-kicker {
  display: block;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(16px, 3vw, 30px);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .7;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.hero-title .line {
  display: block;
  font-size: clamp(60px, 12.5vw, 178px);
}
.line--solid { margin-top: -.07em; }  /* leichte Überlappung */
/* gefüllt vs. outline — das "schrifttechnisch kreative" (PortPort-Idee) */
.line--solid { color: var(--ink); }
.line--outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  text-stroke: 2px var(--ink);
}
.hero-sub {
  margin-top: clamp(20px, 3vw, 34px);
  font-size: clamp(15px, 1.6vw, 20px);
  color: var(--ink);
  letter-spacing: .01em;
}
/* klickbarer Untertitel mit Unterstreich-Animation */
.hero-sub--link {
  display: inline-block; width: fit-content;
  position: relative; text-decoration: none;
  transform-origin: left center;
  transition: transform .3s ease;
}
.hero-sub--link::after {
  content: ""; position: absolute; left: 0; bottom: -8px;
  width: 0; height: 2px; background: var(--hover);
  transition: width .4s ease;
}
.hero-sub--link:hover { transform: scale(1.06); }
.hero-sub--link:hover::after { width: 100%; }

/* --- Bild-Seite --- */
.hero-figure {
  position: relative;
  height: 78vh;
  max-height: 760px;
  align-self: end;
}
.hero-figure img,
.hero-figure video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-fig-cap {
  position: absolute;
  bottom: 14px; right: 14px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--hover); /* Akzentfarbe der Seite (Start = Türkis) */
}

/* --- Hero Fuss --- */
.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: clamp(20px, 4vw, 40px);
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}
.scroll-hint { color: var(--ink); }

/* =====================================================
   SECTIONS
   ===================================================== */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(90px, 16vh, 200px) var(--gutter);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 9vw, 120px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.lead { max-width: 60ch; font-size: clamp(18px, 2.4vw, 26px); line-height: 1.45; }

/* ---- Work Grid ---- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
  margin-top: clamp(40px, 6vw, 72px);
}
@media (max-width: 900px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .work-grid { grid-template-columns: 1fr; } }
.work-tile {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #000;
}
.work-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* entleuchtet im Ruhezustand */
  filter: brightness(.42) grayscale(.25);
  transform: scale(1.02);
  transition: filter .5s ease, transform .7s ease;
}
.work-tile:hover img {
  filter: brightness(1) grayscale(0);
  transform: scale(1);
}
.work-meta {
  position: absolute; left: 0; bottom: 0;
  padding: 22px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
}
.work-tile:hover .work-meta { opacity: 1; transform: none; }
.work-name {
  font-family: var(--font-display); font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1; text-transform: uppercase; color: #fff;
}
.work-cat {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--hover);
}
/* Cover, das immer schwarzweiss bleibt (z.B. YouTube-Thumbnail) */
.work-tile--bw img { filter: brightness(.42) grayscale(1); }
.work-tile--bw:hover img { filter: brightness(1) grayscale(1); }

/* Video-Embed (YouTube), responsiv 16:9 */
.video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #0d0d0d; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Zwei Videos nebeneinander, gleiche Höhe (Quer- + Hochformat) */
.dual-video {
  display: flex;
  gap: clamp(12px, 1.5vw, 18px);
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 2.4 / 1;       /* Quer (16:9) + Hoch (9:16) passen nebeneinander */
}
.dual-video > div { position: relative; height: 100%; background: #0d0d0d; }
.dual-video .v-land { aspect-ratio: 16 / 9; }
.dual-video .v-port { aspect-ratio: 9 / 16; }
.dual-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 700px) {
  .dual-video { aspect-ratio: auto; flex-direction: column; }
  .dual-video > div { height: auto; width: 100%; }
  .dual-video .v-port { max-width: 320px; }
}
.mail {
  font-family: var(--font-display);
  font-size: clamp(30px, 7vw, 96px);
  text-transform: uppercase;
  transition: color .25s;
}
.mail:hover { color: var(--hover); }

/* Kontakt: kompakter, zentrierter Endblock */
#contact {
  text-align: center;
  padding-top: clamp(100px, 16vh, 200px);
  padding-bottom: clamp(48px, 8vh, 90px);
}
#contact .section-title {
  font-size: clamp(26px, 3.4vw, 46px);
  margin-bottom: clamp(14px, 1.6vw, 20px);
}
.contact-lines {
  display: flex; justify-content: center; align-items: baseline;
  flex-wrap: wrap; gap: 10px 14px;
}
.contact-lines .mail {
  font-size: clamp(18px, 2.4vw, 32px);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
.contact-lines .or {
  font-family: var(--font-sans);
  font-size: 16px; font-weight: 400;
  letter-spacing: normal; text-transform: none;
  color: var(--muted);
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  padding: clamp(52px, 8vh, 90px) var(--gutter);
  font-size: 14px; color: var(--muted);
  text-align: center;
}

/* =====================================================
   ABOUT — rote Details, clean
   ===================================================== */
.kicker-accent {
  display: block;
  color: var(--hover);
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: clamp(16px, 3vw, 28px);
}
.hl-accent { color: var(--hover); }

.about-intro { max-width: 64ch; }
.about-intro .lead + .lead { margin-top: 1.2em; }

/* Trenner zwischen Blöcken */
.divider {
  border: none; border-top: 1px solid var(--line);
  margin: clamp(44px, 6vw, 80px) 0;
}
.block-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 2.6vw, 34px); text-transform: uppercase;
  line-height: 1; margin-bottom: clamp(14px, 1.6vw, 22px);
}

/* Werdegang mit kreativem, geschnittenem Bild daneben */
.werdegang {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
.werdegang .about-intro { max-width: none; }
/* Werdegang-Fliesstext: kleiner, aber normal und luftig (nicht gedrängt) */
.werdegang .lead { font-size: clamp(15px, 1.25vw, 17px); line-height: 1.7; }
.werdegang .about-intro .lead + .lead { margin-top: 1.4em; }

/* Prequel-Look: unscharfer Hintergrund + scharfer, deckungsgleicher Ausschnitt */
.frame-figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 3 / 4;
  background: #8d8d8d;          /* passt zum Studio-Grau, kaschiert weiche Ränder */
}
/* unter .frame-figure gescoped, damit der Blur nicht überschrieben wird */
.frame-figure .ff-blur,
.frame-figure .ff-sharp {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 24%;
}
.frame-figure .ff-blur { filter: grayscale(1) blur(8px) brightness(.97); }
.frame-figure .ff-sharp { filter: grayscale(1); clip-path: inset(12% 28% 32% 48%); }
/* feines Korn nur über dem unscharfen Bereich (vom scharfen Ausschnitt überdeckt) */
.ff-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.18;
  filter: grayscale(1) contrast(1.05);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.ff-frame {
  position: absolute; left: 48%; top: 12%; width: 24%; height: 56%;
  border: 1px solid rgba(255, 255, 255, .9);
  pointer-events: none;
}
.ff-cap {
  position: absolute; left: 16px; bottom: 14px;
  display: flex; flex-direction: column; gap: 2px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
}
@media (max-width: 760px) {
  .werdegang { grid-template-columns: 1fr; }
  .frame-figure { aspect-ratio: 3 / 4; min-height: 0; height: auto; }
}

/* Video-Steuerung (Play/Pause + Timeline) */
.vid-ctrl {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 12px;
  padding: 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .55));
  transition: opacity .25s ease;
}
.hero-figure video { cursor: pointer; }
/* Safaris native Video-Controls ausblenden, nur eigene UI zeigen */
.hero-figure video::-webkit-media-controls,
.hero-figure video::-webkit-media-controls-enclosure,
.hero-figure video::-webkit-media-controls-panel,
.hero-figure video::-webkit-media-controls-start-playback-button { display: none !important; -webkit-appearance: none; }
.vid-btn {
  flex: none; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, .55); color: #fff;
  border: none; border-radius: 50%; cursor: pointer;
  transition: background .25s;
}
.vid-btn:hover { background: var(--hover); }
.vid-timeline {
  flex: 1; height: 14px; position: relative; cursor: pointer;
  display: flex; align-items: center;
}
/* Auf Geräten mit Maus: die gesamte Video-UI nur beim Hovern zeigen */
@media (hover: hover) {
  .vid-ctrl { opacity: 0; pointer-events: none; }
  .hero-figure:hover .vid-ctrl,
  .hero-figure:focus-within .vid-ctrl { opacity: 1; pointer-events: auto; }
}

/* Eigener Vollbild-Modus (Overlay) statt Safaris nativem Player */
.hero-figure.expanded {
  position: fixed; inset: 0; z-index: 9999;
  height: auto; max-height: none; margin: 0; align-self: auto;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, .94);
}
.hero-figure.expanded video {
  width: auto; height: auto;
  max-width: 96vw; max-height: 94vh;
  object-fit: contain; object-position: center;
  border-radius: 10px;
}
.hero-figure.expanded .vid-ctrl { opacity: 1 !important; pointer-events: auto !important; }

/* Kurzes Play/Pause-Aufblitzen in der Mitte (subtil, wie bei YouTube) */
.vid-flash {
  position: absolute; top: 50%; left: 50%;
  width: 68px; height: 68px; margin: -34px 0 0 -34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 10, 10, .5); color: #fff;
  border-radius: 50%;
  opacity: 0; pointer-events: none; z-index: 2;
}
.vid-flash svg { width: 26px; height: 26px; }
.vid-flash.show { animation: vidFlash .55s ease-out forwards; }
@keyframes vidFlash {
  0% { opacity: .78; transform: scale(.82); }
  100% { opacity: 0; transform: scale(1.35); }
}
.vid-timeline::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%;
  transform: translateY(-50%); height: 2px; background: rgba(255, 255, 255, .28);
}
.vid-progress {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 2px; width: 0; background: var(--hover);
}

/* Fakten-Raster mit roten Indizes */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(20px, 2.6vw, 40px);
}
.fact { border-top: 2px solid var(--ink); padding-top: 18px; }
.fact .num {
  display: block; color: var(--accent-red);
  font-size: 13px; letter-spacing: .12em; margin-bottom: 14px;
}
.fact h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(20px, 2.4vw, 30px);
  text-transform: uppercase; line-height: 1; margin-bottom: 12px;
}
.fact p { font-size: 16px; line-height: 1.5; color: var(--muted); }

/* Drei Listen (Stärken & Interessen) */
.facts--lists { grid-template-columns: repeat(3, 1fr); }
.fact-list { list-style: none; }
.fact-list li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 15px; line-height: 1.4;
}
@media (max-width: 760px) { .facts--lists { grid-template-columns: 1fr; } }

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

/* =====================================================
   WORK — Projekt-Index + Programme
   ===================================================== */
.project {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(34px, 5vw, 60px) 0;
  border-top: 1px solid var(--line);
}
.project:last-of-type { border-bottom: 1px solid var(--line); }

.project-head { display: flex; align-items: flex-start; gap: 16px; }
.project-num {
  font-family: var(--font-display); color: var(--hover);
  font-size: clamp(18px, 1.8vw, 26px); line-height: 1; padding-top: 6px;
}
.project-title {
  font-family: var(--font-display); font-weight: 400;
  text-transform: uppercase; font-size: clamp(28px, 4.2vw, 58px); line-height: .94;
}
.project-sub { color: var(--muted); margin-top: 14px; max-width: 46ch; font-size: 16px; }

.project-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 24px; align-self: start; }
@media (max-width: 600px) { .project-info { grid-template-columns: 1fr; } }
.project-info .lbl {
  display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--hover); margin-bottom: 6px;
}
.project-info .val { font-size: 15px; line-height: 1.4; }

/* Programme als Prozent-Balken */
.skills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 40px) clamp(30px, 5vw, 80px);
}
.skill-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 10px;
}
.skill-pct { color: var(--hover); font-variant-numeric: tabular-nums; }
.skill-bar { height: 4px; background: var(--line); position: relative; overflow: hidden; }
.skill-bar > span { position: absolute; inset: 0 auto 0 0; height: 100%; background: var(--hover); }

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

/* Work-Raster startet direkt unter dem Header */
.work-section { padding-top: clamp(108px, 15vh, 170px); }

/* ---- Projekt-Detailseite ---- */
.back-link {
  display: inline-block;
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: clamp(22px, 4vw, 44px);
  transition: color .25s;
}
.back-link:hover { color: var(--hover); }
.project-detail-title {
  font-family: var(--font-display); font-weight: 400;
  text-transform: uppercase; line-height: .95;
  font-size: clamp(34px, 6.5vw, 88px);
  margin-bottom: clamp(26px, 3.4vw, 46px);
}
.project-detail .lead { font-size: clamp(15px, 1.5vw, 18px); line-height: 1.55; }

/* Galerie: justified Raster, jede Reihe füllt die Breite (keine übrigen Plätze) */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.5vw, 18px);
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  background: #0d0d0d;
  flex: 0 0 auto;       /* Breite/Höhe setzt das Script */
}
.gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =====================================================
   LIGHTBOX
   ===================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  background: rgba(12, 12, 12, .95);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain; display: block;
}
.lightbox button {
  position: absolute; background: none; border: none;
  color: #fff; cursor: pointer; line-height: 1;
  font-family: var(--font-sans); transition: color .2s, opacity .2s;
}
.lb-close { top: 20px; right: 28px; font-size: 34px; }
.lb-prev, .lb-next {
  top: 50%; transform: translateY(-50%);
  font-size: 56px; padding: 8px 18px; opacity: .8;
}
.lb-prev { left: 10px; }
.lb-next { right: 10px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--hover); opacity: 1; }

/* =====================================================
   BURGER + MOBILE-MENÜ
   ===================================================== */
.burger { display: none; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 1050;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-nav { display: flex; flex-direction: column; gap: clamp(16px, 4vh, 34px); text-align: center; }
.mobile-nav a {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(40px, 12vw, 76px); line-height: 1.05; color: var(--nav-ink);
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease, color .2s ease;
}
.mobile-menu.open .mobile-nav a { opacity: 1; transform: none; }
.mobile-menu.open .mobile-nav a:nth-child(1) { transition-delay: .10s; }
.mobile-menu.open .mobile-nav a:nth-child(2) { transition-delay: .18s; }
.mobile-menu.open .mobile-nav a:nth-child(3) { transition-delay: .26s; }
.mobile-nav a:hover { color: var(--hover); transition-delay: 0s; }

@media (max-width: 860px) {
  .burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 36px; height: 36px; padding: 7px; background: none; border: none;
    cursor: pointer; z-index: 1100; position: relative;
  }
  .burger span {
    display: block; height: 2px; width: 100%; background: var(--nav-ink);
    transition: transform .35s ease, opacity .2s ease; transform-origin: center;
  }
  .burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.is-open span:nth-child(2) { opacity: 0; }
  .burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* Video-Standbild (lädt YouTube erst bei Klick) */
.video-facade {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; padding: 0; cursor: pointer;
  background-color: #0d0d0d; background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  filter: grayscale(1); transition: filter .3s ease;
}
.video-facade:hover { filter: grayscale(0); }
.vf-play {
  position: relative; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(0, 0, 0, .55); transition: background .25s ease;
}
.video-facade:hover .vf-play { background: var(--hover); }
.vf-play::before {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%);
  border-style: solid; border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent #fff;
}

/* =====================================================
   LOADINGSCREEN (Startseite)
   ===================================================== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.ld-panel {
  position: absolute; left: 0; right: 0; height: 50.5%;
  background: #0a0a0a;
  transition: transform .85s cubic-bezier(.76, 0, .24, 1);
}
.ld-top { top: 0; }
.ld-bottom { bottom: 0; }
#loader.done .ld-top { transform: translateY(-100%); }
#loader.done .ld-bottom { transform: translateY(100%); }

.ld-content {
  position: relative; z-index: 1;
  width: min(56vw, 620px);
  transition: opacity .4s ease;
}
#loader.fade .ld-content { opacity: 0; }
.ld-bar { position: relative; height: 2px; width: 100%; background: rgba(255, 255, 255, .18); }
.ld-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0; background: #fff; }
.ld-pct {
  position: absolute; left: 0; bottom: 16px;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 34px);
  color: #fff; white-space: nowrap;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure {
    order: -1;
    height: 52vh;
    margin-bottom: 8px;
  }
  .hero-title .line { font-size: clamp(64px, 22vw, 150px); }
  .nav { display: none; }
}
