html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom, #e7e1d6, #e3dccf);
  color: #2b2b2b;
  scroll-behavior: smooth;
}

/* ================= NAV ================= */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 90px;
  padding: 24px 0;
  background: rgba(231,225,214,0.85);
  backdrop-filter: blur(14px);
  z-index: 9999;
  transition: 0.4s ease;
}

.nav.scrolled {
  padding: 14px 0;
  background: rgba(231,225,214,0.97);
}

.logo {
  position: absolute;
  left: 25px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #b08d57;
}

.nav a {
  text-decoration: none;
  color: #b08d57;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: 0.3s;
}

.nav a:hover {
  opacity: 0.6;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  position: relative;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  filter: brightness(0.75) contrast(1.1);
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);
}

.hero-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #b08d57;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

/* ================= SECCIONES ================= */
.section {
  padding: 220px 8%;
  position: relative;
}

/* separador elegante */
.section::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(176,141,87,0.4);
  margin: 120px auto 0;
}

/* ================= TEXTOS ================= */
h1, h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #b08d57;
}

.desc {
  max-width: 700px;
  margin: 20px auto 50px;
  line-height: 1.8;
  opacity: 0.85;
}

/* ================= GALERÍA ================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
  filter: saturate(0.95) contrast(1.05);
}

.gallery img:nth-child(1) {
  grid-column: span 7;
  height: 380px;
}

.gallery img:nth-child(2) {
  grid-column: span 5;
  height: 380px;
}

.gallery img:nth-child(3) {
  grid-column: span 12;
  height: 420px;
}

.gallery img:hover {
  transform: scale(1.015);
  filter: brightness(1.08);
}

/* ================= BOTONES ================= */
.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  border: 1px solid #b08d57;
  color: #b08d57;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #b08d57;
  color: white;
}

/* ================= RESEÑAS ================= */
.reviews {
  max-width: 800px;
  margin: auto;
  display: grid;
  gap: 25px;
}

.review {
  padding: 25px;
  border-left: 2px solid #b08d57;
  background: rgba(255,255,255,0.4);
  font-style: italic;
}

.review span {
  display: block;
  margin-top: 10px;
  color: #b08d57;
}

/* ================= FOOTER ================= */
.footer {
  text-align: center;
  padding: 100px;
  background: #111;
  color: white;
}

/* ================= ANIMACIONES ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1.2s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .nav {
    gap: 25px;
    flex-wrap: wrap;
    padding: 15px;
  }

  .logo {
    position: static;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .section {
    padding: 120px 6%;
  }

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

  .gallery img {
    height: 260px !important;
  }
}
/* HERO ENTRADA SUAVE */
.hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: 1.5s ease;
}

.hero-content.show {
  opacity: 1;
  transform: translateY(-50%);
}

/* NAV LINK ACTIVO */
.nav a.active {
  border-bottom: 1px solid #b08d57;
}

/* SCROLL MÁS SUAVE VISUAL */
.section {
  transition: all 1s ease;
}

/* MICRO DETALLE PRO */
.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #b08d57;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}
/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 99999;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  animation: zoom 0.4s ease;
}

@keyframes zoom {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
