/* ==========================================================================
   MAEL MANAGEMENT
   Silver editorial · Apple-fluid motion
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Silber-Verlauf wie in der Vorlage */
  --sil-100: #e6e6e9;
  --sil-200: #d2d2d7;
  --sil-300: #bcbcc2;
  --sil-400: #a6a6ad;
  --sil-500: #8e8e96;
  --ink:     #0b0b0d;
  --ink-2:   #35353b;
  --ink-3:   #5f5f68;
  --paper:   #f5f5f7;
  --void:    #0a0a0c;

  /* Akzent — pro Sektion überschrieben */
  --accent:      #0b0b0d;
  --accent-soft: #35353b;

  --hair: rgba(11, 11, 13, .14);
  --hair-2: rgba(11, 11, 13, .07);

  --display: "Anton", "Archivo Black", Impact, sans-serif;
  --ui: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --script: "Pinyon Script", cursive;

  --pad: clamp(1.15rem, 4vw, 4.5rem);
  --bar: 62px;
  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 12px;

  /* Apple-Federn: kritisch gedämpft = kein Überschwingen */
  --spring: cubic-bezier(.32, .72, 0, 1);
  --spring-soft: cubic-bezier(.25, 1, .3, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

[data-section="editorial"] { --accent: #3B1E8F; --accent-soft: #6B4FD8; }
[data-section="runway"]    { --accent: #D80D0D; --accent-soft: #FF4A4A; }
[data-section="setcard"]   { --accent: #0B4C2A; --accent-soft: #1E9455; }
[data-section="projects"]  { --accent: #7C4DFF; --accent-soft: #A886FF; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--sil-300);
  background-image:
    radial-gradient(120% 80% at 78% 8%, var(--sil-100) 0%, transparent 55%),
    linear-gradient(160deg, var(--sil-200) 0%, var(--sil-300) 45%, var(--sil-400) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-dark {
  color: var(--paper);
  background: var(--void);
  background-image: radial-gradient(110% 70% at 70% 0%, #1b1b20 0%, var(--void) 60%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; -webkit-tap-highlight-color: transparent; }
::selection { background: var(--accent); color: #fff; }

/* Seitenübergang — Materialisieren statt Faden */
body { opacity: 0; }
body.ready { opacity: 1; transition: opacity .5s var(--ease-out); }
body.leaving { opacity: 0; transition: opacity .26s ease-in; }

/* ---------- Typografie: optische Größen ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .82;
  letter-spacing: -.028em;     /* große Größen: negatives Tracking */
  font-feature-settings: "kern" 1;
}
.script { font-family: var(--script); text-transform: none; letter-spacing: 0; line-height: 1; }

.eyebrow {
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .26em;       /* kleine Größen: positives Tracking */
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex; align-items: center; gap: .7rem;
}
.eyebrow::before { content: ""; width: 1.8rem; height: 1px; background: var(--accent); flex: none; }
.eyebrow.bare::before { display: none; }
.eyebrow.live-dot::before { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #17a34a; animation: live2 2.4s ease-out infinite; }
.is-dark .eyebrow { color: rgba(245,245,247,.6); }

.lede { font-size: clamp(1rem, 1.15vw, 1.135rem); line-height: 1.62; color: var(--ink-2); max-width: 40ch; }
.is-dark .lede { color: rgba(245,245,247,.72); }

.mono { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

/* ==========================================================================
   Glas-Chrome (Apple-Material)
   ========================================================================== */
.bar {
  position: fixed; z-index: 80; top: 0; left: 0; right: 0;
  height: var(--bar);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  transition: transform .45s var(--spring), background .4s ease, box-shadow .4s ease;
}
.bar::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(238, 238, 241, .62);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.5);
  opacity: 0; transition: opacity .4s ease;
}
.bar.solid::before { opacity: 1; }
.bar.up { transform: translateY(-100%); }
.is-dark .bar::before { background: rgba(18,18,22,.6); border-bottom-color: rgba(255,255,255,.09); }

.brand { font-family: var(--script); font-size: 1.72rem; line-height: 1; padding: .2rem .1rem; }
.brand span { display: inline-block; transition: transform .4s var(--spring); }
.brand:hover span { transform: translateY(-2px) rotate(-2deg); }

.bar-right { display: flex; align-items: center; gap: .5rem; }

/* Segment-Control (Apple) */
.seg {
  display: flex; position: relative; padding: 3px;
  border-radius: 99px;
  background: rgba(255,255,255,.42);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 1px 3px rgba(0,0,0,.06);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}
.is-dark .seg { background: rgba(255,255,255,.09); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); }
.seg .thumb {
  position: absolute; top: 3px; bottom: 3px; left: 0;
  border-radius: 99px; background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.16), 0 0 0 .5px rgba(0,0,0,.03);
  transition: transform .42s var(--spring), width .42s var(--spring);
  will-change: transform;
}
.is-dark .seg .thumb { background: rgba(255,255,255,.22); }
.seg button {
  position: relative; z-index: 1;
  font-size: .625rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: .42rem .62rem; border-radius: 99px; color: var(--ink-3);
  transition: color .3s ease;
}
.seg button.on { color: var(--ink); }
.is-dark .seg button { color: rgba(245,245,247,.55); }
.is-dark .seg button.on { color: #fff; }

/* Menü-Knopf */
.menu-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; position: relative;
  background: rgba(255,255,255,.42);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 1px 3px rgba(0,0,0,.06);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  transition: transform .28s var(--spring), background .3s ease;
}
.is-dark .menu-btn { background: rgba(255,255,255,.1); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); }
.menu-btn:active { transform: scale(.93); }
.menu-btn i { position: absolute; left: 12px; right: 12px; height: 1.6px; background: currentColor; border-radius: 2px; transition: transform .45s var(--spring), opacity .2s ease; }
.menu-btn i:nth-child(1) { transform: translateY(-4.5px); }
.menu-btn i:nth-child(2) { transform: translateY(4.5px); }
body.menu-on .menu-btn i:nth-child(1) { transform: rotate(45deg); }
body.menu-on .menu-btn i:nth-child(2) { transform: rotate(-45deg); }

/* ---------- Direct-Pille (der futuristische CTA) ---------- */
body.no-direct .direct { display: none; }
.direct {
  position: fixed; z-index: 85;
  right: var(--pad); bottom: clamp(1rem, 3vw, 2rem);
  display: inline-flex; align-items: center; gap: .62rem;
  padding: .78rem 1.15rem .78rem 1.4rem;
  border-radius: 99px;
  color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow:
    0 1px 1px rgba(255,255,255,.28) inset,
    0 -1px 1px rgba(0,0,0,.16) inset,
    0 10px 30px -8px color-mix(in srgb, var(--accent) 62%, transparent),
    0 2px 8px rgba(0,0,0,.18);
  overflow: hidden; isolation: isolate;
  transition: transform .38s var(--spring), box-shadow .38s var(--spring);
  will-change: transform;
}
.direct::after {                       /* wandernder Lichtschein */
  content: ""; position: absolute; inset: -40% -60%; z-index: -1;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.5) 50%, transparent 62%);
  transform: translateX(-60%);
  animation: sheen 5.5s cubic-bezier(.5,0,.3,1) infinite;
}
@keyframes sheen { 0%,62% { transform: translateX(-70%); } 100% { transform: translateX(70%); } }
.direct:hover { transform: translateY(-2px) scale(1.02); }
.direct:active { transform: scale(.965); }
.direct .dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: live 2.4s ease-out infinite; flex: none; }
@keyframes live { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.65); } 70%,100% { box-shadow: 0 0 0 9px rgba(255,255,255,0); } }
.direct .arw { transition: transform .38s var(--spring); }
.direct:hover .arw { transform: translateX(3px); }

