/* ===============================================================
   Dokitec — Entwurf № 2 „Papier & Funke"
   Editorial, hell, typografiegetrieben. Archivo Expanded ×
   Instrument Serif Italic × IBM Plex Mono.
   =============================================================== */

:root {
  --paper: #F3EFE7;
  --paper-2: #EAE4D8;
  --paper-3: #E1DACB;
  --ink: #161412;
  --ink-60: rgba(22, 20, 18, 0.6);
  --ink-40: rgba(22, 20, 18, 0.4);
  --ink-15: rgba(22, 20, 18, 0.15);
  --spark: #FF4A1F;

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --ease: cubic-bezier(0.65, 0.05, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-cursor, body.no-cursor a, body.no-cursor button { cursor: none; }

::selection { background: var(--spark); color: var(--paper); }

h1, h2, h3, h4 { margin: 0; font-weight: 800; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

:focus-visible { outline: 2px solid var(--spark); outline-offset: 4px; }

/* ---------- Grain ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 200;
  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.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1.5%); }
  50% { transform: translate(1.5%, -2%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(2%, 2%); }
}

/* ---------- Preloader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: transform 0.9s var(--ease) 1.15s;
}
.loader-word {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--paper);
  display: flex;
  overflow: hidden;
}
.loader-word span {
  display: inline-block;
  transform: translateY(120%);
  animation: loader-rise 0.7s var(--ease-out) forwards;
}
.loader-word span:nth-child(2) { animation-delay: 0.05s; }
.loader-word span:nth-child(3) { animation-delay: 0.1s; }
.loader-word span:nth-child(4) { animation-delay: 0.15s; }
.loader-word span:nth-child(5) { animation-delay: 0.2s; }
.loader-word span:nth-child(6) { animation-delay: 0.25s; }
.loader-word span:nth-child(7) { animation-delay: 0.3s; }
@keyframes loader-rise { to { transform: translateY(0); } }

body.loaded .loader { transform: translateY(-100%); }
body.loaded .loader-word { animation: loader-fade 0.4s forwards; }
@keyframes loader-fade { to { opacity: 0; } }

/* ---------- Custom Cursor ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--spark);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
              background 0.3s var(--ease-out);
  display: none;
  align-items: center;
  justify-content: center;
}
body.no-cursor .cursor { display: flex; }
.cursor.grow { width: 56px; height: 56px; background: var(--ink); }
.cursor.label { width: 88px; height: 88px; background: var(--spark); }
.cursor-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--paper);
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.cursor.label .cursor-label { opacity: 1; }

/* ---------- Header ---------- */
.bar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem var(--pad);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  transition: background 0.4s, box-shadow 0.4s;
}
.bar.scrolled {
  background: rgba(243, 239, 231, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--ink-15);
}
.bar-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.bar-brand sup { color: var(--spark); font-weight: 500; }
.bar-nav {
  display: flex;
  gap: 1.75rem;
  margin-inline: auto;
}
.bar-nav a { position: relative; padding-block: 0.2rem; }
.bar-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.bar-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.bar-meta {
  display: flex;
  gap: 1.25rem;
  color: var(--ink-60);
}
.bar-clock { color: var(--ink); }
.bar-menu { display: none; }

/* ---------- Overlay-Menü ---------- */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease);
  visibility: hidden;
}
body.menu-open .overlay { clip-path: inset(0 0 0% 0); visibility: visible; }
body.menu-open .bar { background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
body.menu-open .bar-brand { color: var(--paper); transition: color 0.3s 0.2s; }
.overlay-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.overlay-nav a {
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
}
.overlay-nav a:hover { color: var(--spark); }
.overlay-nav a em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.9rem;
  vertical-align: super;
  color: var(--spark);
  margin-right: 0.75rem;
}
body.menu-open .overlay-nav a { opacity: 1; transform: none; }
body.menu-open .overlay-nav a:nth-child(1) { transition-delay: 0.25s; }
body.menu-open .overlay-nav a:nth-child(2) { transition-delay: 0.32s; }
body.menu-open .overlay-nav a:nth-child(3) { transition-delay: 0.39s; }
body.menu-open .overlay-nav a:nth-child(4) { transition-delay: 0.46s; }
.overlay-foot {
  position: absolute;
  bottom: var(--pad);
  inset-inline: var(--pad);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(243, 239, 231, 0.6);
}

