/* =====================================================================
   MR. ROO  |  HYPERMODERN EDITION  |  style.css
   ---------------------------------------------------------------------
   Design-Grundlage: Lovable-Projekt "Mr. Roo Gallery" (monochromer
   Rahmen, Archivo Black als Display-Schrift, ein einziger Kobalt-Akzent,
   das Kunstwerk ist die einzige laute Farbe).

   INHALT
   00  Schriften (@font-face, lokal)
   01  Design-Tokens (Farben, Schriften, Abstände)
   02  Reset und Grundlagen
   03  Typografie-Utilities (eyebrow, display, Fließtext)
   04  Preloader (Zähler + Vorhang)
   05  Custom Cursor (Punkt + Ring, wächst über Bildern)
   06  Header und Fullscreen-Menü
   07  Buttons (Pill, Link, magnetisch)
   08  Hero (Split-Text, schwebende Figur, Lichtkugeln)
   09  Marquee-Leiste
   10  Meet Mr. Roo (Video, das beim Scrollen wächst; Statement-Text)
   11  Sculptures (Feature-Liste, horizontale Galerie, Editorial-Karten)
   12  Wall Art (Clip-Path-Vorhang)
   13  Kontakt (dunkler Abschnitt, Formular)
   14  Footer (Riesenwortmarke)
   15  About-Seite (Portrait, Artikel-Blöcke, Studio, Join)
   15b Rechtsseiten (Impressum, Datenschutz)
   15c WOW-Effekte (Fortschritt, Farbspur, Formen, Konturen-Marquee)
   15d WOW zweite Runde (Farbnebel, Halo, Glow-Wort, Farbwechsel, 3D-Galerie)
   16  Seitenübergang, Grain, Reduced Motion
   17  Breakpoints (1200, 980, 767, 480)

   ARBEITSREGELN
   - Reihenfolge nicht vertauschen, spätere Regeln überschreiben frühere.
   - Alles, was GSAP animiert, ist mit [data-*] markiert. CSS setzt nur
     den Ausgangszustand, damit nichts flackert (FOUC-Schutz über
     html.js-Klasse). Ohne JavaScript ist alles sichtbar.
   ===================================================================== */


/* =====================================================================
   00  SCHRIFTEN (lokal gehostet, kein Google-Fonts-Aufruf, DSGVO-sauber)
   Archivo als Variable Font (Gewichte 400 bis 700), Archivo Black statisch.
   ===================================================================== */
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo Black";
  src: url("../fonts/archivo-black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


/* =====================================================================
   01  DESIGN-TOKENS
   ===================================================================== */
:root {
  /* Farben: exakt aus dem Lovable-Stylesheet übernommen */
  --ink: #0E0E10;
  --paper: #FFFFFF;
  --paper-soft: #FAFAF7;
  --hairline: #E6E6E6;
  --muted-ink: #6B6B6B;
  --cobalt: #2F45E0;
  --cobalt-tint: #EAECFB;
  --cobalt-glow: rgba(47, 69, 224, 0.28);

  /* Schriften: Archivo (Text) und Archivo Black (Display) wie in Lovable */
  --font-sans: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Archivo Black", "Archivo", ui-sans-serif, system-ui, sans-serif;

  /* Layout */
  --max: 1440px;
  --gutter: clamp(20px, 3.5vw, 40px);
  --section: clamp(96px, 12vw, 160px);

  /* Bewegung: eine Kurve für alles, damit die Seite "aus einem Guss" wirkt */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}


/* =====================================================================
   02  RESET UND GRUNDLAGEN
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  /* Lenis übernimmt das Scrollen, deshalb kein natives smooth-scroll */
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  /* Mobil-Browser ignorieren overflow-x auf body, deshalb auch auf html:
     clip statt hidden, damit position: sticky weiter funktioniert */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
  /* Kein Gummiband nach links/rechts auf Touch-Geräten */
  overscroll-behavior-x: none;
}

/* Solange der Preloader läuft, darf nicht gescrollt werden */
body.is-loading { overflow: hidden; }

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

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

/* Auf Touch-Geräten und mit Maus ohne Hover bleibt der Systemcursor */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}


/* =====================================================================
   03  TYPOGRAFIE-UTILITIES
   ===================================================================== */
.eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  line-height: 1.6; /* mehrzeilige Labels (About-Seite) brauchen Zeilenabstand */
  color: var(--cobalt);
}

