/* =====================================================
   KILLASISAS · Design System "Obsidian Andes"
   Palette: Obsidian Dark + Amber + Teal + Cream
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Cinzel:wght@400;500;600&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --dark:    #0D0A08;
  --dark-2:  #1A130F;
  --dark-3:  #251A14;
  --warm:    #F7F0E8;
  --warm-2:  #EDE0D0;
  --warm-3:  #DDD0BC;
  --amber:   #C8853A;
  --amber-lt:#E0A05A;
  --amber-dk:#A06A28;
  --teal:    #2B6B58;
  --teal-lt: #3D9478;
  --gold:    #D4AF72;
  --gold-lt: #E8CF9A;
  --clay:    #8B3A2A;
  --clay-lt: #B05040;
  --text-d:  #EDE8DF;
  --text-d2: rgba(237,232,223,.65);
  --text-l:  #1A130F;
  --text-l2: #5C4A38;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--warm); color: var(--text-l); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
.font-serif  { font-family: 'Cormorant Garamond', serif; }
.font-cinzel { font-family: 'Cinzel', serif; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 60px;
  transition: all .4s ease;
}
.nav.scrolled {
  background: rgba(13,10,8,.96); backdrop-filter: blur(16px);
  padding: 12px 60px;
  border-bottom: 1px solid rgba(212,175,114,.15);
}

/* Logo texto */
.nav-logo {
  font-family: 'Cinzel', serif; font-size: 1.15rem; letter-spacing: 4px;
  text-transform: uppercase; color: #fff;
  display: flex; align-items: center; gap: 12px;
  transition: color .25s; white-space: nowrap;
}
.nav-logo:hover { color: var(--gold); }
.nav-logo-mark {
  display: block; flex-shrink: 0;
  width: 28px; height: 28px;
  color: var(--gold);
  transform: rotate(20deg);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.nav-logo:hover .nav-logo-mark { transform: rotate(40deg); }

/* Nav links con iconos */
.nav-links {
  display: flex; list-style: none;
  flex: 1; justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
}
.nav-links a {
  font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: 1.8px;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  border-bottom: 1px solid transparent; transition: all .25s;
  display: flex; align-items: center; gap: 6px; padding-bottom: 2px;
  white-space: nowrap;
}
.nav-links a svg { opacity: .6; flex-shrink: 0; transition: opacity .25s; }
.nav-links a:hover { color: #fff; border-bottom-color: var(--gold); }
.nav-links a:hover svg { opacity: 1; }

/* Solo iconos 1401–1600px: texto pero iconos más notorios */
@media(min-width: 1401px) and (max-width: 1600px) {
  .nav-links { gap: clamp(16px, 1.8vw, 26px); }
}

/* Solo iconos 1101–1400px: oculta texto, distribuye iconos uniformemente */
@media(min-width: 1101px) and (max-width: 1400px) {
  .nav-links { gap: 0; justify-content: space-evenly; }
  .nav-links a span { display: none; }
  .nav-links a { padding: 8px 6px; border-bottom: none; }
  .nav-links a svg { opacity: .68; width: 18px; height: 18px; }
  .nav-links a:hover svg { opacity: 1; transform: scale(1.15); }
}
/* 1101–1260px: iconos más grandes aún */
@media(min-width: 1101px) and (max-width: 1260px) {
  .nav-links a svg { width: 20px; height: 20px; }
}

.nav-actions { display: flex; gap: 10px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: all .3s; }

/* Mobile nav — rediseño premium */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: var(--dark);
  flex-direction: column; align-items: stretch; justify-content: flex-start;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }

/* Cabecera */
.mnav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mnav-brand {
  font-family: 'Cinzel', serif; font-size: .85rem; letter-spacing: 3.5px;
  text-transform: uppercase; color: rgba(255,255,255,.75);
  display: flex; align-items: center; gap: 10px;
}
.mnav-diamond { color: var(--amber); font-size: .7rem; }
.mobile-close {
  position: static;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all .2s; flex-shrink: 0;
}
.mobile-close:hover { background: rgba(212,175,114,.12); border-color: rgba(212,175,114,.35); color: var(--gold); }

/* Links numerados */
.mnav-links {
  flex: 1; display: flex; flex-direction: column;
  padding: 8px 0;
}
.mnav-links a {
  font-family: 'Cinzel', serif; font-size: .72rem; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,.48);
  padding: 17px 28px;
  display: flex; align-items: center; gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .2s, background .2s, padding-left .25s;
}
.mnav-links a:hover {
  color: var(--gold); background: rgba(212,175,114,.04); padding-left: 36px;
}
.mnav-num {
  font-family: 'DM Sans', sans-serif; font-size: .58rem; letter-spacing: 1px;
  color: var(--amber); opacity: .7; min-width: 18px; flex-shrink: 0;
}

/* Footer: CTA + idioma */
.mnav-footer {
  padding: 20px 28px 40px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column; gap: 16px; flex-shrink: 0;
}
.mnav-footer .btn { width: 100%; justify-content: center; }

/* mobile-lang-row ya definida más abajo, solo ajuste visual */

