:root {
  color-scheme: dark;
  --black: #090908;
  --black-2: #11100e;
  --paper: #efe6d2;
  --paper-2: #d8cdb6;
  --ink: #f1eadc;
  --muted: #a99d86;
  --gold: #c39335;
  --line: rgba(195, 147, 53, 0.42);
  --mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --display: "Anton", Impact, sans-serif;
  --body: "Archivo", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(195, 147, 53, 0.18), transparent 24rem),
    #060605;
  color: var(--ink);
  font-family: var(--body);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell,
main,
.site-footer {
  width: min(100%, 1180px);
  margin: 0 auto;
  background: var(--black);
}

.site-shell {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
}

.topbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 18px 44px 14px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: grid;
  gap: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.brand span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 23px;
  line-height: 0.9;
}

.brand small,
.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.nav-links a:last-child {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: clamp(510px, 60vw, 705px);
  display: block;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(114deg, rgba(8, 8, 7, 1) 0 46%, rgba(8, 8, 7, 0.35) 46.2% 100%),
    radial-gradient(circle at 73% 43%, rgba(195, 147, 53, 0.18), transparent 20rem);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(58%, 660px);
  padding: clamp(48px, 7vw, 86px) 0 38px clamp(36px, 5vw, 45px);
}

.hero-copy h1 {
  max-width: 6.8ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(126px, 19vw, 190px);
  font-weight: 400;
  line-height: 0.8;
  text-transform: uppercase;
  transform: scaleX(0.58);
  transform-origin: left top;
  text-shadow: 0 1px 0 rgba(195, 147, 53, 0.18);
}

.shadow-name {
  width: fit-content;
  margin: 14px 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 4px solid var(--gold);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 56px);
  font-style: italic;
  line-height: 0.82;
  transform: skew(-11deg);
  text-transform: uppercase;
}

.manifesto {
  margin: clamp(34px, 5vw, 62px) 0 18px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 17px;
  line-height: 1.75;
  text-transform: uppercase;
}

.place-row {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
}

.place-row span {
  border: 1px solid var(--gold);
  padding: 7px 10px;
}

.place-row span + span {
  border-color: rgba(239, 234, 220, 0.62);
}

.z6-mark {
  margin-top: clamp(24px, 4vw, 36px);
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(82px, 11vw, 160px);
  line-height: 0.75;
  transform: rotate(-11deg) skew(-8deg);
  text-shadow: 0 9px 0 rgba(0, 0, 0, 0.18);
}

.paper-hero {
  position: absolute;
  z-index: 3;
  top: clamp(54px, 7vw, 104px);
  right: clamp(72px, 10vw, 176px);
  width: clamp(292px, 35vw, 408px);
  margin: 0;
  transform: rotate(2.5deg);
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.56));
}

.paper-hero::before {
  content: "";
  position: absolute;
  inset: 9% 8% 7%;
  z-index: -1;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(-6deg);
}

.paper-hero img {
  width: 100%;
  min-height: clamp(390px, 48vw, 470px);
  object-fit: cover;
  border: 1px solid rgba(8, 8, 7, 0.45);
}

.pin {
  position: absolute;
  top: 12px;
  left: 52%;
  z-index: 3;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--black);
  box-shadow: 0 0 0 5px rgba(239, 234, 220, 0.28);
}

.artist-hero {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: clamp(235px, 31%, 365px);
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.artist-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--black) 0, rgba(9, 9, 8, 0) 28%),
    linear-gradient(180deg, rgba(9, 9, 8, 0) 0, rgba(9, 9, 8, 0.6) 100%);
}

.artist-hero img {
  width: 100%;
  height: 100%;
  min-height: clamp(510px, 60vw, 705px);
  object-fit: cover;
  object-position: center;
  filter: sepia(0.52) saturate(0.72) contrast(1.08) brightness(0.77);
}

.artist-hero span {
  position: absolute;
  z-index: 2;
  top: 88px;
  right: 25px;
  writing-mode: vertical-rl;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lyric-section {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(176px, 0.68fr) minmax(330px, 1fr) minmax(108px, 0.36fr);
  gap: 18px;
  min-height: 292px;
  padding: 42px clamp(34px, 4.8vw, 58px) 44px;
  overflow: hidden;
  background: var(--paper);
  color: var(--black);
}

.section-label,
.gold-kicker {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.lyric-section h2,
.stage-copy h2,
.support-copy h2,
.gallery-section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.lyric-section h2 {
  margin-top: 20px;
  font-size: clamp(48px, 5.6vw, 82px);
  max-width: 6ch;
}

.lyric-section h2::after,
.stage-copy h2::after,
.support-copy h2::after,
.gallery-section h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin-top: 25px;
  background: var(--gold);
}

.tiny-copy {
  margin: 28px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 2.05;
}

.hexa-quote {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  margin: 36px 0 0;
  font-family: var(--mono);
}

.hexa-quote span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 60px;
  line-height: 0.4;
}

.hexa-quote p {
  margin: 0;
  font-size: clamp(14px, 1.38vw, 18px);
  font-weight: 700;
  line-height: 1.36;
}

.z6-watermark {
  align-self: center;
  justify-self: center;
  color: rgba(9, 9, 8, 0.44);
  font-family: var(--display);
  font-size: clamp(92px, 12vw, 180px);
  line-height: 0.72;
  transform: rotate(-10deg) skew(-7deg);
}

.stage-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(42px, 5vw, 64px);
  padding: 32px clamp(36px, 5vw, 50px) 38px;
  background:
    linear-gradient(90deg, #070706 0 54%, #0d0d0b 100%),
    var(--black);
  overflow: hidden;
}

.stage-section::after {
  content: "UNDERGROUND E ONBOARDING";
  position: absolute;
  top: 90px;
  right: 28px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
}

