/* ─────────────────────────────────────────
   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;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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-ghost-light { background: transparent; color: var(--cream); border: 1px solid rgba(245,243,232,0.35); }
.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: zoom-in;
  background: var(--surface);
}

.photo-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.photo-item:hover img { transform: scale(1.03); }

.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; }

/* ─────────────────────────────────────────
   SECTION HERO (studio, street, stories …)
   ───────────────────────────────────────── */
.section-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;
}

.section-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─────────────────────────────────────────
   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;
}

/* ── Studio tool teasers (Canvas + Cards on /studio/) ── */
.studio-tool-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  border-top: 1px solid var(--border);
}

.studio-tool-teaser--flip .studio-tool-img { order: 2; }
.studio-tool-teaser--flip .studio-tool-text { order: 1; }

.studio-tool-img img {
  width: 100%;
  height: auto;
  display: block;
}

.studio-tool-h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--night);
  line-height: 1.15;
  margin: 12px 0 20px;
}

.studio-tool-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--night);
  opacity: 0.75;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Cards placeholder mock */
.studio-tool-img--cards {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.studio-cards-preview {
  position: relative;
  width: 200px;
  height: 200px;
}

.studio-card-mock {
  position: absolute;
  width: 130px;
  height: 180px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--border-light);
}

.studio-card-mock--1 { top: 0;  left: 0;   transform: rotate(-6deg); background: #ede8df; }
.studio-card-mock--2 { top: 10px; left: 30px; transform: rotate(2deg);  background: #e8e3da; }
.studio-card-mock--3 { top: 5px;  left: 60px; transform: rotate(8deg);  background: #f5f2ec; }

@media (max-width: 900px) {
  .studio-tool-teaser { grid-template-columns: 1fr; gap: 32px; }
  .studio-tool-teaser--flip .studio-tool-img { order: 0; }
  .studio-tool-teaser--flip .studio-tool-text { order: 0; }
}

/* 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 {
  max-width: 480px;
  margin-bottom: 16px;
}

.newsletter-form--inline {
  max-width: 400px;
  margin-bottom: 0;
}

.newsletter-input-row { display: flex; }

.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 */
  .section-hero { grid-template-columns: 1fr; padding: 100px 32px 64px; gap: 40px; }
  .section-hero-visual { display: none; }
  .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(--night);
  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; }
.pic-two-col--equal   { grid-template-columns: 1fr 1fr; }

/* 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(--night);
  opacity: 0.4;
  text-align: center;
  margin: 0;
}

/* Canvas-Preview im Content-Bereich */
.pic-canvas-preview {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 32px;
  filter: drop-shadow(0 4px 20px rgba(11,28,38,0.12));
}

/* Quote */
.pic-quote {
  border-left: 3px solid var(--yellow);
  padding: 24px 24px 24px 28px;
  margin: 0;
  max-width: 680px;
  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(--night);
  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(--night);
  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(--night);
  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 */
  .section-hero { padding: 100px 24px 56px; }
  .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;
}

.series-showcase-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* 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-mono);
  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;
}

/* ── Series card: layout modifiers ─────────────────────────────── */

/* --strips: explicit name for the multi-strip layout (default) */
/* No extra CSS needed — .series-card base is already the strips layout */

/* --single: one hero image instead of strips */
.series-card--single .series-card-photos {
  overflow: hidden;
}
.series-card--single .series-card-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.series-card--single:hover .series-card-photos img {
  transform: scale(1.04);
}

/* 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;
  }
}

/* ─────────────────────────────────────────
   FULLSCREEN HERO NAV OVERLAY
   Gemeinsam für alle Stories-/Serien-Seiten
   mit vollflächigemPhoto-Hero.
   Body-Klasse: has-fullscreen-hero
   JS setzt nav-hero per Scroll (main.js)
   ───────────────────────────────────────── */
.has-fullscreen-hero .site-main { padding-top: 0; }
.has-fullscreen-hero .site-nav {
  transition: background 0.4s ease, border-color 0.4s ease;
}
.has-fullscreen-hero.nav-hero .site-nav {
  background: transparent;
  border-color: transparent;
}
.has-fullscreen-hero.nav-hero .site-nav .brand-mark,
.has-fullscreen-hero.nav-hero .site-nav .sbm-fill,
.has-fullscreen-hero.nav-hero .site-nav .nav-link {
  color: rgba(245,243,232,0.9);
}
.has-fullscreen-hero.nav-hero .site-nav .sbm-suffix {
  color: var(--coral);
}
.has-fullscreen-hero.nav-hero .site-nav .nav-hamburger .ham-line {
  background: rgba(245,243,232,0.9);
}