.display {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.display-tight {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.lead {
  color: var(--muted-ink);
  font-size: clamp(16px, 1.15vw, 17px);
  line-height: 1.7;
}

/* Split-Text: jede Zeile bekommt eine Maske, die Wörter rutschen hoch.
   Der Ausgangszustand wird nur gesetzt, wenn JS vorhanden ist (FOUC-Schutz). */
/* Oben etwas Luft, damit Umlaute (Ö) nicht von der Maske abgeschnitten werden */
[data-split] .line { display: block; overflow: hidden; padding: 0.14em 0 0.08em; margin: -0.14em 0 -0.08em; }
[data-split] .line > span { display: inline-block; will-change: transform; }
html.js [data-split] .line > span { transform: translateY(110%); }

/* Wortweises Einblenden beim Scrollen (Statement-Texte) */
[data-words] .w { display: inline-block; }
html.js [data-words] .w { opacity: 0.16; }

/* Generischer Reveal-Ausgangszustand */
html.js [data-reveal] { opacity: 0; transform: translateY(32px); }
html.js [data-reveal="fade"] { transform: none; }
html.js [data-reveal="left"] { transform: translateX(-40px); }
html.js [data-reveal="scale"] { transform: scale(0.94); }


/* =====================================================================
   04  PRELOADER
   Zähler 0 bis 100, dazu tanzt die Wortmarke Buchstabe für Buchstabe
   herein. Danach fährt der Vorhang nach oben und gibt den Hero frei.
   ===================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--ink);
  color: var(--paper);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: var(--gutter);
}
html:not(.js) .preloader { display: none; }

.preloader__brand {
  font-family: var(--font-display);
  font-size: clamp(64px, 16vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  overflow: hidden;
  align-self: flex-start;
}
.preloader__brand span { display: inline-block; transform: translateY(110%); }

.preloader__meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.preloader__count {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 96px);
  color: var(--paper);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.preloader__bar {
  position: absolute; left: 0; bottom: 0; height: 3px; width: 100%;
  background: var(--cobalt); transform-origin: left; transform: scaleX(0);
}


/* =====================================================================
   05  CUSTOM CURSOR
   Kleiner Punkt folgt direkt, der Ring mit Verzögerung. Über Bildern
   wächst der Ring und zeigt "View", über Links wird er zum Punkt.
   ===================================================================== */
.cursor, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 999;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor { width: 8px; height: 8px; background: #fff; }
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; font-weight: 600;
  transition: width 400ms var(--ease-out), height 400ms var(--ease-out),
              background 400ms var(--ease-out), border-color 400ms var(--ease-out);
}
.cursor-ring span { opacity: 0; transition: opacity 250ms; }
.cursor-ring.is-view { width: 96px; height: 96px; background: #fff; border-color: #fff; color: #000; mix-blend-mode: normal; }
.cursor-ring.is-view span { opacity: 1; }
.cursor-ring.is-link { width: 14px; height: 14px; background: #fff; }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-ring { display: none; } }


/* =====================================================================
   06  HEADER UND MENÜ
   Header liegt transparent über dem Hero, wird beim Scrollen zur
   Glasleiste und versteckt sich beim Runterscrollen (kommt beim
   Hochscrollen sofort zurück).
   ===================================================================== */
.header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  padding-top: env(safe-area-inset-top, 0px); /* iPhone-Notch, Android-Statusleiste */
  /* KEINE CSS-Transition auf transform: die kollidiert mit GSAP (Header blieb bei -30px hängen).
     Ein- und Ausblenden beim Scrollen macht GSAP in main.js. */
  transition: background 400ms, border-color 400ms, backdrop-filter 400ms;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(255,255,255,0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-color: var(--hairline);
}
.header.is-dark:not(.is-scrolled) { color: var(--paper); }

.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.header__logo {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: -0.04em; text-transform: uppercase;
  line-height: 1;
}
.header__nav { display: flex; gap: 40px; }
.header__nav a {
  position: relative;
  font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  padding-block: 6px;
}
/* Unterstrich wächst von links, verschwindet nach rechts */
.header__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 500ms var(--ease-expo);
}
.header__nav a:hover::after, .header__nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.header__nav a.is-active { color: var(--cobalt); }

.header__right { display: flex; align-items: center; gap: 24px; }
.lang { display: flex; gap: 10px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.lang button { color: var(--muted-ink); transition: color 300ms; }
.lang button.is-active, .lang button:hover { color: currentColor; }
.lang i { color: var(--hairline); font-style: normal; }

.burger {
  display: none; position: relative; width: 44px; height: 44px; z-index: 2;
}
.burger span {
  position: absolute; left: 10px; width: 24px; height: 2px; background: currentColor;
  transition: transform 500ms var(--ease-expo), top 500ms var(--ease-expo);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 26px; }
body.menu-open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { top: 21px; transform: rotate(-45deg); }
body.menu-open .header { color: var(--paper); background: transparent; border-color: transparent; backdrop-filter: none; }

/* Fullscreen-Menü: Fläche wächst per clip-path, Links staggern hoch */
.menu {
  position: fixed; inset: 0; z-index: 90;
  padding-top: calc(var(--gutter) + env(safe-area-inset-top, 0px));
  background: var(--ink); color: var(--paper);
  clip-path: circle(0% at calc(100% - 42px) 40px);
  transition: clip-path 900ms var(--ease-expo);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--gutter); padding-bottom: 48px;
  visibility: hidden;
}
body.menu-open .menu { clip-path: circle(150% at calc(100% - 42px) 40px); visibility: visible; }
.menu__links a {
  display: block; overflow: hidden;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(40px, 11vw, 72px); line-height: 1; letter-spacing: -0.04em;
  padding-block: 6px;
}
.menu__links a span { display: block; transform: translateY(110%); transition: transform 800ms var(--ease-expo); }
body.menu-open .menu__links a span { transform: none; }
body.menu-open .menu__links a:nth-child(2) span { transition-delay: 80ms; }
body.menu-open .menu__links a:nth-child(3) span { transition-delay: 160ms; }
.menu__foot {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 20px;
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6);
  opacity: 0; transition: opacity 600ms 300ms;
}
body.menu-open .menu__foot { opacity: 1; }
.menu__foot .lang button.is-active { color: var(--paper); }


/* =====================================================================
   07  BUTTONS
   Magnetisch: JS zieht den Button leicht zur Maus. Der Pfeil im Pill
   fliegt beim Hover raus und von links wieder rein.
   ===================================================================== */
.btn-pill {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 30px; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; font-size: 12.5px;
  overflow: hidden; isolation: isolate;
  transition: color 400ms var(--ease-out);
}
/* Kobalt-Füllung wächst beim Hover von unten */
.btn-pill::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--cobalt); transform: translateY(101%);
  transition: transform 500ms var(--ease-expo);
}
.btn-pill:hover::before { transform: translateY(0); }
.btn-pill .arrow { display: inline-block; transition: transform 500ms var(--ease-expo); }
.btn-pill:hover .arrow { transform: translateX(6px); }
.btn-pill--light { background: var(--paper); color: var(--ink); }
.btn-pill--light:hover { color: var(--paper); }

