:root {
  --text: #f4f0e9;
  --muted: rgba(244, 240, 233, 0.82);
  --line: rgba(244, 240, 233, 0.2);
  --shadow: rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: #060606;
}

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

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

.landing-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.content-page {
  min-height: 100vh;
  padding: 18px 16px 28px;
  background:
    linear-gradient(180deg, rgba(93, 11, 31, 0.18) 0%, rgba(6, 6, 6, 0) 24%),
    #060606;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/chuggaboom-live.jpg");
  background-position: center 68%;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.2) 24%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.44) 100%);
}

.site-header,
.hero-copy,
.hero-wordmark-wrap {
  position: relative;
  z-index: 1;
}

.page-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 34px 0;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-brand-emblem {
  gap: 0;
}

.site-emblem {
  width: clamp(42px, 4vw, 56px);
}

.site-wordmark {
  width: clamp(180px, 22vw, 300px);
}

.hero-wordmark-wrap {
  position: absolute;
  top: clamp(84px, 13vh, 132px);
  left: 50%;
  width: min(560px, calc(100vw - 180px));
  transform: translateX(-50%);
}

.hero-wordmark {
  width: 100%;
  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.42))
    drop-shadow(0 20px 42px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}

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

.site-nav a,
.hero-copy p {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--muted);
}

.page-intro {
  margin: 40px 0 22px;
}

.page-kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-intro h1,
.page-subsection h2,
.card-copy h2 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.page-intro h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
}

.page-subsection {
  margin: 36px 0 18px;
}

.page-subsection h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.card-grid,
.poster-grid-page {
  display: grid;
  gap: 16px;
}

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

.poster-grid-page {
  grid-template-columns: 1fr;
}

.content-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.bandsintown-card {
  padding: 16px;
}

.bandsintown-card-embedded {
  margin-top: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
}

.booking-callout {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.booking-callout p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.booking-callout a {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.roster-note {
  margin-top: 14px;
}

.roster-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.events-embed-block {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.events-embed-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.events-embed-block h3 {
  margin: 8px 0 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 500;
  line-height: 0.95;
  text-transform: uppercase;
}

.artist-card-page img,
.poster-card-page img {
  width: 100%;
  display: block;
}

.artist-card-page img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
}

.card-copy {
  padding: 18px;
}

.card-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.95;
}

.card-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.artist-card-page .card-copy p:first-of-type {
  color: var(--text);
  font-weight: 600;
}

.poster-card-page {
  padding: 14px;
}

.poster-card-page img {
  background: #0d0d0d;
}

.hero-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 44px;
  max-width: 920px;
  text-shadow: 0 10px 26px var(--shadow);
}

.hero-copy p {
  margin: 0;
  max-width: 18ch;
  color: var(--text);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0.95;
}

@media (max-width: 720px) {
  .hero-image {
    background-position: center 18%;
  }

  .site-header {
    align-items: center;
    padding: 22px 20px 0;
  }

  .page-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-copy {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 20px;
    max-width: 260px;
  }

  .hero-wordmark-wrap {
    top: 108px;
    width: min(460px, calc(100vw - 96px));
  }

  .hero-copy p {
    max-width: 10ch;
    font-size: clamp(2rem, 11vw, 3.2rem);
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 18px 16px 0;
    gap: 12px;
  }

  .site-brand {
    gap: 10px;
  }

  .site-emblem {
    width: 34px;
  }

  .site-wordmark {
    width: min(58vw, 210px);
  }

  .hero-wordmark-wrap {
    top: 94px;
    width: min(400px, calc(100vw - 72px));
  }

  .site-nav {
    justify-content: flex-end;
    gap: 10px 14px;
  }

  .site-nav a {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero-copy {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 16px;
    max-width: 220px;
  }

  .hero-copy p {
    font-size: clamp(1.65rem, 10.5vw, 2.5rem);
    line-height: 0.92;
  }
}

@media (min-width: 721px) {
  .content-page {
    padding: 26px 34px 48px;
  }

  .page-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .page-intro {
    margin: 82px 0 36px;
  }

  .card-grid,
  .poster-grid-page {
    gap: 20px;
  }

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

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

  .artist-card-page img {
    aspect-ratio: auto;
    object-fit: contain;
  }
}
