:root {
  --ink: #151515;
  --cream: #fff8ee;
  --paper: #fffdf8;
  --coral: #f05d4e;
  --mint: #47b39d;
  --gold: #f2b84b;
  --plum: #552b55;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 14% 18%, rgba(71, 179, 157, .12), transparent 28%),
    radial-gradient(circle at 88% 36%, rgba(240, 93, 78, .1), transparent 26%),
    var(--cream);
  color: var(--ink);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 18px clamp(16px, 4vw, 52px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(21, 21, 21, .72);
  color: white;
  backdrop-filter: blur(18px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .18) inset,
    0 18px 42px rgba(0, 0, 0, .18),
    0 42px 80px rgba(0, 0, 0, .16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(242, 184, 75, .55);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 1px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  color: rgba(255, 255, 255, .78);
}

.nav-links a:hover {
  color: white;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
}

.lang-switch button {
  width: 42px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, .74);
  font-weight: 800;
  cursor: pointer;
}

.lang-switch button.active {
  background: white;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  padding: 150px clamp(20px, 5vw, 72px) 38px;
  box-shadow:
    0 34px 90px rgba(21, 21, 21, .28),
    0 90px 140px rgba(85, 43, 85, .18);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: -34px;
  height: 78px;
  border-radius: 50%;
  background: rgba(21, 21, 21, .3);
  filter: blur(28px);
  z-index: 1;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    radial-gradient(circle at 18% 72%, rgba(240, 93, 78, .52), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .32) 54%, rgba(0, 0, 0, .55)),
    linear-gradient(0deg, rgba(0, 0, 0, .74), transparent 38%);
}

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

.hero-logo {
  width: clamp(76px, 9vw, 126px);
  height: clamp(76px, 9vw, 126px);
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 26px;
  background: var(--paper);
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, .88),
    0 22px 58px rgba(0, 0, 0, .34);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--coral);
}

.hero h1 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(74px, 13vw, 184px);
  line-height: .82;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.28;
  color: rgba(255, 255, 255, .88);
}

.hero-actions,
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .32);
  color: white;
}

.btn-light {
  background: white;
  color: var(--ink);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, .36);
  color: white;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 900px;
  margin-top: 76px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, .11);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 36px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px clamp(20px, 4vw, 40px);
}

.intro-grid {
  position: relative;
  z-index: 4;
  margin-top: -26px;
  border-radius: 14px 14px 0 0;
  background: var(--cream);
  box-shadow:
    0 -26px 70px rgba(21, 21, 21, .12),
    0 22px 70px rgba(21, 21, 21, .08);
  display: grid;
  grid-template-columns: 1.1fr .95fr;
  gap: 42px;
  align-items: start;
}

.intro-grid::before,
.split-section::before,
.gallery-section::before {
  content: "";
  position: absolute;
  left: clamp(22px, 5vw, 72px);
  right: clamp(22px, 5vw, 72px);
  top: -18px;
  height: 36px;
  border-radius: 50%;
  background: rgba(21, 21, 21, .12);
  filter: blur(22px);
  pointer-events: none;
}

.section-heading h2,
.music-band h2,
.event-copy h2,
.gallery-head h2,
.join-card h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .96;
  letter-spacing: 0;
}

.intro-copy {
  display: grid;
  gap: 20px;
  font-size: 18px;
  line-height: 1.72;
  color: rgba(21, 21, 21, .74);
}

.intro-copy p {
  margin: 0;
}

.feature-panel {
  grid-column: 2;
  padding: 28px;
  border: 1px solid rgba(21, 21, 21, .12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 18px 38px rgba(21, 21, 21, .08),
    0 34px 86px rgba(21, 21, 21, .08);
}

.conductor-card p {
  margin: 0 0 12px;
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}

.conductor-card h3 {
  margin: 0 0 10px;
  font-family: Fraunces, Georgia, serif;
  font-size: 34px;
}

.conductor-card span {
  color: rgba(21, 21, 21, .68);
  line-height: 1.6;
}

.music-band {
  position: relative;
  z-index: 3;
  max-width: none;
  background: var(--ink);
  color: white;
  box-shadow:
    0 -28px 70px rgba(21, 21, 21, .14),
    0 30px 86px rgba(21, 21, 21, .2),
    inset 0 1px 0 rgba(255, 255, 255, .08),
    inset 0 -42px 90px rgba(0, 0, 0, .2);
}

.music-band > div {
  max-width: 1160px;
  margin: 0 auto;
}

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

.repertoire-grid article {
  min-height: 260px;
  padding: 26px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .1) inset,
    0 24px 54px rgba(0, 0, 0, .22);
}

.repertoire-grid span {
  color: var(--gold);
  font-weight: 900;
}

.repertoire-grid h3 {
  margin: 52px 0 12px;
  font-size: 25px;
}

.repertoire-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
}

