:root {
  --ink: #0c0d0f;
  --paper: #ededeb;
  --charcoal: #303135;
  --graphite: #1d1e21;
  --ember: #ff603c;
  --line: rgba(12, 13, 15, 0.18);
  --white-line: rgba(255, 255, 255, 0.22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
}
body::selection { background: var(--ember); color: white; }
a { color: inherit; }
img { display: block; width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: white;
  color: black;
  padding: 0.75rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5.25rem;
  padding: 0 var(--gutter);
  color: white;
  border-bottom: 1px solid var(--white-line);
}
.wordmark {
  width: max-content;
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.wordmark span { color: var(--ember); }
.header-date {
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.header-ticket {
  justify-self: end;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
.header-ticket span { color: var(--ember); }

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(900px, 100svh);
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.hero-photo, .hero-shade { position: absolute; inset: 0; }
.hero-photo {
  background: url("assets/halle-04.webp") center / cover no-repeat;
  filter: grayscale(0.72) contrast(1.08);
  transform: scale(1.015);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 11, 18, 0.95) 0%, rgba(9, 11, 18, 0.79) 47%, rgba(9, 11, 18, 0.12) 84%),
    linear-gradient(0deg, rgba(9, 11, 18, 0.76) 0%, transparent 48%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(62rem, calc(100% - 2 * var(--gutter)));
  margin: 8.5rem var(--gutter) 4.25rem;
}
.kicker {
  margin: 0 0 1.1rem;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.kicker::before {
  display: inline-block;
  width: 2.25rem;
  height: 2px;
  margin: 0 0.7rem 0.22rem 0;
  background: var(--ember);
  content: "";
}
.hero h1 {
  max-width: 58rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 8.4vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.86;
  text-wrap: balance;
}
.hero h1 em { color: var(--ember); font-weight: 400; }
.hero-copy {
  max-width: 47rem;
  margin: 1.8rem 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.5;
}
.hero-copy cite { font-family: var(--serif); }
.event-facts {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: clamp(1rem, 3vw, 3rem);
  max-width: 50rem;
  margin: 2rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}
.event-facts > div { display: grid; }
.fact-label {
  margin-bottom: 0.35rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.event-facts strong { font-size: 1rem; }
.event-facts div > span:not(.fact-label) { color: rgba(255,255,255,0.72); font-size: 0.92rem; }
.fact-route {
  justify-self: start;
  margin-top: 0.55rem;
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-underline-offset: 0.25rem;
  text-transform: uppercase;
}
.hero-actions, .final-actions { display: flex; align-items: stretch; gap: 0.7rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.75rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ember); color: white; }
.button-primary:hover { background: #ff7557; }
.code-button {
  display: grid;
  grid-template-columns: auto auto;
  align-content: center;
  column-gap: 0.9rem;
  min-width: 11rem;
  padding: 0.55rem 1rem;
  color: white;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--white-line);
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.code-button > span:first-child {
  grid-column: 1 / -1;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
}
.code-button strong { font-size: 1rem; letter-spacing: 0.08em; }
.copy-state { align-self: end; font-size: 0.68rem; opacity: 0.55; }
.code-button.copied { border-color: var(--ember); }
.hero-edge {
  position: absolute;
  right: 1.15rem;
  top: 50%;
  z-index: 2;
  color: rgba(255,255,255,0.62);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  transform: translate(47%, -50%) rotate(90deg);
}

.statement {
  position: relative;
  display: grid;
  grid-template-columns: 0.18fr 1fr 0.82fr;
  gap: clamp(1.5rem, 4vw, 5rem);
  max-width: var(--max);
  margin: auto;
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
}
.section-marker {
  color: var(--ember);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.statement h2, .biography-hook h2, .experience h2, .videos h2, .instagram h2, .artists h2, .sound h2, .tour h2, .venue h2, .final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.4vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-wrap: balance;
}
.kicker-dark { color: var(--charcoal); }
.statement-copy { padding-top: 2.5rem; font-size: 1.05rem; }
.statement-copy p { max-width: 34rem; }
.statement-copy .lead {
  margin-top: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.2;
}
.direction {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.voices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--charcoal);
  color: white;
}
.quote {
  min-height: 26rem;
  margin: 0;
  padding: clamp(3rem, 7vw, 7rem) var(--gutter);
}
.quote + .quote { border-left: 1px solid rgba(255,255,255,0.26); }
.quote blockquote {
  max-width: 38rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.quote figcaption {
  margin-top: 2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}
.quote-wide {
  grid-column: 1 / -1;
  min-height: 0;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(255,255,255,0.26);
  border-left: 0 !important;
}
.quote-wide blockquote { max-width: 70rem; font-size: clamp(1.7rem, 3vw, 3.1rem); }

.biography-hook {
  display: grid;
  grid-template-columns: 0.18fr 1fr 0.82fr;
  gap: clamp(1.5rem, 4vw, 5rem);
  max-width: var(--max);
  margin: auto;
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
}
.biography-hook h2 { font-size: clamp(2.8rem, 5.2vw, 5.8rem); }
.hook-copy { padding-top: 2.3rem; }
.hook-copy > p { max-width: 35rem; }
.hook-copy .lead { margin-top: 0; font-family: var(--serif); font-size: clamp(1.35rem, 2.1vw, 1.9rem); line-height: 1.25; }
.central-question { display: grid; gap: 0.35rem; margin-top: 2.2rem; padding: 1.4rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.central-question span { margin-top: 0.5rem; color: rgba(12,13,15,0.58); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.central-question strong { font-family: var(--serif); font-size: clamp(1.25rem, 1.8vw, 1.65rem); font-weight: 400; line-height: 1.2; }
.central-question strong:last-child { color: var(--ember); }

.experience {
  display: grid;
  grid-template-columns: minmax(18rem, 0.76fr) 1fr;
  min-height: 50rem;
  color: white;
  background: var(--ink);
}
.experience-image { position: relative; min-height: 48rem; overflow: hidden; }
.experience-image img { height: 100%; object-fit: cover; filter: grayscale(0.72) contrast(1.08); }
.image-note {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: 0.45rem 0.65rem;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.experience-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 48rem;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
}
.experience-copy h2 { font-size: clamp(3rem, 5.7vw, 6.5rem); }
.experience-copy > p:not(.kicker) { max-width: 35rem; font-size: 1.08rem; }
.experience-copy .kicker { color: var(--ember); }
.experience-quote { max-width: 34rem; margin: 1.5rem 0 0; padding: 1.4rem 0; border-top: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.25; }
.experience-quote span { display: block; margin-top: 0.65rem; color: var(--ember); font-family: var(--sans); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.text-link {
  margin-top: 1.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.video-hook {
  max-width: var(--max);
  margin: auto;
  padding: clamp(2rem, 4vw, 4rem) var(--gutter) 0;
}
.video-hook .video-card { max-width: 76rem; margin: auto; }

.videos {
  max-width: var(--max);
  margin: auto;
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
}
.videos-intro {
  display: grid;
  grid-template-columns: 0.18fr 1fr;
  column-gap: clamp(1.5rem, 4vw, 5rem);
  margin-bottom: clamp(3rem, 6vw, 6rem);
}
.videos-intro .kicker, .videos-intro h2 { grid-column: 2; }
.videos-intro .section-marker { grid-row: 1 / span 2; }
.video-grid { display: grid; grid-template-columns: 1.65fr 0.58fr; gap: clamp(1rem, 2vw, 2rem); align-items: end; }
.video-grid-single { grid-template-columns: 1fr; justify-items: center; }
.video-grid-single .video-card { grid-column: 1; width: min(100%, 24rem); }
.video-frame { position: relative; overflow: hidden; background: #111; }
.video-frame.landscape { aspect-ratio: 16 / 9; }
.video-frame.portrait { aspect-ratio: 9 / 16; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card p {
  display: flex;
  justify-content: space-between;
  margin: 0.8rem 0 0;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.video-card p span { color: var(--ember); }

.instagram {
  display: grid;
  grid-template-columns: minmax(15rem, 0.5fr) 1.5fr;
  gap: clamp(2rem, 5vw, 6rem);
  max-width: var(--max);
  margin: auto;
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  border-top: 1px solid var(--line);
}
.instagram-intro { align-self: start; position: sticky; top: 2rem; }
.instagram-intro h2 { margin: 0 0 1.4rem; font-size: clamp(2.8rem, 4.5vw, 5rem); }
.instagram-intro > p:not(.kicker) { max-width: 28rem; }
.instagram-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.instagram-tile { position: relative; padding: 2.2rem 0.55rem 0.55rem; background: var(--graphite); }
.instagram-tile > span { position: absolute; left: 0.8rem; top: 0.55rem; color: var(--ember); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; }
.instagram-tile iframe { display: block; width: 100%; min-height: 32rem; aspect-ratio: 9 / 16; border: 0; background: white; }

.artists {
  display: block;
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  color: white;
  background: var(--graphite);
}
.artists-title { max-width: var(--max); margin: 0 auto; }
.artists-title h2 { margin-top: 1rem; font-size: clamp(2.9rem, 4.8vw, 5.6rem); }
.artist-profile {
  display: grid;
  grid-template-columns: minmax(17rem, 0.82fr) 1.18fr;
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: center;
  max-width: 76rem;
  margin: clamp(4rem, 8vw, 8rem) auto 0;
}
.artist-visual img { aspect-ratio: 4 / 5; object-fit: cover; filter: grayscale(1) contrast(1.09); }
.artist-copy { padding-top: 1.5rem; border-top: 4px solid var(--ember); }
.artist-role { margin: 0; color: rgba(255,255,255,0.58); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.artist-copy h3 { margin: 0.25rem 0 1.4rem; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5.4rem); font-weight: 400; letter-spacing: -0.05em; line-height: 0.95; }
.artist-copy > p:not(.artist-role):not(.artist-line) { max-width: 39rem; color: rgba(255,255,255,0.76); font-size: 1.02rem; }
.artist-line { max-width: 36rem; margin-top: 1.8rem; color: white; font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.85rem); line-height: 1.25; }
.artist-copy blockquote { max-width: 37rem; margin: 2rem 0 0; padding: 1.4rem 0 0; border-top: 1px solid var(--white-line); color: white; font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.85rem); line-height: 1.25; }
.artist-copy blockquote span { display: block; margin-top: 0.8rem; color: var(--ember); font-family: var(--sans); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.artist-profile-reverse .artist-visual { grid-column: 2; grid-row: 1; }
.artist-profile-reverse .artist-copy { grid-column: 1; grid-row: 1; }
.mission { display: grid; grid-template-columns: 0.35fr 1fr; gap: clamp(1.5rem, 5vw, 5rem); max-width: 76rem; margin: clamp(4rem, 8vw, 8rem) auto 0; padding: clamp(2rem, 4vw, 4rem) 0 0; border-top: 1px solid var(--white-line); }
.mission span { color: var(--ember); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.mission p { max-width: 55rem; margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3.2vw, 3.4rem); letter-spacing: -0.035em; line-height: 1.08; }

.sound {
  max-width: var(--max);
  margin: auto;
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
}
.sound-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
}
.sound-copy { max-width: 39rem; }
.sound-copy h2 { margin-bottom: 1.5rem; }
.sound-copy > p:not(.kicker) { max-width: 31rem; font-size: 1.1rem; }
.social-links { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 2rem; }
.social-links a { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; text-underline-offset: 0.3rem; }
.spotify-card { padding: clamp(1rem, 3vw, 2.5rem); background: var(--ink); box-shadow: 1.2rem 1.2rem 0 var(--ember); }
.spotify-card iframe { display: block; width: 100%; height: 352px; border: 0; border-radius: 0; }
.recordings-intro {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.recordings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 2rem; margin-top: 1.5rem; }
.recording { display: grid; grid-template-columns: 2rem 1fr; gap: 0.7rem; align-items: start; }
.recording > span { padding-top: 0.8rem; color: var(--ember); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; }
.recording iframe { display: block; width: 100%; height: 152px; border: 0; border-radius: 0.7rem; }

.has-embed-consent { position: relative; }
.external-embed[data-src] { visibility: hidden; }
.embed-consent {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: clamp(1rem, 4vw, 2rem);
  color: white;
  text-align: center;
  background: var(--graphite);
}
.embed-consent-label {
  color: var(--ember);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.embed-consent strong { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 500; }
.embed-consent p {
  display: block;
  max-width: 26rem;
  margin: 0;
  padding: 0;
  color: rgba(255,255,255,0.72);
  border: 0;
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}
.embed-consent button,
.legal-reset {
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--ember);
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.embed-consent a { color: white; font-size: 0.72rem; text-underline-offset: 0.2rem; }
.instagram-tile .embed-consent { inset: 2.2rem 0.55rem 0.55rem; }
.spotify-card .embed-consent { inset: clamp(1rem, 3vw, 2.5rem); }
.recording .embed-consent { left: 2.7rem; padding: 0.75rem; }
.recording .embed-consent strong { font-family: var(--sans); font-size: 1rem; font-weight: 800; }
.recording .embed-consent p { display: none; }
.recording .embed-consent button { min-height: 2.5rem; padding: 0.55rem 0.75rem; }

.tour {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
  color: white;
  background: var(--charcoal);
}
.tour-heading { max-width: 40rem; }
.tour-heading h2 { font-size: clamp(3rem, 5.4vw, 6rem); }
.tour-list { display: grid; grid-template-columns: 1fr 1fr; align-content: center; }
.tour-list span { padding: 1.15rem 0; border-bottom: 1px solid var(--white-line); font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.8rem); }
.tour-list span:nth-child(odd) { padding-right: 1rem; }
.tour-list span:nth-child(even) { padding-left: 1rem; border-left: 1px solid var(--white-line); }

.venue { position: relative; min-height: 44rem; display: flex; align-items: center; color: white; overflow: hidden; background: var(--ink); }
.venue > img, .venue-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.venue > img { object-fit: cover; filter: grayscale(0.72) contrast(1.08); }
.venue-overlay { background: linear-gradient(90deg, rgba(9,11,18,0.94) 0%, rgba(9,11,18,0.7) 47%, rgba(9,11,18,0.15) 82%); }
.venue-copy { position: relative; z-index: 2; max-width: 46rem; padding: clamp(5rem, 10vw, 9rem) var(--gutter); }
.venue-copy h2 { margin-bottom: 1.8rem; }
.venue-copy > p:not(.kicker) { font-size: 1.08rem; }
.venue-note { color: rgba(255,255,255,0.67); }
.text-link-light { display: inline-block; color: white; }

.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  text-align: center;
  color: white;
  background: var(--charcoal);
}
.final-cta h2 { max-width: 60rem; }
.final-cta > p:not(.kicker) { margin: 1.5rem 0 2rem; }
.final-quote { margin: 1.6rem 0 0; color: rgba(255,255,255,0.78); font-family: var(--serif); font-size: clamp(1.35rem, 2.4vw, 2.2rem); }
.code-button-light { background: white; color: var(--ink); border-color: white; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2.4rem var(--gutter) 6rem;
  color: white;
  background: var(--ink);
  border-top: 1px solid var(--white-line);
  font-size: 0.78rem;
}
.wordmark-footer { color: white; }
footer > p { margin: 0; text-align: center; opacity: 0.65; }
footer details { justify-self: end; max-width: 30rem; }
footer summary { cursor: pointer; font-weight: 700; }
.legal { padding-top: 1rem; color: rgba(255,255,255,0.7); line-height: 1.55; }
.legal h3 { margin: 0 0 1rem; color: white; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; }
.legal section + section { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--white-line); }
.legal p { margin: 0 0 1rem; }
.legal a { color: white; text-underline-offset: 0.2rem; }
.legal-reset { margin: 0 0 1rem; }
.legal-date { opacity: 0.7; }
footer details[open] { grid-column: 1 / -1; width: min(100%, 62rem); max-width: none; margin-top: 1rem; }
footer details[open] > summary { text-align: right; }

.mobile-ticket-bar { display: none; }
.reveal { opacity: 0; transform: translateY(1.2rem); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-date { display: none; }
  .hero { min-height: 860px; }
  .hero-shade { background: linear-gradient(0deg, rgba(9,11,18,0.97) 0%, rgba(9,11,18,0.75) 68%, rgba(9,11,18,0.28) 100%); }
  .hero-content { width: auto; margin-top: 9rem; }
  .hero h1 { font-size: clamp(3.25rem, 12.8vw, 6.8rem); }
  .statement { grid-template-columns: 0.1fr 1fr; }
  .statement-copy { grid-column: 2; }
  .biography-hook { grid-template-columns: 0.1fr 1fr; }
  .hook-copy { grid-column: 2; padding-top: 0; }
  .experience { grid-template-columns: 0.8fr 1fr; }
  .experience-image { min-height: 40rem; }
  .instagram { grid-template-columns: 1fr; }
  .instagram-intro { position: static; }
  .artist-profile { gap: 3rem; }
  .sound-top { gap: 3rem; }
  .tour { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > p { grid-column: 1 / -1; grid-row: 2; text-align: left; }
}

@media (max-width: 680px) {
  body { padding-bottom: 4.2rem; }
  .site-header { min-height: 4.5rem; }
  .header-ticket { font-size: 0.76rem; }
  .hero { min-height: 920px; }
  .hero-photo { background-position: 58% center; }
  .hero-content { margin: 8rem var(--gutter) 2.8rem; }
  .hero-copy { font-size: 1rem; }
  .hero-edge { display: none; }
  .event-facts { grid-template-columns: 1fr; gap: 1rem; }
  .event-facts > div + div { padding-top: 1rem; border-top: 1px solid var(--white-line); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .code-button { width: 100%; }
  .statement { grid-template-columns: 1fr; }
  .statement .section-marker, .statement-heading, .statement-copy { grid-column: 1; }
  .statement-copy { padding-top: 0; }
  .biography-hook { grid-template-columns: 1fr; }
  .biography-hook .section-marker, .hook-heading, .hook-copy { grid-column: 1; }
  .hook-copy { padding-top: 0; }
  .voices { grid-template-columns: 1fr; }
  .quote { min-height: 0; }
  .quote + .quote { border-left: 0; border-top: 1px solid rgba(255,255,255,0.26); }
  .experience { grid-template-columns: 1fr; }
  .experience-image { min-height: 35rem; }
  .experience-image img { object-position: center 32%; }
  .videos-intro { grid-template-columns: 1fr; }
  .videos-intro .section-marker, .videos-intro .kicker, .videos-intro h2 { grid-column: 1; }
  .video-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .instagram-tile iframe { min-height: 38rem; }
  .artist-profile { grid-template-columns: 1fr; gap: 1.8rem; }
  .artist-profile-reverse .artist-visual,
  .artist-profile-reverse .artist-copy { grid-column: 1; grid-row: auto; }
  .artist-copy h3 { margin-bottom: 1.2rem; }
  .mission { grid-template-columns: 1fr; }
  .sound-top, .recordings-grid { grid-template-columns: 1fr; }
  .recordings-grid { gap: 1rem; }
  .recordings-intro { margin-top: 4rem; }
  .spotify-card { box-shadow: 0.65rem 0.65rem 0 var(--ember); }
  .tour-list { grid-template-columns: 1fr; }
  .tour-list span:nth-child(odd), .tour-list span:nth-child(even) { padding-right: 0; padding-left: 0; border-left: 0; }
  .venue { min-height: 42rem; align-items: end; }
  .venue-overlay { background: linear-gradient(0deg, rgba(9,11,18,0.97) 0%, rgba(9,11,18,0.54) 66%, rgba(9,11,18,0.12) 100%); }
  .final-actions { width: 100%; flex-direction: column; }
  footer { grid-template-columns: 1fr; padding-bottom: 3rem; }
  footer > p, footer details { grid-column: 1; justify-self: start; text-align: left; }
  footer details[open] { width: 100%; }
  footer details[open] > summary { text-align: left; }
  .mobile-ticket-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr;
    color: var(--ink);
    background: white;
    box-shadow: 0 -0.5rem 2rem rgba(9,11,18,0.2);
  }
  .mobile-ticket-bar > span { display: grid; align-content: center; padding: 0.55rem 0.9rem; border-right: 1px solid var(--line); }
  .mobile-ticket-bar small { font-size: 0.57rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
  .mobile-ticket-bar strong { font-size: 0.82rem; letter-spacing: 0.06em; }
  .mobile-ticket-bar a { display: flex; align-items: center; justify-content: center; min-height: 4.2rem; padding: 0.8rem; color: white; background: var(--ember); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.09em; text-decoration: none; text-transform: uppercase; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
