:root {
  --bg: #0d0c0b;
  --bg-soft: #17130f;
  --paper: #f6f1e8;
  --paper-2: #fff9ef;
  --text: #fff8ef;
  --muted: #bdb4a8;
  --ink: #1b1713;
  --red: #e5322d;
  --red-hover: #ff453f;
  --amber: #ffb000;
  --line: rgba(255, 248, 239, 0.15);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(13, 12, 11, 0.8);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  object-fit: cover;
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(12px, 2.4vw, 28px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a,
.footer a,
.inline-cta {
  transition: color 0.2s ease;
}

.nav a:hover,
.footer a:hover,
.inline-cta:hover {
  color: var(--amber);
}

.header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  color: var(--text);
  background: var(--red);
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 118px clamp(18px, 5vw, 72px) 54px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 12, 11, 0.96) 0%, rgba(13, 12, 11, 0.76) 45%, rgba(13, 12, 11, 0.28) 100%),
    linear-gradient(0deg, rgba(13, 12, 11, 0.94), rgba(13, 12, 11, 0.04) 55%),
    image-set(url("img/hero.webp") type("image/webp"), url("img/hero.jpg") type("image/jpeg")) center / cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 950px;
}

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

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

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 66px);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.lead {
  max-width: 690px;
  margin-bottom: 26px;
  color: var(--paper);
  font-size: clamp(19px, 2.2vw, 27px);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 920px;
  margin: 26px 0 28px;
  border: 1px solid var(--line);
  background: rgba(13, 12, 11, 0.72);
  box-shadow: var(--shadow);
}

.trust-bar div {
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.trust-bar div:last-child {
  border-right: 0;
}

.trust-bar strong {
  display: block;
  color: var(--amber);
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1;
}

.trust-bar span {
  color: var(--muted);
  font-size: 14px;
}

.hero-actions,
.media-actions,
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
}

.btn.primary {
  color: var(--text);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(229, 50, 45, 0.28);
}

.btn.primary:hover {
  background: var(--red-hover);
}

.btn.secondary {
  border-color: var(--line);
  background: rgba(255, 248, 239, 0.08);
}

.btn.full {
  width: 100%;
}

.quick-proof {
  display: flex;
  overflow-x: auto;
  gap: 1px;
  background: var(--red);
}

.quick-proof span {
  flex: 0 0 auto;
  padding: 18px 28px;
  color: var(--ink);
  background: var(--amber);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.section-title {
  max-width: 1020px;
}

.section-title.compact {
  max-width: 840px;
}

.about,
.trust {
  color: var(--ink);
  background: var(--paper);
}

.about .eyebrow,
.trust .eyebrow,
.booking .eyebrow {
  color: var(--red);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  margin-top: 42px;
}

.group-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.about-copy {
  color: #4b4036;
  font-size: 20px;
}

.human-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.human-facts div {
  min-height: 108px;
  padding: 18px;
  color: var(--text);
  background: var(--ink);
  border-left: 5px solid var(--red);
  border-radius: 8px;
}

.human-facts strong,
.human-facts span {
  display: block;
}

.human-facts span {
  color: var(--muted);
  font-size: 14px;
}

.inline-cta {
  color: var(--red);
  font-weight: 900;
}

.formats,
.gallery-section,
.repertoire {
  background: var(--bg);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.event-card {
  min-height: 210px;
  padding: 24px;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.event-card:hover,
.event-card.active {
  transform: translateY(-4px);
  border-color: var(--red);
  background: #211813;
}

.event-card .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
}

.event-card strong,
.event-card small {
  display: block;
}

.event-card strong {
  margin-bottom: 6px;
  font-size: 22px;
}

.event-card small {
  color: var(--muted);
  font-size: 15px;
}

.format-details {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 16px;
  padding: 24px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
}

.format-details p {
  margin-bottom: 0;
}

.detail-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-row span,
.filter-chips .chip,
.song-card {
  border-radius: 999px;
}

.detail-row span {
  padding: 10px 14px;
  color: var(--text);
  background: var(--ink);
  font-weight: 800;
}

.repertoire {
  background:
    linear-gradient(90deg, rgba(13, 12, 11, 0.92), rgba(13, 12, 11, 0.72)),
    image-set(url("img/promo-poster.webp") type("image/webp"), url("img/promo-poster.jpg") type("image/jpeg")) center / cover;
}

.media-actions {
  margin: 26px 0;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.chip {
  min-height: 44px;
  padding: 10px 16px;
  color: var(--text);
  background: rgba(255, 248, 239, 0.08);
  border: 1px solid var(--line);
  cursor: pointer;
  font-weight: 900;
}

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

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

.song-card {
  min-height: 150px;
  padding: 22px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
}

.song-card strong,
.song-card span {
  display: block;
}

.song-card strong {
  margin-bottom: 10px;
  font-size: 22px;
}

.song-card span {
  color: #5d5045;
}

.song-card.is-hidden {
  display: none;
}

.gallery-slider-wrap {
  position: relative;
  margin-top: 40px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 12px;
  margin-top: 0;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: none;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--text);
  background: rgba(184, 38, 38, 0.94);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-nav span {
  display: block;
  transform: translateY(-1px);
}

.gallery-nav--prev {
  left: 6px;
}

.gallery-nav--next {
  right: 6px;
}

.gallery-nav:active {
  opacity: 0.88;
  transform: translateY(-50%) scale(0.96);
}

.photo {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #000;
  border: 0;
  border-radius: 8px;
  cursor: zoom-in;
}

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

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

.photo picture,
.photo img {
  width: 100%;
  height: 100%;
}

.photo picture {
  display: block;
}

.photo img {
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.photo span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  color: var(--text);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0));
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.photo:hover img {
  opacity: 0.82;
  transform: scale(1.06);
}

.photo:hover span,
.video-card span {
  opacity: 1;
  transform: translateY(0);
}

.video-card::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 56px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.8);
}

