:root {
  --ink: #1b1328;
  --muted: #6d6178;
  --paper: #fffaf4;
  --white: #ffffff;
  --pink: #ff3f8e;
  --orange: #ff8a24;
  --yellow: #ffd23f;
  --teal: #18c7b8;
  --violet: #6d39ff;
  --lime: #b8f23c;
  --shadow: 0 22px 60px rgba(27, 19, 40, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 28px));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.84);
  box-shadow: 0 14px 40px rgba(27, 19, 40, 0.12);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.brand,
.nav,
.hero-actions,
.hero-facts,
.filter-row,
.video-heading,
.social-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--orange) 55%, var(--yellow));
  font-weight: 900;
  font-size: 1.35rem;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav {
  gap: 18px;
  color: #3a3047;
  font-size: 0.92rem;
}

.nav a,
.header-cta,
.button,
.service-card a,
.social-links a,
.whatsapp-float {
  text-decoration: none;
}

.nav a:hover {
  color: var(--pink);
}

.header-cta {
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: #17111f;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27, 19, 40, 0.88), rgba(27, 19, 40, 0.44), rgba(27, 19, 40, 0.2)),
    url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 63, 142, 0.44), transparent 34%),
    linear-gradient(315deg, rgba(24, 199, 184, 0.36), transparent 36%),
    radial-gradient(circle at 70% 65%, rgba(255, 210, 63, 0.46), transparent 24%);
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, calc(100% - 32px));
  min-height: 92vh;
  align-content: center;
  margin: 0 auto;
  padding: 116px 0 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-logo {
  width: min(520px, 86vw);
  height: auto;
  margin: 0 0 22px;
  padding: clamp(12px, 2vw, 18px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

h2 {
  max-width: 790px;
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.12;
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 26px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

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

.button,
.filter-button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
}

.button.primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 12px 26px rgba(255, 210, 63, 0.28);
}

.button.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
}

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

.hero-facts div {
  width: 160px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 26px;
}

.intro-band {
  padding-top: 56px;
}

.intro-grid,
.services-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
}

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

.intro-grid article,
.service-card {
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.intro-grid article {
  padding: 24px;
}

.intro-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--teal);
  font-weight: 900;
}

.intro-grid p,
.service-card p,
.radio-copy p,
.mexitaly-content p {
  color: var(--muted);
}

.services-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.service-card {
  min-height: 210px;
  padding: 26px;
}

.service-card.spotlight {
  grid-row: span 2;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 63, 142, 0.95), rgba(109, 57, 255, 0.94)),
    url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=900&q=80") center / cover;
}

.service-card.spotlight p {
  color: rgba(255, 255, 255, 0.88);
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  padding: 12px 15px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.gallery-section {
  padding-top: 74px;
}

.filter-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-button {
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(27, 19, 40, 0.08);
}

.filter-button.active {
  color: var(--white);
  background: var(--pink);
}

.gallery-grid {
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
}

.photo-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.photo-card.tall {
  grid-row: span 2;
  min-height: 476px;
}

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

.photo-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  content: "";
  background: linear-gradient(transparent, rgba(27, 19, 40, 0.84));
}

.photo-card span {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 14px;
  left: 14px;
  color: var(--white);
  font-weight: 900;
}

.photo-card.hidden {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 12px;
  padding: 78px 22px 28px;
  background: rgba(8, 7, 15, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 0;
  margin: 0;
}

.lightbox-figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 150px);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.lightbox-figure figcaption {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-align: center;
}

