:root {
  --ink: #252525;
  --paper: #f3eee3;
  --cream: #fff9ed;
  --orange: #e95021;
  --yellow: #f2a928;
  --teal: #0f7f83;
  --line: rgba(37, 37, 37, .22);
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; top: .5rem; left: .5rem; padding: .7rem 1rem; background: #fff; color: #000; z-index: 999; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.2rem, 4vw, 4rem);
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 50;
}
.brand { width: clamp(190px, 23vw, 300px); }
.brand img { width: 100%; }
nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.6vw, 2.7rem); }
nav a { text-decoration: none; text-transform: uppercase; font-weight: 800; font-size: .78rem; letter-spacing: .12em; }
nav a:hover, nav a:focus-visible { color: var(--yellow); }
.nav-cta { border: 1px solid var(--ink); border-radius: 999px; padding: .65rem 1.1rem; }
.menu-toggle { display: none; }

.hero {
  max-width: var(--max);
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  border-inline: 1px solid var(--line);
}
.hero-copy { padding: clamp(3.5rem, 6vw, 6rem) clamp(1.5rem, 5vw, 5rem) 3rem; position: relative; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 1.3rem; text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 900; }
h1, h2, h3 { margin-top: 0; line-height: .95; }
h1, h2 { font-family: Georgia, 'Times New Roman', serif; letter-spacing: -.065em; }
h1 { font-size: clamp(4rem, 9vw, 8.8rem); margin-bottom: 2rem; }
.hero-copy h1 { font-size: clamp(3.8rem, 7vw, 7.2rem); }
h1 span { display: block; color: var(--orange); }
.hero-intro { max-width: 600px; font-family: Georgia, serif; font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.45; margin: 0 0 2.2rem; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .8rem; min-height: 50px; padding: .8rem 1.25rem; border: 1px solid var(--ink); border-radius: 999px; text-decoration: none; text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; font-weight: 900; transition: .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 4px 4px 0 var(--ink); }
.button-primary { background: var(--ink); color: var(--cream); }
.button-ghost { background: transparent; }
.button-light { border-color: var(--cream); color: var(--cream); }
.button-light:hover, .button-light:focus-visible { box-shadow: 4px 4px 0 var(--orange); }
.hero-photo { min-height: 650px; position: relative; overflow: hidden; background: #d9dbdd; }
.hero-photo::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); pointer-events: none; }
.hero-photo img { height: 100%; object-fit: contain; object-position: center; filter: saturate(.9) contrast(1.03); transition: transform .8s ease; }
.hero-photo:hover img { transform: scale(1.015); }
.photo-tag { position: absolute; right: 1rem; bottom: 1rem; background: var(--cream); padding: .45rem .7rem; font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; transform: rotate(-2deg); }

