:root {
  --ink: #171912;
  --ink-soft: #26291f;
  --paper: #f1efe7;
  --paper-warm: #e8e3d7;
  --white: #fffdf8;
  --lime: #d8ff37;
  --yellow: #ffdf18;
  --green: #2f5c46;
  --blue: #75cce4;
  --line: rgba(23, 25, 18, .2);
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: -.05em;
  line-height: .94;
}
h2 { font-size: clamp(3rem, 6.5vw, 6rem); margin-bottom: 1.5rem; }
h3 { font-size: 2rem; }
.page-shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: clamp(6rem, 11vw, 10rem) 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 200;
  padding: 10px 16px; background: var(--lime); color: var(--ink);
  font-weight: 800; transition: top .2s;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: 88px; padding: 0 max(24px, calc((100vw - 1180px) / 2));
  color: var(--white); transition: background .25s, height .25s, box-shadow .25s;
}
.site-header.scrolled {
  height: 72px; background: rgba(23, 25, 18, .95);
  backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(255,255,255,.1);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; background: transparent;
}
.brand-mark img { width: 42px; height: 42px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-family: var(--display); letter-spacing: -.04em; font-size: 1rem; }
.brand-copy small { margin-top: 4px; opacity: .7; font-size: .67rem; letter-spacing: .16em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { text-decoration: none; font-size: .78rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; inset: auto 0 -6px; height: 2px;
  background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .2s;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.nav-cta { padding: 11px 17px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; }
.nav-cta:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.nav-toggle { display: none; }

.hero {
  position: relative; min-height: 100vh; padding: 150px 0 42px;
  background:
    radial-gradient(circle at 88% 20%, rgba(216,255,55,.14), transparent 30%),
    linear-gradient(135deg, #181a13 0%, #22251c 58%, #11130e 100%);
  color: var(--white); overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; width: 52vw; height: 52vw; min-width: 620px; min-height: 620px;
  right: -22vw; top: -18vw; border: 1px solid rgba(255,255,255,.08); border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(2rem, 6vw, 7rem); }
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 1.4rem;
  color: var(--lime); font-size: .72rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow span { display: inline-block; width: 28px; height: 2px; background: currentColor; }
.eyebrow.dark { color: var(--green); }
.eyebrow.light { color: var(--lime); }
.hero h1 {
  max-width: 760px; margin-bottom: 2rem;
  font-size: clamp(3.8rem, 6.8vw, 6.7rem);
  text-wrap: balance;
}
.hero h1 em { display: block; color: var(--lime); font-style: normal; }
.hero-lead { max-width: 620px; font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.38; color: rgba(255,255,255,.78); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2.4rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 52px; padding: 0 22px; border-radius: 999px;
  text-decoration: none; font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--lime); color: var(--ink); }
.button-ghost { border: 1px solid rgba(255,255,255,.34); color: var(--white); }
.button-ghost:hover { border-color: var(--white); }
.button-lime { background: var(--lime); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); }
.button-outline-dark { border: 1px solid var(--ink); color: var(--ink); }
.button-outline-dark:hover { background: var(--ink); color: var(--white); }
.button-outline-light { border: 1px solid rgba(255,255,255,.5); color: var(--white); }
.button-outline-light:hover { background: var(--white); color: var(--ink); }
.context-note { margin-top: 1.4rem; color: rgba(255,255,255,.48); font-size: .73rem; }
.hero-visual { position: relative; min-height: 650px; display: grid; place-items: center; }
.tower-frame {
  position: relative; z-index: 2; width: min(390px, 78%); margin: 0;
  background: var(--paper); padding: 12px; color: var(--ink); transform: rotate(2deg);
  box-shadow: 0 35px 70px rgba(0,0,0,.38);
}
.tower-frame img { width: 100%; aspect-ratio: .66; object-fit: cover; object-position: center; filter: saturate(.8) contrast(1.08); }
.tower-frame figcaption { display: flex; justify-content: space-between; gap: 18px; padding: 13px 5px 3px; font-size: .66rem; line-height: 1.3; }
.tower-frame figcaption span { text-transform: uppercase; letter-spacing: .08em; color: #6c6e66; }
.tower-frame figcaption strong { max-width: 130px; text-align: right; }
.orbit { position: absolute; border: 1px solid rgba(216,255,55,.42); border-radius: 50%; }
.orbit-one { width: 530px; height: 530px; }
.orbit-two { width: 380px; height: 380px; border-style: dashed; animation: spin 35s linear infinite; }
.hero-year {
  position: absolute; z-index: 3; right: -38px; top: 72px;
  padding: 10px 18px; border: 5px solid var(--ink); background: var(--lime); color: var(--ink);
  font-family: var(--display); font-size: clamp(1rem, 2.2vw, 1.8rem); letter-spacing: -.04em;
  white-space: nowrap; transform: rotate(3deg); box-shadow: 8px 10px 0 rgba(0,0,0,.22);
}
.hero-register {
  position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 26px; border-top: 1px solid rgba(255,255,255,.16);
}
.hero-register div { display: flex; align-items: center; gap: 12px; padding: 20px 18px 8px 0; }
.hero-register strong { color: var(--lime); font-size: .68rem; }
.hero-register span { color: rgba(255,255,255,.68); font-size: .74rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }

.statement { background: var(--paper); }
.statement-grid { display: grid; grid-template-columns: 80px 1fr 1fr; gap: clamp(2rem, 5vw, 6rem); align-items: start; }
.section-index { color: #9f9c91; font-family: var(--display); font-size: 1.2rem; border-top: 3px solid var(--ink); padding-top: 10px; }
.statement-copy h2 { margin: 0; }
.statement-body { padding-top: 3.1rem; max-width: 520px; }
.large-copy { font-size: clamp(1.4rem, 2.5vw, 2rem); line-height: 1.28; font-weight: 650; letter-spacing: -.03em; }
.statement-body > p:not(.large-copy) { color: #55574f; }
.text-link { display: inline-flex; gap: 18px; margin-top: 1rem; font-weight: 900; text-underline-offset: 5px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(5rem, 9vw, 8rem); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-card { min-height: 300px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-icon { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 68px; border: 1px solid var(--ink); border-radius: 50%; font-size: 1.7rem; }
.value-card h3 { margin-bottom: 1rem; }
.value-card p { max-width: 320px; color: #5c5d56; }

.infopunkt { background: #dad4c4; }
.infopunkt-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.infopunkt-visual { position: relative; max-width: 520px; padding: 16px; background: var(--white); box-shadow: 0 28px 60px rgba(23,25,18,.16); transform: rotate(-1.4deg); }
.infopunkt-visual img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.infopunkt-visual > p { margin: 13px 3px 0; color: #696b62; font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.infopunkt-year { position: absolute; right: -24px; bottom: 36px; padding: 8px 13px; background: var(--yellow); color: var(--ink); font-family: var(--display); font-size: 2.1rem; transform: rotate(3deg); }
.infopunkt-copy h2 { font-size: clamp(3.1rem, 5.5vw, 5.4rem); }
.infopunkt-copy > p:not(.eyebrow) { max-width: 680px; color: #4f5149; }
.infopunkt-copy .large-copy { color: var(--ink) !important; }
.archive-guarantee { margin-top: 2rem; padding-top: 18px; border-top: 1px solid rgba(23,25,18,.25); font-size: .78rem; }

.lgs { position: relative; background: var(--green); color: var(--white); overflow: hidden; }
.lgs::before {
  content: "2030"; position: absolute; right: -2vw; top: 0;
  color: rgba(255,255,255,.035); font-family: var(--display); font-size: 27vw; line-height: .8; letter-spacing: -.1em;
}
.lgs-shape {
  position: absolute; width: 540px; height: 540px; left: -280px; bottom: -290px;
  border: 80px solid rgba(216,255,55,.11); border-radius: 50%;
}
.lgs-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(4rem, 9vw, 9rem); }
.lgs-copy h2 { font-size: clamp(3.2rem, 6vw, 5.5rem); }
.lgs-copy > p:not(.eyebrow) { max-width: 560px; color: rgba(255,255,255,.72); font-size: 1.15rem; }
.lgs-copy .lgs-status { margin-top: 1.6rem; padding: 18px; border: 1px solid rgba(216,255,55,.35); color: rgba(255,255,255,.78); font-size: .9rem; }
.lgs-status strong { color: var(--lime); }
.source-links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 2rem; }
.source-links a { color: var(--lime); font-size: .8rem; font-weight: 900; text-underline-offset: 4px; }
.timeline { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.2); }
.timeline li { display: grid; grid-template-columns: 84px 1fr; gap: 22px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.timeline-year { padding-top: 3px; color: var(--lime); font-family: var(--display); font-size: .82rem; text-transform: uppercase; }
.timeline strong { font-family: var(--display); font-size: 1.35rem; letter-spacing: -.03em; }
.timeline p { max-width: 510px; margin: 7px 0 0; color: rgba(255,255,255,.62); font-size: .92rem; }
.timeline li.active { position: relative; }
.timeline li.active::before { content: ""; position: absolute; left: -22px; top: 28px; width: 8px; height: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 8px rgba(216,255,55,.12); }

.dude { background: #0d0f0c; color: var(--white); }
.dude-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 9rem); align-items: center; }
.dude-art { position: relative; min-height: 690px; padding: 28px; background: var(--yellow); color: var(--ink); overflow: hidden; }
.dude-art::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 40%, rgba(255,255,255,.8) 0 2px, transparent 3px); background-size: 30px 30px; opacity: .22; }
.dude-label { position: relative; z-index: 2; display: inline-flex; padding: 8px 12px; border: 2px solid var(--ink); font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.bowling-lane { position: absolute; z-index: 1; width: 120%; height: 350px; left: -10%; top: 130px; background: #d6ad72; border: 4px solid var(--ink); transform: perspective(600px) rotateX(56deg); transform-origin: top; overflow: hidden; }
.lane-line { position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(23,25,18,.35); }
.lane-line.one { left: 28%; } .lane-line.two { left: 50%; } .lane-line.three { left: 72%; }
.bowling-ball { position: absolute; left: 16%; bottom: 18%; width: 90px; height: 90px; background: var(--ink); border-radius: 50%; transform: rotate(-20deg); box-shadow: 12px 15px 0 rgba(0,0,0,.13); }
.bowling-ball i { position: absolute; width: 9px; height: 9px; background: var(--yellow); border-radius: 50%; }
.bowling-ball i:nth-child(1) { top: 25px; left: 38px; } .bowling-ball i:nth-child(2) { top: 34px; left: 55px; } .bowling-ball i:nth-child(3) { top: 46px; left: 42px; }
.pins { position: absolute; right: 12%; top: 9%; width: 130px; height: 90px; }
.pins b { position: absolute; width: 18px; height: 50px; background: var(--white); border: 2px solid var(--ink); border-radius: 50% 50% 42% 42%; }
.pins b::after { content: ""; position: absolute; left: 1px; right: 1px; top: 16px; height: 5px; background: #db3d2f; }
.pins b:nth-child(1) { left: 52px; top: 0; } .pins b:nth-child(2) { left: 31px; top: 21px; } .pins b:nth-child(3) { left: 73px; top: 21px; } .pins b:nth-child(4) { left: 10px; top: 42px; } .pins b:nth-child(5) { left: 52px; top: 42px; } .pins b:nth-child(6) { left: 94px; top: 42px; }
.dude-art > p { position: absolute; z-index: 2; left: 28px; bottom: 24px; margin: 0; font-family: var(--display); font-size: clamp(3.8rem, 6.2vw, 6.5rem); line-height: .84; letter-spacing: -.08em; }
.dude-copy h2 { font-size: clamp(3.3rem, 6vw, 5.7rem); }
.dude-copy > p:not(.eyebrow) { color: rgba(255,255,255,.67); }
.dude-copy .large-copy { color: var(--white) !important; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 2rem 0; padding: 0; }
.tag-list li { padding: 8px 13px; border: 1px solid rgba(255,255,255,.27); border-radius: 999px; color: rgba(255,255,255,.75); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.dude-seal { display: inline-flex; align-items: center; gap: 10px; margin-top: 1.4rem; padding: 10px 14px; border: 1px solid rgba(216,255,55,.45); border-radius: 999px; color: var(--lime); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.dude-seal span { animation: pulse 1.8s ease-in-out infinite; }
.legal-note { display: block; max-width: 420px; margin-top: 1rem; color: rgba(255,255,255,.35); }

.projects { background: var(--paper-warm); }
.projects-heading { display: flex; justify-content: space-between; align-items: end; gap: 3rem; margin-bottom: 4rem; }
.projects-heading h2 { margin-bottom: 0; }
.projects-heading > p { max-width: 400px; color: #5c5e56; }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.project-card { position: relative; min-width: 0; min-height: 390px; padding: clamp(28px, 4vw, 48px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.project-card.featured { background: var(--lime); }
.card-number { font-family: var(--display); font-size: .78rem; }
.status { position: absolute; top: 35px; right: 35px; padding: 6px 10px; border: 1px solid currentColor; border-radius: 999px; font-size: .63rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.project-card h3 { margin: auto 0 1rem; font-size: clamp(2.4rem, 4vw, 4rem); }
.project-card p { max-width: 440px; min-height: 52px; color: #5a5c54; }
.project-card a { display: flex; justify-content: space-between; margin-top: 2.2rem; padding-top: 16px; border-top: 1px solid currentColor; text-decoration: none; font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.archive-teaser { background: #20231b; color: var(--white); overflow: hidden; }
.archive-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 9vw, 9rem); align-items: center; }
.archive-photo { position: relative; max-width: 510px; padding: 15px; border: 1px solid rgba(255,255,255,.22); background: var(--paper); transform: rotate(-1.5deg); }
.archive-photo img { width: 100%; max-height: 640px; object-fit: cover; object-position: center 30%; filter: saturate(.78) contrast(1.06); }
.archive-photo span { position: absolute; left: 18px; bottom: -32px; color: rgba(255,255,255,.4); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.archive-copy p:not(.eyebrow) { max-width: 560px; color: rgba(255,255,255,.65); font-size: 1.05rem; }
.archive-copy .button { margin-top: 1rem; }

.contact { background: var(--lime); }
.contact-inner { text-align: center; }
.contact-inner .eyebrow { justify-content: center; }
.contact-inner h2 { font-size: clamp(3.8rem, 7vw, 7.5rem); }
.contact-inner > p:not(.eyebrow) { max-width: 680px; margin: 0 auto 3rem; font-size: 1.2rem; }
.contact-mail { display: inline-flex; align-items: center; gap: 30px; padding-bottom: 6px; border-bottom: 3px solid var(--ink); text-decoration: none; font-family: var(--display); font-size: clamp(1.2rem, 2.5vw, 2.2rem); }

.site-footer { padding: 48px 0; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.footer-brand { display: grid; grid-template-columns: 34px auto; column-gap: 12px; align-items: center; }
.footer-brand img { grid-row: 1 / 3; width: 34px; }
.footer-brand strong { font-family: var(--display); line-height: 1; }
.footer-brand span { color: rgba(255,255,255,.45); font-size: .7rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 22px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.footer-status { grid-column: 1 / -1; margin: 15px 0 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.32); font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { opacity: .35; } }

/* Archiv und Hinweise */
.subpage { background: var(--paper); }
.subpage .site-header { position: relative; background: var(--ink); }
.archive-hero { padding: 7rem 0 5rem; background: var(--ink); color: var(--white); }
.archive-hero h1 { max-width: 900px; margin-bottom: 2rem; font-size: clamp(4rem, 9vw, 8rem); }
.archive-hero h1 em { color: var(--lime); font-style: normal; }
.archive-hero > .page-shell > p:not(.eyebrow) { max-width: 760px; color: rgba(255,255,255,.65); font-size: 1.25rem; }
.archive-section { padding: 5rem 0 8rem; }
.archive-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.archive-card { display: flex; flex-direction: column; min-height: 430px; padding: 34px; border: 1px solid var(--line); background: var(--white); }
.archive-card .archive-date { font-family: var(--display); color: var(--green); }
.archive-card h2 { margin: auto 0 1.2rem; font-size: clamp(2.5rem, 5vw, 4.5rem); }
.archive-card p { color: #5e6058; }
.archive-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem; }
.archive-actions a { padding: 9px 13px; border: 1px solid var(--ink); border-radius: 999px; text-decoration: none; font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.archive-actions a.primary { background: var(--ink); color: var(--white); }
.archive-index { margin-top: 5rem; }
.archive-index h2 { font-size: clamp(2.6rem, 5vw, 4.6rem); }
.archive-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.archive-link-grid a { min-height: 110px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 800; }
.archive-link-grid a:hover { background: var(--lime); }
.notice-box { margin-top: 3rem; padding: 22px; border-left: 5px solid var(--yellow); background: #fff9d5; }
.notice-box p { margin: 0; }
.infopunkt-hero { position: relative; overflow: hidden; }
.infopunkt-hero::after { content: "2012"; position: absolute; right: 2vw; bottom: -4vw; color: rgba(216,255,55,.08); font-family: var(--display); font-size: 20vw; line-height: .8; letter-spacing: -.08em; }
.infopunkt-hero .page-shell { position: relative; z-index: 1; }
.info-detail { background: var(--paper); }
.info-detail-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.info-detail-image { position: sticky; top: 110px; padding: 14px; background: var(--white); border: 1px solid var(--line); transform: rotate(-1deg); }
.info-detail-image img { width: 100%; image-rendering: auto; }
.info-detail-image span { display: block; padding: 12px 3px 1px; color: #686a62; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.info-detail-copy h2 { font-size: clamp(3.2rem, 6vw, 5.8rem); }
.info-detail-copy h3 { margin: 3rem 0 1rem; font-size: 2rem; }
.info-detail-copy > p:not(.eyebrow) { max-width: 720px; color: #55574f; }
.info-detail-copy .large-copy { color: var(--ink) !important; }
.info-original { background: var(--paper-warm); }
.info-original > .page-shell > h2 { max-width: 900px; font-size: clamp(3rem, 6vw, 5.7rem); }
.info-original-intro { max-width: 780px; font-size: 1.15rem; color: #55574f; }
.info-main-action { margin: 2rem 0 4rem; }
.info-links { margin-top: 0; }
.legal-page { min-height: 65vh; padding: 6rem 0; }
.legal-page h1 { font-size: clamp(3.3rem, 7vw, 6rem); }
.legal-content { max-width: 760px; }
.legal-content h2 { margin-top: 3rem; font-size: 2rem; }
.draft-banner { padding: 16px 20px; background: var(--yellow); font-weight: 800; }
.legal-hero { width: var(--shell); margin: 0 auto 4rem; }
.legal-hero p { margin-bottom: 1rem; }
.legal-main { width: var(--shell); margin: 0 auto; }
.legal-card { max-width: 860px; padding: clamp(28px, 5vw, 60px); border: 1px solid var(--line); background: var(--white); }
.legal-card h2 { margin: 3rem 0 1rem; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 { margin: 2rem 0 .8rem; font-family: var(--body); font-size: 1.1rem; letter-spacing: 0; line-height: 1.3; }
.legal-card address { font-style: normal; }
.legal-card a { text-underline-offset: 4px; }
.legal-card .button { text-decoration: none; }
.legal-note-box { margin-bottom: 2rem; padding: 18px; border-left: 5px solid var(--yellow); background: #fff9d5; }
.legal-note-box p:last-child { margin-bottom: 0; }
.legal-list { padding-left: 1.2rem; }
.legal-list li + li { margin-top: .45rem; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 720px); }
  .site-header { height: 72px; padding-inline: 16px; }
  .nav-toggle { display: grid; place-items: center; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: transparent; color: white; }
  .nav-toggle span:not(.sr-only) { position: absolute; width: 18px; height: 2px; background: currentColor; transition: transform .2s; }
  .nav-toggle span:first-child { transform: translateY(-4px); }
  .nav-toggle span:nth-child(2) { transform: translateY(4px); }
  .nav-open .nav-toggle span:first-child { transform: rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { transform: rotate(-45deg); }
  .site-nav { position: fixed; inset: 72px 0 0; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; padding: 24px; background: var(--ink); transform: translateX(100%); transition: transform .25s; }
  .nav-open .site-nav { transform: none; }
  .site-nav a { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.13); font-family: var(--display); font-size: 1.6rem; letter-spacing: -.03em; text-transform: none; }
  .site-nav .nav-cta { margin-top: 20px; padding-inline: 20px; border: 1px solid var(--lime); text-align: center; }
  .hero { min-height: auto; padding-top: 120px; }
  .hero-grid, .statement-grid, .infopunkt-grid, .lgs-grid, .dude-grid, .archive-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 570px; }
  .hero-register { grid-template-columns: repeat(2, 1fr); }
  .statement-grid { gap: 1.4rem; }
  .section-index { width: 80px; }
  .statement-body { padding-top: 0; }
  .values { grid-template-columns: 1fr; }
  .value-card { min-height: 250px; }
  .value-icon { margin-bottom: 45px; }
  .lgs-grid, .dude-grid { gap: 5rem; }
  .dude-art { min-height: 600px; }
  .projects-heading { align-items: start; flex-direction: column; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 350px; }
  .archive-photo { max-width: 520px; }
  .archive-cards { grid-template-columns: 1fr; }
  .archive-link-grid { grid-template-columns: repeat(2, 1fr); }
  .info-detail-grid { grid-template-columns: 1fr; }
  .info-detail-image { position: relative; top: auto; max-width: 520px; }
}

@media (max-width: 560px) {
  .section-pad { padding: 5rem 0; }
  .brand-copy small { display: none; }
  .hero h1 { font-size: clamp(3.15rem, 13.7vw, 4.4rem); letter-spacing: -.065em; }
  .hero-visual { min-height: 500px; }
  .tower-frame { width: 76%; }
  .orbit-one { width: 430px; height: 430px; }
  .orbit-two { width: 310px; height: 310px; }
  .hero-year { right: 0; top: 48px; }
  .hero-register { grid-template-columns: 1fr; }
  .hero-register div { border-bottom: 1px solid rgba(255,255,255,.1); }
  h2 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .values { margin-top: 4rem; }
  .dude-art { min-height: 520px; }
  .dude-art > p { font-size: 3.6rem; }
  .dude-copy h2 { font-size: clamp(2.8rem, 12vw, 4rem); }
  .bowling-lane { top: 115px; height: 300px; }
  .project-card { min-height: 330px; }
  .status { top: 28px; right: 25px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .archive-link-grid { grid-template-columns: 1fr; }
  .archive-hero { padding-top: 5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