/* ===== BUTTONS — liquid glass + pill ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; font-family: 'Cinzel', serif; font-size: .72rem;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 400;
  border-radius: 50px; transition: all .35s cubic-bezier(.4,0,.2,1);
  white-space: nowrap; position: relative; overflow: hidden; cursor: pointer;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,.14) 0%, transparent 55%);
  pointer-events: none; border-radius: inherit;
}
.btn-amber {
  background: linear-gradient(150deg, rgba(200,133,58,.92) 0%, rgba(160,106,40,.96) 100%);
  color: #fff; border: 1px solid rgba(232,160,90,.55);
  box-shadow: 0 4px 22px rgba(200,133,58,.30), inset 0 1px 0 rgba(255,255,255,.22), inset 0 -1px 0 rgba(0,0,0,.12);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn-amber:hover {
  background: linear-gradient(150deg, rgba(224,160,90,.98) 0%, rgba(200,133,58,1) 100%);
  box-shadow: 0 10px 36px rgba(200,133,58,.5), inset 0 1px 0 rgba(255,255,255,.3);
  transform: translateY(-2px); border-color: rgba(232,160,90,.8);
}
.btn-outline-w {
  background: rgba(255,255,255,.08); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: #fff; border: 1px solid rgba(255,255,255,.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 4px 18px rgba(0,0,0,.18);
}
.btn-outline-w:hover {
  background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.75);
  transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 10px 28px rgba(0,0,0,.22);
}
.btn-gold {
  background: rgba(212,175,114,.1); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: var(--gold); border: 1px solid rgba(212,175,114,.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 4px 16px rgba(212,175,114,.12);
}
.btn-gold:hover {
  background: linear-gradient(150deg, rgba(212,175,114,.9) 0%, rgba(180,140,80,.95) 100%);
  color: var(--dark); box-shadow: 0 10px 30px rgba(212,175,114,.42), inset 0 1px 0 rgba(255,255,255,.28);
  transform: translateY(-1px); border-color: rgba(212,175,114,.8);
}
.btn-dark {
  background: linear-gradient(150deg, rgba(13,10,8,.92) 0%, rgba(26,19,15,.95) 100%);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: #fff; border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 4px 20px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.08);
}
.btn-dark:hover {
  background: linear-gradient(150deg, rgba(30,20,15,.95) 0%, rgba(45,30,20,.98) 100%);
  border-color: rgba(212,175,114,.3); transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.12);
}
.btn-wa {
  background: linear-gradient(150deg, rgba(37,211,102,.88) 0%, rgba(25,170,82,.93) 100%);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: #fff; border: 1px solid rgba(37,211,102,.5);
  box-shadow: 0 4px 22px rgba(37,211,102,.28), inset 0 1px 0 rgba(255,255,255,.22);
  font-family: 'DM Sans', sans-serif; font-size: .85rem; letter-spacing: 0;
}
.btn-wa:hover {
  background: linear-gradient(150deg, rgba(50,230,115,.95) 0%, rgba(37,211,102,1) 100%);
  box-shadow: 0 10px 34px rgba(37,211,102,.48), inset 0 1px 0 rgba(255,255,255,.3);
  transform: translateY(-2px); border-color: rgba(50,230,115,.7);
}
.btn-sm { padding: 10px 22px; font-size: .65rem; }
.btn-lg { padding: 18px 46px; font-size: .8rem; }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; color: #fff; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--dark);
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .45; transform: scale(1.06);
  transition: transform 10s ease-out;
}
.hero-gradient {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(13,10,8,.55) 0%,
    rgba(13,10,8,.15) 40%,
    rgba(13,10,8,.70) 100%
  );
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF72' fill-opacity='0.04'%3E%3Cpath d='M40 0L0 40l40 40 40-40L40 0zm0 10L70 40 40 70 10 40z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; padding: 0 24px; max-width: 900px; }
.hero-eyebrow {
  font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold-lt); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Cinzel', serif; font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 600; letter-spacing: 12px; text-transform: uppercase;
  line-height: 1; margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300; font-style: italic; color: rgba(255,255,255,.8);
  margin-bottom: 48px; line-height: 1.5;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: 'Cinzel', serif; font-size: .58rem; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
.scroll-bar {
  width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollBar 1.8s ease-in-out infinite;
}
@keyframes scrollBar { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:.3;transform:scaleY(.5)} }

/* Andean corner ornaments */
.hero::before, .hero::after {
  content: ''; position: absolute; z-index: 2; pointer-events: none;
  width: 80px; height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cpath d='M0 0 L80 0 L80 10 L10 10 L10 80 L0 80 Z' fill='rgba(212,175,114,.3)'/%3E%3C/svg%3E");
}
.hero::before { top: 80px; left: 40px; }
.hero::after  { bottom: 80px; right: 40px; transform: rotate(180deg); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--dark); }
.section-dark-2 { background: var(--dark-2); }
.section-warm { background: var(--warm); }
.section-warm-2 { background: var(--warm-2); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 48px; }

.section-label {
  font-family: 'Cinzel', serif; font-size: .62rem; letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.section-label--light { color: var(--gold); }
.section-label--dark  { color: var(--amber); }
.section-label::after { content: ''; flex: 0 0 30px; height: 1px; background: currentColor; opacity: .5; }

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; line-height: 1.15;
}
.section-heading--light { color: #fff; }
.section-heading--dark  { color: var(--text-l); }
.section-body { font-size: 1rem; line-height: 1.8; margin-top: 20px; }
.section-body--light { color: var(--text-d2); }
.section-body--dark  { color: var(--text-l2); }

/* Dividers */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent); margin: 0; opacity: .3; }
.divider-v { height: 60px; width: 1px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); }
.inca-stripe { height: 5px; background: repeating-linear-gradient(90deg, var(--amber) 0,var(--amber) 8px, var(--gold) 8px,var(--gold) 14px, var(--clay) 14px,var(--clay) 20px, var(--gold) 20px,var(--gold) 26px); }

