/* CRUCIFIED GOBLIN — CHAPTER 00: RELIQUARY
   CG-WEB-013 R001 · Stylesheet ohne Framework, ohne externe Ressourcen. */

@font-face { font-family: "Cormorant"; src: url("../fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant"; src: url("../fonts/cormorant-garamond-latin-500-italic.woff2") format("woff2"); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: "Plex Sans"; src: url("../fonts/ibm-plex-sans-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Plex Mono"; src: url("../fonts/ibm-plex-mono-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Plex Mono"; src: url("../fonts/ibm-plex-mono-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }

:root {
  --obsidian: #0B0B0C;
  --coal: #1F1F22;
  --bone: #E8E2D4;
  --iron: #8A8C86;
  --oxide: #5C5F58;
  --oxblood: #4A1218;

  --bone-80: rgba(232, 226, 212, .80);
  --bone-60: rgba(232, 226, 212, .62);
  --rule: rgba(138, 140, 134, .28);
  --rule-strong: rgba(138, 140, 134, .5);

  --f-display: "Cormorant", "Cormorant Garamond", "EB Garamond", Garamond, "Times New Roman", serif;
  --f-text: "Plex Sans", "IBM Plex Sans", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --f-mono: "Plex Mono", "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --gutter: clamp(20px, 4vw, 56px);
  --maxw: 1440px;
  --nav-h: 64px;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --slow: 1100ms;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 16px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0; background: var(--obsidian); color: var(--bone);
  font-family: var(--f-text); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; text-decoration-color: var(--oxide); text-underline-offset: .22em; text-decoration-thickness: 1px; }
a:hover { text-decoration-color: var(--bone); }
button { font: inherit; color: inherit; }
::selection { background: var(--oxblood); color: var(--bone); }
:focus { outline: none; }
:focus-visible { outline: 1px solid var(--bone); outline-offset: 4px; }

.skip { position: absolute; left: 12px; top: -80px; z-index: 100; background: var(--bone); color: var(--obsidian); padding: 10px 16px; font-family: var(--f-mono); font-size: 13px; text-decoration: none; letter-spacing: .06em; }
.skip:focus { top: 12px; }
[hidden] { display: none !important; }
.sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ------------ Typo-Primitive ------------ */
.mono, .meta { font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; line-height: 1.5; }
.meta { color: var(--iron); }
.display { font-family: var(--f-display); font-weight: 500; letter-spacing: -.01em; line-height: .98; }
h1, h2, h3 { margin: 0; font-weight: 500; }
h2.display { font-size: clamp(40px, 6.2vw, 92px); }
h3.display { font-size: clamp(30px, 3.2vw, 44px); line-height: 1.02; }
p { margin: 0 0 1em; }
.lede { font-family: var(--f-display); font-size: clamp(22px, 2.1vw, 30px); line-height: 1.32; color: var(--bone); max-width: 30em; }
.body { color: var(--bone-80); max-width: 36em; }
.num { font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; color: var(--iron); }

/* ------------ Layout ------------ */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(96px, 14vw, 200px); }
.section + .section { border-top: 1px solid var(--rule); }
.sec-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.618fr); grid-template-areas: "num head" "meta head"; grid-template-rows: auto 1fr; column-gap: var(--gutter); row-gap: 12px; margin-bottom: clamp(48px, 7vw, 104px); }
.sec-head > .num { grid-area: num; align-self: start; }
.sec-head > div { grid-area: head; }
.sec-head > .meta { grid-area: meta; align-self: end; justify-self: start; padding-bottom: .9em; }
@media (max-width: 820px) {
  .sec-head { grid-template-columns: 1fr; grid-template-areas: "num" "head" "meta"; grid-template-rows: auto; row-gap: 18px; }
  .sec-head > .meta { padding-bottom: 0; }
}

/* ------------ Navigation ------------ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--nav-h);
  display: flex; align-items: center;
  background: linear-gradient(to bottom, rgba(11,11,12,.86), rgba(11,11,12,0));
  transition: background-color .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-solid { background: rgba(11, 11, 12, .94); border-bottom-color: var(--rule); }
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .nav.is-solid { background: rgba(11, 11, 12, .78); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark { font-family: var(--f-mono); font-weight: 500; font-size: 13px; letter-spacing: .28em; text-decoration: none; white-space: nowrap; }
.nav-links { display: flex; gap: clamp(16px, 2.2vw, 36px); list-style: none; margin: 0; padding: 0; }
.nav-links a { font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; color: var(--bone-60); position: relative; padding-block: 8px; transition: color .3s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: var(--bone); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.nav-links a:hover, .nav-links a[aria-current="true"] { color: var(--bone); }
.nav-links a:hover::after, .nav-links a[aria-current="true"]::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang { display: flex; font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; }
.lang a, .lang span { padding: 8px 6px; text-decoration: none; color: var(--iron); }
.lang [aria-current="page"] { color: var(--bone); }
.lang a:hover { color: var(--bone); }
.menu-btn { display: none; background: none; border: 1px solid var(--rule-strong); padding: 9px 14px; font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-block; }
}
.sheet {
  position: fixed; inset: 0; z-index: 60; background: var(--obsidian);
  display: grid; grid-template-rows: var(--nav-h) 1fr auto; padding-inline: var(--gutter);
  visibility: hidden; opacity: 0; transition: opacity .35s var(--ease), visibility 0s linear .35s;
}
.sheet.is-open { visibility: visible; opacity: 1; transition: opacity .35s var(--ease); }
.sheet-top { display: flex; align-items: center; justify-content: space-between; }
.sheet ol { list-style: none; margin: 0; padding: 32px 0; align-self: center; counter-reset: s; }
.sheet li { counter-increment: s; border-top: 1px solid var(--rule); }
.sheet li:last-child { border-bottom: 1px solid var(--rule); }
.sheet li a { display: flex; align-items: baseline; gap: 18px; padding: 16px 0; text-decoration: none; font-family: var(--f-display); font-size: clamp(34px, 9vw, 52px); line-height: 1; }
.sheet li a::before { content: "0" counter(s); font-family: var(--f-mono); font-size: 12px; color: var(--iron); letter-spacing: .14em; }
.sheet-foot { padding-block: 24px; display: flex; justify-content: space-between; }

/* ------------ Hero ------------ */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: grid; overflow: hidden; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media picture { width: 100%; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; transform-origin: 70% 55%; }
.hero::before { /* Tiefe: dunkle Verlaufsschichten */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(11,11,12,.92) 0%, rgba(11,11,12,.55) 38%, rgba(11,11,12,0) 70%),
    linear-gradient(0deg, rgba(11,11,12,1) 0%, rgba(11,11,12,0) 34%);
}
.hero-inner { align-self: end; padding-top: calc(var(--nav-h) + 48px); padding-bottom: clamp(40px, 8vh, 96px); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: var(--gutter); align-items: end; }
.hero-copy { max-width: 1100px; min-width: 0; }
.seal { width: clamp(88px, 9vw, 128px); aspect-ratio: 1; margin-bottom: clamp(28px, 4vh, 48px); box-shadow: 0 30px 60px -20px rgba(0,0,0,.9), 0 0 0 1px rgba(232,226,212,.08); }
.seal img { width: 100%; height: 100%; }
.hero-kicker { color: var(--iron); margin-bottom: 18px; }
.hero h1 { font-family: var(--f-display); font-weight: 500; font-size: clamp(46px, 9.2vw, 150px); line-height: .86; white-space: nowrap; letter-spacing: -.02em; text-transform: uppercase; margin: 0 0 clamp(22px, 3vh, 36px); }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero h1 .line > span { display: block; }
.hero-claim { font-family: var(--f-display); font-style: italic; font-size: clamp(22px, 2.4vw, 34px); line-height: 1.25; color: var(--bone); margin: 0 0 30px; max-width: 22em; }
.hero-status { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 34px; }
.hero-status span { display: inline-flex; align-items: center; gap: 10px; }
.hero-status span::before { content: ""; width: 6px; height: 6px; border: 1px solid var(--iron); transform: rotate(45deg); }
.hero-status span.accent::before { background: var(--oxblood); border-color: var(--oxblood); }
.hero-aside { justify-self: end; text-align: right; display: grid; gap: 6px; }
.scroll-cue { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.scroll-cue i { width: 1px; height: 44px; background: var(--rule-strong); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; left: 0; top: -40%; width: 1px; height: 40%; background: var(--bone); }
@media (prefers-reduced-motion: no-preference) {
  .scroll-cue i::after { animation: drip 2.6s var(--ease) infinite; }
  @keyframes drip { 0% { top: -40%; } 60%, 100% { top: 100%; } }
}
@media (max-width: 820px) {
  .hero-media img { object-position: 70% 50%; }
  .hero::before { background: linear-gradient(0deg, rgba(11,11,12,1) 6%, rgba(11,11,12,.55) 55%, rgba(11,11,12,.35) 100%); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-aside { display: none; }
}

/* Buttons */
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  --b: var(--bone);
  display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 48px; padding: 0 22px;
  font-family: var(--f-mono); font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; text-decoration: none;
  border: 1px solid var(--b); background: transparent; color: var(--bone); cursor: pointer; position: relative; overflow: hidden; isolation: isolate;
  transition: color .45s var(--ease), border-color .45s var(--ease);
}
.btn::before { content: ""; position: absolute; inset: 0; background: var(--bone); transform: scaleY(0); transform-origin: bottom; transition: transform .5s var(--ease); z-index: -1; }
.btn:hover, .btn:focus-visible { color: var(--obsidian); }
.btn:hover::before, .btn:focus-visible::before { transform: scaleY(1); }
.btn.solid { background: var(--bone); color: var(--obsidian); }
.btn.solid::before { background: var(--oxblood); }
.btn.solid:hover, .btn.solid:focus-visible { color: var(--bone); border-color: var(--oxblood); }
.btn .arr { width: 16px; height: 1px; background: currentColor; position: relative; transition: width .45s var(--ease); }
.btn .arr::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.btn:hover .arr { width: 24px; }
.btn.ghost { --b: var(--rule-strong); }

/* ------------ Manifest ------------ */
.manifest-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.618fr); gap: var(--gutter); }
.rail { position: sticky; top: calc(var(--nav-h) + 40px); align-self: start; display: flex; gap: 22px; }
.rail .vert { writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--f-mono); font-size: 11px; letter-spacing: .3em; color: var(--oxide); text-transform: uppercase; }
.manifest-text p { font-family: var(--f-display); font-size: clamp(24px, 2.35vw, 34px); line-height: 1.34; color: var(--bone); margin-bottom: .9em; max-width: 25em; }
.manifest-text p.muted { color: var(--bone-60); }
.manifest-text p:first-child::first-letter { font-size: 3.1em; float: left; line-height: .82; padding: .06em .08em 0 0; color: var(--bone); }
@supports (initial-letter: 3) or (-webkit-initial-letter: 3) {
  .manifest-text p:first-child::first-letter { float: none; font-size: inherit; padding: 0 .12em 0 0; line-height: inherit; -webkit-initial-letter: 3; initial-letter: 3; }
}
.signature { margin-top: 48px; display: flex; gap: 18px; align-items: center; }
.signature i { width: 56px; height: 1px; background: var(--oxblood); }
@media (max-width: 820px) {
  .manifest-grid { grid-template-columns: 1fr; }
  .rail { position: static; }
  .rail .vert { writing-mode: horizontal-tb; transform: none; }
}

