/* ============================================================
   EASYdoesit — Mockup Stylesheet (behutsames Refresh)
   Standalone, kein Bootstrap. Brand: #5ed5ba, Work Sans.
   ============================================================ */

@font-face {
  font-family: "Work Sans";
  src: url("fonts/WorkSans-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("fonts/WorkSans-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Colors */
  --brand: #5ed5ba;
  --ink: #0d0d0d;
  --ink-soft: #444;
  --muted: #8a8a8a;
  --line: #e7e7e7;
  --bg: #ffffff;
  --bg-soft: #fafafa;

  /* Layout */
  --maxw: 1480px;
  --gap: clamp(12px, 1.4vw, 22px);
  --pad: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 11vw, 180px);
  --sticky-top: 96px;
  --header-h: 65px;

  /* Typography */
  --font-sans: "Work Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --t-body: clamp(15px, 1.05vw, 17px);
  --t-h1: clamp(48px, 7vw, 96px);
  --t-h2: clamp(34px, 4.5vw, 64px);
  --t-h3: clamp(22px, 2.2vw, 30px);
  --t-display: clamp(56px, 11vw, 180px);
  --t-kicker: 12px;
  --kicker-tracking: 0.18em;

  /* Motion */
  --t: .2s ease;
  --t-slow: .6s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  font-size: var(--t-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
/* Blur-Hintergrund als Pseudo-Element: backdrop-filter direkt auf dem Header
   würde ihn zum Containing Block für das fixed positionierte Mobile-Overlay machen. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
}
.site-header__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-mark {
  position: relative;
  z-index: 60;                              /* bleibt über dem Mobile-Overlay sichtbar */
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  height: 28px;
}
.brand-mark svg { height: 100%; width: auto; display: block; }
.brand-mark:hover { color: var(--brand); }
.nav {
  display: flex;
  gap: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.nav a { padding: 4px 0; }
.nav a.is-active { color: var(--brand); }
.nav__lang { display: none; }             /* nur im Mobile-Overlay sichtbar */

/* Burger: zwei Striche, im offenen Zustand ein X. Nur auf Mobil (siehe unten). */
.nav-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: -10px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--ink);
  z-index: 60;
}
.nav-toggle span {
  position: absolute;
  left: 9px;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, top .25s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { top: 19px; transform: rotate(-45deg); }
.lang-switch {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 78vh;
  overflow: hidden;
  background: #111;
}
.hero img,
.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 65%, rgba(0,0,0,.45) 100%);
}
.hero__title {
  margin: 0;
  display: block;
  text-align: center;
}
.hero__title svg {
  width: clamp(320px, 70vw, 900px);
  height: auto;
  color: #fff;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,.35));
}
.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: var(--pad);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  opacity: .8;
  writing-mode: vertical-rl;
}

