/* ============================================================
   kidsarethefuture.ch — Edition 001 / Bern / 2026
   Design system: Swiss editorial precision × human intervention
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --white:  #F7F6F1;
  --paper:  #F3F1E8;
  --black:  #111111;
  --grey:   #D8D8D4;
  --grey-2: #8F8F8A;

  --green:  #B7FF37;
  --blue:   #246BFF;
  --yellow: #FFD629;
  --coral:  #FF5D52;
  --pink:   #FF79C6;

  --bds:    #1E2B26;

  --font-display: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SF Mono', Menlo, monospace;
  --font-hand: 'Caveat', cursive;

  --pad-x: clamp(1.25rem, 4vw, 4rem);
  --header-h: 64px;
  --line: 1px solid var(--black);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

html { overflow-x: clip; }

body {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* subtle paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--green); color: var(--black); }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ---------- Type utilities ---------- */
.mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hand {
  font-family: var(--font-hand);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.h-huge, .h-large, .h-medium, .statement, .giant-number,
.hero-title, .footer-huge, .poster-title, .call-sub, .edition-num {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-wrap: balance;
}

.h-huge   { font-size: clamp(3.5rem, 12vw, 11rem); line-height: 0.86; }
.h-large  { font-size: clamp(2.75rem, 8.5vw, 7.5rem); line-height: 0.88; }
.h-medium { font-size: clamp(2rem, 5.5vw, 4.5rem); }

.accent-green  { color: var(--green); -webkit-text-stroke: 2px var(--black); }
.accent-blue   { color: var(--blue); }
.accent-yellow { color: var(--yellow); -webkit-text-stroke: 2px var(--black); }
.accent-coral  { color: var(--coral); }
.accent-pink   { color: var(--pink); }

.prose { max-width: 38em; }
.prose p { margin-bottom: 1.1em; }
.prose p:last-child { margin-bottom: 0; }

/* ---------- Layout primitives ---------- */
.container {
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  max-width: 1680px;
  margin-inline: auto;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}

.col-meta {
  grid-column: 1 / span 2;
  border-top: var(--line);
  padding-top: 0.6rem;
}
.col-meta .section-index { display: block; }

.col-content { grid-column: 4 / span 8; }

@media (max-width: 860px) {
  .col-meta { grid-column: 1 / -1; }
  .col-content { grid-column: 1 / -1; }
}

.section {
  padding: clamp(5rem, 11vw, 10rem) 0;
  position: relative;
}

.section > .container + .container { margin-top: clamp(3rem, 6vw, 5.5rem); }

.section h2 { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }

.statement {
  font-size: clamp(2.75rem, 9vw, 8rem);
  margin-top: clamp(3rem, 7vw, 6rem);
}
.statement-right { text-align: right; }

.grid-note { color: var(--grey-2); margin-top: 2rem; }
.inline-note { white-space: nowrap; font-size: 0.65rem; }
.status-tag {
  display: inline-block;
  border: var(--line);
  padding: 0.5rem 0.9rem;
  margin-top: 2rem;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .reveal.in-view { transition: none; }
}

/* ============================================================
   DOSSIER POPUP (Eingabe BDS)
   ============================================================ */
.dossier-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(17, 17, 17, 0.55);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.dossier-overlay[hidden] { display: none; }

.dossier-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: 10px 10px 0 var(--green);
  max-width: 580px;
  width: 100%;
  padding: clamp(1.5rem, 4vw, 2.75rem);
}
.dossier-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  border: var(--line);
  background: #fff;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1;
}
.dossier-close:hover { background: var(--grey); }
.dossier-tag { color: var(--grey-2); margin-bottom: 1.1rem; }
.dossier-title {
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 0.9;
}
.dossier-hand {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--coral);
  transform: rotate(-2deg);
  display: inline-block;
  margin: 0.75rem 0 1rem;
}
.dossier-copy { margin-bottom: 1.75rem; max-width: 34em; }
.dossier-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
body.dossier-open { overflow: hidden; }

