:root {
  --paper: #fff;
  --ink: #111;
  --muted: #747474;
  --line: rgb(17 17 17 / 58%);
  --soft-line: rgb(17 17 17 / 16%);
  --accent: #ffd400;
  --white: #fff;
  --font: "Helvetica Neue", "Neue Haas Grotesk Text", Arial, Helvetica, sans-serif;
  --display-font: "Canela", "Noe Display", "Tiempos Display", "Cormorant Garamond", "Playfair Display", "Bodoni 72 Display", "Bodoni 72", Didot, Georgia, serif;
  --page-gutter: clamp(18px, 5vw, 72px);
  --content-max: 1260px;
  --hero-max: 1260px;
  --wide-max: 1900px;
  --layout-grid: repeat(12, minmax(0, 1fr));
  --grid-gap-x: clamp(18px, 3.2vw, 48px);
  --grid-gap-y: clamp(34px, 4.5vw, 72px);
  --section-space: clamp(64px, 7.4vw, 116px);
  --section-space-tight: clamp(36px, 4.5vw, 68px);
  --section-space-compact: clamp(18px, 2.4vw, 34px);
  --label-space: clamp(24px, 3.2vw, 46px);
  --card-space: clamp(14px, 1.8vw, 22px);
  --text-measure: 42ch;
  --header-height: clamp(58px, 5.4vw, 78px);
  --logo-gutter: clamp(8px, 2vw, 28px);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.site-header {
  --header-type-size: clamp(0.95rem, 1.35vw, 1.22rem);

  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  gap: clamp(14px, 2.4vw, 42px);
  min-height: var(--header-height);
  padding: clamp(10px, 1vw, 14px) var(--page-gutter);
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(16px);
  font-family: var(--font);
}

.main-nav,
.social-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  min-width: 0;
  white-space: nowrap;
}

