:root {
  --ink: #09090a;
  --ink-soft: #151517;
  --paper: #f1ede6;
  --paper-bright: #fffdf8;
  --red: #ef1734;
  --red-dark: #bd0922;
  --muted: #8f8b86;
  --line: rgba(9, 9, 10, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --gutter: clamp(1.25rem, 4vw, 4.75rem);
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
}

body::selection {
  background: var(--red);
  color: white;
}

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

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

button,
summary {
  font: inherit;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin: 0;
}

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  background: var(--paper-bright);
  color: var(--ink);
  font-weight: 800;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -5rem;
  transition: top 160ms ease;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.icon-defs {
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}

:focus-visible {
  outline: 3px solid #ffcf00;
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  color: white;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 1.2rem var(--gutter);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
  z-index: 100;
}

.site-header.is-scrolled {
  backdrop-filter: blur(16px);
  background: rgba(9, 9, 10, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.8rem;
  padding-top: 0.8rem;
}

.brand {
  align-items: center;
  display: inline-flex;
  justify-self: start;
  width: max-content;
}

.brand-logo {
  height: auto;
  width: clamp(7.25rem, 10vw, 9rem);
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(1.35rem, 2.4vw, 2.8rem);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  position: relative;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a::after {
  background: var(--red);
  bottom: -0.55rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.site-nav a:hover {
  color: white;
}

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

.header-cta {
  justify-self: end;
}

.button {
  align-items: center;
  background: var(--red);
  border: 1px solid var(--red);
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 1.6rem;
  justify-content: space-between;
  letter-spacing: 0.08em;
  min-height: 3.65rem;
  padding: 0.9rem 1.25rem;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: white;
  color: var(--ink);
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
}

.menu-toggle {
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  display: none;
  height: 2.8rem;
  padding: 0;
  width: 2.8rem;
}

.menu-toggle span:not(.sr-only) {
  background: currentColor;
  display: block;
  height: 2px;
  margin: 0.42rem auto;
  transition: transform 180ms ease;
  width: 1.55rem;
}

.hero {
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(28rem, 1.12fr);
  min-height: min(58rem, 100svh);
  overflow: hidden;
  padding: clamp(8.5rem, 13vh, 10.5rem) var(--gutter) 3rem;
  position: relative;
}

.hero::before {
  background: var(--red);
  content: "";
  height: 42rem;
  opacity: 0.9;
  position: absolute;
  right: -28rem;
  top: -24rem;
  transform: rotate(18deg);
  width: 60rem;
}

.hero::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.025), transparent);
  content: "";
  inset: 0;
  pointer-events: none;
  transform: translateX(-100%);
  animation: light-sweep 8s 2s ease-in-out infinite;
}

.hero-grain {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%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='.18'/%3E%3C/svg%3E");
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  position: absolute;
}

.hero-copy {
  align-self: center;
  max-width: 46rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  font-size: 0.7rem;
  font-weight: 900;
  gap: 0.7rem;
  letter-spacing: 0.14em;
  margin-bottom: 1.35rem;
  text-transform: uppercase;
}

.eyebrow span {
  background: var(--red);
  height: 0.55rem;
  transform: rotate(45deg);
  width: 0.55rem;
}

.hero h1,
.manifesto h2,
.events h2,
.repertoire h2,
.contact h2,
.not-found h1 {
  font-family: var(--display);
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3.7rem, 7.2vw, 8.3rem);
  margin-left: -0.06em;
}

.hero h1 em,
.events h2 em,
.repertoire h2 em,
.contact em,
.not-found h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  margin-top: 2rem;
  max-width: 37rem;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.text-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding-bottom: 0.35rem;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease;
}

.text-link:hover {
  border-color: var(--red);
  color: white;
}

.hero-visual {
  align-self: center;
  height: min(64vh, 41rem);
  margin-left: clamp(-4rem, -4vw, -1.4rem);
  position: relative;
  z-index: 1;
}

.hero-photo {
  background-image: linear-gradient(90deg, rgba(9, 9, 10, 0.4), transparent 30%), url("assets/hero-live.webp");
  background-position: center;
  background-size: cover;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  filter: contrast(1.08) saturate(0.82);
  height: 100%;
  position: relative;
  width: 100%;
}