@media (prefers-reduced-motion: no-preference) {
  .dossier-overlay:not([hidden]) .dossier-card {
    animation: dossier-in 0.35s var(--ease-out);
  }
  @keyframes dossier-in {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
  }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: var(--line);
}
/* blur lives on a pseudo-element: backdrop-filter on the header itself would
   make it the containing block for the fixed mobile nav panel */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(247, 246, 241, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  height: var(--header-h);
  padding-inline: var(--pad-x);
  max-width: 1680px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark-ch { color: var(--grey-2); }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav ul {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}
.main-nav ul a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}
.main-nav ul a:hover { border-bottom-color: var(--black); }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--black);
  color: var(--white);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--green); color: var(--black); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 10px 4px;
}
.nav-toggle-line {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--black);
  transition: transform 0.25s var(--ease-out);
}

@media (max-width: 1020px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: clamp(2rem, 8vw, 4rem) var(--pad-x);
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    overflow-y: auto;
  }
  body.nav-open .main-nav { transform: none; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-toggle-line:nth-child(1) { transform: translateY(4.75px) rotate(45deg); }
  body.nav-open .nav-toggle-line:nth-child(2) { transform: translateY(-4.75px) rotate(-45deg); }

  .main-nav ul { flex-direction: column; gap: 0; width: 100%; }
  .main-nav ul li { border-bottom: var(--line); }
  .main-nav ul a {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    display: block;
    padding: 1rem 0;
    border-bottom: none;
  }
  .nav-cta { font-size: 0.85rem; padding: 0.9rem 1.6rem; }
}
@media (prefers-reduced-motion: reduce) {
  .main-nav { transition: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-scroll { height: 320vh; }

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.hero-frame {
  position: relative;
  height: 100%;
  padding: calc(var(--header-h) + 2vh) var(--pad-x) 2rem;
  max-width: 1680px;
  margin-inline: auto;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.5rem;
  padding-top: 1.5vh;
  color: var(--black);
}

.hero-title {
  margin-top: 2vh;
  font-size: clamp(3.5rem, 13vw, 13rem);
  line-height: 0.84;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.hero-line { display: block; }
.dot { color: var(--green); -webkit-text-stroke: 3px var(--black); }

.hero-hand {
  position: absolute;
  right: clamp(1rem, 9vw, 10rem);
  top: calc(var(--header-h) + 16vh);
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  transform: rotate(-5deg);
  z-index: 3;
}

.hero-sneaker {
  position: absolute;
  right: clamp(0.5rem, 2vw, 3rem);
  bottom: 9vh;
  width: min(46vw, 660px);
  z-index: 2;
}

.sneaker-caption {
  display: flex;
  justify-content: space-between;
  border-top: var(--line);
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  font-size: 0.65rem;
}

.hero-credit {
  position: absolute;
  left: var(--pad-x);
  bottom: 2.5rem;
}

.scroll-prompt {
  position: absolute;
  right: var(--pad-x);
  bottom: 2.5rem;
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-prompt { animation: nudge 2.2s ease-in-out infinite; }
  @keyframes nudge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }
}

@media (max-width: 860px) {
  .hero-scroll { height: 260vh; }
  .hero-frame { display: flex; flex-direction: column; }
  .hero-title { font-size: clamp(4.5rem, 22vw, 9rem); margin-top: 2vh; }
  .hero-hand {
    position: static;
    align-self: flex-end;
    margin: 1vh 6vw 0 0;
    font-size: 2rem;
  }
  .hero-sneaker {
    position: relative;
    right: auto; bottom: auto;
    width: min(92vw, 520px);
    margin: 3vh auto 0;
  }
  .hero-credit { bottom: 1.25rem; }
  .scroll-prompt { bottom: 1.25rem; }
}

/* sneaker interventions */
.sticker-mono { font-family: var(--font-mono); font-size: 19px; font-weight: 500; }
.sticker-mono.small { font-size: 11px; letter-spacing: 0.1em; }
.sneaker-hand { font-family: var(--font-hand); font-size: 44px; font-weight: 600; }

.mark { opacity: 0; }
.mark path { transition: none; }

[data-sneaker].step-1 .mark-1,
[data-sneaker].step-2 .mark-1, [data-sneaker].step-2 .mark-2,
[data-sneaker].step-3 .mark-1, [data-sneaker].step-3 .mark-2, [data-sneaker].step-3 .mark-3,
[data-sneaker].step-4 .mark-1, [data-sneaker].step-4 .mark-2, [data-sneaker].step-4 .mark-3, [data-sneaker].step-4 .mark-4,
[data-sneaker].step-5 .mark-1, [data-sneaker].step-5 .mark-2, [data-sneaker].step-5 .mark-3, [data-sneaker].step-5 .mark-4, [data-sneaker].step-5 .mark-5 {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .mark {
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
    transform: scale(0.92);
    transform-origin: center;
    transform-box: fill-box;
  }
  [data-sneaker].step-1 .mark-1,
  [data-sneaker].step-2 .mark-1, [data-sneaker].step-2 .mark-2,
  [data-sneaker].step-3 .mark-1, [data-sneaker].step-3 .mark-2, [data-sneaker].step-3 .mark-3,
  [data-sneaker].step-4 .mark-1, [data-sneaker].step-4 .mark-2, [data-sneaker].step-4 .mark-3, [data-sneaker].step-4 .mark-4,
  [data-sneaker].step-5 .mark-1, [data-sneaker].step-5 .mark-2, [data-sneaker].step-5 .mark-3, [data-sneaker].step-5 .mark-4, [data-sneaker].step-5 .mark-5 {
    transform: scale(1);
  }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: var(--line);
  border-bottom: var(--line);
  overflow: hidden;
  padding: 0.8rem 0;
  background: var(--white);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  font-size: 0.78rem;
}
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: marquee 36s linear infinite; }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
}

