@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Prata&family=Vidaloka&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
  --bg-dark: #090807;
  --bg-card: #12100e;
  --bg-card-hover: #191613;
  --accent-gold: #c5a059;
  --accent-gold-light: #e4c284;
  --accent-terracotta: #9e4733;
  --accent-terracotta-light: #ba5a43;
  --text-light: #efebe4;
  --text-muted: #9c958d;
  --text-dim: #6b635a;
  
  --font-serif: 'DM Serif Display', 'Prata', 'Vidaloka', 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  --border-gold: rgba(197, 160, 89, 0.15);
  --border-gold-hover: rgba(197, 160, 89, 0.4);
  
  --accent-wine: #62151d;
  --accent-wine-light: #7a1c24;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* --- LUIS MIGUEL VIP BANNER SHOWCASE --- */
.luis-miguel-banner {
  margin-top: 4rem;
  background: linear-gradient(135deg, #181410 0%, #090807 100%);
  border: 1px solid var(--border-gold);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-template-areas: 
    "image header"
    "image content";
  gap: 1.5rem 2.5rem;
  align-items: center;
}

.vip-badge {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: var(--accent-gold);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.35rem 1rem;
  z-index: 2;
  border-radius: 2px;
}

.luis-miguel-header {
  grid-area: header;
}

.luis-miguel-title {
  font-size: 2rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

.luis-miguel-image-wrapper {
  grid-area: image;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  max-height: 400px;
  border-radius: 4px;
}

.luis-miguel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: var(--transition-smooth);
}

.luis-miguel-content {
  grid-area: content;
}

.luis-miguel-desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.luis-miguel-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

.luis-miguel-note {
  font-size: 0.8rem;
  color: var(--accent-gold);
  font-style: italic;
}

/* --- RESET & BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

button {
  background: none;
  border: none;
  font-family: var(--font-sans);
  cursor: pointer;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* --- REUSABLE UTILITIES & LAYOUTS --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

.text-center {
  text-align: center;
}

.pre-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
  display: inline-block;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  text-transform: none;
  line-height: 1.25;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 4rem auto;
  font-size: 1.1rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-primary, .btn-terracotta {
  background: linear-gradient(135deg, #7a1c24 0%, #4a0e14 100%);
  color: #ffffff;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 4px 18px rgba(122, 28, 36, 0.4);
}

.btn-primary:hover, .btn-terracotta:hover {
  background: linear-gradient(135deg, #8b1e2a 0%, #5a121a 100%);
  border-color: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 30, 42, 0.55);
}

.btn-secondary {
  border: 1px solid var(--border-gold);
  color: var(--text-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  background: rgba(197, 160, 89, 0.05);
  transform: translateY(-2px);
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(9, 8, 7, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-gold);
  padding: 1rem 0;
}

/* --- DEDICATED LANDING PAGES HEADER --- */
.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 8, 7, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.7rem 0;
}

.landing-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--accent-gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  transition: var(--transition-fast);
}

.landing-back-link:hover {
  color: var(--accent-gold-light);
  transform: translateX(-3px);
}

.landing-logo-img {
  height: 98px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-links-left, .nav-links-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links-right {
  justify-content: flex-end;
}

.nav-link-item {
  position: relative;
  padding: 0.5rem 0;
}

.nav-link-item > a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav-link-item > a:hover {
  color: var(--accent-gold);
}

/* Dropdown Menu for Ocasiones */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -0.5rem;
  background: rgba(15, 12, 11, 0.98);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 0.6rem 0;
  min-width: 240px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.85);
  backdrop-filter: blur(15px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 1001;
}

.nav-link-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: 400;
  transition: var(--transition-fast);
  text-transform: none;
}

.dropdown-item:hover {
  background: rgba(197, 160, 89, 0.1);
  color: var(--accent-gold);
  padding-left: 1.8rem;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  height: 135px;
  transition: var(--transition-smooth);
}

header.scrolled .logo-container {
  height: 95px;
}

.logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.nav-btn-container {
  display: flex;
  justify-content: flex-end;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-light);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}

.nav-btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition-fast);
}

