/* ─────────────────────────────────────────
   NAV
   ───────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.nav-brand { text-decoration: none; }
.nav-brand .brand-mark,
.nav-brand .sub-brand-mark { font-size: 22px; }

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--night);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.nav-link:hover { color: inherit; opacity: 0.9; }

.nav-link.is-active            { opacity: 1; }
.nav-link.is-active.nav-street  { color: var(--teal);   border-bottom-color: var(--teal); }
.nav-link.is-active.nav-stories { color: var(--coral);  border-bottom-color: var(--coral); }
.nav-link.is-active.nav-studio  { color: var(--yellow); border-bottom-color: var(--yellow); }
.nav-link.is-active.nav-ueber   { color: var(--night);  border-bottom-color: var(--night); }

/* ─────────────────────────────────────────
   PAGE BASE
   ───────────────────────────────────────── */
.site-main { padding-top: 61px; }

.container {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 var(--layout-gutter);
}

/* ─────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────── */
.btn {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: 12px 28px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover { opacity: 0.75; }
.btn-sm { padding: 8px 18px; font-size: 12px; }

.btn-primary  { background: var(--night);  color: var(--cream); }
.btn-ghost    { background: transparent;   color: var(--night); border: 1px solid rgba(11,28,38,0.25); }
.btn-street   { background: var(--teal);   color: var(--cream); }
.btn-stories  { background: var(--coral);  color: var(--cream); }
.btn-studio   { background: var(--yellow); color: var(--night); }

/* ─────────────────────────────────────────
   HOMEPAGE
   ───────────────────────────────────────── */
.home-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 120px;
  min-height: calc(100vh - 61px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 128px;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--night);
  margin-bottom: 0.65em;
  max-width: 18ch;
  text-wrap: balance;
}

/* JS wraps each word — these styles apply to the injected spans */
.hw {
  display: inline-block;
  position: relative;
  cursor: default;
}

.hw-text {
  display: inline-block;
  color: var(--night);
  transition: color 0.35s ease, transform 0.35s ease;
}

.home-content { max-width: 580px; }

.home-greeting {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.6;
  color: var(--night);
  margin-bottom: 32px;
}

/* .home-response styles moved to BLANK SLOTS section above */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────
   BLANK SLOTS — shared interaction pattern
   Light-theme base; dark override in page CSS
   ───────────────────────────────────────── */

.blank-item { position: relative; }

/* Sentence wrapper (light theme) */
.home-blank-sentence {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.7;
  color: var(--night);
}

/* The inline slot button */
.blank-slot {
  background: none;
  border: none;
  border-bottom: 2px solid rgba(11,28,38,0.3);
  color: rgba(11,28,38,0.4);
  font-family: var(--font-mono);
  font-size: 0.85em;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  cursor: pointer;
  vertical-align: baseline;
  line-height: inherit;
  transition: border-color 0.2s, color 0.2s;
}
.blank-slot:hover {
  border-color: rgba(11,28,38,0.6);
  color: rgba(11,28,38,0.75);
}
.blank-slot.is-open {
  border-color: var(--teal);
  color: var(--teal);
}
/* After selection in mode B (re-selectable) */
.blank-slot.is-answered {
  font-family: var(--font-body);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--night);
  border-bottom-color: var(--night);
  cursor: pointer; /* still clickable */
}
/* After correct answer in mode A (locked) */
.blank-slot.is-solved {
  font-family: var(--font-body);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--night);
  border-bottom-color: transparent;
  cursor: default;
  pointer-events: none;
}

/* Option pills */
.blank-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
}
.blank-options.is-open {
  max-height: 120px;
  margin-top: 14px;
}

.blank-option {
  background: rgba(11,28,38,0.04);
  border: 1px solid rgba(11,28,38,0.12);
  color: rgba(11,28,38,0.7);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 7px 18px;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.blank-option:hover {
  background: rgba(11,28,38,0.08);
  border-color: rgba(11,28,38,0.22);
  color: var(--night);
}
.blank-option.is-selected {
  background: rgba(11,28,38,0.06);
  border-color: var(--night);
  color: var(--night);
  font-weight: 600;
}
.blank-option.is-correct {
  background: rgba(95,179,179,0.1);
  border-color: var(--teal);
  color: var(--teal);
}
.blank-option.is-wrong {
  background: rgba(232,85,85,0.06);
  border-color: rgba(232,85,85,0.3);
  color: rgba(232,85,85,0.6);
  pointer-events: none;
}

/* Reveal / response (mode A) */
.blank-reveal {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--night);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.4s ease;
}
.blank-reveal.is-visible { max-height: 200px; opacity: 1; margin-top: 20px; }

