:root {
  --black: #120f0c;
  --cream: #fffaf1;
  --white: #ffffff;
  --muted: #6d6258;
  --red: #a92b2b;
  --green: #1f6a49;
  --gold: #d8a23c;
  --line: rgba(18, 15, 12, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(11, 8, 6, 0.72), rgba(11, 8, 6, 0.88)),
    url("assets/mariachi-stage.png") center / cover fixed no-repeat;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(11, 8, 6, 0.72), rgba(11, 8, 6, 0));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand-logo {
  width: 44px;
  height: 44px;
  display: block;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
}

.menu-button {
  display: none;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(42px, 8vw, 104px) clamp(18px, 6vw, 78px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 8, 6, 0.92), rgba(23, 58, 38, 0.56), rgba(11, 8, 6, 0.14));
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  justify-items: start;
  text-align: left;
}

.hero-content {
  width: min(720px, 100%);
}

.hero-main-logo {
  width: min(500px, 86vw);
  display: block;
  margin: 0 0 18px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-tagline {
  display: inline-flex;
  margin: 8px 0 0;
  padding: 10px 14px;
  color: var(--gold);
  border: 1px solid rgba(216, 162, 60, 0.42);
  border-radius: 7px;
  background: rgba(18, 15, 12, 0.36);
  font-weight: 900;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: var(--black);
  background: var(--gold);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.section,
.contact {
  padding: clamp(44px, 7vw, 88px) clamp(18px, 6vw, 78px);
}

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

.section-heading p,
.services p,
.contact p,
.footer p {
  color: rgba(255, 255, 255, 0.78);
}

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

.services article,
.gallery img,
.video-grid iframe {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.services article {
  padding: 22px;
}

.carousel-wrap {
  position: relative;
}

.gallery {
  display: grid;
  grid-auto-columns: minmax(280px, 30%);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 48px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  scroll-snap-align: center;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 40px;
  height: 54px;
  transform: translateY(-50%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(18, 15, 12, 0.72);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.carousel-button.prev {
  left: 0;
}

.carousel-button.next {
  right: 0;
}

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

.video-card {
  display: grid;
  gap: 10px;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  min-height: 260px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 28px;
  align-items: start;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.big-button {
  width: 100%;
  min-height: 64px;
  font-size: 1.15rem;
}

.button.facebook {
  color: var(--white);
  background: #1877f2;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 6vw, 78px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .menu-button {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 64px;
    right: 18px;
    left: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    color: var(--white);
    background: rgba(18, 15, 12, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
  }

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

  .nav a {
    padding: 12px;
  }

  .hero {
    min-height: 76vh;
    background-position: 58% center;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .services,
  .gallery,
  .video-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.4rem, 15vw, 4.2rem);
  }

  .button {
    width: 100%;
  }

  .gallery {
    grid-auto-columns: 86%;
    padding-right: 44px;
    padding-left: 44px;
  }

  .brand span {
    max-width: 180px;
  }
}
