:root {
  /* Paleta Agavéria — extraída de tu identidad real */
  --cream: #f5f0e4;          /* fondo crema cálido */
  --cream-light: #faf6ec;    /* casi papel */
  --cream-dark: #ebe3cd;     /* crema profundo */
  --moss: #5d6b3a;           /* verde olivo de tu logo */
  --moss-deep: #424d28;      /* musgo profundo */
  --moss-light: #8a9657;     /* musgo claro */
  --terra: #c4623c;          /* terracota cálido (del precio del ad) */
  --terra-deep: #9a4628;     /* terracota profundo */
  --terra-light: #e09474;    /* salmón cálido */
  --wheat: #d4a857;          /* dorado trigo */
  --ink: #2a2419;            /* tinta café */
  --ink-soft: #4a4234;       /* tinta suave */
  --line: rgba(42, 36, 25, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.serif { font-family: 'Cormorant Garamond', serif; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 240, 228, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(42, 36, 25, 0.06);
  transition: all 0.3s ease;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss-deep);
}
nav .nav-right {
  display: flex;
  gap: 36px;
  align-items: center;
}
nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
nav a:hover { color: var(--terra); }
nav a.cta-nav {
  background: var(--moss-deep);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 13px;
  transition: all 0.3s ease;
}
nav a.cta-nav:hover { background: var(--terra); color: var(--cream); }

/* Cross-link entre vertientes (Hospedaje <-> Eventos) */
nav a.nav-cross {
  color: var(--terra-deep);
  font-weight: 700;
}
nav a.nav-cross:hover { color: var(--terra); }

/* Hamburguesa móvil (oculta en desktop) */
.nav-toggle { display: none; }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 101;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--moss-deep);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-home {
  display: none;
}
.nav-sep {
  display: none;
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 8px 0;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  background: var(--cream);
  overflow: hidden;
}
.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-dark);
  color: var(--moss-deep);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--terra);
  border-radius: 50%;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--moss-deep);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--terra);
}
.hero .lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--moss-deep);
  color: var(--cream);
  text-decoration: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--terra);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(196, 98, 60, 0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: transparent;
  color: var(--moss-deep);
  text-decoration: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--moss-deep);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: var(--moss-deep);
  color: var(--cream);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--moss-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
  font-weight: 500;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 620px;
}
.hero-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 78%;
  height: 78%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(42, 36, 25, 0.18);
}
.hero-img-acc {
  position: absolute;
  bottom: 0; left: 0;
  width: 55%;
  height: 48%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 24px 48px rgba(42, 36, 25, 0.2);
  border: 8px solid var(--cream);
}
.hero-badge {
  position: absolute;
  top: 20px;
  left: 0;
  background: var(--cream);
  padding: 16px 22px;
  border-radius: 12px;
  z-index: 10;
  box-shadow: 0 12px 32px rgba(42, 36, 25, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--wheat);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--moss-deep);
  font-weight: 600;
}
.hero-badge-text { font-size: 13px; line-height: 1.3; }
.hero-badge-text strong { color: var(--moss-deep); display: block; }
.hero-badge-text span { color: var(--ink-soft); font-size: 11px; }

/* ===== DUAL OFFER (Hospedaje + Eventos) ===== */
.dual-offer {
  padding: 120px 48px;
  background: var(--cream-light);
}
.dual-offer-header {
  max-width: 1400px;
  margin: 0 auto 80px;
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '—';
  margin: 0 12px;
  opacity: 0.5;
}
.dual-offer h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--moss-deep);
  max-width: 760px;
  margin: 0 auto;
}
.dual-offer h2 em { font-style: italic; color: var(--terra); }

