:root {
  --ink: #0b0b0b;
  --paper: #f5f0e8;
  --muted: #b8afa2;
  --white: #fffdf9;
  --acid: #d8ff37;
  --red: #e3362e;
  --line: rgba(245, 240, 232, 0.18);
  --dark-line: rgba(11, 11, 11, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: overlay;
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(216, 255, 55, 0.7);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width 180ms ease, height 180ms ease, opacity 180ms ease, border-color 180ms ease, background 180ms ease;
  background:
    radial-gradient(circle, rgba(216, 255, 55, 0.2), transparent 62%),
    rgba(11, 11, 11, 0.22);
  box-shadow: 0 0 28px rgba(216, 255, 55, 0.18);
  backdrop-filter: blur(4px);
}

.cursor::before {
  content: "";
  position: absolute;
  inset: 7px;
  background: var(--paper);
  mask: url("../personal-hotspot/images/logotribo_site.svg") center / contain no-repeat;
  -webkit-mask: url("../personal-hotspot/images/logotribo_site.svg") center / contain no-repeat;
  filter: drop-shadow(0 0 8px rgba(216, 255, 55, 0.35));
}

.cursor.is-active {
  opacity: 1;
}

.cursor.is-link {
  width: 56px;
  height: 56px;
  border-color: var(--white);
  background:
    radial-gradient(circle, rgba(216, 255, 55, 0.34), transparent 64%),
    rgba(11, 11, 11, 0.36);
}

.cursor.is-link::before {
  inset: 11px;
  background: var(--acid);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--white);
  mix-blend-mode: difference;
  transition: padding 260ms ease, background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  margin: 12px clamp(12px, 2vw, 28px) 0;
  left: 0;
  right: 0;
  padding: 12px clamp(16px, 3vw, 34px);
  border: 1px solid rgba(245, 240, 232, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.9), rgba(11, 11, 11, 0.72)),
    radial-gradient(circle at 14% 50%, rgba(216, 255, 55, 0.16), transparent 28%);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px) saturate(1.15);
  mix-blend-mode: normal;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.brand img {
  width: 42px;
  filter: invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.social-rail {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  top: 50%;
  z-index: 29;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.social-rail a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 240, 232, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(11, 11, 11, 0.78), rgba(11, 11, 11, 0.46)),
    radial-gradient(circle at 35% 20%, rgba(216, 255, 55, 0.16), transparent 45%);
  color: var(--paper);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, border-color 220ms ease, color 220ms ease, background 220ms ease;
}

.social-rail a:hover,
.social-rail a:focus-visible {
  border-color: rgba(216, 255, 55, 0.72);
  color: var(--acid);
  outline: none;
  transform: translateX(-4px);
}

.social-rail svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: 130px clamp(18px, 4vw, 56px) 42px;
  overflow: hidden;
}

.hero-media,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.04);
  animation: imageDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.92), rgba(11, 11, 11, 0.48) 44%, rgba(11, 11, 11, 0.2)),
    linear-gradient(0deg, rgba(11, 11, 11, 0.86), rgba(11, 11, 11, 0.1) 42%);
}

.hero-grid {
  z-index: -1;
  background-image:
    linear-gradient(rgba(245, 240, 232, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.09) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero-content {
  width: min(980px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-size: clamp(78px, 10vw, 235px);
  line-height: 0.78;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title span {
  color: transparent;
  -webkit-text-stroke: 2px var(--paper);
  text-stroke: 2px var(--paper);
}

.hero-copy {
  max-width: 620px;
  margin: 34px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--paper);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
}

.next-gig {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 42px;
  width: min(330px, calc(100% - 36px));
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.next-gig span,
.gig-item time,
.contact-line span,
.members span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.next-gig strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.1;
}

.scroll-cue {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 240, 232, 0.55);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 54px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  animation: pulseLine 1.6s ease-in-out infinite;
}

.section {
  padding: clamp(86px, 12vw, 160px) clamp(18px, 4vw, 56px);
}

.manifesto {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding-bottom: clamp(112px, 13vw, 172px);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(216, 255, 55, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(11, 11, 11, 0.92), rgba(11, 11, 11, 0.54) 48%, rgba(11, 11, 11, 0.9)),
    linear-gradient(0deg, rgba(11, 11, 11, 0.94), rgba(11, 11, 11, 0.26) 48%, rgba(11, 11, 11, 0.8));
  pointer-events: none;
}

.manifesto-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.manifesto .section-kicker {
  max-width: none;
  margin: 0 0 16px;
  color: var(--acid);
}

.manifesto-copy {
  position: absolute;
  left: 50%;
  bottom: clamp(124px, 15vh, 178px);
  width: min(760px, calc(100% - 36px));
  max-width: 760px;
  margin: 0;
  padding-left: 34px;
  transform: translateX(-50%) !important;
}

.manifesto-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 42px;
  height: 64px;
  width: 2px;
  background: linear-gradient(180deg, var(--acid), rgba(227, 54, 46, 0.72), transparent);
  box-shadow: 0 0 28px rgba(216, 255, 55, 0.28);
}

.manifesto-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 253, 249, 0.9);
  font-size: 16px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: pretty;
  text-shadow:
    0 2px 1px rgba(0, 0, 0, 0.5),
    0 20px 70px rgba(0, 0, 0, 0.78),
    0 0 32px rgba(216, 255, 55, 0.08);
}

.marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: calc(100% + 112px);
  margin: 0 -56px;
  border-block: 1px solid rgba(245, 240, 232, 0.24);
  color: var(--paper);
  background: rgba(11, 11, 11, 0.1);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.marquee div {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee span {
  padding: 14px 28px;
  color: rgba(245, 240, 232, 0.78);
  font-size: clamp(14px, 2vw, 28px);
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.band {
  background: #111;
}

.split {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

h2 {
  margin: 0;
  font-size: clamp(42px, 7vw, 94px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
}

.band-photo {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  background: #222;
}

.band-photo::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.band-photo img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 800ms ease;
}

.band-photo:hover img {
  transform: scale(1.04);
}

.members {
  width: min(var(--max), 100%);
  margin: clamp(44px, 7vw, 86px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.members article {
  min-height: 170px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 220ms ease, color 220ms ease;
  cursor: pointer;
}

.members article:hover,
.members article:focus-visible {
  background: var(--acid);
  color: var(--ink);
  outline: none;
}

.members article:hover span,
.members article:focus-visible span {
  color: rgba(11, 11, 11, 0.62);
}

.members h3 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1;
}

.member-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 24% 26%, rgba(216, 255, 55, 0.16), transparent 30%),
    rgba(3, 3, 3, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
  backdrop-filter: blur(18px);
}

.member-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.member-modal-panel {
  position: relative;
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid rgba(245, 240, 232, 0.18);
  background:
    linear-gradient(135deg, rgba(18, 18, 18, 0.94), rgba(10, 10, 10, 0.82)),
    radial-gradient(circle at 12% 100%, rgba(227, 54, 46, 0.18), transparent 34%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.55);
  transform: translateY(18px) scale(0.98);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}

.member-modal.is-open .member-modal-panel {
  transform: translateY(0) scale(1);
}

.member-modal-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(216, 255, 55, 0.12);
  pointer-events: none;
}

.member-modal-close {
  position: absolute;
  top: clamp(22px, 4vw, 54px);
  right: clamp(22px, 4vw, 54px);
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(245, 240, 232, 0.22);
  border-radius: 50%;
  background: rgba(11, 11, 11, 0.68);
  color: var(--paper);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.member-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 360px;
  overflow: hidden;
  background-image: linear-gradient(rgba(11, 11, 11, 0.05), rgba(11, 11, 11, 0.48)), url("../personal-hotspot/images/tribo-stage-2026.png");
  background-size: 310%;
  background-position: var(--portrait-position, 50% 34%);
  filter: contrast(1.08) saturate(0.95);
}

.member-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 36%, rgba(216, 255, 55, 0.42) 37% 39%, transparent 40%),
    linear-gradient(73deg, transparent 52%, rgba(227, 54, 46, 0.36) 53% 55%, transparent 56%),
    radial-gradient(circle at 46% 30%, rgba(255, 253, 249, 0.18) 0 3px, transparent 4px),
    radial-gradient(circle at 58% 33%, rgba(255, 253, 249, 0.14) 0 2px, transparent 3px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.member-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, transparent 0 24%, rgba(11, 11, 11, 0.2) 38%, rgba(11, 11, 11, 0.78) 100%),
    linear-gradient(0deg, rgba(11, 11, 11, 0.78), transparent 52%);
  pointer-events: none;
}

.member-portrait.patricia {
  --portrait-position: 49% 24%;
}

.member-portrait.rui {
  --portrait-position: 72% 23%;
}

.member-portrait.edgar {
  --portrait-position: 51% 49%;
}

.member-portrait.rodrigo {
  --portrait-position: 28% 24%;
}

.member-modal-copy {
  position: relative;
  z-index: 1;
}

.member-role {
  display: block;
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.member-modal-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(42px, 7vw, 86px);
}

.member-war-name {
  margin: 16px 0 0;
  color: rgba(245, 240, 232, 0.78);
  font-size: 16px;
}

.member-modal-copy dl {
  display: grid;
  gap: 22px;
  margin: 34px 0 0;
}

.member-modal-copy dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.member-modal-copy dd {
  margin: 8px 0 0;
  color: rgba(255, 253, 249, 0.9);
  font-size: 16px;
  line-height: 1.25;
}

.experience {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  background: var(--ink);
  overflow: hidden;
}

.experience-media {
  position: absolute;
  inset: 0;
}

.experience-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.86), rgba(11, 11, 11, 0.24) 58%, rgba(11, 11, 11, 0.88));
}

.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
}