.hero-visual::before {
  border: 1px solid var(--red);
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  content: "";
  inset: -0.85rem 0.85rem 0.85rem -0.85rem;
  position: absolute;
}

.live-stamp {
  align-items: center;
  background: var(--red);
  border-radius: 50%;
  bottom: -1.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  height: 7.5rem;
  justify-content: center;
  position: absolute;
  right: clamp(1rem, 6vw, 6rem);
  transform: rotate(8deg);
  width: 7.5rem;
}

.live-stamp span {
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.live-stamp strong {
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
}

.sound-bars {
  align-items: center;
  bottom: 1.25rem;
  display: flex;
  gap: 0.3rem;
  left: 1.9rem;
  position: absolute;
}

.sound-bars i {
  animation: sound 1.2s ease-in-out infinite alternate;
  background: white;
  display: block;
  height: 2.5rem;
  transform-origin: center;
  width: 3px;
}

.sound-bars i:nth-child(2n) { animation-delay: -0.7s; }
.sound-bars i:nth-child(3n) { animation-delay: -0.25s; }
.sound-bars i:nth-child(4n) { animation-delay: -0.95s; }

.hero-proof {
  align-items: end;
  bottom: 2.2rem;
  display: grid;
  gap: clamp(1rem, 3vw, 4rem);
  grid-template-columns: repeat(3, auto);
  left: var(--gutter);
  position: absolute;
  z-index: 3;
}

.hero-proof div {
  display: grid;
}

.hero-proof strong {
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
  text-transform: uppercase;
}

.hero-index {
  bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  position: absolute;
  right: var(--gutter);
  z-index: 3;
}

.marquee {
  background: var(--red);
  color: white;
  overflow: hidden;
  padding: 0.72rem 0;
  transform: rotate(-1.2deg) scale(1.02);
  transform-origin: center;
}

.marquee-track {
  align-items: center;
  animation: marquee var(--marquee-duration, 28s) linear infinite;
  display: flex;
  will-change: transform;
  width: max-content;
}

.marquee-group {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 1.3rem;
  padding-right: 1.3rem;
  width: max-content;
}

.marquee span {
  font-family: var(--display);
  font-size: clamp(0.9rem, 1.4vw, 1.25rem);
  letter-spacing: 0.04em;
}

.marquee i {
  font-size: 0.8rem;
  font-style: normal;
}

.section {
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
}

.section-label {
  align-items: center;
  display: flex;
  font-size: 0.68rem;
  font-weight: 900;
  gap: 0.65rem;
  letter-spacing: 0.13em;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
  text-transform: uppercase;
}

.section-label span {
  align-items: center;
  background: var(--red);
  color: white;
  display: flex;
  height: 1.7rem;
  justify-content: center;
  width: 1.7rem;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.66);
}

.manifesto {
  padding-bottom: 0;
}

.manifesto-grid {
  display: grid;
  gap: clamp(4rem, 10vw, 11rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
}

.manifesto-title h2 {
  font-size: clamp(3.6rem, 7.6vw, 8.1rem);
}

.manifesto-title > p {
  border-left: 5px solid var(--red);
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.38rem);
  line-height: 1.12;
  margin-left: 0.25rem;
  margin-top: 2rem;
  max-width: 24rem;
  padding-left: 1rem;
  text-transform: uppercase;
}

.manifesto-copy .lead {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.manifesto-copy > p:nth-child(2) {
  color: #5e5a56;
  margin-top: 1.35rem;
  max-width: 39rem;
}

.feature-list {
  border-top: 1px solid var(--line);
  margin-top: 2.7rem;
}

.feature-list > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 2rem 1fr;
  padding: 1.2rem 0;
}

.feature-bullet {
  background: var(--red);
  display: block;
  height: 0.52rem;
  margin-top: 0.34rem;
  width: 0.52rem;
}

.feature-list p {
  color: #6b6762;
  display: grid;
  font-size: 0.88rem;
}

.feature-list strong {
  color: var(--ink);
  font-size: 0.97rem;
}

.lineup {
  border-top: 2px solid var(--ink);
  margin-top: clamp(6rem, 10vw, 10rem);
  padding-top: clamp(2rem, 4vw, 4rem);
}