.dual-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.dual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  color: var(--cream);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.dual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(42, 36, 25, 0.1) 0%, 
    rgba(42, 36, 25, 0.45) 50%, 
    rgba(42, 36, 25, 0.92) 100%);
  z-index: 1;
}
.dual-card > * { position: relative; z-index: 2; }
.dual-card:hover { transform: translateY(-6px); }
.dual-tag {
  display: inline-block;
  background: var(--terra);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  align-self: flex-start;
}
.dual-card.eventos .dual-tag { background: var(--wheat); color: var(--ink); }
.dual-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.dual-card h3 em { font-style: italic; }
.dual-card p {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.92;
  margin-bottom: 24px;
  max-width: 380px;
}
.dual-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.dual-feature {
  background: rgba(245, 240, 228, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(245, 240, 228, 0.2);
}
.dual-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  background: rgba(245, 240, 228, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  border: 1px solid rgba(245, 240, 228, 0.3);
  transition: all 0.3s ease;
  align-self: flex-start;
}
.dual-cta:hover { background: var(--cream); color: var(--moss-deep); }

/* ===== AMENITIES (mobile-first, fotos reales) ===== */
.amenities {
  padding: 64px 20px;
  background: var(--cream);
}
.amenities-header {
  max-width: 1300px;
  margin: 0 auto 40px;
  text-align: center;
}
.amenities-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--moss-deep);
  max-width: 720px;
  margin: 0 auto;
}
.amenities-header h2 em { font-style: italic; color: var(--terra); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* mobile */
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}
.amenity-card {
  background: var(--cream);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(93, 107, 58, 0.08);
}
.amenity-image {
  width: 100%;
  aspect-ratio: 16 / 10; /* mobile */
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.amenity-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
}
.amenity-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--moss-deep);
  margin-bottom: 6px;
  line-height: 1.15;
}
.amenity-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .amenities { padding: 120px 48px; }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .amenity-card { padding: 24px; }
  .amenity-image { aspect-ratio: 4 / 3; margin-bottom: 18px; }
  .amenity-card h3 { font-size: 22px; }
  .amenity-card p { font-size: 14px; }
}