/* Per-option responses (mode B) */
.blank-responses { margin-top: 0; }

.blank-response {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: var(--night);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.4s ease;
}
.blank-response.is-visible {
  max-height: 300px;
  opacity: 1;
  margin-top: 32px;
}
.blank-response a {
  color: var(--night);
  text-decoration: underline;
  text-decoration-color: rgba(11,28,38,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s;
}
.blank-response a:hover { text-decoration-color: var(--night); }
.blank-response .aside  { opacity: 0.45; }

/* Responsive */
@media (max-width: 767px) {
  .home-blank-sentence { font-size: 18px; }
}

/* ─────────────────────────────────────────
   PAGE HERO (sub-brand pages)
   ───────────────────────────────────────── */
.page-hero {
  padding: 160px 48px 80px;
  max-width: var(--layout-max-width);
  margin: 0 auto;
}

.page-hero-label {
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--night);
  margin-bottom: 28px;
  max-width: 780px;
}

.page-hero-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--night);
  opacity: 0.8;
  max-width: 520px;
  margin-bottom: 40px;
}

.page-hero-ctas { display: flex; gap: 12px; }

/* ─────────────────────────────────────────
   SECTION LABEL
   ───────────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 28px;
  display: block;
}

/* ─────────────────────────────────────────
   PHOTO GRID (street) — masonry columns
   ───────────────────────────────────────── */
.photo-section {
  padding: 0 48px;
  max-width: var(--layout-max-width);
  margin: 0 auto;
}

.photo-masonry {
  columns: 3;
  gap: 2px;
}

.photo-item {
  break-inside: avoid;
  margin-bottom: 2px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.photo-item img {
  display: block;
  width: 100%;
  height: auto;
}

.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-cam-icon { opacity: 0.10; }

.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 38, 0.65);
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}

.photo-item:hover .photo-overlay { opacity: 1; }

.photo-overlay-loc {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--cream);
}

.photo-overlay-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--cream);
  opacity: 0.5;
  margin-top: 3px;
}

/* ─────────────────────────────────────────
   FEATURED ARTICLE TYPO TILES (street masonry)
   ───────────────────────────────────────── */
.photo-item--typo {
  background: var(--night);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 46px 22px 22px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.2s;
}

.photo-item--typo::before {
  content: '.street';
  position: absolute;
  top: 18px;
  left: 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--teal);
  opacity: 0.7;
}

.photo-item--typo:hover {
  background: #152433;
}

.photo-item--typo-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-break: break-word;
}

.photo-item--typo-lead {
  display: none;
}

.photo-item--typo-arrow {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--teal);
  opacity: 0;
  transition: opacity 0.2s;
}

.photo-item--typo:hover .photo-item--typo-arrow {
  opacity: 1;
}

/* ─────────────────────────────────────────
   REPORTAGEN TEASER (stories page)
   ───────────────────────────────────────── */
.reportagen-section {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 48px 80px;
}

.reportagen-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.reportagen-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}

.reportagen-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--night);
  opacity: 0.4;
}

.reportagen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.reportagen-grid--2up {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.reportagen-grid--2up .reportage-card-img { aspect-ratio: 16/10; }
.reportagen-grid--2up .reportage-card-overlay { padding: 28px 32px; }
.reportagen-grid--2up .reportage-card-title { font-size: clamp(22px, 2.4vw, 32px); }
.reportagen-grid--2up .reportage-card-foot { padding: 24px 32px 28px; }

.reportage-card {
  display: block;
  text-decoration: none;
  color: var(--night);
  background: var(--surface);
  overflow: hidden;
  transition: background 0.2s;
}

.reportage-card:hover {
  background: var(--surface-hover);
}

.reportage-card-img {
  position: relative;
  aspect-ratio: 21/9;
  overflow: hidden;
  background: #0b1c26;
}

.reportage-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s ease;
}

