:root {
  --black: #090909;
  --wine: #890717;
  --gold: #d7a33d;
  --cream: #f7f3ea;
  --green: #16a34a;
  --text: #29231d;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  font-family: Montserrat,Arial,sans-serif;
  background: var(--cream);
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1160px,92%);
  margin: auto;
}
.topbar {
  height: 82px;
  background: rgba(6,6,6,.97);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #292929;
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: 225px;
  max-height: 68px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}
.nav-links a {
  transition: .2s;
}
.nav-links a:hover,.nav-links a.active {
  color: var(--gold);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  transition: .2s;
  border: 1px solid transparent;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--green);
  color: #fff;
}
.btn-outline {
  border-color: #d7b66c;
  color: #fff;
  background: rgba(0,0,0,.25);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 24px;
}
.hero {
  min-height: 580px;
  color: #fff;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg,rgba(0,0,0,.94) 0%,rgba(0,0,0,.7) 40%,rgba(0,0,0,.12) 75%),url('fotografias/mariachi-sol-azteca-cdmx.jpeg') center 41%/cover;
}
.hero-content {
  max-width: 620px;
  padding: 75px 0 55px;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}
.hero h1,.page-hero h1 {
  font-family: 'Playfair Display',Georgia,serif;
  text-transform: uppercase;
  font-size: 55px;
  line-height: 1.04;
  margin: 12px 0 18px;
}
.hero h1 span {
  color: var(--gold);
}
.hero p {
  font-size: 17px;
  line-height: 1.65;
  max-width: 550px;
  color: #eee;
}
.actions {
  display: flex;
  gap: 14px;
  margin-top: 27px;
  flex-wrap: wrap;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 60px;
  border-top: 1px solid #5e523c;
  padding-top: 23px;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}