/* ===== PERFECTO PARA / OCCASIONS ===== */
.occasions {
  padding: 120px 48px;
  background: var(--cream-light);
}
.occasions-header {
  max-width: 1300px;
  margin: 0 auto 64px;
  text-align: center;
}
.occasions-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--moss-deep);
  max-width: 720px;
  margin: 0 auto;
}
.occasions-header h2 em { font-style: italic; color: var(--terra); }
.occasions-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.occasion-card {
  padding: 44px 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s ease;
}
.occasion-card:hover { transform: translateY(-4px); }
.occasion-card.c1 { background: var(--moss-deep); color: var(--cream); }
.occasion-card.c2 { background: var(--terra); color: var(--cream); }
.occasion-card.c3 { background: var(--wheat); color: var(--moss-deep); }
.occasion-card.c4 { background: var(--moss); color: var(--cream); }
.occasion-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  opacity: 0.6;
  font-weight: 500;
}
.occasion-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 500;
  margin: 16px 0;
}
.occasion-card p {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.92;
  max-width: 420px;
}
.occasion-tags-wrap {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.occasion-tag {
  background: rgba(245, 240, 228, 0.18);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}
.occasion-card.c3 .occasion-tag { background: rgba(66, 77, 40, 0.15); }

/* ===== PRICING (cards estilo v1 pero con paleta cálida) ===== */
.pricing {
  padding: 120px 48px;
  background: var(--moss-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--terra), transparent);
}
.pricing-header {
  max-width: 1300px;
  margin: 0 auto 72px;
  text-align: center;
}
.pricing-header .section-eyebrow { color: var(--wheat); }
.pricing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto;
}
.pricing h2 em { font-style: italic; color: var(--wheat); }
.pricing-subtitle {
  margin-top: 16px;
  font-size: 17px;
  opacity: 0.75;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: rgba(245, 240, 228, 0.06);
  border: 1px solid rgba(245, 240, 228, 0.15);
  padding: 40px 32px;
  border-radius: 20px;
  position: relative;
  transition: all 0.4s ease;
}
.price-card:hover:not(.featured) {
  background: rgba(245, 240, 228, 0.1);
  transform: translateY(-4px);
}
.price-card.featured {
  background: var(--cream);
  color: var(--moss-deep);
  border-color: var(--wheat);
  transform: scale(1.03);
}
.price-card.featured::before {
  content: 'Más reservado';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terra);
  color: var(--cream);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.price-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.1;
}
.price-card .price-desc {
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 28px;
  line-height: 1.5;
}
.price-card .amount-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.price-card .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}
.price-card .amount-custom {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--moss-deep);
  line-height: 1.1;
  display: block;
}
.price-card .iva {
  font-size: 13px;
  opacity: 0.7;
  font-weight: 500;
}
.price-card .amount-detail {
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 28px;
}
.price-card .price-features {
  list-style: none;
  margin-bottom: 32px;
  border-top: 1px solid rgba(245, 240, 228, 0.15);
  padding-top: 24px;
}
.price-card.featured .price-features { border-color: rgba(42, 36, 25, 0.1); }
.price-card .price-features li {
  padding: 9px 0;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.price-card .price-features li::before {
  content: '✓';
  color: var(--wheat);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1.4;
}
.price-card.featured .price-features li::before { color: var(--terra); }
.btn-price {
  display: block;
  padding: 16px;
  background: rgba(245, 240, 228, 0.12);
  color: var(--cream);
  border-radius: 100px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(245, 240, 228, 0.25);
  transition: all 0.3s ease;
}
.btn-price:hover { background: var(--terra); border-color: var(--terra); }
.price-card.featured .btn-price {
  background: var(--moss-deep);
  color: var(--cream);
  border-color: var(--moss-deep);
}
.price-card.featured .btn-price:hover {
  background: var(--terra);
  border-color: var(--terra);
}
.pricing-note {
  max-width: 800px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 13px;
  opacity: 0.65;
  font-style: italic;
  line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 120px 0 60px;
  background: var(--cream);
}
.gallery-header {
  max-width: 1300px;
  margin: 0 auto 64px;
  padding: 0 48px;
  text-align: center;
}
.gallery-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--moss-deep);
  max-width: 700px;
  margin: 0 auto;
}
.gallery-header h2 em { font-style: italic; color: var(--terra); }
.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 0 48px;
}
.gallery-item {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.gi-1 { grid-column: 1 / 7; aspect-ratio: 4/3; }
.gi-2 { grid-column: 7 / 13; aspect-ratio: 4/3; }
.gi-3 { grid-column: 1 / 5; aspect-ratio: 3/4; }
.gi-4 { grid-column: 5 / 9; aspect-ratio: 3/4; }
.gi-5 { grid-column: 9 / 13; aspect-ratio: 3/4; }

/* ===== TESTIMONIAL ===== */
.testimonial {
  padding: 140px 48px;
  background: var(--cream-light);
  position: relative;
  overflow: hidden;
}
.testimonial-content {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 140px;
  line-height: 0.5;
  color: var(--terra);
  opacity: 0.25;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.25;
  font-weight: 500;
  color: var(--moss-deep);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
.testimonial blockquote em { font-style: italic; color: var(--terra); }
.testimonial-author {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  font-weight: 500;
}
.testimonial-author strong { color: var(--moss-deep); font-weight: 700; }

/* ===== FAQ ===== */
.faq {
  padding: 120px 48px;
  background: var(--cream);
}
.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
}
.faq-side {
  position: sticky;
  top: 120px;
  align-self: start;
}
.faq-side h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 48px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--moss-deep);
  margin-top: 20px;
}
.faq-side h2 em { font-style: italic; color: var(--terra); }
.faq-side p {
  margin-top: 20px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 280px;
}
.faq-list details {
  background: var(--cream-light);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.faq-list details[open] {
  border-color: var(--moss-light);
  box-shadow: 0 8px 24px rgba(93, 107, 58, 0.08);
}
.faq-list summary {
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--moss-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color 0.3s;
}
.faq-list summary:hover { color: var(--terra); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--terra);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  padding: 0 26px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 140px 48px;
  background: var(--terra);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 168, 87, 0.25), transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(66, 77, 40, 0.3), transparent 55%);
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta .section-eyebrow {
  color: var(--cream);
  opacity: 0.8;
}
.final-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.final-cta h2 em {
  font-style: italic;
  color: var(--wheat);
}
.final-cta p {
  font-size: 18px;
  opacity: 0.92;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 44px;
  background: var(--cream);
  color: var(--moss-deep);
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 36px rgba(42, 36, 25, 0.25);
}
.btn-whatsapp:hover {
  background: var(--moss-deep);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 72px 48px 32px;
}
.footer-grid {
  max-width: 1300px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  opacity: 0.65;
  max-width: 320px;
  line-height: 1.4;
}
footer h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.55;
  font-weight: 700;
}
footer a {
  display: block;
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
  opacity: 0.75;
  transition: all 0.3s;
}
footer a:hover { opacity: 1; color: var(--wheat); }
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 240, 228, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.55;
  letter-spacing: 0.04em;
}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: white;
  padding: 16px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}