/* ------------ Kollektion ------------ */
.collection-note { display: flex; gap: 16px; align-items: flex-start; border-left: 1px solid var(--oxblood); padding: 4px 0 4px 18px; margin-top: 18px; max-width: 48em; color: var(--bone-60); font-size: 15px; }
.pieces { display: grid; gap: clamp(72px, 10vw, 144px); }
.piece { display: grid; grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr); gap: var(--gutter); align-items: start; }
.piece:nth-child(even) { grid-template-columns: minmax(0, 1fr) minmax(0, 1.618fr); }
.piece:nth-child(even) .plate { order: 2; }
.plate { position: relative; margin: 0; background: #d9d6cf; overflow: hidden; }
.plate::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(11,11,12,.12); pointer-events: none; }
.plate img { width: 100%; aspect-ratio: 2336 / 1744; object-fit: cover; transition: transform 1.2s var(--ease), filter 1.2s var(--ease); }
.piece:hover .plate img { transform: scale(1.018); }
.plate figcaption { padding: 9px 14px 10px; border-top: 1px solid rgba(11,11,12,.1); font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(11,11,12,.72); }
.piece-info { position: relative; padding-top: 6px; }
.piece-info .idx { display: flex; justify-content: space-between; border-bottom: 1px solid var(--rule); padding-bottom: 14px; margin-bottom: 26px; }
.piece-info h3 { font-family: var(--f-display); font-size: clamp(44px, 5vw, 76px); line-height: .92; letter-spacing: -.01em; margin-bottom: 8px; }
.piece-info .type { font-family: var(--f-mono); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--bone-60); margin-bottom: 26px; }
.piece-info .desc { color: var(--bone-80); margin-bottom: 28px; max-width: 30em; }
.spec { margin: 0 0 28px; padding: 0; list-style: none; border-top: 1px solid var(--rule); }
.spec li { display: grid; grid-template-columns: 9.5em 1fr; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--rule); font-size: 14.5px; }
.spec li span:first-child { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--iron); padding-top: 3px; }
.price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 14px; }
.price strong { font-family: var(--f-display); font-weight: 500; font-size: 30px; letter-spacing: .01em; }
.tag { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--rule-strong); padding: 5px 10px; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-60); }
.tag.ox { border-color: var(--oxblood); color: var(--bone); }
@media (max-width: 900px) {
  .piece, .piece:nth-child(even) { grid-template-columns: 1fr; }
  .piece:nth-child(even) .plate { order: 0; }
}

