@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700&display=swap");

:root {
  color-scheme: light;
  --bg: #84869f;
  --surface: rgba(255, 255, 255, 0.82);
  --text: #010101;
  --muted: #182b3e;
  --brand: #b9dfed;
  --brand-text: #0a2647;
  --border: rgba(255, 255, 255, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, #84869f 0%, #9da4ba 58%, #b9dfed 100%);
  color: var(--text);
  line-height: 1.6;
}

.page-width,
.site-header {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(1, 1, 1, 0.25);
}

.brand img {
  display: block;
  width: 180px;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  gap: 2rem;
}

.site-nav a,
.site-footer a {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--brand-text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.8fr);
  align-items: end;
  gap: 4rem;
  min-height: 600px;
  padding-top: 7rem;
  padding-bottom: 6rem;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--brand-text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-mark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  transform: rotate(-7deg);
}

.hero-mark span {
  padding: 1.3rem 1rem;
  border: 1px solid rgba(1, 1, 1, 0.35);
  color: var(--brand-text);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.hero-mark span:nth-child(2),
.hero-mark span:nth-child(3) {
  background: var(--brand);
}

.button {
  display: inline-block;
  padding: 0.95rem 1.5rem;
  background: var(--brand);
  color: var(--brand-text);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 4px 4px 0 var(--brand-text);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--brand-text);
}

.button-dark {
  background: var(--brand-text);
  color: var(--brand);
  box-shadow: 4px 4px 0 var(--brand);
}

.intro,
.about,
.repertoire,
.booking {
  border-top: 1px solid rgba(1, 1, 1, 0.25);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.intro h2,
.about h2,
.repertoire h2,
.booking h2 {
  margin-bottom: 1.2rem;
}

.intro-text,
.about-copy p,
.booking p {
  color: var(--muted);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(1, 1, 1, 0.25);
  border-bottom: 1px solid rgba(1, 1, 1, 0.25);
}

.feature {
  min-height: 270px;
  padding: 2rem;
  border-right: 1px solid rgba(1, 1, 1, 0.25);
}

.feature:first-child {
  padding-left: 0;
}

.feature:last-child {
  border-right: 0;
}

.feature-accent {
  background: rgba(185, 223, 237, 0.5);
}

.feature-number {
  display: block;
  margin-bottom: 4rem;
  color: var(--brand-text);
  font-size: 0.75rem;
  font-weight: 700;
}

.feature h2 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 6rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.about-image-wrap {
  padding: 1rem;
  background: var(--brand);
  transform: rotate(-3deg);
}

.about-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.repertoire {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 4rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-top: 1px solid rgba(1, 1, 1, 0.25);
}

.reviews h2 {
  margin-bottom: 0;
}

.reviews-empty {
  align-self: end;
  padding: 1.5rem 0 0 1.5rem;
  border-left: 3px solid var(--brand-text);
}

.reviews-empty p {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
}

.genre-list {
  color: var(--brand-text);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.5;
}

.genre-list span {
  color: var(--text);
  font-weight: 400;
}

.text-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--brand-text);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-link span {
  display: inline-block;
  margin-left: 0.35rem;
  transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.collection-hero {
  max-width: 760px;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.collection-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.collection-hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.15rem;
}

.show-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(1, 1, 1, 0.25);
  border-top: 1px solid rgba(1, 1, 1, 0.25);
  border-bottom: 1px solid rgba(1, 1, 1, 0.25);
}

.show-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.2);
  color: var(--text);
  text-decoration: none;
  transition: background 180ms ease;
}

.show-card:hover,
.show-card:focus-visible {
  background: rgba(185, 223, 237, 0.58);
}

.show-card:nth-child(2),
.show-card:nth-child(3) {
  background: rgba(185, 223, 237, 0.34);
}

.show-card:nth-child(2):hover,
.show-card:nth-child(3):hover,
.show-card:nth-child(2):focus-visible,
.show-card:nth-child(3):focus-visible {
  background: rgba(255, 255, 255, 0.42);
}

.show-card-number {
  color: var(--brand-text);
  font-size: 0.75rem;
  font-weight: 700;
}