.benefit i {
  font-size: 25px;
  color: var(--gold);
}
section {
  padding: 72px 0;
}
.section-title {
  text-align: center;
  margin: 0 0 35px;
  font: 700 36px 'Playfair Display',Georgia,serif;
  text-transform: uppercase;
  color: #17130f;
}
.section-title:after {
  content: '✣';
  display: block;
  font-size: 18px;
  color: var(--wine);
  margin-top: 4px;
}
.section-intro {
  text-align: center;
  max-width: 760px;
  margin: -20px auto 38px;
  line-height: 1.7;
  color: #695f54;
}
.services {
  background-color: #fbfaf6;
  background-image: radial-gradient(#eadbbc 1px,transparent 1px);
  background-size: 18px 18px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.service-card {
  height: 315px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 8px 22px #0002;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}
.service-card:hover img {
  transform: scale(1.06);
}
.service-card:after {
  content: '';
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(transparent,#050505);
}
.service-copy {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  padding: 22px;
  text-align: center;
}
.service-copy h3 {
  font: 700 23px 'Playfair Display',serif;
  margin: 0 0 8px;
}
.service-copy p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}
.about {
  background: #0b0b0b;
  color: #fff;
  padding: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: 410px;
}
.about-image {
  background: url('fotografias/mariachi-profesional-sol-azteca.jpeg') center 35%/cover;
}
.about-copy {
  padding: 58px 8vw 52px 55px;
}
.about .section-title {
  color: #fff;
  text-align: left;
  margin-bottom: 18px;
}
.about .section-title:after {
  text-align: left;
}
.about p {
  line-height: 1.75;
  color: #ddd;
}
.ticks {
  display: flex;
  gap: 26px;
  margin-top: 30px;
  font-size: 13px;
}
.ticks span {
  display: flex;
  gap: 9px;
  align-items: center;
}
.ticks i {
  color: var(--gold);
  font-size: 20px;
}
.gallery {
  background: #f8f5ee;
}
.gallery-track {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}
.gallery-item {
  height: 230px;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
  cursor: pointer;
}
.gallery-item img:hover {
  transform: scale(1.07);
}
.testimonials {
  background: var(--wine);
  color: #fff;
}
.testimonials .section-title {
  color: #fff;
}
.testimonials .section-title:after {
  color: var(--gold);
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.review {
  background: #fff;
  color: #41372e;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 20px #0002;
}
.stars {
  color: #f2b638;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.review p {
  font: italic 15px/1.6 Georgia,serif;
}
.review strong {
  font-size: 13px;
}
.cta {
  background: linear-gradient(90deg,#070707eb,#070707e0),url('fotografias/mariachi-profesional-sol-azteca.jpeg') center/cover;
  color: #fff;
  padding: 35px 0;
}
.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta .brand img {
  width: 220px;
}
.cta h2 {
  font: 700 22px 'Playfair Display',serif;
  margin: 0 0 12px;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #222;
  color: var(--gold);
}
.footer {
  background: #020202;
  color: #999;
  text-align: center;
  font-size: 12px;
  padding: 17px;
}
.float-wa {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #20ba57;
  color: #fff;
  font-size: 30px;
  z-index: 40;
  box-shadow: 0 5px 20px #0005;
}
.page-hero {
  min-height: 360px;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  background: linear-gradient(#0009,#000b),var(--page-bg) center/cover;
}
.page-hero h1 {
  font-size: 48px;
  margin-bottom: 13px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
}
.breadcrumb a {
  color: var(--gold);
}
.detail {
  background: #fff;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 55px;
  align-items: center;
}
.detail-img {
  height: 490px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 18px 18px 0 #efe2c7;
}
.detail h2 {
  font: 700 38px 'Playfair Display',serif;
  margin: 0 0 20px;
}
.detail p {
  line-height: 1.8;
  color: #62584d;
}
.feature-list {
  padding: 0;
  list-style: none;
  margin: 25px 0;
}
.feature-list li {
  margin: 12px 0;
}
.feature-list i {
  color: var(--gold);
  margin-right: 11px;
}
.process {
  background: #f6f0e5;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}
.step {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  border-top: 4px solid var(--gold);
  text-align: center;
}
.step i {
  font-size: 31px;
  color: var(--wine);
}
.step h3 {
  font-family: 'Playfair Display',serif;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: #000e;
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vw;
}
.lightbox.show {
  display: flex;
}
.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
}
.lightbox button {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}
@media(max-width:900px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    background: #080808;
    display: none;
    flex-direction: column;
    padding: 25px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links .btn {
    width: 90%;
  }
  .hero h1 {
    font-size: 44px;
  }
  .benefits {
    grid-template-columns: repeat(2,1fr);
  }
  .service-grid,.gallery-track {
    grid-template-columns: repeat(2,1fr);
  }
  .about-grid,.detail-grid {
    grid-template-columns: 1fr;
  }
  .about-image {
    height: 390px;
  }
  .reviews,.steps {
    grid-template-columns: 1fr;
  }
  .detail-img {
    height: 400px;
  }
  .cta-row {
    flex-direction: column;
    text-align: center;
  }
}
@media(max-width:560px) {
  .brand img {
    width: 170px;
  }
  .topbar {
    height: 72px;
  }
  .nav-links {
    top: 72px;
  }
  .hero {
    min-height: 680px;
    background-position: 64% center;
  }
  .hero-content {
    padding-top: 90px;
  }
  .hero h1,.page-hero h1 {
    font-size: 37px;
  }
  .benefits {
    grid-template-columns: 1fr 1fr;
    gap: 18px 8px;
    margin-top: 45px;
  }
  .service-grid,.gallery-track {
    grid-template-columns: 1fr;
  }
  .service-card {
    height: 300px;
  }
  .about-copy {
    padding: 45px 6%;
  }
  .ticks {
    flex-direction: column;
  }
  .gallery-item {
    height: 270px;
  }
  .section-title {
    font-size: 29px;
  }
  .cta .brand {
    display: none;
  }
  .page-hero {
    min-height: 310px;
  }
  .detail {
    padding-top: 45px;
  }
  .detail-img {
    height: 340px;
    box-shadow: 10px 10px 0 #efe2c7;
  }
}
