*{
  box-sizing:border-box;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  margin:0;
  padding:0;
  scroll-behavior:smooth;
}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Inter","Helvetica Neue",Arial,sans-serif;
  color:#3b2b2b;
  background:#fff;
  line-height:1.5;
}
img{
  max-width:100%;
  display:block;
}
.section-pad{
  padding:4rem 1.5rem;
}
.section-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  gap:2rem;
}
.section-inner.narrow{
  max-width:800px;
}
.section-inner.reverse{
  flex-direction:row-reverse;
}
.center{text-align:center;}
.subt{
  color:#6b5a5a;
  font-size:1rem;
  max-width:600px;
  margin:0.5rem auto 2rem;
}

.section-title{
  font-family:Georgia,"Times New Roman",serif;
  font-size:2rem;
  font-weight:500;
  color:#3b2b2b;
  margin-bottom:1rem;
  line-height:1.2;
  letter-spacing:-.02em;
}

/* HEADER */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background:rgba(255,255,255,.8);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.05);
}
.header-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.75rem 1rem;
}
.logo{
  height:48px;
  width:auto;
}
.main-nav{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  font-size:.9rem;
}
.main-nav a{
  text-decoration:none;
  color:#3b2b2b;
  font-weight:500;
}
.main-nav a:hover{
  color:#a67c74;
}

/* HERO */
.hero{
  position:relative;
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top:4rem;
}
.hero-bg{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.hero-img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.4) sepia(.2);
}
.overlay{
  position:absolute;
  inset:0;
  background:rgba(43,27,27,.3);
}
.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
  padding:1.5rem;
  max-width:600px;
}
.hero-logo img{
  max-width:180px;
  margin:0 auto 1rem;
  filter:drop-shadow(0 8px 20px rgba(0,0,0,.8));
}
.hero h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:2.2rem;
  font-weight:500;
  line-height:1.2;
  letter-spacing:-.03em;
  color:#fff;
}
.tagline{
  margin:1rem auto 2rem;
  font-size:1rem;
  color:#f5e8e5;
}
.btn-primary{
  background:#a67c74;
  color:#fff;
  border-radius:999px;
  padding:.9rem 1.5rem;
  text-decoration:none;
  font-weight:600;
  font-size:.95rem;
  display:inline-block;
  box-shadow:0 10px 30px rgba(166,124,116,.4);
  transition:.2s;
  border:0;
  cursor:pointer;
}
.btn-primary.full{
  width:100%;
  text-align:center;
}
.btn-primary:hover{
  box-shadow:0 14px 34px rgba(166,124,116,.6);
  transform:translateY(-2px);
}

/* ABOUT */
.about-text{
  flex:1 1 320px;
  color:#3b2b2b;
  font-size:1rem;
}
.about-text p{
  margin-bottom:1rem;
}
.features{
  list-style:none;
  line-height:1.6;
  color:#3b2b2b;
  font-size:.95rem;
  background:#f8f5f4;
  border:1px solid #eadfdd;
  border-radius:1rem;
  padding:1rem 1.5rem;
}
.features li{
  margin-bottom:.4rem;
}
.about-photo{
  flex:1 1 280px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.round-card{
  border-radius:1.25rem;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,.15);
  border:2px solid #fff;
}

/* MOMENTOS */
.momentos-text{
  flex:1 1 320px;
}
.momentos-photo{
  flex:1 1 320px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.mini-collage{
  margin-top:1.5rem;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.5rem;
}
.collage-item{
  border-radius:.75rem;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
  object-fit:cover;
  width:100%;
  height:100%;
  aspect-ratio:1/1;
}

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(260px,100%),1fr));
  grid-auto-rows:200px;
  gap:1rem;
}
.gallery-item{
  width:100%;
  height:100%;
  overflow:hidden;
  border-radius:1rem;
  position:relative;
  box-shadow:0 30px 60px rgba(0,0,0,.12);
}
.gallery-item.tall{
  grid-row:span 2;
}
.gallery-item.wide{
  grid-column:span 2;
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  cursor:pointer;
  transition:transform .3s;
}
.gallery-item img:hover{
  transform:scale(1.05);
}