.ticker { background: var(--orange); color: var(--cream); overflow: hidden; border-block: 1px solid var(--ink); }
.ticker div { width: max-content; display: flex; gap: 2rem; align-items: center; padding: .95rem 1rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; animation: marquee 25s linear infinite; }
.ticker b { color: var(--yellow); }
@keyframes marquee { to { transform: translateX(-30%); } }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(5rem, 10vw, 9rem) clamp(1.3rem, 5vw, 5rem); }
.section-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; border-bottom: 1px solid var(--line); margin-bottom: 3.5rem; }
.section-heading h2, .story-title h2, .merch-copy h2 { font-size: clamp(3.2rem, 7.2vw, 7rem); margin-bottom: 2rem; }
.release-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: clamp(2rem, 5vw, 5rem); }
.release-card { display: grid; grid-template-columns: minmax(220px, .8fr) 1.2fr; background: var(--ink); color: var(--cream); position: relative; }
.release-label { position: absolute; top: 1rem; left: 1rem; z-index: 2; background: var(--orange); padding: .3rem .65rem; text-transform: uppercase; font-size: .7rem; letter-spacing: .12em; font-weight: 900; transform: rotate(-2deg); }
.release-art { padding: 0; display: flex; align-items: center; align-self: center; aspect-ratio: 1; overflow: hidden; }
.release-art img { width: 100%; height: 100%; object-fit: cover; }
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; animation: none !important; transition: none !important; } }
.release-info { padding: 3rem 2rem; display: flex; flex-direction: column; justify-content: flex-end; }
.release-info p { color: #bbb; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.release-info h3 { font-family: Georgia, serif; font-size: clamp(2.2rem, 4.5vw, 4.7rem); letter-spacing: -.05em; }
.release-info a, .text-link { width: fit-content; font-weight: 900; text-transform: uppercase; font-size: .75rem; letter-spacing: .1em; text-underline-offset: .35rem; }
.release-future { display: flex; flex-direction: column; }
.release-future article { border-top: 1px solid var(--ink); padding: 1.4rem 0 1.8rem; }
.release-future article > span { text-transform: uppercase; letter-spacing: .13em; font-size: .72rem; font-weight: 900; color: var(--teal); }
.release-future article > div { display: flex; align-items: baseline; gap: 1rem; margin-top: .7rem; }
.release-future strong { font-family: Georgia, serif; color: var(--orange); font-size: 2rem; }
.release-future h3 { font-size: clamp(1.7rem, 3vw, 2.8rem); margin-bottom: 0; }
.release-future p { max-width: 520px; }
.release-future .text-link { margin-top: auto; }
.spotify-embed { border: 0; border-radius: 12px; margin-top: 4rem; display: block; }

.photo-break { min-height: 680px; max-width: var(--max); margin: auto; display: grid; grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr); overflow: hidden; background: var(--ink); border-inline: 1px solid var(--line); }
.photo-break img { width: 100%; height: 100%; max-height: 850px; object-fit: contain; filter: saturate(.9); background: #181818; }
.photo-break blockquote { align-self: center; max-width: 700px; color: #fff; font-family: Georgia, serif; font-size: clamp(2.2rem, 4.5vw, 4.8rem); line-height: 1.05; letter-spacing: -.04em; margin: 0; padding: clamp(2.5rem, 7vw, 7rem); }

.story-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); }
.story-title { position: relative; }
.story-title img { width: clamp(100px, 14vw, 180px); filter: sepia(.1); transform: rotate(-8deg); }
.story-copy { padding-top: 3rem; }
.story-copy p { max-width: 700px; font-size: 1.1rem; }
.story-copy .lead { font-family: Georgia, serif; font-size: clamp(1.45rem, 2.5vw, 2.15rem); line-height: 1.45; }
.text-link.dark { display: inline-block; margin-top: 1.5rem; }

.gallery { max-width: 1600px; margin: auto; padding: 0 clamp(1rem, 3vw, 3rem) clamp(5rem, 9vw, 9rem); display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1rem; }
.gallery figure { margin: 0; overflow: hidden; background: var(--ink); }
.gallery img { height: 100%; object-fit: contain; transition: transform .55s ease; }
.gallery figure:hover img { transform: scale(1.025); }
.gallery-tall, .gallery-live { aspect-ratio: 4 / 5; }
.gallery-live { grid-column: 2; grid-row: 1; }
.gallery-wide { grid-column: 1 / 3; grid-row: 2; aspect-ratio: 3 / 2; }
.gallery-wide img { object-position: center 58%; object-fit: cover; }