/* ---------- Section primitives ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--section-y) var(--pad);
}
.section--tight { padding-top: clamp(48px, 6vw, 88px); padding-bottom: clamp(48px, 6vw, 88px); }
.section--flush { padding-left: 0; padding-right: 0; max-width: none; }

/* Eyebrow as a black mono-tag (replaces dash-eyebrow) */
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  padding: 6px 10px 5px;
  margin: 0 0 22px;
}
.tag--invert { background: #fff; color: var(--ink); border: 1.5px solid var(--ink); }
.tag--brand  { background: var(--brand); color: var(--ink); }

/* Big outline section number — rough editorial accent */
.section__head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section__title {
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  text-transform: none;
}
.section__lede {
  max-width: 50ch;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 16px 0 0;
}

/* ---------- Intro / Manifest ---------- */
.intro {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 120px) var(--pad);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.intro__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand);
  padding-top: 12px;
  border-top: 1px solid var(--ink);
}
.intro__body {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.32;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.intro__body strong { font-weight: 700; }
/* .highlight = Editor-Auszeichnung aus dem WYSIWYG (wie live), sparsam einsetzen */
.highlight { color: var(--brand); font-weight: 700; }

/* ---------- Work Grid ---------- */
/* Filter as mono text-tabs, no pills */
.filter {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 0 0 40px;
  font-size: 13px;
  letter-spacing: -0.005em;
  border-bottom: 1px solid var(--line);
  padding: 0 0 18px;
  align-items: baseline;
}
.filter button {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  letter-spacing: inherit;
  color: var(--muted);
  cursor: pointer;
}
.filter button.is-active {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.filter button:hover { color: var(--ink); }
.filter__count {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.filter__count--block {
  display: block;
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Stacked filter (inside sticky sidebar) */
.filter--stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 0 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}
.filter--stacked button { font-size: 14px; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap);
}
.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
  isolation: isolate;
}
.work-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}
.work-card__still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow), filter .4s ease;
  will-change: transform;
}
/* Single image fallback (default img inside media without still class) */
.work-card__media > img:not(.work-card__still) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow), filter .4s ease;
}
.work-card:hover .work-card__still,
.work-card:hover .work-card__media > img,
.work-card.is-centered .work-card__still,
.work-card.is-centered .work-card__media > img {
  transform: scale(1.06);
  filter: brightness(.78);
}

/* Aspect ratio variants */
.work-card--tall .work-card__media   { aspect-ratio: 4 / 5; }
.work-card--wide .work-card__media   { aspect-ratio: 21 / 9; }
.work-card--square .work-card__media { aspect-ratio: 1 / 1; }

/* Top brand bar that wipes in on hover */
.work-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--brand);
  z-index: 3;
  transition: width var(--t-slow);
}
.work-card:hover::before,
.work-card.is-centered::before { width: 100%; }

/* Overlay caption — slides up on hover.
   .is-centered = Touch-Pendant zu :hover, gesetzt von assets/mockup.js sobald die
   Karte die Viewport-Mitte kreuzt (gleiches Prinzip wie die Live-TeaserCard). */
.work-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 1.6vw, 24px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.7) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.work-card:hover .work-card__overlay,
.work-card.is-centered .work-card__overlay { opacity: 1; }
.work-card__overlay-title {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  transform: translateY(8px);
  transition: transform .35s ease;
}
.work-card__overlay-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: .85;
  margin: 0;
  transform: translateY(8px);
  transition: transform .35s ease .05s;
}
.work-card:hover .work-card__overlay-title,
.work-card:hover .work-card__overlay-sub,
.work-card.is-centered .work-card__overlay-title,
.work-card.is-centered .work-card__overlay-sub { transform: translateY(0); }

/* Play indicator (top right) */
.work-card__play {
  position: absolute;
  top: clamp(12px, 1.2vw, 18px);
  right: clamp(12px, 1.2vw, 18px);
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1.5px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .3s ease, transform .3s ease;
  backdrop-filter: blur(4px);
}
.work-card:hover .work-card__play,
.work-card.is-centered .work-card__play { opacity: 1; transform: scale(1); }

/* Still-cycle: multiple images, fade in/out via animation on hover */
.work-card--cycle .work-card__still { opacity: 0; }
.work-card--cycle .work-card__still:first-of-type { opacity: 1; }
.work-card--cycle:hover .work-card__still,
.work-card--cycle.is-centered .work-card__still {
  animation: still-cycle 2.4s infinite;
}
.work-card--cycle:hover .work-card__still:nth-of-type(1),
.work-card--cycle.is-centered .work-card__still:nth-of-type(1) { animation-delay: 0s; }
.work-card--cycle:hover .work-card__still:nth-of-type(2),
.work-card--cycle.is-centered .work-card__still:nth-of-type(2) { animation-delay: .8s; }
.work-card--cycle:hover .work-card__still:nth-of-type(3),
.work-card--cycle.is-centered .work-card__still:nth-of-type(3) { animation-delay: 1.6s; }
@keyframes still-cycle {
  0%, 25%   { opacity: 1; }
  33%, 92%  { opacity: 0; }
  100%      { opacity: 1; }
}