/* ------------ Kapitel / Editorial ------------ */
.chapter { background: var(--obsidian); overflow: hidden; }
.chapter-bg { position: absolute; inset: 0; z-index: 0; opacity: .34; pointer-events: none; }
.chapter-bg picture, .chapter-bg img { width: 100%; height: 100%; object-fit: cover; }
.chapter-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--obsidian) 0%, rgba(11,11,12,.55) 30%, rgba(11,11,12,.55) 70%, var(--obsidian) 100%); }
.chapter .wrap { position: relative; z-index: 1; }
.folio { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); align-items: start; }
.folio + .folio { margin-top: clamp(80px, 11vw, 160px); }
.f-img-tall { grid-column: 1 / span 5; }
.f-txt-right { grid-column: 7 / span 5; align-self: center; }
.f-img-wide { grid-column: 5 / span 8; }
.f-txt-left { grid-column: 1 / span 4; align-self: end; }
.folio figure { margin: 0; }
.folio figure img { width: 100%; }
.folio figcaption { display: flex; justify-content: space-between; gap: 16px; padding-top: 12px; border-top: 1px solid var(--rule); margin-top: 12px; }
.note-h { font-family: var(--f-display); font-size: clamp(32px, 3.4vw, 52px); line-height: 1.02; margin-bottom: 22px; }
.note-h em { font-style: italic; color: var(--bone-60); }
.seal-plate { grid-column: 3 / span 8; display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: var(--gutter); align-items: center; border: 1px solid var(--rule); padding: clamp(24px, 4vw, 56px); background: rgba(11,11,12,.72); }
.seal-plate .seal-big { width: 100%; max-width: 320px; aspect-ratio: 1; box-shadow: 0 40px 80px -30px rgba(0,0,0,1); }
.seal-plate .seal-big img { width: 100%; height: 100%; }
@media (max-width: 900px) {
  .folio { grid-template-columns: 1fr; }
  .f-img-tall, .f-txt-right, .f-img-wide, .f-txt-left, .seal-plate { grid-column: 1 / -1; }
  .f-txt-left { order: 2; }
  .seal-plate { grid-template-columns: 1fr; }
  .seal-plate .seal-big { max-width: 220px; }
}

