:root {
  --bg: #f2f0ea;
  --bg-soft: #e8e5dd;
  --surface: #ffffff;
  --text: #141719;
  --title-graphite: #2f3538;
  --muted: #60696d;
  --teal: #2ec4b6;
  --orange: #ff9f1c;
  --teal-text: #006d66;
  --orange-text: #914400;
  --line: rgba(20, 23, 25, 0.14);
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Instrument Sans", system-ui, sans-serif;
  --mono: "Space Mono", monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--orange-text); }
a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: var(--orange);
  color: #111;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--surface);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .skip-link {
    transition: none;
  }
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(234, 231, 222, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(20, 23, 25, 0.035);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 12px 0;
}

.brand {
  display: block;
  width: 220px;
  height: 96px;
  flex: 0 0 220px;
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
}

.brand-mark {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/assets/rn-lettermark-header.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

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

.main-nav {
  margin-left: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: lowercase;
}

.main-nav a {
  color: var(--muted);
  letter-spacing: 0.06em;
  padding: 7px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 160ms ease, border-color 160ms ease;
}

.main-nav a:hover {
  color: var(--text);
  border-color: var(--line);
}

.main-nav a.active {
  color: var(--orange-text);
  border-color: rgba(255, 159, 28, 0.4);
}

.gallery-hero {
  padding: 76px 0 40px;
  border-bottom: 1px solid var(--line);
}

.kicker {
  margin: 0 0 14px;
  color: var(--teal-text);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 900px;
  color: var(--title-graphite);
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 7.4rem);
  font-weight: 800;
  line-height: 0.88;
  text-transform: lowercase;
}

.gallery-hero p {
  max-width: 58ch;
  margin: 24px 0 0;
  color: var(--muted);
}

.gallery-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.btn:hover {
  border-color: rgba(255, 159, 28, 0.6);
}

.folder-section,
.photo-section {
  padding: 42px 0 80px;
}

.gallery-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}

.gallery-tab {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 118px;
  overflow: hidden;
  border: 1px solid rgba(20, 23, 25, 0.22);
  border-radius: 8px;
  background: #101416;
  color: #f7f4ec;
}

.gallery-tab:hover {
  color: #f7f4ec;
  border-color: rgba(46, 196, 182, 0.66);
}

.gallery-tab img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 12, 14, 0.9), rgba(9, 12, 14, 0.48) 58%, rgba(9, 12, 14, 0.18)),
    linear-gradient(to top, rgba(9, 12, 14, 0.34), transparent 54%);
}

.gallery-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  opacity: 0.9;
}

.gallery-tab:hover img {
  transform: scale(1.09);
  filter: saturate(1.08);
}

.gallery-tab--light-bg img {
  filter: brightness(1.34) contrast(0.96) saturate(1.06);
}

.gallery-tab--light-bg:hover img {
  filter: brightness(1.42) contrast(0.98) saturate(1.1);
}

.gallery-tab--light-bg::before {
  background:
    linear-gradient(90deg, rgba(9, 12, 14, 0.68), rgba(9, 12, 14, 0.3) 58%, rgba(9, 12, 14, 0.06)),
    linear-gradient(to top, rgba(9, 12, 14, 0.22), transparent 54%);
}

.gallery-tab__body {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px;
}

.gallery-tab__text,
.gallery-tab__artist,
.gallery-tab__event,
.gallery-tab__author {
  display: block;
}

.gallery-tab__artist {
  max-width: 15ch;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.02;
  text-transform: lowercase;
  overflow-wrap: anywhere;
}

.gallery-tab__event {
  margin-top: 7px;
  color: rgba(247, 244, 236, 0.68);
  font-family: var(--mono);
  font-size: 0.64rem;
  line-height: 1.35;
  text-transform: lowercase;
}

.gallery-tab__author {
  margin-top: 5px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.25;
  text-transform: lowercase;
}

.gallery-tab--news .card-section {
  color: var(--teal);
}