/* ---------- Vollbild-Menü ---------- */
.veil {
  position: fixed; inset: 0; z-index: 79;
  background: rgba(14,14,17,.72);
  backdrop-filter: blur(34px) saturate(150%);
  -webkit-backdrop-filter: blur(34px) saturate(150%);
  color: var(--paper);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--bar) var(--pad) var(--pad);
  opacity: 0; pointer-events: none;
  transition: opacity .42s var(--ease-out), backdrop-filter .5s ease;
}
body.menu-on .veil { opacity: 1; pointer-events: auto; }
.veil nav { display: flex; flex-direction: column; }
.veil nav a {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(2.1rem, 8.5vw, 5.2rem); line-height: .95; letter-spacing: -.025em;
  display: flex; align-items: baseline; gap: 1rem;
  padding: .1em 0; color: rgba(245,245,247,.42);
  opacity: 0; transform: translateY(26px);
  transition: opacity .5s var(--ease-out), transform .6s var(--spring), color .3s ease;
}
body.menu-on .veil nav a { opacity: 1; transform: none; }
.veil nav a em { font-family: var(--ui); font-style: normal; font-size: .6rem; font-weight: 600; letter-spacing: .24em; color: rgba(245,245,247,.3); }
.veil nav a:hover, .veil nav a.on { color: #fff; }
.veil nav a[data-sec="editorial"]:hover { color: #9B84F0; }
.veil nav a[data-sec="runway"]:hover    { color: #FF5A5A; }
.veil nav a[data-sec="setcard"]:hover   { color: #43C480; }
.veil nav a[data-sec="projects"]:hover  { color: #B79BFF; }
.veil-foot { margin-top: clamp(1.6rem, 4vw, 3rem); display: flex; gap: 1.6rem; flex-wrap: wrap; align-items: center; font-size: .64rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,245,247,.5); }
.veil-foot a:hover { color: #fff; }

/* ==========================================================================
   Layout
   ========================================================================== */
main { position: relative; z-index: 2; overflow-x: clip; }
.sec { padding: clamp(3.4rem, 8vw, 7.5rem) var(--pad); position: relative; }
.sec.tight { padding-top: 0; }
.wrap { max-width: 1400px; margin: 0 auto; }
.dark { background: var(--void); color: var(--paper); }
.dark .lede { color: rgba(245,245,247,.7); }
.dark .eyebrow { color: rgba(245,245,247,.55); }

/* Reveal */
[data-rv] { opacity: 0; transform: translateY(26px); }
[data-rv].in { opacity: 1; transform: none; transition: opacity .75s var(--ease-out), transform .9s var(--spring); }
[data-rv="l"] { transform: translateX(-30px); }
[data-rv="r"] { transform: translateX(30px); }
[data-rv="s"] { transform: scale(.96); }
[data-rv].in { transform: none; }

/* Bild-Materialisierung */
.mat { display: block; overflow: hidden; position: relative; background: var(--sil-400); --tone: none; }
.mat img {
  transform: scale(1.06); opacity: .5;
  filter: var(--tone) blur(12px);
  transition: transform 1.1s var(--ease-out), filter .8s var(--ease-out), opacity .6s ease;
}
.mat.in img { transform: none; opacity: 1; filter: var(--tone); }

/* Graustufen-Ästhetik der Vorlage — Farbe kommt bei Interaktion */
.gs { --tone: grayscale(1) contrast(1.05); }
.gs.live { --tone: grayscale(0) contrast(1); }
@media (hover: hover) and (pointer: fine) {
  .gs:hover, .tile:hover .gs, .plate:hover .gs { --tone: grayscale(0) contrast(1); }
}

/* ==========================================================================
   HOME — Vorlage: Foto + gestapelte Kapitelwörter + Signatur
   ========================================================================== */
.hero { position: relative; min-height: 100svh; min-height: 100dvh; overflow: hidden; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg figure { position: absolute; inset: 0; opacity: 0; transition: opacity .85s var(--ease-out); }
.hero-bg figure.on { opacity: 1; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 62% 28%;
  filter: grayscale(1) contrast(1.06) brightness(1.02);
  transform: scale(1.04);
  transition: filter 1s var(--ease-out), transform 1.4s var(--ease-out);
}
.hero-bg figure.on img { transform: scale(1); }
.hero-bg.tinted figure.on img { filter: grayscale(.15) contrast(1.02); }
.hero-bg::after {                      /* Verlauf für Lesbarkeit links */
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(146,146,154,.96) 0%, rgba(152,152,160,.88) 22%, rgba(164,164,172,.42) 44%, rgba(180,180,188,.06) 62%, transparent 74%),
    linear-gradient(0deg, rgba(46,46,52,.5) 0%, rgba(80,80,88,.12) 16%, transparent 32%);
}

.hero-in { position: relative; z-index: 2; width: 100%; max-width: 1400px; margin: 0 auto; padding: calc(var(--bar) + 1.5rem) var(--pad) clamp(4.5rem, 9vw, 6rem); }

.hero-sig {
  position: absolute; z-index: 1; pointer-events: none;
  right: clamp(1.2rem, 5vw, 5.5rem); top: clamp(11vh, 15vh, 19vh);
  font-family: var(--script);
  font-size: clamp(3.8rem, 12.5vw, 12rem); line-height: .85;
  padding-right: .1em;
  color: var(--ink);
  opacity: 0; transform: translateY(24px);
  animation: sigIn 1.5s var(--ease-out) .35s forwards;
  mix-blend-mode: multiply;
}
@keyframes sigIn { to { opacity: .92; transform: none; } }

.hero-eyebrow { margin-bottom: clamp(1.2rem, 3vw, 2.2rem); }
.hero-eyebrow .eyebrow { color: var(--ink); text-shadow: 0 1px 10px rgba(238,238,242,.85), 0 0 2px rgba(238,238,242,.9); }

/* Der gestapelte Kapitel-Stack — Kern der Vorlage */
.stack { display: flex; flex-direction: column; align-items: flex-start; }
.stack a {
  position: relative; display: block;
  touch-action: manipulation;
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(3.05rem, 12.5vw, 8.2rem);
  line-height: .88; letter-spacing: -.03em;
  color: rgba(252,252,253,.94);
  text-shadow: 0 2px 34px rgba(40,40,46,.28);
  transition: color .42s var(--ease-out), transform .5s var(--spring), text-shadow .4s ease;
  will-change: transform;
}
.stack a .fill {
  position: absolute; inset: 0; color: var(--sec);
  clip-path: inset(0 100% 0 0);
  transition: clip-path .62s var(--spring);
  pointer-events: none;
}
.stack a:focus-visible { transform: translateX(clamp(6px, 1.2vw, 20px)); outline: none; }
.stack a:focus-visible .fill, .stack a.live .fill { clip-path: inset(0 0 0 0); }
.stack a.live { transform: translateX(clamp(6px, 1.2vw, 20px)); }
.stack a .idx {
  font-family: var(--ui); font-size: .55rem; font-weight: 700; letter-spacing: .22em;
  color: var(--ink-3); position: absolute; left: -2.4rem; top: .9em;
  opacity: 0; transition: opacity .4s ease;
}
.stack a.live .idx, .stack a:focus-visible .idx { opacity: 1; }
@media (hover: hover) and (pointer: fine) {
  .stack a:hover { transform: translateX(clamp(6px, 1.2vw, 20px)); }
  .stack a:hover .fill { clip-path: inset(0 0 0 0); }
  .stack a:hover .idx { opacity: 1; }
}

.hero-meta {
  position: absolute; z-index: 3; left: var(--pad); right: var(--pad); bottom: clamp(1.2rem, 3vw, 2.2rem);
  display: flex; gap: clamp(1rem, 3vw, 2.6rem); flex-wrap: wrap; align-items: center;
  font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #fff;
  text-shadow: 0 1px 12px rgba(20,20,24,.55), 0 0 2px rgba(20,20,24,.4);
}
.live-dot { display: inline-flex; align-items: center; gap: .5rem; }
.live-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #17a34a; animation: live2 2.4s ease-out infinite; }
@keyframes live2 { 0% { box-shadow: 0 0 0 0 rgba(23,163,74,.5); } 70%,100% { box-shadow: 0 0 0 8px rgba(23,163,74,0); } }

/* Kennzahlen */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hair); border-block: 1px solid var(--hair); }
.stat { background: transparent; padding: clamp(1.2rem, 3vw, 2.2rem) clamp(.6rem, 2vw, 1.4rem); position: relative; }
.stat b { display: block; font-family: var(--display); font-size: clamp(2rem, 5vw, 3.6rem); line-height: .9; letter-spacing: -.03em; }
.stat span { display: block; margin-top: .5rem; font-size: .58rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3); }
.stats-wrap { background: linear-gradient(180deg, transparent, rgba(255,255,255,.24)); }

/* ==========================================================================
   Sektions-Header (Vorlage 7: Titel bricht oben an)
   ========================================================================== */
.shead { position: relative; padding: calc(var(--bar) + clamp(1rem, 4vw, 3rem)) var(--pad) clamp(1.6rem, 4vw, 3rem); overflow: hidden; }
.shead h1 {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(3.6rem, 16.5vw, 15rem); line-height: .78; letter-spacing: -.04em;
  color: var(--accent);
  margin-left: -.02em;
}
.shead h1.outline { color: transparent; -webkit-text-stroke: 1.5px var(--accent); }
.shead .sub { margin-top: clamp(1rem, 2.5vw, 1.8rem); display: flex; gap: clamp(1rem,3vw,3rem); flex-wrap: wrap; align-items: flex-end; justify-content: space-between; }
.shead .facts { display: flex; gap: clamp(1rem, 3vw, 2.4rem); font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.shead .facts b { color: var(--accent); }

/* Zurück-Chip */
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  padding: .5rem .95rem; border-radius: 99px;
  background: rgba(255,255,255,.5);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6), 0 1px 3px rgba(0,0,0,.05);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform .3s var(--spring), background .3s ease;
}
.chip:hover { transform: translateX(-3px); background: rgba(255,255,255,.75); }
.chip:active { transform: scale(.96); }
.is-dark .chip { background: rgba(255,255,255,.1); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); }

