:root {
  --bg: #f4f1eb;
  --text: #090909;
  --muted: #6d675e;
  --line: #111;
  --white: #f8f6f1;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DIN 2014", "DIN Alternate", "Roboto Condensed", Arial, sans-serif;
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; }

.site-header,
.site-footer {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 42px;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}

.site-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  margin-top: 28px;
}

.brand {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: .01em;
}

.nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-weight: 700;
}

.culture-home {
  padding: 0;
}

/* HERO genau wie Referenz: links Text, rechts Schwarzweiß-Stadtraum/Plakat */
.hero-split {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 620px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: 112px 42px 60px;
  background: linear-gradient(90deg, #f8f6f1 0%, #f2efe8 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker,
.label {
  display: block;
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(58px, 6.2vw, 112px);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-subline {
  margin: 36px 0 0;
  max-width: 520px;
  font-size: clamp(23px, 1.8vw, 32px);
  line-height: 1.45;
  letter-spacing: -.02em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 54px;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .06em;
  font-weight: 800;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  min-height: 72px;
  padding: 0 34px;
  background: var(--text);
  color: var(--white);
}

.button-link span {
  display: inline-block;
  margin-left: 16px;
  font-size: 24px;
}

/* rechte Bildfläche als CSS-Visual, damit Kirby ohne Bilddatei sofort läuft */
.hero-image {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 38% 56%, rgba(0,0,0,.46) 0 3%, transparent 5%),
    linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.1) 38%, rgba(0,0,0,.35)),
    linear-gradient(180deg, #e7e5df 0%, #bcbab5 54%, #393939 100%);
  filter: grayscale(1);
}

.hero-image::before {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0;
  height: 35%;
  background:
    repeating-linear-gradient(7deg, rgba(0,0,0,.18) 0 2px, transparent 2px 28px),
    linear-gradient(180deg, transparent, rgba(0,0,0,.62));
  opacity: .65;
}

.figure {
  position: absolute;
  left: 30%;
  bottom: 23%;
  width: 72px;
  height: 230px;
  background: rgba(0,0,0,.78);
  border-radius: 50% 50% 30% 30%;
  filter: blur(8px);
  opacity: .82;
}

.figure::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -42px;
  width: 38px;
  height: 44px;
  background: rgba(0,0,0,.75);
  border-radius: 50%;
}

.billboard {
  position: absolute;
  right: 10%;
  top: 7%;
  width: min(420px, 38vw);
  height: 74%;
  background: #d9d8d3;
  border: 18px solid #080808;
  box-shadow: 0 42px 70px rgba(0,0,0,.42);
  padding: 9% 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.billboard::after {
  content: "";
  position: absolute;
  left: -36px;
  right: -36px;
  bottom: -54px;
  height: 54px;
  background: #070707;
}

.billboard p {
  margin: 0;
  font-size: clamp(34px, 3.4vw, 68px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 900;
  text-transform: uppercase;
}

.billboard small {
  margin-top: auto;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 900;
}

/* Grid darunter */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding: 28px 42px 0;
}

.culture-card {
  min-height: 250px;
  border: 1px solid rgba(0,0,0,.22);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,.18);
}

.culture-card:hover,
.card:hover {
  background: rgba(255,255,255,.36);
}

.card-large { grid-column: span 4; min-height: 380px; }
.card-medium { grid-column: span 4; min-height: 380px; }
.card-small { grid-column: span 4; min-height: 310px; }
.card-wide { grid-column: span 12; min-height: 220px; }

.dark {
  background: #050505;
  color: var(--bg);
}