.experience-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin-left: auto;
  padding: clamp(28px, 5vw, 64px);
  background: rgba(11, 11, 11, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.experience-panel p {
  margin: 24px 0 0;
}

.hero-copy,
.lead,
.experience-panel p {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 253, 249, 0.9);
  font-size: 16px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: pretty;
  text-shadow:
    0 2px 1px rgba(0, 0, 0, 0.5),
    0 20px 70px rgba(0, 0, 0, 0.78),
    0 0 32px rgba(216, 255, 55, 0.08);
}

.hero-copy::before,
.lead::before,
.experience-panel p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  height: 42px;
  width: 2px;
  background: linear-gradient(180deg, var(--acid), rgba(227, 54, 46, 0.72), transparent);
  box-shadow: 0 0 28px rgba(216, 255, 55, 0.22);
}

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

.section-heading,
.gig-list,
.contact {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.gigs .section-kicker {
  color: var(--red);
}

.gig-list {
  margin-top: clamp(36px, 7vw, 80px);
  border-top: 1px solid var(--dark-line);
}

.gig-list-past {
  margin-top: 22px;
}

.gig-item {
  display: grid;
  grid-template-columns: minmax(120px, 0.3fr) 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--dark-line);
}

.gig-item.is-past {
  color: rgba(11, 11, 11, 0.58);
}

.gig-item.is-past h3 {
  font-size: clamp(22px, 3vw, 38px);
}

.gig-item time {
  color: rgba(11, 11, 11, 0.55);
}

.gig-item h3 {
  margin: 0;
  font-size: clamp(24px, 4vw, 54px);
  line-height: 1;
}

.gig-item p {
  margin: 8px 0 0;
  color: rgba(11, 11, 11, 0.62);
  font-size: 16px;
}

.gig-badge {
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gig-empty {
  padding: 26px 0;
  border-bottom: 1px solid var(--dark-line);
  color: rgba(11, 11, 11, 0.62);
  font-size: 18px;
}

.gig-history-toggle {
  margin-top: 28px;
  border-color: rgba(11, 11, 11, 0.3);
  color: var(--ink);
}

.gig-history-toggle:hover,
.gig-history-toggle:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.gig-history {
  width: min(var(--max), 100%);
  margin: clamp(42px, 7vw, 86px) auto 0;
}

.gig-history[hidden] {
  display: none;
}

.gig-history-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--dark-line);
  padding-top: 24px;
}

.gig-history-heading span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gig-history-heading strong {
  font-size: clamp(26px, 4vw, 52px);
  line-height: 1;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(42px, 8vw, 110px);
  align-items: end;
}

.contact-actions {
  border-top: 1px solid var(--line);
}

.contact-line {
  display: block;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  word-break: break-word;
  transition: color 220ms ease;
}

.contact-line:hover strong,
.contact-line:focus-visible strong {
  color: var(--acid);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: rgba(245, 240, 232, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes imageDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.6%, 1.2%, 0);
  }
}

@keyframes pulseLine {
  0%,
  100% {
    transform: scaleX(0.35);
    opacity: 0.4;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

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

@media (max-width: 900px) {
  .cursor {
    display: none;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 32;
  }

  .site-header.is-scrolled {
    margin: 10px 12px 0;
    padding: 10px 12px 10px 16px;
  }

  .social-rail {
    right: 12px;
    gap: 8px;
  }

  .social-rail a {
    width: 38px;
    height: 38px;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 31;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 80px 28px;
    background: rgba(11, 11, 11, 0.96);
    color: var(--paper);
    font-size: clamp(34px, 12vw, 72px);
    line-height: 0.92;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    padding-bottom: 130px;
  }

  .hero-media img {
    object-position: 52% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(11, 11, 11, 0.92), rgba(11, 11, 11, 0.18) 60%),
      linear-gradient(90deg, rgba(11, 11, 11, 0.82), rgba(11, 11, 11, 0.1));
  }

  .next-gig {
    left: 18px;
    right: 18px;
    bottom: 34px;
  }

  .scroll-cue {
    display: none;
  }

  .split,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .experience {
    min-height: 680px;
    align-items: end;
  }

  .experience-panel {
    margin-left: 0;
  }

  .gig-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gig-badge {
    width: max-content;
  }
}

@media (max-width: 560px) {
  .brand span {
    display: none;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-title {
    font-size: clamp(74px, 23vw, 126px);
  }

  .button {
    width: 100%;
  }

  .manifesto-copy p {
    font-size: 14px;
    line-height: 1.22;
  }

  .manifesto-copy {
    bottom: 104px;
    padding-left: 24px;
  }

  .manifesto-copy::before {
    top: 38px;
    height: 70px;
  }

  .marquee {
    width: calc(100% + 36px);
    margin-inline: -18px;
  }

  .marquee span {
    padding: 12px 20px;
  }

  .band-photo,
  .band-photo img {
    min-height: 340px;
  }

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

  .members article {
    min-height: 136px;
  }

  .member-modal {
    padding: 14px;
  }

  .member-modal-panel {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 28px);
    overflow-y: auto;
  }

  .member-portrait {
    min-height: 280px;
  }

  .member-modal-close {
    top: 22px;
    right: 22px;
  }

  .experience-panel {
    padding: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@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;
  }
}