/* External meta kept available but de-emphasized — hidden by default
   for the new gallery feel. Can be re-enabled per card via .work-card--with-meta */
.work-card__meta { display: none; }
.work-card--with-meta .work-card__meta {
  display: block;
  padding: 14px 4px 20px;
}
.work-card__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0 0 4px;
}
.work-card__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0;
  text-transform: uppercase;
}

/* sizes */
.work-card--xl { grid-column: span 4; }
.work-card--lg { grid-column: span 3; }
.work-card--md { grid-column: span 2; }

/* Split layout (alongside sticky header) — 4 cols, redefined spans */
.work-grid--split {
  grid-template-columns: repeat(4, 1fr);
}
.work-grid--split .work-card--xl     { grid-column: span 4; }
.work-grid--split .work-card--lg     { grid-column: span 2; }
.work-grid--split .work-card--md     { grid-column: span 2; }
.work-grid--split .work-card--tall   { grid-column: span 1; }
.work-grid--split .work-card--tall-2 { grid-column: span 2; }
.work-grid--split .work-card--wide   { grid-column: span 4; }
.work-grid--split .work-card--square { grid-column: span 1; }
.work-grid--split .work-card--third  { grid-column: span 2; }

/* Full-bleed layout (Work Index) — 6 cols, more mosaic */
.work-grid--full {
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap);
}
.work-grid--full .work-card--xl     { grid-column: span 6; }
.work-grid--full .work-card--wide   { grid-column: span 6; }
.work-grid--full .work-card--lg     { grid-column: span 3; }
.work-grid--full .work-card--md     { grid-column: span 3; }
.work-grid--full .work-card--third  { grid-column: span 2; }
.work-grid--full .work-card--tall   { grid-column: span 2; }
.work-grid--full .work-card--tall-2 { grid-column: span 3; }
.work-grid--full .work-card--square { grid-column: span 2; }

/* Apply tall ratio to tall-2 too */
.work-card--tall-2 .work-card__media { aspect-ratio: 4 / 5; }

.work-grid__cta {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex;
  justify-content: center;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border: 1.5px solid var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  transition: background var(--t), color var(--t);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-ghost .arrow { font-size: 14px; transform: translateY(-1px); }

/* ---------- Roster (Directors / Photographers / AI) ---------- */
/* Roster sections breathe less than full sections — sticky header
   already provides visual rhythm. */
.roster-section { padding-top: clamp(48px, 5vw, 80px); padding-bottom: clamp(48px, 5vw, 80px); }
.roster-section + .roster-section { padding-top: clamp(24px, 3vw, 48px); }
/* Last full-section before roster-sections (e.g. Latest Work) also tightens */
#work { padding-bottom: clamp(48px, 5vw, 80px); }

.roster {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}
.roster__header {
  position: sticky;
  top: var(--sticky-top);
  max-width: 300px;
}
.roster__kicker {
  color: var(--brand) !important;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
  font-weight: 500;
}
.roster__kicker em {
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}
.roster__title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 22px;
  text-transform: none;
}
.roster__desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 22px;
}
.roster__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.roster__link:hover { color: var(--brand); border-bottom-color: var(--brand); }

.roster__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 56px;
  row-gap: 20px;
  margin: 26px 0 0;  /* push down to align with H2 title (not with kicker) */
  padding: 0;
  list-style: none;
}
.roster__list li {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  transition: color .2s ease;
}
.roster__list li:hover { color: var(--brand); }

/* ---------- Featured / Mosaic strip ---------- */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: clamp(36px, 4vw, 56px);
}
.feature-strip__item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eee;
}
.feature-strip__item img {
  width: 100%; height: 100%; object-fit: cover;
}
.feature-strip__caption {
  position: absolute;
  left: 14px; bottom: 12px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}