/* --- SECTION 1: HERO --- */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  filter: brightness(0.72) contrast(1.08);
  transform: scale(1.05);
  animation: slowZoom 20s ease-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(9, 8, 7, 0.35) 0%, rgba(9, 8, 7, 0.75) 100%),
              linear-gradient(to bottom, transparent 50%, var(--bg-dark) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  text-align: center;
  padding: 0 2rem;
  margin-top: 8rem;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.3;
  font-weight: 300;
  margin-bottom: 2rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.98), 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero h1 span {
  display: block;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.98), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* --- SECTION 2: HUB DE EXPERIENCIAS --- */
.hub {
  background-color: var(--bg-dark);
  position: relative;
}

.hub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-gold), transparent);
}

.hub-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.experience-card {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  transition: var(--transition-smooth);
}

.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 30%, rgba(9, 8, 7, 0.95) 90%);
  z-index: 2;
}

.experience-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: var(--transition-smooth);
  filter: brightness(0.65) grayscale(20%);
}

.experience-tag {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 3;
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
}

.experience-card-content {
  position: relative;
  z-index: 3;
  transition: var(--transition-smooth);
}

.experience-card h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.experience-card-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.experience-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.experience-card-link svg {
  transition: var(--transition-fast);
}

/* Hover States */
.experience-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(197, 160, 89, 0.1);
  transform: translateY(-5px);
}

.experience-card:hover .experience-card-img {
  transform: scale(1.08);
  filter: brightness(0.75) grayscale(0%);
}

.experience-card:hover .experience-card-link svg {
  transform: translateX(5px);
}

/* Upcoming experiences */
.upcoming-card {
  background-color: rgba(18, 16, 14, 0.4);
  border: 1px dashed var(--border-gold);
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  cursor: default;
  height: 480px;
  display: flex;
  flex-direction: column;
}

.upcoming-card::before {
  display: none;
}

.upcoming-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
  opacity: 0.7;
}

.upcoming-card h3 {
  font-size: 1.6rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.upcoming-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* --- SECTION 3: MARIACHI DETAIL --- */
.mariachi-section {
  background-color: var(--bg-card);
  position: relative;
}

.mariachi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 1250px) {
  .mariachi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.service-card {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-gold);
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  transition: var(--transition-smooth);
  z-index: -1;
  filter: grayscale(30%) contrast(1.1);
}

.service-card:hover::before {
  opacity: 0.35;
  transform: scale(1.05);
}

.service-card[data-card="serenata"]::before {
  background-image: linear-gradient(to bottom, rgba(9, 8, 7, 0.4), rgba(9, 8, 7, 0.95)), url('images/mariachi_gala_card.png');
}

.service-card[data-card="animado"]::before {
  background-image: linear-gradient(to bottom, rgba(9, 8, 7, 0.4), rgba(9, 8, 7, 0.95)), url('images/_MG_4209.jpg');
}

.service-card[data-card="bailable"]::before {
  background-image: linear-gradient(to bottom, rgba(9, 8, 7, 0.4), rgba(9, 8, 7, 0.95)), url('images/sinfonia_pop_card.png');
}

.service-card[data-card="duo"]::before {
  background-image: linear-gradient(to bottom, rgba(9, 8, 7, 0.4), rgba(9, 8, 7, 0.95)), url('images/jazz_lounge_card.png');
}

