*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #080808;
  --white: #f5f2ee;
  --gold: #c9a84c;
  --light-gray: #111111;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95) 0%, transparent 100%);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--white);
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.nav-links a:hover { opacity: 1; }

.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.65) 60%, rgba(8,8,8,1) 100%),
    url('imag/boda.png') top/cover no-repeat;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  padding: 0 2rem 5rem;
  max-width: 900px;
}

.gold-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 12vw, 8rem);
  font-weight: 300;
  line-height: 0.92;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 0.85rem;
  opacity: 0;
  max-width: 340px;
  line-height: 1.8;
  color: rgba(245,242,238,0.55);
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.35);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.8s ease;
}

.about-image:hover img { transform: scale(1.03); }

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--black) 100%);
}

.about-text {
  padding: 5rem 3.5rem 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.8rem;
}

.about-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.about-text p {
  font-size: 0.87rem;
  line-height: 1.9;
  color: rgba(245,242,238,0.5);
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.2);
  flex-wrap: wrap;
}

.btn {
  height: 50px;
  background: rgba(0, 140, 0, 0.8);
  color: rgb(255, 255, 255);
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 400;
  /* font-weight: bold; */
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.35);
  margin-top: 0.3rem;
  display: block;
}

.gallery-section {
  padding: 6rem 2rem;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.gallery-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
}

.gallery-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.gallery-filter {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: none;
  color: rgba(245,242,238,0.4);
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.6rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item:nth-child(6n+1) { grid-column: 1 / 7; }
.gallery-item:nth-child(6n+2) { grid-column: 7 / 10; }
.gallery-item:nth-child(6n+3) { grid-column: 10 / 13; }
.gallery-item:nth-child(6n+4) { grid-column: 1 / 4; }
.gallery-item:nth-child(6n+5) { grid-column: 4 / 9; }
.gallery-item:nth-child(6n+6) { grid-column: 9 / 13; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.4s ease;
  filter: grayscale(15%);
}

.gallery-item:nth-child(6n+1) img,
.gallery-item:nth-child(6n+2) img,
.gallery-item:nth-child(6n+3) img { height: 420px; }

.gallery-item:nth-child(6n+4) img,
.gallery-item:nth-child(6n+5) img,
.gallery-item:nth-child(6n+6) img { height: 280px; }

.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.5);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.services {
  padding: 6rem 2rem;
  background: var(--light-gray);
}

.services-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-top: 0.5rem;
}

.services-title em {
  font-style: italic;
  color: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
  border: 1px solid rgba(201,168,76,0.12);
}

.service-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(201,168,76,0.12);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.service-card:last-child { border-right: none; }

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover { background: rgba(201,168,76,0.04); }
.service-card:hover::after { transform: scaleX(1); }

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.5);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--white);
}

.service-desc {
  /* font-size: 0.82rem; */
  font-size: 0.89rem;
  line-height: 1.8;
  color: rgba(245,242,238,0.4);
}

/* .texto-resaltado {
  color: #c9a84c;
} */

.lista-desordenada {
  margin-top: 10px;
  margin-left: 15px;
}
.lista {
  font-size: 0.89rem;
  color: #c9a84c;
}

.precio {
  color: rgba(245,242,238,0.5);
  margin-top: 25px;
}

.service-arrow {
  margin-top: 2rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.testimonial {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 16rem;
  color: rgba(201,168,76,0.05);
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  max-width: 750px;
  margin: 0 auto 2rem;
  position: relative;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* .mensaje-wp {
  height: 200px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 50px;
} */
/* BUTTON */
/* .btn {
  height: 50px;
  background: rgba(0, 140, 0, 0.8);
  color: rgb(255, 255, 255);
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
} */

footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
}

.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(245,242,238,0.25);
}

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

.footer-social a {
  /* color: rgba(245,242,238,0.35); */
  color: rgba(201, 168, 76, 0.8);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 150;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; letter-spacing: 0.3em; opacity: 0.8; }

  .hero-content { padding: 0 1rem 3rem; }
  .hero-scroll { right: 1.5rem; bottom: 2rem; }

  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 320px; }
  .about-image::after { background: linear-gradient(to bottom, transparent 50%, var(--black) 100%); }
  .about-text { padding: 3rem 1.5rem; }
  .about-stats { 
    gap: 1.5rem;
    align-items: center;
  }
  /* .btn {
    height: 50px;
    background: rgba(0, 140, 0, 0.8);
    color: rgb(255, 255, 255);
    padding: 12px 22px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 400;
  } */

  .gallery-section { padding: 1rem 1rem; }

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

  .gallery-item:nth-child(3n+1) { grid-column: 1 / 3; }
  .gallery-item:nth-child(3n+2) { grid-column: 1 / 2; }
  .gallery-item:nth-child(3n+3) { grid-column: 2 / 3; }

  .gallery-item:nth-child(3n+1) img { height: 280px; }
  .gallery-item:nth-child(3n+2) img,
  .gallery-item:nth-child(3n+3) img { height: 200px; }

  .gallery-item img { object-position: center top; }

  .gallery-header { flex-direction: column; align-items: flex-start; }

  .services { padding: 4rem 1.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card {
    border-right: none;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    padding: 2.5rem 2rem;
  }
  .service-card:last-child { border-bottom: none; }

  .testimonial { padding: 5rem 1.5rem; }
  .testimonial::before { font-size: 10rem; }

  footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
}