/* ==========================================================================
   Collage (Vorlage 7)
   ========================================================================== */
.collage { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(.7rem, 1.8vw, 1.6rem); align-items: start; }
.tile { position: relative; display: block; }
.tile .mat { border-radius: 3px; box-shadow: 0 18px 40px -22px rgba(11,11,13,.5); }
.tile img { width: 100%; aspect-ratio: var(--ar, 3/4); object-fit: cover; }
.tile .cap {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding-top: .6rem; font-size: .56rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3);
}
.tile .cap b { font-family: var(--display); font-size: 1.05rem; letter-spacing: -.01em; color: var(--ink); font-weight: 400; }
@media (hover: hover) and (pointer: fine) { .tile:hover .cap b { color: var(--accent); } }
.tile .cap b { transition: color .35s ease; }

/* versetzte Anordnung */
.collage .tile:nth-child(8n+1) { grid-column: span 5; margin-top: 0; }
.collage .tile:nth-child(8n+2) { grid-column: span 4; margin-top: clamp(2rem, 7vw, 6rem); }
.collage .tile:nth-child(8n+3) { grid-column: span 3; margin-top: clamp(.5rem, 2vw, 1.6rem); }
.collage .tile:nth-child(8n+4) { grid-column: span 4; margin-top: clamp(-3rem, -4vw, -1rem); }
.collage .tile:nth-child(8n+5) { grid-column: span 3; margin-top: clamp(2rem, 6vw, 5rem); }
.collage .tile:nth-child(8n+6) { grid-column: span 5; margin-top: clamp(.5rem, 2vw, 1.5rem); }
.collage .tile:nth-child(8n+7) { grid-column: span 4; margin-top: clamp(-2rem, -3vw, 0rem); }
.collage .tile:nth-child(8n+8) { grid-column: span 4; margin-top: clamp(2rem, 5vw, 4rem); }
.collage .tile:nth-child(8n+1) { --ar: 4/5; }
.collage .tile:nth-child(8n+2) { --ar: 3/4; }
.collage .tile:nth-child(8n+3) { --ar: 2/3; }
.collage .tile:nth-child(8n+4) { --ar: 1/1; }
.collage .tile:nth-child(8n+5) { --ar: 2/3; }
.collage .tile:nth-child(8n+6) { --ar: 16/10; }
.collage .tile:nth-child(8n+7) { --ar: 3/4; }
.collage .tile:nth-child(8n+8) { --ar: 4/5; }