/* ------------ Spiel ------------ */
.game { background: #070708; }
.game-stage { position: relative; aspect-ratio: 16 / 9; max-height: calc(100vh - var(--nav-h) - 48px); background: var(--obsidian); border: 1px solid var(--rule); overflow: hidden; }
.game-poster { position: absolute; inset: 0; display: grid; place-items: end start; }
.game-poster picture, .game-poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.game-poster::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(7,7,8,.95) 0%, rgba(7,7,8,.2) 55%, rgba(7,7,8,.1) 100%); }
.game-poster .gp-in { position: relative; z-index: 2; padding: clamp(20px, 4vw, 48px); display: grid; gap: 18px; max-width: 640px; }
.game-title { font-family: var(--f-display); font-size: clamp(48px, 7vw, 112px); line-height: .88; text-transform: uppercase; letter-spacing: -.01em; }
.game-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: var(--obsidian); }
.game-bar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px 24px; padding-top: 16px; }
.game-bar .cta-row { gap: 10px; }
.game-bar .btn { min-height: 42px; padding: 0 16px; }
.game-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--gutter); margin-top: clamp(40px, 6vw, 72px); border-top: 1px solid var(--rule); padding-top: 22px; }
.game-facts div { display: grid; gap: 6px; }
.game-facts b { font-family: var(--f-display); font-weight: 500; font-size: 26px; line-height: 1.1; }
.game-stage:fullscreen { aspect-ratio: auto; border: 0; }
.game-stage:-webkit-full-screen { aspect-ratio: auto; border: 0; width: 100%; height: 100%; }
@media (max-width: 820px) {
  .game-stage { aspect-ratio: 3 / 4; }
  .game-stage.is-playing { aspect-ratio: auto; height: min(78svh, 720px); }
  .game-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ------------ Kontakt / Footer ------------ */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr); gap: var(--gutter); align-items: end; }