/* ─────────────────────────────────────────
   STORY PHOTO GRIDS
   Gemeinsam für Reportage- und Porträt-Seiten.
   Kinder sind immer .photo-item
   ───────────────────────────────────────── */
.story-full { margin: 4px 0; }
.story-full .photo-item img { width: 100%; height: auto; }

.story-grid-2,
.story-grid-3 {
  display: grid;
  gap: 4px;
  margin: 4px 0;
}
.story-grid-2 { grid-template-columns: 1fr 1fr; }
.story-grid-3 { grid-template-columns: 1fr 1fr 1fr; }

.story-grid-2 .photo-item img,
.story-grid-3 .photo-item img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 640px) {
  .story-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .story-grid-2,
  .story-grid-3 { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   STORY CLOSING
   Abschluss-Sektion für Reportage-/Porträt-Seiten
   ───────────────────────────────────────── */
.story-closing {
  text-align: center;
  padding: 100px 48px 80px;
  max-width: 560px;
  margin: 0 auto;
}

.story-closing-line {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 auto 40px;
}

.story-closing-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--night);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.story-closing-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--night);
  opacity: 0.65;
  margin-bottom: 32px;
}

.story-closing-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.story-closing-link:hover { opacity: 0.7; }

@media (max-width: 640px) {
  .story-closing { padding: 72px 24px 60px; }
}

/* ─────────────────────────────────────────
   FULLSCREEN HERO TITLE
   Basisklasse für alle h1s auf dunklen
   Vollbild-Foto-Heros (Street-Serien,
   Stories-Serien). Größe wird per Seite
   überschrieben. Farbe via CSS-Override.
   ───────────────────────────────────────── */
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 9vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: #f5f3e8;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ─────────────────────────────────────────
   HERO META-TEXT
   Ort, Jahr, Fotograf — unter dem hero-title
   auf Fullscreen-Foto-Heros. Farbe per
   CSS-Context-Selektor überschreiben.
   ───────────────────────────────────────── */
.hero-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,243,232,0.45);
}

/* ─────────────────────────────────────────
   HERO SCROLL INDICATOR
   Vertikaler „Scroll"-Text unten rechts
   im Fullscreen-Hero (z.B. UuD-Seiten)
   ───────────────────────────────────────── */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 72px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(245,243,232,0.35);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(245,243,232,0.3);
}

@media (max-width: 900px) { .hero-scroll-hint { right: 40px; } }
@media (max-width: 640px) { .hero-scroll-hint { display: none; } }

/* ─────────────────────────────────────────
   HERO SCROLL ARROW
   SVG-Pfeil-Link im Fullscreen-Hero.
   Position, Farbe und Animation per
   Seiten-CSS überschreiben.
   ───────────────────────────────────────── */
.hero-scroll-arrow {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}

/* ─────────────────────────────────────────
   STORY INTRO
   Zentrierter Einstiegstext nach dem
   Fullscreen-Hero (Reportagen, Portraits).
   text-align per Inline-Style wenn nötig.
   ───────────────────────────────────────── */
.story-intro {
  max-width: 620px;
  margin: 0 auto;
  padding: 100px 48px 60px;
}
.story-intro p {
  font-family: var(--font-body);
  font-size: 21px;
  line-height: 1.7;
  color: var(--night);
  margin-bottom: 20px;
}
.story-intro p:last-child { margin-bottom: 0; }

@media (max-width: 900px) { .story-intro { padding: 80px 32px 48px; } }
@media (max-width: 640px) { .story-intro { padding: 64px 24px 40px; } }

/* ─────────────────────────────────────────
   FADE-IN ON SCROLL
   Gesteuert via IntersectionObserver (main.js)
   ───────────────────────────────────────── */