/* Serien-Galerie */
.plates { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(.8rem, 2.4vw, 2.6rem); }
.plate { position: relative; }
.plate .mat { cursor: zoom-in; border-radius: 2px; box-shadow: 0 22px 50px -28px rgba(11,11,13,.55); }
.plate figcaption { padding-top: .55rem; font-size: .54rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); display: flex; justify-content: space-between; gap: 1rem; }
.plates .plate:nth-child(6n+1) { grid-column: 1 / span 7; }
.plates .plate:nth-child(6n+2) { grid-column: 8 / span 5; margin-top: clamp(2rem, 8vw, 7rem); }
.plates .plate:nth-child(6n+3) { grid-column: 3 / span 5; margin-top: clamp(-2rem, -3vw, 0rem); }
.plates .plate:nth-child(6n+4) { grid-column: 8 / span 4; margin-top: clamp(1rem, 4vw, 3rem); }
.plates .plate:nth-child(6n+5) { grid-column: 2 / span 6; margin-top: clamp(1rem, 3vw, 2rem); }
.plates .plate:nth-child(6n+6) { grid-column: 8 / span 5; margin-top: clamp(-3rem, -5vw, -1rem); }

/* Nächste Serie */
.nextnav { border-top: 1px solid var(--hair); }
.nextnav a { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: clamp(1.8rem, 5vw, 3.6rem) var(--pad); transition: background .4s ease, color .4s ease; }
.nextnav a small { font-size: .58rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-3); display: block; margin-bottom: .4rem; }
.nextnav a b { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.8rem, 5.5vw, 3.4rem); line-height: .9; letter-spacing: -.03em; }
.nextnav a .arw { font-size: 1.6rem; transition: transform .45s var(--spring); }
.nextnav a:hover { background: var(--accent); color: #fff; }
.nextnav a:hover small { color: rgba(255,255,255,.65); }
.nextnav a:hover .arw { transform: translateX(10px); }

/* ==========================================================================
   Setcard
   ========================================================================== */
.sc-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.4rem, 4vw, 4rem); }
.sc-photo { grid-column: 1 / span 5; position: sticky; top: calc(var(--bar) + 1.2rem); align-self: start; }
.sc-photo .mat { border-radius: var(--r-md); box-shadow: 0 30px 60px -30px rgba(11,11,13,.55); }
.sc-data { grid-column: 6 / span 7; }
.sc-plate {
  margin-top: .9rem; padding: .85rem 1.1rem; border-radius: var(--r-sm);
  background: rgba(255,255,255,.45); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: .55rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3);
}
.mrow { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .78rem 0; border-bottom: 1px solid var(--hair-2); }
.mrow b { font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.mrow span { font-family: var(--display); font-size: clamp(1.25rem, 2.2vw, 1.85rem); letter-spacing: -.02em; }
.mrow span u { text-decoration: none; font-family: var(--ui); font-size: .58rem; font-weight: 600; letter-spacing: .12em; color: var(--ink-3); margin-left: .35rem; }
.m2 { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(1.5rem, 4vw, 3.4rem); }
.sc-sub { margin-top: clamp(2rem, 5vw, 3.4rem); display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; border-bottom: 2px solid var(--accent); padding-bottom: .6rem; }
.sc-sub h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 1.3rem; letter-spacing: -.02em; }

