:root {
  --ink: #090909;
  --ink-soft: #151515;
  --paper: #f0ede5;
  --cream: #fffdf4;
  --orange: #ec471b;
  --gold: #f2ee18;
  --teal: #285c58;
  --muted: #aaa69e;
  --line: rgba(255, 255, 255, 0.16);
  --radius: 1rem;
  --shell: min(1240px, calc(100vw - 3rem));
  --display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --body: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 880px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 8.2vw, 7.6rem);
  text-transform: uppercase;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 5vw, 5rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  color: #8b260d;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.mural-section .eyebrow {
  color: var(--gold);
}

.eyebrow::before {
  width: 1.75rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.75rem;
  padding-inline: 1rem;
  font-size: 0.7rem;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.button-light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}

.text-link {
  border-bottom: 1px solid currentColor;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #000;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  color: #fff;
  transition: 200ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(17, 16, 15, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.75rem;
}

.brand-symbol {
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(242, 238, 24, 0.12));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.015em;
}

.brand small {
  margin-top: -0.15rem;
  opacity: 0.66;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.custom-logo-link img {
  width: auto;
  max-height: 3.3rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav ul a {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-nav ul a:hover,
.site-nav ul a:focus-visible,
.site-nav ul a[aria-current="location"] {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  border: 0;
  background: transparent;
  color: #fff;
  flex: 0 0 auto;
}

.menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.25rem 0;
  background: currentColor;
}

@keyframes scroll-cue {
  50% { transform: translate(-50%, 0.75rem); opacity: 0.2; }
}

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-block: 0.85rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--display);
  font-size: 0.86rem;
  white-space: nowrap;
}

.ticker div {
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker i {
  padding-inline: 1.5rem;
  color: var(--gold);
  font-style: normal;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2 {
  margin: 0;
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 0.5rem;
  color: var(--muted);
}

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

.show-card {
  display: grid;
  align-items: center;
  grid-template-columns: 120px minmax(0, 1fr) 3.5rem;
  gap: 2rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--line);
  transition: 180ms ease;
}

.show-card:hover {
  padding-inline: 1rem;
  background: rgba(255, 255, 255, 0.035);
}

.show-date {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.show-date span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.show-date strong {
  font-family: var(--display);
  font-size: 3rem;
  line-height: 1;
}

.show-info p,
.show-info span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.show-info h3 {
  margin: 0.25rem 0 0.5rem;
  text-transform: uppercase;
}

.round-link {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: 180ms ease;
}

.round-link:hover {
  border-color: var(--orange);
  background: var(--orange);
  transform: rotate(45deg);
}

.empty-state {
  padding-block: 3rem;
}

.radio-band {
  padding-block: 3rem;
  background: var(--gold);
}

.radio-band .eyebrow {
  color: #51260f;
}

.radio-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}

.radio-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.radio-player {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.radio-player > div {
  margin-right: auto;
}

.radio-player strong,
.radio-player small {
  display: block;
}

.live-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(240, 74, 25, 0.15);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 12px rgba(240, 74, 25, 0); }
}

audio {
  max-width: 65%;
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.about-visual {
  position: relative;
}

.about-visual::before {
  position: absolute;
  width: 80%;
  border-radius: 50%;
  aspect-ratio: 1;
  background: var(--gold);
  content: "";
  filter: blur(1px);
  transform: translate(-15%, -12%);
}

.poster-card {
  position: relative;
  display: flex;
  min-height: 580px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 4rem) 2rem;
  border: 10px solid var(--cream);
  background:
    linear-gradient(150deg, transparent 45%, rgba(245, 174, 35, 0.85)),
    repeating-radial-gradient(circle at 90% 90%, var(--orange) 0 13px, var(--ink) 14px 30px);
  color: #fff;
  box-shadow: 0 25px 70px rgba(17, 16, 15, 0.18);
  transform: rotate(-3deg);
}

.band-portrait {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 10px solid var(--cream);
  background: var(--ink);
  box-shadow: 0 30px 80px rgba(17, 16, 15, 0.25);
  transform: rotate(-2.5deg);
}