.service-card.featured {
  background: linear-gradient(145deg, #1d1413, #090807);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 40px rgba(197, 160, 89, 0.12);
  padding-top: 3.8rem;
}

.service-badge {
  position: absolute;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7a1c24 0%, #4a0e14 100%);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.45rem 1.4rem;
  border-radius: 2px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.service-header {
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.service-duration {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.service-header h3 {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.service-header p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
}

/* --- SECTION: CELEBRACIONES SEGÚN TIPO DE EVENTO --- */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (max-width: 1024px) {
  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .occasions-grid {
    grid-template-columns: 1fr;
  }
}

.occasion-card {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-gold);
  padding: 2.2rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.occasion-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(197, 160, 89, 0.12);
}

.occasion-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.occasion-card h3 {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.occasion-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.occasion-footer {
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.occasion-recom {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.occasion-recom strong {
  color: var(--accent-gold-light);
}

.occasion-card .btn {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.75rem;
}

.service-features {
  list-style: none;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.service-features li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  padding-left: 2rem;
  position: relative;
}

.service-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

.service-card .btn {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  white-space: normal;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.12);
}

/* --- SECTION 4: ADICIONALES --- */
.addons {
  background-color: var(--bg-dark);
  position: relative;
}

.moments-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  margin-top: 3.5rem;
}

@media (max-width: 1024px) {
  .moments-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}

@media (max-width: 640px) {
  .moments-editorial-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.moment-item {
  border-top: 1px solid rgba(197, 160, 89, 0.25);
  padding-top: 1.8rem;
  text-align: left;
  transition: var(--transition-smooth);
}

.moment-item:hover {
  border-top-color: var(--accent-gold);
  transform: translateY(-2px);
}

.moment-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--accent-gold);
  font-weight: 300;
  display: block;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.moment-item h4 {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.moment-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- SECTION 5: PROCESO --- */
.process {
  background-color: var(--bg-card);
  position: relative;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
  margin-top: 4rem;
}

@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 640px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 10%, var(--border-gold) 50%, transparent 90%);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--bg-dark);
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin: 0 auto 2rem auto;
  transition: var(--transition-smooth);
  box-shadow: 0 0 0 10px var(--bg-card);
}

.process-step h4 {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.process-step p {
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

.process-step:hover .process-number {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4), 0 0 0 10px var(--bg-card);
  transform: scale(1.05);
}

/* --- SECTION 6: TESTIMONIALS & FAQ --- */
.social-proof {
  background-color: var(--bg-dark);
  position: relative;
}

/* --- TESTIMONIALS VIP CARD GRID --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: linear-gradient(145deg, #181410 0%, #0c0a08 100%);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 40px rgba(197, 160, 89, 0.18);
}

.testimonial-stars {
  color: #e5c158;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 4px rgba(229, 193, 88, 0.4));
}

.testimonial-quote {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.7;
  color: #e2dad1;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-author-box {
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding-top: 1.2rem;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
}

.testimonial-event-badge {
  display: inline-block;
  background: rgba(197, 160, 89, 0.1);
  color: var(--text-muted);
  border: 1px solid rgba(197, 160, 89, 0.2);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
}

.slider-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(197, 160, 89, 0.05);
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-gold);
  padding: 1.5rem 0;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.faq-trigger h4 {
  font-size: 1.3rem;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-weight: 400;
}

.faq-icon {
  color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-content p {
  padding-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Active FAQ State */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-content {
  max-height: 200px; /* arbitrary height to slide down */
}

/* --- SECTION 7: FOOTER & CTA FINAL --- */
.final-cta {
  background-color: var(--bg-card);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 10rem 0;
}

.final-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(158, 71, 51, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  max-width: 500px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
}

footer {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-gold);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 95px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  margin: 0;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-links h5 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(197, 160, 89, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a:hover {
  color: var(--accent-gold);
}

/* --- MODAL & QUOTE CALCULATOR --- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(9, 8, 7, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 1rem;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--bg-card);
  border: 1px solid var(--accent-gold);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3.5rem;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--accent-gold);
}

.modal h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.modal-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-gold);
  color: var(--text-light);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  border-radius: 0;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.15);
}

.form-checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.8rem;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-gold);
  transition: var(--transition-fast);
}

.checkbox-label input {
  accent-color: var(--accent-gold);
}

.checkbox-label:hover {
  border-color: var(--accent-gold);
}

/* Calculator Summary Box */
.calculator-box {
  background-color: var(--bg-dark);
  border: 1px solid var(--accent-gold);
  padding: 1.5rem;
  margin: 2rem 0;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.calc-row:last-child {
  margin-bottom: 0;
}

.calc-total {
  border-top: 1px solid var(--border-gold);
  padding-top: 1rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1.2rem;
}

.calc-price {
  color: var(--accent-gold);
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

/* --- ANIMATIONS --- */
@keyframes slowZoom {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.08);
  }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.8rem;
  }
  
  .hub-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .experience-card:first-child {
    grid-column: span 2;
  }
  
  .mariachi-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .addons-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .addons-grid .addon-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .logo-container {
    height: 80px;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-menu-placeholder, .nav-menu-placeholder-right {
    display: none;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-content {
    margin-top: 5rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hub-grid, .mariachi-grid, .duo-photo-showcase {
    grid-template-columns: 1fr;
  }
  
  .experience-card:first-child {
    grid-column: span 1;
    height: 400px;
  }
  
  .experience-card {
    height: 350px;
    padding: 2rem;
  }
  
  .addons-grid {
    grid-template-columns: 1fr;
  }
  
  .addons-grid .addon-card:last-child {
    grid-column: span 1;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .process-step p {
    max-width: 100%;
  }
  
  .testimonial-quote {
    font-size: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-logo-container {
    justify-content: center;
  }
  
  .footer-brand p {
    margin: 0 auto;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-checkbox-group {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    padding: 2rem;
  }
}

/* --- MOBILE DRAWER NAVIGATION --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background-color: var(--bg-card);
  border-left: 1px solid var(--border-gold);
  z-index: 1000;
  padding: 5rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
}

.drawer-close:hover {
  color: var(--accent-gold);
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.drawer-link {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 500;
}

.drawer-link:hover {
  color: var(--accent-gold);
}

.drawer-btn {
  margin-top: 2rem;
}

/* Hamburger active state visual tweaks */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- GOOGLE REVIEWS BADGE --- */
.google-badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}

.google-badge {
  background-color: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.03);
  transition: var(--transition-smooth);
}

.google-badge:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(197, 160, 89, 0.08);
}

.google-badge-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.google-badge-logo {
  width: 26px;
  height: 26px;
  color: var(--accent-gold);
}

.google-badge-title {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--text-light);
}

.google-badge-rating {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.google-rating-score {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent-gold);
}

.google-stars {
  color: var(--accent-gold);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

.google-badge-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.google-sync-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent-gold-light);
  letter-spacing: 0.15em;
  font-weight: 600;
  opacity: 0.8;
}

/* --- CONTACT SECTION --- */
.contact-section {
  background-color: var(--bg-dark);
  position: relative;
  border-top: 1px solid var(--border-gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 2.6rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-detail-item div strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 0.3rem;
}

.contact-detail-item div a, .contact-detail-item div span {
  font-size: 1.1rem;
  color: var(--text-light);
}

.contact-detail-item div a:hover {
  color: var(--accent-gold);
}

.contact-form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 3.5rem;
  box-shadow: 0 20px 50px rgba(9, 8, 7, 0.4);
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(37, 211, 102, 0.5);
  transition: var(--transition-smooth);
  background: transparent;
  padding: 0;
}

.whatsapp-float-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 35px rgba(37, 211, 102, 0.8);
}

.video-section {
  background-color: var(--bg-card);
  position: relative;
  border-bottom: 1px solid var(--border-gold);
}

/* --- LANDING HERO & GRID LAYOUT --- */
.landing-hero {
  padding: 8.5rem 0 4.5rem 0;
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-gold);
}

.landing-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: center;
}

.landing-grid > *, .video-grid > * {
  min-width: 0;
  width: 100%;
}

.video-wrapper {
  position: relative;
  border: 1px solid var(--border-gold);
  padding: 0.5rem;
  background-color: var(--bg-dark);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 4px;
  box-sizing: border-box;
}

.video-wrapper:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(197, 160, 89, 0.15);
}

