:root {
  color-scheme: light;
  --ink: #151312;
  --muted: #6f6761;
  --paper: #fbfaf7;
  --ivory: #f1ece4;
  --wine: #c4165a;
  --wine-dark: #27081d;
  --gold: #f4c95d;
  --teal: #006d77;
  --electric: #22d3ee;
  --line: rgba(21, 19, 18, 0.14);
  --shadow: 0 24px 70px rgba(33, 25, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.9);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(20, 18, 16, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.site-header:not(.is-scrolled) .brand-mark {
  background: rgba(255, 255, 255, 0.12);
}

.nav-links {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.86;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 120px clamp(20px, 6vw, 76px) 80px;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  z-index: -1;
  background:
    radial-gradient(circle at 72% 28%, rgba(34, 211, 238, 0.34), transparent 28%),
    linear-gradient(90deg, rgba(12, 6, 18, 0.88), rgba(86, 14, 57, 0.58) 48%, rgba(10, 8, 18, 0.1)),
    linear-gradient(0deg, rgba(12, 6, 18, 0.76), rgba(12, 6, 18, 0.08) 46%);
}

.hero-content {
  width: min(720px, 100%);
  color: #fff;
  padding-top: 6vh;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(74px, 12vw, 166px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 7vw, 86px);
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.1vw, 25px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: #1b1309;
}

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

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

.hero-badge {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 38px;
  display: grid;
  width: min(230px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(12, 6, 18, 0.52);
  backdrop-filter: blur(14px);
}

.badge-number {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 64px;
  line-height: 0.9;
}

.badge-label {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.band {
  background: linear-gradient(90deg, var(--wine-dark), #111827);
  color: #fff;
}

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

.stats div {
  min-height: 155px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.stats strong {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  line-height: 0.95;
}

.stats span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 6vw, 76px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
}

.copy-stack p {
  margin-bottom: 0;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
}

.highlights article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.icon {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--electric);
  font-size: 28px;
}

.highlights p,
.repertoire-head p,
.role-detail p,
.schedule p {
  color: var(--muted);
}

.repertoire {
  background: linear-gradient(135deg, var(--ivory), #e8fbff);
}

.repertoire-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.role-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.role-card {
  min-height: 126px;
  padding: 20px;
  border: 1px solid rgba(21, 19, 18, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.role-card:hover {
  transform: translateY(-3px);
}

.role-card.is-active {
  border-color: var(--wine);
  background: linear-gradient(135deg, var(--wine), #6d28d9);
  color: #fff;
}

.role-card span,
.role-card small {
  display: block;
}

.role-card span {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 36px;
}

.role-card small {
  margin-top: 8px;
  font-weight: 800;
  opacity: 0.7;
}

.role-detail {
  display: grid;
  gap: 8px;
  min-height: 208px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.role-meta {
  margin-bottom: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.role-detail h3 {
  max-width: 780px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
}

.role-detail p:last-child {
  max-width: 800px;
  margin-bottom: 0;
  font-size: 18px;
}

.awards {
  background: #fff;
}

.award-track {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line);
}

.award-track div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.award-track span {
  color: var(--wine);
  font-weight: 900;
}

.award-track strong {
  font-size: clamp(21px, 3vw, 38px);
  line-height: 1.1;
}

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

.schedule-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.schedule article {
  min-height: 210px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(33, 25, 18, 0.08);
}

.schedule time {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing {
  background: #fff;
}

.pricing-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 460px);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.pricing-head p {
  color: var(--muted);
  font-size: 18px;
}

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

.price-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 440px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(33, 25, 18, 0.08);
}

.price-card.featured {
  background: #151312;
  color: #fff;
  transform: translateY(-12px);
}

.price-card.featured ul {
  color: rgba(255, 255, 255, 0.74);
}

.price-tag {
  width: fit-content;
  margin-bottom: 4px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.16);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured .price-tag {
  background: rgba(244, 201, 93, 0.18);
  color: var(--gold);
}

.price-card h3 {
  margin-bottom: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
}

.price-card strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.95;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 8px;
  padding-left: 20px;
  color: var(--muted);
}

.price-card .button {
  align-self: end;
  margin-top: auto;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(56px, 8vw, 92px) clamp(20px, 6vw, 76px);
  background: linear-gradient(90deg, var(--gold), #ff8fab);
  color: #1b1309;
}

.contact .eyebrow {
  color: var(--wine-dark);
}

.contact h2 {
  max-width: 960px;
  font-size: clamp(34px, 5vw, 72px);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 76px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 112px;
  }

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

  .hero-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 40px;
  }

  .stats,
  .highlights,
  .role-board,
  .schedule-list {
    grid-template-columns: 1fr 1fr;
  }

  .section-grid,
  .repertoire-head,
  .pricing-head,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 620px) {
  .brand span:last-child {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .hero {
    min-height: 86vh;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(16, 9, 7, 0.88), rgba(34, 13, 14, 0.52)),
      linear-gradient(0deg, rgba(13, 11, 10, 0.72), rgba(13, 11, 10, 0.1));
  }

  .hero-actions,
  footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stats,
  .highlights,
  .role-board,
  .schedule-list {
    grid-template-columns: 1fr;
  }

  .stats div {
    min-height: 128px;
  }

  .award-track div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