.gallery-tab--news .card-title {
  display: block;
  max-width: 18ch;
  color: #f7f4ec;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.02;
  text-transform: lowercase;
  overflow-wrap: anywhere;
}

.gallery-tab--news .card-context {
  margin-top: 7px;
  color: rgba(247, 244, 236, 0.68);
  font-family: var(--mono);
  font-size: 0.64rem;
  line-height: 1.35;
  text-transform: lowercase;
}

.gallery-tab--news .card-subtype,
.gallery-tab--news .card-date,
.gallery-tab--news .card-meta-context {
  color: rgba(247, 244, 236, 0.72);
}

.gallery-tab--image .card-section {
  color: var(--teal);
}

.gallery-tab--image .card-title,
.gallery-tab--image .card-artist {
  display: block;
}

.gallery-tab--image .card-title {
  max-width: 15ch;
  margin-top: 5px;
  color: #f7f4ec;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.02;
  text-transform: lowercase;
  overflow-wrap: anywhere;
}

.gallery-tab--image .card-context {
  margin-top: 7px;
  color: rgba(247, 244, 236, 0.68);
  font-family: var(--mono);
  font-size: 0.64rem;
  line-height: 1.35;
  text-transform: lowercase;
}

.gallery-tab--image .card-context span + span::before {
  color: rgba(247, 244, 236, 0.5);
}

.gallery-tab--image .card-subtype {
  color: rgba(247, 244, 236, 0.78);
}

.gallery-tab--image .card-meta-venue,
.gallery-tab--image .card-meta-city,
.gallery-tab--image .card-date {
  color: rgba(247, 244, 236, 0.62);
}

.pill-tabs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pill-tabs .gallery-tab {
  min-height: 112px;
}

.pill-tabs .gallery-tab__text {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 3px;
  max-width: 28rem;
  width: 100%;
}

.pill-tabs .gallery-tab--pill .gallery-tab__text {
  grid-template-columns: 1fr;
}

.pill-tabs .gallery-tab__artist,
.pill-tabs .card-title {
  display: block;
  max-width: none;
  margin: 0;
  color: #f7f4ec;
  font-family: var(--display);
  font-size: clamp(1.16rem, 1.7vw, 1.42rem);
  font-weight: 800;
  line-height: 1.02;
  text-transform: none;
  overflow-wrap: anywhere;
}

.pill-tabs .card-section {
  color: var(--teal);
}

.pill-tabs .card-context {
  display: block;
  margin-top: 2px;
  color: rgba(247, 244, 236, 0.72);
  font-family: var(--mono);
  font-size: clamp(0.64rem, 0.82vw, 0.74rem);
  line-height: 1.25;
  text-transform: none;
}

.pill-tabs .card-context span + span::before {
  content: "\00b7";
  margin-right: 0.35em;
  color: rgba(247, 244, 236, 0.58);
}

.pill-tabs .card-subtype {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 0.12rem 0.4rem;
  border: 1px solid rgba(46, 196, 182, 0.62);
  border-radius: 999px;
  background: rgba(46, 196, 182, 0.13);
  color: #f7f4ec;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pill-tabs .card-meta-context {
  color: rgba(247, 244, 236, 0.72);
}

.pill-tabs .card-author {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.56rem;
  line-height: 1.25;
  text-align: left;
  text-transform: none;
}

.pill-tabs .gallery-tab__body {
  min-height: 112px;
  height: 100%;
  justify-content: flex-end;
  padding: 10px;
}

.pill-tabs .gallery-tab__event {
  color: rgba(247, 244, 236, 0.72);
  font-size: clamp(0.72rem, 1vw, 0.88rem);
}

.pill-tabs .gallery-tab__author {
  color: var(--orange);
  font-size: 0.62rem;
  text-align: left;
}

.pill-title-split span {
  display: block;
}

.pill-title-split span:first-child {
  color: #3d4143;
}

.pill-title-split span:last-child {
  color: var(--orange);
}