.split-section {
  position: relative;
  z-index: 2;
  background: var(--cream);
  border-radius: 0 0 14px 14px;
  box-shadow:
    0 -18px 60px rgba(21, 21, 21, .08),
    0 26px 84px rgba(21, 21, 21, .09);
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 50px;
}

.event-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(21, 21, 21, .7);
  font-size: 18px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--plum);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  padding: 24px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid rgba(21, 21, 21, .1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 16px 46px rgba(21, 21, 21, .08);
}

.timeline time {
  color: var(--mint);
  font-weight: 900;
}

.timeline h3,
.timeline p {
  margin: 0;
}

.timeline p {
  margin-top: 8px;
  color: rgba(21, 21, 21, .64);
}

.media-section {
  padding-top: 24px;
}

.compact {
  max-width: 720px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.social-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 8px;
  color: white;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 18px 42px rgba(21, 21, 21, .14),
    0 1px 0 rgba(255, 255, 255, .18) inset;
  transition: transform .25s ease, box-shadow .25s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 26px 64px rgba(21, 21, 21, .18),
    0 1px 0 rgba(255, 255, 255, .22) inset;
}

.social-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% 30%;
  height: 140px;
  background: rgba(255, 255, 255, .18);
  transform: rotate(-10deg);
}

.social-card span,
.social-card strong {
  position: relative;
  z-index: 1;
}

.social-card span {
  font-weight: 900;
  opacity: .8;
}

.social-card strong {
  font-size: 24px;
  line-height: 1.1;
}

.facebook {
  background: #1877f2;
}

.youtube {
  background: #d71920;
}

.instagram {
  background: linear-gradient(135deg, #8134af, #dd2a7b 54%, #feda77);
}

.gallery-section {
  position: relative;
  z-index: 2;
  padding-top: 42px;
  background: var(--cream);
  box-shadow: 0 -22px 70px rgba(21, 21, 21, .08);
}

.gallery-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

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

.gallery-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border-radius: 8px;
  background: var(--paper);
  color: rgba(21, 21, 21, .66);
  font-weight: 800;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  background: var(--ink);
  box-shadow:
    0 16px 36px rgba(21, 21, 21, .12),
    0 32px 74px rgba(21, 21, 21, .1);
  transition: transform .28s ease, box-shadow .28s ease;
}

.photo-card.tall {
  grid-row: span 2;
  grid-column: span 2;
}

.photo-card.wide {
  grid-column: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.photo-card:hover img {
  transform: scale(1.055);
}

.photo-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 24px 48px rgba(21, 21, 21, .16),
    0 44px 96px rgba(21, 21, 21, .14);
}

.photo-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(21, 21, 21, .72);
  color: white;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.facebook-embed {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid rgba(21, 21, 21, .1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 22px 70px rgba(21, 21, 21, .1);
}

.facebook-embed iframe {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.join-section {
  position: relative;
  z-index: 4;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  background: var(--plum);
  color: white;
  box-shadow:
    0 -34px 90px rgba(85, 43, 85, .18),
    0 -52px 120px rgba(21, 21, 21, .12),
    inset 0 28px 70px rgba(255, 255, 255, .06);
}

.join-section::before {
  content: "";
  position: absolute;
  left: clamp(22px, 5vw, 72px);
  right: clamp(22px, 5vw, 72px);
  top: -28px;
  height: 64px;
  border-radius: 50%;
  background: rgba(85, 43, 85, .24);
  filter: blur(28px);
  pointer-events: none;
}

.join-card,
.info-list {
  max-width: 900px;
  margin-left: auto;
}

.join-card {
  padding: clamp(30px, 5vw, 64px);
}

.join-card p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
  line-height: 1.65;
}

.info-list {
  width: 100%;
  margin-right: auto;
  display: grid;
  align-content: stretch;
  gap: 1px;
  background: rgba(255, 255, 255, .16);
}

.info-list div {
  display: grid;
  align-content: center;
  padding: 28px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08) inset;
}

.info-list span {
  color: rgba(255, 255, 255, .62);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}

.info-list strong {
  margin-top: 10px;
  font-size: 22px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

.footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
  color: rgba(255, 255, 255, .72);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 26px;
  background: rgba(0, 0, 0, .88);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-height: 86vh;
  border-radius: 8px;
}

.lightbox button {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 18px;
    background: rgba(21, 21, 21, .94);
  }

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

  .intro-grid,
  .split-section,
  .join-section {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    grid-column: auto;
  }

  .repertoire-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

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

  .join-card,
  .info-list {
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px;
  }

  .nav-wrap {
    border-radius: 18px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 94vh;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 92px);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

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

  .gallery-head,
  .footer {
    display: block;
  }

  .footer-links {
    margin-top: 22px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .photo-card.tall,
  .photo-card.wide {
    grid-column: auto;
    grid-row: auto;
  }
}