.skeleton {
  background: linear-gradient(90deg, #1a1714, #2a221b, #1a1714);
  background-size: 220% 100%;
  animation: shimmer 1.4s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: -220% 0;
  }
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0;
}

.client-logos span {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 16px;
  color: var(--text);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--ink);
}

.rating strong {
  font-size: 54px;
  line-height: 1;
}

.rating span {
  color: var(--red);
  font-size: 24px;
  letter-spacing: 0.08em;
}

.rating p {
  margin: 0;
  color: #5d5045;
}

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

.testimonials article {
  min-height: 250px;
  padding: 22px;
  background: var(--paper-2);
  border: 1px solid rgba(27, 23, 19, 0.12);
  border-radius: 8px;
}

.avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--text);
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.testimonials p {
  color: #4b4036;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 480px);
  gap: clamp(30px, 7vw, 90px);
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background: var(--paper);
  color: var(--ink);
}

.booking-copy p {
  color: #5d5045;
  font-size: 19px;
}

.booking .btn.secondary {
  color: var(--ink);
  border-color: rgba(27, 23, 19, 0.18);
  background: var(--paper-2);
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 900;
}

.consent {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(27, 23, 19, 0.18);
  border-radius: 6px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--amber);
  font-size: 14px;
  text-align: center;
}

.sticky-cta {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: 18px;
  z-index: 35;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  color: var(--text);
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(229, 50, 45, 0.34);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #080706;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.lightbox {
  width: min(980px, calc(100vw - 28px));
  padding: 0;
  background: transparent;
  border: 0;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.84);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  background: #000;
  border-radius: 8px;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  color: var(--text);
  background: var(--red);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav,
  .header-call {
    display: none;
  }

  .nav.is-open {
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    width: 100%;
    justify-self: stretch;
    display: grid;
    gap: 0;
    background: rgba(13, 12, 11, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open a {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 16px clamp(18px, 5vw, 72px);
    border-top: 1px solid var(--line);
    font-size: 17px;
  }

  .trust-bar,
  .cards,
  .repertoire-grid,
  .client-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .format-details,
  .booking {
    grid-template-columns: 1fr;
  }

  .gallery-slider-wrap {
    margin-top: 32px;
  }

  .gallery-nav {
    display: grid;
    place-items: center;
  }

  .gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: unset;
    grid-auto-rows: unset;
    padding-bottom: 6px;
    scrollbar-color: rgba(184, 38, 38, 0.6) rgba(0, 0, 0, 0.25);
  }

  @media (prefers-reduced-motion: reduce) {
    .gallery {
      scroll-behavior: auto;
    }
  }

  .gallery::-webkit-scrollbar {
    height: 8px;
  }

  .gallery::-webkit-scrollbar-thumb {
    background: rgba(184, 38, 38, 0.65);
    border-radius: 8px;
  }

  .gallery .photo {
    box-sizing: border-box;
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    grid-column: unset;
    grid-row: unset;
    min-height: 220px;
    max-height: min(480px, 58vh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
  }

  .gallery .photo picture,
  .gallery .photo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(420px, 52vh);
    object-fit: contain;
    object-position: center center;
  }

  .gallery .photo picture {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gallery .photo:hover img {
    transform: none;
    opacity: 1;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 660px) {
  .site-header {
    padding: 11px 16px;
  }

  .brand span {
    max-width: 168px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 92vh;
    padding: 104px 16px 34px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .lead {
    font-size: 18px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .cards,
  .repertoire-grid,
  .client-logos,
  .human-facts {
    grid-template-columns: 1fr;
  }

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

  .trust-bar div {
    min-height: 82px;
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-bar div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .trust-bar div:nth-child(3) {
    border-bottom: 0;
  }

  .trust-bar div:last-child {
    border-bottom: 0;
  }

  .hero-actions,
  .media-actions,
  .quick-actions,
  .btn {
    width: 100%;
  }

  .section,
  .booking {
    padding: 64px 16px;
  }

  .footer {
    display: grid;
    padding-bottom: 86px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    width: auto;
  }
}

@media (min-width: 1041px) {
  .gallery {
    display: block;
    column-count: 3;
    column-gap: 12px;
  }

  .gallery .photo {
    display: inline-block;
    width: 100%;
    margin: 0 0 12px;
    vertical-align: top;
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    height: auto;
    min-height: 0;
  }

  .gallery .photo picture {
    display: block;
    width: 100%;
    height: auto;
  }

  .gallery .photo img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: unset;
    object-position: unset;
    display: block;
  }

  .gallery .photo:hover img {
    transform: none;
    opacity: 0.88;
  }
}

@media (min-width: 1320px) {
  .gallery {
    column-count: 4;
  }
}