/* ---------- Photographer cards (replacement for polaroids) ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: clamp(36px, 4vw, 56px);
}
.photo-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #eee;
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 14px 14px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.65));
}

/* ---------- Green / Charity Panels ---------- */
.panel {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  margin-top: clamp(36px, 4vw, 56px);
}
.panel--reverse { grid-template-columns: 1fr 1.05fr; }
.panel__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.panel__media img { width: 100%; height: 100%; object-fit: cover; }
.panel__body {
  background: var(--brand);
  color: var(--ink);
  padding: clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.panel--charity .panel__body {
  background: var(--ink);
  color: #fff;
}
.panel__eyebrow {
  font-size: var(--t-kicker);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 14px;
  opacity: .8;
}
.panel__title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.panel__text { margin: 0 0 22px; font-size: 16px; line-height: 1.55; max-width: 50ch; }
.panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-self: flex-start;
}

/* ---------- Marquee / Closing ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 28px 0;
}
.marquee__inner {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1;
}
.marquee__inner span:nth-child(odd) { color: var(--brand); }
.marquee__inner span::after {
  content: "•";
  margin-left: 36px;
  color: var(--ink);
  opacity: .25;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 80px) var(--pad) 28px;
}
.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.site-footer h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0 0 8px; font-size: 14px; }
.site-footer a:hover { color: var(--brand); }
.site-footer__cta {
  display: inline-block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}
.site-footer__social {
  display: flex;
  gap: 18px;
  margin-top: 28px !important;
  font-size: 13px;
  font-weight: 600;
}
.site-footer__social a { color: var(--brand); }
.site-footer__social a:hover { color: var(--ink); }
.newsletter { display: flex; flex-direction: column; gap: 10px; max-width: 260px; }
.newsletter input {
  font: inherit;
  font-size: 13px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--brand);
  background: transparent;
  color: var(--ink);
  outline: none;
}
.newsletter button {
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  border: 0;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
}
.newsletter button:hover { background: var(--ink); }
.site-footer__cta:hover { color: var(--brand); border-bottom-color: var(--brand); }
.site-footer__lead {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 18px;
  max-width: 22ch;
}
.site-footer__bottom {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.site-footer__bottom a:hover { color: var(--brand); }

/* ---------- Layout breakers (home2 variant) ---------- */

/* Roster header on RIGHT side (mirror) */
.roster--right {
  grid-template-columns: 1fr minmax(260px, 380px);
}
.roster--right .roster__header { order: 2; max-width: 380px; }
.roster--right > ul,
.roster--right > .roster__list { order: 1; }
/* H2 darf nicht aus 380px überlaufen — Cap statt clamp */
.roster--right .roster__title {
  font-size: clamp(28px, 3vw, 44px);
}