.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; font-size: 12.5px;
  padding-bottom: 3px; position: relative;
}
.btn-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform-origin: right; transition: transform 500ms var(--ease-expo);
}
.btn-link:hover::after { transform: scaleX(0); transform-origin: left; }
.btn-link .arrow { transition: transform 500ms var(--ease-expo); }
.btn-link:hover .arrow { transform: translateX(6px); }


/* =====================================================================
   08  HERO
   ===================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(140px, 18vh, 200px);
  padding-bottom: clamp(60px, 8vw, 120px);
  min-height: 100svh;
  display: flex; align-items: center;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 80px); align-items: center;
}

/* Weiche Lichtkugeln im Hintergrund, GSAP lässt sie langsam driften */
.orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: 0.55; will-change: transform;
}
.orb--1 { width: 46vw; height: 46vw; right: -10vw; top: -8vw; background: radial-gradient(circle, var(--cobalt-glow), transparent 70%); }
.orb--2 { width: 34vw; height: 34vw; left: -12vw; bottom: -10vw; background: radial-gradient(circle, rgba(255, 170, 60, 0.22), transparent 70%); }
.orb--3 { width: 22vw; height: 22vw; right: 22vw; bottom: 4vw; background: radial-gradient(circle, rgba(255, 60, 120, 0.18), transparent 70%); }

.hero__title {
  margin-top: 28px;
  font-size: clamp(48px, 6.6vw, 106px);
}
.hero__text { margin-top: 36px; max-width: 520px; display: grid; gap: 18px; }
.hero__cta { margin-top: 44px; display: flex; flex-wrap: wrap; align-items: center; gap: 32px; }

.hero__figure { position: relative; aspect-ratio: 4 / 5; display: flex; align-items: center; justify-content: center; }
.hero__img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 40px 50px rgba(0,0,0,0.18));
  will-change: transform;
}
/* Schatten-Ellipse unter der Figur atmet mit der Schwebe-Animation */
.hero__shadow {
  position: absolute; bottom: 6%; left: 50%; transform: translateX(-50%);
  width: 46%; height: 6%; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.22), transparent 70%);
}
/* Kreisender Text um die Figur */
.hero__ring { position: absolute; right: -10px; top: 6%; width: 150px; height: 150px; pointer-events: none; }
.hero__ring text { font-size: 11.5px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; fill: var(--ink); }

.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 32px;
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-ink);
}
.hero__scroll i { width: 48px; height: 1px; background: var(--ink); display: block; transform-origin: left; animation: scrollline 2.2s var(--ease-expo) infinite; }
@keyframes scrollline { 0% { transform: scaleX(0); transform-origin: left; } 50% { transform: scaleX(1); transform-origin: left; } 51% { transform-origin: right; } 100% { transform: scaleX(0); transform-origin: right; } }


/* =====================================================================
   09  MARQUEE
   Zwei identische Spuren laufen endlos, JS beschleunigt beim Scrollen.
   ===================================================================== */
.marquee {
  overflow: hidden; border-block: 1px solid var(--hairline);
  padding-block: 20px; background: var(--paper);
}
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__group { display: flex; align-items: center; gap: 48px; padding-right: 48px; white-space: nowrap; }
.marquee__group span { font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; }
.marquee__group i { width: 5px; height: 5px; border-radius: 50%; background: var(--cobalt); display: block; }
.marquee--big .marquee__group span { font-family: var(--font-display); font-size: clamp(40px, 8vw, 120px); letter-spacing: -0.03em; line-height: 1; }
.marquee--big .marquee__group i { width: 14px; height: 14px; }


/* =====================================================================
   10  MEET MR. ROO (Masken-Reveal)
   Die Sektion wird gepinnt. Das Video läuft stumm im Hintergrund, davor
   liegt eine weiße Fläche mit "MR. ROO" als Loch. GSAP zoomt die Schrift
   beim Scrollen auf das 60-Fache, bis nur noch das Video zu sehen ist.
   Danach erscheint der Play-Knopf (mit Ton).
   ===================================================================== */
