:root {
  --page-top: #f7fbf8;
  --page-mid: #eef4f8;
  --page-bottom: #f8eef3;
  --wash: #eef6f1;
  --line: #d5e4dc;
  --ink: #2c3a36;
  --ink-muted: #5f726b;
  --accent-mint: #7eb8a2;
  --accent-mint-deep: #3f8f76;
  --accent-pink: #e8a0bf;
  --accent-pink-deep: #c46b90;
  --accent-butter: #e6c36a;
  --accent-butter-deep: #b8892a;
  --sky: #b7d4ea;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: 'Nunito', ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--page-top) 0%, var(--page-mid) 55%, var(--page-bottom) 100%);
  background-attachment: fixed;
  line-height: 1.55;
}

.bunting {
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent-mint) 0 40px,
    var(--sky) 40px 80px,
    var(--accent-butter) 80px 120px,
    var(--accent-pink) 120px 160px
  );
  clip-path: polygon(
    0 0, 100% 0, 100% 40%,
    97.5% 100%, 95% 40%, 92.5% 100%, 90% 40%, 87.5% 100%, 85% 40%, 82.5% 100%,
    80% 40%, 77.5% 100%, 75% 40%, 72.5% 100%, 70% 40%, 67.5% 100%, 65% 40%,
    62.5% 100%, 60% 40%, 57.5% 100%, 55% 40%, 52.5% 100%, 50% 40%, 47.5% 100%,
    45% 40%, 42.5% 100%, 40% 40%, 37.5% 100%, 35% 40%, 32.5% 100%, 30% 40%,
    27.5% 100%, 25% 40%, 22.5% 100%, 20% 40%, 17.5% 100%, 15% 40%, 12.5% 100%,
    10% 40%, 7.5% 100%, 5% 40%, 2.5% 100%, 0 40%
  );
}

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 16px 64px;
}

.hero {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.logo {
  display: block;
  margin: 0 auto 20px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(63, 143, 118, 0.25);
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-pink-deep);
}

h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

.lede {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink-muted);
}

.section-label {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 20px;
}

.show-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.show-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.show-card--live:hover,
.show-card--live:focus-visible {
  transform: translateY(-3px);
  border-color: var(--accent-mint);
  box-shadow: 0 14px 32px rgba(63, 143, 118, 0.18);
  outline: none;
}

.show-card--soon {
  opacity: 0.72;
}

.badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--wash);
  color: var(--ink-muted);
}

.badge--live {
  background: var(--accent-butter);
  color: var(--accent-butter-deep);
}

.show-emoji {
  font-size: 2rem;
  line-height: 1;
  margin-top: 6px;
}

.show-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.15;
}

.show-desc {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.show-cta {
  margin-top: auto;
  padding-top: 8px;
  font-weight: 700;
  color: var(--accent-mint-deep);
}

.footer {
  margin-top: 56px;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
  .show-card {
    transition: none;
  }
}
