:root {
  --bg: #090909;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --soft: #737373;
  --orange: #ff7a00;
  --orange-light: #ffd166;
  --orange-deep: #f45100;
  --border: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
iframe {
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  background: rgba(0, 0, 0, 0.76);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.nav {
  max-width: 1180px;
  min-height: 80px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer h3,
h1 span,
h2 span {
  background: linear-gradient(135deg, var(--orange-light), var(--orange), #ff3d00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.brand {
  font-size: 1.55rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 650;
  color: #d4d4d4;
}

.nav-links a:not(.button) {
  position: relative;
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange-light));
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: white;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  padding: 120px 24px 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-final-bows.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.24), rgba(9, 9, 9, 0.88)),
    linear-gradient(to right, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.32));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.82rem;
  font-weight: 800;
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(3.8rem, 11vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  overflow: visible;
}

h1 span {
  display: inline-block;
  padding-right: 0.045em;
  margin-right: -0.02em;
  overflow: visible;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 6px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.subheading {
  font-size: clamp(1.1rem, 2.4vw, 1.65rem);
  color: #d4d4d4;
}

.divider {
  width: 96px;
  height: 1px;
  margin: 28px auto;
  background: linear-gradient(90deg, transparent, var(--orange-light), transparent);
}

.hero-copy {
  max-width: 680px;
  margin: 0 auto 36px;
  color: #bdbdbd;
  font-size: 1.08rem;
}

.actions,
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange));
  color: #050505;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(244, 81, 0, 0.16);
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.tab:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.button.small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.88rem;
}

.button.secondary,
.tab:not(.active) {
  background: rgba(255, 255, 255, 0.04);
  color: white;
  border: 1px solid var(--border);
  box-shadow: none;
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 130px) 24px;
  overflow: hidden;
}

.section-dark {
  background: linear-gradient(to bottom, #090909, #141414 45%, #090909);
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.container.narrow {
  width: min(920px, 100%);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 78px);
  align-items: center;
}

.framed-image {
  position: relative;
  border-radius: 26px;
}

.framed-image::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border: 1px solid rgba(255, 122, 0, 0.24);
  border-radius: 34px;
}

.framed-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
}

.section p,
.feature-grid span,
.member-card p,
.gig-info p,
.footer p {
  color: var(--muted);
}

.feature-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid article,
.member-card,
.gig-card,
.video-card,
.contact-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  backdrop-filter: blur(14px);
}

.feature-grid article {
  padding: 18px;
}

.feature-grid strong {
  display: block;
  color: white;
  margin-bottom: 4px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.member-card {
  overflow: hidden;
  transition: transform 0.25s ease, background 0.25s ease;
}

.member-card:hover {
  transform: translateY(-8px);
  background: var(--panel-strong);
}

.member-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.member-card:hover img {
  filter: grayscale(0);
  transform: scale(1.04);
}

.member-card div {
  padding: 22px;
}

.role {
  color: var(--orange-light) !important;
  font-size: 0.88rem;
  font-weight: 700;
}

.gig-list {
  display: grid;
  gap: 16px;
}

.gig-card {
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.date {
  flex: 0 0 auto;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 122, 0, 0.25);
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(244, 81, 0, 0.22), rgba(255, 179, 71, 0.08));
}

.date strong,
.date span {
  display: block;
  line-height: 1;
  color: var(--orange-light);
}

.date strong {
  font-size: 1.75rem;
}

.date span {
  font-size: 0.74rem;
  font-weight: 800;
}

.gig-info {
  flex: 1 1 auto;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
}

#videos-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.video-card {
  overflow: hidden;
}

.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: black;
}

.video-card h3 {
  padding: 20px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  cursor: zoom-in;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.photo-grid img:first-child,
.photo-grid img:nth-child(9) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1 / 1;
}

.photo-grid img:hover {
  transform: scale(1.025);
  filter: brightness(1.1);
}

.photo-credit {
  margin-top: 22px;
  text-align: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--soft);
}

.contact-layout {
  align-items: start;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-card {
  margin-top: 28px;
  padding: 24px;
}

.contact-info-grid .contact-card {
  margin-top: 0;
}

.contact-card a,
.footer a:hover {
  color: var(--orange-light);
}

.footer {
  border-top: 1px solid var(--border);
  background: #050505;
  padding: 54px 24px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}

.footer h3 {
  display: inline-block;
  font-size: 1.7rem;
}

.footer h4 {
  margin: 0 0 14px;
}

.footer a {
  display: block;
  color: var(--muted);
  margin-bottom: 7px;
}

.copyright {
  margin: 32px auto 0;
  max-width: 1180px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--soft);
  font-size: 0.85rem;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 54px 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .two-col,
  .member-grid,
  .footer-grid,
  #videos-panel {
    grid-template-columns: 1fr 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 30px 24px;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .two-col,
  .member-grid,
  .footer-grid,
  #videos-panel,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gig-card {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding-top: 112px;
  }
}

@media (max-width: 480px) {
  .feature-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid img:first-child,
  .photo-grid img:nth-child(9) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .actions,
  .tabs {
    flex-direction: column;
  }

  .button,
  .tab {
    width: 100%;
  }
}
