:root {
  --bg: #0b0f14;
  --surface: #141b24;
  --surface-raised: #1a2430;
  --text: #e8edf2;
  --muted: #8b9aab;
  --accent: #c9a227;
  --accent-soft: rgba(201, 162, 39, 0.15);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --max-width: 1200px;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 162, 39, 0.12), transparent),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: var(--accent);
  text-decoration-color: rgba(201, 162, 39, 0.5);
}

a:hover {
  text-decoration-color: var(--accent);
}

.inner {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.site-header {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
}

.site-header h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.tagline {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact,
.equipment {
  margin: 0.35rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact strong,
.equipment strong {
  color: var(--text);
}

.nav-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.content {
  padding: 2rem 0 3rem;
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 1.25rem;
  width: 100%;
}

.nav-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.nav-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  background: var(--surface-raised);
  transform: translateY(-2px);
  text-decoration: none;
}

.nav-card-title {
  font-size: 1.15rem;
  font-weight: 600;
}

.nav-card-desc {
  font-size: 0.9rem;
  color: var(--muted);
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}

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

.video-caption {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.project-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.project-list li {
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s ease;
}

.project-list li:hover {
  border-color: rgba(201, 162, 39, 0.35);
}

.project-list a {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
}

.project-list a:hover {
  text-decoration: underline;
}

.project-meta {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.card p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.card p:last-child {
  margin-bottom: 0;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  background: rgba(201, 162, 39, 0.25);
  border-color: var(--accent);
}

.section-intro {
  margin-bottom: 1.5rem;
}

.section-intro h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.section-intro p {
  margin: 0;
  color: var(--muted);
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 1.25rem;
  width: 100%;
}

.show-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease;
  text-decoration: none;
  color: inherit;
}

.show-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-2px);
}

.show-art {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: #222;
}

.show-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.show-art span {
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  font-weight: 600;
  color: var(--muted);
  line-height: 1.3;
  word-break: break-word;
}

.show-meta {
  padding: 1rem 1rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.show-meta h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.show-meta .stats {
  margin: 0;
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
}

.show-meta .roles {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text);
}

.show-meta .roles li {
  margin-left: 1rem;
}

.show-meta .roles ul {
  margin: 0;
  padding: 0;
  list-style: disc;
  padding-left: 1rem;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 480px) {
  .shows-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .show-meta {
    padding: 0.75rem;
  }

  .show-meta h3 {
    font-size: 0.9rem;
  }
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;

  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);

  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--surface-raised);
}

.social-icons img {
  width: 20px;
  height: 30px;
  filter: brightness(0) invert(1); /* makes SVGs white */
  opacity: 0.9;
}

.header-layout {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 2rem;
  align-items: stretch;
}

.header-main {
  min-width: 0;
}

.header-side {
  display: grid;
  grid-template-columns: 1fr 140px;
  grid-template-areas: "bio image";

  gap: 1rem;

  /* IMPORTANT */
  height: 100%;
  min-height: 0;
}

.bio {
  grid-area: bio;

  display: flex;
  align-items: center;

  color: var(--muted);
  font-size: 0.95rem;
}

.headshot-wrap {
  grid-area: image;

  position: relative;

  min-height: 0;
  overflow: hidden;

  border-radius: var(--radius);
}

.headshot {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  display: block;
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .header-layout {
    grid-template-columns: 1fr;
  }

  .header-side {
    grid-template-columns: 120px 1fr;

    /* swap order */
    grid-template-areas: "image bio";

    align-items: center;
  }

  .headshot {
    object-fit: contain;
    transform: scaleX(1);
  }

  .headshot-wrap {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 25px;
  }
}

.social-icons img.custom-icon {
  filter: none;
}