.folder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.folder-grid--discs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.folder-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.folder-card:hover {
  border-color: rgba(46, 196, 182, 0.48);
  color: var(--text);
}

.folder-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.folder-card .body {
  padding: 18px;
}

.meta {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.35;
  text-transform: none;
}

.folder-card h2 {
  margin: 10px 0 7px;
  font-family: var(--display);
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  font-weight: 800;
  line-height: 1.08;
}

.folder-card-place {
  display: block;
  margin-top: 0.26em;
  color: var(--muted);
  font-size: 0.72em;
  font-weight: 500;
  line-height: 1.12;
  text-transform: none;
}

.folder-card p {
  margin: 0;
  color: var(--muted);
}

.folder-card--disc {
  display: flex;
  gap: 18px;
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 0;
  padding: 16px 18px;
}

.folder-card--disc img {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  aspect-ratio: 1;
  border-radius: 6px;
}

.folder-card--disc .body {
  display: grid;
  flex: 1 1 auto;
  align-content: center;
  min-width: 0;
  padding: 0;
}

.folder-card--disc .card-title {
  margin: 8px 0 7px;
  font-size: clamp(1.18rem, 1.55vw, 1.48rem);
}

.folder-card--disc .card-context {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  gap: 0.35em 0.5em;
}

@media (max-width: 980px) {
  .folder-grid--discs {
    grid-template-columns: minmax(0, 1fr);
  }

}

.card-section {
  display: block;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.35;
}

.card-title {
  color: var(--title-graphite);
}

.card-artist {
  font-weight: 850;
}

.card-separator {
  color: var(--muted);
  font-weight: 650;
}

.card-release {
  color: #536169;
  font-weight: 760;
}

.card-context {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35em;
  align-items: baseline;
  font-size: 0.94rem;
  line-height: 1.45;
}

.card-context span + span::before {
  content: "\00b7";
  margin-right: 0.35em;
  color: rgba(91, 103, 112, 0.74);
}

.card-subtype {
  color: #48545b;
  font-weight: 650;
}

.card-meta,
.card-meta-venue,
.card-meta-city {
  color: var(--muted);
}

.card-label,
.card-date {
  color: var(--muted);
}

.folder-card--chronicle .card-context {
  margin-bottom: 0.72em;
}

.folder-card--chronicle > img {
  height: auto;
}

.folder-card--chronicle .card-section {
  color: var(--teal-text);
}

.folder-card--chronicle .card-deck {
  margin: 0.42em 0 0.62em;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.42;
}

@media (min-width: 761px) {
  .folder-grid--chronicles {
    grid-auto-rows: 1fr;
    align-items: stretch;
  }

  .folder-card--chronicle .body {
    display: flex;
    flex-direction: column;
  }

  .folder-card--chronicle .card-context {
    margin-top: auto;
  }
}

.folder-card--interview .card-section {
  color: var(--teal-text);
}

.folder-card--interview {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 680px;
  padding: 16px 18px;
}

.folder-card--interview > a {
  display: block;
}

.folder-card--interview img {
  width: 132px;
  height: 132px;
  aspect-ratio: 1;
  border-radius: 6px;
}

.folder-card--interview .body {
  min-width: 0;
  padding: 0;
}

.folder-card--interview .card-deck {
  margin: 0.42em 0 0.62em;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.42;
}

.folder-card--interview .card-context {
  margin-bottom: 0.72em;
}

.folder-card--interview .card-author {
  display: inline-block;
  margin-top: 0.84em;
  color: var(--orange-text);
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.35;
  text-transform: lowercase;
}

.pill-detail {
  background:
    linear-gradient(135deg, rgba(46, 196, 182, 0.14), transparent 46%),
    linear-gradient(315deg, rgba(255, 159, 28, 0.14), transparent 42%);
}

.pill-detail__body {
  max-width: 760px;
}

.pill-detail__body--visual {
  max-width: 980px;
}