.meet { position: relative; background: var(--ink); color: var(--paper); }
.meet__pin { position: relative; height: 100svh; min-height: 560px; overflow: hidden; background: var(--ink); }
.meet__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.meet__mask { position: absolute; inset: 0; width: 100%; height: 100%; }
.meet__maskText { font-family: var(--font-display); font-weight: 900; letter-spacing: -0.04em; transform-origin: 500px 260px; transform-box: view-box; }
.meet__ui { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; pointer-events: none; opacity: 0; }
.meet__ui > * { pointer-events: auto; }
.meet__eyebrow { color: var(--paper); text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.meet__film { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.meet__play {
  position: relative; width: 120px; height: 120px; border-radius: 50%;
  background: var(--paper); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  transition: transform 500ms var(--ease-expo);
}
.meet__play::before { content: ""; position: absolute; inset: -12px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.6); animation: pulse 2.4s var(--ease-out) infinite; }
@keyframes pulse { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }
.meet__play:hover { transform: scale(1.08); }
.meet.is-playing .meet__ui { opacity: 0 !important; pointer-events: none; }
.meet__statement { padding-block: clamp(64px, 10vw, 140px); font-size: clamp(30px, 4.6vw, 64px); max-width: 20ch; color: var(--paper); }

/* =====================================================================
   11  SCULPTURES
   ===================================================================== */
.sculptures { padding-block: var(--section); overflow: hidden; }
.sculptures__title { margin-top: 24px; max-width: 14ch; font-size: clamp(40px, 6.5vw, 96px); }
.sculptures__sub { margin-top: 28px; color: var(--muted-ink); font-size: clamp(20px, 2.4vw, 32px); }
.sculptures__lead { margin-top: 28px; max-width: 640px; }

/* Karten-Stapel: position: sticky lässt jede Karte oben kleben, die nächste
   schiebt sich darüber. GSAP skaliert die darunterliegenden leicht zurück. */
.stack__eyebrow { margin-top: 72px; color: var(--ink); }
.stack { padding-top: 24px; padding-bottom: 12vh; }
.stack__card {
  position: sticky; top: 96px; margin-bottom: 4vh;
  background: var(--card-bg); color: var(--card-ink);
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(14,14,16,0.12);
  transform-origin: center top; will-change: transform;
}
.stack__inner { display: grid; grid-template-columns: auto 1fr 34%; gap: 32px; align-items: center; padding: clamp(28px, 4vw, 56px); min-height: 58vh; }
.stack__n { font-family: var(--font-display); font-size: clamp(36px, 5vw, 72px); padding-right: 8px; line-height: 1; letter-spacing: -0.04em; opacity: 0.25; }
.stack__h { font-size: clamp(30px, 4.6vw, 72px); }
.stack__p { margin-top: 20px; font-size: clamp(16px, 1.3vw, 20px); line-height: 1.6; max-width: 40ch; opacity: 0.8; }
.stack__img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 18px; box-shadow: 0 20px 40px rgba(0,0,0,0.18); }

/* Horizontale Galerie: Sektion wird gepinnt, die Spur fährt nach links.
   Innerhalb jedes Rahmens läuft das Bild leicht gegen (Parallax). */
.hgal { margin-top: 120px; }
.hgal__pin { overflow: hidden; }
.hgal__track { display: flex; gap: clamp(16px, 2.5vw, 40px); padding-left: var(--gutter); will-change: transform; }
.hgal__item { flex: 0 0 auto; width: clamp(280px, 30vw, 460px); margin: 0; } /* figure hat Browser-Standardränder */
.hgal__frame { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--paper-soft); }
html.js .hgal__frame { clip-path: inset(0 0 100% 0); }
html.js .hgal__frame img { transform: scale(1.25); }
.hgal__frame img { width: 100%; height: 118%; object-fit: cover; will-change: transform; }
.hgal__cap { margin-top: 14px; display: flex; justify-content: space-between; font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-ink); }
.hgal__cap b { color: var(--ink); font-weight: 600; }
.hgal__end { flex: 0 0 auto; width: 40vw; display: flex; align-items: center; justify-content: center; }
.hgal__end .display { font-size: clamp(32px, 5vw, 72px); max-width: 8ch; }

/* Editorial-Karten: 3D-Tilt per JS, Bildzoom beim Hover */
.cards { margin-top: 140px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.card__img { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper-soft); transform-style: preserve-3d; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-expo); }
.card:hover .card__img img { transform: scale(1.05); }
.card__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 1.1s var(--ease-expo);
}
.card:hover .card__img::after { transform: translateX(100%); }
.card .eyebrow { margin-top: 32px; }
.card__h { margin-top: 16px; font-size: clamp(28px, 3vw, 40px); }
.card__p { margin-top: 18px; max-width: 44ch; color: var(--muted-ink); }

.sculptures__more { margin-top: 96px; display: flex; justify-content: center; }


