/* ==========================================================================
   LN-Design – Stylesheet
   Aufbau: 1 Schriften · 2 Tokens · 3 Basis · 4 Bausteine · 5 Header/Footer
           6 Startseite · 7 READ · 8 KNOW · 9 SEE · 10 Detailseiten
           11 Kontakt/Rechtliches · 12 Overlays · 13 Bewegung
   ========================================================================== */

/* 1 · Schriften (lokal, keine Verbindung zu Drittanbietern) ---------------- */
@font-face { font-family: 'Geomanist'; src: url('../fonts/Geomanist-Thin.woff2') format('woff2'); font-weight: 100; font-display: swap; }
@font-face { font-family: 'Geomanist'; src: url('../fonts/Geomanist-ExtraLight.woff2') format('woff2'); font-weight: 200; font-display: swap; }
@font-face { font-family: 'Geomanist'; src: url('../fonts/Geomanist-Light.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Geomanist'; src: url('../fonts/Geomanist-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Geomanist'; src: url('../fonts/Geomanist-Medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Geomanist'; src: url('../fonts/Geomanist-Book.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Geomanist'; src: url('../fonts/Geomanist-Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Geomanist'; src: url('../fonts/Geomanist-Black.woff2') format('woff2'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Geomanist'; src: url('../fonts/Geomanist-Ultra.woff2') format('woff2'); font-weight: 900; font-display: swap; }

/* 2 · Design-Tokens (Farben & Raster aus dem bisherigen Design) ------------ */
:root {
  --orange: #ffa500;
  --orange-deep: #ff7700;
  --bg: #f0f0f0;
  --panel: #f6f6f6;
  --grey: #e8e8e8;
  --grey-2: #dbdbdb;
  --line: #d1d1d1;
  --ink: #111111;
  --text: #3c3c3c;
  --muted: #777777;
  --soft: #a8a8a8;
  --white: #ffffff;

  --wrap: 1142px;
  --inner: 1015px;
  --gutter: clamp(16px, 4vw, 40px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 150px;
}

/* 3 · Basis ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Geomanist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
strong { font-weight: 600; }
::selection { background: var(--orange); color: var(--white); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; background: var(--ink); color: var(--white); padding: 8px 16px; }
.skip-link:focus { top: 16px; }

.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.inner { width: min(var(--inner), 100% - 2 * var(--gutter)); margin-inline: auto; }
.page { background: var(--panel); padding-block: 40px 100px; }

/* 4 · Bausteine ------------------------------------------------------------ */
.kicker {
  font-size: 10px; font-weight: 500; line-height: 1.6;
  letter-spacing: 5.5px; text-transform: uppercase; color: var(--soft);
}
.display {
  font-weight: 800; font-size: clamp(22px, 2.3vw, 27px); line-height: 1.2;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink);
}
.display--xl { font-size: clamp(32px, 4vw, 44px); letter-spacing: 3px; line-height: 1.1; }
.copy { font-size: 13.5px; line-height: 2; font-weight: 300; }
.copy p + p, .copy p + ul, .copy ul + p { margin-top: 1em; }
.copy a { color: var(--orange); border-bottom: 1px solid currentColor; }
.o { color: var(--orange); }

.hline { display: block; width: 50px; height: 1px; background: var(--orange); transform-origin: left; }
.hline--right { margin-left: auto; transform-origin: right; }
.vline { position: relative; padding-left: 20px; }
.vline::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px;
  background: var(--orange); transform-origin: top; transform: scaleY(var(--line-progress, 1));
}
.lead-row { display: grid; grid-template-columns: 50px 1fr; gap: 12px; align-items: start; }
.lead-row .hline { margin-top: 13px; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 22px; margin-top: 14px;
  font-size: 10px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase;
  color: #808080; transition: color .3s;
}
.arrow {
  position: relative; display: inline-block; width: 15px; height: 1px;
  background: var(--orange); transition: width .5s var(--ease);
}
.arrow::after {
  content: ""; position: absolute; right: -9px; top: -5px;
  border-style: solid; border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent var(--orange);
}
.arrow-link:hover { color: var(--orange); }
.arrow-link:hover .arrow { width: 40px; }
.arrow-link--right { flex-direction: row; }

.circle-btn {
  display: inline-grid; place-items: center; width: 38px; height: 38px;
  border: 1px solid var(--orange); border-radius: 50%; color: var(--orange);
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.circle-btn:hover { background: var(--orange); color: var(--white); }
.circle-btn:active { transform: scale(.92); }

.more { display: flex; justify-content: center; padding-top: 70px; }
.more__btn {
  display: inline-flex; align-items: center; gap: 24px; padding: 14px 34px;
  border: 1px solid var(--orange); font-size: 10px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase; color: var(--text);
  transition: background .4s var(--ease), color .4s;
}
.more__btn:hover { background: var(--orange); color: var(--white); }
.more__btn:hover .arrow, .more__btn:hover .arrow::after { background: var(--white); border-left-color: var(--white); }
.more__btn[aria-busy="true"] { opacity: .5; pointer-events: none; }
.empty { padding: 60px 0; text-align: center; color: var(--muted); }

/* 5 · Header & Footer ------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 80;
  transition: transform .6s var(--ease), background-color .4s;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 56px 36px; transition: padding .5s var(--ease);
}
.site-header.is-scrolled { background: rgba(240, 240, 240, .9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.site-header.is-scrolled .site-header__inner { padding-block: 16px; }
.site-header.is-hidden { transform: translateY(-100%); }
.logo img { width: clamp(150px, 17vw, 200px); height: auto; }

.nav { display: flex; gap: clamp(28px, 5vw, 70px); }
.nav a {
  position: relative; display: block; padding-block: 6px;
  font-size: 13px; font-weight: 600; text-transform: uppercase; color: var(--text);
  transition: color .3s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--orange); transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--orange); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle { display: none; position: relative; z-index: 2; width: 44px; height: 44px; }
.menu-toggle__lines, .menu-toggle__lines::before, .menu-toggle__lines::after {
  position: absolute; left: 10px; width: 24px; height: 2px; background: var(--ink);
  transition: transform .5s var(--ease), background .3s, top .3s;
}
.menu-toggle__lines { top: 21px; }
.menu-toggle__lines::before, .menu-toggle__lines::after { content: ""; left: 0; }
.menu-toggle__lines::before { top: -7px; }
.menu-toggle__lines::after { top: 7px; width: 14px; background: var(--orange); }

.site-footer { background: var(--grey); margin-bottom: 0; }
.site-footer__inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px 40px;
  padding: 30px 40px; font-size: 10.5px; line-height: 1.6; color: #808080;
}
.site-footer__logo img { width: 170px; }
.site-footer__divider { width: 1px; height: 40px; background: #9a9a9a; }
.site-footer__mail {
  border: 1px solid var(--orange); padding: 5px 40px; font-size: 14px; color: #808080;
  transition: color .4s, background .4s;
}
.site-footer__mail:hover { background: var(--orange); color: var(--white); }
.site-footer__legal a:hover { color: var(--orange); }

/* 6 · Startseite ----------------------------------------------------------- */
.hero { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 62px; }
.hero__stage { position: relative; height: clamp(440px, 55vw, 620px); overflow: hidden; background: var(--grey); }
.hero__slide { position: absolute; inset: 0; visibility: hidden; }
.hero__slide.is-active { visibility: visible; z-index: 1; }
.hero__slide.is-leaving { visibility: visible; z-index: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__caption { position: absolute; left: 8%; top: 53%; right: 8%; }
.hero__kicker { font-size: 10px; font-weight: 500; letter-spacing: 1px; color: #888; }
.hero__title {
  font-size: clamp(30px, 4.3vw, 46px); line-height: 1.02; font-weight: 700;
  text-transform: uppercase; color: var(--orange);
}
.hero__title .line-mask, .hero__kicker .line-mask { display: block; overflow: hidden; padding-top: .16em; margin-top: -.16em; }
.hero__line, .hero__bar { position: absolute; z-index: 3; left: 8%; background: var(--orange); pointer-events: none; }
.hero__line { top: 73%; width: 85%; height: 1px; transform-origin: left; }
.hero__bar { top: calc(73% - 9px); width: 40%; height: 10px; transform-origin: left; overflow: hidden; }
.hero__progress { position: absolute; inset: 0; background: var(--orange-deep); transform: scaleX(0); transform-origin: left; }
.hero__dots { position: absolute; z-index: 3; top: 5%; right: calc(2% + 140px); display: flex; gap: 6px; }
.hero__dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(0, 0, 0, .25); transition: background .4s, transform .4s; }
.hero__dots button[aria-selected="true"] { background: var(--orange); transform: scale(1.2); }
.hero__arrow { position: absolute; z-index: 3; top: calc(5% + 4px); right: 2%; width: 120px; height: 1px; background: var(--orange); transform-origin: right; }
.hero__arrow::after {
  content: ""; position: absolute; right: -2px; top: -7px;
  border-style: solid; border-width: 7px 0 7px 15px; border-color: transparent transparent transparent var(--orange-deep);
}
.hero__nav { position: absolute; z-index: 3; left: 8%; top: 79%; display: flex; gap: 10px; }
.hero__side { display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding-block: 40px 20px; }
.side-tab {
  writing-mode: vertical-rl; transform: rotate(180deg);
  padding: 26px 21px; font-size: 12px; font-weight: 400; color: #8d8d8d;
  transition: color .4s;
}
.side-tab:hover { color: var(--orange); }
.hero__scroll img { width: 33px; }

.page--home { position: relative; z-index: 1; margin-top: -70px; padding-top: 130px; }

.intro { display: grid; grid-template-columns: 5fr 6fr; gap: 40px; align-items: center; }
.intro__text { position: relative; padding: 30px 0 30px 40px; }
.intro__panel { position: absolute; inset: 0 25% 0 0; background: var(--grey); z-index: -1; }
.intro__text .display { margin-block: 2px 14px; }
.intro__media img { width: 100%; aspect-ratio: 1380 / 771; object-fit: cover; }

/* News-Beitrag */
.news { display: flex; flex-direction: column; gap: 110px; padding-top: 110px; }
.feature {
  position: relative; display: grid;
  grid-template-columns: 56% minmax(0, 22%) minmax(0, 1fr); column-gap: 20px;
  min-height: 320px;
}
.feature__panel { position: absolute; left: 0; top: 0; bottom: 0; width: 75%; background: var(--grey); z-index: 0; }
.feature__media { position: relative; z-index: 1; align-self: stretch; min-height: 320px; overflow: hidden; }
.feature__media img, .feature__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.feature__media:hover img { transform: scale(1.04); }
.feature__head { position: relative; z-index: 1; padding-top: 30px; text-align: right; }
.feature__head .display { margin-top: 2px; }
.feature__date { display: block; margin-top: 10px; font-size: 10px; letter-spacing: 3px; color: var(--soft); }
.feature__body { position: relative; z-index: 1; margin-top: 30px; align-self: start; }

/* SEE-Streifen */
.strip { display: grid; grid-template-columns: 29% 1fr; background: var(--grey); margin-top: 110px; }
.strip__panel { padding: 40px 30px 36px 40px; align-self: center; }
.strip__panel .display { margin-top: 2px; }
.strip__panel .lead-row { grid-template-columns: 80px 1fr; font-size: 11px; line-height: 1.6; margin-top: 8px; }
.strip__panel .lead-row .hline { width: 80px; margin-top: 8px; }
.strip__items { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip__item { position: relative; overflow: hidden; aspect-ratio: 1; }
.strip__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .6s; }
.strip__label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .65)); color: var(--white);
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  transform: translateY(100%); transition: transform .6s var(--ease);
}
.strip__item:hover img { transform: scale(1.08); }
.strip__item:hover .strip__label { transform: none; }

/* READ-Teaser */
.teaser { display: grid; grid-template-columns: 60% 1fr; gap: 40px; margin-top: 110px; align-items: center; }
.teaser__media { position: relative; padding-right: 22%; }
.teaser__panel { position: absolute; inset: 0 0 0 0; background: var(--grey); z-index: 0; }
.teaser__media img { position: relative; z-index: 1; width: 100%; aspect-ratio: 624 / 420; object-fit: cover; }
.teaser__text { text-align: right; }
.teaser__text .hline { width: 80px; margin-block: 10px 16px; }
.teaser__text .arrow-link { justify-content: flex-end; }

/* 7 · READ ------------------------------------------------------------------ */
.about-wrap { container-type: inline-size; }
.about {
  position: relative; display: grid;
  grid-template-columns: 46.5% 26.5% 1fr;
  grid-template-rows: calc(100cqi * 725 / 1289) auto;
}
.about__visual { grid-column: 1 / -1; grid-row: 1; }
.about__visual img { width: 100%; height: 100%; object-fit: cover; }
.about__card {
  grid-column: 2; grid-row: 1 / 3; align-self: start; z-index: 2;
  margin-top: -60px; padding: 22px 22px 30px; background: var(--panel);
  font-size: 12px; line-height: 1.7; color: #7a7a7a;
}
.about__title {
  margin-block: 6px 14px; font-size: clamp(22px, 2.3vw, 30px); line-height: 1.02;
  font-weight: 700; text-transform: uppercase; color: var(--orange);
}
.about__lead { margin-block: 14px 12px; font-size: 13px; line-height: 1.75; font-weight: 400; color: var(--ink); }
.about__text { font-size: 12.5px; line-height: 1.75; font-weight: 400; color: var(--muted); }
.about__ps { margin-top: 18px; font-style: italic; }
.motivations { display: flex; justify-content: space-between; gap: 10px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--grey-2); }
.motivations li { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; }
.motivations img { width: 52px; height: 52px; transition: transform .6s var(--ease); }
.motivations li:hover img { transform: rotate(-8deg) scale(1.1); }
.about__social {
  grid-column: 3; grid-row: 1; justify-self: end; align-self: center; z-index: 2;
  margin-right: -20px; width: 40px; padding-block: 6px 14px;
  display: flex; flex-direction: column; align-items: center;
  background: #eaeaea; border: 1px solid #f2f2f2;
}
.social-icon { width: 40px; height: 40px; background: center / 20px no-repeat; transition: transform .4s var(--ease); }
.social-icon:hover { transform: scale(1.15); }
.social-icon--patreon { background-image: url('../img/social/patreon.svg'); }
.social-icon--patreon:hover { background-image: url('../img/social/patreon-orange.svg'); }
.social-icon--instagram { background-image: url('../img/social/instagram-sketched.svg'); }
.social-icon--instagram:hover { background-image: url('../img/social/instagram-sketched-orange.svg'); }
.social-icon--behance { background-image: url('../img/social/behance-network.svg'); }
.social-icon--behance:hover { background-image: url('../img/social/behance-network-orange.svg'); }
.about__stalk { writing-mode: vertical-rl; transform: rotate(180deg); margin-top: 10px; font-size: 10px; font-weight: 500; letter-spacing: 8px; text-transform: uppercase; color: #969696; }

.about__career { grid-column: 1; grid-row: 2; align-self: start; padding: 34px 40px 40px 4%; }
.career__list { position: relative; display: grid; margin-block: 8px 16px; }
.career__item { grid-area: 1 / 1; display: flex; flex-direction: column; opacity: 0; visibility: hidden; }
.career__item.is-active { opacity: 1; visibility: visible; }
.career__company { font-size: 15pt; font-weight: 700; line-height: 1.2; text-transform: uppercase; color: var(--orange); }
.career__role { font-size: 12px; font-style: oblique; font-weight: 400; color: #888; }
.career__period { font-size: 11px; letter-spacing: 1px; color: #888; }
.career__ui { display: flex; align-items: center; gap: 14px; }
.career__count { min-width: 60px; text-align: center; font-size: 11px; letter-spacing: 3px; color: var(--soft); }

.page--read { padding-top: 80px; }
.ysk { position: relative; overflow: hidden; min-height: 640px; display: grid; place-items: center; }
.ysk__bg { position: absolute; inset: -12% 0; }
.ysk__bg img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.ysk__box {
  position: relative; width: min(75%, 860px); display: grid;
  grid-template-columns: 35% 1px 1fr; gap: 0 40px; padding: 50px;
  background: #eaeaea;
}
.ysk__text { text-align: right; }
.ysk__title { font-size: clamp(34px, 4vw, 48px); line-height: .9; font-weight: 700; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.ysk__text .copy { font-size: 13px; line-height: 1.75; }
.ysk__line { background: var(--orange); transform-origin: top; }
.ysk__icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-content: center; }
.ysk__icons li { display: grid; place-items: center; gap: 4px; }
.ysk__icons img { width: 64px; height: 64px; transition: transform .6s var(--ease); }
.ysk__icons li:hover img { transform: translateY(-6px) rotate(-6deg); }
.ysk__icons span { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); opacity: 0; transition: opacity .3s; }
.ysk__icons li:hover span { opacity: 1; }

.skills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px 5%; padding-top: 90px; }
.skill__value { font-size: 14pt; font-weight: 500; color: var(--ink); }
.skill__bar { display: block; height: 4px; margin-block: 6px 12px; background: var(--grey-2); border-radius: 10px; overflow: hidden; }
.skill__fill { display: block; height: 100%; width: var(--value); background: var(--orange); transform-origin: left; }
.skill__title { font-size: 14pt; font-weight: 500; text-transform: uppercase; color: var(--ink); }
.skill .copy { margin-top: 8px; color: var(--muted); }
.skill--claim { display: flex; align-items: center; gap: 24px; }
.plus { position: relative; flex: none; width: 60px; height: 60px; border-radius: 50%; background: #000; animation: pulse 1.2s ease-in-out infinite alternate; }
.plus::before, .plus::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--orange); transform: translate(-50%, -50%); }
.plus::before { width: 26px; height: 2px; }
.plus::after { width: 2px; height: 26px; }
@keyframes pulse { from { box-shadow: 0 0 0 0 #515151; } to { box-shadow: 0 0 0 10px #515151; } }
.skill__claim { font-size: clamp(28px, 3.2vw, 40pt); font-weight: 300; line-height: .95; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); }

.page--read .strip { width: min(var(--wrap), 100%); }
.partners { display: grid; grid-template-columns: 35% 1fr; gap: 50px; padding-top: 100px; align-items: center; }
.partners__intro { text-align: right; }
.partners__title { font-size: clamp(26px, 3vw, 32pt); line-height: 1.05; font-weight: 500; text-transform: uppercase; color: var(--orange); }
.partners__intro .hline { width: 60px; margin-block: 12px; }
.partners__intro p { font-size: 13px; }
.partners__logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.partners__logos li { aspect-ratio: 1; display: grid; place-items: center; }
.partners__logos img { width: 100%; filter: grayscale(1); opacity: .75; transition: filter .5s, opacity .5s, transform .5s var(--ease); }
.partners__logos li:hover img { filter: none; opacity: 1; transform: scale(1.05); }

/* 8 · KNOW ------------------------------------------------------------------ */
.know-hero { position: relative; display: grid; grid-template-columns: 27% 1fr; align-items: center; min-height: 580px; padding-block: 50px; background: var(--panel); }
.know-hero__panel { position: absolute; left: 15%; right: 0; top: 50px; bottom: 0; background: var(--grey); }
.know-hero__text { position: relative; z-index: 2; padding-left: 5%; }
.know-hero__text .display { margin-block: 2px 16px; white-space: nowrap; }
.know-hero__text .copy { max-width: 240px; }
.know-hero__media { position: relative; z-index: 1; margin: 50px 4% 50px 3%; overflow: hidden; }
.know-hero__media img { width: 100%; aspect-ratio: 1380 / 771; object-fit: cover; }
.page--know { padding-top: 0; }

/* 9 · SEE (Galerie mit Zeitleiste) ----------------------------------------- */
.gallery-page { background: var(--white); padding-bottom: 80px; }
.see-head { padding: 60px 40px 40px 110px; max-width: 760px; }
.see-head .display { margin-block: 2px 16px; }
.gallery { display: grid; grid-template-columns: 90px 1fr; padding-right: 20px; container-type: inline-size; }

.rail { position: relative; }
.rail__sticky { position: sticky; top: 38vh; display: flex; justify-content: center; padding-bottom: 40px; }
.rail__btn { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 8px; }
.rail__line { width: 1px; height: 35px; background: var(--orange); transition: height .5s var(--ease); }
.rail__btn:hover .rail__line { height: 55px; }
.rail__date { writing-mode: vertical-rl; transform: rotate(180deg); display: flex; align-items: center; gap: 12px; overflow: hidden; }
.rail__year { display: block; font-size: 26px; font-weight: 800; letter-spacing: 2px; color: var(--ink); line-height: 1; }
.rail__month { display: block; font-size: 11px; font-weight: 600; letter-spacing: 3px; color: var(--orange); line-height: 1; }
.rail__years {
  position: absolute; left: 70px; top: 0; z-index: 20; min-width: 150px; padding: 10px 0;
  background: var(--ink); box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}
.rail__years button { display: flex; width: 100%; justify-content: space-between; gap: 20px; padding: 6px 20px; color: var(--white); font-weight: 600; letter-spacing: 2px; transition: color .3s, background .3s; }
.rail__years button:hover, .rail__years button[aria-current="true"] { color: var(--orange); background: rgba(255, 255, 255, .06); }
.rail__years small { color: var(--soft); font-weight: 300; }

/* Ein durchgehendes Raster; jedes Jahr beginnt mit einer eigenen Jahres-Kachel.
   see.js ordnet die Kacheln lückenarm und in zeitlicher Reihenfolge an. */
.gallery__groups {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: calc((100cqi - 140px) / 4); grid-auto-flow: dense; gap: 10px;
}
.year, .tiles { display: contents; }
.year__head {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px;
  padding: clamp(14px, 2cqi, 24px); background: var(--grey); overflow: hidden;
}
.year__head::before {
  content: attr(data-year); position: absolute; right: -.08em; top: -.22em;
  font-size: clamp(90px, 16cqi, 190px); font-weight: 900; line-height: 1; letter-spacing: -2px;
  color: transparent; -webkit-text-stroke: 1px rgba(0, 0, 0, .07); pointer-events: none;
}
.year__num { position: relative; font-size: clamp(34px, 5cqi, 60px); font-weight: 800; line-height: .9; letter-spacing: 1px; color: var(--ink); }
.year__line { position: relative; display: block; width: 50px; height: 1px; background: var(--orange); transform-origin: left; }
.year__count { position: relative; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }
.tile { position: relative; overflow: hidden; background: var(--grey); isolation: isolate; }
.tile--w2 { grid-column: span 2; }
.tile--h2 { grid-row: span 2; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter .8s; }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(17, 17, 17, .75)); opacity: 0; transition: opacity .6s var(--ease); }
.tile__info { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1; color: var(--white); transform: translateY(20px); opacity: 0; transition: transform .6s var(--ease), opacity .6s; }
.tile__meta { display: block; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); }
.tile__title { display: block; font-size: 17px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.2; }
.tile:hover img, .tile:focus-visible img { transform: scale(1.07); }
.tile:hover::after, .tile:focus-visible::after { opacity: 1; }
.tile:hover .tile__info, .tile:focus-visible .tile__info { transform: none; opacity: 1; }

.gallery__status { display: flex; flex-direction: column; align-items: center; gap: 20px; padding-top: 60px; }
.gallery__sentinel { width: 100%; height: 1px; }
.gallery__end { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--soft); }

/* 10 · Projekt- und Tutorialseiten ----------------------------------------- */
.detail { background: var(--white); padding: 50px 0 20px; }
.detail__head { display: grid; grid-template-columns: 1fr 22%; gap: 20px 50px; padding: 0 7% 50px; }
.detail-icons { display: flex; gap: 30px; }
.detail__head > .detail-icons { grid-column: 1 / -1; justify-self: end; }
.detail-icons img { width: 28px; }
.detail-icons__grid:hover img { animation: heartbeat 1s ease-in-out infinite; }
.detail-icons__prev:hover img { animation: nudge-left .5s ease-in-out infinite alternate; }
.detail-icons__next:hover img { animation: nudge-right .5s ease-in-out infinite alternate; }
@keyframes heartbeat { 50% { transform: scale(1.2); } }
@keyframes nudge-left { to { transform: translateX(-5px); } }
@keyframes nudge-right { to { transform: translateX(5px); } }
/* Kopf wie auf der bisherigen Seite: fetter Titel, gut lesbarer Einleitungstext, Info-Spalte rechts */
.detail__title { font-size: clamp(26px, 2.6vw, 34px); font-weight: 700; line-height: 1.2; color: var(--ink); margin-block: 0 12px; }
.detail__subtitle { font-size: 15px; line-height: 2.65; font-weight: 400; color: #5f5f5f; max-width: 600px; }
.detail__meta { align-self: start; margin-top: 50px; padding: 15px 0 15px 40px; border-left: 1px solid lightgray; font-size: 13px; line-height: 31px; color: #b5b5b5; }

.blocks { display: flex; flex-direction: column; gap: 70px; }
.block-image { text-align: center; }
.block-image--contained { width: 90%; margin-inline: auto; }
.block-image--narrow { width: min(55%, 640px); margin-inline: auto; }
.block-image--full { width: 100%; }
.block-image img { width: auto; max-width: 100%; margin-inline: auto; }
.block-image video { width: 100%; }
.block-image figcaption { margin-top: 10px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--soft); }
.block-pair { width: 90%; margin-inline: auto; display: flex; gap: 30px; align-items: flex-start; }
.block-pair figure { min-width: 0; }
.block-pair img, .block-pair video { width: 100%; height: auto; }
.block-text { width: min(80%, 820px); margin-inline: auto; padding-bottom: 50px; border-bottom: 1px solid var(--grey-2); text-align: center; }
.block-text .copy { font-size: 13.5px; font-weight: 400; color: #8f8f8f; }
.block-text--quote .copy { font-size: clamp(18px, 2vw, 23px); line-height: 1.7; font-weight: 200; color: var(--text); }
.block-text--quote { border-bottom: 0; position: relative; padding-top: 40px; }
.block-text--quote::before { content: ""; position: absolute; left: 50%; top: 0; width: 1px; height: 28px; background: var(--orange); }
[data-zoom] { cursor: zoom-in; }

.block-slider { width: 90%; margin-inline: auto; }
.slider__viewport { overflow: hidden; touch-action: pan-y; cursor: grab; }
.slider__viewport:active { cursor: grabbing; }
.slider__track { display: flex; will-change: transform; }
.slider__slide { flex: 0 0 100%; }
.slider__slide img, .slider__slide video { width: 100%; pointer-events: none; user-select: none; }
.slider__ui { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.slider__dots { display: flex; gap: 6px; margin-left: 10px; }
.slider__dots button { width: 10px; height: 10px; border-radius: 50%; background: var(--grey-2); transition: background .3s, transform .3s; }
.slider__dots button[aria-current="true"] { background: var(--orange); transform: scale(1.2); }
.slider__count { margin-left: auto; font-size: 11px; letter-spacing: 3px; color: var(--soft); }

.block-step { width: 90%; margin-inline: auto; display: grid; grid-template-columns: 30% 1fr; gap: 50px; align-items: start; }
.step__head { position: sticky; top: 110px; }
.step__num { display: block; font-size: 11px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.step__head .display { margin-bottom: 16px; }
.step__media { display: grid; gap: 20px; }
.step__media--2 { grid-template-columns: 1fr 1fr; }
.step__media img, .step__media video { width: 100%; }

.detail__outro { display: flex; align-items: center; gap: 30px; padding: 90px 5% 50px; }
.detail__outro-line { flex: 1; height: 1px; background: grey; transform-origin: left; }
.detail__outro p { font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }

/* 11 · Kontakt, Rechtliches, 404 ------------------------------------------- */
.contact { position: relative; display: grid; grid-template-columns: 42% 1fr; align-items: center; gap: 40px; padding: 60px 0 60px 5%; min-height: 560px; }
.contact__panel { position: absolute; left: 0; top: 0; bottom: 0; width: 62%; background: var(--grey); z-index: -1; }
.contact__text .display { margin-block: 2px 20px; }
.mail-box {
  display: inline-block; margin-top: 34px; padding: 12px 40px;
  border: 1px solid var(--orange); font-size: clamp(16px, 2vw, 22px); color: var(--text);
  transition: background .4s var(--ease), color .4s;
}
.mail-box:hover { background: var(--orange); color: var(--white); }
.contact__media { overflow: hidden; }
.contact__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.contact-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-top: 40px; }
.contact-info p:not(.kicker) { font-size: 14px; }
.contact-info__socials .arrow-link { margin-top: 6px; }

.legal { background: var(--white); padding: 70px 0 90px; }
.legal__inner { width: min(760px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.legal__inner .display { margin-block: 4px 40px; }
.legal__text { font-size: 14px; line-height: 1.85; }
.legal__text h2 { margin-block: 42px 10px; font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--ink); }
.legal__text h2::before { content: ""; display: inline-block; width: 30px; height: 1px; margin-right: 14px; vertical-align: middle; background: var(--orange); }
.legal__text h3 { margin-block: 24px 6px; font-size: 14px; font-weight: 600; color: var(--ink); }
.legal__text p + p, .legal__text ul { margin-top: .8em; }
.legal__text ul { padding-left: 20px; list-style: disc; }
.legal__text a { color: var(--orange-deep); border-bottom: 1px solid currentColor; word-break: break-word; }
.legal__updated { margin-top: 50px; font-size: 11px; letter-spacing: 2px; color: var(--soft); }

.notfound { background: var(--panel); padding: 120px 8%; min-height: 60vh; }
.notfound .display { margin-block: 4px 20px; }

/* 12 · Overlays: Seitenübergang & Lightbox --------------------------------- */
.curtain { position: fixed; inset: 0; z-index: 200; pointer-events: none; background: var(--bg); animation: curtain-out .8s .15s var(--ease) forwards; }
.curtain__bar { position: absolute; left: 0; top: 50%; width: 100%; height: 2px; background: var(--orange); transform-origin: left; animation: bar-out .8s var(--ease) forwards; }
@keyframes curtain-out { to { transform: translateY(-100%); } }
@keyframes bar-out { from { transform: scaleX(0); } 60% { transform: scaleX(1); } to { transform: scaleX(1); opacity: 0; } }
.is-leaving .curtain { animation: curtain-in .55s var(--ease) forwards; transform: translateY(100%); }
.is-leaving .curtain__bar { animation: none; transform: scaleX(1); opacity: 1; }
@keyframes curtain-in { from { transform: translateY(100%); } to { transform: none; } }

.lightbox { position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 4vmin; background: rgba(17, 17, 17, .94); cursor: zoom-out; }
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: 100%; max-height: 92vh; width: auto; object-fit: contain; }
.lightbox__close { position: absolute; top: 14px; right: 20px; font-size: 40px; font-weight: 200; line-height: 1; color: var(--white); }
.lightbox__close:hover { color: var(--orange); }

/* 13 · Bewegung – Startzustände nur mit JS & ohne "Bewegung reduzieren" ---- */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal]:not(.is-in) { opacity: 0; transform: translateY(26px); }
  .js [data-reveal="media"]:not(.is-in) { opacity: 1; transform: none; clip-path: inset(0 0 100% 0); }
  .js [data-reveal="media"]:not(.is-in) img, .js [data-reveal="media"]:not(.is-in) video { transform: scale(1.18); }
  .js [data-line]:not(.is-in) { transform: scaleX(0); }
  .js [data-line="y"]:not(.is-in) { transform: scaleY(0); }
  .js .vline:not(.is-in) { --line-progress: 0; }
  .js .skill:not(.is-in) .skill__fill { transform: scaleX(0); }
  .js [data-split]:not(.is-split) { opacity: 0; }
  .line-mask { display: block; overflow: hidden; padding: .16em 0 .06em; margin: -.16em 0 -.06em; }
  .line-mask > span { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .curtain { display: none; }
}

/* Responsive --------------------------------------------------------------- */
@media (max-width: 1100px) {
  .feature { grid-template-columns: 50% minmax(0, 24%) minmax(0, 1fr); }
  .strip { grid-template-columns: 1fr; }
  .detail__head { grid-template-columns: 1fr; }
  .detail__meta { padding: 0 0 0 20px; }
}

@media (max-width: 860px) {
  :root { --header-h: 80px; }
  .site-header__inner { padding-block: 22px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed; inset: 0; z-index: 1; flex-direction: column; justify-content: center; gap: 4px;
    padding: 0 var(--gutter); background: var(--ink);
    clip-path: inset(0 0 100% 0); visibility: hidden;
    transition: clip-path .8s var(--ease), visibility 0s .8s;
  }
  .nav a { font-size: clamp(38px, 12vw, 64px); font-weight: 800; line-height: 1.15; color: var(--white); }
  .nav a::after { height: 3px; bottom: 8px; }
  .nav a > span { display: inline-block; transform: translateY(40px); opacity: 0; transition: transform .7s var(--ease), opacity .7s; }
  .menu-open .nav { clip-path: inset(0); visibility: visible; transition: clip-path .8s var(--ease), visibility 0s; }
  .menu-open .nav a > span { transform: none; opacity: 1; }
  .menu-open .nav a:nth-child(2) > span { transition-delay: .06s; }
  .menu-open .nav a:nth-child(3) > span { transition-delay: .12s; }
  .menu-open .nav a:nth-child(4) > span { transition-delay: .18s; }
  .menu-open .nav a:nth-child(5) > span { transition-delay: .24s; }
  .menu-open .menu-toggle__lines { background: transparent; }
  .menu-open .menu-toggle__lines::before { top: 0; transform: rotate(45deg); background: var(--white); }
  .menu-open .menu-toggle__lines::after { top: 0; width: 24px; transform: rotate(-45deg); }
  .menu-open .site-header { background: transparent; backdrop-filter: none; transform: none; }

  .hero { grid-template-columns: 1fr; }
  .hero__stage { height: min(78vh, 560px); }
  .hero__side { flex-direction: row; justify-content: flex-start; gap: 10px; padding: 0; }
  .side-tab { writing-mode: horizontal-tb; transform: none; padding: 14px 10px; }
  .hero__scroll { display: none; }
  .hero__caption { top: 50%; }
  .hero__dots { right: auto; left: 8%; }
  .hero__arrow { width: 70px; }

  .page--home { margin-top: 0; padding-top: 50px; }
  .intro, .teaser, .partners, .contact { grid-template-columns: 1fr; }
  .intro__text { padding: 30px 20px; }
  .intro__panel { right: 0; }

  .news { gap: 80px; padding-top: 80px; }
  .feature { grid-template-columns: 1fr; min-height: 0; }
  .feature__panel { width: auto; right: 0; bottom: auto; height: 70%; left: 20px; }
  .feature__media { margin-right: 20px; min-height: 0; aspect-ratio: 16 / 10; }
  .feature__head { text-align: left; padding-top: 24px; }
  .feature__body { margin-top: 16px; }
  .strip__items { grid-template-columns: repeat(2, 1fr); }
  .teaser__media { padding-right: 12%; }
  .teaser__text { text-align: left; }
  .teaser__text .hline { margin-left: 0; }
  .teaser__text .arrow-link { justify-content: flex-start; }

  .about { grid-template-columns: 1fr; grid-template-rows: auto; }
  .about__visual, .about__card, .about__career, .about__social { grid-column: 1; grid-row: auto; }
  .about__card { margin: -40px 16px 0; }
  .about__social { flex-direction: row; justify-self: start; width: auto; margin: 20px 16px 0; padding: 0 10px; }
  .about__stalk { writing-mode: horizontal-tb; transform: none; margin: 0 0 0 10px; }
  .about__career { padding: 30px 16px 0; }
  .ysk { min-height: 0; padding-block: 60px; }
  .ysk__box { width: calc(100% - 32px); grid-template-columns: 1fr; padding: 30px 24px; gap: 24px; }
  .ysk__text { text-align: left; }
  .ysk__line { width: 60px; height: 1px; transform-origin: left; }
  .skills { grid-template-columns: 1fr 1fr; }
  .partners__intro { text-align: left; }
  .partners__intro .hline { margin-left: 0; }

  .know-hero { grid-template-columns: 1fr; padding: 30px 0; min-height: 0; }
  .know-hero__panel { left: 30px; top: 0; }
  .know-hero__text { padding: 20px 24px 0; }
  .know-hero__text .display { white-space: normal; }
  .know-hero__media { margin: 24px 16px 20px 0; }

  .see-head { padding: 40px 20px 20px; }
  .gallery { grid-template-columns: 1fr; padding: 0 12px; }
  .rail { position: sticky; top: 64px; z-index: 10; height: 0; }
  .rail__sticky { position: absolute; top: 8px; right: 0; padding: 0; }
  .rail__btn { flex-direction: row; background: var(--ink); padding: 6px 14px; border-radius: 30px; }
  .rail__line { width: 16px; height: 1px; }
  .rail__btn:hover .rail__line { height: 1px; }
  .rail__date { writing-mode: horizontal-tb; transform: none; gap: 8px; }
  .rail__year { font-size: 14px; color: var(--white); }
  .rail__years { left: auto; right: 0; top: 44px; }
  .gallery__groups { grid-template-columns: repeat(2, 1fr); grid-auto-rows: calc((100cqi - 34px) / 2); }
  .tile__info { transform: none; opacity: 1; left: 12px; right: 12px; bottom: 10px; }
  .tile::after { opacity: .8; }
  .tile__title { font-size: 13px; }

  .detail { padding-top: 30px; }
  .detail__head { padding: 0 20px 40px; }
  .block-image--contained, .block-image--narrow, .block-pair, .block-slider, .block-step { width: calc(100% - 32px); }
  .block-pair { flex-direction: column; gap: 20px; }
  .block-pair figure { flex: none !important; width: 100%; }
  .block-step, .step__media--2 { grid-template-columns: 1fr; }
  .detail__meta { margin-top: 0; }
  .block-text { width: calc(100% - 40px); }
  .step__head { position: static; }
  .detail__outro { flex-wrap: wrap; padding: 60px 20px 40px; }

  .contact { padding: 30px 20px; }
  .contact__panel { width: 100%; height: 60%; }
  .contact-info { grid-template-columns: 1fr; }
  .site-footer__inner { padding: 30px 20px; gap: 14px 28px; }
  .site-footer__divider { display: none; }
}

@media (max-width: 520px) {
  .skills { grid-template-columns: 1fr; }
  .partners__logos { grid-template-columns: repeat(3, 1fr); }
  .hero__nav { top: 82%; }
  .site-footer__mail { padding: 5px 20px; }
}

/* ==========================================================================
   14 · Ergänzungen: Mauszeiger, Laufband, READ-Szenen, Künstlerportfolio, Imprint
   ========================================================================== */

/* Eigener Mauszeiger (nur Maus/Trackpad, nicht bei "Bewegung reduzieren") */
.cursor { display: none; }
.has-cursor, .has-cursor * { cursor: none !important; }
.has-cursor .cursor { display: block; position: fixed; left: 0; top: 0; z-index: 400; pointer-events: none; opacity: 0; transition: opacity .3s; }
.has-cursor .cursor.is-visible { opacity: 1; }
.cursor__ring, .cursor__dot { position: fixed; left: 0; top: 0; border-radius: 50%; will-change: transform; }
.cursor__dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--orange); transition: opacity .3s; }
.cursor__ring {
  display: grid; place-items: center; width: 38px; height: 38px; margin: -19px 0 0 -19px;
  border: 1px solid #fff; mix-blend-mode: difference;
  transition: width .5s var(--ease), height .5s var(--ease), margin .5s var(--ease), background-color .35s, border-color .35s, border-radius .35s;
}
.cursor__label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); opacity: 0; transition: opacity .25s; }
.cursor.is-link .cursor__ring { width: 64px; height: 64px; margin: -32px 0 0 -32px; background: rgba(255, 255, 255, .12); }
.cursor.is-label .cursor__ring { width: 90px; height: 90px; margin: -45px 0 0 -45px; background: var(--orange); border-color: var(--orange); mix-blend-mode: normal; }
.cursor.is-label .cursor__label { opacity: 1; }
.cursor.is-label .cursor__dot, .cursor.is-text .cursor__dot { opacity: 0; }
.cursor.is-text .cursor__ring { width: 2px; height: 30px; margin: -15px 0 0 -1px; border-radius: 2px; background: #fff; }
.cursor.is-down .cursor__ring { width: 24px; height: 24px; margin: -12px 0 0 -12px; }
.cursor.is-down.is-label .cursor__ring { width: 76px; height: 76px; margin: -38px 0 0 -38px; }

/* Text zerlegt in Wörter / Buchstaben */
.word, .char { display: inline-block; }

/* Laufband auf READ */
.marquee { overflow: hidden; padding: 20px 0 90px; }
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__group { display: flex; align-items: center; gap: 44px; padding-right: 44px; }
.marquee__item {
  font-size: clamp(54px, 8.5vw, 124px); font-weight: 900; line-height: 1.05; text-transform: uppercase; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px #b9b9b9; transition: color .4s, -webkit-text-stroke-color .4s;
}
.marquee__item:hover { color: var(--orange); -webkit-text-stroke-color: var(--orange); }
.marquee__star { font-size: clamp(22px, 3vw, 40px); color: var(--orange); }
.marquee__track--solid { margin-top: 6px; }
.marquee__track--solid .marquee__item { font-size: clamp(30px, 4.4vw, 62px); color: var(--ink); -webkit-text-stroke: 0; }
.marquee__track--solid .marquee__item:hover { color: var(--orange); }
.page--read { padding-top: 60px; }

/* Karriere: Fortschritt */
.career__progress { position: relative; flex: 1; min-width: 60px; height: 1px; margin-left: 6px; background: var(--grey-2); overflow: hidden; }
.career__bar { position: absolute; inset: 0; background: var(--orange); transform-origin: left; transform: scaleX(0); transition: transform .9s var(--ease); }

/* READ: Social-Link ohne Icon (z. B. NEXETH.ART) */
.social-icon--text { display: grid; place-items: center; font-size: 13px; font-weight: 900; color: #8d8d8d; }
.social-icon--text:hover { color: var(--orange); }

/* Künstlerportfolio: großer Schriftzug */
.artist-cta { padding: 130px 0 30px; text-align: center; }
.artist-cta__link { display: inline-flex; align-items: flex-start; gap: .12em; margin-top: 12px; color: var(--ink); }
.artist-cta__title { font-size: clamp(56px, 11.5vw, 156px); font-weight: 900; line-height: .95; white-space: nowrap; }
.artist-cta__title .char { transition: color .45s, transform .6s var(--ease); transition-delay: calc(var(--i, 0) * 22ms); }
.artist-cta__link:hover .char { color: var(--orange); transform: translateY(-8px); }
.artist-cta__arrow { font-size: clamp(26px, 4vw, 56px); line-height: 1; color: var(--orange); transition: transform .6s var(--ease); }
.artist-cta__link:hover .artist-cta__arrow { transform: translate(10px, -10px); }
.artist-cta__text { max-width: 520px; margin: 20px auto 0; color: var(--muted); }

/* Footer & Projektseiten: Verweis aufs Künstlerportfolio */
.site-footer__inner { gap: 18px 32px; }
.site-footer__artist { display: flex; flex-direction: column; line-height: 1.35; }
.site-footer__artist span { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; }
.site-footer__artist strong { font-size: 13px; font-weight: 800; letter-spacing: 1px; color: var(--ink); transition: color .3s; }
.site-footer__artist:hover strong { color: var(--orange); }
.detail__more { padding: 0 5% 40px; text-align: right; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--soft); }
.detail__more a { margin-left: 6px; font-weight: 800; color: var(--ink); transition: color .3s; }
.detail__more a:hover { color: var(--orange); }

/* Imprint: schlichte zweispaltige Seite */
.legal--columns .legal__inner { width: min(980px, 100% - 2 * var(--gutter)); }
.legal--columns .display { margin-bottom: 10px; }
.legal__lead { margin-bottom: 44px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--soft); }
.legal-rows { border-top: 1px solid var(--grey-2); }
.legal-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 40px; padding: 26px 0; border-bottom: 1px solid var(--grey-2); }
.legal-row__title { font-size: 12px; font-weight: 700; line-height: 1.7; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); }
.legal-row__title::before { content: ""; display: block; width: 30px; height: 1px; margin-bottom: 12px; background: var(--orange); }
.legal-row__body { font-size: 14px; line-height: 1.85; }
.legal-row__body p + p, .legal-row__body ul { margin-top: .8em; }
.legal-row__body a { color: var(--orange-deep); border-bottom: 1px solid currentColor; }