.band-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.8));
  content: "";
  pointer-events: none;
}

.band-portrait img {
  width: 100%;
  min-height: 590px;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(.2,.8,.2,1), filter 800ms ease;
}

.band-portrait:hover img {
  filter: saturate(1.15);
  transform: scale(1.045);
}

.band-portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  color: #fff;
}

.band-portrait figcaption span,
.band-portrait figcaption strong {
  display: block;
}

.band-portrait figcaption span {
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.band-portrait figcaption strong {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.poster-card span,
.poster-card i {
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.poster-card strong {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 0.95;
}

.about-copy {
  position: relative;
}

.about-copy .big-copy {
  font-size: clamp(1.2rem, 2.3vw, 1.75rem);
  font-weight: 500;
  line-height: 1.45;
}

.about-copy > p:not(.eyebrow):not(.big-copy) {
  color: #5d574f;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pill-row span {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(17, 16, 15, 0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.video-section {
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.video-section .eyebrow {
  color: var(--gold);
}

.video-heading > p {
  color: var(--muted);
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.9);
  transition: transform 900ms cubic-bezier(.2,.8,.2,1), filter 500ms ease;
}

.video-frame:hover > img {
  filter: brightness(0.78) saturate(1.05);
  transform: scale(1.025);
}

.video-action {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
}

.video-play {
  display: grid;
  gap: 0.8rem;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-play i {
  display: grid;
  width: clamp(4rem, 8vw, 6.5rem);
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  aspect-ratio: 1;
  place-items: center;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  transition: transform 220ms ease, background 220ms ease;
}

.video-play i::after {
  margin-left: 0.35rem;
  border-top: 0.7rem solid transparent;
  border-bottom: 0.7rem solid transparent;
  border-left: 1.05rem solid currentColor;
  content: "";
}

.video-play:hover i,
.video-play:focus-visible i {
  background: #fff;
  transform: scale(1.08);
}

.video-action > a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.gallery-section {
  background: #d9d2c5;
}

.gallery-placeholder {
  display: grid;
  min-height: 650px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  margin: 0;
  background: var(--ink);
}

.gallery-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7));
  content: "";
  pointer-events: none;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
  transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 500ms ease;
}

.gallery-tile:hover img {
  filter: saturate(1.15) contrast(1.02);
  transform: scale(1.055);
}

.gallery-tile figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.gallery-tile-1,
.gallery-tile-5 {
  grid-row: span 2;
}

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

.gallery-tile-3 img { object-position: left bottom; }
.gallery-tile-4 img { object-position: right top; }
.gallery-tile-5 img { object-position: 70% bottom; }
.gallery-tile-6 img { object-position: center bottom; }

[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.reveal-item {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 800ms ease, transform 900ms cubic-bezier(.2,.75,.2,1);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

.gallery-note {
  margin: 1rem 0 0;
  color: #403b35;
  font-size: 0.78rem;
  text-align: right;
}

.wp-gallery .wp-block-gallery {
  gap: 0.75rem;
}

.wp-gallery img {
  min-height: 260px;
  object-fit: cover;
}

.support-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--orange);
  color: #fff;
}

.support-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.support-section .eyebrow {
  color: var(--gold);
}

.pix-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
}