.dark .label,
.dark p { color: #c7c0b5; }

.culture-card h2,
.culture-card h3 {
  margin: 20px 0 0;
  font-size: clamp(30px, 3.2vw, 58px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 900;
  text-transform: uppercase;
}

.card-medium h3,
.card-small h3 {
  font-size: clamp(26px, 2.3vw, 42px);
}

.culture-card p {
  max-width: 460px;
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.42;
  color: var(--muted);
}

.arrow {
  align-self: flex-end;
  font-size: 36px;
  line-height: 1;
}

.quote {
  font-family: "DIN 2014", "DIN Alternate", "Roboto Condensed", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: -.04em;
}

.listing,
.article {
  padding: 48px 42px;
  max-width: 1100px;
}

.listing h1,
.article h1 {
  margin: 0 0 28px;
  font-size: clamp(54px, 9vw, 140px);
  line-height: .88;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.card {
  display: block;
  min-height: 210px;
  border: 1px solid var(--line);
  padding: 22px;
  background: rgba(255,255,255,.14);
}

.card small {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.card h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 48px);
  line-height: .96;
  letter-spacing: -.055em;
}

.card p,
.text {
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
}

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

  .hero-image {
    min-height: 560px;
  }

  .billboard {
    width: min(420px, 58vw);
  }
}

@media (max-width: 980px) {
  .site-header,
  .site-footer {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero-copy {
    padding: 70px 22px;
  }

  .culture-grid {
    padding: 22px;
  }

  .card-large,
  .card-medium,
  .card-small,
  .card-wide {
    grid-column: span 12;
  }

  .list-grid {
    grid-template-columns: 1fr;
  }
}


/* ESSAYS PAGE */

.essays-page {
  padding: 0 42px 42px;
}

.essays-hero {
  display: grid;
  grid-template-columns: 1fr .62fr;
  gap: 42px;
  min-height: 48vh;
  align-items: end;
  padding: 70px 0 42px;
  border-bottom: 1px solid var(--line);
}

.essays-hero h1 {
  margin: 0;
  font-size: clamp(76px, 14vw, 210px);
  line-height: .78;
  letter-spacing: -.085em;
  text-transform: uppercase;
  font-weight: 900;
}

.essays-intro {
  border-left: 1px solid var(--line);
  padding-left: 34px;
  max-width: 560px;
}

.essays-intro p {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 40px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 800;
}

.essay-feature {
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.essay-feature-link {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 42px;
  min-height: 360px;
  padding: 34px;
  background: var(--text);
  color: var(--bg);
}

.essay-feature-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #c7c0b5;
}

.essay-feature h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(54px, 7vw, 128px);
  line-height: .86;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.essay-feature p {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: 24px;
  line-height: 1.28;
  color: #c7c0b5;
}

.read-more {
  display: inline-block;
  margin-top: 44px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;
}

.essay-index {
  padding-top: 28px;
}

.index-title {
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}

.essay-row {
  display: grid;
  grid-template-columns: 160px 1fr 40px;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid rgba(0,0,0,.22);
}

.essay-type {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}

.essay-title {
  font-size: clamp(28px, 3vw, 54px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 900;
  text-transform: uppercase;
}

.essay-arrow {
  font-size: 34px;
  text-align: right;
}

/* ARTICLE PAGE */

.essay-article {
  padding: 0 42px 42px;
}

.article-hero {
  min-height: 58vh;
  padding: 70px 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid var(--line);
}

.article-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}

.article-hero h1 {
  margin: 0;
  max-width: 1280px;
  font-size: clamp(58px, 10vw, 170px);
  line-height: .82;
  letter-spacing: -.08em;
  text-transform: uppercase;
}

.article-subtitle {
  margin: 36px 0 0;
  max-width: 760px;
  font-size: clamp(24px, 2.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 820px);
  gap: 70px;
  padding-top: 54px;
}

.article-sidebar {
  border-right: 1px solid rgba(0,0,0,.22);
  padding-right: 28px;
}

.sidebar-block {
  padding: 0 0 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,.18);
  font-size: 16px;
  line-height: 1.4;
}

.sidebar-label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}

.article-text {
  font-size: clamp(21px, 1.45vw, 27px);
  line-height: 1.52;
  letter-spacing: -.015em;
}

.article-text p {
  margin: 0 0 1.15em;
}

.article-text p:first-child {
  font-size: clamp(30px, 3.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: 900;
}

.article-text strong {
  font-weight: 900;
}

.article-audio {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-audio audio {
  width: 100%;
}

@media (max-width: 980px) {
  .essays-page,
  .essay-article {
    padding: 0 22px 22px;
  }

  .essays-hero,
  .essay-feature-link,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .essays-intro {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 24px;
  }

  .essay-row {
    grid-template-columns: 1fr 32px;
  }

  .essay-type {
    grid-column: 1 / -1;
  }

  .article-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.22);
    padding-right: 0;
  }
}