@media (max-width: 860px) {
  .marquee { padding: 10px 0 60px; }
  .legal-row { grid-template-columns: 1fr; gap: 8px; }
  .artist-cta { padding-top: 90px; }
  .detail__more { padding: 0 20px 30px; text-align: left; }
}

/* Handy: großer Schriftzug darf die Seite nicht verbreitern */
.artist-cta { overflow: hidden; }
@media (max-width: 520px) {
  .artist-cta__title { font-size: clamp(34px, 13vw, 56px); }
  .artist-cta__arrow { font-size: 24px; }
}

.word { white-space: nowrap; }

/* Handy: Schriftzug passt in die Breite, Pfeil darf umbrechen */
@media (max-width: 520px) {
  .artist-cta__link { flex-wrap: wrap; justify-content: center; }
  .artist-cta__title { font-size: 10.5vw; }
}

/* ==========================================================================
   15 · Darkmode – dunkelgrau, Orange, warmes Off-White
   ========================================================================== */
:root { --surface: #ffffff; --header-glass: rgba(240, 240, 240, .9); color-scheme: light; }

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #161616;
  --panel: #1c1c1c;
  --surface: #1f1f1f;
  --grey: #262626;
  --grey-2: #363636;
  --line: #3e3e3e;
  --ink: #ebe6de;          /* ~90 % Weiß mit leicht warmem Ton */
  --text: #e2ddd5;
  --muted: #a39e96;
  --soft: #857f78;
  --header-glass: rgba(22, 22, 22, .88);
}

