:root {
  --bg: #FAFAF7;
  --bg-alt: #F0EDE5;
  --card: #FFFFFF;
  --text: #0A0A0A;
  --text-muted: #6B6B6B;
  --accent: #A33B27;
  --line: #E5E1D6;
  --line-strong: #1A1A1A;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0;
}

h1, h2, h3 {
  margin: 0;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ----- Hero ----- */

.hero {
  display: grid;
  gap: 2rem;
  padding: 2.25rem 0 3rem;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

h1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(3rem, 13vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144;
}

.lede {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  max-width: 32ch;
  line-height: 1.45;
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  background: var(--text);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.18s ease, background 0.18s ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  background: var(--accent);
  transform: translateY(-1px);
  outline: none;
}

.hero-image {
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 9 / 16;
  max-height: 75vh;
  margin: 0 auto;
  width: 100%;
  max-width: 480px;
}

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

/* ----- Shows ----- */

.shows {
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
}

.shows-header {
  text-align: center;
  max-width: 50ch;
  margin: 0 auto 2.5rem;
}

.shows-header h2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.85rem, 5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 0.65rem;
}

.shows-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.show-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.show-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.show-card:hover,
.show-card:focus-visible {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.25);
  outline: none;
}

.show-date {
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.25rem;
}

.show-date .dow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.show-date .md {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.015em;
}

.show-meta {
  flex: 1;
}

.show-time {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.show-meta h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
}

.show-address {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.show-cta {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.show-cta .arrow {
  transition: transform 0.2s ease;
}

.show-card:hover .show-cta .arrow,
.show-card:focus-visible .show-cta .arrow {
  transform: translateX(4px);
}

/* ----- About ----- */

.about {
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
  max-width: 60ch;
  margin: 0 auto;
}

.about h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
}

.about p {
  margin-bottom: 1rem;
  line-height: 1.65;
}

.about em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
}

.learn-more a {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.learn-more a:hover .arrow {
  transform: translateX(3px);
}

.learn-more .arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}

/* ----- Footer ----- */

footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
}

footer .funder {
  max-width: 50ch;
  margin: 0 auto 0.85rem;
  font-size: 0.85rem;
  line-height: 1.5;
}

footer a {
  border-bottom: 1px solid currentColor;
}

.footer-meta {
  margin-top: 0.5rem;
}

/* ----- Tablet+ ----- */

@media (min-width: 720px) {
  main {
    padding: 0 2rem;
  }

  .hero {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 4rem 0 4.5rem;
  }

  .hero-image {
    max-height: 80vh;
    max-width: none;
  }

  .show-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .shows {
    padding: 4.5rem 0;
  }

  .about {
    padding: 4.5rem 0;
  }
}

@media (min-width: 1000px) {
  .hero {
    padding: 5rem 0 5.5rem;
    gap: 4rem;
  }

  .show-card {
    padding: 2rem 1.85rem;
  }
}

/* ----- Reduced motion ----- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