.digitals { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.5rem, 1.4vw, 1rem); }
.digitals .mat { border-radius: 6px; }
.digitals img { aspect-ratio: 3/4; object-fit: cover; cursor: zoom-in; }

/* ==========================================================================
   Video
   ========================================================================== */
.vids { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.5vw, 2rem); }
.vid {
  aspect-ratio: 16/9; border-radius: var(--r-md); overflow: hidden; position: relative;
  background: rgba(255,255,255,.34);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5), 0 18px 40px -26px rgba(11,11,13,.5);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: grid; place-items: center;
}
.vid video { width: 100%; height: 100%; object-fit: cover; }
.vid .soon { text-align: center; padding: 1.5rem; }
.vid .soon .ico { width: 54px; height: 54px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: #fff; box-shadow: 0 8px 22px -8px color-mix(in srgb, var(--accent) 70%, transparent); animation: breathe 3.4s ease-in-out infinite; }
@keyframes breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }
.vid .soon b { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); }
.vid .soon span { display: block; margin-top: .35rem; font-size: .8rem; color: var(--ink-3); }

/* ==========================================================================
   About
   ========================================================================== */
.split { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.4rem, 4vw, 4rem); align-items: center; }
.split .im { grid-column: 1 / span 5; }
.split .tx { grid-column: 7 / span 6; }
.split.rev .im { grid-column: 8 / span 5; order: 2; }
.split.rev .tx { grid-column: 1 / span 6; order: 1; }
.split h2 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.9rem, 4.6vw, 3.6rem); line-height: .92; letter-spacing: -.03em; margin: .9rem 0 1.1rem; }
.split .mat { border-radius: var(--r-md); box-shadow: 0 26px 56px -30px rgba(11,11,13,.5); }

.facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); border-top: 1px solid var(--hair); border-left: 1px solid var(--hair); margin-top: clamp(1.6rem, 4vw, 2.6rem); }
.facts-grid div { border-right: 1px solid var(--hair); border-bottom: 1px solid var(--hair); padding: 1.1rem 1rem; }
.facts-grid b { display: block; font-size: .55rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .4rem; }
.facts-grid span { font-size: 1rem; }

.words { display: flex; flex-wrap: wrap; gap: .4rem clamp(1rem, 3vw, 2.6rem); margin-top: 1.4rem; }
.words span { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.7rem, 5.4vw, 4rem); line-height: 1; letter-spacing: -.03em; }
.words span:nth-child(even) { color: var(--accent); }

.quote { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 3vw, 3rem); }
.quote .mk { grid-column: span 1; font-family: var(--display); font-size: clamp(3rem, 8vw, 6rem); line-height: .7; color: var(--accent); }
.quote p { grid-column: span 9; font-size: clamp(1.05rem, 2.2vw, 1.7rem); line-height: 1.5; }

/* ==========================================================================
   Booking
   ========================================================================== */
.bk { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.4rem, 4vw, 4rem); }
.bk aside { grid-column: 1 / span 4; }
.bk form { padding-bottom: 1rem; }
.bk form { grid-column: 6 / span 7; }
.f { position: relative; margin-bottom: 1.5rem; }
.f label { display: block; font-size: .58rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .5rem; }
.f label u { text-decoration: none; color: var(--accent); }
.f input, .f select, .f textarea {
  width: 100%; font: inherit; font-size: 1.02rem; color: var(--ink);
  padding: .82rem 1rem; border: none; border-radius: var(--r-sm);
  background: rgba(255,255,255,.5);
  box-shadow: inset 0 0 0 1px rgba(11,11,13,.1);
  transition: box-shadow .3s var(--ease-out), background .3s ease;
  -webkit-appearance: none; appearance: none;
}
.f select { background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%), linear-gradient(135deg, var(--ink-3) 50%, transparent 50%); background-position: calc(100% - 18px) 52%, calc(100% - 13px) 52%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; cursor: pointer; }
.f textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.f input:focus, .f select:focus, .f textarea:focus { outline: none; background: rgba(255,255,255,.78); box-shadow: inset 0 0 0 1.5px var(--accent), 0 0 0 4px color-mix(in srgb, var(--accent) 15%, transparent); }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(1rem, 3vw, 2rem); }
.hp { position: absolute; left: -9999px; opacity: 0; }
.msg { min-height: 1.5em; font-size: .78rem; font-weight: 600; letter-spacing: .04em; margin-top: 1rem; }
.msg.ok { color: #0B7A3B; } .msg.err { color: #C81E1E; }

.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: 1.02rem 1.9rem; border-radius: 99px; color: #fff;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 1px 1px rgba(255,255,255,.25) inset, 0 10px 26px -10px color-mix(in srgb, var(--accent) 65%, transparent);
  transition: transform .34s var(--spring), box-shadow .34s var(--spring), opacity .2s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.965); }