.lineup-head {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.lineup-head h3 {
  font-family: var(--display);
  font-size: clamp(2.9rem, 6.3vw, 6.3rem);
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

.lineup-head p {
  align-items: center;
  display: flex;
  gap: 1rem;
  padding-bottom: 0.25rem;
  text-transform: uppercase;
}

.lineup-head p strong {
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(3.6rem, 6.3vw, 6.3rem);
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.lineup-head p span {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.lineup-grid {
  background: var(--line);
  border: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.lineup-grid li {
  background: var(--paper-bright);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lineup-grid li:hover {
  background: var(--red);
  color: white;
  transform: translateY(-0.45rem);
}

.lineup-grid figure {
  aspect-ratio: 4 / 5;
  background: var(--ink);
  overflow: hidden;
}

.lineup-grid img {
  filter: contrast(1.04) saturate(0.9);
  height: 100%;
  object-fit: cover;
  transition: filter 260ms ease, transform 450ms cubic-bezier(0.2, 0.75, 0.25, 1);
  width: 100%;
}

.lineup-grid li:hover img {
  filter: contrast(1.08) saturate(1.08);
  transform: scale(1.035);
}

.member-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 9.25rem;
  padding: 1rem;
}

.member-instruments {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.member-instrument {
  align-items: center;
  border: 1px solid rgba(9, 9, 10, 0.28);
  color: var(--ink);
  display: inline-flex;
  height: 1.85rem;
  justify-content: center;
  position: relative;
  transition: border-color 180ms ease, color 180ms ease;
  width: 1.85rem;
}

.member-instrument svg {
  fill: none;
  height: 1.12rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 1.12rem;
}

.lineup-grid li:hover .member-instrument {
  border-color: rgba(255, 255, 255, 0.54);
  color: white;
}

.member-copy strong {
  font-family: var(--display);
  font-size: clamp(0.92rem, 1.15vw, 1.18rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-top: auto;
  text-transform: uppercase;
}

.member-copy small {
  color: #716c67;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 0.55rem;
  transition: color 180ms ease;
}

.lineup-grid li:hover small {
  color: rgba(255, 255, 255, 0.82);
}

.wide-photo {
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
  margin-top: clamp(5rem, 9vw, 9rem);
  max-height: 48rem;
  overflow: hidden;
  position: relative;
}

.wide-photo::after {
  background: linear-gradient(0deg, rgba(9, 9, 10, 0.85), transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
}

.wide-photo img {
  filter: contrast(1.08) saturate(0.7);
  height: min(60vw, 48rem);
  object-fit: cover;
  object-position: center 42%;
  width: 100%;
}

.wide-photo figcaption {
  align-items: end;
  bottom: clamp(1.5rem, 4vw, 4rem);
  color: white;
  display: flex;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.8rem);
  justify-content: space-between;
  left: var(--gutter);
  letter-spacing: -0.03em;
  position: absolute;
  right: var(--gutter);
  text-transform: uppercase;
  z-index: 2;
}

.wide-photo figcaption span:last-child {
  color: var(--red);
}

.events {
  background: var(--ink);
  color: white;
}

.events-head,
.repertoire-head {
  align-items: end;
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.55fr);
}

.events h2,
.repertoire h2 {
  font-size: clamp(3.35rem, 7.1vw, 7.2rem);
}

.events-head > p,
.repertoire-head > p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  max-width: 29rem;
  padding-bottom: 0.5rem;
}

.event-calendar {
  margin-top: clamp(4rem, 7vw, 7rem);
}

.event-empty {
  border-bottom: 1px solid var(--line-light);
  border-top: 2px solid rgba(255, 255, 255, 0.7);
  display: grid;
  gap: 0.55rem;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.event-empty strong {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.event-empty span {
  color: rgba(255, 255, 255, 0.54);
}

.event-year-group + .event-year-group {
  margin-top: clamp(3rem, 5vw, 5rem);
}

.event-year-head {
  align-items: end;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.event-year-head h3 {
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(2.45rem, 5.4vw, 5rem);
  letter-spacing: -0.045em;
  line-height: 0.8;
}

.event-year-head p {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.event-item {
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  gap: clamp(1rem, 2vw, 1.7rem);
  grid-template-columns: 4.6rem minmax(0, 1fr);
  min-height: 9.5rem;
  padding: 1.4rem clamp(1rem, 2.5vw, 2.5rem) 1.4rem 0;
  transition: background 180ms ease;
}

.event-item:nth-child(odd) {
  border-right: 1px solid var(--line-light);
}

.event-item:nth-child(even) {
  padding-left: clamp(1rem, 2.5vw, 2.5rem);
}

.event-item:hover {
  background: rgba(221, 31, 38, 0.055);
}

.event-date {
  border-right: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  padding-right: 1rem;
  text-align: center;
}

.event-date strong {
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.6vw, 3.3rem);
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.event-date span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-top: 0.5rem;
}

.event-kicker {
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  font-size: 0.78rem;
  font-weight: 850;
  gap: 0.65rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.event-type {
  border: 1px solid rgba(221, 31, 38, 0.62);
  color: #ff6c72;
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 0.23rem 0.38rem 0.2rem;
}

.event-item.is-private .event-type {
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.58);
}

.event-item.is-private .event-date strong {
  color: rgba(255, 255, 255, 0.68);
}

.event-main h4 {
  font-family: var(--display);
  font-size: clamp(1.18rem, 1.8vw, 1.6rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: uppercase;
}

.event-place {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.95rem;
  margin-top: 0.55rem;
}

.events-action {
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.events-action p {
  display: grid;
  gap: 0.35rem;
}

.events-action strong {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.events-action p span {
  color: rgba(255, 255, 255, 0.5);
}

.social-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding-bottom: 0.2rem;
  text-transform: uppercase;
}

.social-links a:hover {
  border-color: var(--red);
  color: white;
}

.repertoire {
  background: var(--paper-bright);
}

.repertoire-head > p {
  color: #5d5954;
}

.song-list {
  border-top: 2px solid var(--ink);
  margin-top: clamp(4rem, 7vw, 7rem);
}

.song-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 3rem minmax(15rem, 1.4fr) 1fr auto;
  min-height: 5rem;
  transition: background 170ms ease, padding 170ms ease;
}

.song-row:hover {
  background: var(--paper);
  padding-left: 1rem;
  padding-right: 1rem;
}

.song-row > span {
  color: var(--red);
  font-family: var(--display);
  font-size: 0.7rem;
}

.song-row strong {
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.song-row small {
  color: #6f6a65;
}

.song-row i {
  border: 1px solid var(--line);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.09em;
  padding: 0.28rem 0.42rem;
}

.more-songs {
  border-bottom: 1px solid var(--line);
}

.more-songs summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 0.875rem;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.1em;
  list-style: none;
  min-height: 4.5rem;
  text-transform: uppercase;
}

.more-songs summary::-webkit-details-marker {
  display: none;
}

.summary-open {
  display: none;
}

.more-songs[open] .summary-closed {
  display: none;
}

.more-songs[open] .summary-open {
  display: inline;
}

.summary-icon {
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.more-songs[open] .summary-icon {
  transform: rotate(45deg);
}

.repertoire-groups {
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: 1fr 1fr;
  padding: 1.5rem 0 clamp(3rem, 5vw, 5rem);
}

.repertoire-group-head {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.repertoire-group-head > span {
  color: var(--red);
  font-family: var(--display);
  font-size: 0.8rem;
  padding-top: 0.45rem;
}

.repertoire-group-head h3 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.repertoire-group-head p {
  color: #77716b;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  margin-top: 0.6rem;
  text-transform: uppercase;
}

.song-catalog {
  border-bottom: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.song-catalog li {
  align-items: baseline;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 0.8rem 0;
}

.song-catalog strong {
  font-size: 0.95rem;
  font-weight: 760;
}

.song-catalog span {
  color: #77716b;
  font-size: 0.82rem;
  text-align: right;
}

.moments {
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(24rem, 0.75fr);
  min-height: 43rem;
}

.moments-photo {
  min-height: 43rem;
  overflow: hidden;
  position: relative;
}

.moments-photo::after {
  background: linear-gradient(90deg, transparent 58%, var(--ink));
  content: "";
  inset: 0;
  position: absolute;
}

.moments-photo img {
  filter: contrast(1.08) saturate(0.88);
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.moments-copy {
  align-self: center;
  padding: 5rem var(--gutter) 5rem clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 2;
}

.moments-copy .section-label {
  margin-bottom: 3rem;
}

.moments blockquote {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.3vw, 3.15rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-transform: uppercase;
}

.contact {
  background: var(--red);
  color: var(--ink);
  padding: clamp(5.5rem, 9vw, 9rem) var(--gutter) 0;
}

.contact .section-label span {
  background: var(--ink);
}

.contact-top {
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.contact-top > p {
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.05;
  text-align: right;
  text-transform: uppercase;
}

.contact-top em {
  color: white;
}

.contact-main {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
  margin: clamp(3rem, 5vw, 5rem) 0 clamp(4rem, 7vw, 7rem);
}

.contact h2 {
  font-size: clamp(3.6rem, 9vw, 9.5rem);
}

.contact-arrow {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  font-size: clamp(2.2rem, 5vw, 5rem);
  height: clamp(6rem, 13vw, 11rem);
  justify-content: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  width: clamp(6rem, 13vw, 11rem);
}

.contact-arrow:hover {
  background: white;
  color: var(--red);
  transform: rotate(8deg) scale(1.04);
}

.contact-details {
  border-top: 1px solid rgba(9, 9, 10, 0.28);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-details > * {
  display: grid;
  padding: 1.5rem 1.5rem 2rem 0;
}

.contact-details > * + * {
  border-left: 1px solid rgba(9, 9, 10, 0.28);
  padding-left: 1.5rem;
}

.contact-details small {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: clamp(0.85rem, 1.5vw, 1.15rem);
  overflow-wrap: anywhere;
}

.contact-details a:hover strong {
  color: white;
}

.instagram-feed {
  background: var(--ink);
  color: white;
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
}

.instagram-head {
  align-items: end;
  display: grid;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.55fr);
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

.instagram-heading .section-label {
  margin-bottom: clamp(2.75rem, 4vw, 4.5rem);
}

.instagram-heading h2 {
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 7rem);
  letter-spacing: -0.015em;
  line-height: 1.04;
  text-transform: uppercase;
}

.instagram-heading em {
  color: var(--red);
  font-style: normal;
}

.instagram-intro {
  padding-bottom: 0.35rem;
}

.instagram-intro > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  max-width: 28rem;
}

.instagram-follow {
  margin-top: 2rem;
}

.instagram-grid {
  display: grid;
  gap: clamp(0.5rem, 1vw, 0.9rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.instagram-card,
.instagram-skeleton {
  aspect-ratio: 1;
  background: var(--ink-soft);
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.instagram-card {
  display: block;
  isolation: isolate;
}

.instagram-card::after {
  background: linear-gradient(180deg, transparent 42%, rgba(9, 9, 10, 0.92) 100%);
  content: "";
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
  transition: opacity 240ms ease;
  z-index: 1;
}

.instagram-card img {
  height: 100%;
  object-fit: cover;
  transition: filter 320ms ease, transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
  width: 100%;
}

.instagram-card:hover img,
.instagram-card:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.instagram-card:hover::after,
.instagram-card:focus-visible::after {
  opacity: 1;
}

.instagram-card-meta {
  align-items: end;
  bottom: 0;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr auto;
  left: 0;
  padding: clamp(1rem, 2vw, 1.5rem);
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 2;
}

.instagram-card-copy {
  min-width: 0;
}

.instagram-card-type {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.instagram-card-caption {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-size: clamp(0.72rem, 1.1vw, 0.9rem);
  font-weight: 750;
  line-height: 1.35;
  overflow: hidden;
}

.instagram-card-arrow {
  align-items: center;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  font-size: 1rem;
  height: 2.5rem;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  width: 2.5rem;
}

.instagram-card:hover .instagram-card-arrow,
.instagram-card:focus-visible .instagram-card-arrow {
  background: white;
  color: var(--ink);
  transform: rotate(8deg);
}

.instagram-skeleton {
  background: linear-gradient(110deg, var(--ink-soft) 18%, #242427 36%, var(--ink-soft) 54%);
  background-size: 200% 100%;
  animation: instagram-loading 1.4s linear infinite;
}

.instagram-fallback {
  align-items: center;
  border: 1px solid var(--line-light);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  grid-column: 1 / -1;
  justify-content: space-between;
  min-height: 10rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.instagram-fallback p {
  color: rgba(255, 255, 255, 0.62);
  max-width: 36rem;
}

.instagram-fallback a,
.instagram-noscript a {
  color: white;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35rem;
}

.instagram-noscript {
  border: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.62);
  padding: 1.5rem;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: white;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr 1fr auto;
  padding: 2.2rem var(--gutter);
}

.footer-brand {
  color: white;
}

.footer-brand .brand-logo {
  width: 10rem;
}

.site-footer > p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.footer-meta {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-meta small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.64rem;
}

.cookie-settings {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  font-size: 0.64rem;
  padding: 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2rem;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.cookie-settings:hover {
  color: white;
  text-decoration-color: currentColor;
}

.cookie-banner {
  align-items: center;
  background: var(--paper-bright);
  border: 1px solid rgba(9, 9, 10, 0.28);
  bottom: 1.25rem;
  box-shadow: 0 1.5rem 4rem rgba(9, 9, 10, 0.28);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  left: max(1.25rem, var(--gutter));
  max-width: 58rem;
  padding: 1.3rem;
  position: fixed;
  right: max(1.25rem, var(--gutter));
  z-index: 500;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-copy strong {
  display: block;
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.cookie-copy p {
  color: #5f5b56;
  font-size: 0.78rem;
  line-height: 1.45;
  max-width: 39rem;
}

.cookie-actions {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}

.cookie-actions .button {
  flex: 0 0 auto;
  gap: 0;
  min-height: 2.85rem;
  white-space: nowrap;
}

.cookie-button-secondary {
  background: transparent;
  border: 0;
  color: #5f5b56;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  padding: 0.7rem 0.45rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.cookie-button-secondary:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

body.dialog-open {
  overflow: hidden;
}

.booking-dialog {
  background: transparent;
  border: 0;
  color: var(--ink);
  margin: auto;
  max-height: calc(100dvh - 2rem);
  max-width: 72rem;
  padding: 0;
  width: min(calc(100% - 2rem), 72rem);
}

.booking-dialog::backdrop {
  backdrop-filter: blur(8px);
  background: rgba(9, 9, 10, 0.84);
}

.booking-shell {
  background: var(--paper-bright);
  display: grid;
  grid-template-columns: minmax(22rem, 0.84fr) minmax(0, 1.16fr);
  max-height: calc(100dvh - 2rem);
  overflow: auto;
  position: relative;
}

.booking-close {
  align-items: center;
  background: var(--red);
  border: 0;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  font-size: 1.65rem;
  height: 3rem;
  justify-content: center;
  line-height: 1;
  padding: 0 0 0.15rem;
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  width: 3rem;
  z-index: 2;
}

.booking-close:hover {
  background: white;
  color: var(--ink);
  transform: rotate(6deg);
}

.booking-intro {
  background: var(--ink);
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 40rem;
  padding: clamp(3.5rem, 5vw, 5rem) clamp(2rem, 4vw, 3.5rem) 2.5rem;
}

.booking-kicker {
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  display: flex;
  font-size: 0.68rem;
  font-weight: 900;
  gap: 0.65rem;
  letter-spacing: 0.12em;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.booking-kicker span {
  background: var(--red);
  height: 0.52rem;
  transform: rotate(45deg);
  width: 0.52rem;
}

.booking-intro h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 3.8vw, 4rem);
  letter-spacing: -0.065em;
  line-height: 0.84;
  margin-bottom: 2rem;
  max-width: 100%;
  text-transform: uppercase;
}

.booking-intro h2 em {
  color: var(--red);
  font-style: normal;
}

.booking-intro > p:not(.booking-kicker) {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  max-width: 27rem;
}

.booking-direct {
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.booking-direct p {
  display: grid;
  gap: 0.1rem;
}

.booking-direct small,
.booking-form label > span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.booking-direct a {
  font-size: 0.84rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.booking-direct a:hover {
  color: var(--red);
}

.booking-form {
  align-self: center;
  padding: clamp(4rem, 5vw, 5.5rem) clamp(2rem, 4vw, 4rem) 2.75rem;
}

.form-grid {
  display: grid;
  gap: 1.2rem 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-form label {
  display: grid;
  gap: 0.42rem;
}

.form-wide {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  appearance: none;
  background: var(--paper);
  border: 0;
  border-bottom: 1px solid rgba(9, 9, 10, 0.36);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  min-height: 3.2rem;
  padding: 0.7rem 0.8rem;
  transition: background 160ms ease, border-color 160ms ease;
  width: 100%;
}

.booking-form select {
  cursor: pointer;
}

.booking-form textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  background: white;
  border-color: var(--red);
  outline: 0;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #8f8b86;
  opacity: 1;
}

.form-submit-row {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 1.7rem;
  padding-top: 1.5rem;
}

.form-submit-row > p {
  color: #66625d;
  font-size: 0.68rem;
  line-height: 1.45;
  max-width: 18rem;
}

.form-submit-row .button {
  white-space: nowrap;
}

.form-submit-row .button:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.form-status {
  font-size: 0.78rem;
  font-weight: 800;
  min-height: 1.25rem;
  padding-top: 0.85rem;
}

.form-status.is-success {
  color: #087046;
}

.form-status.is-error {
  color: var(--red-dark);
}

.form-honey {
  height: 1px !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  width: 1px !important;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.not-found {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  min-height: 100svh;
  padding: var(--gutter);
}

.not-found main {
  margin: 0 auto;
  max-width: 72rem;
  width: 100%;
}

.not-found .brand {
  margin-bottom: clamp(4rem, 10vh, 8rem);
}

.not-found .brand-logo {
  width: clamp(9rem, 18vw, 13rem);
}

.not-found h1 {
  font-size: clamp(3.6rem, 10vw, 9rem);
}

.not-found main > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
  margin: 2rem 0;
  max-width: 32rem;
}

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

@keyframes sound {
  0% { transform: scaleY(0.25); }
  100% { transform: scaleY(1); }
}

@keyframes light-sweep {
  0%, 35% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

@keyframes instagram-loading {
  to { background-position-x: -200%; }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(25rem, 1.05fr);
  }

  .hero h1 {
    font-size: clamp(3.7rem, 7.2vw, 6.4rem);
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .lineup-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-footer > small {
    justify-self: end;
  }
}

@media (max-width: 980px) {
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .booking-intro {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .booking-intro h2 {
    font-size: clamp(2.8rem, 8.1vw, 4.5rem);
  }

  .booking-direct {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2.5rem;
  }

  .booking-form {
    padding-top: 2.75rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
    position: relative;
    z-index: 2;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav {
    align-items: flex-start;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 0;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: 7rem var(--gutter);
    pointer-events: none;
    position: fixed;
    transform: translateY(-1rem);
    transition: opacity 180ms ease, transform 180ms ease;
    visibility: hidden;
  }

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

  .site-nav a {
    border-bottom: 1px solid var(--line-light);
    color: white;
    font-family: var(--display);
    font-size: clamp(1.8rem, 7.2vw, 3.6rem);
    letter-spacing: -0.03em;
    padding: 0.55rem 0;
    width: 100%;
  }

  .site-nav a::after,
  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 8.5rem;
  }

  .hero-copy {
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 11.7vw, 7.6rem);
  }

  .hero-visual {
    height: min(74vw, 39rem);
    margin-left: 8vw;
  }

  .hero-proof {
    bottom: 2rem;
  }

  .manifesto-grid,
  .events-head,
  .repertoire-head {
    gap: 3.5rem;
    grid-template-columns: 1fr;
  }

  .manifesto-copy {
    margin-left: 15vw;
  }

  .events-head > p,
  .repertoire-head > p {
    max-width: 38rem;
  }

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

  .moments-photo {
    min-height: min(68vw, 40rem);
  }

  .moments-photo::after {
    background: linear-gradient(0deg, var(--ink), transparent 50%);
  }

  .moments-copy {
    margin-top: -7rem;
    padding-left: var(--gutter);
  }

  .instagram-head {
    align-items: start;
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .instagram-intro {
    max-width: 38rem;
  }
}

@media (max-width: 720px) {
  .booking-dialog {
    max-height: calc(100dvh - 0.75rem);
    width: calc(100% - 0.75rem);
  }

  .booking-shell {
    max-height: calc(100dvh - 0.75rem);
  }

  .booking-close {
    height: 2.65rem;
    right: 0.8rem;
    top: 0.8rem;
    width: 2.65rem;
  }

  .booking-intro {
    padding: 3.25rem 1.35rem 1.8rem;
  }

  .booking-kicker {
    margin-bottom: 1.7rem;
  }

  .booking-intro h2 {
    font-size: clamp(2.6rem, 12.5vw, 4.3rem);
  }

  .booking-direct {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .booking-form {
    padding: 2.4rem 1.35rem 2rem;
  }

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

  .form-wide {
    grid-column: auto;
  }

  .form-submit-row {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .form-submit-row > p {
    max-width: none;
  }

  .site-header {
    padding: 0.9rem var(--gutter);
  }

  .brand-logo {
    width: 7.25rem;
  }

  .hero {
    padding-top: 7.8rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.75rem);
  }

  .hero-lead {
    max-width: 31rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .hero-visual {
    height: 72vw;
    margin-left: 0;
  }

  .live-stamp {
    bottom: -1rem;
    height: 5.7rem;
    right: 1rem;
    width: 5.7rem;
  }

  .live-stamp strong {
    font-size: 1.25rem;
  }

  .hero-proof {
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    right: var(--gutter);
  }

  .hero-proof strong {
    font-size: 0.85rem;
  }

  .hero-proof span {
    font-size: 0.5rem;
  }

  .hero-index {
    display: none;
  }

  .section {
    padding-bottom: 5.5rem;
    padding-top: 5.5rem;
  }

  .section-label {
    margin-bottom: 3.5rem;
  }

  .manifesto {
    padding-bottom: 0;
  }

  .manifesto-title h2,
  .events h2,
  .repertoire h2 {
    font-size: clamp(3.15rem, 14.4vw, 5.4rem);
  }

  .manifesto-copy {
    margin-left: 0;
  }

  .lineup-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
  }

  .lineup-head h3 {
    font-size: clamp(2.9rem, 13.5vw, 5rem);
  }

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

  .member-copy {
    min-height: 8.75rem;
  }

  .member-copy strong {
    font-size: clamp(1rem, 3.7vw, 1.25rem);
  }

  .wide-photo img {
    height: 92vw;
  }

  .wide-photo figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .event-item:nth-child(odd) {
    border-right: 0;
  }

  .event-item:nth-child(even) {
    padding-left: 0;
  }

  .events-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .song-row {
    gap: 0.55rem;
    grid-template-columns: 2rem 1fr auto;
    padding: 0.9rem 0;
  }

  .song-row small {
    grid-column: 2;
    grid-row: 2;
  }

  .song-row i {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .song-row > span {
    grid-row: 1 / span 2;
  }

  .repertoire-groups {
    gap: 3.5rem;
    grid-template-columns: 1fr;
  }

  .moments-photo {
    min-height: 76vw;
  }

  .moments-copy {
    margin-top: -3rem;
  }

  .contact-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-top > p {
    margin-top: 2rem;
    text-align: left;
  }

  .contact-main {
    align-items: end;
    grid-template-columns: 1fr;
  }

  .contact h2 {
    font-size: clamp(3.3rem, 15.3vw, 6.3rem);
  }

  .contact-arrow {
    justify-self: end;
  }

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

  .contact-details > * + * {
    border-left: 0;
    border-top: 1px solid rgba(9, 9, 10, 0.28);
    padding-left: 0;
  }

  .instagram-feed {
    padding-bottom: 5.5rem;
    padding-top: 5.5rem;
  }

  .instagram-heading h2 {
    font-size: clamp(3.05rem, 13.8vw, 5.2rem);
  }

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

  .site-footer {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .footer-meta {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .cookie-banner {
    align-items: stretch;
    bottom: 0.75rem;
    grid-template-columns: 1fr;
    left: 0.75rem;
    right: 0.75rem;
  }

  .cookie-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .cookie-actions .button,
  .cookie-button-secondary {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 430px) {
  .hero-proof div:nth-child(2) {
    display: none;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
  }

  .event-item {
    gap: 0.85rem;
    grid-template-columns: 3.8rem minmax(0, 1fr);
    min-height: 8.5rem;
  }

  .event-date {
    padding-right: 0.75rem;
  }

  .event-kicker {
    flex-wrap: wrap;
    gap: 0.45rem;
  }

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

  .member-copy {
    min-height: 7.8rem;
  }

  .moments blockquote {
    font-size: 1.7rem;
  }

  .song-catalog li {
    align-items: start;
    gap: 0.25rem;
    grid-template-columns: 1fr;
  }

  .song-catalog span {
    text-align: left;
  }

  .instagram-grid {
    gap: 0.35rem;
  }

  .instagram-card-meta {
    padding: 0.8rem;
  }

  .instagram-card-caption {
    display: none;
  }

  .instagram-card-type {
    margin-bottom: 0;
  }

  .instagram-card-arrow {
    height: 2rem;
    width: 2rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