/* ===== INTRO SECTION ===== */
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: center; min-height: 680px;
}
.intro-image { position: relative; height: 100%; min-height: 600px; overflow: hidden; }
.intro-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.intro-image:hover img { transform: scale(1.04); }
.intro-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--warm));
  z-index: 1;
}
.intro-content { padding: 80px 72px; }
.intro-stats {
  display: flex; gap: 32px; margin-top: 40px; padding-top: 40px;
  border-top: 1px solid var(--warm-3);
}
.stat-block .stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
  font-weight: 600; color: var(--amber); line-height: 1;
}
.stat-block .stat-lbl { font-size: .78rem; color: var(--text-l2); margin-top: 4px; }

/* ===== APARTMENT ===== */
.apt-visual {
  position: relative; height: 520px; overflow: hidden;
  cursor: pointer; border-radius: 4px;
}
.apt-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.apt-visual:hover img { transform: scale(1.04); }
.apt-visual-overlay {
  position: absolute; inset: 0; background: rgba(13,10,8,.35);
  display: flex; align-items: flex-end; padding: 24px;
}
.apt-badge {
  background: rgba(13,10,8,.8); backdrop-filter: blur(8px);
  border: 1px solid rgba(212,175,114,.3);
  color: var(--gold-lt); font-family: 'Cinzel', serif;
  font-size: .7rem; letter-spacing: 2px; padding: 8px 16px; border-radius: 2px;
}
.apt-specs {
  display: flex; gap: 0; margin: 28px 0;
  border: 1px solid var(--warm-3); border-radius: 4px; overflow: hidden;
}
.spec-item {
  flex: 1; padding: 18px 16px; text-align: center;
  border-right: 1px solid var(--warm-3);
}
.spec-item:last-child { border-right: 0; }
.spec-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--amber); }
.spec-lbl { font-size: .72rem; color: var(--text-l2); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.amenidades-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.amenidad-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: var(--text-l2);
}
.amenidad-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0;
}
.price-widget {
  background: var(--dark); color: #fff; padding: 28px 32px; border-radius: 4px;
  border-left: 3px solid var(--gold); margin-top: 28px;
}
.price-main {
  font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 600;
  color: var(--gold-lt);
}
.price-main sup { font-size: 1.2rem; font-weight: 400; }
.price-note { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 4px; }
.price-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.price-actions .btn { flex: 1; min-width: 140px; justify-content: center; }

/* ===== GALLERY THUMBNAILS ===== */
.apt-gallery-row { display: flex; gap: 8px; margin-top: 8px; }
.apt-thumb { flex: 1; height: 120px; overflow: hidden; border-radius: 2px; cursor: pointer; }
.apt-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.apt-thumb:hover img { transform: scale(1.1); }