/* Logo-Varianten */
.logo-dark { display: none; }
[data-theme="dark"] .logo-light { display: none; }
[data-theme="dark"] .logo-dark { display: block; }

/* Umschalter: Sonne → Mondsichel */
.site-header__right { display: flex; align-items: center; gap: clamp(22px, 3.2vw, 46px); }
.theme-toggle {
  position: relative; z-index: 2; display: grid; place-items: center; width: 40px; height: 40px; margin: -8px -10px -8px 0;
  border-radius: 50%; color: var(--text); transition: color .3s, background-color .3s;
}
.theme-toggle:hover { color: var(--orange); background: rgba(255, 165, 0, .1); }
.theme-toggle svg { overflow: visible; }
.theme-toggle__core { transform-box: fill-box; transform-origin: center; transition: transform .8s var(--ease); }
.theme-toggle__cut { transition: transform .8s var(--ease); }
.theme-toggle__rays { transform-box: fill-box; transform-origin: center; transition: transform .8s var(--ease), opacity .45s; }
[data-theme="dark"] .theme-toggle { color: var(--orange); }
[data-theme="dark"] .theme-toggle__core { transform: scale(1.75); }
[data-theme="dark"] .theme-toggle__cut { transform: translate(-7px, 3.5px); }
[data-theme="dark"] .theme-toggle__rays { transform: rotate(-100deg) scale(.3); opacity: 0; }
.menu-open .theme-toggle { color: #ebe6de; }

/* Weicher Farbwechsel (Fallback ohne View Transitions) */
html.theme-anim, html.theme-anim *, html.theme-anim *::before, html.theme-anim *::after {
  transition: background-color .6s ease, color .6s ease, border-color .6s ease, fill .6s ease !important;
}
::view-transition-old(root), ::view-transition-new(root) { animation: none; mix-blend-mode: normal; }

/* Flächen & feste Farben im Darkmode */
.site-header.is-scrolled { background: var(--header-glass); }
.gallery-page, .detail, .legal { background: var(--surface); }
[data-theme="dark"] .arrow-link,
[data-theme="dark"] .site-footer__inner,
[data-theme="dark"] .site-footer__mail,
[data-theme="dark"] .hero__kicker,
[data-theme="dark"] .side-tab,
[data-theme="dark"] .about__card,
[data-theme="dark"] .career__role,
[data-theme="dark"] .career__period,
[data-theme="dark"] .detail__meta,
[data-theme="dark"] .social-icon--text { color: var(--muted); }
[data-theme="dark"] .arrow-link:hover, [data-theme="dark"] .side-tab:hover, [data-theme="dark"] .social-icon--text:hover { color: var(--orange); }
[data-theme="dark"] .site-footer__mail:hover { color: #161616; }
[data-theme="dark"] .site-footer__divider, [data-theme="dark"] .detail__outro-line { background: var(--line); }
[data-theme="dark"] .detail__meta { border-left-color: var(--line); }
[data-theme="dark"] .detail__subtitle { color: #bdb7af; }
[data-theme="dark"] .block-text .copy { color: #aaa49c; }
[data-theme="dark"] .hero__dots button { background: rgba(255, 255, 255, .25); }
[data-theme="dark"] .hero__dots button[aria-selected="true"] { background: var(--orange); }
[data-theme="dark"] .about__social { background: var(--grey); border-color: var(--grey-2); }
[data-theme="dark"] .ysk__box { background: rgba(26, 26, 26, .94); }
[data-theme="dark"] .ysk__bg img { filter: brightness(.45) saturate(.8); }
[data-theme="dark"] .year__head::before { -webkit-text-stroke-color: rgba(255, 255, 255, .06); }
[data-theme="dark"] .rail__years { background: #0e0e0e; box-shadow: 0 20px 50px rgba(0, 0, 0, .6); }
[data-theme="dark"] .rail__years button { color: var(--ink); }
[data-theme="dark"] .marquee__item { -webkit-text-stroke-color: #4a4a4a; }
[data-theme="dark"] .marquee__item:hover { -webkit-text-stroke-color: var(--orange); }
[data-theme="dark"] .plus { background: #0b0b0b; }
[data-theme="dark"] .more__btn:hover, [data-theme="dark"] .mail-box:hover, [data-theme="dark"] .circle-btn:hover { color: #161616; }
[data-theme="dark"] .hero__scroll img { filter: invert(1) brightness(.9); }
[data-theme="dark"] .motivations img, [data-theme="dark"] .ysk__icons img { filter: brightness(1.35); }
[data-theme="dark"] .partners__logos img { filter: grayscale(1) invert(.92) brightness(1.05); opacity: .6; }
[data-theme="dark"] .partners__logos li:hover img { filter: grayscale(1) invert(.92) brightness(1.2); opacity: 1; }
[data-theme="dark"] .block-image img[src$=".png"], [data-theme="dark"] .block-pair img[src$=".png"] { background: #f4f1ec; }
[data-theme="dark"] .lightbox { background: rgba(8, 8, 8, .96); }
[data-theme="dark"] ::selection { color: #161616; }

@media (max-width: 860px) {
  .site-header__right { gap: 6px; }
  .theme-toggle { margin: 0; }
  [data-theme="dark"] .nav { background: #0e0e0e; }
  [data-theme="dark"] .nav a { color: var(--ink); }
  [data-theme="dark"] .menu-open .menu-toggle__lines::before { background: var(--ink); }
  [data-theme="dark"] .rail__btn { background: #2a2a2a; }
}

/* ==========================================================================
   16 · Outline-Rahmen (aus dem früheren LN-Design-Screendesign)
   Unterschiedlich dicke Rechtecke, die über Kanten von Bild, Fläche und Hintergrund
   hinausragen und so Linien brechen.
   ========================================================================== */
.frame {
  position: absolute; z-index: 2; inset: -16px; pointer-events: none;
  border: var(--frame-w, 3px) solid var(--frame-c, var(--orange));
}
.frame--thick { --frame-w: 6px; }
.frame--mid { --frame-w: 3px; }
.frame--thin { --frame-w: 1px; }
.framed { position: relative; display: inline-block; }
.framed > :not(.frame) { position: relative; z-index: 1; }
.framed > .frame { z-index: 0; }

/* Überschriften mit Rahmen */
.framed--intro { margin-block: 14px 26px; }
.intro__text .framed--intro .display { margin: 0; }
.framed--intro .frame { inset: -18px -70px -18px -22px; }

.framed--about { margin-block: 26px 26px; }
.framed--about .about__title { margin: 0; }
.framed--about .frame { inset: -12px -58px -14px -12px; }

.framed--hero { margin-block: 14px 30px; }
.framed--hero .display { margin: 0 !important; }
.framed--hero .frame { inset: -18px -52px -18px -24px; }

.framed--see { margin-block: 14px 30px; }
.framed--see .display { margin: 0 !important; }
.framed--see .frame { inset: -14px -44px -14px -20px; }

.framed--contact { margin-block: 16px 32px; }
.framed--contact .display { margin: 0 !important; }
.framed--contact .frame { inset: -20px -84px -20px -24px; }

.framed--partners .frame { inset: -14px -18px -14px -46px; }

/* Regel für alle Kanten-Rahmen: Der Rahmen sitzt exakt mittig auf einer echten Ecke
   (Bild / Fläche / Hintergrund) – beide Linien laufen genau durch seine Mitte.
   Position = Ecke − halbe Breite bzw. halbe Höhe. */

/* News/Tutorial-Beiträge (Bildspalte 0–56 %, volle Höhe) im Dreier-Rhythmus */
.feature > .frame { inset: auto; --fw: 150px; --fh: 110px; width: var(--fw); height: var(--fh); }
/* 1, 4, 7 …: mittlere Linie auf der unteren Ecke Bild/Fläche */
.feature:nth-of-type(3n+1) > .frame { --frame-w: 3px; left: calc(56% - var(--fw) / 2); bottom: calc(var(--fh) / -2); }
/* 2, 5, 8 …: dünne Linie auf der oberen linken Bildecke
   (halbe Breite ≤ 63 px = Abstand Inhalt → Seitenrand, ragt also nie über die helle Fläche) */
.feature:nth-of-type(3n+2) > .frame { --frame-w: 1px; --fw: 110px; --fh: 120px; left: calc(var(--fw) / -2); top: calc(var(--fh) / -2); }
/* 3, 6, 9 …: dicke Linie auf der unteren linken Bildecke */
.feature:nth-of-type(3n) > .frame { --frame-w: 6px; --fw: 100px; --fh: 130px; left: calc(var(--fw) / -2); bottom: calc(var(--fh) / -2); }
/* Schmalere Desktops: kein Seitenrand mehr frei → Rahmen mittig auf der Bildunterkante */
@media (min-width: 861px) and (max-width: 1300px) {
  .feature:nth-of-type(3n+2) > .frame { left: calc(28% - var(--fw) / 2); top: auto; bottom: calc(var(--fh) / -2); }
  .feature:nth-of-type(3n) > .frame { left: calc(28% - var(--fw) / 2); }
}

/* SEE-Streifen: dünner Rahmen auf der unteren Ecke Fläche/Bilder */
.strip { position: relative; }
.strip__frame { inset: auto; --fw: 120px; --fh: 100px; width: var(--fw); height: var(--fh); left: calc(29% - var(--fw) / 2); bottom: calc(var(--fh) / -2); }

/* READ-Teaser: Rahmen auf der oberen rechten Bildecke */
.teaser__media > .frame { inset: auto; --fw: 140px; --fh: 170px; width: var(--fw); height: var(--fh); right: calc(22% - var(--fw) / 2); top: calc(var(--fh) / -2); }

/* You should know: dicker Rahmen auf der oberen linken Ecke der Box */
.ysk__stage { position: relative; z-index: 1; width: min(75%, 860px); }
.ysk__stage .ysk__box { width: 100%; z-index: 1; }
.ysk__frame { inset: auto; --fw: 150px; --fh: 130px; width: var(--fw); height: var(--fh); left: calc(var(--fw) / -2); top: calc(var(--fh) / -2); z-index: 0; }

@media (max-width: 860px) {
  .framed--intro .frame, .framed--hero .frame, .framed--see .frame, .framed--contact .frame { inset: -12px -16px -12px -14px; }
  .framed--about .frame { inset: -10px -14px -12px -10px; }
  .framed--partners .frame { inset: -12px -14px -12px -14px; }
  /* Mobil: Rahmen mittig auf der Bild-Oberkante (nichts ragt aus dem Bildschirm) */
  .feature:nth-of-type(n) > .frame { --fw: 110px; --fh: 70px; top: calc(var(--fh) / -2); bottom: auto; left: 24px; }
  .strip__frame { display: none; }
  .teaser__media > .frame { --fw: 80px; --fh: 100px; right: calc(12% - var(--fw) / 2); }
  .ysk__stage { width: calc(100% - 32px); }
  .ysk__stage .ysk__box { width: 100%; }
  .ysk__frame { --fw: 90px; --fh: 80px; left: 16px; }
}

/* Abgleich mit der Originalseite ------------------------------------------ */
/* Rahmen um orange Überschriften: dunkel (im Darkmode Off-White), damit sie sich abheben */
.frame--ink { --frame-c: var(--ink); }
/* Rahmen liegen wie im Vorbild immer obenauf */
.ysk__frame { z-index: 2; }

/* READ: Icons unter der Karte wie im Original */
.about { grid-template-rows: calc(100cqi * 725 / 1289) auto auto; }
.about__motivations {
  grid-column: 2; grid-row: 3; align-self: start; z-index: 2;
  margin: 28px 0 0; padding: 0 30px; border-top: 0; justify-content: space-between;
}
@media (max-width: 860px) {
  .about__motivations { grid-column: 1; grid-row: auto; margin: 26px 16px 0; padding: 0 20px; }
}

/* READ: vertikale Position wie Original (Bild tiefer, Karte ragt weiter über das Bild) */
.about-wrap { margin-top: 72px; }
.about__card { margin-top: -84px; }
@media (max-width: 860px) {
  .about-wrap { margin-top: 0; }
  .about__card { margin-top: -40px; }
}

/* READ: Absatzabstände der Karte wie Original – Karte ragt unten über das Bild hinaus */
.about__lead { margin-block: 18px 16px; }
.about__text p + p { margin-top: 17px; }
.about__card { padding-bottom: 40px; }

/* READ-Karte: Schriftgrößen & Zeilenhöhen exakt aus dem Original-CSS (.about-me) */
@media (min-width: 861px) {
  .about__card { padding: 20px 20px 34px; }
  .about__title { font-size: 24pt; line-height: 20pt; }
  .about__lead { font-size: 10pt; line-height: 20pt; margin-block: 10px 0; }
  .about__text { font-size: 10pt; line-height: 18pt; }
  .about__text p { margin-top: 17px; }
  .about__ps { margin-top: 17px; font-size: 10pt; line-height: 18pt; }
}

/* Feinschliff: Ausrichtung ------------------------------------------------- */
/* Slider: Pfeil läuft direkt unter den Punkten, beginnt links davor, Spitze rechts danach */
.hero__pager { position: absolute; z-index: 3; top: 5%; right: 2%; display: flex; flex-direction: column; align-items: stretch; gap: 9px; }
/* Pfeil = exakt so breit wie die Punktreihe (erster Punkt links bis Spitze am letzten Punkt) */
.hero__pager .hero__dots { position: static; display: flex; justify-content: space-between; gap: 12px; padding: 0; }
.hero__pager .hero__arrow { position: relative; top: auto; right: auto; width: auto; height: 1px; }
/* Scroll-down-Icon mittig im Raster */
.hero__side { padding-bottom: 5px; }
/* Footer: alle Elemente in einer Zeile */
.site-footer__inner { flex-wrap: nowrap; justify-content: space-between; gap: 22px; padding-inline: 34px; }
.site-footer__logo img { width: 150px; }
.site-footer__mail { padding: 5px 26px; white-space: nowrap; }
.site-footer__legal, .site-footer__text { white-space: nowrap; }
@media (max-width: 1100px) { .site-footer__inner { flex-wrap: wrap; justify-content: flex-start; } }
@media (max-width: 860px) {
  .hero__pager { right: auto; left: 8%; }
  .hero__pager .hero__dots { padding: 0; }
}

/* NEXETH.ART-Block: 40 % kleiner, ohne Pfeil; Buchstaben fallen hinter einer unsichtbaren Oberkante herein */
.artist-cta__title {
  display: inline-block; overflow: hidden; padding-block: .14em .04em; margin-top: -.14em;
  font-size: clamp(34px, 6.9vw, 94px);
}
.artist-cta__title .word { display: inline-block; }
.artist-cta__title .char { display: inline-block; will-change: transform; }
.artist-cta__text { max-width: 620px; margin-top: 18px; line-height: 1.8; }
@media (max-width: 860px) { .artist-cta__title { font-size: clamp(24px, 8vw, 34px); } }
@media (max-width: 480px) { .artist-cta__title { font-size: 8vw; } }
/* GSAP bewegt die Buchstaben – keine CSS-Transition auf transform, sonst ruckelt der Fall */
.artist-cta__title .char { transition: color .45s; }
.artist-cta__link:hover .char { transform: none; }
/* SEE-Streifen gestapelt: keine Ecke Fläche/Bilder mehr in der Mitte → Rahmen aus */
@media (max-width: 1100px) { .strip__frame { display: none; } }