.main-nav {
  grid-column: 1;
  justify-content: flex-start;
  gap: clamp(12px, 1.8vw, 24px);
  color: var(--ink);
  font-size: var(--header-type-size);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.social-nav {
  grid-column: 2;
  color: var(--ink);
  justify-content: flex-end;
  gap: clamp(10px, 1.3vw, 18px);
}

.social-nav a {
  font-family: inherit;
  font-size: var(--header-type-size);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a:hover,
.social-nav a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.masthead,
.featured-editorial,
.shorts,
.video-section,
.office-section,
.library,
.gallery-section,
.archive {
  padding: var(--section-space) var(--page-gutter);
}

.masthead {
  padding-top: var(--section-space-tight);
  padding-bottom: clamp(18px, 3vw, 34px);
}

.home .masthead {
  padding-top: var(--section-space-compact);
  padding-bottom: var(--section-space-compact);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.masthead h1 {
  width: min(var(--wide-max), calc(100vw - (var(--logo-gutter) * 2)));
  max-width: none;
  padding: 0;
  margin: 0;
  margin-left: 50%;
  transform: translateX(-50%);
}

.site-logo {
  display: block;
  width: 100%;
  height: auto;
}

.site-logo-desktop {
  display: block !important;
  width: 100%;
  margin: 0 auto;
}

.site-logo-mobile {
  display: none !important;
}

@media (max-width: 620px) {
  .site-logo-desktop {
    display: none !important;
  }

  .site-logo-mobile {
    display: block !important;
    width: 100%;
    margin-left: 0;
  }
}

.chapter-block {
  position: relative;
  scroll-margin-top: calc(var(--header-height) + var(--section-space-compact));
}

.chapter-marker,
.chapter-label {
  width: min(var(--content-max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.chapter-marker {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr);
  align-items: center;
  gap: var(--grid-gap-x);
  margin-bottom: var(--label-space);
  color: var(--muted);
  font-size: clamp(0.66rem, 0.78vw, 0.8rem);
  font-weight: 600;
  text-transform: uppercase;
}

.chapter-marker::after {
  content: "";
  height: 1px;
  background: var(--soft-line);
}

.featured-editorial {
  padding-top: var(--section-space-compact);
  padding-bottom: var(--section-space);
  background: var(--white);
}

.hero-article {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.55fr);
  grid-template-areas:
    "year ."
    "title copy";
  column-gap: calc(var(--grid-gap-x) * 2);
  row-gap: 0;
  align-items: center;
  width: min(var(--hero-max), 100%);
  margin: 0 auto;
}

.hero-title-block {
  display: contents;
}

.hero-article h2 {
  grid-area: title;
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.6rem, 6.4vw, 7rem);
  font-weight: 700;
  line-height: 0.94;
}

.hero-year,
.card-year,
.post-date {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(0.8rem, 0.95vw, 0.92rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.hero-article p {
  grid-area: copy;
  max-width: 39ch;
  margin: 0;
  color: #222;
  font-size: clamp(0.98rem, 1.22vw, 1.12rem);
  line-height: 1.5;
}

.hero-article .hero-year {
  grid-area: year;
  max-width: none;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(0.8rem, 0.95vw, 0.92rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.shorts,
.video-section,
.office-section,
.library,
.gallery-section {
  background: var(--white);
}

.shorts,
.video-section,
.office-section,
.library,
.gallery-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.office-section {
  padding-top: var(--section-space-tight);
}

.section-label {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding-bottom: var(--card-space);
  text-transform: uppercase;
}

.section-label h2 {
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  margin-bottom: 0;
}

.shorts .section-label h2::after {
  content: ".";
  color: var(--accent);
}

.notes-layout {
  display: grid;
  grid-template-columns: var(--layout-grid);
  column-gap: var(--grid-gap-x);
  row-gap: clamp(28px, 3vw, 48px);
  align-items: start;
  width: min(var(--content-max), 100%);
  margin: var(--label-space) auto 0;
}

.feed-grid {
  display: grid;
  grid-template-columns: var(--layout-grid);
  gap: var(--grid-gap-y) var(--grid-gap-x);
  align-items: start;
  margin-top: var(--label-space);
  border-left: 0;
}

.feed-card,
.article-card,
.comment-item,
.comment-empty {
  border: 0;
  border-radius: 0;
  background: var(--white);
}

.text-card {
  display: grid;
  min-height: 0;
  align-content: start;
  padding: 0;
}

.text-card.wide {
  grid-column: span 5;
}

.lead-note {
  min-height: 0;
}

.lead-note p {
  max-width: 32ch;
  color: #222;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 400;
  line-height: 1.5;
}

.text-card time {
  color: var(--muted);
  font-size: 0.86rem;
}

.text-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3.2vw, 3.8rem);
  font-weight: 650;
  line-height: 1.12;
}

.text-card p {
  max-width: var(--text-measure);
  margin: 0;
  color: #222;
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.5;
}

.text-card .note-caption {
  margin-top: 1.5em;
  font-style: italic;
}

.small-note {
  border-top: 1px solid var(--soft-line);
  padding-top: var(--card-space);
}

.small-note h3 {
  font-size: clamp(1.15rem, 2vw, 2rem);
}

.note-frankfurter {
  grid-column: 1 / span 5;
}

.note-ride {
  grid-column: 7 / span 5;
  margin-top: clamp(10px, 1.35vw, 20px);
}

.note-kippe {
  grid-column: 1 / span 5;
  margin-top: clamp(6px, 0.9vw, 14px);
}

.note-besaeuffnis {
  grid-column: 7 / span 5;
  margin-top: clamp(14px, 1.8vw, 28px);
}

.songtext-block {
  width: min(610px, 100%);
  margin: clamp(230px, 18vw, 340px) auto clamp(18px, 2vw, 42px);
  color: var(--ink);
  transform: translateX(clamp(24px, 7vw, 120px));
}

.songtext-block p {
  margin: 0 0 1.5em;
  color: #222;
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  line-height: 1.5;
}

.songtext-block .songtext-title {
  color: var(--ink);
  font-size: clamp(1rem, 1.18vw, 1.15rem);
}

.story-tile {
  display: grid;
  grid-column: span 4;
  min-height: 0;
  align-content: start;
  padding: 0;
}

.story-tile h3 {
  font-size: clamp(1.65rem, 3vw, 3.4rem);
  font-weight: 650;
  line-height: 1.04;
  margin: 18px 0 18px;
}

.story-tile p {
  max-width: 36ch;
  color: #222;
  line-height: 1.5;
}

.standalone-video {
  position: relative;
  width: min(860px, 74vw);
  margin: 0 auto;
}

.standalone-video::before {
  content: none;
}

.standalone-image {
  display: block;
  width: min(420px, 58vw);
  margin: clamp(58px, 8vw, 112px) auto 0;
}

.standalone-image img {
  display: block;
  width: 100%;
  height: auto;
}

.standalone-image figcaption {
  width: 100%;
  margin: clamp(14px, 1.8vw, 22px) 0 0;
  color: #222;
  font-size: clamp(0.72rem, 0.8vw, 0.82rem);
  line-height: 1.5;
  text-align: left;
}

.office-composition {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(260px, 0.58fr);
  column-gap: clamp(42px, 8vw, 150px);
  align-items: start;
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

.office-composition .standalone-image {
  width: min(380px, 100%);
  margin: 0;
  transform: translate(clamp(-72px, -4.8vw, -24px), clamp(-112px, -7vw, -70px));
}

.office-poem {
  display: block;
  max-width: 33ch;
  margin-top: clamp(330px, 29vw, 500px);
  color: var(--ink);
  justify-self: end;
}

.office-poem p {
  margin: 0 0 1.5em;
  color: #222;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.5;
}

.video-stack {
  position: relative;
  min-height: clamp(420px, 52vw, 650px);
}

.stack-video {
  position: absolute;
  display: block;
  width: 54%;
  aspect-ratio: 4 / 3;
  border: 0;
  outline: 0;
  background: transparent;
  object-fit: cover;
}

.stack-video-back {
  opacity: 0.88;
}

.back-left {
  top: clamp(84px, 8vw, 118px);
  left: 0;
  clip-path: inset(0 0 2px 0);
  filter: grayscale(100%) contrast(1.2);
  z-index: 1;
}

.back-right {
  top: clamp(16px, 2vw, 28px);
  right: 0;
  filter: sepia(46%) saturate(1.4) hue-rotate(14deg) contrast(1.08);
  z-index: 2;
}

.back-low-left {
  left: 10%;
  bottom: 0;
  clip-path: inset(0 0 2px 0);
  filter: sepia(46%) saturate(1.4) hue-rotate(14deg) contrast(1.08);
  z-index: 3;
}

.back-low-right {
  right: 8%;
  bottom: clamp(36px, 4vw, 54px);
  filter: grayscale(100%) contrast(1.14);
  z-index: 4;
}

.main-video-frame {
  position: absolute;
  top: clamp(56px, 5.8vw, 78px);
  left: 50%;
  width: 62%;
  aspect-ratio: 4 / 3;
  transform: translateX(-50%);
  z-index: 5;
}

.scroll-video {
  display: block;
  width: calc(100% + 2px);
  max-width: none;
  height: 100%;
  margin-right: -2px;
  border: 0;
  outline: 0;
  background: transparent;
  object-fit: cover;
}

.video-sound-toggle {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 6;
  min-height: 30px;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font: 700 0.8rem var(--font);
  padding: 0;
  text-shadow: 0 1px 10px rgb(0 0 0 / 44%);
  text-transform: uppercase;
}

.video-sound-toggle.is-muted {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

video {
  max-width: 100%;
}

.tools {
  display: flex;
  justify-content: flex-start;
  gap: var(--grid-gap-x);
  width: min(var(--content-max), 100%);
  margin: var(--label-space) auto var(--grid-gap-y);
  border-bottom: 0;
  padding-bottom: 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  column-gap: calc(var(--grid-gap-x) * 1.25);
  row-gap: var(--card-space);
  width: 100%;
}

.filter {
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font: 650 clamp(1.2rem, 2.4vw, 2.65rem) var(--font);
  padding: 0 0 6px;
  text-align: left;
}

.filter {
  display: inline-block;
  width: max-content;
}

.filter.active,
.filter:hover {
  background: transparent;
  color: var(--ink);
}

.filter.active {
  box-shadow: inset 0 -2px 0 var(--ink);
}

.article-grid {
  display: grid;
  grid-template-columns: var(--layout-grid);
  gap: var(--grid-gap-y) var(--grid-gap-x);
  border-left: 0;
  border-top: 0;
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

.article-card {
  display: grid;
  min-height: 0;
  align-content: start;
  border-top: 1px solid var(--soft-line);
  padding: var(--card-space) 0 0;
  transition: transform 180ms ease, background 180ms ease;
}

.article-card:hover {
  background: transparent;
  transform: translateY(-2px);
}

.library .article-card:nth-child(3n + 1),
.library .article-card:nth-child(6) {
  border-top-color: var(--accent);
}

.library .more-row span:first-child {
  background: var(--accent);
}

.article-card.large {
  grid-column: 1 / span 6;
  min-height: 0;
}

.article-card:nth-child(2) {
  grid-column: 7 / span 6;
  margin-top: 0;
}

.article-card:nth-child(3) {
  grid-column: 1 / span 6;
}

.article-card:nth-child(4) {
  grid-column: 7 / span 6;
  margin-top: 0;
}

.article-card:nth-child(5) {
  grid-column: 1 / span 6;
}

.article-card:nth-child(6) {
  grid-column: 7 / span 6;
  margin-top: 0;
}

.article-card:nth-child(7) {
  grid-column: 1 / span 6;
}

.article-card:nth-child(8) {
  grid-column: 7 / span 6;
}

.article-card:nth-child(9) {
  grid-column: 1 / span 6;
}

.article-card:nth-child(10) {
  grid-column: 7 / span 6;
}

.article-card h3 {
  margin: 0 0 var(--card-space);
  font-size: clamp(1.55rem, 2.5vw, 3rem);
  font-weight: 650;
  line-height: 1.04;
}

.article-card .card-year {
  margin-bottom: 14px;
  color: var(--ink);
}

.card-description {
  margin-top: 0;
  color: var(--ink) !important;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem) !important;
  font-weight: 420;
}

.songtext-card {
  padding-top: var(--card-space);
}

.songtext-card .card-description,
.songtext-card p {
  max-width: 46ch;
  color: #222 !important;
  font-size: clamp(0.96rem, 1.08vw, 1.08rem) !important;
  font-weight: 400;
  line-height: 1.5;
}

.songtext-card .card-description {
  margin-bottom: 1.5em;
}

.article-card.large h3 {
  font-size: clamp(2.6rem, 6vw, 6.8rem);
  max-width: 8.5ch;
}

.article-card p {
  max-width: var(--text-measure);
  margin: 0;
  color: #3d3d3d;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.5;
}

.article-card .note-caption {
  margin-top: 1.5em;
  font-style: italic;
}

.article-card.large p {
  font-size: clamp(1.04rem, 1.4vw, 1.28rem);
}

.article-card.large .card-year {
  max-width: none;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(0.8rem, 0.95vw, 0.92rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.lyric-card p {
  max-width: 34ch;
  margin-bottom: 1.5em;
  color: #222;
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
}

.lyric-card p:last-child {
  margin-bottom: 0;
}

.lyric-card .poem-note {
  color: var(--muted);
  font-size: clamp(0.78rem, 0.88vw, 0.9rem);
}

.read-more {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 650;
}

.inline-read-more {
  color: var(--ink);
  font-weight: 650;
  white-space: nowrap;
}

.article-card.is-hidden {
  display: none;
}

.more-row {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  align-items: center;
  gap: var(--grid-gap-x);
  margin-top: var(--grid-gap-y);
}

.more-row[hidden] {
  display: none;
}

.more-row span {
  height: 1px;
  background: var(--soft-line);
}

.more-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 500 clamp(0.86rem, 1vw, 0.96rem) var(--font);
  padding: 0;
  text-transform: uppercase;
}

.empty-state {
  color: var(--muted);
}

.gallery-section {
  padding-top: var(--section-space);
}

.image-gallery {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(260px, 32vw, 430px);
  grid-auto-flow: dense;
  gap: 2px;
  width: min(var(--content-max), 100%);
  margin: var(--label-space) auto var(--grid-gap-y);
  padding: 2px;
  background: var(--accent);
}

.gallery-tile {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: default;
}

.image-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  object-fit: contain;
  object-position: center;
  transform-origin: center;
  transform: scale(1.12);
  transition:
    filter 240ms ease,
    transform 240ms ease;
}

.gallery-tile:nth-child(4) img,
.gallery-tile:nth-child(5) img,
.gallery-tile:nth-child(10) img,
.gallery-tile:nth-child(11) img,
.gallery-tile:nth-child(14) img,
.gallery-tile:nth-child(18) img {
  transform: scale(1.2);
}

.gallery-tile:hover {
  z-index: 12;
  overflow: visible;
}

.gallery-tile:hover img {
  filter: contrast(1.06) saturate(1.08);
  transform: scale(1.26);
  transition:
    filter 240ms ease,
    transform 240ms ease;
}

.gallery-tile:nth-child(4):hover img,
.gallery-tile:nth-child(5):hover img,
.gallery-tile:nth-child(10):hover img,
.gallery-tile:nth-child(11):hover img,
.gallery-tile:nth-child(14):hover img,
.gallery-tile:nth-child(18):hover img {
  transform: scale(1.4);
}

.gallery-tile:nth-child(n) {
  grid-column: span 1;
  grid-row: span 1;
  margin-top: 0;
}

.gallery-tile:nth-child(8),
.gallery-tile:nth-child(15) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tile:nth-child(1) {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-tile:nth-child(1) img {
  transform-origin: center top;
  transform: scale(1.08);
}

.gallery-tile:nth-child(1):hover img {
  transform: scale(1.18);
}

.gallery-tile:nth-child(4),
.gallery-tile:nth-child(11),
.gallery-tile:nth-child(18) {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-tile:nth-child(3),
.gallery-tile:nth-child(7),
.gallery-tile:nth-child(12),
.gallery-tile:nth-child(16) {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-tile:nth-child(5),
.gallery-tile:nth-child(10),
.gallery-tile:nth-child(14) {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-tile.office-gallery-tile {
  grid-column: 2 / span 2;
  grid-row: span 3;
}

.gallery-tile.office-gallery-tile img {
  object-position: center;
  transform: translateX(2%) scale(1);
}

.gallery-tile.office-gallery-tile:hover img {
  transform: translateX(2%) scale(1.08);
}

.image-gallery .gallery-extra {
  display: none;
}

.image-gallery.is-expanded .gallery-extra {
  display: block;
}

.gallery-more-row {
  width: min(var(--content-max), 100%);
  margin-right: auto;
  margin-bottom: var(--grid-gap-y);
  margin-left: auto;
}

.archive {
  display: block;
  padding-top: var(--section-space-tight);
  background: var(--white);
}

.archive h2 {
  font-size: clamp(1.15rem, 1.5vw, 1.55rem);
  margin-bottom: var(--label-space);
}

.archive-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap-x);
  margin: 0;
  padding: 0;
  list-style: none;
}

.archive-list li {
  border-top: 0;
}

.archive-list li:last-child {
  border-bottom: 0;
}

.archive-list a {
  display: block;
  padding: 0;
}

.archive-list span {
  display: block;
  font-size: clamp(1rem, 1.35vw, 1.3rem);
}

.archive-list small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.site-footer {
  padding: var(--section-space-tight) var(--page-gutter) var(--section-space-compact);
  background: var(--white);
  color: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: var(--grid-gap-x);
  padding-top: var(--card-space);
  border-top: 1px solid var(--soft-line);
}

.site-footer p {
  margin: 0;
}

.footer-line {
  line-height: 1;
  text-transform: lowercase;
}

.footer-line,
.footer-note,
.footer-links {
  color: var(--ink);
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 400;
  line-height: 1.25;
}

.footer-note {
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer a {
  color: inherit;
}

.post-page {
  background: var(--white);
}

.post-shell {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: var(--section-space) 0;
}

.back-link {
  display: inline-block;
  margin-bottom: var(--label-space);
  color: var(--muted);
  font-weight: 650;
}

.post-header {
  border-bottom: 0;
  padding-bottom: var(--label-space);
}


.post-header h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
}

.post-date {
  margin-bottom: 18px;
}

.post-lede {
  color: var(--muted);
  line-height: 1.5;
}

.post-description {
  max-width: 56ch;
  margin: var(--card-space) 0 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.post-body {
  padding: var(--label-space) 0 var(--section-space-compact);
}

.post-body p {
  color: #222;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.5;
}

.remark-body {
  display: grid;
  gap: var(--section-space);
}

.remark-section {
  max-width: 54ch;
}

.poem-body p {
  margin-bottom: 30px;
  line-height: 1.5;
}

.lyricish-body p {
  margin-bottom: 30px;
  line-height: 1.5;
}

.poem-note {
  max-width: 44ch;
  color: var(--muted) !important;
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
}

.related-reading {
  margin-top: var(--section-space);
  padding-top: var(--label-space);
  border-top: 1px solid var(--soft-line);
}

.related-reading h2 {
  margin: 0 0 var(--label-space);
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400;
  line-height: 1.2;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap-x);
}

.related-grid a {
  display: grid;
  align-content: start;
  gap: calc(var(--card-space) * 0.7);
  min-height: clamp(104px, 9vw, 128px);
  padding-top: var(--card-space);
  border-top: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
}

.related-grid strong {
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  font-weight: 400;
  line-height: 1.14;
}

.related-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

@media (max-width: 1180px) {
  .standalone-video {
    width: min(760px, 82vw);
  }

  .video-stack {
    min-height: clamp(390px, 58vw, 610px);
  }

  .main-video-frame {
    width: 66%;
  }
}

@media (max-width: 900px) {
  .site-header {
    --header-type-size: clamp(0.72rem, 1.9vw, 1rem);

    gap: clamp(8px, 2.2vw, 22px);
    min-height: var(--header-height);
  }

  .hero-article {
    grid-template-columns: 1fr;
    grid-template-areas:
      "year"
      "title"
      "copy";
    gap: 0;
  }

  .hero-article h2 {
    max-width: 9ch;
  }

  .hero-article p {
    margin-left: auto;
  }

  .hero-article > p:not(.hero-year) {
    margin-top: var(--label-space);
  }

  .hero-article .hero-year {
    margin: 0 0 12px;
    font-size: 0.82rem;
  }

  .feed-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .notes-layout {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    row-gap: clamp(24px, 4vw, 42px);
  }

  .note-frankfurter,
  .note-ride,
  .note-kippe,
  .note-besaeuffnis {
    grid-column: span 3;
  }

  .note-ride {
    margin-top: clamp(8px, 2vw, 16px);
  }

  .note-kippe,
  .note-besaeuffnis {
    margin-top: clamp(4px, 1.5vw, 12px);
  }

  .text-card.wide,
  .story-tile,
  .small-note {
    grid-column: span 3;
  }

  .lead-note,
  .story-tile {
    min-height: 360px;
  }

  .article-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .article-card.large,
  .article-card:nth-child(2),
  .article-card:nth-child(3),
  .article-card:nth-child(4),
  .article-card:nth-child(5),
  .article-card:nth-child(6),
  .article-card:nth-child(7),
  .article-card:nth-child(8),
  .article-card:nth-child(9),
  .article-card:nth-child(10) {
    grid-column: span 3;
    margin-top: 0;
  }

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

  .standalone-video {
    width: min(700px, 92vw);
    margin-right: auto;
    margin-left: auto;
  }

  .video-stack {
    min-height: clamp(370px, 72vw, 560px);
  }

  .stack-video {
    width: 58%;
  }

  .main-video-frame {
    width: 72%;
  }

  .filters {
    display: flex;
    flex-wrap: wrap;
    column-gap: clamp(22px, 5vw, 48px);
    row-gap: 16px;
    width: 100%;
  }

  .filter {
    width: max-content;
  }
}

@media (max-width: 620px) {
  :root {
    --page-gutter: clamp(12px, 4vw, 16px);
    --grid-gap-x: 14px;
    --grid-gap-y: 34px;
    --section-space: clamp(46px, 11vw, 68px);
    --section-space-tight: clamp(30px, 8vw, 46px);
    --section-space-compact: clamp(12px, 4vw, 22px);
    --label-space: 28px;
    --card-space: 14px;
    --header-height: 68px;
  }

  .site-header {
    --header-type-size: clamp(0.46rem, 1.95vw, 0.68rem);

    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 7px;
    min-height: var(--header-height);
    padding: 10px var(--page-gutter);
  }

  .main-nav,
  .social-nav {
    gap: 6px;
  }

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

  .social-nav {
    justify-content: flex-end;
  }

  .main-nav,
  .main-nav a,
  .social-nav a {
    font-size: var(--header-type-size);
    line-height: 1;
  }

  .masthead,
  .featured-editorial,
  .shorts,
  .video-section,
  .office-section,
  .library,
  .gallery-section,
  .archive {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .home .masthead {
    padding-top: var(--section-space-compact);
    padding-bottom: var(--section-space-compact);
  }

  .featured-editorial,
  .shorts,
  .video-section,
  .office-section,
  .library,
  .gallery-section {
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
  }

  .featured-editorial {
    padding-top: var(--section-space-compact);
  }

  .office-section {
    padding-top: var(--section-space-tight);
  }

  .chapter-marker {
    grid-template-columns: auto minmax(40px, 1fr);
    gap: var(--grid-gap-x);
    margin-bottom: var(--label-space);
  }

  .site-footer {
    padding-top: var(--section-space-tight);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }

  .footer-note {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .masthead h1 {
    width: min(100%, calc(100vw - (var(--page-gutter) * 2)));
  }

  .site-logo-desktop {
    display: none;
  }

  .site-logo-mobile {
    display: block;
    width: 100%;
    margin-left: 0;
  }

  .hero-article {
    display: block;
    grid-template-areas: none;
  }

  .hero-article h2 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
    max-width: 10ch;
  }

  .hero-article p {
    margin-top: var(--label-space);
    margin-left: 0;
    font-size: 0.96rem;
  }

  .hero-article .hero-year {
    margin: 0 0 12px;
    font-size: 0.8rem;
  }

  .feed-grid,
  .notes-layout,
  .article-grid {
    grid-template-columns: 1fr;
    gap: var(--grid-gap-y);
  }

  .feed-card,
  .article-card {
    border-left: 0;
    border-right: 0;
  }

  .article-card.large,
  .text-card.wide,
  .story-tile,
  .small-note {
    grid-column: span 1;
  }

  .note-frankfurter,
  .note-ride,
  .note-kippe,
  .note-besaeuffnis,
  .article-card.large,
  .article-card:nth-child(2),
  .article-card:nth-child(3),
  .article-card:nth-child(4),
  .article-card:nth-child(5),
  .article-card:nth-child(6),
  .article-card:nth-child(7),
  .article-card:nth-child(8),
  .article-card:nth-child(9),
  .article-card:nth-child(10) {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .lead-note,
  .story-tile {
    min-height: 0;
  }

  .text-card {
    min-height: 0;
  }

  .text-card h3 {
    font-size: 2.1rem;
  }

  .story-tile h3,
  .article-card h3 {
    font-size: 2.05rem;
  }

  .standalone-video {
    width: 100%;
    margin-top: var(--grid-gap-y);
    overflow: hidden;
  }

  .songtext-block {
    transform: none;
  }

  .video-stack {
    min-height: 360px;
  }

  .stack-video-back {
    display: block;
    width: 62%;
    opacity: 0.72;
  }

  .back-left {
    top: 72px;
    left: -12%;
  }

  .back-right {
    top: 22px;
    right: -12%;
  }

  .back-low-left {
    left: -4%;
    bottom: 4px;
  }

  .back-low-right {
    right: -8%;
    bottom: 42px;
  }

  .main-video-frame {
    position: absolute;
    top: 96px;
    left: 50%;
    width: 82%;
    transform: translateX(-50%);
  }

  .standalone-image {
    width: min(320px, 82vw);
    margin-top: var(--grid-gap-y);
  }

  .office-composition {
    grid-template-columns: 1fr;
    row-gap: 0;
    width: min(320px, 82vw);
    margin-top: var(--label-space);
  }

  .office-composition .standalone-image {
    width: 100%;
    margin-top: 0;
    transform: none;
  }

  .office-poem {
    max-width: 100%;
    margin-top: clamp(118px, 28vw, 170px);
    padding-left: 0;
    justify-self: stretch;
  }

  .standalone-image figcaption {
    margin-top: 12px;
    font-size: 0.9rem;
  }

  .image-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(180px, 64vw, 300px);
    gap: 2px;
    width: 100%;
    margin-top: var(--label-space);
    margin-bottom: var(--grid-gap-y);
    padding: 2px;
  }

  .gallery-tile {
    height: 100%;
    margin-top: 0;
  }

  .gallery-tile:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
    margin-top: 0;
  }

  .gallery-tile:nth-child(1),
  .gallery-tile:nth-child(8),
  .gallery-tile:nth-child(15),
  .gallery-tile:nth-child(4),
  .gallery-tile:nth-child(11),
  .gallery-tile:nth-child(18) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-tile.office-gallery-tile {
    grid-column: span 2;
    grid-row: span 3;
  }

  .filters {
    column-gap: 28px;
    row-gap: 16px;
  }

  .filter {
    font-size: 1.48rem;
  }

  .filter.active {
    box-shadow: inset 0 -2px 0 var(--ink);
  }

  .archive {
    gap: 14px;
  }

  .archive-list {
    grid-template-columns: 1fr;
    gap: var(--card-space);
  }

  .video-sound-toggle {
    right: 10px;
    bottom: 10px;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: var(--grid-gap-y);
  }

  .related-grid a {
    min-height: auto;
  }
}

@media (max-width: 380px) {
  .site-header {
    --header-type-size: 0.41rem;
  }

  .main-nav {
    gap: 4px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) max-content;
    padding-left: 6px;
    padding-right: 6px;
  }

  .main-nav a,
  .social-nav a {
    font-size: var(--header-type-size);
  }

  .social-nav {
    gap: 4px;
  }

  .masthead h1 {
    width: 100%;
  }

  .video-stack {
    min-height: 330px;
  }

  .main-video-frame {
    top: 94px;
    width: 88%;
  }

  .text-card h3,
  .story-tile h3,
  .article-card h3 {
    font-size: 1.82rem;
  }
}
/* Animierter gelber Balken – Maße aus der ursprünglichen SVG */
.site-logo-desktop,
.site-logo-mobile {
  position: relative;
  isolation: isolate;
  container-type: inline-size;
}

.site-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.site-logo-desktop::after,
.site-logo-mobile::after {
  content: "";
  position: absolute;
  z-index: 2;

  /* Durchgehender Balken über der gesamten kleinen Textfläche. */
  left: 40.3%;
  right: 4.3%;
  width: auto;

  top: var(--logo-bar-top, 44.8%);

  height: clamp(3px, 0.46cqw, 8px);

  background: #ffee08;
  mix-blend-mode: multiply;
  transform: translateY(-50%);

  pointer-events: none;
  transition:
    top 420ms cubic-bezier(0.22, 0.8, 0.3, 1);
}