/* ===== TOURS ===== */
.tours-scroll { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tour-card {
  background: var(--dark-3); border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.06); transition: all .35s;
  position: relative;
}
.tour-card:hover { transform: translateY(-8px); border-color: rgba(212,175,114,.2); box-shadow: 0 24px 48px rgba(0,0,0,.4); }
.tour-img { position: relative; height: 220px; overflow: hidden; }
.tour-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.tour-card:hover .tour-img img { transform: scale(1.08); }
.tour-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,10,8,.8) 0%, transparent 60%); }
.tour-price-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--amber); color: #fff;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600;
  padding: 6px 14px; border-radius: 2px;
}
.tour-dif-badge {
  position: absolute; bottom: 14px; left: 16px;
  font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
}
.dif-Fácil   { background: rgba(43,107,88,.8); color: #7ee8a2; border: 1px solid rgba(43,107,88,.5); }
.dif-Moderada{ background: rgba(200,133,58,.8); color: var(--gold-lt); border: 1px solid rgba(200,133,58,.5); }
.dif-Difícil { background: rgba(139,58,42,.8); color: #fca5a5; border: 1px solid rgba(139,58,42,.4); }
.tour-body { padding: 22px 24px 24px; }
.tour-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: #fff; margin-bottom: 10px; }
.tour-desc { font-size: .83rem; color: var(--text-d2); line-height: 1.65; margin-bottom: 16px; }
.tour-meta { display: flex; gap: 16px; font-size: .75rem; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.tour-includes-toggle { font-size: .75rem; color: var(--gold); cursor: pointer; display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.tour-includes-body { display: none; font-size: .75rem; color: var(--text-d2); line-height: 1.7; padding: 12px; background: rgba(0,0,0,.25); border-radius: 2px; margin-bottom: 14px; }
.tour-includes-body.open { display: block; }

/* ===== GALLERY SECTION ===== */
.gallery-masonry { columns: 3; column-gap: 12px; }
.gallery-item { break-inside: avoid; margin-bottom: 12px; overflow: hidden; border-radius: 3px; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; display: block; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0; background: rgba(13,10,8,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-zoom { color: #fff; font-size: 1.5rem; }
.gallery-empty { text-align: center; padding: 80px 24px; color: var(--text-d2); }

/* ===== REVIEWS ===== */
.reviews-slider { position: relative; overflow: hidden; }
.reviews-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.review-slide { min-width: 100%; padding: 0 80px; }
.review-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 300; font-style: italic; line-height: 1.6; color: var(--text-l); }
.review-quote::before { content: '\201C'; font-size: 4rem; color: var(--amber); line-height: 0; vertical-align: -.6em; margin-right: 4px; }
.review-author { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.review-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--amber); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: #fff; flex-shrink: 0; }
.review-name { font-weight: 500; color: var(--text-l); }
.review-country { font-size: .82rem; color: var(--text-l2); margin-top: 2px; }
.review-stars { color: var(--amber); font-size: .9rem; margin-bottom: 4px; }
.review-source { display: inline-block; font-size: .65rem; font-family: 'Cinzel',serif; letter-spacing: 1px; padding: 3px 8px; border: 1px solid var(--warm-3); color: var(--text-l2); border-radius: 1px; }
.reviews-nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 48px; }
.rev-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--warm-3); cursor: pointer; transition: all .25s; }
.rev-dot.active { background: var(--amber); width: 28px; border-radius: 4px; }
.reviews-arrows { display: flex; gap: 12px; }
.rev-arrow { width: 40px; height: 40px; border: 1px solid var(--warm-3); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-l2); transition: all .2s; font-size: .9rem; }
.rev-arrow:hover { background: var(--amber); border-color: var(--amber); color: #fff; }

/* ===== CONTACT / LOCATION ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 20px; }
.contact-icon { width: 44px; height: 44px; background: rgba(200,133,58,.15); border: 1px solid rgba(200,133,58,.3); display: flex; align-items: center; justify-content: center; border-radius: 2px; flex-shrink: 0; font-size: 1.1rem; }
.contact-label { font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
.contact-val { color: var(--text-l2); font-size: .9rem; line-height: 1.5; }
.map-frame { border-radius: 4px; overflow: hidden; height: 420px; position: relative; }
.map-frame iframe { width: 100% !important; height: 100% !important; border: 0 !important; position: absolute; inset: 0; }

/* ===== CTA FINAL ===== */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 120px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: 'K';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Cinzel', serif; font-size: 40vw; color: rgba(255,255,255,.018);
  line-height: 1; pointer-events: none;
}
.cta-section-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

/* ===== FOOTER ===== */
.footer { background: #080604; color: rgba(255,255,255,.5); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .brand-name { font-family: 'Cinzel', serif; font-size: 1.2rem; letter-spacing: 4px; color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: .85rem; line-height: 1.8; max-width: 280px; }
.footer-col h5 { font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 20px; }
.footer-col a, .footer-col span { display: block; font-size: .83rem; color: rgba(255,255,255,.45); margin-bottom: 12px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); transition: all .2s; border-radius: 1px; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: .75rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== WA FLOAT ===== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); animation: none; box-shadow: 0 10px 32px rgba(37,211,102,.5); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waPulse {
  0%,100%{box-shadow:0 6px 24px rgba(37,211,102,.4),0 0 0 0 rgba(37,211,102,.3)}
  60%{box-shadow:0 6px 24px rgba(37,211,102,.4),0 0 0 14px rgba(37,211,102,0)}
}

/* ===== INTRO PHOTO CAROUSEL ===== */
.intro-photo-carousel { position: relative; height: 100%; overflow: hidden; border-radius: inherit; }
.intro-photo-track { display: flex; height: 100%; transition: transform .85s cubic-bezier(.4,0,.2,1); }
.intro-photo-slide { min-width: 100%; height: 100%; flex-shrink: 0; }
.intro-photo-slide img { width: 100%; height: 100%; object-fit: cover; }
.intro-photo-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.iphoto-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.35); border: none; cursor: pointer; padding: 0;
  transition: background .3s, transform .3s;
}
.iphoto-dot.active { background: var(--gold); transform: scale(1.4); }

/* ===== LISTINGS CAROUSEL ===== */
.listings-carousel { margin-top: 48px; }
.listings-outer { overflow: hidden; border-radius: 10px; }
.listings-track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.listing-slide { min-width: 100%; }

.listing-card-full {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 500px; background: var(--dark-2);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,.4);
}

/* Galería izquierda */
.listing-gallery {
  position: relative; overflow: hidden; min-height: 360px;
}
.listing-gallery .lg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .55s ease;
}
.listing-gallery .lg-img.active { opacity: 1; }
.listing-gallery-placeholder {
  display: flex; align-items: center; justify-content: center;
  height: 100%; min-height: 360px;
  background: var(--dark-3); color: rgba(237,232,223,.3); font-size: .85rem; text-align: center; padding: 20px;
}
.listing-gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(26,19,15,.6) 100%);
  pointer-events: none;
}
.listing-gallery-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.listing-price-badge {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: rgba(13,10,8,.75); backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,114,.3); border-radius: 50px;
  padding: 6px 14px; display: flex; align-items: baseline; gap: 4px;
}
.listing-price-badge span { font-family: 'Cinzel',serif; font-size: 1rem; color: var(--gold); }
.listing-price-badge small { font-size: .65rem; color: rgba(237,232,223,.5); }

