:root {
  --ink: #080808;
  --ink-2: #111111;
  --steel: #b8b8b2;
  --paper: #ecece5;
  --white: #ffffff;
  --red: #d52222;
  --red-deep: #7e1111;
  --line: rgba(255, 255, 255, 0.18);
  --page: min(1280px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
button { font: inherit; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 99;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  width: var(--page);
  height: 94px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  color: var(--white);
  line-height: .78;
  letter-spacing: -.08em;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 900;
  transform: skew(-5deg);
}
.wordmark strong { color: var(--red); }
nav { display: flex; gap: clamp(20px, 4vw, 58px); }
nav a, .language-switch button {
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
}
nav a { transition: color .2s ease; }
nav a:hover, nav a:focus-visible { color: var(--red); }
.language-switch {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #777;
}
.language-switch button {
  padding: 8px 2px;
  border: 0;
  background: transparent;
  color: #777;
  cursor: pointer;
}
.language-switch button[aria-pressed="true"] { color: var(--white); }

.hero {
  position: relative;
  min-height: 800px;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-image, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.08); }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.64) 38%, rgba(0,0,0,.06) 74%),
    linear-gradient(0deg, rgba(0,0,0,.72), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 64px auto 0;
}
.eyebrow, .section-kicker, .small-label {
  margin: 0;
  color: var(--red);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 860px;
  margin: 18px 0 20px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(5rem, 11vw, 10.5rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .76;
  text-transform: uppercase;
}
.hero h1 span, .hero h1 em { display: block; font-style: normal; }
.hero h1 em {
  color: transparent;
  -webkit-text-stroke: 2px var(--paper);
  text-stroke: 2px var(--paper);
}
.hero-copy {
  max-width: 565px;
  margin: 0 0 32px;
  color: #d5d5cf;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding: 13px 0;
  border-bottom: 2px solid var(--red);
  color: var(--white);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.hero-link span:last-child { color: var(--red); font-size: 1.25rem; transition: transform .2s ease; }
.hero-link:hover span:last-child { transform: translate(4px, 4px); }
.hero-index {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - min(1280px, calc(100vw - 48px))) / 2));
  bottom: 34px;
  color: #aaa;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.section-grid {
  width: var(--page);
  margin: auto;
  display: grid;
  grid-template-columns: 72px minmax(150px, 230px) 1fr;
  column-gap: clamp(28px, 5vw, 76px);
  padding: 130px 0;
}
.section-number {
  color: #555;
  font-family: Georgia, serif;
  font-size: .9rem;
  font-style: italic;
}
.manifesto { border-bottom: 1px solid var(--line); }
.manifesto-copy h2, .section-heading h2, .genre-intro h2, .culture-copy h2, .start h2, .sound h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 6vw, 6.3rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: .92;
  text-transform: uppercase;
}
.manifesto-copy > p {
  max-width: 790px;
  margin: 40px 0 64px;
  color: #b5b5af;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}
.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.fact-row div { display: flex; flex-direction: column; }
.fact-row strong { color: var(--white); font-size: clamp(2rem, 3.4vw, 3.4rem); line-height: 1; }
.fact-row span { color: #777; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.history { background: var(--paper); color: var(--ink); width: 100%; padding-inline: max(24px, calc((100vw - 1280px) / 2)); }
.history .section-number { color: #999; }
.section-heading { grid-column: 3; margin-top: 52px; max-width: 930px; }
.timeline {
  grid-column: 2 / 4;
  margin-top: 90px;
  border-top: 2px solid var(--ink);
}
.timeline article {
  display: grid;
  grid-template-columns: 170px 250px 1fr;
  gap: 34px;
  padding: 32px 0;
  border-bottom: 1px solid #bbbcb5;
}
.timeline time { color: var(--red); font-weight: 900; }
.timeline h3 { margin: 0; font-size: 1.2rem; text-transform: uppercase; }
.timeline p { max-width: 650px; margin: 0; color: #4d4d49; }

.sound {
  padding: 130px max(24px, calc((100vw - 1280px) / 2));
  background: linear-gradient(135deg, #520b0b, var(--red-deep) 48%, #240505);
}
.sound-heading { display: grid; grid-template-columns: minmax(190px, 330px) 1fr; gap: 60px; align-items: start; }
.sound .section-kicker { color: #f2aaa5; }
.sound h2 { max-width: 850px; color: var(--white); }
.sound-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 90px;
  border-top: 1px solid rgba(255,255,255,.35);
  border-left: 1px solid rgba(255,255,255,.35);
}
.sound-grid article {
  min-height: 320px;
  padding: 26px;
  border-right: 1px solid rgba(255,255,255,.35);
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.sound-icon { color: #f2aaa5; font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.sound-grid h3 { margin: 80px 0 15px; font-size: 1.45rem; text-transform: uppercase; }
.sound-grid p { margin: 0; color: #dfc0bd; }

.genres { padding-bottom: 150px; }
.genre-intro { grid-column: 3; margin-top: 52px; }
.genre-intro > p { max-width: 550px; margin: 26px 0 36px; color: #999; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-bar button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid #444;
  background: transparent;
  color: #aaa;
  cursor: pointer;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: .2s ease;
}
.filter-bar button:hover, .filter-bar button:focus-visible, .filter-bar button.active { border-color: var(--red); background: var(--red); color: var(--white); }
.genre-list { grid-column: 2 / 4; margin-top: 80px; border-top: 1px solid var(--line); }
.genre-list article {
  display: grid;
  grid-template-columns: 70px 1fr 150px;
  align-items: center;
  gap: 26px;
  min-height: 126px;
  border-bottom: 1px solid var(--line);
  transition: opacity .25s ease, transform .25s ease;
}
.genre-list article.is-hidden { display: none; }
.genre-list article > span { color: #555; font-size: .75rem; }
.genre-list h3 { margin: 0 0 5px; color: var(--white); font-size: clamp(1.35rem, 2.2vw, 2rem); text-transform: uppercase; }
.genre-list p { margin: 0; color: #888; }
.genre-list b { justify-self: end; color: var(--red); font-size: .68rem; letter-spacing: .14em; }

.culture { border-top: 1px solid var(--line); background: #0e0e0e; }
.culture-copy { grid-column: 3; margin-top: 52px; }
.culture-copy p { max-width: 800px; margin: 38px 0 70px; color: #a8a8a2; font-size: 1.2rem; }
.etiquette {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 35px;
  padding: 40px;
  background: var(--paper);
  color: var(--ink);
}
.etiquette .small-label { color: var(--red); }
.etiquette ul { list-style: none; padding: 0; margin: 0; }
.etiquette li {
  display: grid;
  grid-template-columns: 45px 1fr;
  padding: 16px 0;
  border-top: 1px solid #c3c3bc;
}
.etiquette li:first-child { border-top-color: var(--ink); }
.etiquette li span { color: var(--red); font-size: .72rem; font-weight: 900; }
.etiquette li p { margin: 0; }

.start {
  padding: 130px max(24px, calc((100vw - 1280px) / 2)) 70px;
  background:
    radial-gradient(circle at 90% 20%, rgba(213,34,34,.18), transparent 30%),
    var(--ink);
}
.start-lead { display: grid; grid-template-columns: minmax(190px, 330px) 1fr; gap: 60px; }
.start h2 { max-width: 850px; }
.path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 85px 0 60px;
  background: var(--line);
  border: 1px solid var(--line);
}
.path-grid article {
  min-height: 240px;
  padding: 38px;
  background: var(--ink);
}
.path-grid span { color: #777; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.path-grid h3 { margin: 55px 0 10px; color: var(--white); font-size: 1.55rem; text-transform: uppercase; }
.path-grid p { margin: 0; color: #999; }
.back-top {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: var(--paper);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

footer {
  width: var(--page);
  min-height: 130px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
}
footer > p { margin: 0; color: #666; font-size: .75rem; letter-spacing: .06em; }
footer > p:last-child { justify-self: end; }
.legal-links { display: flex; gap: 14px; }
.legal-links a { color: #b6b6b0; font-size: .75rem; font-weight: 800; text-underline-offset: 4px; }
.cookie-interface { position: relative; z-index: 2147483000; color: #171717; font-family: Arial, Helvetica, sans-serif; }
.cookie-banner { position: fixed; right: 18px; bottom: 72px; width: min(570px, calc(100vw - 36px)); max-height: calc(100svh - 112px); overflow-y: auto; padding: 22px; border: 1px solid #555; border-radius: 16px; background: #f2f0e9; box-shadow: 0 22px 70px #0009; }
.cookie-banner[hidden] { display: none; }
.cookie-eyebrow { margin: 0 0 8px; color: #b71919; font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.cookie-banner h2 { margin: 0 0 10px; color: #171717; font-family: Arial, Helvetica, sans-serif; font-size: 1.35rem; letter-spacing: -.02em; text-transform: none; }
.cookie-banner p { margin: 0; color: #4f4f49; font-size: .88rem; line-height: 1.55; }
.cookie-banner small { color: #62625d; font-size: .7rem; line-height: 1.5; }
.cookie-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 13px 18px; margin: 18px 0 10px; }
.cookie-actions button { min-height: 44px; padding: 11px 16px; border: 0; border-radius: 4px; background: #b71919; color: #fff; cursor: pointer; font: 900 .75rem/1.3 Arial, Helvetica, sans-serif; text-transform: uppercase; }
.cookie-actions a { color: #171717; font-size: .75rem; font-weight: 800; text-underline-offset: 3px; }
.cookie-settings-button { position: fixed; right: 18px; bottom: 18px; min-height: 42px; padding: 10px 15px; border: 1px solid #5c5c58; border-radius: 999px; background: #171717; color: #fff; box-shadow: 0 4px 18px #0007; cursor: pointer; font: 800 .72rem/1.3 Arial, Helvetica, sans-serif; }
.legal-page { width: min(900px, calc(100vw - 36px)); margin: 0 auto; padding: 64px 0 150px; color: #d3d3cd; }
.legal-page .back-link { color: #fff; font-weight: 800; text-underline-offset: 4px; }
.legal-page .legal-kicker { margin: 54px 0 14px; color: #df3030; font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.legal-page h1 { margin: 0 0 28px; color: #fff; font-size: clamp(3rem, 9vw, 6.5rem); line-height: .92; text-transform: uppercase; }
.legal-page .intro { max-width: 760px; color: #b4b4ae; font-size: 1.1rem; line-height: 1.7; }
.legal-page section { padding: 30px 0; border-top: 1px solid #3d3d3a; }
.legal-page h2 { margin: 0 0 14px; color: #fff; font-size: 1.45rem; text-transform: uppercase; }
.legal-page p, .legal-page li { color: #adada7; line-height: 1.75; }
.legal-page a { color: #fff; }
.legal-page table { width: 100%; border-collapse: collapse; color: #c8c8c2; font-size: .85rem; }
.legal-page th, .legal-page td { padding: 12px; border: 1px solid #4a4a46; text-align: left; vertical-align: top; }
.legal-page th { color: #fff; background: #222; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
.promoters { width: var(--page); margin: auto; padding: 90px 0; border-top: 1px solid var(--line); }
.promoters h2 { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1.05; text-transform: uppercase; margin: 22px 0; }
.promoters-intro { max-width: 850px; font-size: 1.1rem; color: var(--paper); }
.promoters-note { max-width: 900px; color: var(--steel); font-size: 1rem; }
.promoter-group { margin-top: 44px; }
.promoter-group > h3 { font-size: 1.4rem; margin-bottom: 24px; }
.promoter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 18px; }
.promoter-grid article { padding: 24px; border: 1px solid var(--line); background: var(--ink-2); display: flex; flex-direction: column; }
.promoter-grid h4 { color: white; font-size: 1.35rem; line-height: 1.3; margin: 12px 0; overflow-wrap: anywhere; }
.promoter-grid p { color: var(--steel); margin: 0 0 18px; }
.promoter-grid .promoter-region { color: #ed7777; font-size: .875rem; margin: 0; }
.promoter-grid a { align-self: start; margin-top: auto; padding: 12px 0; text-underline-offset: 5px; font-weight: 700; }
.site-header nav { gap: clamp(14px, 2vw, 30px); }
@media (max-width: 900px) {
  .site-header { height: auto; min-height: 105px; padding: 16px 0; row-gap: 16px; }
  .site-header nav { display: flex; flex-wrap: wrap; grid-column: 1 / -1; grid-row: 2; gap: 10px 18px; }
  .site-header nav a { font-size: .875rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

@media (max-width: 900px) {
  :root { --page: calc(100vw - 32px); }
  .site-header { grid-template-columns: 1fr auto; height: 76px; }
  .site-header nav { display: flex; }
  .hero { min-height: 720px; }
  .hero-content { margin-top: 35px; }
  .hero h1 { font-size: clamp(4.25rem, 18vw, 7.5rem); }
  .section-grid { grid-template-columns: 42px 1fr; padding: 90px 0; column-gap: 18px; }
  .section-kicker { grid-column: 2; }
  .manifesto-copy, .section-heading, .genre-intro, .culture-copy { grid-column: 2; margin-top: 28px; }
  .timeline, .genre-list, .etiquette { grid-column: 1 / 3; }
  .timeline { margin-top: 60px; }
  .timeline article { grid-template-columns: 120px 1fr; }
  .timeline article p { grid-column: 2; }
  .history { padding-inline: 16px; }
  .sound, .start { padding: 90px 16px; }
  .sound-heading, .start-lead { grid-template-columns: 1fr; gap: 28px; }
  .sound-grid { grid-template-columns: repeat(2, 1fr); margin-top: 60px; }
  .etiquette { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.38)), linear-gradient(0deg, rgba(0,0,0,.82), transparent 50%); }
  .hero { min-height: 690px; }
  .hero h1 { margin-top: 22px; font-size: clamp(4rem, 20vw, 6rem); }
  .hero-copy { max-width: 92%; font-size: 1rem; }
  .hero-index { display: none; }
  .manifesto-copy h2, .section-heading h2, .genre-intro h2, .culture-copy h2, .start h2, .sound h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .fact-row { grid-template-columns: 1fr; gap: 26px; }
  .timeline article { grid-template-columns: 1fr; gap: 10px; }
  .timeline article p { grid-column: 1; }
  .sound-grid, .path-grid { grid-template-columns: 1fr; }
  .sound-grid article { min-height: 245px; }
  .sound-grid h3 { margin-top: 48px; }
  .genre-list article { grid-template-columns: 38px 1fr; padding: 24px 0; }
  .genre-list article b { display: none; }
  .etiquette { padding: 26px; }
  footer { grid-template-columns: 1fr auto; min-height: 160px; }
  footer > p:nth-child(2) { grid-column: 1 / 3; grid-row: 1; }
  footer .legal-links { grid-column: 1 / 3; }
  .cookie-banner { right: 13px; bottom: 70px; width: calc(100vw - 26px); padding: 18px; }
  .cookie-actions { align-items: stretch; }
  .cookie-actions button { flex: 1 0 100%; }
}

/* Sourced information additions */
.info-update{max-width:1200px;margin:48px auto;padding:32px clamp(18px,4vw,48px);border-top:1px solid currentColor;scroll-margin-top:110px}.info-update h2{font-size:clamp(24px,3vw,36px);line-height:1.2;margin:12px 0 24px}.info-update-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,270px),1fr));gap:24px}.info-update article{padding:20px;border:1px solid color-mix(in srgb,currentColor 25%,transparent);border-radius:12px;min-width:0}.info-update h3{font-size:20px;line-height:1.4;margin:0 0 12px}.info-update p{font-size:16px;line-height:1.7;margin:12px 0}.info-update a{font-size:16px;text-decoration:underline;text-underline-offset:4px;overflow-wrap:anywhere}.info-update small{font-size:14px}.info-update-link{display:block;margin:20px auto;max-width:1200px;padding:0 24px;font-size:16px;text-decoration:underline}