.reportage-card:hover .reportage-card-img img {
  transform: scale(1.04);
}

.reportage-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 48px;
  background: linear-gradient(
    to top,
    rgba(11,28,38,0.85) 0%,
    rgba(11,28,38,0.25) 50%,
    rgba(11,28,38,0.10) 100%
  );
}

.reportage-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.reportage-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.01em;
  line-height: 1.0;
  color: #f5f3e8;
  text-transform: uppercase;
  margin: 0;
}

.reportage-card-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding: 28px 48px 32px;
}

.reportage-card-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--night);
  opacity: 0.75;
  max-width: 560px;
  margin: 0;
}

.reportage-card-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rcc-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.reportage-card:hover .rcc-arrow {
  transform: translateX(4px);
}

/* ─────────────────────────────────────────
   ARTICLE LIST (stories + artikel)
   ───────────────────────────────────────── */
.article-list-section {
  padding: 0 48px 120px;
  max-width: var(--layout-max-width);
  margin: 0 auto;
}

.article-list { border-top: 1px solid var(--border); }

.article-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--night);
  transition: opacity 0.2s;
}

.article-item:hover { opacity: 0.55; }

.article-n {
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.2;
}

.article-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--night);
  margin-bottom: 10px;
}

.article-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.article-subbrand {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.article-meta { text-align: right; }

.article-date {
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.25;
}

.article-readtime {
  font-family: var(--font-mono);
  font-size: 10px;
  opacity: 0.6;
  margin-top: 4px;
}

/* ─────────────────────────────────────────
   ARTICLE FILTER BAR
   ───────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-tag);
  border: 1px solid var(--border);
  cursor: pointer;
  background: transparent;
  color: var(--night);
  opacity: 0.4;
  transition: all 0.2s;
  text-decoration: none;
}

.filter-btn:hover, .filter-btn.is-active { opacity: 1; }
.filter-btn.is-active.f-street  { color: var(--teal);   border-color: var(--teal);   background: rgba(95,179,179,0.10); }
.filter-btn.is-active.f-stories { color: var(--coral);  border-color: var(--coral);  background: rgba(232,85,85,0.10); }
.filter-btn.is-active.f-studio  { color: var(--yellow); border-color: var(--yellow); background: rgba(201,168,0,0.10); }
.filter-btn.is-active.f-all     { color: var(--night);  border-color: var(--night);  background: rgba(11,28,38,0.06); opacity: 1; }

/* ─────────────────────────────────────────
   STUDIO PAGE
   ───────────────────────────────────────── */
.studio-section {
  padding: 0 48px 80px;
  max-width: var(--layout-max-width);
  margin: 0 auto;
}

.canvas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 900px;
  margin-bottom: 32px;
}

.canvas-field {
  padding: 20px 22px;
  cursor: pointer;
  min-height: 100px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.canvas-field:hover { background: var(--surface-hover); }
.canvas-field.is-active { background: var(--surface-hover); }

.canvas-field-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.canvas-field-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--night);
  opacity: 0.55;
  line-height: 1.5;
  margin-top: 10px;
  display: none;
}

.canvas-field.is-active .canvas-field-desc { display: block; }

.canvas-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--night);
  opacity: 0.65;
  margin-bottom: 24px;
  max-width: 480px;
}

/* Cards teaser grid */
.cards-section {
  padding: 80px 48px 0;
  max-width: var(--layout-max-width);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 32px;
}

.card-item {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
}

.card-item:hover { background: var(--surface-hover); }

.card-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--night);
  margin-bottom: 16px;
}

.card-placeholder {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-badge-nl {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: var(--radius-tag);
  background: rgba(0,153,187,0.08);
  color: var(--cyan);
}

/* ─────────────────────────────────────────
   ÜBER PAGE
   ───────────────────────────────────────── */
.ueber-section {
  padding: 160px 48px 120px;
  max-width: var(--layout-max-width);
  margin: 0 auto;
}

.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}

.ueber-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 32px;
}

.ueber-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--night);
  margin-bottom: 36px;
}

.ueber-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--night);
  opacity: 0.8;
  margin-bottom: 24px;
}

.ueber-ctas { display: flex; gap: 16px; margin-top: 40px; }