/* Pull-quote break — big centered editorial statement */
.pull-quote {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 160px) var(--pad);
  text-align: center;
}
.pull-quote__text {
  font-size: clamp(28px, 3.8vw, 60px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 auto;
  max-width: 22ch;
  color: var(--ink);
}
.pull-quote__text .accent {
  background: var(--brand);
  padding: 0 0.15em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.pull-quote__attr {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: clamp(32px, 4vw, 48px) 0 0;
}

/* Full-bleed image break with sticker overlay */
.bleed-break {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 70vh;
  overflow: hidden;
  background: #111;
}
.bleed-break img { width: 100%; height: 100%; object-fit: cover; }
.bleed-break__sticker {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  font-size: 14px;
  padding: 14px 20px 12px;
}

/* Centered section header (used for AI Artists in home2) */
.section-center {
  text-align: center;
  padding: clamp(48px, 7vw, 100px) var(--pad) clamp(32px, 4vw, 56px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-center__kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  margin: 0 0 14px;
}
.section-center__title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 16px;
}
.section-center__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 18px;
}
.section-center__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.section-center__link:hover { color: var(--brand); border-bottom-color: var(--brand); }

/* Horizontal strip for AI Artists — Arrows, no scrollbar */
.ai-strip-wrap {
  position: relative;
  padding: 0 0 clamp(60px, 8vw, 100px);
}
.ai-strip {
  padding: 0 var(--pad);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* IE/Edge */
}
.ai-strip::-webkit-scrollbar { display: none; } /* Chrome/Safari */
.ai-strip__inner {
  display: flex;
  gap: var(--gap);
  max-width: var(--maxw);
  margin: 0 auto;
}
.ai-strip__item {
  flex: 0 0 auto;
  width: clamp(180px, 16vw, 240px);
  scroll-snap-align: start;
  text-align: left;
}

/* Prev/Next arrows */
.ai-strip__nav {
  position: absolute;
  top: calc(50% - 30px);    /* center on portrait, not name */
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--ink);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 5;
  transition: background var(--t), color var(--t);
}
.ai-strip__nav:hover { background: var(--ink); color: #fff; }
.ai-strip__nav--prev { left: 16px; }
.ai-strip__nav--next { right: 16px; }
@media (max-width: 720px) {
  .ai-strip__nav { display: none; }   /* mobile = swipe */
}
.ai-strip__item-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
  margin-bottom: 12px;
  position: relative;
}
.ai-strip__item-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow), filter .4s ease;
}
.ai-strip__item:hover .ai-strip__item-media img { transform: scale(1.04); filter: brightness(.88); }
.ai-strip__item-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0 0 2px;
}
.ai-strip__item-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 1100px) {
  .roster--right { grid-template-columns: 1fr; }
  .roster--right .roster__header { order: 1; }
}

/* ---------- Sticker (rough rotated accent) ---------- */
.sticker {
  position: absolute;
  display: inline-block;
  background: var(--brand);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 14px 8px;
  transform: rotate(-6deg);
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 5;
}
.sticker--black {
  background: var(--ink);
  color: var(--brand);
  box-shadow: 4px 4px 0 var(--brand);
}
.sticker--tilt-right { transform: rotate(5deg); }

/* ---------- Page header (used by index pages above filter bar) ---------- */
.page-head {
  padding: clamp(56px, 8vw, 120px) var(--pad) clamp(20px, 3vw, 40px);
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.page-head__kicker {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin: 0 0 14px;
}
.page-head__title {
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0;
}
.page-head__meta {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 0;
  padding-bottom: 10px;
}

/* Sticky horizontal filter bar (Work Index) */
.filter-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(20px, 3vw, 36px);
}
.filter-bar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: baseline;
  font-size: 13px;
}
.filter-bar button,
.filter-bar a {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
}
.filter-bar button.is-active,
.filter-bar a.is-active {
  color: var(--brand);
  font-weight: 600;
}
.filter-bar button:hover,
.filter-bar a:hover { color: var(--ink); }
.filter-bar__count {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Full-bleed grid wrapper for index pages */
.work-grid--full {
  padding: 0 var(--pad) clamp(80px, 10vw, 140px);
}

/* ---------- Talent Section (used on Talents Index) ---------- */
.talent-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  scroll-margin-top: calc(var(--header-h) + 60px);
}
.talent-section + .talent-section { margin-top: clamp(60px, 8vw, 120px); }
.talent-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(36px, 5vw, 64px) 0 clamp(20px, 3vw, 32px);
  border-bottom: 1px solid var(--ink);
  margin-bottom: clamp(20px, 3vw, 36px);
  flex-wrap: wrap;
}
.talent-section__title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
}
.talent-section__count {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 0;
}