.premium-video {
  width: 100%;
  max-width: 100%;
  max-height: 60vh;
  height: auto;
  display: block;
  object-fit: contain;
  border: 1px solid rgba(197, 160, 89, 0.1);
  border-radius: 2px;
}

.video-text-content h2 {
  font-size: 2.8rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.video-text-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.video-text-content p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .video-grid, .landing-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .video-text-content h2 {
    font-size: 2.2rem;
  }
}

/* --- LANDING PHOTO SLIDER COMPONENT --- */
.landing-slider-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}

.landing-slider-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  background: #090807;
}

.landing-slider-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.landing-slide {
  flex: 0 0 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  height: 540px;
  max-height: 65vh;
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: #090807;
  padding: 1rem;
  box-sizing: border-box;
}

.landing-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.landing-slide img:hover {
  transform: scale(1.02);
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(9, 8, 7, 0.9);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100 !important;
  pointer-events: auto !important;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
  user-select: none;
}

.slider-nav-btn:hover {
  background: var(--accent-gold);
  color: #000;
  box-shadow: 0 0 25px rgba(197, 160, 89, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav-btn.prev { left: 15px; }
.slider-nav-btn.next { right: 15px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--accent-gold);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--accent-gold);
}

/* --- HAMBURGER BUTTON & MOBILE DRAWER --- */
.hamburger-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  width: 44px;
  height: 44px;
  padding: 8px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  transition: var(--transition-smooth);
}