.portrait-placeholder {
  aspect-ratio: 3/4;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ueber-values { margin-top: 48px; }

.ueber-value {
  display: flex;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.ueber-value:first-child { border-top: 1px solid var(--border); }

.ueber-value-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--night);
  flex: 1;
}

.ueber-value-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--night);
  opacity: 0.4;
  flex: 2;
}

/* ─────────────────────────────────────────
   NEWSLETTER PAGE
   ───────────────────────────────────────── */
.newsletter-section {
  padding: 160px 48px 120px;
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 32px;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--night);
  margin-bottom: 32px;
}

.newsletter-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--night);
  opacity: 0.8;
  margin-bottom: 16px;
}

.newsletter-sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--night);
  opacity: 0.65;
  margin-bottom: 56px;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin-bottom: 16px;
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--night);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  border-radius: 0;
}

.newsletter-input::placeholder { opacity: 0.5; }

.newsletter-legal {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--night);
  opacity: 0.25;
  letter-spacing: 0.06em;
}

.newsletter-exclusive {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--border);
}

.exclusive-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.exclusive-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--night);
  opacity: 0.75;
}

.exclusive-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--cyan);
  opacity: 0.5;
  letter-spacing: 0.06em;
}

/* ─────────────────────────────────────────
   ARTIKEL DETAIL
   ───────────────────────────────────────── */
.artikel-detail {
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 48px 120px;
}

.artikel-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.artikel-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.artikel-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-tag);
  cursor: pointer;
  transition: opacity 0.15s;
  text-decoration: none;
}

.artikel-badge:hover { opacity: 0.7; }

.back-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--night);
  opacity: 0.35;
  text-decoration: none;
  transition: opacity 0.15s;
}

.back-link:hover { opacity: 0.7; }

.artikel-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--night);
  margin-bottom: 24px;
}

.artikel-lead {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.6;
  color: var(--night);
  font-weight: 500;
  margin-bottom: 24px;
}

.artikel-byline {
  display: flex;
  gap: 24px;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.artikel-byline span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--night);
  opacity: 0.35;
}

.artikel-body p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: var(--night);
  margin-bottom: 24px;
}

.artikel-body h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--night);
  margin-top: 56px;
  margin-bottom: 20px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.artikel-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.artikel-body li {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: var(--night);
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.artikel-body li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.artikel-body img {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
}

.artikel-body figure {
  margin: 40px 0;
}

.artikel-body figcaption {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--night);
  opacity: 0.45;
  letter-spacing: 0.06em;
  margin-top: 10px;
}

.artikel-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.artikel-nav-btn {
  background: var(--surface);
  border: none;
  padding: 24px 28px;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  display: block;
  color: var(--night);
}

.artikel-nav-btn:hover { background: var(--surface-hover); }
.artikel-nav-btn.is-next { text-align: right; }

.artikel-nav-dir {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  opacity: 0.35;
  margin-bottom: 8px;
  display: block;
}

.artikel-nav-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--night);
  line-height: 1.3;
}

/* ─────────────────────────────────────────
   ARTICLES TEASER (on sub-brand pages)
   ───────────────────────────────────────── */
.articles-teaser {
  padding: 100px 48px 0;
  max-width: var(--layout-max-width);
  margin: 0 auto;
}

.teaser-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0;
}

.teaser-all-link {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--night);
  opacity: 0.25;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}

.teaser-all-link:hover { opacity: 0.65; }

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
.site-footer {
  max-width: var(--layout-max-width);
  margin: 100px auto 0;
  padding: 80px 48px 60px;
  border-top: 1px solid var(--border);
}

/* Newsletter strip */
.footer-nl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}

.footer-nl-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.footer-nl-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--night);
  margin-bottom: 16px;
}

.footer-nl-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--night);
  opacity: 0.45;
  max-width: 320px;
}

.footer-nl-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.footer-nl-input-row { display: flex; }

.footer-nl-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(11,28,38,0.04);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--night);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  border-radius: 0;
}

.footer-nl-input::placeholder { opacity: 0.5; }

.footer-nl-legal {
  font-family: var(--font-mono);
  font-size: 10px;
  opacity: 0.3;
  letter-spacing: 0.06em;
  color: var(--night);
}

/* Footer columns */
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: var(--night);
  opacity: 0.35;
  margin-top: 16px;
  max-width: 240px;
}