.pix-card small {
  grid-column: 1 / -1;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.pix-card code {
  overflow: hidden;
  align-self: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mural-section {
  background: var(--ink-soft);
  color: var(--cream);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonials blockquote {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 1.75rem;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.testimonials blockquote > span {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.6;
}

.testimonials blockquote p {
  margin: 1.5rem 0 auto;
  font-size: 1.1rem;
}

.testimonials cite {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
}

.fan-form {
  display: grid;
  align-items: end;
  grid-template-columns: 0.75fr 1.5fr auto;
  gap: 1rem;
  margin-top: 2rem;
}

form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  padding: 0.9rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

input:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 2px 0 var(--orange);
}

textarea {
  resize: vertical;
}

::placeholder {
  color: currentColor;
  opacity: 0.45;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-message {
  margin-top: 1rem;
  font-weight: 700;
}

.success { color: #5bc889; }
.error { color: #ff9b80; }

.contact-section {
  background: var(--teal);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-section .eyebrow {
  color: var(--cream);
}

.contact-whatsapp {
  display: inline-block;
  margin-top: 2rem;
}

.contact-whatsapp span,
.contact-whatsapp strong {
  display: block;
}

.contact-whatsapp span {
  font-size: 0.75rem;
  opacity: 0.9;
}

.contact-whatsapp strong {
  border-bottom: 1px solid currentColor;
  font-size: 1.15rem;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.08);
}

.site-footer {
  padding-top: 4rem;
  background: var(--ink);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.brand-footer {
  margin-bottom: 1rem;
}

.footer-grid p {
  max-width: 320px;
  color: var(--muted);
}

.footer-label {
  margin-bottom: 0.5rem;
  color: var(--gold) !important;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand):hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.content-page {
  min-height: 70vh;
  padding-top: 10rem;
}

.content-page h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.post-list {
  display: grid;
  gap: 1rem;
}

.post-card {
  padding: 1.5rem;
  border: 1px solid rgba(17, 16, 15, 0.15);
  border-radius: var(--radius);
}

.featured-image {
  margin-block: 2rem;
}

.entry-content {
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 2rem, 720px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 5rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 2rem;
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-1rem);
    transition: 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav ul a {
    display: block;
    padding-block: 0.65rem;
    font-family: var(--display);
    font-size: 1.6rem;
  }

  .radio-grid,
  .about-grid,
  .support-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-visual {
    max-width: 520px;
  }

  .gallery-placeholder {
    min-height: 800px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .gallery-tile-1,
  .gallery-tile-5,
  .gallery-tile-2 {
    grid-column: auto;
    grid-row: auto;
  }

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

  .fan-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding-block: 4.5rem;
  }

  .show-card {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 1rem;
  }

  .show-date {
    flex-direction: column;
    gap: 0;
  }

  .show-date strong {
    font-size: 2.5rem;
  }

  .round-link {
    display: none;
  }

  .radio-player {
    border-radius: var(--radius);
    flex-wrap: wrap;
  }

  .radio-player .button,
  audio {
    width: 100%;
    max-width: none;
  }

  .poster-card {
    min-height: 460px;
  }

  .band-portrait img {
    min-height: 460px;
  }

  .gallery-placeholder,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .gallery-placeholder {
    min-height: auto;
  }

  .gallery-tile {
    min-height: 300px;
  }

  .pix-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pix-card .button {
    width: 100%;
  }

  .footer-bottom {
    gap: 1rem;
    flex-direction: column;
  }
}


body {
  font-family: var(--body);
  letter-spacing: -0.01em;
}

h1,
h2,
h3,
.brand,
.button,
.site-nav,
.hero-slide-nav {
  font-family: var(--display);
}

h1,
h2,
h3 {
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.site-nav,
.button,
.eyebrow,
.hero-slide-nav,
.footer-label {
  letter-spacing: 0.035em;
}

.section-heading > p,
.about-copy p,
.manifesto-copy > p:not(.eyebrow),
.legal-block p,
.legal-block li {
  line-height: 1.72;
}


.legal-page {
  background: var(--paper);
  color: var(--ink);
}

.legal-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #080808;
  color: #fff;
  isolation: isolate;
}

.legal-hero-photo,
.legal-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.legal-hero-photo {
  z-index: -3;
  background: url("./band-03.jpg?v=310") center 36% / cover no-repeat;
  filter: saturate(0.65) contrast(1.12);
  transform: scale(1.04);
}

.legal-hero::after {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.68) 52%, rgba(0, 0, 0, 0.3)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.82));
}

.legal-hero-word {
  position: absolute;
  z-index: -1;
  right: -0.03em;
  bottom: -0.08em;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(7rem, 18vw, 18rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.75;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  white-space: nowrap;
}

.legal-hero-inner {
  display: grid;
  min-height: 680px;
  align-content: end;
  padding-block: 8rem 5rem;
}

.legal-back {
  position: absolute;
  top: 7rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-back:hover {
  color: var(--gold);
}

.legal-hero .eyebrow span {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.legal-hero .eyebrow::before {
  display: none;
}

.legal-hero h1 {
  max-width: 920px;
  margin: 1.4rem 0 1.7rem;
  font-size: clamp(5rem, 10vw, 10rem);
  letter-spacing: -0.055em;
  line-height: 0.77;
}

.legal-hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.legal-hero-inner > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.legal-updated {
  position: absolute;
  right: clamp(1rem, 7vw, 6.25rem);
  bottom: 5rem;
  display: grid;
  min-width: 220px;
  padding: 1rem 1.15rem;
  border-top: 3px solid var(--gold);
  background: rgba(9, 9, 9, 0.64);
  backdrop-filter: blur(12px);
}

.legal-updated span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-updated strong {
  margin-top: 0.25rem;
  font-family: var(--display);
  font-size: 1rem;
  text-transform: uppercase;
}

.legal-content {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.legal-index {
  position: sticky;
  top: 7rem;
  padding: 1.4rem;
  border: 1px solid rgba(9, 9, 9, 0.14);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.34);
}

.legal-index .footer-label {
  color: #6a635a;
}

.legal-index nav {
  display: grid;
}

.legal-index a {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.6rem;
  padding-block: 0.72rem;
  border-top: 1px solid rgba(9, 9, 9, 0.1);
  color: #4f4a43;
  font-size: 0.72rem;
  font-weight: 700;
}

.legal-index a:hover {
  color: var(--orange);
  transform: translateX(0.2rem);
}

.legal-index a span {
  color: var(--orange);
  font-family: var(--display);
}

.legal-article {
  min-width: 0;
}

.legal-intro {
  margin-bottom: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 0.9rem;
  background: var(--ink);
  color: #fff;
}

.legal-intro span {
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.legal-intro p {
  max-width: 720px;
  margin: 1rem 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.legal-intro a,
.legal-block a {
  border-bottom: 1px solid currentColor;
  color: var(--orange);
  font-weight: 800;
}

.legal-block {
  display: grid;
  scroll-margin-top: 7rem;
  grid-template-columns: 3.5rem 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  padding-block: clamp(2rem, 4vw, 3.2rem);
  border-top: 1px solid rgba(9, 9, 9, 0.16);
}

.legal-block > span {
  display: grid;
  width: 2.6rem;
  border: 1px solid rgba(9, 9, 9, 0.3);
  border-radius: 50%;
  color: var(--orange);
  font-family: var(--display);
  font-size: 0.85rem;
  aspect-ratio: 1;
  place-items: center;
}

.legal-block h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.035em;
}

.legal-block p,
.legal-block li {
  color: #544e46;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
}

.legal-block p {
  margin: 0 0 1rem;
}

.legal-block ul {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.legal-block li {
  position: relative;
  padding-left: 1.25rem;
}

.legal-block li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.4rem;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  aspect-ratio: 1;
}

.legal-block-highlight {
  margin-inline: -1.5rem;
  padding-inline: 1.5rem;
  border: 0;
  border-radius: 0.9rem;
  background: var(--gold);
}

.legal-block-highlight > span {
  border-color: var(--ink);
  color: var(--ink);
}

.legal-block-highlight p {
  color: rgba(9, 9, 9, 0.72);
}

.legal-contact {
  margin-top: 3rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 1rem;
  background: var(--orange);
}

.legal-contact h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.legal-contact .button {
  background: var(--ink);
  color: #fff;
}

.footer-bottom > div {
  display: flex;
  gap: 1.4rem;
}


.error-stage {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: #050505;
  color: #fff;
  isolation: isolate;
}

.error-stage-media,
.error-stage-scrim {
  position: absolute;
  inset: 0;
}

.error-stage-media {
  z-index: -3;
  background: url("./show-03.jpg?v=310") center 38% / cover no-repeat;
  filter: saturate(0.55) contrast(1.12);
  transform: scale(1.04);
}

.error-stage-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.72) 52%, rgba(0, 0, 0, 0.38)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.9));
}

.error-outline {
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: -0.05em;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(20rem, 48vw, 48rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.68;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
}

.error-stage-inner {
  display: grid;
  min-height: max(760px, 100svh);
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(3rem, 9vw, 10rem);
  padding-block: 8rem 7rem;
}

.error-copy .eyebrow span {
  display: inline-grid;
  width: 2.5rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  aspect-ratio: 1;
  place-items: center;
}

.error-copy .eyebrow::before {
  display: none;
}

.error-copy h1 {
  max-width: 880px;
  margin: 1.5rem 0;
  font-size: clamp(5rem, 9vw, 9rem);
  letter-spacing: -0.055em;
  line-height: 0.78;
}

.error-copy h1 em {
  color: var(--gold);
  font-style: normal;
}

.error-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.error-record {
  position: relative;
  display: grid;
  width: min(32vw, 420px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, #121212 0 4px, #1d1d1d 5px 7px, #0d0d0d 8px 10px);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.45);
  aspect-ratio: 1;
  place-items: center;
  animation: error-record-spin 22s linear infinite;
}

.error-record::after {
  position: absolute;
  width: 1.1rem;
  border-radius: 50%;
  background: #070707;
  content: "";
  aspect-ratio: 1;
}

.error-record-label {
  display: grid;
  width: 38%;
  border: 5px solid var(--gold);
  border-radius: 50%;
  background: var(--gold);
  aspect-ratio: 1;
  place-items: center;
}

.error-record-label img {
  width: 92%;
  height: 92%;
  border-radius: 50%;
  object-fit: cover;
}

.error-record > span {
  position: absolute;
  bottom: 13%;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

@keyframes error-record-spin {
  to { transform: rotate(360deg); }
}

.error-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding: 0.9rem 0;
  background: var(--gold);
  color: var(--ink);
}

.error-ticker div {
  width: max-content;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  animation: ticker 18s linear infinite;
}

.error-ticker i {
  padding-inline: 1rem;
  color: var(--orange);
}

@media (max-width: 900px) {
  .legal-updated {
    position: static;
    width: fit-content;
    margin-top: 2rem;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-index {
    position: static;
  }

  .legal-index nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 1rem;
  }

  .error-stage-inner {
    grid-template-columns: 1fr;
  }

  .error-record {
    position: absolute;
    z-index: -1;
    right: -8rem;
    bottom: 5rem;
    width: 25rem;
    opacity: 0.38;
  }
}

@media (max-width: 600px) {
  .legal-hero,
  .legal-hero-inner {
    min-height: 720px;
  }

  .legal-hero-inner {
    padding-block: 7.5rem 4rem;
  }

  .legal-back {
    top: 6rem;
  }

  .legal-hero h1 {
    max-width: 100%;
    font-size: clamp(3.45rem, 15.5vw, 4.6rem);
  }

  .legal-index nav {
    grid-template-columns: 1fr 1fr;
  }

  .legal-block {
    grid-template-columns: 2.7rem 1fr;
  }

  .legal-block-highlight {
    margin-inline: -0.6rem;
    padding-inline: 0.6rem;
  }

  .footer-bottom > div {
    flex-direction: column;
    gap: 0.5rem;
  }

  .error-stage-inner {
    padding-block: 7rem 6rem;
  }

  .error-copy h1 {
    max-width: 100%;
    font-size: clamp(3.1rem, 13vw, 4rem);
    overflow-wrap: break-word;
  }

  .error-copy h1 em {
    display: inline-block;
  }

  .error-actions {
    display: grid;
  }

  .error-actions .button {
    width: 100%;
  }

  .error-record {
    right: -10rem;
    bottom: 6rem;
    width: 23rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-record,
  .error-ticker div {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-parallax],
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}


.whatsapp-float {
  position: fixed;
  z-index: 950;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  min-height: 4rem;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 1rem 0.55rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.9);
  color: #fff;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 0 4px rgba(242, 238, 24, 0.16);
  transform: translateY(-4px);
}

.whatsapp-float-icon {
  display: grid;
  width: 2.9rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  aspect-ratio: 1;
  place-items: center;
}

.whatsapp-float-icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.whatsapp-float-copy {
  display: grid;
  line-height: 1.1;
}

.whatsapp-float-copy small {
  margin-bottom: 0.18rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.whatsapp-float-copy strong {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.whatsapp-float > i {
  position: absolute;
  top: 0.1rem;
  right: 0.15rem;
  width: 0.65rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #25d366;
  aspect-ratio: 1;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.42);
  animation: whatsapp-ping 2s infinite;
}

@keyframes whatsapp-ping {
  70% { box-shadow: 0 0 0 0.7rem rgba(37, 211, 102, 0); }
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
    min-height: 3.5rem;
    padding: 0.45rem;
  }

  .whatsapp-float-icon {
    width: 2.65rem;
  }

  .whatsapp-float-copy {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}


.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}

.site-header {
  z-index: 1000;
}

.hero-grain {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 65%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1.5px);
  background-size: 7px 7px, 11px 11px;
  mix-blend-mode: soft-light;
  opacity: 0.38;
  pointer-events: none;
}

.manifesto-copy .eyebrow span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.58rem;
}

.manifesto-copy .eyebrow::before {
  display: none;
}

.chapter-rail {
  position: fixed;
  z-index: 80;
  top: 50%;
  left: 0.8rem;
  display: grid;
  gap: 0.45rem;
  padding: 0.6rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.72);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
}

.chapter-rail a {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.5rem;
  font-weight: 800;
  transition: 200ms ease;
}

.chapter-rail a:hover,
.chapter-rail a[aria-current="location"] {
  background: var(--gold);
  color: var(--ink);
}

.manifesto-section {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding-block: clamp(7rem, 12vw, 12rem);
  background: var(--paper);
}

.manifesto-section::before {
  position: absolute;
  top: 12%;
  right: -10%;
  width: 48vw;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  filter: blur(1px);
  aspect-ratio: 1;
}

.manifesto-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.manifesto-copy h2 {
  font-size: clamp(4rem, 8vw, 8rem);
}

.manifesto-copy h2 em {
  color: var(--orange);
  font-style: normal;
  -webkit-text-stroke: 1px var(--orange);
}

.manifesto-copy > p:not(.eyebrow) {
  max-width: 510px;
  color: #4f4b44;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.manifesto-copy .text-link {
  display: inline-block;
  margin-top: 1.5rem;
}

.manifesto-collage {
  position: relative;
  min-height: 650px;
}

.manifesto-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 8px solid var(--cream);
  background: var(--ink);
  box-shadow: 0 30px 80px rgba(9, 9, 9, 0.24);
}

.manifesto-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.manifesto-photo:hover img {
  filter: saturate(1.2);
  transform: scale(1.04);
}

.manifesto-photo figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.7rem;
  padding: 0.35rem 0.5rem;
  background: var(--gold);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.manifesto-photo-main {
  z-index: 1;
  top: 2rem;
  left: 0;
  width: 64%;
  height: 570px;
}

.manifesto-photo-side {
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 390px;
}

.manifesto-seal {
  position: absolute;
  z-index: 3;
  top: 4%;
  right: 2%;
  display: grid;
  width: 9rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 0.9;
  text-align: center;
  aspect-ratio: 1;
  place-content: center;
  transform: rotate(10deg);
}

.manifesto-seal span {
  display: block;
  font-size: 2.4rem;
}

.manifesto-runner {
  position: absolute;
  z-index: 1;
  bottom: -0.12em;
  left: -4vw;
  display: flex;
  width: max-content;
  gap: 0.3em;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(6rem, 13vw, 14rem);
  font-weight: 700;
  line-height: 0.75;
  -webkit-text-stroke: 1px rgba(9, 9, 9, 0.14);
  white-space: nowrap;
}

.manifesto-runner i {
  color: rgba(9, 9, 9, 0.08);
  font-style: normal;
}

.section-dark {
  position: relative;
  background:
    linear-gradient(135deg, rgba(242, 238, 24, 0.035), transparent 40%),
    var(--ink);
}

.section-dark::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 60px, var(--orange) 60px 120px, transparent 120px 180px);
  content: "";
}