/* Info derecha */
.listing-info {
  padding: 40px 44px; display: flex; flex-direction: column; gap: 18px;
  background: var(--dark-2); overflow-y: auto;
}
.listing-badge { font-family: 'Cinzel',serif; font-size: .6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--amber); opacity: .8; }
.listing-name { font-family: 'Cormorant Garamond',serif; font-size: 2rem; font-weight: 400; color: var(--warm); line-height: 1.2; }
.listing-specs-row { display: flex; gap: 18px; flex-wrap: wrap; }
.listing-spec { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: rgba(237,232,223,.55); }
.listing-spec svg { opacity: .7; flex-shrink: 0; }
.listing-desc { font-size: .88rem; line-height: 1.75; color: rgba(237,232,223,.65); }
.listing-amenidades-row { display: flex; flex-wrap: wrap; gap: 7px; }
.listing-tag {
  font-size: .7rem; padding: 4px 11px; border-radius: 20px;
  background: rgba(212,175,114,.07); border: 1px solid rgba(212,175,114,.18); color: var(--gold-lt);
}
.listing-price-row {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 16px; margin-top: auto;
}
.listing-price { font-family: 'Cinzel',serif; font-size: 1.7rem; color: var(--amber); }
.listing-price-note { font-size: .78rem; color: rgba(237,232,223,.45); }
.listing-cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* Controles del carrusel */
.listings-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.listings-prev, .listings-next {
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.06); border: 1px solid rgba(212,175,114,.2);
  color: rgba(237,232,223,.55); display: flex; align-items: center; justify-content: center;
  transition: all .25s; flex-shrink: 0;
}
.listings-prev:hover, .listings-next:hover { background: rgba(212,175,114,.1); border-color: var(--gold); color: var(--gold); }
.listings-dots { display: flex; gap: 8px; align-items: center; }
.listing-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; cursor: pointer; padding: 0;
  background: rgba(255,255,255,.2); transition: all .3s;
}
.listing-dot.active { background: var(--gold); transform: scale(1.35); }

/* Responsive */
@media(max-width: 900px) {
  .listing-card-full { grid-template-columns: 1fr; min-height: auto; }
  .listing-gallery { min-height: 260px; height: 260px; }
  .listing-info { padding: 28px 24px; }
  .listing-name { font-size: 1.5rem; }
}
@media(max-width: 640px) {
  .listing-info { padding: 22px 18px; gap: 14px; }
  .listing-gallery { height: 220px; min-height: 220px; }
  .listing-price { font-size: 1.4rem; }
}