.live-section { max-width: none; background: var(--ink); color: var(--cream); padding-inline: max(clamp(1.3rem, 5vw, 5rem), calc((100vw - var(--max)) / 2 + 4rem)); }
.live-section .section-heading { border-color: rgba(255,255,255,.22); }
.video-wrap { max-width: 1200px; margin: 0 auto 4rem; }
.video-wrap iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }
.video-caption { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.25); text-transform: uppercase; letter-spacing: .1em; font-size: .75rem; }
.live-grid { display: grid; grid-template-columns: .78fr 1.11fr 1.11fr; gap: 1rem; margin-bottom: 2rem; }
.live-grid figure { margin: 0; height: 400px; overflow: hidden; }
.live-grid figure img { height: 100%; object-fit: contain; background: #181818; }
.next-show { border: 1px solid rgba(255,255,255,.35); padding: 2rem; display: flex; flex-direction: column; }
.next-show > p:first-child { margin-top: 0; text-transform: uppercase; letter-spacing: .13em; font-weight: 900; font-size: .72rem; }
.next-show .date { display: flex; align-items: center; gap: 1rem; margin: auto 0; }
.next-show .date strong { color: var(--orange); font-family: Georgia, serif; font-size: 6rem; line-height: .8; }
.next-show .date span { font-weight: 900; line-height: 1.2; }
.next-show h3 { font-family: Georgia, serif; font-size: 2.4rem; margin-bottom: .6rem; }

.merch-section { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: clamp(2.5rem, 7vw, 7rem); }
.merch-copy { position: sticky; top: 2rem; }
.merch-copy p:not(.eyebrow) { max-width: 480px; font-size: 1.1rem; margin-bottom: 2rem; }
.merch-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.merch-photos figure { margin: 0; position: relative; background: #ddd; overflow: hidden; }
.merch-photos figure { aspect-ratio: 4 / 5; }
.merch-photos img { height: 100%; min-height: 0; object-fit: cover; object-position: center; }
.merch-photos figcaption { position: absolute; left: .8rem; bottom: .8rem; padding: .35rem .6rem; background: var(--paper); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }

.contact-section { min-height: 75vh; background: var(--orange); color: var(--cream); padding: clamp(5rem, 10vw, 9rem) max(clamp(1.3rem, 5vw, 5rem), calc((100vw - var(--max)) / 2 + 4rem)); display: flex; flex-direction: column; justify-content: center; }
.contact-section h2 { font-size: clamp(4rem, 11vw, 11rem); margin-bottom: 2.5rem; }
.contact-section > a { width: fit-content; font-size: clamp(1.05rem, 2.2vw, 2rem); font-weight: 900; text-underline-offset: .35rem; overflow-wrap: anywhere; }
.contact-links { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.45); }
.contact-links a { text-transform: uppercase; font-size: .78rem; font-weight: 900; letter-spacing: .12em; }

footer { background: var(--ink); color: var(--cream); display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2rem clamp(1.3rem, 5vw, 5rem); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
footer img { width: 210px; }
footer a { font-weight: 900; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { height: 72px; }
  .menu-toggle { display: block; border: 1px solid var(--ink); border-radius: 999px; background: transparent; color: var(--ink); padding: .55rem .9rem; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 900; }
  nav { display: none; position: absolute; left: 0; right: 0; top: 72px; background: var(--paper); padding: 1.4rem; flex-direction: column; align-items: stretch; border-top: 1px solid var(--line); box-shadow: 0 12px 24px rgba(37,37,37,.12); }
  nav.is-open { display: flex; }
  nav a { padding: .5rem 0; }
  .nav-cta { text-align: center; margin-top: .5rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: auto; padding-block: 3.5rem 4rem; }
  .hero-photo { min-height: 0; aspect-ratio: 4 / 3; order: -1; }
  .release-grid, .story-section, .merch-section { grid-template-columns: 1fr; }
  .release-card { grid-template-columns: 1fr; }
  .release-art { max-width: none; }
  .release-info { padding-top: 1rem; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .gallery-live { grid-column: 2; grid-row: 1; }
  .gallery-wide { grid-column: 1 / 3; grid-row: 2; }
  .photo-break { grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr); min-height: 580px; }
  .live-grid { grid-template-columns: 1fr 1fr; }
  .next-show { grid-column: 1 / 3; min-height: 360px; }
  .merch-copy { position: static; }
}

@media (max-width: 620px) {
  h1 { font-size: clamp(3.7rem, 20vw, 6.4rem); }
  .hero-copy { padding-top: 4rem; }
  .section-heading { display: block; }
  .release-card { display: block; }
  .release-art { width: 100%; }
  .photo-break { display: block; min-height: 0; }
  .photo-break img { height: auto; max-height: none; }
  .photo-break blockquote { padding: 2.8rem 1.5rem 3.2rem; }
  .gallery { display: block; padding-inline: 0; }
  .gallery figure { height: auto; min-height: 0; margin-bottom: .5rem; aspect-ratio: auto; }
  .gallery img { height: auto; object-fit: contain; }
  .live-grid { display: block; }
  .live-grid > * { margin-bottom: 1rem !important; }
  .next-show { min-height: 360px; }
  .merch-photos { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: -1.3rem; padding: 0 1.3rem 1rem; }
  .merch-photos figure { flex: 0 0 82%; scroll-snap-align: center; }
  .merch-photos img { min-height: 0; }
  footer { flex-direction: column; text-align: center; }
}