.js-fadein {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.js-fadein.is-visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────
   HEADER SUB MINIMAL
   Zweispaltiger farbiger Subpage-Header.
   Body-Klasse: has-colored-nav nav-{street|stories|studio}
   Komponente:  .hsm  (Header Sub Minimal)
   ───────────────────────────────────────── */

/* Nav-Override: Hintergrund = Kategorie-Farbe aus Design-System-Token */
.has-colored-nav .site-nav {
  border-bottom-color: transparent;
}
.has-colored-nav.nav-studio  .site-nav { background: var(--yellow); }
.has-colored-nav.nav-street  .site-nav { background: var(--teal); }
.has-colored-nav.nav-stories .site-nav { background: var(--coral); }

/* Nav-Flyout übernimmt gleiche Farbe */
.has-colored-nav.nav-studio  .nav-flyout { background: var(--yellow); }
.has-colored-nav.nav-street  .nav-flyout { background: var(--teal); }
.has-colored-nav.nav-stories .nav-flyout { background: var(--coral); }

/* Alle Nav-Texte / Marken invertieren */
.has-colored-nav .site-nav .nav-link,
.has-colored-nav .site-nav .nav-flyout-link,
.has-colored-nav .nav-flyout .nav-flyout-link {
  color: var(--cream);
  opacity: 0.85;
}
.has-colored-nav .site-nav .nav-link:hover,
.has-colored-nav .nav-flyout .nav-flyout-link:hover {
  opacity: 1;
}
.has-colored-nav .site-nav .nav-link.is-active,
.has-colored-nav .nav-flyout .nav-flyout-link.is-active {
  color: var(--cream);
  opacity: 1;
  border-bottom-color: var(--cream);
  border-left-color: var(--cream);
}

/* Brand Mark: cream-Block, Text in der Kategorie-Farbe */
.has-colored-nav .site-nav .brand-mark {
  background: var(--cream);
  color: var(--night); /* Fallback */
}
.has-colored-nav.nav-studio  .site-nav .brand-mark { color: var(--yellow); }
.has-colored-nav.nav-street  .site-nav .brand-mark { color: var(--teal); }
.has-colored-nav.nav-stories .site-nav .brand-mark { color: var(--coral); }

/* Sub-Brand Mark: Fill in cream mit Kategorie-Text; Suffix cream-konturiert */
.has-colored-nav .site-nav .sub-brand-mark .sbm-fill {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--night); /* Fallback */
}
.has-colored-nav.nav-studio  .site-nav .sub-brand-mark .sbm-fill { color: var(--yellow); }
.has-colored-nav.nav-street  .site-nav .sub-brand-mark .sbm-fill { color: var(--teal); }
.has-colored-nav.nav-stories .site-nav .sub-brand-mark .sbm-fill { color: var(--coral); }

.has-colored-nav .site-nav .sub-brand-mark .sbm-suffix {
  color: var(--cream);
  border-color: var(--cream);
}

/* Hamburger-Linien */
.has-colored-nav .site-nav .ham-line { background: var(--cream); }

/* ── Komponente ──
   HTML-Struktur:
     .hsm-outer
       .hsm
         .hsm-left       (label + title)
         .hsm-right      (copy — rechte Spalte)
         .hsm-actions    (buttons — bleibt links, kommt mobile nach copy)
*/
.hsm-outer {
  background: var(--hsm-color, var(--night));
}

.hsm {
  padding: 120px var(--layout-gutter) 80px;
  display: grid;
  grid-template-columns: 60fr 40fr;
  grid-template-rows: auto auto;
  column-gap: 80px;
  row-gap: 0;
  max-width: var(--layout-max-width);
  margin: 0 auto;
}

/* Desktop-Placement */
.hsm-left    { grid-column: 1; grid-row: 1; }
.hsm-right   { grid-column: 2; grid-row: 1 / 3; align-self: start; padding-top: 6px; }
.hsm-actions { grid-column: 1; grid-row: 2; padding-top: 36px; }

/* Label: Standard-Stile aus .page-hero-label, nur Farbe überschrieben */
.hsm .page-hero-label {
  color: rgba(245,243,232,0.70);
}

.hsm-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-extrabold);
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 0;
}

.hsm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Buttons im HSM invertieren */
.hsm-actions .btn-primary,
.hsm-actions .btn-hsm-cta {
  background: var(--cream);
  color: var(--night);
}
.hsm-actions .btn-ghost {
  color: var(--cream);
  border-color: rgba(245,243,232,0.35);
}
.hsm-actions .btn-ghost:hover { border-color: rgba(245,243,232,0.65); }

.hsm-right p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245,243,232,0.75);
  margin-bottom: 1.1em;
}
.hsm-right p:last-child { margin-bottom: 0; }

/* Responsive: single column, Reihenfolge label→title→copy→buttons */
@media (max-width: 1023px) {
  .hsm {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 100px 24px 56px;
  }
  .hsm-left    { grid-column: 1; grid-row: 1; }
  .hsm-right   { grid-column: 1; grid-row: 2; padding-top: 28px; }
  .hsm-actions { grid-column: 1; grid-row: 3; padding-top: 28px; }
}

@media (max-width: 600px) {
  .hsm { padding: 90px 20px 48px; }
  .hsm-title { font-size: clamp(28px, 8vw, 40px); }
}