/* =====================================================================
   12  WALL ART (Clip-Path-Vorhang, Bild fährt beim Scrollen weiter)
   ===================================================================== */
.wall { position: relative; margin-top: 120px; }
.wall__frame { position: relative; aspect-ratio: 1 / 1; max-width: 900px; margin-inline: auto; overflow: hidden; background: var(--paper-soft); }
html.js .wall__frame { clip-path: inset(0 0 100% 0); }
.wall__frame img { width: 100%; height: 100%; object-fit: cover; will-change: transform; transform: scale(1.3); }
.wall__cap {
  position: absolute; left: var(--gutter); bottom: 32px; color: var(--paper);
  font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  mix-blend-mode: difference;
}


/* =====================================================================
   13  KONTAKT (dunkel)
   Die Sektion fährt mit runden oberen Ecken wie ein Blatt über die
   vorherige (JS: Radius wird beim Scrollen auf 0 gezogen).
   ===================================================================== */
.contact {
  position: relative; background: var(--ink); color: var(--paper);
  padding-block: var(--section);
  border-radius: 48px 48px 0 0;
}
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px 96px; }
.contact__title { margin-top: 24px; font-size: clamp(56px, 7vw, 112px); }
.contact__info { margin-top: 56px; display: grid; gap: 40px; font-size: 15px; color: rgba(255,255,255,0.8); }
.contact__info .eyebrow { color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.contact__info a { border-bottom: 1px solid rgba(255,255,255,0.3); transition: border-color 300ms; }
.contact__info a:hover { border-color: #fff; }
.contact__info strong { font-weight: 500; color: #fff; }

.form { display: grid; gap: 32px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.field label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 12px 0; color: #fff; font: inherit; font-size: 15px; border-radius: 0; outline: none;
}
.field select option { background: var(--ink); color: #fff; }
.field textarea { resize: none; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.4); }
/* Fokus-Linie wächst aus der Mitte */
.field::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: #fff;
  transform: scaleX(0); transition: transform 500ms var(--ease-expo);
}
.field:focus-within::after { transform: scaleX(1); }
.field small { display: block; margin-top: 8px; font-size: 12px; color: rgba(255,255,255,0.5); }
.form__submit { display: none; }
.form__submit.is-visible { display: inline-flex; }
.form__msg { font-size: 13px; color: rgba(255,255,255,0.8); }


/* =====================================================================
   14  FOOTER
   Riesige Wortmarke, nur Kontur; beim Hover füllt sie sich.
   ===================================================================== */
.footer { background: var(--ink); color: var(--paper); padding-top: 40px; overflow: hidden; }
.footer__brand {
  font-family: var(--font-display); text-transform: uppercase; text-align: center;
  font-size: clamp(64px, 19vw, 300px); line-height: 0.8; letter-spacing: -0.05em;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.5);
  transition: color 800ms var(--ease-expo), -webkit-text-stroke-color 800ms;
  padding-bottom: 0.1em;
}
.footer__brand:hover { color: var(--paper); -webkit-text-stroke-color: var(--paper); }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.15); margin-top: 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-block: 28px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.footer__bar nav { display: flex; gap: 24px; }
.footer__bar a:hover { color: #fff; }
/* Herz im Footer schlägt (zwei kurze Schläge, dann Pause, wie ein echter Puls) */
.footer__bar .heart { color: #FF4FA3; display: inline-block; transform-origin: center; animation: heartbeat 1.6s ease-in-out infinite; font-size: 14px; }
@keyframes heartbeat {
  0%, 30%, 100% { transform: scale(1); }
  10% { transform: scale(1.3); }
  20% { transform: scale(1.05); }
  25% { transform: scale(1.25); }
}
.footer__bar p a { border-bottom: 1px solid rgba(255,255,255,0.3); transition: color 300ms, border-color 300ms; }
.footer__bar p a:hover { color: #fff; border-color: #fff; }


/* =====================================================================
   15  ABOUT-SEITE
   ===================================================================== */
.about-hero { position: relative; overflow: hidden; padding-top: clamp(140px, 18vh, 200px); padding-bottom: clamp(60px, 8vw, 112px); }
.about-hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 80px); align-items: end; }
.about-hero__title { margin-top: 28px; font-size: clamp(64px, 9vw, 136px); }
.about-hero__sub { margin-top: 28px; color: var(--muted-ink); font-size: clamp(20px, 2.4vw, 32px); }
.about-hero__lead { margin-top: 36px; max-width: 560px; }
.about-hero__cta { margin-top: 40px; }
.portrait { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--paper-soft); }
html.js .portrait { clip-path: inset(100% 0 0 0); }
.portrait img { width: 100%; height: 112%; object-fit: cover; object-position: center top; will-change: transform; }
/* Kobalt-Rahmen liegt versetzt hinter dem Portrait */
.portrait-wrap { position: relative; isolation: isolate; }
.portrait-wrap::before { content: ""; position: absolute; inset: 24px -24px -24px 24px; background: var(--cobalt-tint); z-index: -1; }