/* SEO intro block (under page-head) */
.intro-block {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(48px, 6vw, 80px);
}
.intro-block__body {
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 70ch;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.intro-block__body strong { color: var(--ink); font-weight: 600; }

/* Names roster — 3-column grid (matches original) */
.talent-names {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(40px, 6vw, 90px);
  row-gap: 14px;
  padding: clamp(36px, 5vw, 64px) 0 clamp(48px, 6vw, 80px);
}
.talent-names a {
  display: block;
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  padding: 2px 0;
}
.talent-names a:hover { color: var(--brand); }
@media (max-width: 1100px) { .talent-names { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .talent-names { grid-template-columns: 1fr; } }

/* Talent card grid — one teaser per talent (3-col, 16:9 + caption) */
.talent-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  padding-bottom: clamp(64px, 8vw, 100px);
}
.talent-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  isolation: isolate;
}
.talent-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow), filter .4s ease;
}
.talent-card:hover img {
  transform: scale(1.05);
  filter: brightness(.82);
}
.talent-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--brand);
  z-index: 2;
  transition: width var(--t-slow);
}
.talent-card:hover::before { width: 100%; }
.talent-card__caption {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
@media (max-width: 1100px) { .talent-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .talent-card-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; } }

/* ---------- Article / Prose (About subpages) ---------- */
.article {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(80px, 10vw, 140px);
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}
.article__toc {
  position: sticky;
  top: var(--sticky-top);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article__toc-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
}
.article__toc a {
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  transition: color var(--t);
}
.article__toc a:hover { color: var(--brand); }

.article__body {
  max-width: 70ch;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
}
.article__body > * + * { margin-top: 1em; }
.article__body p strong { color: var(--ink); font-weight: 600; }
.article__body h2,
.article__body h3 {
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: clamp(40px, 5vw, 64px) 0 8px;
}
.article__body h2 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
}
.article__body h3 {
  font-size: clamp(18px, 1.4vw, 21px);
  font-weight: 600;
}
.article__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  margin: clamp(40px, 5vw, 64px) 0 12px;
}
.article__body ul {
  list-style: none;
  padding: 0;
  margin-top: 14px;
}
.article__body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.article__body ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand);
}

/* Full-width BTS image strip between article sections */
.bts-strip {
  max-width: 100%;
  padding: clamp(40px, 6vw, 80px) 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.bts-strip img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

/* BTS gallery (asymmetric, used on Who We Are) */
.bts-gallery {
  max-width: var(--maxw);
  margin: clamp(40px, 6vw, 80px) auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.bts-gallery__full {
  grid-column: span 2;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.bts-gallery > div { aspect-ratio: 16 / 9; overflow: hidden; }
.bts-gallery img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1100px) {
  .article { grid-template-columns: 1fr; gap: 36px; }
  .article__toc { position: static; }
  .bts-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .bts-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Talents Hub grid (3 category teasers) ---------- */
.hub-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) var(--pad) clamp(80px, 10vw, 140px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.hub-grid--four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) {
  .hub-grid--four { grid-template-columns: repeat(2, 1fr); }
}
.hub-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  transition: border-color var(--t);
  color: var(--ink);
}
.hub-card:hover { border-color: var(--ink); color: var(--ink); }
.hub-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}
.hub-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow), filter .4s ease;
}
.hub-card:hover .hub-card__media img {
  transform: scale(1.05);
  filter: brightness(.85);
}
.hub-card__body {
  padding: clamp(20px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.hub-card__count {
  color: var(--brand) !important;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}
.hub-card__title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
}
.hub-card__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.hub-card__cta {
  margin-top: auto;
  padding-top: 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.hub-card:hover .hub-card__cta { color: var(--brand); }

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

/* ---------- Talent Detail page ---------- */
.talent-detail {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 120px) var(--pad) clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.talent-detail__role {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  margin: 0 0 12px;
}
.talent-detail__name {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 28px;
}
.talent-detail__text {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 65ch;
}
.talent-detail__text p { margin: 0 0 1em; }
.talent-detail__portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
}
.talent-detail__portrait img { width: 100%; height: 100%; object-fit: cover; }

.talent-works {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 40px) var(--pad) clamp(60px, 8vw, 100px);
}
.talent-works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.talent-work-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  isolation: isolate;
}
.talent-work-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow), filter .4s ease;
}
.talent-work-card:hover img { transform: scale(1.04); filter: brightness(.85); }
.talent-work-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--brand);
  z-index: 2;
  transition: width var(--t-slow);
}
.talent-work-card:hover::before { width: 100%; }
.talent-work-card__label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