/* ===== LIGHTBOX ===== */
.lightbox { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(5,3,2,.95); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 2px; }
.lightbox-close { position: fixed; top: 20px; right: 28px; color: rgba(255,255,255,.5); font-size: 2rem; cursor: pointer; }
.lightbox-close:hover { color: #fff; }

/* ===== FADE ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ===== RESPONSIVE ===== */
@media(max-width: 1100px) {
  .tours-scroll { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media(max-width: 1100px) {
  /* Barra más alta y logo más prominente */
  .nav { padding: 26px 24px; }
  .nav.scrolled { padding: 20px 24px; }
  .nav-logo { font-size: 1.3rem; letter-spacing: 5px; gap: 14px; }
  .nav-logo-mark { width: 32px; height: 32px; }
  /* Hamburger más visible */
  .hamburger span { width: 26px; height: 2px; }
  .hamburger { gap: 6px; }
  /* Ocultar nav links; mantener actions pero solo globe */
  .nav-links { display: none; }
  .nav-actions { display: flex; }
  .nav-book-btn { display: none; }
  .lang-current-code, .lang-caret { display: none; }
  .lang-globe-btn { padding: 8px 10px; }
  .hamburger { display: flex; }
  /* Resto del layout */
  .container { padding: 0 28px; }
  .container-sm { padding: 0 28px; }
  .section { padding: 72px 0; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-image { min-height: 380px; }
  .intro-image-overlay { background: none; }
  .intro-content { padding: 48px 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .review-slide { padding: 0 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { letter-spacing: 6px; }
}
@media(max-width: 640px) {
  .tours-scroll { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .apt-gallery-row { flex-wrap: nowrap; overflow-x: auto; }
  .intro-stats { flex-wrap: wrap; gap: 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero::before, .hero::after { display: none; }

  /* Specs → carrusel de 2 en 2 */
  .apt-specs {
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    border-radius: 8px; gap: 0;
  }
  .apt-specs::-webkit-scrollbar { display: none; }
  .spec-item {
    flex: 0 0 50%; min-width: 120px;
    scroll-snap-align: start;
  }
}

/* ===== EXTENSIONES v2 ===== */

/* Hero badges */
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 32px;
}
.badge-pill {
  background: rgba(13,10,8,.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(212,175,114,.35); color: rgba(255,255,255,.85);
  font-family: 'DM Sans', sans-serif; font-size: .78rem; letter-spacing: .04em;
  padding: 7px 16px; border-radius: 40px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 0; }

/* Intro placeholder */
.intro-placeholder {
  background: rgba(255,255,255,.04); border: 1px dashed rgba(212,175,114,.25);
  height: 100%; min-height: 400px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  color: rgba(237,232,223,.4); text-align: center; padding: 24px;
}
.intro-placeholder p:first-child { font-size: 2rem; }

/* Section header centered */
.section-header-center { text-align: center; margin-bottom: 56px; }
.section-header-center .section-label { justify-content: center; }
.section-header-center .section-label::after { display: none; }
.section-header-center .section-label::before { content: ''; flex: 0 0 30px; height: 1px; background: currentColor; opacity: .5; }

/* Apt header */
.apt-header { margin-bottom: 40px; }

/* Apt amenidades wrapper */
.apt-amenidades-wrap {
  display: grid; grid-template-columns: 1fr 380px; gap: 60px;
  margin-top: 48px; align-items: start;
}
.apt-amenidades-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.25rem;
  font-weight: 600; color: var(--text-l); margin-bottom: 20px;
}
@media(max-width: 900px) {
  .apt-amenidades-wrap { grid-template-columns: 1fr; }
}

/* Lightbox nav buttons */
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 2rem; width: 50px; height: 50px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; transition: background .2s;
}
.lightbox-nav:hover { background: rgba(200,133,58,.4); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* Reviews rating top */
.reviews-rating-top {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  margin-top: 16px; flex-wrap: wrap;
}
.rating-number {
  font-family: 'Cormorant Garamond', serif; font-size: 2.5rem;
  font-weight: 600; color: var(--amber); line-height: 1;
}
.rating-stars-top { color: var(--amber); font-size: 1.1rem; }

/* Reviews slider - override flex to simple stacking */
.reviews-slider { position: relative; }
.reviews-arrows {
  display: flex; gap: 12px; justify-content: center; margin-bottom: 32px;
}
.reviews-track { position: relative; }
.review-slide { /* each slide shown via JS display toggle */ }

/* Tours note */
.tours-note {
  text-align: center; margin-top: 48px;
  font-size: .9rem; color: var(--text-d2);
}
.tours-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* Gallery empty */
.gallery-empty-content {
  max-width: 520px; margin: 0 auto; padding: 80px 24px; text-align: center;
  color: var(--text-l2);
}

/* CTA inner */
.cta-inner { position: relative; z-index: 1; }

/* Footer extras */
.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15);
  border-radius: 2px; color: rgba(255,255,255,.45); font-size: .7rem;
  font-family: 'Cinzel', serif; letter-spacing: 1px; transition: all .2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-bar a { color: rgba(255,255,255,.3); transition: color .2s; }
.footer-bottom-bar a:hover { color: var(--gold); }

/* Spec items fix (override for dark sections if needed) */
.section-dark .apt-specs { border-color: rgba(255,255,255,.1); }
.section-dark .spec-item { border-right-color: rgba(255,255,255,.08); }

/* ===== VIDEO SECTION ===== */
.video-wrap { border-radius: 6px; overflow: hidden; position: relative; padding-top: 56.25%; background: #000; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ===== DISPONIBILIDAD / CALCULADORA ===== */
.calc-widget {
  background: var(--dark-3); border: 1px solid rgba(212,175,114,.2);
  border-radius: 6px; padding: 36px 40px; max-width: 860px; margin: 0 auto;
}
.calc-dates {
  display: grid; grid-template-columns: 1fr auto 1fr 1fr; gap: 16px;
  align-items: end; margin-bottom: 24px;
}
.calc-arrow { color: var(--gold); font-size: 1.4rem; padding-bottom: 10px; align-self: end; }
.calc-field label {
  display: block; font-family: 'Cinzel', serif; font-size: .62rem;
  letter-spacing: 3px; text-transform: uppercase; color: var(--text-d2); margin-bottom: 8px;
}
.calc-field input, .calc-field select {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(212,175,114,.25);
  border-radius: 3px; padding: .7rem .9rem; color: var(--warm); font-family: 'DM Sans', sans-serif;
  font-size: .92rem; outline: none; transition: border-color .2s;
}
.calc-field input:focus, .calc-field select:focus { border-color: var(--amber); }
.calc-field select option { background: var(--dark-2); }
.calc-result { background: rgba(0,0,0,.2); border-radius: 4px; padding: 20px 24px; }
.calc-status { font-size: .9rem; margin-bottom: 8px; }
.calc-status.available { color: #7ee8a2; }
.calc-status.unavailable { color: #fca5a5; }
.calc-price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold-lt); margin: 4px 0 16px; }
.calc-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.calc-loading { text-align: center; color: var(--text-d2); padding: 16px; font-style: italic; }
@media(max-width: 700px) {
  .calc-dates { grid-template-columns: 1fr 1fr; }
  .calc-arrow { display: none; }
  .calc-widget { padding: 24px 20px; }
}
@media(max-width: 480px) {
  .calc-dates { grid-template-columns: 1fr; gap: 12px; }
}

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--warm-3); overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--warm-3); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 0; background: none; border: none; cursor: pointer;
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600;
  color: var(--text-l); text-align: left; transition: color .2s;
}
.faq-question:hover { color: var(--amber); }
.faq-icon { font-size: 1.5rem; color: var(--amber); flex-shrink: 0; transition: transform .3s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 0 20px; font-size: .93rem; color: var(--text-l2); line-height: 1.8; }

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 760px; margin: 0 auto; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { display: flex; flex-direction: column; }
.cf-full { grid-column: 1 / -1; }
.cf-field label {
  font-family: 'Cinzel', serif; font-size: .62rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-d2); margin-bottom: 8px;
}
.cf-field input, .cf-field select, .cf-field textarea {
  background: rgba(255,255,255,.05); border: 1px solid rgba(212,175,114,.2);
  border-radius: 3px; padding: .75rem 1rem; color: var(--warm);
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  outline: none; transition: border-color .2s;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-color: var(--amber); }
.cf-field select option { background: var(--dark-2); }
.cf-field textarea { resize: vertical; }
.form-error-banner {
  background: rgba(155,58,58,.15); border: 1px solid rgba(155,58,58,.3);
  color: #fca5a5; padding: 12px 16px; border-radius: 3px; margin-bottom: 20px; font-size: .88rem;
}
.contact-success {
  text-align: center; padding: 60px 24px; max-width: 560px; margin: 0 auto;
}
.contact-success-icon {
  width: 64px; height: 64px; background: rgba(43,107,88,.2); border: 2px solid var(--teal-lt);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #7ee8a2; margin: 0 auto 20px;
}
.contact-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 12px; }
.contact-success p { color: var(--text-d2); line-height: 1.7; }
@media(max-width: 640px) { .cf-grid { grid-template-columns: 1fr; } }

/* ===== LANGUAGE GLOBE DROPDOWN ===== */
.lang-globe-wrap { position: relative; }
.lang-globe-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.22); border-radius: 50px;
  padding: 7px 14px 7px 12px; color: rgba(255,255,255,.85);
  font-family: 'Cinzel', serif; font-size: .62rem; letter-spacing: 2px;
  cursor: pointer; transition: all .25s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.lang-globe-btn:hover, .lang-globe-wrap.open .lang-globe-btn {
  background: rgba(200,133,58,.2); border-color: rgba(200,133,58,.55); color: #fff;
  box-shadow: 0 4px 18px rgba(200,133,58,.2), inset 0 1px 0 rgba(255,255,255,.15);
}
.lang-globe-btn svg { flex-shrink: 0; stroke: currentColor; }
.lang-caret { transition: transform .25s; }
.lang-globe-wrap.open .lang-caret { transform: rotate(180deg); }
.lang-current-code { font-size: .62rem; letter-spacing: 2px; }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 10px); right: 0;
  background: rgba(13,10,8,.92); backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(212,175,114,.28); border-radius: 16px;
  overflow: hidden; min-width: 168px; z-index: 350;
  box-shadow: 0 16px 48px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
}
.lang-globe-wrap.open .lang-dropdown { display: block; }
.lang-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px; font-family: 'DM Sans', sans-serif;
  font-size: .88rem; color: rgba(255,255,255,.7); transition: all .15s;
}
.lang-dropdown a:hover { background: rgba(200,133,58,.18); color: #fff; }
.lang-dropdown a.active {
  color: var(--gold); background: rgba(212,175,114,.12);
  font-weight: 500;
}
.lang-dropdown a span { font-size: .88rem; }

/* ===== MOBILE NAV LANG ROW ===== */
.mobile-lang-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  padding-top: 8px; border-top: 1px solid rgba(255,255,255,.08); margin-top: 8px;
}
.mobile-lang-btn {
  font-family: 'DM Sans', sans-serif; font-size: .95rem;
  color: rgba(255,255,255,.55); padding: 8px 20px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15); transition: all .2s;
  background: rgba(255,255,255,.05);
}
.mobile-lang-btn:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.mobile-lang-btn.active {
  color: var(--gold); border-color: rgba(212,175,114,.5);
  background: rgba(212,175,114,.1);
}