/* ============================================================
   WHY
   ============================================================ */
.day-list {
  list-style: none;
  margin-top: 2.5rem;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.day-list li { border-top: var(--line); padding: 0.7rem 0; }
.day-list li:last-child { border-bottom: var(--line); }

/* ============================================================
   ORIGIN
   ============================================================ */
.giant-number {
  font-size: clamp(6rem, 22vw, 20rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
}
.caption-under { margin-top: 0.75rem; margin-bottom: 2.5rem; }

.archive-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.archive-box {
  border: var(--line);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  aspect-ratio: 4 / 3;
  justify-content: space-between;
  background: #fff;
}
.archive-box:nth-child(2) { transform: rotate(0.6deg); }
.archive-box:nth-child(3) { transform: rotate(-0.8deg); }
.archive-tag {
  align-self: flex-start;
  border: var(--line);
  padding: 0.2rem 0.5rem;
}
.archive-tag.accent { background: var(--green); border-color: var(--black); }

@media (max-width: 860px) {
  .archive-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PROCESS
   ============================================================ */
.steps {
  list-style: none;
  margin-top: clamp(2rem, 5vw, 4rem);
}
.step {
  display: grid;
  grid-template-columns: minmax(60px, 1fr) minmax(0, 7fr) minmax(0, 3fr);
  gap: clamp(1rem, 3vw, 3rem);
  border-top: var(--line);
  padding: clamp(1.75rem, 4vw, 3rem) 0;
  align-items: start;
}
.step:last-child { border-bottom: var(--line); }

.step-num { font-size: 0.9rem; padding-top: 0.6rem; }

.step-title {
  font-size: clamp(1.75rem, 4.2vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 0.9rem;
}
.step-copy { max-width: 34em; }
.step-copy.no-list { font-weight: 700; font-size: 1.15rem; line-height: 1.5; }
.step-note { display: block; margin-top: 0.9rem; color: var(--grey-2); }

.step-arrow { width: clamp(80px, 10vw, 130px); justify-self: end; margin-top: 0.5rem; }

.choice-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  margin-top: 0.5rem;
}
.choice { padding: clamp(1.25rem, 2.5vw, 2rem); border: var(--line); }
.choice-keep { background: var(--green); transform: rotate(-0.8deg); }
.choice-forward { background: #fff; transform: rotate(0.5deg); }
.choice-label {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 0.6rem;
}
.choice-copy { font-size: 0.95rem; }
.choice-or { font-size: 2.2rem; transform: rotate(-8deg); }

@media (max-width: 860px) {
  .step { grid-template-columns: 1fr; gap: 0.75rem; }
  .step-arrow { display: none; }
  .choice-split { grid-template-columns: 1fr; justify-items: start; }
}

/* ============================================================
   ARTISTS
   ============================================================ */
.discipline-cloud {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.5rem;
  max-width: 44em;
}
.discipline-cloud li {
  border: var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: #fff;
  transition: background 0.2s, transform 0.2s;
}
.discipline-cloud li:hover { background: var(--yellow); transform: rotate(-1.5deg); }

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
.artist-card {
  border: var(--line);
  padding: 1.25rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.artist-portrait {
  aspect-ratio: 4 / 5;
  background: var(--grey);
  position: relative;
  overflow: hidden;
}
.portrait-cross::before, .portrait-cross::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top right, transparent calc(50% - 0.5px), var(--grey-2) 50%, transparent calc(50% + 0.5px));
}
.portrait-cross::after {
  background:
    linear-gradient(to bottom right, transparent calc(50% - 0.5px), var(--grey-2) 50%, transparent calc(50% + 0.5px));
}
.artist-num { color: var(--grey-2); }
.artist-name { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.01em; }
.artist-meta { display: flex; flex-direction: column; gap: 0.3rem; border-top: var(--line); padding-top: 0.7rem; }
.artist-meta div { display: flex; justify-content: space-between; }
.artist-meta dt { color: var(--grey-2); }
.artist-question { margin-top: 0.5rem; border-top: var(--line); padding-top: 0.7rem; }
.artist-answer { font-size: 1.5rem; transform: rotate(-2deg); }

@media (max-width: 860px) {
  .artist-grid { grid-template-columns: 1fr; }
  .artist-portrait { aspect-ratio: 16 / 7; }
}

/* sneaker box */
.sneakerbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--black);
  transform: rotate(-0.6deg);
  box-shadow: 8px 8px 0 var(--grey);
}
.box-lid {
  background: var(--black);
  color: var(--white);
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}
.box-brand { font-weight: 800; font-size: clamp(1.2rem, 2.2vw, 1.8rem); letter-spacing: -0.02em; }
.box-fields { display: flex; flex-direction: column; gap: 0.8rem; }
.box-fields div { display: flex; gap: 0.5rem; border-top: 1px solid rgba(247,246,241,0.3); padding-top: 0.8rem; }
.box-fields dt { color: var(--grey); }

.box-inside {
  background: #fff;
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.box-statement {
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.92;
}
.box-sub { font-weight: 600; }
.box-rules { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.box-please { font-size: 2rem; color: var(--blue); transform: rotate(-3deg); margin-top: auto; }

@media (max-width: 860px) {
  .sneakerbox { grid-template-columns: 1fr; }
}

/* ============================================================
   KIDS COME FIRST
   ============================================================ */
.section-first { padding-bottom: 0; }
.section-first .sub { margin-top: 1rem; }

.choice-viewport {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 78vh;
  margin-top: clamp(3rem, 7vw, 6rem);
  position: relative;
  border-top: var(--line);
}
.choice-half {
  padding: clamp(2.5rem, 6vw, 5rem) var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.choice-half-keep { background: var(--green); }
.choice-half-forward { background: var(--white); border-left: var(--line); }

.choice-big {
  font-size: clamp(3rem, 7.5vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.88;
}
.dark-dot { color: var(--black); }
.choice-doodle { width: clamp(80px, 10vw, 140px); }
.choice-text { max-width: 24em; font-weight: 600; font-size: 1.1rem; margin-top: auto; }

.choice-middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  width: clamp(4.5rem, 8vw, 6.5rem);
  height: clamp(4.5rem, 8vw, 6.5rem);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 2;
}

@media (max-width: 860px) {
  .choice-viewport { grid-template-columns: 1fr; min-height: 0; }
  .choice-half-forward { border-left: none; border-top: var(--line); }
  .choice-middle { top: auto; bottom: auto; }
  .choice-half-keep { padding-bottom: 5rem; }
}

.ethics-note {
  border: 2px solid var(--black);
  background: #fff;
  padding: clamp(1.5rem, 4vw, 3rem);
  margin: clamp(3rem, 7vw, 5rem) 0;
  max-width: 46em;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  line-height: 1.5;
}
.ethics-note p { margin-bottom: 0.8em; }
.ethics-note em { font-style: normal; background: var(--yellow); padding: 0 0.25em; }
.ethics-final {
  font-weight: 900;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0 !important;
}

/* ============================================================
   SAFE BY DESIGN
   ============================================================ */
.section-safe { background: var(--black); color: var(--white); }
.section-safe .col-meta { border-top-color: var(--white); }
.section-safe .accent-yellow { -webkit-text-stroke: 0; }

.principles {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 2.5rem;
}
.principles li {
  border: 1px solid var(--white);
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
}
.principles li:nth-child(odd) { transform: rotate(-0.6deg); }

.section-safe .prose { color: var(--grey); }
.section-safe .prose strong { color: var(--white); }

/* ============================================================
   DRAW
   ============================================================ */
.draw-sub { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
.draw-hint { font-size: 2rem; color: var(--coral); transform: rotate(-3deg); display: inline-block; margin-top: 0.75rem; }

.draw-stage { max-width: 1100px; }

.draw-frame {
  position: relative;
  border: 2px solid var(--black);
  background: #fff;
  box-shadow: 10px 10px 0 var(--grey);
}
#draw-canvas {
  display: block;
  width: 100%;
  height: clamp(320px, 55vh, 560px);
  touch-action: none;
  cursor: crosshair;
}
.draw-reveal {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  padding: 0.6rem 1.1rem;
  font-size: 0.8rem;
  pointer-events: none;
  white-space: nowrap;
}

.draw-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.draw-colors { display: flex; gap: 0.75rem; }
.draw-color {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c);
  border: 2px solid var(--black);
  transition: transform 0.15s var(--ease-out);
}
.draw-color:hover { transform: scale(1.12); }
.draw-color.is-active { box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--black); }

.draw-actions { display: flex; gap: 0.6rem; }
.draw-btn {
  border: var(--line);
  padding: 0.65rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  background: #fff;
  transition: background 0.15s;
}
.draw-btn:hover { background: var(--grey); }
.draw-btn-done { background: var(--black); color: var(--white); }
.draw-btn-done:hover { background: var(--blue); color: #fff; }

.draw-note { color: var(--grey-2); margin-top: 1rem; }

/* ============================================================
   ART CAR
   ============================================================ */
.car-stage { max-width: 1200px; }

.car-frame {
  position: relative;
  border: 2px solid var(--black);
  background: #fff;
  box-shadow: 10px 10px 0 var(--grey);
  overflow: hidden;
}
.car-layer { display: block; width: 100%; height: auto; }
.car-fills { position: relative; }
.car-lines {
  position: absolute;
  inset: 0;
  height: 100%;
  pointer-events: none;
}
#car-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: none;
  cursor: crosshair;
  clip-path: url(#car-clip);
}

.car-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  border-top: var(--line);
  margin-top: 1.5rem;
  padding-top: 1rem;
}
.car-meta div { display: flex; gap: 0.35rem; }
.car-meta dt { color: var(--grey-2); }

/* ============================================================
   PROJECT DAY
   ============================================================ */
.day-flow {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 0;
  font-weight: 900;
  font-size: clamp(1.3rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
}
.day-flow li { display: flex; align-items: center; }
.day-flow li:not(:last-child)::after {
  content: "→";
  color: var(--blue);
  margin: 0 clamp(0.6rem, 1.5vw, 1.2rem);
  font-weight: 400;
}
.day-flow-final { background: var(--yellow); padding: 0.1em 0.3em; transform: rotate(-1deg); }

.day-statement {
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-top: clamp(3rem, 6vw, 5rem);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
.gallery-card { display: flex; flex-direction: column; gap: 0.5rem; }
.gallery-object {
  aspect-ratio: 1;
  border: 1px dashed var(--grey-2);
  display: grid;
  place-items: center;
  background: #fff;
  transition: border-color 0.2s, transform 0.2s;
}
.gallery-card:hover .gallery-object { border-color: var(--black); transform: rotate(-0.8deg); }
.gallery-ph {
  font-family: var(--font-hand);
  font-size: 3rem;
  color: var(--grey-2);
}
.gallery-ref { font-size: 0.68rem; }
.gallery-status { color: var(--grey-2); font-size: 0.62rem; }

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  border-top: var(--line);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
}
.legend-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.legend-swatch { width: 12px; height: 12px; border: 1px solid var(--black); display: inline-block; }
.swatch-kept { background: var(--green); }
.swatch-archive { background: #fff; }
.swatch-auction { background: var(--yellow); }
.swatch-sold { background: var(--black); }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   AUCTION
   ============================================================ */
.auction-object {
  display: grid;
  grid-template-columns: 3fr 2fr;
  border: var(--line);
  background: #fff;
}
.auction-visual {
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  place-items: center;
  border-right: var(--line);
}
.auction-sneaker { width: min(100%, 480px); }
.auction-data {
  padding: clamp(1.5rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.auction-ref { color: var(--grey-2); }
.auction-title { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 900; letter-spacing: -0.02em; line-height: 0.9; }
.auction-meta { display: flex; flex-direction: column; gap: 0.55rem; }
.auction-meta div { display: flex; justify-content: space-between; border-top: var(--line); padding-top: 0.55rem; }
.auction-meta dt { color: var(--grey-2); }
.auction-bid { font-size: 1.1rem; }
.auction-cta {
  font-weight: 900;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  letter-spacing: -0.01em;
  color: var(--grey-2);
  margin-top: auto;
}
.auction-coming {
  background: var(--yellow);
  border: var(--line);
  align-self: flex-start;
  padding: 0.45rem 0.8rem;
  transform: rotate(-1.5deg);
}

@media (max-width: 860px) {
  .auction-object { grid-template-columns: 1fr; }
  .auction-visual { border-right: none; border-bottom: var(--line); }
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partner-list { border-top: var(--line); }
.partner-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 1rem 2rem;
  padding: 1.4rem 0;
  border-bottom: var(--line);
}
.partner-row dt { color: var(--grey-2); padding-top: 0.3rem; }
.partner-row dd { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; letter-spacing: -0.01em; }
.partner-tba { color: var(--grey-2); font-weight: 500; font-style: italic; }
.partner-note { display: inline-block; margin-top: 0.5rem; color: var(--grey-2); font-size: 0.62rem; }

@media (max-width: 700px) {
  .partner-row { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* Berner Design Stiftung block */
.bds-block {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 3fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  border: 2px solid var(--bds);
  background: #fff;
  padding: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.bds-logo svg { width: min(100%, 220px); }
.bds-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 50px;
  letter-spacing: -1px;
}
.bds-text { display: flex; flex-direction: column; gap: 0.9rem; max-width: 42em; }
.bds-tag { color: var(--bds); }
.bds-disclaimer {
  border-left: 4px solid var(--bds);
  padding-left: 1rem;
  font-size: 0.95rem;
}
.bds-status { color: var(--grey-2); }

@media (max-width: 700px) {
  .bds-block { grid-template-columns: 1fr; }
}

/* ============================================================
   CALLS + FORM
   ============================================================ */
.call-sub {
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  margin: -0.5rem 0 2rem;
  color: var(--grey-2);
}

.artist-form {
  max-width: 900px;
  border: var(--line);
  background: #fff;
  padding: clamp(1.5rem, 4vw, 3rem);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-2);
}
.form-field input,
.form-field textarea {
  font: inherit;
  border: none;
  border-bottom: 2px solid var(--black);
  background: transparent;
  padding: 0.5rem 0;
  border-radius: 0;
}
.form-field textarea { resize: vertical; }
.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: none;
  border-bottom-color: var(--blue);
  box-shadow: 0 2px 0 var(--blue);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--grey-2); }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  align-items: center;
}
.btn {
  display: inline-block;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 1rem 1.8rem;
  border: 2px solid var(--black);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--green); color: var(--black); transform: rotate(-1deg); }
.btn-secondary { background: transparent; color: var(--black); }
.btn-secondary:hover { background: var(--yellow); }
.btn-note { font-size: 0.6rem; letter-spacing: 0.06em; }
.form-note { margin-top: 1.25rem; color: var(--blue); }

@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
}

.partner-call {
  margin-top: clamp(3rem, 7vw, 5rem);
  border-top: var(--line);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  max-width: 900px;
}
.partner-call-copy { max-width: 36em; margin: 1.5rem 0 2rem; }

/* ============================================================
   EDITIONS
   ============================================================ */
.edition-list { list-style: none; border-top: var(--line); }
.edition-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr) minmax(0, 2fr);
  align-items: baseline;
  gap: 1rem;
  border-bottom: var(--line);
  padding: 1rem 0;
  color: var(--grey);
}
.edition-row.edition-active { color: var(--black); }
.edition-num { font-size: clamp(2.5rem, 7vw, 6rem); }
.edition-place { font-size: clamp(1.5rem, 4vw, 3.5rem); font-weight: 900; letter-spacing: -0.02em; }
.edition-active .edition-num { background: var(--green); padding: 0 0.15em; }
.edition-year { color: var(--grey-2); text-align: right; }