@media (max-width: 1100px) {
  .talent-detail { grid-template-columns: 1fr; gap: 32px; }
  .talent-detail__portrait { max-width: 360px; }
}
@media (max-width: 720px) {
  .talent-works-grid { grid-template-columns: 1fr; }
}

/* ---------- Work Detail page ---------- */
.work-detail {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 120px) var(--pad) clamp(40px, 5vw, 64px);
}
.work-detail__title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.work-detail__masthead {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 28px;
}
.work-detail__masthead strong { color: var(--ink); font-weight: 600; }
.work-detail__intro {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 70ch;
  margin: 0 0 36px;
}
.work-detail__credits {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  margin: 0 0 36px;
}
.work-detail__credits summary {
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.work-detail__credits summary::-webkit-details-marker { display: none; }
.work-detail__credits summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--muted);
}
.work-detail__credits[open] summary::after { content: "−"; }
.work-detail__credits dl {
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  column-gap: 32px;
  row-gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.work-detail__credits dt { color: var(--muted); }
.work-detail__credits dd { margin: 0; color: var(--ink); }

.work-stills {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(60px, 8vw, 100px);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.work-still {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}
.work-still img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow), filter .4s ease; }
.work-still:hover img { transform: scale(1.02); filter: brightness(.82); }
.work-still__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.work-still__play::before {
  content: "▶";
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  backdrop-filter: blur(4px);
  background: rgba(0,0,0,.15);
  transition: transform var(--t), background var(--t);
}
.work-still:hover .work-still__play::before { background: var(--brand); border-color: var(--brand); color: var(--ink); transform: scale(1.08); }

/* ---------- News Index — Masonry-style mixed grid ---------- */
.news-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) var(--pad) clamp(80px, 10vw, 140px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.5vw, 56px) var(--gap);
}
.news-item {
  display: flex;
  flex-direction: column;
}
.news-item__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
  margin-bottom: 18px;
}
.news-item__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow), filter .4s ease;
}
.news-item__media::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--brand);
  z-index: 2;
  transition: width var(--t-slow);
}
.news-item:hover .news-item__media img { transform: scale(1.03); filter: brightness(.88); }
.news-item:hover .news-item__media::before { width: 100%; }
.news-item__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.news-item__meta .news-item__cat { color: var(--brand); font-weight: 600; }
.news-item__title {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 10px;
}
.news-item__title a { color: inherit; }
.news-item__title a:hover { color: var(--brand); }
.news-item__lead {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 50ch;
}

/* ── Size variants ─────────────────────────────────────────── */

/* Feature: full row, side-by-side (image 2/3 + text 1/3) */
.news-item--feature {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(28px, 3.5vw, 56px);
  align-items: end;
  padding-bottom: clamp(12px, 2vw, 24px);
  border-bottom: 1px solid var(--line);
}
.news-item--feature .news-item__media {
  aspect-ratio: 16 / 9;
  margin-bottom: 0;
}
.news-item--feature .news-item__title {
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.15;
  max-width: 20ch;
}
.news-item--feature .news-item__lead {
  font-size: 15px;
  max-width: 40ch;
}

/* Big: spans 2 cols, image taller, text bigger */
.news-item--big {
  grid-column: span 2;
}
.news-item--big .news-item__media { aspect-ratio: 16 / 9; }
.news-item--big .news-item__title { font-size: clamp(20px, 1.8vw, 26px); }

/* Small: 1 col (default — already set) */
.news-item--small { grid-column: span 1; }
.news-item--small .news-item__media { aspect-ratio: 4 / 3; }