.show-card {
  position: relative;
  padding-inline: 1.2rem;
  border-radius: 0.8rem;
}

.show-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.96);
  transition: 250ms ease;
}

.show-card > * {
  position: relative;
  z-index: 1;
}

.show-card:hover {
  color: var(--ink);
}

.show-card:hover::before {
  opacity: 1;
  transform: none;
}

.show-card:hover .show-info p,
.show-card:hover .show-info span,
.show-card:hover .show-date span {
  color: rgba(9, 9, 9, 0.65);
}

.radio-band {
  position: relative;
  z-index: 4;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.about-section::after {
  position: absolute;
  z-index: 0;
  top: 8%;
  right: -0.05em;
  color: rgba(9, 9, 9, 0.045);
  content: "04";
  font-family: var(--display);
  font-size: clamp(14rem, 34vw, 34rem);
  font-weight: 700;
  line-height: 0.7;
}

.about-grid {
  position: relative;
  z-index: 1;
}

.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(9, 9, 9, 0.06) 50%, transparent 50.2%),
    #d9d2c5;
  background-size: 12rem 100%;
}

.gallery-tile {
  border-radius: 0.75rem;
}

[data-parallax] {
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0) rotate(var(--tilt, 0deg));
  will-change: transform;
}

@media (max-width: 1100px) {

  .manifesto-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    position: fixed;
    top: 0.95rem;
    right: 1rem;
    display: grid;
    width: 2.9rem;
    height: 2.9rem;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: rgba(9, 9, 9, 0.28);
    backdrop-filter: blur(8px);
  }

  .menu-toggle > span:not(.screen-reader-text) {
    display: none;
  }

  .menu-toggle::after {
    color: #fff;
    content: "MENU";
    font-family: var(--display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .chapter-rail {
    display: none;
  }

  .manifesto-section {
    min-height: auto;
  }

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

  .manifesto-collage {
    width: min(100%, 650px);
    min-height: 620px;
  }
}

@media (max-width: 600px) {
  .site-header {
    top: 0;
    display: block;
  }

  .site-header .header-inner {
    position: relative;
    z-index: 2;
    min-height: 4.8rem;
    visibility: visible;
    opacity: 1;
  }

  .manifesto-section {
    padding-bottom: 8rem;
  }

  .manifesto-section::before {
    top: 38%;
    right: -45%;
    width: 110vw;
  }

  .manifesto-copy h2 {
    font-size: clamp(3.8rem, 18vw, 5.2rem);
  }

  .manifesto-collage {
    min-height: 500px;
  }

  .manifesto-photo {
    border-width: 5px;
  }

  .manifesto-photo-main {
    width: 75%;
    height: 430px;
  }

  .manifesto-photo-side {
    width: 52%;
    height: 280px;
  }

  .manifesto-seal {
    top: 0;
    width: 6.5rem;
    font-size: 0.72rem;
  }

  .manifesto-seal span {
    font-size: 1.75rem;
  }
}


.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35));
  content: "";
}