.pill-detail__byline {
  margin: 18px 0 0;
  color: var(--orange-text);
  font-family: var(--mono);
  font-size: 0.74rem;
  line-height: 1;
  text-transform: lowercase;
}

.pill-detail__subtitle {
  max-width: 46rem;
  margin: 18px 0 0;
  color: var(--orange-text);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.article-meta--pill {
  font-size: 0.72rem;
}

.article-meta--pill span + span::before {
  content: "\00b7";
  margin-right: 0.35em;
  color: rgba(91, 103, 112, 0.74);
}

.pill-detail-title-stack {
  display: grid;
  gap: 18px;
}

.pill-detail-title-stack small {
  display: grid;
  gap: 4px;
  max-width: 18ch;
  color: rgba(61, 65, 67, 0.78);
  font-family: var(--mono);
  font-size: clamp(1.05rem, 2.2vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: none;
}

.pill-detail__credit {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.3;
}

.visual-pill {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101416;
}

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

.music-embed {
  margin: 0 0 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.music-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

.music-embed--video iframe {
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
}

.music-embed__fallback {
  display: inline-block;
  padding: 10px 12px 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: lowercase;
}

.pill-detail__note {
  border-left: 3px solid var(--teal);
  padding-left: 16px;
  color: var(--muted);
}

.subfolder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.subfolder-card {
  position: relative;
  min-height: 230px;
  color: var(--text);
  transition: border-color 160ms ease, transform 160ms ease;
}

.subfolder-card:hover {
  border-color: rgba(255, 159, 28, 0.58);
  transform: translateY(-3px);
}

.subfolder-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 18px;
  width: 54px;
  height: 20px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  background: rgba(46, 196, 182, 0.18);
}

.subfolder-card.alt::before {
  background: rgba(255, 159, 28, 0.2);
}

.subfolder-card .body {
  padding: 18px 16px 14px;
}

.subfolder-card h2 {
  font-size: 2rem;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  align-items: start;
}

.person-card {
  width: min(100%, 260px);
  aspect-ratio: 1;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(46, 196, 182, 0.16), transparent 38%), var(--surface);
  text-align: center;
}

.person-card:hover {
  border-color: rgba(255, 159, 28, 0.58);
}

.person-card .avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
}

.person-card .body {
  display: block;
}

.person-card h2 {
  margin: 6px 0 5px;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.05;
}

.person-card p {
  max-width: 20ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.contributors-list {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.contributor-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contributor-avatar {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  overflow: hidden;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background-color: var(--surface);
  background-position: center;
  background-size: cover;
  color: rgba(247, 244, 236, 0.9);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.88);
}

.contributor-avatar--yerman {
  background-image: url("/assets/colaboradores/avatar-yerman.jpg");
}

.contributor-avatar--jose-ramon {
  background-image: url("/assets/colaboradores/avatar-jose-ramon.jpg");
}

.contributor-avatar--jose-pincho {
  background-image: url("/assets/colaboradores/avatar-jose-pincho.jpg");
}

.contributor-avatar--valdi {
  background-image: url("/assets/colaboradores/avatar-valdi.jpg");
}

.contributor-avatar--damian {
  background-image: url("/assets/colaboradores/avatar-damian.jpg");
}

.contributor-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 38%, rgba(0, 0, 0, 0.08) 72%),
    linear-gradient(to top, rgba(0, 0, 0, 0.34), transparent 56%);
  pointer-events: none;
}

.contributor-body {
  min-width: 0;
}

.contributor-name {
  margin: 0 0 4px;
  color: var(--teal-text);
  font-family: var(--display);
  font-size: clamp(1.28rem, 2vw, 1.58rem);
  line-height: 1;
}

.contributor-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.photo-grid {
  columns: 4 220px;
  column-gap: 14px;
}

