:root {
  color-scheme: light;
  --ink: #171715;
  --muted: #68645d;
  --paper: #fbfaf5;
  --line: #ded8ca;
  --gold: #d9a441;
  --red: #b94135;
  --green: #2b7d73;
  --blue: #285f8f;
  --charcoal: #242320;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(32, 29, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  align-items: center;
  background: rgba(251, 250, 245, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(222, 216, 202, 0.78);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 0 5vw;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand,
.header-tools,
.site-nav,
.instagram-button,
.hero-actions,
.filters {
  align-items: center;
  display: flex;
}

.header-tools {
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
}

.brand-logo-frame {
  background: var(--white);
  border-radius: 50%;
  display: block;
  height: 54px;
  overflow: hidden;
  position: relative;
  width: 54px;
}

.brand-logo {
  height: 66px;
  left: 50%;
  max-width: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}

.site-nav {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  gap: 28px;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: none;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.menu-toggle svg {
  height: 22px;
  width: 22px;
}

.close-icon {
  display: none;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--red);
}

.instagram-button {
  border: 1px solid var(--line);
  color: var(--red);
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
  width: 42px;
}

.instagram-button svg {
  height: 21px;
  width: 21px;
}

.instagram-button:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  min-height: calc(100vh - 72px);
  overflow: hidden;
}

.hero-media {
  min-height: 640px;
  position: relative;
}

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

.hero-media::after {
  background: linear-gradient(90deg, rgba(23, 23, 21, 0), rgba(23, 23, 21, 0.2));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-copy {
  align-self: center;
  container-type: inline-size;
  padding: 8vw 7vw;
}

.eyebrow {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: min(8.5rem, 20cqi);
  letter-spacing: 0;
  line-height: 0.88;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-text,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
.filter-button {
  border: 1px solid var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 46px;
  padding: 12px 18px;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
}

.button-secondary,
.filter-button {
  background: transparent;
  color: var(--ink);
}

.button:hover,
.filter-button:hover,
.filter-button.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.quick-panel {
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 5vw;
}

.about-band {
  background: var(--white);
  display: grid;
  gap: 7vw;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  padding: 104px 5vw;
}

.about-intro {
  max-width: 520px;
}

.about-intro h2 {
  margin-bottom: 0;
}

.about-content {
  max-width: 900px;
}

.about-content > p {
  color: var(--muted);
  line-height: 1.75;
}

.about-content .about-lead {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 22px;
}

.about-values {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 40px 0 28px;
}

.about-values article {
  border-right: 1px solid var(--line);
  padding: 28px 24px 28px 0;
}

.about-values article + article {
  padding-left: 24px;
}

.about-values article:last-child {
  border-right: 0;
}

.about-values span {
  color: var(--red);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.about-values p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.about-goal {
  margin-bottom: 0;
}

.about-goal strong {
  color: var(--red);
}

.impact-band {
  background: var(--paper);
}

.impact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.impact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.impact-kicker {
  color: var(--red);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.impact-card p {
  color: var(--muted);
  flex: 1 1 auto;
  line-height: 1.65;
  margin-bottom: 18px;
}

.impact-quotes {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.impact-quotes blockquote {
  background: var(--white);
  border-left: 4px solid var(--gold);
  margin: 0;
  padding: 26px 28px;
}

.impact-quotes p {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 14px;
}

.impact-quotes cite {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
}

.impact-actions {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.impact-actions a {
  background: var(--charcoal);
  color: var(--white);
  padding: 24px;
  transition: background-color 160ms ease;
}

.impact-actions a:hover {
  background: var(--red);
}

.impact-actions span {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.impact-actions p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.team-band {
  align-items: end;
  background: #eceff1;
  display: grid;
  gap: 7vw;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
}

.team-heading {
  max-width: 680px;
}

.team-heading > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.team-empty {
  align-items: center;
  border-bottom: 1px solid #c9cfd2;
  border-top: 1px solid #c9cfd2;
  display: grid;
  gap: 24px;
  grid-template-columns: 92px 1fr;
  min-height: 184px;
  padding: 28px 0;
}

.team-empty-mark {
  align-items: center;
  background: var(--red);
  color: var(--white);
  display: flex;
  font-size: 2.2rem;
  font-weight: 800;
  height: 92px;
  justify-content: center;
  width: 92px;
}

.team-empty p:last-child {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.quick-panel article {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 132px;
  padding: 30px 28px;
}

.quick-panel article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stat {
  display: block;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
}

.label {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 0.92rem;
  margin-top: 10px;
}

.section {
  padding: 104px 5vw;
}

.section-heading {
  max-width: 760px;
}

.filters {
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0;
}

.filter-button {
  border-color: var(--line);
}

.media-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}

.media-card {
  background: var(--white);
  border: 1px solid var(--line);
  grid-column: span 4;
  min-height: 100%;
  overflow: hidden;
}

.media-card.featured {
  grid-column: span 6;
}

.media-thumb {
  background: var(--charcoal);
  position: relative;
}

.media-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.media-play {
  align-items: center;
  background: rgba(23, 23, 21, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  gap: 10px;
  left: 18px;
  min-height: 44px;
  padding: 10px 14px;
  position: absolute;
  top: 18px;
}

.media-play::before {
  border-bottom: 8px solid transparent;
  border-left: 13px solid currentColor;
  border-top: 8px solid transparent;
  content: "";
  display: inline-block;
  height: 0;
  width: 0;
}

.media-play:hover {
  background: var(--red);
}

.media-card-content {
  padding: 20px;
}

.tag-row {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.play-pill {
  background: var(--green);
  color: var(--white);
  padding: 6px 9px;
}

.performance-band {
  background: #f0ece2;
}

.performance-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  margin-top: 42px;
}

.feature-show {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-show img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.feature-show div {
  padding: 30px;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.show-list {
  display: grid;
  gap: 14px;
}

.show-list article {
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 86px 1fr;
  padding: 22px;
}

.show-list time {
  background: var(--gold);
  color: var(--ink);
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 800;
  justify-content: center;
  padding: 10px 8px;
}

.show-list p,
.schedule-card p,
.media-card p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.schedule-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin-top: 42px;
}

.schedule-card {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 230px;
  padding: 28px;
}

.schedule-card.emphasized {
  background: var(--green);
  color: var(--white);
}

.schedule-card.emphasized p,
.schedule-card.emphasized .place {
  color: rgba(255, 255, 255, 0.76);
}

.day {
  color: var(--red);
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 38px;
  text-transform: uppercase;
}

.emphasized .day {
  color: #ffe0a0;
}

.place {
  color: var(--muted);
  display: block;
  font-weight: 800;
  margin-top: 28px;
}

.contact-band {
  align-items: start;
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.66);
}

.contact-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 0;
}

.contact-grid a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.05rem;
  font-weight: 800;
  min-height: 138px;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 24px;
}

.contact-grid a:hover {
  background: var(--red);
}

.contact-grid span {
  color: rgba(255, 255, 255, 0.58);
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.site-footer {
  align-items: center;
  background: #11110f;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  justify-content: space-between;
  padding: 28px 5vw;
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 800;
}

.video-modal {
  align-items: center;
  background: rgba(17, 17, 15, 0.86);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 28px;
  position: fixed;
  z-index: 40;
}

.video-modal.open {
  display: flex;
}

.video-modal-panel {
  background: var(--paper);
  box-shadow: var(--shadow);
  max-height: calc(100vh - 56px);
  max-width: 1080px;
  overflow: auto;
  position: relative;
  width: min(100%, 1080px);
}

.video-modal video {
  background: #000000;
  display: block;
  max-height: 68vh;
  width: 100%;
}

.video-modal-copy {
  padding: 24px;
}

.video-modal-copy h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.video-modal-copy p:last-child {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.modal-close {
  background: var(--red);
  border: 0;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  height: 44px;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 44px;
  z-index: 2;
}

@media (max-width: 1024px) {
  .site-header {
    padding: 9px 24px;
  }

  .header-tools {
    gap: 10px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(32, 29, 22, 0.12);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    max-height: calc(100vh - 73px);
    overflow-y: auto;
    padding: 8px 24px 18px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .site-nav a {
    border-top: 1px solid var(--line);
    padding: 16px 4px;
  }

  .site-nav a:first-child {
    border-top: 0;
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .site-header.menu-open .menu-icon {
    display: none;
  }

  .site-header.menu-open .close-icon {
    display: block;
  }
}

@media (max-width: 940px) {
  .hero,
  .about-band,
  .team-band,
  .performance-layout,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-values article,
  .about-values article + article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 24px 0;
  }

  .about-values article:last-child {
    border-bottom: 0;
  }

  .hero-media {
    min-height: 430px;
  }

  .quick-panel,
  .schedule-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-grid,
  .impact-actions,
  .impact-quotes {
    grid-template-columns: 1fr;
  }

  .media-card,
  .media-card.featured {
    grid-column: span 6;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-logo-frame {
    height: 48px;
    width: 48px;
  }

  .brand-logo {
    height: 60px;
  }

  .hero-copy,
  .about-band,
  .section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-media {
    min-height: 330px;
  }

  .team-empty {
    grid-template-columns: 72px 1fr;
  }

  .team-empty-mark {
    height: 72px;
    width: 72px;
  }

  .quick-panel,
  .schedule-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    padding: 0;
  }

  .quick-panel article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .media-card,
  .media-card.featured {
    grid-column: 1 / -1;
  }

  .show-list article {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .video-modal {
    padding: 16px;
  }

  .media-play {
    left: 12px;
    top: 12px;
  }
}