.lightbox-close,
.lightbox-arrow {
  border: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-arrow {
  width: 64px;
  height: 78px;
  border-radius: 8px;
  font-size: 3rem;
}

.lightbox-arrow:hover,
.lightbox-close:hover {
  background: var(--pink);
}

.video-band {
  padding: 84px max(16px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(27, 19, 40, 0.94), rgba(54, 20, 90, 0.9)),
    url("https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.video-heading {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.video-heading h2 {
  max-width: 680px;
}

.toggle-videos {
  color: var(--ink);
  background: var(--teal);
}

.video-shell {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  gap: 14px;
  align-items: center;
}

.video-shell.collapsed {
  display: none;
}

.video-track {
  overflow: hidden;
}

.video-card {
  display: none;
  grid-template-columns: minmax(260px, 0.95fr) 1fr;
  gap: 24px;
  align-items: center;
  min-height: 340px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.video-card.active {
  display: grid;
}

.video-card small {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.video-card p {
  color: rgba(255, 255, 255, 0.78);
}

.video-thumb {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.video-embed {
  overflow: hidden;
  width: min(100%, 330px);
  justify-self: center;
  border-radius: 8px;
  background: #05070c;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  aspect-ratio: 9 / 16;
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumb.wedding {
  background-image: linear-gradient(rgba(255, 63, 142, 0.16), rgba(27, 19, 40, 0.38)), url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=900&q=80");
}

.video-thumb.party {
  background-image: linear-gradient(rgba(24, 199, 184, 0.16), rgba(27, 19, 40, 0.38)), url("https://images.unsplash.com/photo-1530103862676-de8c9debad1d?auto=format&fit=crop&w=900&q=80");
}

.video-thumb.concert {
  background-image: linear-gradient(rgba(255, 138, 36, 0.16), rgba(27, 19, 40, 0.38)), url("https://images.unsplash.com/photo-1506157786151-b8491531f063?auto=format&fit=crop&w=900&q=80");
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  transform: translate(-50%, -50%);
}

.carousel-control {
  width: 50px;
  height: 70px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  font-size: 2.2rem;
}

.radio-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
}

.soundcloud-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.soundcloud-frame iframe {
  display: block;
}

.audio-turquesa {
  display: grid;
  gap: 26px;
}

.audio-turquesa-header {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 380px);
  gap: 28px;
  align-items: center;
}

.audio-turquesa-header p {
  max-width: 680px;
  color: var(--muted);
}

.audio-turquesa-logo {
  width: 100%;
  height: auto;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.equipment-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)),
    url("assets/audio_turquesa_logo.png") center / 520px auto no-repeat;
  box-shadow: var(--shadow);
}

.equipment-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.equipment-table caption {
  padding: 18px 18px 10px;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
}

.equipment-table th,
.equipment-table td {
  width: 50%;
  padding: 10px 16px;
  border: 1px solid rgba(27, 19, 40, 0.18);
  text-align: left;
}

.equipment-table th {
  color: var(--white);
  background: linear-gradient(135deg, #082133, #12cfc4);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.equipment-table tbody tr:nth-child(even) {
  background: rgba(24, 199, 184, 0.08);
}

.equipment-notes {
  display: grid;
  gap: 6px;
  max-width: 940px;
}

.equipment-notes p {
  margin: 0;
  color: #8b8491;
  font-size: 0.78rem;
}

.mexitaly {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--white);
}

.mexitaly-image {
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: #101821;
}

.mexitaly-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mexitaly-content {
  display: grid;
  align-content: center;
  padding: clamp(34px, 7vw, 88px);
}

.social-links {
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  padding: 12px 15px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.social-links a:nth-child(2) {
  background: var(--pink);
}

.social-links a:nth-child(3) {
  color: var(--ink);
  background: var(--yellow);
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 84px 16px 108px;
  text-align: center;
}

.final-cta h2 {
  max-width: 850px;
}

.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: #13b757;
  box-shadow: 0 16px 34px rgba(19, 183, 87, 0.34);
  font-weight: 900;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 840px;
  }

  .hero-content {
    min-height: 840px;
  }

  .intro-grid,
  .services-grid,
  .radio-section,
  .audio-turquesa-header,
  .mexitaly {
    grid-template-columns: 1fr;
  }

  .service-card.spotlight {
    grid-row: auto;
  }

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

  .video-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-shell {
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
  }

  .lightbox {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    padding-inline: 12px;
  }

  .lightbox-arrow {
    width: 50px;
    height: 64px;
  }

  .video-card {
    grid-template-columns: 1fr;
  }

  .video-thumb {
    min-height: 240px;
  }

  .mexitaly-image {
    min-height: 330px;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .brand small {
    display: none;
  }

  .header-cta {
    padding-inline: 12px;
  }

  .hero-actions,
  .hero-actions .button,
  .filter-button {
    width: 100%;
  }

  .hero-facts div {
    width: calc(50% - 5px);
  }

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

  .photo-card,
  .photo-card.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .video-shell {
    grid-template-columns: 1fr;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    align-content: center;
    padding-top: 76px;
  }

  .lightbox-figure {
    grid-column: 1 / -1;
    order: 1;
  }

  .lightbox-prev,
  .lightbox-next {
    order: 2;
    width: 100%;
    height: 48px;
  }

  .carousel-control {
    width: 100%;
    height: 46px;
  }
}