/* ---------- Sektions-Meta ---------- */
.sect-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-60);
  border-top: 1px solid var(--ink);
  padding-top: 0.75rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.sect-index { color: var(--spark); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--pad) + 4rem) var(--pad) calc(var(--pad) + 5rem);
  position: relative;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-60);
  margin-bottom: auto;
}
.hero-line {
  font-size: clamp(2.6rem, 10.5vw, 10.5rem);
  font-weight: 800;
  font-stretch: 115%;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.92;
  margin-block: 1.5rem 2.5rem;
}
.hl-row { display: block; }
.hl-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--spark);
  margin-left: 0.06em;
}
/* Buchstaben-Stagger (Spans via JS) */
.hl-char {
  display: inline-block;
  transform: translateY(115%) rotate(4deg);
  animation: char-rise 0.85s var(--ease-out) forwards;
  animation-delay: calc(var(--ci) * 0.028s + 0.15s);
}
.hl-row, .hl-serif, .hl-word { display: inline-block; overflow: hidden; vertical-align: bottom; white-space: nowrap; }
.hl-row { display: block; padding-bottom: 0.06em; margin-bottom: -0.06em; }
@keyframes char-rise { to { transform: translateY(0) rotate(0); } }

.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.hero-note {
  max-width: 34rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-60);
}
.hero-badge {
  position: relative;
  width: 120px;
  height: 120px;
  flex: none;
}
.hero-badge svg { width: 100%; height: 100%; animation: spin 14s linear infinite; }
.hero-badge text {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  fill: var(--ink);
}
.hero-badge-core {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--spark);
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-scroll {
  position: absolute;
  bottom: var(--pad);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-40);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll-line {
  width: 1px;
  height: 42px;
  background: var(--ink-15);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -100%;
  height: 100%;
  background: var(--spark);
  animation: drip 2s var(--ease) infinite;
}
@keyframes drip { 60%, 100% { top: 100%; } }

/* ---------- Ticker ---------- */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  padding-block: clamp(0.8rem, 2vw, 1.4rem);
  background: var(--ink);
  color: var(--paper);
}
.ticker-track {
  display: flex;
  align-items: baseline;
  gap: 2.5rem;
  width: max-content;
  animation: ticker-run 26s linear infinite;
}
.ticker-track span {
  font-size: clamp(1.4rem, 3.4vw, 2.6rem);
  font-weight: 700;
  font-stretch: 115%;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.ticker-serif {
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-weight: 400 !important;
  font-stretch: 100% !important;
  text-transform: none !important;
}
.ticker-track i { color: var(--spark); font-style: normal; font-size: 1.4rem; }
@keyframes ticker-run { to { transform: translateX(-50%); } }

/* ---------- Manifest ---------- */
.manifest { padding: clamp(5rem, 12vw, 10rem) var(--pad); }
.manifest-text {
  font-size: clamp(1.8rem, 4.6vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 62rem;
}
.manifest-text .mw {
  color: var(--ink-15);
  transition: color 0.35s linear;
}
.manifest-text .mw.on { color: var(--ink); }
.manifest-sub {
  margin-top: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--ink-60);
  max-width: 30rem;
}
.manifest-sub em { color: var(--spark); font-style: normal; }

/* ---------- Zahlen ---------- */
.figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--ink);
}
.figure {
  padding: clamp(1.5rem, 3.5vw, 3rem) var(--pad);
  border-right: 1px solid var(--ink-15);
}
.figure:last-child { border-right: none; }
.figure-num {
  display: block;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  font-stretch: 115%;
  letter-spacing: -0.03em;
  line-height: 1;
}
.figure-num b { font-weight: inherit; }
.figure-label {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-60);
}

/* ---------- Marken-Index ---------- */
.index { padding: clamp(5rem, 12vw, 10rem) var(--pad) clamp(4rem, 8vw, 7rem); }
.index-title {
  font-size: clamp(2.6rem, 7.5vw, 6rem);
  font-stretch: 115%;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.index-title .serif { color: var(--spark); text-transform: none; font-size: 0.95em; }

.index-list { border-top: 1px solid var(--ink); }
.index-row {
  position: relative;
  display: grid;
  grid-template-columns: 4rem 1fr auto 3rem;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.2rem, 3vw, 2rem) 0.5rem;
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.index-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--flood);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease);
  z-index: -1;
}
.index-row:hover::before { transform: scaleY(1); transform-origin: top; }
.index-row > * { transition: transform 0.45s var(--ease), color 0.3s; }
.index-row:hover > * { color: var(--paper); }
.index-row:hover .ir-name { transform: translateX(1rem); }

.ir-num { font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-40); }
.ir-name {
  font-size: clamp(1.8rem, 5.5vw, 4rem);
  font-weight: 800;
  font-stretch: 115%;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ir-tag { font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-60); }
.ir-arrow {
  font-size: 1.6rem;
  text-align: right;
  transition: transform 0.45s var(--ease);
}
.index-row:hover .ir-arrow { transform: translateX(6px) rotate(-45deg); }
.ir-soon {
  justify-self: end;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  color: var(--ink-40);
}
.index-note {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-60);
  max-width: 34rem;
}
.index-note em { color: var(--ink); font-style: italic; font-family: var(--font-serif); font-size: 1.05em; }

/* Cursor-Preview-Chip */
.peek {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.6rem 0.9rem;
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 18px)) rotate(var(--peek-tilt, 0deg));
  transition: opacity 0.25s;
  white-space: nowrap;
}
.peek.on { opacity: 1; }