.street-photo {
  position: relative;
  align-self: start;
  margin: 0;
  border: 1px solid rgba(239, 234, 220, 0.42);
  padding: 14px;
  background: #0c0b0a;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.street-photo::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 37%;
  width: 84px;
  height: 25px;
  background: rgba(239, 234, 220, 0.7);
  transform: rotate(-1deg);
}

.street-photo img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  filter: sepia(0.55) saturate(0.66) contrast(1.05);
}

.street-photo figcaption {
  position: absolute;
  left: 28px;
  bottom: 0;
  padding: 4px 18px;
  background: var(--paper);
  color: var(--black);
  font-family: var(--display);
  font-size: 24px;
  transform: rotate(-2deg);
  text-transform: uppercase;
}

.stage-copy {
  padding: 22px 0 0;
}

.stage-copy h2 {
  margin: 8px 0 24px;
  color: var(--ink);
  font-size: clamp(56px, 7vw, 96px);
}

.stage-copy h2::after {
  margin-top: 18px;
}

.stage-copy p {
  max-width: 58ch;
  margin: 0 0 22px;
  color: #d7cfbd;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.58;
}

.stage-copy .gold-kicker {
  margin: 0;
  color: var(--gold);
  line-height: 1;
}

.stage-copy strong {
  color: var(--ink);
}

.social-list {
  border-top: 1px solid var(--line);
}

.social-list a {
  position: relative;
  display: grid;
  grid-template-columns: 128px 1fr 18px;
  gap: 16px;
  align-items: center;
  min-height: 38px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  text-decoration: none;
}

.social-list a::after {
  content: ">";
  justify-self: end;
  color: var(--ink);
}

.social-list b {
  color: var(--gold);
  text-transform: uppercase;
}

.social-list span {
  color: #d7cfbd;
}

.gallery-section {
  padding: 20px 46px 50px;
  background: var(--paper);
  color: var(--black);
}

.gallery-section h2 {
  margin-bottom: 12px;
  font-size: 38px;
}

.film-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 12px;
  background: #090908;
  border: 8px solid #090908;
  box-shadow: inset 0 0 0 1px rgba(239, 234, 220, 0.18);
}

.film-strip figure {
  margin: 0;
  background: #12110f;
  overflow: hidden;
}

.film-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: sepia(0.45) saturate(0.72) contrast(1.05);
}

.film-strip figcaption {
  padding: 6px 7px 4px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(42px, 5vw, 70px);
  padding: 58px clamp(36px, 5vw, 50px) 60px;
  background: var(--black);
  color: var(--ink);
}

.support-copy h2 {
  color: var(--ink);
  font-size: clamp(56px, 7.6vw, 96px);
}

.support-copy p {
  max-width: 45ch;
  margin: 28px 0 34px;
  color: #d6cdbb;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.75;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.support-grid span {
  min-height: 96px;
  display: grid;
  place-items: end center;
  padding: 18px 10px;
  border-right: 1px solid var(--line);
  color: #d7cfbd;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.support-grid span:last-child {
  border-right: 0;
}

.pix-card {
  position: relative;
  min-height: 245px;
  display: grid;
  grid-template-columns: 1fr 168px;
  grid-template-areas:
    "label qr"
    "title qr"
    "copy qr";
  gap: 12px 34px;
  align-items: center;
  padding: 32px 34px;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  background: #11100e;
}

.pix-card > span {
  grid-area: label;
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.pix-card strong {
  grid-area: title;
  font-family: var(--display);
  font-size: clamp(50px, 6.2vw, 76px);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.pix-card em {
  color: var(--gold);
  font-style: italic;
}

.pix-card p {
  grid-area: copy;
  margin: 0;
  color: #d6cdbb;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
}

.pix-card img {
  grid-area: qr;
  width: 168px;
  height: 168px;
  object-fit: cover;
  background: var(--paper);
  padding: 9px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 50px 38px;
  border-top: 1px solid rgba(239, 234, 220, 0.12);
  color: #d6cdbb;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .site-shell,
  main,
  .site-footer {
    width: 100%;
  }

  .topbar {
    padding: 16px 20px 12px;
  }

  .nav-links {
    gap: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: 58px 20px 24px;
  }

  .paper-hero {
    position: relative;
    top: auto;
    right: auto;
    width: min(78vw, 420px);
    margin: 8px auto 36px;
  }

  .paper-hero img {
    min-height: 0;
  }

  .artist-hero {
    display: none;
  }

  .lyric-section,
  .stage-section,
  .support-section {
    grid-template-columns: 1fr;
    padding-left: 22px;
    padding-right: 22px;
  }

  .lyric-section {
    gap: 20px;
  }

  .z6-watermark {
    position: absolute;
    right: 22px;
    bottom: 26px;
    opacity: 0.38;
  }

  .stage-section {
    gap: 28px;
  }

  .stage-copy {
    padding: 10px 0 0;
  }

  .gallery-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .film-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pix-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "copy"
      "qr";
  }

  .site-footer {
    flex-direction: column;
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 560px) {
  .topbar {
    align-items: flex-start;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px 18px;
  }

  .brand span {
    font-size: 19px;
  }

  .hero-copy h1 {
    font-size: clamp(72px, 22vw, 104px);
  }

  .manifesto {
    margin-top: 34px;
  }

  .lyric-section h2,
  .stage-copy h2,
  .support-copy h2 {
    font-size: clamp(46px, 18vw, 72px);
  }

  .hexa-quote {
    grid-template-columns: 1fr;
  }

  .hexa-quote span {
    line-height: 0.9;
  }

  .social-list a {
    grid-template-columns: 1fr 22px;
  }

  .social-list span {
    grid-column: 1;
  }

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

  .support-grid span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