.footer-col-heading {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--night);
  opacity: 0.3;
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.3;
  text-decoration: none;
  color: var(--night);
  transition: opacity 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.footer-link:hover { opacity: 0.75; }
.footer-link.fl-street  { color: var(--teal);   opacity: 0.6; }
.footer-link.fl-stories { color: var(--coral);  opacity: 0.6; }
.footer-link.fl-studio  { color: var(--yellow); opacity: 0.6; }
.footer-link.fl-street:hover, .footer-link.fl-stories:hover, .footer-link.fl-studio:hover { opacity: 1; }

/* Footer bottom bar */
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy, .footer-socials {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--night);
  opacity: 0.2;
  letter-spacing: 0.08em;
}

.footer-socials { display: flex; gap: 28px; }

/* ─────────────────────────────────────────
   HAMBURGER NAV
   ───────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
}

.ham-line {
  display: block;
  height: 1.5px;
  background: var(--night);
  transition: transform 0.25s ease, opacity 0.15s ease;
}

.ham-line-1 { width: 22px; }
.ham-line-2 { width: 16px; }
.ham-line-3 { width: 22px; }

.nav-hamburger.is-open .ham-line-1 { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open .ham-line-2 { opacity: 0; }
.nav-hamburger.is-open .ham-line-3 { transform: translateY(-6.5px) rotate(-45deg); }

/* Flyout */
.nav-flyout {
  position: fixed;
  top: 53px;
  left: 0; right: 0;
  z-index: 199;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, border-color 0.3s ease;
  display: none;
}

.nav-flyout.is-open {
  max-height: 320px;
  border-bottom-color: var(--border);
}

.nav-flyout-link {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--night);
  border-left: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.nav-flyout-link.is-active.nav-street  { color: var(--teal);   border-left-color: var(--teal); }
.nav-flyout-link.is-active.nav-stories { color: var(--coral);  border-left-color: var(--coral); }
.nav-flyout-link.is-active.nav-studio  { color: var(--yellow); border-left-color: var(--yellow); }
.nav-flyout-link.is-active.nav-ueber   { color: var(--night);  border-left-color: var(--night); }

/* ─────────────────────────────────────────
   RESPONSIVE — COLLAPSED (≤ 1023px)
   Tablet + Mobile
   ───────────────────────────────────────── */
@media (max-width: 1023px) {
  /* Nav */
  .site-nav { padding: 16px 24px; }
  .nav-brand .brand-mark,
  .nav-brand .sub-brand-mark { font-size: 22px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-flyout { display: block; }

  /* Homepage */
  .home-section { padding: 64px 32px 100px; }
  .home-headline { font-size: clamp(52px, 9vw, 76px); }
  .home-greeting { font-size: 18px; }
  .home-blank-sentence { font-size: 18px; }
  .blank-response { font-size: 16px; }

  /* Page hero */
  .page-hero { padding: 130px 32px 64px; }
  .page-hero-label { font-size: 14px; }
  .page-hero-title { font-size: clamp(40px, 6vw, 72px); }
  .page-hero-subtitle { font-size: 15px; }

  /* Photo grid */
  .photo-section { padding: 0 32px; }
  .photo-masonry { columns: 2; }

  /* Article lists */
  .article-list-section { padding: 0 32px 100px; }
  .article-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
    align-items: flex-start;
  }
  .article-n { display: none; }
  .article-meta {
    text-align: left;
    display: flex;
    flex-direction: row;
    gap: 16px;
  }

  /* Article detail */
  .artikel-detail { padding: 130px 32px 100px; }
  .artikel-nav { grid-template-columns: 1fr; }

  /* Studio */
  .studio-section { padding: 0 32px 72px; }
  .cards-section { padding: 72px 32px 0; }
  .canvas-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .cards-grid { grid-template-columns: 1fr 1fr; }

  /* Über */
  .ueber-section { padding: 130px 32px 100px; }
  .ueber-grid { grid-template-columns: 1fr; gap: 56px; }
  .portrait-placeholder { max-height: 320px; }

  /* Newsletter */
  .newsletter-section { padding: 130px 32px 100px; }
  .exclusive-item { flex-direction: column; gap: 6px; }

  /* Articles teaser */
  .articles-teaser { padding: 80px 32px 0; }

  /* Footer */
  .site-footer { padding: 60px 32px 40px; margin-top: 60px; }
  .footer-nl { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; padding-bottom: 48px; }
  .footer-nl-title { font-size: 22px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-cols > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Filter bar */
  .filter-bar { flex-wrap: wrap; }
}

/* ─────────────────────────────────────────
   PICTURE-IDEA-CANVAS PAGE
   ───────────────────────────────────────── */
/* Hero */
.pic-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 120px 48px 80px;
}
.pic-hero-content { max-width: 560px; }
.pic-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pic-hero-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(11,28,38,0.15));
}

