:root {
  --bg: #0b0b0d;
  --bg-alt: #141417;
  --fg: #f4f2ee;
  --fg-muted: #a8a5a0;
  --accent: #c9a24b;
  --border: #26262a;
  --max-width: 1080px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Cormorant', 'Inter', serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

a { color: var(--fg); }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(11, 11, 13, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-name {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-mark {
  height: 40px;
  width: auto;
  display: block;
}

.nav nav {
  display: flex;
  gap: 1.5rem;
}

.nav nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--fg-muted);
  transition: color 0.2s;
}

.nav nav a:hover { color: var(--accent); }

.nav-toggle { display: none; }
.nav-burger { display: none; }

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 13, 0.75) 0%, rgba(11, 11, 13, 0.25) 35%, rgba(11, 11, 13, 0.05) 70%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 8vh;
}

.hero-wordmark {
  display: block;
  width: min(95%, 900px);
  height: auto;
  margin: 0 auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.7));
}

.tagline {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.bio-text {
  max-width: 640px;
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.photo-grid img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.photo-placeholder {
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  font-size: 0.9rem;
  border-radius: 4px;
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-alt);
  border-radius: 4px;
  overflow: hidden;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.shows-list {
  margin-bottom: 2.5rem;
}

.show-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.show-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.show-date {
  font-weight: 600;
}

.show-venue {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.show-tickets {
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.show-tickets:hover { opacity: 0.85; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.video-caption {
  margin-top: 0.75rem;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.signup-form {
  display: flex;
  gap: 0.75rem;
  max-width: 420px;
  flex-wrap: wrap;
}

.signup-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.75rem 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--fg);
  font-size: 1rem;
  font-family: inherit;
}

.signup-form input[type="email"]::placeholder {
  color: var(--fg-muted);
}

.signup-form button {
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s;
}

.signup-form button:hover { opacity: 0.85; }

.fact-list {
  max-width: 640px;
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  padding-left: 1.25rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.stat-tile {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.stat-number {
  display: block;
  font-family: 'Cormorant', 'Inter', serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--accent);
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  color: var(--fg-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stats-note {
  margin-top: 1.25rem;
  color: var(--fg-muted);
  font-size: 0.85rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.quote-card {
  border-left: 2px solid var(--accent);
  padding-left: 1.25rem;
}

.quote-text {
  font-family: 'Cormorant', 'Inter', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--fg);
  margin: 0 0 0.75rem;
}

.quote-source {
  color: var(--fg-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.press-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.press-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.press-photo--logo img {
  aspect-ratio: auto;
  object-fit: contain;
  background: var(--bg-alt);
  padding: 1.5rem;
}

.press-photo a {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.press-photo a:hover { text-decoration: underline; }

.contact a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1.1rem;
}

.socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.socials a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.socials a:hover { color: var(--accent); }

.footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--fg-muted);
  font-size: 0.85rem;
}

@media (max-width: 700px) {
  .nav {
    flex-wrap: wrap;
    padding: 0.85rem 1.25rem;
  }

  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    cursor: pointer;
  }

  .nav-burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--fg);
  }

  .nav nav {
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav-toggle:checked ~ nav {
    max-height: 320px;
    margin-top: 1rem;
  }

  .nav nav a {
    padding: 0.85rem 0;
    border-top: 1px solid var(--border);
    font-size: 1rem;
  }

  .section {
    padding: 2.75rem 1.25rem;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .hero {
    min-height: 80vh;
  }

  .tagline {
    font-size: 1rem;
  }

  .signup-form {
    flex-direction: column;
  }

  .signup-form input[type="email"] {
    min-width: 0;
    width: 100%;
  }

  .signup-form button {
    width: 100%;
  }

  .show-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .show-tickets {
    width: 100%;
    text-align: center;
  }

  .socials {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }

  .stat-number {
    font-size: 1.9rem;
  }

  .quote-text {
    font-size: 1.1rem;
  }
}