/* Artikel: Label links klebt (sticky), Text rechts, Zähler in Kobalt */
.article { padding-block: var(--section); }
.article__block {
  display: grid; grid-template-columns: 300px 1fr; gap: 32px 96px;
  padding-block: 64px; border-top: 1px solid var(--hairline);
}
.article__block:first-child { border-top: 0; padding-top: 0; }
.article__aside { position: sticky; top: 120px; align-self: start; }
.article__aside .n { display: block; font-family: var(--font-display); color: var(--cobalt); font-size: 14px; letter-spacing: 0.1em; margin-bottom: 20px; }
.article__h { font-size: clamp(30px, 4vw, 48px); max-width: 16ch; }
.article__body { display: grid; gap: 20px; font-size: clamp(16.5px, 1.2vw, 18px); line-height: 1.75; color: rgba(14,14,16,0.8); max-width: 680px; }
.article__list { display: grid; gap: 12px; border-left: 1px solid var(--hairline); padding-left: 24px; margin-top: 8px; }
.article__list li { position: relative; }
.article__list li::before { content: ""; position: absolute; left: -28px; top: 12px; width: 7px; height: 7px; border-radius: 50%; background: var(--cobalt); }

.studio { padding-bottom: var(--section); }
.studio__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.studio__img { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--paper-soft); max-width: 480px; }
.studio__img img { width: 100%; height: 115%; object-fit: cover; object-position: center top; will-change: transform; }
.studio__h { margin-top: 20px; font-size: clamp(30px, 4vw, 48px); }
.studio__body { margin-top: 28px; display: grid; gap: 18px; font-size: 17px; line-height: 1.75; color: rgba(14,14,16,0.8); }
.studio__contact { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--hairline); font-size: 15px; line-height: 1.7; }
.studio__contact a { border-bottom: 1px solid var(--ink); }
.studio__contact a:hover { color: var(--cobalt); border-color: var(--cobalt); }

/* Join: Kobalt-Fläche mit driftenden Formen, Text zentriert */
.join { position: relative; overflow: hidden; background: var(--cobalt-tint); padding-block: var(--section); text-align: center; }
.join .orb--1 { right: -12vw; top: -14vw; opacity: 0.8; }
.join .orb--2 { left: -10vw; bottom: -14vw; }
.join__title { margin-top: 28px; font-size: clamp(40px, 6.5vw, 96px); }
.join__lead { margin: 36px auto 0; max-width: 640px; font-size: clamp(16.5px, 1.25vw, 18px); line-height: 1.75; color: rgba(14,14,16,0.8); }
.join .btn-pill { margin-top: 44px; }


/* =====================================================================
   15b RECHTSSEITEN (Impressum, Datenschutz)
   Schmale Lesespalte, gleiche Typografie wie der Artikel auf About.
   ===================================================================== */
.legal { padding-top: clamp(140px, 18vh, 200px); padding-bottom: var(--section); }
.legal__wrap { max-width: 860px; }
.legal__title { margin-top: 24px; font-size: clamp(44px, 7vw, 96px); }
.legal__body { margin-top: 56px; font-size: 17px; line-height: 1.75; color: rgba(14,14,16,0.8); }
.legal__body h2 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: -0.02em; font-size: 20px; color: var(--ink); margin-top: 44px; margin-bottom: 12px; }
.legal__body h2:first-child { margin-top: 0; }
.legal__body p + p { margin-top: 12px; }
.legal__body a { border-bottom: 1px solid var(--ink); color: var(--ink); }
.legal__body a:hover { color: var(--cobalt); border-color: var(--cobalt); }


/* =====================================================================
   15c WOW-EFFEKTE (dritte Fassung)
   Scroll-Fortschritt, Farbspur hinter der Maus, schwebende Farbformen
   im Hero, Konturen-Marquee, Karten-Hover mit Farbfläche.
   ===================================================================== */
/* Dünner Kobalt-Balken oben zeigt den Scroll-Fortschritt */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; background: var(--cobalt); transform-origin: left; transform: scaleX(0); z-index: 120; pointer-events: none; }