.hamburger-btn span {
  width: 24px;
  height: 2px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn:hover {
  background: rgba(197, 160, 89, 0.15);
  border-color: var(--accent-gold);
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background-color: #0b0908;
  border-left: 1px solid var(--border-gold);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  margin-bottom: 1.2rem;
}

.drawer-logo {
  height: 48px;
  width: auto;
}

.drawer-close {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  font-size: 1.8rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.drawer-close:hover {
  background: var(--accent-gold);
  color: #000;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-grow: 1;
}

.drawer-link {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.drawer-link:hover, .drawer-link.active {
  background: rgba(197, 160, 89, 0.12);
  color: var(--accent-gold);
  padding-left: 1.2rem;
}

.drawer-section-title {
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  padding-left: 0.8rem;
}

.drawer-sublinks {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-left: 0.5rem;
}

.drawer-link.sub-item {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.drawer-footer {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.drawer-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  padding: 0.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}

/* --- FULLY RESPONSIVE MOBILE BREAKPOINTS --- */
@media (max-width: 992px) {
  .nav-links-left, .nav-links-right {
    display: none !important;
  }

  .hamburger-btn {
    display: flex !important;
  }

  .nav-container {
    justify-content: space-between !important;
    padding: 0.5rem 1.2rem !important;
  }

  .logo-container {
    height: 75px !important;
  }

  header.scrolled .logo-container {
    height: 60px !important;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .hero {
    height: auto !important;
    min-height: 85vh !important;
    padding: 8rem 1rem 4rem 1rem !important;
  }

  .hero h1 {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
  }

  .hero p {
    font-size: 1rem !important;
  }

  .hero-actions {
    flex-direction: column !important;
    gap: 1rem !important;
    width: 100% !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    text-align: center !important;
  }

  .mariachi-grid, .occasions-grid, .footer-grid, .process-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .duo-photo-showcase {
    grid-template-columns: 1fr !important;
    padding: 1.5rem !important;
    gap: 1.5rem !important;
  }

  .section-padding {
    padding: 4rem 0 !important;
  }

  .container {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }

  .landing-hero {
    padding: 6.5rem 0 3rem 0 !important;
  }

  .landing-grid, .video-grid {
    grid-template-columns: 1fr !important;
    gap: 2.2rem !important;
  }

  .video-wrapper {
    max-width: 100% !important;
    padding: 0.35rem !important;
    margin: 0 auto !important;
  }

  .premium-video {
    width: 100% !important;
    height: auto !important;
    max-height: 55vh !important;
    object-fit: contain !important;
  }

  .landing-hero h1 {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
  }

  .landing-slider-container {
    max-width: 100% !important;
    border-radius: 4px !important;
  }

  .landing-slide {
    height: 380px !important;
    max-height: 48vh !important;
    padding: 0.5rem !important;
  }

  .slider-nav-btn {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.2rem !important;
  }

  .slider-nav-btn.prev { left: 8px !important; }
  .slider-nav-btn.next { right: 8px !important; }

  /* Luis Miguel Mobile Responsive Grid Ordering */
  .luis-miguel-banner {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "header"
      "image"
      "content" !important;
    padding: 1.8rem 1.2rem !important;
    gap: 1.2rem !important;
  }

  .vip-badge {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    display: inline-block !important;
    margin-bottom: 0.8rem !important;
  }

  .luis-miguel-title {
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
  }

  .luis-miguel-image-wrapper {
    max-height: 280px !important;
    width: 100% !important;
    margin: 0.5rem 0 !important;
  }

  .luis-miguel-img {
    height: 260px !important;
    object-fit: cover !important;
  }

  .luis-miguel-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.8rem !important;
  }

  .luis-miguel-actions .btn {
    width: 100% !important;
    text-align: center !important;
  }

  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem !important;
  }

  .section-title {
    font-size: 1.8rem !important;
  }

  .landing-hero h1 {
    font-size: 1.8rem !important;
  }

  .landing-slide {
    height: 290px !important;
    max-height: 42vh !important;
  }
}

