:root {
  --ink: #0a0a0a;
  --paper: #f4f3ef;
  --muted: #6e6d67;
  --line: #d4d2cb;
  --accent: #dedbd1;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: max(43rem, 100svh);
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero__image,
.hero__grain {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero__image {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.32) 36%, rgba(0, 0, 0, 0.08) 67%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48) 0%, transparent 47%),
    url("assets/cesc-backstage.jpg");
  background-position: center;
  background-size: cover;
  filter: grayscale(100%) contrast(1.06);
  transform: scale(1.003);
}

.hero__grain {
  z-index: -1;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1.25rem, 4vw, 4.5rem);
}

.wordmark {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.language-picker {
  display: flex;
  gap: 0.08rem;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.language-picker button {
  min-width: 2.25rem;
  min-height: 2rem;
  padding: 0.35rem 0.5rem;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  cursor: pointer;
  font: 700 0.64rem/1 var(--sans);
  letter-spacing: 0.06em;
}

.language-picker button[aria-pressed="true"] {
  color: #111;
  background: #fff;
}

.hero__content {
  align-self: flex-end;
  width: 100%;
  padding: clamp(7rem, 18vh, 13rem) clamp(1.25rem, 4vw, 4.5rem) clamp(2rem, 5vw, 4.5rem);
}

.hero__eyebrow,
.section__eyebrow {
  margin: 0 0 1rem;
  font: 700 0.7rem/1.2 var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
  font-family: var(--sans);
  font-size: clamp(5rem, 11.8vw, 12.2rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.language-picker button:focus-visible,
.wordmark:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

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

.button--light:hover {
  background: var(--accent);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: rgba(0, 0, 0, 0.12);
}

.button--ghost:hover {
  border-color: #fff;
  background: rgba(0, 0, 0, 0.38);
}

.hero__scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 4.5rem);
  bottom: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font: 700 0.62rem/1 var(--sans);
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 3.25rem;
  height: 1px;
  background: currentColor;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.5rem, 8vw, 10rem);
  padding: clamp(5.5rem, 12vw, 10rem) clamp(1.25rem, 8vw, 10rem);
}

.music {
  background: var(--paper);
}

.section__intro {
  max-width: 29rem;
}

.section__eyebrow {
  margin-bottom: 1.3rem;
  color: var(--muted);
}

h2 {
  margin-bottom: 1.25rem;
  font-family: var(--sans);
  font-size: clamp(3.3rem, 6.2vw, 6.15rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.section__intro > p:last-child {
  max-width: 25rem;
  margin-bottom: 0;
  color: #4c4b46;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
}

.spotify-embed {
  align-self: center;
  padding: 0.5rem;
  border-radius: 1rem;
  background: #121212;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.11);
}

.spotify-embed iframe {
  display: block;
  border: 0;
}

.shows {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  color: #fff;
  background: var(--ink);
}

.shows .section__eyebrow,
.shows .section__intro > p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.shows__widget {
  min-width: 0;
  padding: clamp(1rem, 2.5vw, 2rem);
  border-radius: 1.2rem;
  background: #fff;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1.25rem, 4vw, 4.5rem);
  color: #c4c3bd;
  background: #111;
  font: 700 0.66rem/1.3 var(--sans);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

@media (max-width: 760px) {
  .hero {
    min-height: max(41rem, 100svh);
  }

  .hero__image {
    background-position: 62% center;
  }

  .hero__scroll {
    display: none;
  }

  .section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .shows__widget {
    padding: 0.75rem;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(4.5rem, 20vw, 6rem);
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