/* Flip: text first, image after (asymmetric break) */
.news-item--flip .news-item__media { margin-top: 18px; margin-bottom: 0; order: 2; }

/* Text-only: no image, big editorial quote-style */
.news-item--text {
  grid-column: span 1;
  background: var(--bg-soft);
  padding: 28px 24px;
  border: 1px solid var(--line);
  justify-content: center;
}
.news-item--text .news-item__title {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  margin-bottom: 12px;
}
.news-item--text .news-item__lead { font-size: 13px; }

@media (max-width: 1100px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-item--feature { grid-column: span 2; grid-template-columns: 1fr; }
  .news-item--feature .news-item__media { aspect-ratio: 16 / 9; margin-bottom: 18px; }
  .news-item--big { grid-column: span 2; }
}
@media (max-width: 720px) {
  .news-grid { grid-template-columns: 1fr; gap: 28px; }
  .news-item--feature,
  .news-item--big,
  .news-item--small,
  .news-item--text { grid-column: span 1; }
  .news-item--feature { grid-template-columns: 1fr; }
}

/* ---------- Stub / Coming-Soon page ---------- */
.stub {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(120px, 18vw, 240px) var(--pad);
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}
.stub__title {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0 0 28px;
}
.stub__body {
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 50ch;
}
.stub__back {
  display: inline-block;
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
@media (max-width: 1100px) { .stub { grid-template-columns: 1fr; } }

/* ---------- Mockup chrome (info bar) ---------- */
.mockup-bar {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 999;
  background: #111;
  color: #fff;
  padding: 7px 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: .85;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .work-grid { grid-template-columns: repeat(4, 1fr); }
  .work-grid--full { grid-template-columns: repeat(4, 1fr); }
  .work-grid--full .work-card--lg     { grid-column: span 2; }
  .work-grid--full .work-card--md     { grid-column: span 2; }
  .work-grid--full .work-card--third  { grid-column: span 2; }
  .work-grid--full .work-card--tall   { grid-column: span 1; }
  .work-grid--full .work-card--tall-2 { grid-column: span 2; }
  .work-grid--full .work-card--square { grid-column: span 1; }
  .work-grid--full .work-card--xl,
  .work-grid--full .work-card--wide   { grid-column: span 4; }
  .work-card--xl { grid-column: span 4; }
  .work-card--lg { grid-column: span 2; }
  .work-card--md { grid-column: span 2; }
  .feature-strip,
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .roster { grid-template-columns: 1fr; }
  .roster__header { position: static; }
  .roster__list { grid-template-columns: repeat(2, 1fr); }
  .panel, .panel--reverse { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .intro { grid-template-columns: 1fr; gap: 20px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .work-grid--full { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .work-grid--full .work-card--xl,
  .work-grid--full .work-card--wide,
  .work-grid--full .work-card--lg,
  .work-grid--full .work-card--md,
  .work-grid--full .work-card--third,
  .work-grid--full .work-card--tall,
  .work-grid--full .work-card--tall-2,
  .work-grid--full .work-card--square { grid-column: span 2; }
  .work-card--xl,
  .work-card--lg,
  .work-card--md { grid-column: span 2; }
  .feature-strip,
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .roster__list { grid-template-columns: 1fr; }
  .site-header__inner { padding: 14px 18px; }
  .nav-toggle { display: block; }
  /* Nav wird zum Vollbild-Overlay unter dem Header, große Uppercase-Links wie live. */
  .nav {
    position: fixed;
    inset: 0;
    z-index: 55;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 80px 18px 40px;
    background: var(--bg);
    font-size: 30px;
    letter-spacing: 0.02em;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav a { padding: 8px 0; }
  .nav__lang {
    display: block;
    margin-top: 28px;
    color: var(--ink-soft);
  }
  body.nav-locked { overflow: hidden; }
  .site-footer__inner { grid-template-columns: 1fr; }
}