.btn[disabled] { opacity: .55; pointer-events: none; }
.btn.ghost { background: none; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--hair); }
.btn.ghost:hover { box-shadow: inset 0 0 0 1.5px var(--accent); color: var(--accent); }

.social { display: flex; flex-direction: column; gap: .1rem; margin-top: 1.6rem; }
.social a { display: inline-flex; align-items: center; gap: .6rem; padding: .55rem 0; font-size: 1rem; transition: color .3s, transform .35s var(--spring); }
.social a:hover { color: var(--accent); transform: translateX(4px); }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lb { position: fixed; inset: 0; z-index: 95; display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity .34s var(--ease-out); }
.lb::before { content: ""; position: absolute; inset: 0; background: rgba(8,8,10,.9); backdrop-filter: blur(26px); -webkit-backdrop-filter: blur(26px); }
.lb.on { opacity: 1; pointer-events: auto; }
.lb-stage { position: relative; z-index: 1; touch-action: pan-y; user-select: none; will-change: transform; }
.lb img { max-width: min(94vw, 1100px); max-height: 84svh; width: auto; border-radius: 4px; box-shadow: 0 40px 90px rgba(0,0,0,.6); pointer-events: none; }
.lb .x, .lb .nav { position: absolute; z-index: 2; color: #fff; }
.lb .x { top: max(1rem, env(safe-area-inset-top)); right: 1.1rem; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.14); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); font-size: 1.1rem; transition: transform .3s var(--spring), background .3s; }
.lb .x:hover { background: rgba(255,255,255,.26); } .lb .x:active { transform: scale(.9); }
.lb .nav { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.12); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); font-size: 1.4rem; transition: background .3s, transform .3s var(--spring); }
.lb .nav:hover { background: rgba(255,255,255,.24); }
.lb .nav:active { transform: translateY(-50%) scale(.9); }
.lb .prev { left: 1rem; } .lb .next { right: 1rem; }
.lb .count { position: absolute; bottom: max(1rem, env(safe-area-inset-bottom)); left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.75); font-size: .62rem; font-weight: 600; letter-spacing: .22em; }