.hero-slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.78) contrast(1.05);
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.09);
  transition: transform 8s linear, filter 900ms ease;
}

.hero-slide:nth-child(2) img {
  object-position: center 42%;
}

.hero-slide:nth-child(3) img {
  object-position: center 35%;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-slide.is-active img {
  filter: saturate(0.94) contrast(1.08);
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.02);
}

.hero.is-changing .hero-copy h1,
.hero.is-changing .hero-copy .hero-lead,
.hero.is-changing .hero-copy .eyebrow b {
  opacity: 0;
  transform: translateY(0.6rem);
}

@keyframes hero-slide-progress {
  to { transform: scaleX(1); }
}


.menu-toggle {
  position: fixed;
  z-index: 1100;
  top: 0.95rem;
  right: 1rem;
}

@media (min-width: 901px) {
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
  }

  .menu-toggle::after {
    display: none;
  }

  .menu-toggle > .menu-toggle-label {
    display: block;
    color: #fff;
    font-family: var(--display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}

@media (max-width: 600px) {

  .hero-slide img,
  .hero-slide.is-active img {
    object-position: center 35%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide img,
  .hero-copy h1,
  .hero-copy .hero-lead,
  .hero-copy .eyebrow b {
    transition: none;
  }
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
  overflow: hidden;
  background: #050505;
}

.hero-scrim {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 46%, rgba(0, 0, 0, 0.22) 78%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 38%, rgba(0, 0, 0, 0.82));
}

.hero-copy {
  display: flex;
  flex-direction: column;
  max-width: 620px;
}

.hero-copy .eyebrow {
  flex-wrap: wrap;
  row-gap: 0.4rem;
  margin: 0 0 1.2rem;
  color: var(--gold);
}

.hero-copy .eyebrow span {
  display: inline-grid;
  flex: none;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.58rem;
}

.hero-copy .eyebrow::before {
  display: none;
}

.hero-copy h1 {
  min-height: 3.7em;
  margin: 0 0 1.25rem;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.14;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero-copy .hero-lead {
  display: -webkit-box;
  min-height: 4.85em;
  margin: 0 0 1.75rem;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hero-copy .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 2.1rem;
}

.hero-copy .hero-facts {
  display: grid;
  max-width: 480px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-copy .hero-facts div {
  padding-right: 1rem;
}

.hero-copy .hero-facts div + div {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-copy .hero-facts dt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy .hero-facts dd {
  margin: 0.2rem 0 0;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

@keyframes hero-scroll-cue {
  50% { transform: translate(-50%, 0.65rem); opacity: 0.2; }
}

@media (max-width: 1100px) {
  .hero-copy h1 {
    font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  }
}

@media (max-width: 900px) {

  .hero-copy {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-copy h1 {
    min-height: 3.3em;
    font-size: clamp(2.1rem, 9vw, 2.65rem);
    line-height: 1.16;
  }

  .hero-copy .hero-lead {
    min-height: 4.5em;
    font-size: 0.95rem;
  }

  .hero-copy .hero-facts {
    max-width: 100%;
  }
}

/* ============================================================
   Hero: layout em coluna (fundo / texto / nav de slides), tudo
   em fluxo normal dentro de uma altura travada em 100svh — a
   nav de slides nunca mais fica flutuando por cima do texto.
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #000;
  color: #fff;
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-height: 0;
  padding-block: 6rem 1rem;
}

.hero-slide-nav {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2rem;
  margin-top: auto;
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-slide-nav button {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  padding: 0 0 0.6rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: none;
  color: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  text-align: left;
  transition: color 220ms ease;
}

.hero-slide-nav button span {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-slide-nav button b {
  max-width: 0;
  overflow: hidden;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 220ms ease, max-width 220ms ease;
}

.hero-slide-nav button i {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-slide-nav button:hover,
.hero-slide-nav button.is-active {
  color: #fff;
}

.hero-slide-nav button.is-active b {
  max-width: 12rem;
  opacity: 1;
}

.hero-slide-nav button.is-active i {
  animation: hero-slide-progress 6.5s linear forwards;
}

.hero-scroll {
  position: absolute;
  z-index: 4;
  right: max(1.5rem, calc((100vw - 1240px) / 2));
  bottom: 8.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;
  width: 1.6rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.hero-scroll i::after {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translateX(-50%);
  animation: hero-scroll-cue 1.8s ease-in-out infinite;
}

@media (max-width: 900px) {
  .hero-inner {
    padding-block: 5rem 0.5rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .hero-slide-nav {
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .hero-copy h1 {
    min-height: 3.3em;
    font-size: clamp(2.1rem, 9vw, 2.65rem);
    line-height: 1.16;
  }

  .hero-copy .hero-lead {
    min-height: 4.5em;
    font-size: 0.95rem;
  }

  .hero-copy .hero-facts {
    max-width: 100%;
  }

  .hero-slide-nav {
    gap: 0.9rem;
    padding-bottom: 1.4rem;
  }

  .hero-slide-nav button span {
    font-size: 0.72rem;
  }

  .hero-slide-nav button b {
    font-size: 0.56rem;
  }

  .hero-slide-nav button.is-active b {
    max-width: 7rem;
  }
}