/* ---------- Prinzipien-Deck ---------- */
.deck { padding: clamp(5rem, 12vw, 10rem) var(--pad); }
.deck-title {
  font-size: clamp(2.6rem, 7.5vw, 6rem);
  font-stretch: 115%;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.deck-title .serif { color: var(--spark); }
.deck-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 46rem;
  margin-inline: auto;
}
.deck-card {
  position: sticky;
  top: calc(6rem + var(--i) * 2.6rem);
  background: var(--paper-2);
  border: 1px solid var(--ink);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  transform: rotate(var(--tilt));
  box-shadow: 0 -12px 32px -18px rgba(22, 20, 18, 0.35);
}
.deck-card:nth-child(even) { background: var(--paper-3); }
.deck-card-accent { background: var(--spark); color: var(--paper); border-color: var(--spark); }
.dc-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--spark);
}
.deck-card-accent .dc-num { color: var(--paper); }
.deck-card h3 {
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  font-stretch: 110%;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-block: 0.75rem 1rem;
}
.deck-card h3 .serif { font-size: 1.05em; }
.deck-card p { color: var(--ink-60); max-width: 32rem; }
.deck-card-accent p { color: rgba(243, 239, 231, 0.8); }

/* ---------- Kontakt ---------- */
.contact {
  padding: clamp(5rem, 12vw, 10rem) var(--pad);
  text-align: center;
}
.contact .sect-meta { text-align: left; }
.contact-kicker {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--ink-60);
  margin-bottom: 1.5rem;
}
.contact-link { display: inline-block; }
.cl-line {
  display: block;
  font-size: clamp(3.5rem, 14vw, 12rem);
  font-weight: 800;
  font-stretch: 115%;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  transition: color 0.3s;
}
.cl-line .serif { color: var(--spark); text-transform: none; }
.contact-link:hover .cl-line { color: var(--spark); }
.contact-link:hover .cl-line .serif { color: var(--ink); }
.cl-mail {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.3rem;
}
.contact-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
  margin-top: 3rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-40);
}

/* ---------- Footer ---------- */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3rem, 6vw, 5rem) var(--pad) 0;
  overflow: hidden;
}
.foot-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}
.foot-col { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.9rem; }
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(243, 239, 231, 0.45);
  margin-bottom: 0.5rem;
}
.foot-col a, .foot-col span { color: rgba(243, 239, 231, 0.85); }
.foot-col span:not(.foot-clock) { color: rgba(243, 239, 231, 0.4); }
.foot-col a { width: fit-content; position: relative; }
.foot-col a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--spark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.foot-col a:hover::after { transform: scaleX(1); transform-origin: left; }
.foot-clock {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--spark) !important;
}
.foot-line {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(243, 239, 231, 0.15);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(243, 239, 231, 0.45);
}
.foot-giant {
  font-size: clamp(4rem, 19.5vw, 18rem);
  font-weight: 800;
  font-stretch: 120%;
  letter-spacing: -0.02em;
  line-height: 0.8;
  text-align: center;
  color: var(--paper);
  margin-bottom: -0.18em;
  user-select: none;
}

/* ---------- Reveal ---------- */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--rv-d, 0ms);
}
.rv.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .figures { grid-template-columns: repeat(2, 1fr); }
  .figure:nth-child(2) { border-right: none; }
  .figure:nth-child(-n+2) { border-bottom: 1px solid var(--ink-15); }
  .foot-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .bar-nav, .bar-meta { display: none; }
  .bar-menu {
    display: block;
    margin-left: auto;
    background: none;
    border: 1px solid var(--ink);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink);
    cursor: pointer;
    z-index: 95;
    position: relative;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
  }
  body.menu-open .bar-menu { background: var(--paper); color: var(--ink); border-color: var(--paper); }
  .bar-menu-close { display: none; }
  body.menu-open .bar-menu-open { display: none; }
  body.menu-open .bar-menu-close { display: inline; }

  .hero-foot { flex-direction: column; align-items: flex-start; }
  .hero-badge { align-self: flex-end; margin-top: -2rem; width: 96px; height: 96px; }
  .hero-scroll { display: none; }

  .index-row { grid-template-columns: 2rem 1fr auto; gap: 1rem; }
  .ir-tag { display: none; }
  .ir-name { font-size: clamp(1.35rem, 6.6vw, 2rem); }

  .deck-card { top: calc(5rem + var(--i) * 2.2rem); }

  .contact-meta { gap: 0.5rem 1.25rem; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .loader { display: none; }
  .grain { animation: none; }
  .hl-char { transform: none; animation: none; }
  .ticker-track { animation: none; }
  .hero-badge svg { animation: none; }
  .hero-scroll-line::after { animation: none; }
  .rv { opacity: 1; transform: none; transition: none; }
  .manifest-text .mw { color: var(--ink); transition: none; }
  .deck-card { position: static; transform: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