@media (max-width: 900px) {
  .pic-hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 64px;
  }
  .pic-hero-image { display: none; }
}

.pic-section {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 80px 48px;
}

.pic-section--alt {
  background: var(--cream);
  max-width: 100%;
  padding: 80px 0;
}
.pic-section--alt > * {
  max-width: var(--layout-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}

.pic-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--night);
  margin: 12px 0 24px;
  line-height: 1.1;
}

.pic-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 640px;
  margin-bottom: 16px;
}
.pic-text--intro {
  font-size: 18px;
  margin-bottom: 40px;
}

/* Two-col layout */
.pic-two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.pic-two-col--centered { grid-template-columns: 640px; }

/* Grundformel */
.pic-formula {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 32px 0 8px;
  padding: 20px 24px;
  background: var(--night);
  border-radius: 4px;
}
.pic-formula-left, .pic-formula-right {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
}
.pic-formula-center {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--yellow);
}
.pic-formula-arrow {
  font-size: 14px;
  color: rgba(255,255,255,0.25);
}
.pic-formula-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink);
  opacity: 0.4;
  text-align: center;
  margin: 0;
}

/* Quote */
.pic-quote {
  border-left: 3px solid var(--yellow);
  padding: 24px 24px 24px 28px;
  margin: 0;
  background: rgba(201,168,0,0.06);
  border-radius: 0 4px 4px 0;
}
.pic-quote p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  margin: 0 0 14px;
}
.pic-quote footer {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--yellow);
  text-transform: uppercase;
}

/* Szenarien */
.pic-szenarien {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.pic-szenario {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 22px;
  background: #fff;
}
.pic-szenario-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.pic-szenario-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--night);
}
.pic-szenario-start {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--yellow);
  white-space: nowrap;
}
.pic-szenario-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.75;
  margin: 0;
}

/* Download */
.pic-download {
  text-align: center;
}
.pic-download .pic-text--intro { margin-left: auto; margin-right: auto; }
.pic-download-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.pic-download-btn {
  min-width: 260px;
  justify-content: center;
}
.pic-playbook-note {
  max-width: 560px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.7;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: left;
}
.pic-playbook-link {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--yellow);
  text-decoration: none;
}
.pic-playbook-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .pic-two-col { grid-template-columns: 1fr; gap: 40px; }
  .pic-two-col--centered { grid-template-columns: 1fr; }
  .pic-section { padding: 64px 24px; }
  .pic-szenarien { grid-template-columns: 1fr; }
  .pic-download-btn { min-width: 0; width: 100%; }

  .reportagen-section { padding: 0 24px 64px; }
  .reportagen-grid--2up { grid-template-columns: 1fr; gap: 32px; }
  .reportage-card-img { aspect-ratio: 16/10; }
  .reportage-card-overlay { padding: 28px 24px; }
  .reportage-card-foot {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 24px 28px;
  }
}

/* ─────────────────────────────────────────
   LIGHTBOX
   ───────────────────────────────────────── */
[data-lightbox] img { cursor: zoom-in; }

.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(11, 28, 38, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lb-overlay.is-open { opacity: 1; }

.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  user-select: none;
  cursor: default;
}