.show-card-logo {
  display: block;
  width: min(100%, 360px);
  height: 290px;
  margin: 1rem auto 1.25rem;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.show-card h2 {
  margin: auto 0 0.75rem;
  font-size: 1.5rem;
}

.show-card p {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
}

.show-card-arrow {
  align-self: flex-end;
  margin-top: 1.5rem;
  color: var(--brand-text);
  font-size: 1.5rem;
}

.custom-show-card {
  background: var(--brand-text);
  color: var(--brand);
}

.custom-show-card:hover,
.custom-show-card:focus-visible {
  background: #12395c;
}

.custom-show-card .show-card-number,
.custom-show-card .show-card-arrow,
.custom-show-card p {
  color: var(--brand);
}

.custom-show-mark {
  display: grid;
  width: min(100%, 360px);
  margin: 1rem auto 1.25rem;
  transform: rotate(-4deg);
}

.custom-show-mark span {
  padding: 0.6rem 1rem;
  border: 1px solid var(--brand);
  color: var(--brand);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.custom-show-mark span:nth-child(2) {
  margin: -1px 1.5rem;
  background: var(--brand);
  color: var(--brand-text);
}

.custom-show-card h2 {
  color: var(--brand);
}

.best-of-show-card {
  background: rgba(255, 255, 255, 0.55);
}

.best-of-show-card:hover,
.best-of-show-card:focus-visible {
  background: rgba(185, 223, 237, 0.7);
}

.best-of-show-logo {
  filter: saturate(0.9);
}

.best-of-hero-logo {
  max-height: 560px;
  mix-blend-mode: multiply;
}

.show-page .site-header {
  margin-bottom: 0;
}

.show-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 5rem;
  min-height: 650px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.show-hero-logo {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.show-hero-copy h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 6rem);
}

.show-hero-copy p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.1rem;
}

.show-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-top: 1px solid rgba(1, 1, 1, 0.25);
}

.show-details h2 {
  margin-bottom: 1rem;
  font-size: 1.7rem;
}

.show-details h3 {
  margin: 2rem 0 0.75rem;
  color: var(--brand-text);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.show-details p {
  color: var(--muted);
}

.audience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  color: var(--brand-text);
  font-weight: 700;
  list-style: none;
}

.audience-list li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--text);
  font-weight: 400;
}

.show-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid rgba(1, 1, 1, 0.25);
}

.booking {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.booking h2 {
  margin-bottom: 0.75rem;
}

.booking p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  font-size: 0.8rem;
}

.site-footer span {
  color: var(--brand-text);
  font-weight: 700;
}

@media (max-width: 640px) {
  .page-width,
  .site-header {
    width: min(100% - 2rem, 1120px);
  }

  .site-header {
    align-items: flex-start;
  }

  .brand img {
    width: 140px;
  }

  .site-nav {
    gap: 0.8rem;
    flex-direction: column;
    align-items: flex-end;
  }

  .site-nav a {
    font-size: 0.68rem;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-mark {
    max-width: 280px;
    margin: 4rem auto 0;
  }

  .intro,
  .about,
  .repertoire,
  .reviews,
  .show-details {
    display: block;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .intro-text {
    margin-top: 2rem;
  }

  .reviews-empty {
    margin-top: 2rem;
  }

  .features {
    display: block;
  }

  .feature,
  .feature:first-child {
    min-height: auto;
    padding: 1.75rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(1, 1, 1, 0.25);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .feature-number {
    margin-bottom: 2rem;
  }

  .about-image-wrap {
    max-width: 300px;
    margin: 0 auto 3rem;
  }

  .booking,
  .site-footer {
    display: block;
  }

  .booking .button {
    margin-top: 2rem;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.68rem;
  }

  .collection-hero {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  .show-grid {
    display: block;
  }

  .show-card {
    min-height: 460px;
  }

  .show-hero {
    display: flex;
    min-height: auto;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .show-hero-logo {
    max-height: 340px;
  }

  .show-cta {
    display: block;
  }

  .show-cta .button {
    margin-top: 1.5rem;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }
}
