:root {
  --ink: #101010;
  --paper: #f7f2e8;
  --paper-strong: #fffaf0;
  --red: #c73c2f;
  --amber: #f2b441;
  --teal: #257c75;
  --moss: #687447;
  --line: rgba(16, 16, 16, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img,
svg {
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 242, 232, 0.95);
  color: var(--ink);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 132px clamp(20px, 5vw, 72px) 46px;
  color: #fff;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 52% center;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.42) 58%, rgba(0, 0, 0, 0.72)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 58%);
}

.hero-content {
  max-width: 920px;
}

.hero-logo {
  width: clamp(116px, 18vw, 190px);
  aspect-ratio: 1.42;
  object-fit: cover;
  margin-bottom: 22px;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-family: Tahoma, "Times New Roman", serif;
  font-size: clamp(3.1rem, 11.2vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
}

h3 {
  font-size: 1.45rem;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 900;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  flex: 0 0 auto;
}

.button-primary {
  background: var(--amber);
  color: #17110b;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
}

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

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 46px;
  display: grid;
  gap: 5px;
  width: min(310px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(16, 16, 16, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.hero-card span {
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: clamp(70px, 10vw, 124px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.82fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.prose {
  display: grid;
  gap: 18px;
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
}

.prose p {
  margin: 0;
}

.band-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(3, minmax(160px, 26vw));
  gap: 1px;
  background: var(--ink);
}

.band-gallery figure {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  background: var(--ink);
}

.band-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.band-gallery figure:hover img {
  transform: scale(1.035);
}

.gallery-main {
  grid-row: 1 / 4;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-block: 0;
  background: var(--ink);
}

.stats div {
  min-height: 178px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 28px;
  background: var(--paper-strong);
}

.stats strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.9;
  color: var(--red);
}

.stats span {
  max-width: 210px;
  font-weight: 800;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.event {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.event time {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--teal);
  font-weight: 900;
}

.event p {
  margin: 10px 0 0;
  color: rgba(16, 16, 16, 0.68);
  font-weight: 700;
}

.quote-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding-block: 0;
  background: var(--ink);
  color: #fff;
}

.quote-band figure {
  margin: 0;
  min-height: 300px;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(34px, 7vw, 74px);
  background:
    linear-gradient(135deg, rgba(199, 60, 47, 0.34), transparent 58%),
    #171717;
}

.quote-band blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.quote-band figcaption {
  color: var(--amber);
  font-weight: 900;
}

.playlist-section {
  background:
    linear-gradient(135deg, rgba(37, 124, 117, 0.12), transparent 42%),
    var(--paper);
}

.playlist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.playlist span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 250, 240, 0.72);
  font-weight: 800;
}

.contact-section {
  padding: clamp(70px, 10vw, 122px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(100deg, rgba(104, 116, 71, 0.26), transparent 48%),
    var(--red);
  color: #fff;
}

.contact-inner {
  max-width: 1000px;
}

.contact-section .eyebrow {
  color: #ffe0a1;
}

.contact-section h2 {
  max-width: 930px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.site-footer span {
  color: #fff;
}

@media (max-width: 980px) {
  .split,
  .event-grid,
  .quote-band {
    grid-template-columns: 1fr;
  }

  .band-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 52vw 44vw 44vw;
  }

  .gallery-main {
    grid-column: 1 / 3;
    grid-row: auto;
  }

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

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 36px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand span:last-child {
    max-width: 190px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-strong);
    color: var(--ink);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .hero {
    min-height: 100svh;
    padding: 108px 20px 34px;
  }

  .hero-image {
    object-position: 48% center;
  }

  .band-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-main {
    grid-column: auto;
  }

  .band-gallery figure {
    aspect-ratio: 4 / 3;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section,
  .contact-section {
    padding-inline: 20px;
  }

  .event {
    min-height: 170px;
  }
}