.wa-float:hover { transform: scale(1.05); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 16px 20px; flex-wrap: wrap; }
  .nav-burger { display: flex; }
  nav .nav-right {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 6px;
    margin-top: 14px;
  }
  .nav-toggle:checked ~ .nav-right { display: flex; }
  nav .nav-right a {
    font-size: 16px;
    min-height: 48px;
    width: 100%;
    padding: 12px 10px;
    display: flex;
    align-items: center;
    border-radius: 8px;
  }
  nav .nav-right a:hover { background: var(--cream-dark); }
  nav .nav-right a.cta-nav {
    margin-top: 8px;
    align-self: stretch;
    justify-content: center;
    text-align: center;
    padding: 14px 24px;
    color: var(--cream);
  }
  nav .nav-right a.cta-nav:hover { background: var(--terra); }
  .nav-sep { display: block; }
  .nav-home { display: block; }

  .hero { padding: 100px 20px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-sub { margin-bottom: 32px; }
  .btn-primary, .btn-secondary { padding: 16px 28px; }
  .hero-visual {
    height: auto;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .hero-img-main {
    position: static;
    width: 100%;
    height: 320px;
  }
  .hero-img-acc { display: none; }
  .hero-badge {
    position: static;
    align-self: stretch;
    justify-content: flex-start;
  }
  
  .dual-offer, .amenities, .occasions, .pricing, .testimonial, .faq, .final-cta { padding: 80px 20px; }
  
  .dual-grid { grid-template-columns: 1fr; }
  .dual-card { min-height: 440px; padding: 32px; }
  .dual-card h3 { font-size: 36px; }

  .occasions-grid { grid-template-columns: 1fr; }
  
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .price-card.featured { transform: scale(1); }
  
  .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; gap: 12px; }
  .gi-1, .gi-2, .gi-3, .gi-4, .gi-5 { grid-column: auto; aspect-ratio: 1; }
  .gi-1 { grid-column: 1 / -1; aspect-ratio: 4/3; }
  
  .faq-container { grid-template-columns: 1fr; gap: 32px; }
  .faq-side { position: static; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero > .hero-grid > div > * { animation: fadeUp 0.7s ease backwards; }
.hero-eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero .lead { animation-delay: 0.3s; }
.hero-ctas { animation-delay: 0.4s; }
.hero-stats { animation-delay: 0.5s; }

/* ===== TESTIMONIOS / GOOGLE REVIEWS (mobile-first) ===== */
.testimonials {
  padding: 64px 20px;
  background: var(--cream-light);
}
.testimonials-header {
  max-width: 1200px;
  margin: 0 auto 32px;
  text-align: center;
}
.testimonials-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 7vw, 58px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--moss-deep);
  max-width: 720px;
  margin: 0 auto;
}
.testimonials-header h2 em { font-style: italic; color: var(--terra); }
.testimonials-sub {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 600;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr; /* mobile first */
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--cream);
  padding: 24px 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -16px rgba(42, 36, 25, 0.18);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  flex-shrink: 0;
}
.testimonial-avatar.terra { background: var(--terra); }
.testimonial-avatar.moss { background: var(--moss); }
.testimonial-avatar.wheat { background: var(--wheat); }

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.2;
}

.testimonial-tag {
  font-size: 12px;
  color: var(--ink-soft);
}

.testimonial-stars {
  color: #f5b400;
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}

.testimonial-date {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: auto;
  padding-top: 8px;
}

.testimonial-more {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.testimonial-more-link {
  color: var(--terra-deep);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.testimonial-more-link:hover { text-decoration: underline; }

/* Bloque destacado de Google Reviews */
.google-reviews-block {
  max-width: 480px;
  margin: 32px auto 0;
  padding: 28px 24px;
  background: var(--cream);
  border: 2px solid var(--moss);
  border-radius: 16px;
  text-align: center;
}
.google-rating-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.google-logo-circle {
  width: 36px;
  height: 36px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #4285f4;
}
.google-rating-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
}
.google-stars-big {
  color: #f5b400;
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.google-rating-subtitle {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.google-reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--moss-deep);
  color: var(--cream) !important;
  text-decoration: none !important;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
}
.google-reviews-cta:hover { background: var(--moss); }

/* ===== BUNDLE COMBINACIONES (lista limpia, no se rompe en móvil) ===== */
.bundle-combinations {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
  padding: 16px;
  background: rgba(196, 98, 60, 0.06);
  border-radius: 10px;
}
.combo-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.combo-label { color: var(--ink-soft); }
.combo-price {
  font-weight: 700;
  color: var(--terra-deep);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ===== FOTOS CON PERSONAS: tira dedicada en proporción 3:4 (sin recortes) ===== */
.people-strip {
  max-width: 1100px;
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* mobile */
  gap: 12px;
}
.people-photo {
  aspect-ratio: 3 / 4; /* coincide con las fotos 600x800 -> se ven completas */
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .people-strip { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* Desktop: testimonios en 3 columnas */
@media (min-width: 768px) {
  .testimonials { padding: 120px 48px; }
  .testimonials-header { margin-bottom: 48px; }
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}