.photo {
  margin: 0 0 14px;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.photo a,
.photo picture,
.photo img {
  display: block;
}

.photo img {
  width: 100%;
  height: auto;
}

.photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 13px 10px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.68rem;
  background: linear-gradient(to top, rgba(11, 15, 18, 0.9), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.photo:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.empty {
  color: var(--muted);
  font-family: var(--mono);
}

.empty-state {
  max-width: 760px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.45);
}

.empty-state h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
  text-transform: lowercase;
}

.empty-state p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
}

footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 44px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.section-title h2 {
  margin: 0;
  color: var(--title-graphite);
  font-family: var(--display);
  font-size: 2.15rem;
  line-height: 0.95;
  text-transform: lowercase;
}

.section-title p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
}

.disc-section {
  padding-bottom: 34px;
}

.disc-section + .disc-section {
  padding-top: 0;
}

.bso-grid .folder-card {
  background:
    linear-gradient(145deg, rgba(46, 196, 182, 0.1), transparent 46%),
    var(--surface);
}

.folder-card--feature {
  color: var(--text);
}

.folder-card--feature img {
  aspect-ratio: 4 / 5;
}

.article-hero {
  padding: 54px 0 42px;
  border-bottom: 1px solid var(--line);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: end;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.article-deck {
  max-width: 52ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.article-title-place {
  display: block;
  margin-top: 0.24em;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.82rem);
  font-weight: 500;
  line-height: 1.12;
  text-transform: none;
}

.article-title--disc {
  color: var(--title-graphite);
}

.article-artist {
  font-weight: 850;
}

.article-separator {
  color: var(--muted);
  font-weight: 650;
}

.article-release {
  color: #536169;
  font-weight: 760;
}

.article-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 22px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.45;
  opacity: 1;
  text-transform: lowercase;
}

.article-meta-line--disc {
  margin-top: 22px;
  font-size: 0.72rem;
}

.article-meta-line--disc span + span::before {
  content: "\00b7";
  margin-right: 0.35em;
  color: rgba(91, 103, 112, 0.74);
}

.article-meta--chronicle {
  font-size: 0.72rem;
}

.article-meta--chronicle span + span::before,
.article-meta--news span + span::before,
.article-meta--gallery span + span::before {
  content: "\00b7";
  margin-right: 0.35em;
  color: rgba(91, 103, 112, 0.74);
}

.article-meta--news {
  font-size: 0.72rem;
}

.article-meta--gallery {
  margin-top: 22px;
  font-size: 0.72rem;
}

.article-meta--interview {
  font-size: 0.72rem;
}

.article-meta--interview span + span::before {
  content: "\00b7";
  margin-right: 0.35em;
  color: rgba(91, 103, 112, 0.74);
}