/* ===== CONTACT FORM ACTIONS ===== */
.contact-form-actions {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px; align-items: stretch;
}
.contact-form-actions .btn { flex: 1; min-width: 200px; justify-content: center; }
@media(max-width: 640px) {
  .contact-form-actions { flex-direction: column; }
  .contact-form-actions .btn { flex: none; width: 100%; }
}

/* ===== PRICE ACTIONS MOBILE ===== */
@media(max-width: 640px) {
  .price-actions { flex-direction: column; }
  .price-actions .btn { flex: none !important; width: 100%; }
}

/* ═══════════════════════════════════════════════════
   PREMIUM FX — Cursor · Vanta · Letters · Tilt · Glow
   ═══════════════════════════════════════════════════ */

/* Vanta layer inside hero — sin capturar eventos de scroll */
#vanta-fx {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none !important;
}
#vanta-fx canvas {
  mix-blend-mode: screen; opacity: .5 !important;
  pointer-events: none !important;
}

/* Letter animation spans */
.ks-char { display: inline-block; will-change: transform, opacity; }

/* Hero title 3D letter transform */
.hero-title { transform-style: preserve-3d; perspective: 600px; }

/* Tour card enhanced hover (desktop) */
@media(pointer: fine) {
  .tour-card:hover { transform: none; } /* JS 3D tilt overrides */
}
.tour-card { will-change: transform; }
.tour-card:hover {
  box-shadow: 0 40px 80px rgba(0,0,0,.65),
              0 0 0 1px rgba(212,175,114,.22),
              0 0 50px rgba(212,175,114,.07);
}

/* Image shimmer sweep on hover */
.tour-img::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.08) 50%, transparent 62%);
  transform: translateX(-110%); transition: transform .65s ease;
}
.tour-card:hover .tour-img::after { transform: translateX(110%); }

/* Ambient top glow on dark sections */
.section-dark, .section-dark-2 { position: relative; overflow: hidden; }
.section-dark::before, .section-dark-2::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(212,175,114,.18), transparent);
  z-index: 0;
}
.section-dark .container, .section-dark-2 .container,
.section-dark .container-sm, .section-dark-2 .container-sm { position: relative; z-index: 1; }