/* ==========================================================================
   Footer
   ========================================================================== */
.foot { background: var(--void); color: var(--paper); padding: clamp(2.6rem, 6vw, 5rem) var(--pad) calc(1.6rem + 62px); position: relative; z-index: 2; overflow: hidden; }
.foot-name { display: block; cursor: pointer; font-family: var(--display); text-transform: uppercase; font-size: clamp(3rem, 13vw, 11rem); line-height: .84; letter-spacing: -.035em; color: transparent; -webkit-text-stroke: 1.2px rgba(245,245,247,.6); transition: color .7s var(--ease-out), -webkit-text-stroke-color .7s ease; }
.foot-name:active { transform: scale(.995); }
@media (hover: hover) and (pointer: fine) {
  .foot:hover .foot-name { color: var(--paper); -webkit-text-stroke-color: transparent; }
}
@media (hover: none) { .foot-name { color: rgba(245,245,247,.14); } }
.foot-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 1.6rem; margin-top: clamp(1.8rem, 5vw, 3rem); }
.foot-cols b { display: block; font-size: .55rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: rgba(245,245,247,.45); margin-bottom: .8rem; }
.foot-cols a, .foot-cols p { display: block; font-size: .875rem; color: rgba(245,245,247,.78); padding: .18rem 0; }
.foot-cols a { transition: color .3s, transform .35s var(--spring); }
.foot-cols a:hover { color: #fff; transform: translateX(3px); }
.foot-base { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: clamp(1.8rem, 4vw, 2.6rem); padding-top: 1.2rem; border-top: 1px solid rgba(245,245,247,.13); font-size: .56rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(245,245,247,.42); }
.foot-base a:hover { color: #fff; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1020px) {
  [data-rv="l"], [data-rv="r"] { transform: translateY(24px); }
  .sc-grid > *, .bk > * { grid-column: 1 / -1 !important; }
  .sc-photo { position: static; max-width: 460px; }
  .split .im, .split .tx, .split.rev .im, .split.rev .tx { grid-column: 1 / -1; }
  .split .im, .split.rev .im { order: 1; max-width: 440px; }
  .split .tx, .split.rev .tx { order: 2; }
  .plates .plate { grid-column: 1 / -1 !important; margin-top: 0 !important; }
  .collage .tile { grid-column: span 6 !important; margin-top: 0 !important; --ar: 3/4 !important; }
  .vids { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .quote .mk, .quote p { grid-column: 1 / -1; }
  .m2 { grid-template-columns: 1fr; }
  .hero-sig { top: auto; bottom: 20vh; opacity: .8; }
}
@media (max-width: 680px) {
  .seg { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .collage .tile { grid-column: 1 / -1 !important; }
  .digitals { grid-template-columns: repeat(2, 1fr); }
  .f2 { grid-template-columns: 1fr; }
  .direct { right: 50%; transform: translateX(50%); bottom: max(1rem, env(safe-area-inset-bottom)); }
  .direct:hover { transform: translateX(50%) translateY(-2px); }
  .direct:active { transform: translateX(50%) scale(.965); }
  .hero-meta { display: none; }
  .hero-bg img { object-position: 50% 20%; }
  .hero-sig { font-size: clamp(3rem, 14vw, 6rem); right: 1.4rem; bottom: 16vh; }
}

/* ==========================================================================
   Barrierefreiheit — reduzierte Bewegung / Transparenz / Kontrast
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .12s !important; }
  [data-rv] { opacity: 1 !important; transform: none !important; }
  .mat img { filter: none !important; transform: none !important; opacity: 1 !important; }
  .stack a:hover { transform: none; }
}
@media (prefers-reduced-transparency: reduce) {
  .bar::before, .seg, .menu-btn, .chip, .vid, .sc-plate { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; background: var(--paper) !important; }
  .veil { background: #0e0e11 !important; backdrop-filter: none !important; }
}
@media (prefers-contrast: more) {
  :root { --hair: rgba(11,11,13,.4); --ink-3: #3a3a42; }
  .f input, .f select, .f textarea { background: #fff; box-shadow: inset 0 0 0 1.5px var(--ink); }
}
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