.edition-claim {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-top: 2.5rem;
}

/* ============================================================
   POSTER
   ============================================================ */
.section-poster { background: var(--grey); }
.poster {
  position: relative;
  background: var(--paper);
  border: var(--line);
  padding: clamp(3rem, 9vw, 8rem) var(--pad-x) clamp(2rem, 5vw, 4rem);
  transform: rotate(-0.5deg);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
  overflow: hidden;
}
.poster-title {
  position: relative;
  z-index: 1;
  font-size: clamp(3.5rem, 13vw, 13rem);
  line-height: 0.84;
  letter-spacing: -0.04em;
  text-align: center;
}
.poster-scribbles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.poster-footer {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  border-top: var(--line);
  margin-top: clamp(3rem, 8vw, 7rem);
  padding-top: 1rem;
}

.tape {
  position: absolute;
  width: 110px;
  height: 34px;
  background: rgba(216, 216, 212, 0.75);
  border-left: 1px dashed rgba(17,17,17,0.2);
  border-right: 1px dashed rgba(17,17,17,0.2);
  z-index: 4;
}
.tape-tl { top: 18px; left: -24px; transform: rotate(-38deg); }
.tape-tr { top: 18px; right: -24px; transform: rotate(38deg); }
.tape-bl { bottom: 18px; left: -24px; transform: rotate(32deg); }
.tape-br { bottom: 18px; right: -24px; transform: rotate(-32deg); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: clamp(5rem, 10vw, 9rem) 0 2rem;
}
.footer-huge {
  font-size: clamp(3.5rem, 13vw, 13rem);
  line-height: 0.84;
  letter-spacing: -0.04em;
}
.site-footer .accent-green { -webkit-text-stroke: 0; }
.footer-sub {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--pink);
  transform: rotate(-3deg);
  display: inline-block;
  margin: 1.5rem 0 0 clamp(1rem, 12vw, 14rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid rgba(247, 246, 241, 0.3);
  margin-top: clamp(3rem, 7vw, 6rem);
  padding-top: clamp(2rem, 4vw, 3rem);
}
.footer-label { color: var(--grey-2); margin-bottom: 1rem; }
.footer-col p { margin-bottom: 0.75rem; }
.footer-init { color: var(--grey); font-size: 0.95rem; }
.footer-link { color: var(--white); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.footer-link:hover { color: var(--green); }
.footer-status { color: var(--grey); line-height: 2; }
.footer-bds { color: var(--grey-2); font-size: 0.8rem; max-width: 28em; }

.footer-hand {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--green);
  transform: rotate(-2deg);
  display: inline-block;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  border-top: 1px solid rgba(247, 246, 241, 0.3);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  color: var(--grey-2);
}
.footer-legal .footer-link { color: var(--grey-2); }
.footer-legal .footer-link:hover { color: var(--green); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; }
}