/* Gallery item depth on hover */
.gallery-item {
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,.4);
  z-index: 2;
}

/* Floating WA button pulse enhanced */
.wa-float { transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE INTEGRAL — todos los breakpoints
   ═══════════════════════════════════════════════════ */

/* ── 1024px (laptop pequeño / tablet landscape) ── */
@media(max-width: 1024px) {
  .apt-amenidades-wrap { gap: 40px; }
  .contact-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ── 768px (tablet portrait) ── */
@media(max-width: 768px) {
  .section { padding: 72px 0; }
  .map-frame { height: 300px; }
  .hero-badges { gap: 6px; }
  .badge-pill { font-size: .72rem; padding: 5px 12px; }
  .apt-amenidades-wrap { gap: 24px; }
  .footer-grid { gap: 32px; }
  .section-header-center { margin-bottom: 40px; }
  .intro-content { padding: 48px 32px; }
  .contact-grid { gap: 40px; }
  .cta-section { padding: 80px 0; }
  .reviews-slider { overflow: visible; }
}

/* ── 640px (móvil grande) ── */
@media(max-width: 640px) {
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }
  .container-sm { padding: 0 20px; }
  .hero-title { letter-spacing: 2px; }
  .hero-eyebrow { font-size: .55rem; letter-spacing: 2px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 18px; }
  .price-widget { padding: 20px 18px; }
  .cta-section { padding: 64px 0; }
  .btn-lg { padding: 15px 30px; font-size: .74rem; }
  .spec-num { font-size: 1.6rem; }
  .apt-amenidades-wrap { gap: 20px; }
  .review-slide { padding: 0 12px; }
  .review-quote { font-size: clamp(1.1rem, 4vw, 1.45rem); }
  .footer-grid { gap: 24px; }
  .map-frame { height: 240px; }
  .contact-grid { gap: 28px; }
  .reviews-rating-top { gap: 8px; }
  .rating-number { font-size: 2rem; }
  .cta-section-actions { flex-direction: column; align-items: center; }
  .cta-section-actions .btn { width: 100%; max-width: 360px; justify-content: center; }
  .section-header-center { margin-bottom: 32px; }
  .tours-note { margin-top: 28px; font-size: .85rem; }
  .intro-content { padding: 36px 20px; }
  .gallery-masonry { column-gap: 8px; }
  .gallery-item { margin-bottom: 8px; }
}

/* ── 480px (móvil estándar) ── */
@media(max-width: 480px) {
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .container-sm { padding: 0 16px; }
  .section-heading { font-size: clamp(1.8rem, 7.5vw, 2.8rem); }
  .hero-title { letter-spacing: 0; }
  .hero-eyebrow { font-size: .5rem; letter-spacing: 1px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 10px; }
  .hero-scroll { display: none; }
  .spec-num { font-size: 1.4rem; }
  .spec-lbl { font-size: .62rem; }
  .nav { padding: 14px 16px; }
  .nav.scrolled { padding: 12px 16px; }
  .price-widget { padding: 16px 14px; }
  .btn-lg { padding: 14px 24px; }
  .review-slide { padding: 0 6px; }
  .review-quote { font-size: 1.05rem; }
  .tour-body { padding: 16px 16px 18px; }
  .tour-img { height: 200px; }
  .map-frame { height: 210px; }
  .footer-bottom-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .calc-widget { padding: 18px 14px; }
  .faq-question { padding: 16px 0; font-size: 1rem; }
  .section-header-center { margin-bottom: 24px; }
  .intro-image { min-height: 240px; }
  .intro-content { padding: 28px 0; }
  .reviews-arrows { margin-bottom: 20px; }
  .rev-arrow { width: 34px; height: 34px; }
  .contact-item { gap: 12px; }
  .contact-icon { width: 36px; height: 36px; font-size: .9rem; }
  .amenidades-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 4px; }
  .badge-pill { font-size: .68rem; padding: 5px 10px; }
  .cta-section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .review-stars { font-size: .8rem; }
  .review-avatar { width: 42px; height: 42px; font-size: 1.2rem; }
  .tours-note { font-size: .8rem; }
}

/* ── 360px (teléfonos muy pequeños) ── */
@media(max-width: 360px) {
  .hero-title { font-size: clamp(2.2rem, 12vw, 3.2rem); }
  .btn { padding: 11px 20px; font-size: .63rem; }
  .btn-lg { padding: 13px 20px; }
  .btn-sm { padding: 9px 14px; font-size: .6rem; }
  .container { padding: 0 12px; }
  .container-sm { padding: 0 12px; }
  .section { padding: 40px 0; }
  .nav { padding: 12px 14px; }
  .hero-eyebrow { display: none; }
  .spec-num { font-size: 1.25rem; }
  .price-widget { padding: 14px 12px; }
  .calc-widget { padding: 16px 12px; }
  .faq-question { font-size: .92rem; }
  .section-header-center { margin-bottom: 20px; }
}

/* ── Landscape móvil ── */
@media(max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
  .hero { height: auto; min-height: 100vh; padding: 100px 0 60px; }
  .hero-content { padding: 0 24px; }
  .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
  .hero-actions { margin-top: 16px; }
  .hero-scroll { display: none; }
  .section { padding: 48px 0; }
}