.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
  line-height: 1;
  transition: color 0.15s;
}
.lb-close:hover { color: #fff; }

.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.45);
  font-size: 30px;
  transition: color 0.15s;
  user-select: none;
}
.lb-arrow:hover { color: #fff; }
.lb-arrow-prev { left: 12px; }
.lb-arrow-next { right: 12px; }
.lb-arrow.is-hidden { display: none; }

/* ─────────────────────────────────────────
   RESPONSIVE — MOBILE ONLY (≤ 639px)
   ───────────────────────────────────────── */
@media (max-width: 639px) {
  /* Homepage */
  .home-section { padding: 48px 24px 80px; }
  .home-headline { font-size: clamp(40px, 12vw, 52px); }

  /* Page hero */
  .page-hero { padding: 100px 24px 56px; }
  .page-hero-title { font-size: clamp(32px, 9vw, 48px); }

  /* Photo grid */
  .photo-section { padding: 0 24px; }
  .photo-masonry { columns: 1; }

  /* Article lists */
  .article-list-section { padding: 0 24px 80px; }

  /* Article detail */
  .artikel-detail { padding: 100px 24px 80px; }

  /* Studio */
  .studio-section { padding: 0 24px 64px; }
  .cards-section { padding: 64px 24px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .canvas-field { padding: 14px 16px; min-height: 80px; }

  /* Über */
  .ueber-section { padding: 100px 24px 80px; }
  .ueber-title { font-size: clamp(32px, 10vw, 48px); }

  /* Newsletter */
  .newsletter-section { padding: 100px 24px 80px; }
  .newsletter-title { font-size: clamp(36px, 11vw, 52px); }
  .newsletter-form { flex-wrap: wrap; }
  .newsletter-input { min-width: 100%; border-right: 1px solid var(--border); border-bottom: none; }

  /* Articles teaser */
  .articles-teaser { padding: 64px 24px 0; }

  /* Footer */
  .site-footer { padding: 48px 24px 32px; }
  .footer-nl-input-row { flex-wrap: wrap; }
  .footer-nl-input { min-width: 100%; border-right: 1px solid var(--border); border-bottom: none; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-brand .brand-mark { font-size: 22px; }
}

/* ─────────────────────────────────────────
   SERIES SHOWCASE (street page)
   ───────────────────────────────────────── */

.series-showcase {
  padding: 0 48px 96px;
  max-width: var(--layout-max-width);
  margin: 0 auto;
}

.series-showcase-header {
  margin-bottom: 24px;
}

/* Card */
.series-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-decoration: none;
  color: inherit;
  background: var(--night);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  /* Strips flush to all edges — no gap */
  align-items: stretch;
}
.series-card:hover {
  box-shadow: 0 12px 48px rgba(11, 28, 38, 0.18);
}

/* 7 vertical image strips — flush to card edges */
.series-card-strips {
  display: flex;
  /* No fixed height: stretches to match the content side */
  min-height: 380px;
}
.series-card-strip {
  flex: 1;
  overflow: hidden;
}
.series-card-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) brightness(0.55);
  transition: filter 0.6s ease;
}
/* On hover: each strip lights up in its spectral color */
.series-card:hover .series-card-strip img {
  filter: none;
}
/* Staggered reveal: each strip slightly later */
.series-card-strip:nth-child(1) img { transition-delay: 0.00s; }
.series-card-strip:nth-child(2) img { transition-delay: 0.05s; }
.series-card-strip:nth-child(3) img { transition-delay: 0.10s; }
.series-card-strip:nth-child(4) img { transition-delay: 0.15s; }
.series-card-strip:nth-child(5) img { transition-delay: 0.20s; }
.series-card-strip:nth-child(6) img { transition-delay: 0.25s; }
.series-card-strip:nth-child(7) img { transition-delay: 0.30s; }

/* Text side */
.series-card-content {
  padding: 48px 48px 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.series-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.series-card-nr {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 232, 240, 0.35);
}
.series-card-cat {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.series-card-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #e8e8f0;
  margin-bottom: 28px;
}

.series-card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(232, 232, 240, 0.55);
  max-width: 340px;
  margin-bottom: 36px;
}

.series-card-cta {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.series-card:hover .series-card-cta {
  gap: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .series-card {
    grid-template-columns: 1fr;
  }
  .series-card-strips {
    min-height: 240px;
    height: 240px;
  }
  .series-card-content {
    padding: 36px 32px;
  }
}

@media (max-width: 767px) {
  .series-showcase {
    padding: 0 24px 72px;
  }
  .series-card-strips {
    min-height: 180px;
    height: 180px;
  }
  .series-card-title {
    font-size: clamp(48px, 12vw, 72px);
  }
  .series-card-content {
    padding: 28px 24px;
  }
}