.mail { font-family: var(--f-display); font-size: clamp(26px, 3.6vw, 56px); line-height: 1.05; text-decoration: none; word-break: break-word; background-image: linear-gradient(var(--oxblood), var(--oxblood)); background-size: 100% 1px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size .6s var(--ease); padding-bottom: 6px; }
.mail:hover { background-size: 0% 1px; background-position: 100% 100%; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.foot { border-top: 1px solid var(--rule); padding-block: 40px 48px; }
.foot .wrap { display: grid; grid-template-columns: auto 1fr auto; gap: 24px 40px; align-items: center; }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: center; list-style: none; margin: 0; padding: 0; }
.foot-links a { text-decoration: none; color: var(--bone-60); }
.foot-links a:hover { color: var(--bone); }
.foot .seal-sm { width: 40px; height: 40px; }
@media (max-width: 820px) { .foot .wrap { grid-template-columns: 1fr; } .foot-links { justify-content: flex-start; } }

/* ------------ Rechtstexte / Einzelseiten ------------ */
.page { padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 120px)); padding-bottom: clamp(80px, 10vw, 140px); min-height: 80vh; }
.page .display { font-size: clamp(44px, 6vw, 88px); margin-bottom: 40px; }
.legal { max-width: 46em; }
.legal h2 { font-family: var(--f-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--iron); margin: 48px 0 14px; }
.legal p, .legal li { color: var(--bone-80); }
.legal address { font-style: normal; color: var(--bone); line-height: 1.7; }
.legal ul { padding-left: 1.1em; }

/* ------------ Spielseite (Vollbild-Wrapper) ------------ */
.play-body { overflow: hidden; }
.play-top { height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-inline: 14px; border-bottom: 1px solid var(--rule); background: var(--obsidian); }
.play-top a, .play-top button { font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; background: none; border: 0; padding: 10px 6px; cursor: pointer; color: var(--bone); }
.play-frame { display: block; width: 100%; height: calc(100vh - 48px); height: calc(100dvh - 48px); border: 0; }

/* ------------ 404 ------------ */
.nf { min-height: 100vh; min-height: 100svh; display: grid; place-items: center; text-align: center; padding: var(--gutter); }
.nf .seal { margin: 0 auto 36px; }
.nf h1 { font-family: var(--f-display); font-size: clamp(72px, 16vw, 200px); line-height: .9; font-weight: 500; }

/* ------------ Bewegung (nur ohne reduced-motion) ------------ */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translate3d(0, 18px, 0); transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease); transition-delay: var(--d, 0ms); }
  .js .reveal.is-in { opacity: 1; transform: none; }
  .js .hero-media img { animation: settle 2.8s var(--ease) both; }
  @keyframes settle { from { transform: scale(1.07); opacity: .2; } to { transform: scale(1); opacity: 1; } }
  .js .hero h1 .line > span { animation: rise 1.3s var(--ease) both; animation-delay: calc(300ms + var(--i, 0) * 140ms); }
  @keyframes rise { from { transform: translate3d(0, 105%, 0); } to { transform: none; } }
  .js .hero .fade { animation: fadein 1.4s var(--ease) both; animation-delay: var(--d, 700ms); }
  @keyframes fadein { from { opacity: 0; transform: translate3d(0, 10px, 0); } to { opacity: 1; transform: none; } }
  .js .seal { animation: seal 1.6s var(--ease) both .15s; }
  @keyframes seal { from { opacity: 0; clip-path: inset(100% 0 0 0); } to { opacity: 1; clip-path: inset(0 0 0 0); } }
  .hero-light { position: absolute; inset: 0 auto 0 62%; width: 18%; z-index: -2; pointer-events: none; background: linear-gradient(90deg, rgba(232,226,212,0), rgba(232,226,212,.07), rgba(232,226,212,0)); transform: skewX(-12deg); animation: sweep 9s ease-in-out 1.6s infinite alternate; }
  @keyframes sweep { from { transform: translateX(-30%) skewX(-12deg); opacity: .4; } to { transform: translateX(40%) skewX(-12deg); opacity: 1; } }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero-light { display: none; }
}

@media print { .nav, .game, .hero-media { display: none; } body { background: #fff; color: #000; } }

/* Kleine Viewports: Navigationszeile verdichten */
@media (max-width: 480px) {
  .nav .wrap { gap: 10px; }
  .wordmark { font-size: 11px; letter-spacing: .2em; }
  .nav-right { gap: 8px; }
  .lang a, .lang span { padding: 8px 4px; }
  .menu-btn { padding: 8px 10px; }
}
