html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: #000000;
  font-family: Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid #000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0;
}

.site-label {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.site-nav a:hover {
  text-decoration: underline;
}

.site-nav a.active {
  text-decoration: underline;
}

.section-border {
  border-bottom: 1px solid #000;
}

.title-section {
  padding: 40px 0;
}

.eyebrow {
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.performers-title {
  margin: 0;
  font-size: clamp(48px, 7vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
  text-transform: none;
}

.performers-section {
  padding: 20px 0 48px;
}

.performers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.performer-card {
  padding: 20px 0 24px;
}

.headshot-placeholder {
  width: 100%;
  height: 190px;
  border: 1px solid #000;
  margin-bottom: 14px;
}

.performer-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 10px;
}

.performer-name {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.performer-instrument {
  font-size: 16px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.performer-bio {
  max-width: 92%;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

@media (max-width: 980px) {
  .performers-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .performer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .performer-bio {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1400px, calc(100% - 28px));
  }

  .header-inner {
    flex-direction: column;
    gap: 10px;
  }

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

  .title-section {
    padding: 34px 0 34px;
  }

  .headshot-placeholder {
    height: 160px;
  }
}