/* Canvas für die Farbspur, liegt über dem Hero, klickt nicht */
.splash { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.hero .wrap { position: relative; z-index: 3; }

/* Schwebende Formen in Mr. Roos Farben, mehrere Tiefen (data-depth) */
.shape { position: absolute; border-radius: 50%; pointer-events: none; will-change: transform; z-index: 1; }
.shape--1 { width: 22px; height: 22px; background: #FF4FA3; left: 56%; top: 18%; }
.shape--2 { width: 14px; height: 14px; background: #FFC531; left: 88%; top: 36%; }
.shape--3 { width: 34px; height: 34px; border: 3px solid var(--cobalt); background: transparent; left: 62%; top: 72%; }
.shape--4 { width: 10px; height: 10px; background: #2ED3B7; left: 78%; top: 82%; }
.shape--5 { width: 18px; height: 18px; background: #FF7A1A; left: 94%; top: 68%; border-radius: 4px; transform: rotate(20deg); }
.shape--6 { width: 26px; height: 26px; border: 3px solid #FF4FA3; background: transparent; left: 52%; top: 46%; }

/* Riesen-Marquee mit Konturschrift, füllt sich beim Hover */
.marquee--big { border: 0; padding-block: 24px; background: var(--paper); }
.marquee--big .marquee__group span { color: transparent; -webkit-text-stroke: 1.5px var(--ink); transition: color 500ms var(--ease-expo); }
.marquee--big:hover .marquee__group span { color: var(--ink); }
.marquee--big .marquee__group i { background: var(--cobalt); }

/* Karten: beim Hover schiebt sich eine Kobaltfläche unter das Bild und der Titel rückt nach */
.card__img { transition: transform 900ms var(--ease-expo); }
.card__img img, .wall__frame img { will-change: transform; }
.card::before { content: ""; position: absolute; inset: -12px -12px auto -12px; aspect-ratio: 4 / 5; background: var(--cobalt-tint); z-index: -1; transform: scale(0.96); opacity: 0; transition: transform 700ms var(--ease-expo), opacity 500ms; }
.card { position: relative; }
.card:hover::before { transform: scale(1); opacity: 1; }
.card__h { transition: transform 600ms var(--ease-expo); }
.card:hover .card__h { transform: translateX(8px); }

/* Split-Buchstaben (Sculptures-Titel): jeder Buchstabe rotiert einzeln herein */
[data-chars] .word { display: inline-block; white-space: nowrap; } /* Wörter brechen nie mitten drin */
[data-chars] .ch { display: inline-block; will-change: transform; }
html.js [data-chars] .ch { opacity: 0; transform: translateY(60%) rotate(8deg); }

/* Zähler in der Feature-Liste laufen hoch */

@media (prefers-reduced-motion: reduce) { .splash, .shape { display: none; } }
@media (max-width: 980px) { .shape { transform: scale(0.7); } }

/* Mobil-Karussell (bis 980 px): wischbar, rastet ein, aktive Karte wächst */
@media (max-width: 980px) {
  .hgal__track {
    display: flex !important; gap: 14px; overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    padding: 12px var(--gutter) 24px; scrollbar-width: none; transform: none !important;
  }
  .hgal__track::-webkit-scrollbar { display: none; }
  .hgal__item { flex: 0 0 76vw; max-width: 380px; scroll-snap-align: center; transform: scale(0.94); opacity: 0.7; transition: transform 500ms var(--ease-expo), opacity 400ms; }
  .hgal__item.is-active { transform: scale(1); opacity: 1; }
  .hgal__end { flex: 0 0 76vw; padding: 0; }
  .hgal__end .display { font-size: clamp(32px, 9vw, 48px); }
}


/* =====================================================================
   15d WOW, ZWEITE RUNDE: Farbnebel, Halo, Glow-Wort, Farbwechsel, 3D-Galerie
   ===================================================================== */
/* Farbnebel: vier große, weiche Blobs in Mr. Roos Farben, langsam kreisend */
.mesh { position: absolute; inset: -10%; pointer-events: none; z-index: 0; filter: blur(70px) saturate(1.2); opacity: 0.85; }
.mesh__b { position: absolute; border-radius: 50%; will-change: transform; }
.mesh__b--1 { width: 55vw; height: 55vw; left: 40%; top: -20%; background: radial-gradient(circle, rgba(255,79,163,0.55), transparent 65%); animation: mesh1 18s ease-in-out infinite alternate; }
.mesh__b--2 { width: 45vw; height: 45vw; left: 60%; top: 30%; background: radial-gradient(circle, rgba(47,69,224,0.45), transparent 65%); animation: mesh2 22s ease-in-out infinite alternate; }
.mesh__b--3 { width: 40vw; height: 40vw; left: -10%; top: 40%; background: radial-gradient(circle, rgba(255,197,49,0.5), transparent 65%); animation: mesh3 20s ease-in-out infinite alternate; }
.mesh__b--4 { width: 30vw; height: 30vw; left: 20%; top: -10%; background: radial-gradient(circle, rgba(46,211,183,0.4), transparent 65%); animation: mesh2 26s ease-in-out infinite alternate-reverse; }
@keyframes mesh1 { from { transform: translate(0,0) scale(1); } to { transform: translate(-18vw, 14vh) scale(1.2); } }
@keyframes mesh2 { from { transform: translate(0,0) scale(1); } to { transform: translate(14vw, -16vh) scale(0.9); } }
@keyframes mesh3 { from { transform: translate(0,0) scale(1); } to { transform: translate(16vw, -10vh) scale(1.25); } }
.hero .orb { display: none; }

/* Rotierender Farbring hinter der Figur */
.hero__halo {
  position: absolute; left: 50%; top: 50%; width: 92%; aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50%; z-index: 0;
  background: conic-gradient(from 0deg, #FF4FA3, #FFC531, #2ED3B7, #2F45E0, #FF7A1A, #FF4FA3);
  -webkit-mask: radial-gradient(circle, transparent 62%, #000 63%, #000 70%, transparent 71%);
  mask: radial-gradient(circle, transparent 62%, #000 63%, #000 70%, transparent 71%);
  animation: spin 14s linear infinite; opacity: 0.9;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.hero__img, .hero__shadow, .hero__ring, .shape { position: relative; z-index: 1; }
.hero__shadow, .hero__ring, .shape { position: absolute; }

/* "vibrant world" als wandernder Farbverlauf */
.glow {
  font-style: normal;
  background: linear-gradient(90deg, #FF4FA3, #FFC531, #2F45E0, #2ED3B7, #FF4FA3);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: glow 6s linear infinite;
}
@keyframes glow { to { background-position: 300% 0; } }
[data-split] .line > span .glow { display: inline; }

/* Seitenhintergrund wechselt je Abschnitt (JS setzt body background per GSAP) */
body { transition: none; }
.sculptures, .hgal, .wall, .cards { background: transparent; }

/* 3D-Galerie: Rahmen drehen sich je nach Position (JS setzt --ry, --sc) */
.hgal__pin { perspective: 1400px; }
.hgal__item { transform: perspective(1400px) rotateY(var(--ry, 0deg)) scale(var(--sc, 1)); transition: none; }
@media (max-width: 980px) {
  .hgal__track { perspective: 1200px; }
  .hgal__item { transform: rotateY(var(--ry, 0deg)) scale(var(--sc, 0.94)); opacity: 1; }
  .hgal__item.is-active { transform: rotateY(var(--ry, 0deg)) scale(var(--sc, 1)); }
}

/* Footer-Wortmarke fährt von links ein (JS, scrub) */
html.js .footer__brand { transform: translateX(-30%); opacity: 0; }

@media (max-width: 980px) {
  .stack__inner { grid-template-columns: 1fr; gap: 20px; min-height: 0; }
  .stack__n { font-size: 40px; }
  .stack__img { max-width: 60%; aspect-ratio: 4 / 3; margin-top: 8px; }
  .stack__card { top: 84px; border-radius: 22px; }
  .meet__pin { min-height: 520px; }
  .mesh { filter: blur(50px); }
}
@media (max-width: 767px) {
  .stack__img { max-width: 100%; aspect-ratio: 16 / 10; }
  .meet__play { width: 92px; height: 92px; }
}
@media (prefers-reduced-motion: reduce) { .mesh__b, .hero__halo, .glow { animation: none; } }


/* =====================================================================
   16  SEITENÜBERGANG, GRAIN, REDUCED MOTION
   ===================================================================== */
/* Vorhang für den Wechsel zwischen den Seiten (fährt von unten hoch) */
.transition {
  position: fixed; inset: 0; z-index: 900; background: var(--ink); pointer-events: none;
  transform: translateY(101%);
}
/* Feines Filmkorn über allem, sehr dezent, gibt dem Weiß Tiefe */
.grain {
  position: fixed; inset: -50%; z-index: 800; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 0.6s steps(4) infinite;
}
@keyframes grain { 0% { transform: translate(0,0); } 25% { transform: translate(-3%, 2%); } 50% { transform: translate(2%, -3%); } 75% { transform: translate(-1%, 3%); } 100% { transform: translate(3%, -1%); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .grain, .cursor, .cursor-ring { display: none; }
}


/* =====================================================================
   17  BREAKPOINTS
   ===================================================================== */
@media (max-width: 1200px) {
  .article__block { grid-template-columns: 240px 1fr; gap: 24px 48px; }
}

@media (max-width: 980px) {
  .header__inner { height: 68px; }
  .header__nav, .header__right .lang { display: none; }
  .burger { display: block; }
  .hero { min-height: auto; padding-top: 120px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__figure { order: -1; max-width: 420px; margin-inline: auto; width: 100%; }
  .hero__ring { right: -20px; top: 0; width: 110px; height: 110px; }
  .hero__scroll { display: none; }
  .cards { grid-template-columns: 1fr; gap: 56px; }
  .contact__grid { grid-template-columns: 1fr; gap: 56px; }
  .contact { border-radius: 32px 32px 0 0; }
  .about-hero__grid { grid-template-columns: 1fr; }
  .portrait-wrap { max-width: 460px; }
  .article__block { grid-template-columns: 1fr; gap: 20px; padding-block: 48px; }
  .article__aside { position: static; }
  .studio__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 767px) {
  :root { --section: 88px; }
  .hero__title { font-size: clamp(46px, 13vw, 72px); }
  .hero__cta { gap: 22px; }
  .meet__head small { display: none; }
  html.js .meet__video { transform: none; border-radius: 14px; }
  .meet__play { width: 88px; height: 88px; }
  .hgal { margin-top: 80px; }
  .form__row { grid-template-columns: 1fr; }
  .contact { border-radius: 24px 24px 0 0; }
  .footer__bar { flex-direction: column; text-align: center; }
  .wall { margin-top: 64px; }
  .article__h { font-size: 28px; }
  .join .orb { filter: blur(50px); }
}

@media (max-width: 480px) {
  .hero__figure { max-width: 300px; }
  /* Lange Wörter (TR: "konuşalım", "Koleksiyonerler") müssen in 390px passen */
  .contact__title { font-size: clamp(40px, 12.5vw, 56px); }
  .join__title { font-size: clamp(32px, 10vw, 40px); }
  .hero__ring { display: none; }
  .hero__text { margin-top: 28px; }
  .meet__statement { font-size: 28px; }
  .cards { gap: 40px; }
}