/* VIDEO */
.video-wrapper{
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius:1rem;
  box-shadow:0 30px 60px rgba(0,0,0,.2);
  overflow:hidden;
  background:#000;
}
.video-frame{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* SOCIAL */
.social-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:1rem;
}
.social-card{
  flex:1 1 220px;
  border:1px solid #eadfdd;
  background:#fff;
  border-radius:1rem;
  padding:1rem 1.25rem;
  text-decoration:none;
  color:#3b2b2b;
  box-shadow:0 20px 40px rgba(0,0,0,.07);
  text-align:left;
  font-size:.9rem;
}
.social-card strong{
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-weight:500;
  font-size:1.1rem;
  color:#3b2b2b;
}
.social-card span{
  color:#a67c74;
  font-weight:500;
  font-size:.9rem;
}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:2rem;
}
.contact-info-card{
  background:#f8f5f4;
  border:1px solid #eadfdd;
  border-radius:1rem;
  padding:1.5rem;
  box-shadow:0 20px 40px rgba(0,0,0,.07);
  font-size:.95rem;
  line-height:1.6;
}
.contact-info-card a{
  color:#a67c74;
  text-decoration:none;
}
.contact-form{
  display:grid;
  gap:1rem;
}
.contact-form label{
  display:grid;
  gap:.4rem;
  font-size:.8rem;
  color:#3b2b2b;
  font-weight:600;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid #d7c9c6;
  border-radius:.75rem;
  padding:.8rem 1rem;
  background:#fff;
  font-size:1rem;
  color:#3b2b2b;
  font-family:inherit;
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline:2px solid #a67c74;
  outline-offset:0;
  border-color:#a67c74;
}

/* FOOTER */
.site-footer{
  background:#3b2b2b;
  color:#fff;
  margin-top:3rem;
  padding:2rem 1.5rem;
  font-size:.8rem;
}
.footer-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.footer-logo{
  width:120px;
  filter:brightness(0) invert(1);
}
.footer-copy{
  color:#fff;
  text-align:left;
  line-height:1.5;
}
.footer-copy .sg a{
  color:#a67c74;
  text-decoration:none;
  font-weight:600;
}

/* WHATSAPP FAB */
.whatsapp-fab{
  position:fixed;
  right:1rem;
  bottom:1rem;
  background:#25d366;
  color:#fff;
  border-radius:999px;
  padding:.9rem 1rem;
  font-weight:600;
  text-decoration:none;
  font-size:.9rem;
  box-shadow:0 20px 40px rgba(0,0,0,.4);
  display:flex;
  align-items:center;
  gap:.5rem;
  z-index:999;
}
.wa-icon{
  font-size:1.2rem;
  line-height:1;
}

/* LIGHTBOX */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.8);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:2rem;
  z-index:2000;
}
.hidden{display:none;}
.lightbox-content{
  position:relative;
  max-width:90vw;
  max-height:90vh;
}
.lightbox-img{
  max-width:90vw;
  max-height:90vh;
  border-radius:1rem;
  box-shadow:0 40px 80px rgba(0,0,0,.8);
}
.lightbox-close{
  position:absolute;
  top:-2rem;
  right:0;
  background:transparent;
  border:0;
  font-size:2rem;
  color:#fff;
  line-height:1;
  cursor:pointer;
}

/* ANIMATIONS */
.fade-in{
  opacity:0;
  transform:translateY(20px);
  animation:fadeUp .8s ease forwards;
}
@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* MEDIA */
@media(min-width:768px){
  .contact-grid{
    grid-template-columns:1fr 1fr;
  }
  .hero h1{
    font-size:2.8rem;
  }
  .tagline{
    font-size:1.1rem;
  }
  .main-nav{
    font-size:1rem;
    gap:1.5rem;
  }
}