.article-hero .article-byline {
  margin: 18px 0 0;
  color: var(--orange-text);
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.gallery-hero .article-byline {
  margin: 18px 0 0;
  color: var(--orange-text);
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.article-subtype {
  color: #48545b;
  font-weight: 650;
}

.article-event,
.article-place,
.article-city,
.article-context {
  color: var(--muted);
}

.article-label,
.article-date {
  color: var(--muted);
}

.article-hero-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101416;
}

.article-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.article-hero-photo picture,
.article-photo picture {
  display: block;
}

.article-hero-photo--interview img {
  aspect-ratio: 16 / 10;
  max-height: 420px;
  object-position: center 34%;
}

@media (min-width: 761px) {
  .article-hero-photo--interview img {
    height: auto;
  }
}

.article-hero-photo--disc {
  justify-self: start;
  max-width: 320px;
}

.article-hero-photo--disc img {
  aspect-ratio: 1 / 1;
  height: auto;
}

.article-hero-photo figcaption,
.article-photo figcaption {
  padding: 9px 11px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.article-hero-photo figcaption {
  color: #b7c0c3;
}

.article-body {
  max-width: 820px;
  padding-top: 54px;
  padding-bottom: 70px;
}

.article-body p {
  margin: 0 0 1.28em;
  font-size: 1.04rem;
  line-height: 1.78;
}

.interview-body .interview-section-title {
  margin: 2.2em 0 1em;
  color: var(--title-graphite);
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.96;
}

.interview-question {
  color: var(--title-graphite);
  font-weight: 700;
}

.interview-answer {
  color: var(--text);
}

.interview-speaker {
  color: var(--orange-text);
  font-family: var(--mono);
  font-size: 0.76em;
  font-weight: 700;
  text-transform: lowercase;
}

.interview-answer .interview-speaker {
  color: var(--teal-text);
}

.interview-exchange {
  margin: 0 0 3.35rem;
}

.interview-exchange > .interview-question {
  margin-bottom: 0.9em;
}

.interview-exchange > .interview-answer:last-of-type {
  margin-bottom: 0;
}

.interview-highlight {
  position: relative;
  margin: 1.35rem 0 0;
  padding: 1.15rem 1.25rem 1.2rem 1.35rem;
  border: 1px solid rgba(255, 159, 28, 0.24);
  border-left: 3px solid var(--orange);
  border-radius: 0 10px 10px 0;
  background:
    linear-gradient(135deg, rgba(255, 159, 28, 0.11), rgba(46, 196, 182, 0.05)),
    var(--surface);
  box-shadow: 0 14px 34px rgba(4, 8, 10, 0.1);
}

.article-body .interview-highlight p {
  margin: 0;
  color: var(--title-graphite);
  font-family: var(--display);
  font-size: clamp(1.12rem, 2.2vw, 1.38rem);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.018em;
}

.article-body .interview-highlight p + p {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(46, 196, 182, 0.22);
}

.interview-inline-photo {
  width: min(100%, 340px);
  margin: 30px auto;
}

.interview-inline-photo--wide {
  width: min(100%, 640px);
  margin-top: 2.8rem;
  margin-bottom: 3.5rem;
}

.interview-inline-photo--left,
.interview-inline-photo--right {
  margin-right: auto;
  margin-left: auto;
}

.interview-inline-photo img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.interview-inline-photo figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

.article-body .article-byline {
  margin: 0 0 2.2em;
  color: var(--orange-text);
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.article-body a {
  color: var(--teal-text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-photo {
  margin: 34px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

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

.article-body--compact-photos .article-photo {
  width: 66.666%;
  margin-left: auto;
  margin-right: auto;
}

.article-body--band-labels .article-photo {
  overflow: visible;
  border: 0;
  background: transparent;
}

.article-body--band-labels .article-photo img {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.article-body--band-labels .article-photo figcaption {
  padding: 6px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.76rem;
  line-height: 1.2;
}

.article-body--woven-photos .article-photo {
  width: min(42%, 320px);
  margin: 0 24px 16px 0;
  clear: both;
  float: left;
}

.article-body--woven-photos .article-photo:nth-of-type(even) {
  margin: 0 0 16px 24px;
  float: right;
}

.article-body--woven-photos h2,
.article-body--woven-photos .source-note {
  clear: both;
}

.article-body--woven-photos::after {
  display: block;
  clear: both;
  content: "";
}

@media (max-width: 760px) {
  .article-body--compact-photos .article-photo {
    width: 100%;
  }

  .article-body--woven-photos .article-photo {
    width: 44%;
    max-width: 180px;
    margin: 0 16px 12px 0;
  }

  .article-body--woven-photos .article-photo:nth-of-type(even) {
    margin: 0 0 12px 16px;
  }
}

.article-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 42px 0 0;
}

.article-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.source-note {
  margin-top: 38px;
  border-left: 3px solid var(--orange);
  padding-left: 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .folder-card--disc {
    gap: 14px;
    min-height: 0;
    padding: 14px;
  }

  .folder-card--disc img {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }

  .folder-card--disc .card-context {
    display: flex;
  }

  .header-inner {
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }

  .brand {
    width: 220px;
    height: 96px;
    flex: 0 0 220px;
  }

  .main-nav {
    width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    justify-content: center;
    justify-items: center;
    gap: 16px 0;
  }

  .main-nav a {
    width: 100%;
    grid-column: span 2;
    padding: 7px 2px;
    text-align: center;
  }

  .gallery-hero {
    padding-top: 54px;
  }

  .gallery-hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.5vw, 2.95rem);
    line-height: 0.94;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .subfolder-grid {
    gap: 12px;
  }

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

  .subfolder-card::before {
    top: 14px;
    left: 14px;
    width: 42px;
    height: 16px;
  }

  .subfolder-card h2 {
    font-size: 1rem;
  }

  .subfolder-card p {
    display: none;
  }

  .folder-card--interview {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .folder-card--interview img {
    width: 96px;
    height: 96px;
  }

  .folder-card--interview .card-deck {
    font-size: 0.9rem;
  }

  .folder-card--interview .card-context {
    font-size: 0.82rem;
  }

  .photo-grid {
    columns: 2 140px;
  }

  .gallery-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-tab,
  .gallery-tab__body {
    min-height: 106px;
  }

  .gallery-tab__body {
    padding: 10px;
  }

  .gallery-tab__artist {
    max-width: 14ch;
    font-size: 1.12rem;
    line-height: 1.02;
  }

  .gallery-tab__event {
    margin-top: 6px;
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .gallery-tab--news .card-title {
    max-width: 14ch;
    font-size: 1.12rem;
    line-height: 1.02;
  }

  .gallery-tab--news .card-context {
    margin-top: 6px;
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .gallery-tab--image .card-title {
    max-width: 14ch;
    font-size: 1.12rem;
    line-height: 1.02;
  }

  .gallery-tab--image .card-context {
    margin-top: 6px;
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .pill-tabs .gallery-tab__artist {
    max-width: 15ch;
    font-size: 1.24rem;
  }

  .pill-tabs .gallery-tab__body {
    justify-content: center;
  }

  .pill-tabs {
    grid-template-columns: 1fr;
  }

  .pill-tabs .gallery-tab,
  .pill-tabs .gallery-tab__body {
    min-height: 168px;
  }

  .pill-tabs .gallery-tab__text {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pill-tabs .gallery-tab--pill .gallery-tab__text {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pill-tabs .gallery-tab__artist {
    max-width: none;
    font-size: 1.34rem;
  }

  .pill-tabs .card-title {
    max-width: none;
    font-size: 1.34rem;
  }

  .pill-tabs .card-context {
    font-size: 0.72rem;
  }

  .pill-tabs .gallery-tab__event {
    font-size: 0.72rem;
  }

  .pill-tabs .gallery-tab__author {
    font-size: 0.56rem;
    text-align: left;
  }

  .pill-tabs .card-author {
    font-size: 0.56rem;
    text-align: left;
  }

  .article-hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .article-hero-grid > * {
    min-width: 0;
  }

  .article-title--disc {
    font-size: 2.15rem;
  }

  .article-release {
    overflow-wrap: anywhere;
  }

  .article-hero {
    padding-top: 38px;
  }

  .article-hero-photo--interview img {
    aspect-ratio: 16 / 11;
    max-height: 260px;
  }

  .article-body {
    padding-top: 38px;
  }

  .article-body p {
    font-size: 1rem;
  }

  .interview-inline-photo,
  .interview-inline-photo--left,
  .interview-inline-photo--right {
    width: min(82vw, 330px);
    margin-right: auto;
    margin-left: auto;
  }

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

@media (max-width: 760px) {
  .site-header {
    transition: transform 180ms ease;
    will-change: transform;
  }

  .site-header.is-hidden {
    transform: translateY(-100%);
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}


/* Accessible language switch colors on light pages. */
.main-nav .language-toggle__option.is-active {
  color: var(--orange-text) !important;
}

.main-nav a.language-toggle__option:hover,
.main-nav a.language-toggle__option:focus-visible {
  color: var(--teal-text) !important;
}
