/* ═══════════════════════════════════════════════════════════
   SUNSOUL — Design System
   Estilo: Luxury Organic (Aman / Six Senses / Explora)
   Paleta: Beige · Terracota · Verde · Negro
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Colors — Paleta oficial SunSoul */
  --cream:        #FAF9F6;
  --beige:        #F2EEE6;
  --beige-mid:    #E5DDD0;
  --beige-dark:   #D4C9B8;
  --terracota:    #C45C1E;   /* Calidez y Versatilidad — La Tierra */
  --terracota-dk: #A44A15;
  --verde:        #728269;   /* Paz y Tranquilidad — La Naturaleza */
  --verde-dk:     #5A6854;
  --negro:        #343434;   /* Poder y Exclusividad — La Elegancia */
  --text:         #343434;
  --muted:        #7A7A7A;
  --border:       #DDD8CF;
  --white:        #FFFFFF;

  /*
   * Tipografía oficial: TAN Moncheri (fuente premium de Tan Type)
   * Para producción: adquirir en tantype.com y subir con @font-face.
   * Mientras tanto se usa Cormorant Garamond como sustituto elegante
   * de carácter muy similar (serif romántico de lujo).
   */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;

  /* Spacing (8px base) */
  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-6:  3rem;
  --sp-8:  4rem;
  --sp-12: 6rem;
  --sp-16: 8rem;
  --sp-20: 10rem;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow-md: 0 8px 40px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);

  /* Transitions */
  --ease:  cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(0,0,.2,1);

  /* Layout */
  --max-w:    1400px;
  --max-w-md: 1100px;
  --radius:   2px;
  --radius-lg: 8px;

  /* Z-index scale */
  --z-cursor:  9999;
  --z-loader:  9000;
  --z-overlay: 1000;
  --z-modal:   900;
  --z-nav:     800;
  --z-fab:     700;
  --z-above:   10;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
address { font-style: normal; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--terracota); border-radius: 3px; }
::selection { background: var(--terracota); color: #fff; }

/* ── Grano orgánico — textura sutil sobre todo el sitio ───────
   SVG feTurbulence inline, sin peso de imagen. Da la sensación
   táctil de papel/tierra propia de la dirección "orgánico inmersivo". */
.grain {
  position: fixed;
  inset: 0;
  z-index: var(--z-cursor);
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { .grain { display: none; } }

/* ── Skip link (accessibility) ─────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--negro);
  color: white;
  padding: .5rem 1rem;
  z-index: var(--z-cursor);
  border-radius: var(--radius);
  font-size: .875rem;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ── Scroll progress bar ────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--terracota);
  z-index: var(--z-cursor);
  transition: width .1s linear;
  pointer-events: none;
}

/* ── Custom Cursor — desactivado, cursor normal del sistema ── */
.cursor { display: none; }

/* ── Loader ─────────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-loader);
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.fade-out { opacity: 0; visibility: hidden; }

.loader__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.loader__logo {
  width: 80px;
  opacity: 0;
  transform: translateY(10px);
  animation: loaderIn .6s .2s var(--ease) forwards;
}
.loader__bar-wrap {
  width: 160px;
  height: 1px;
  background: var(--beige-mid);
  overflow: hidden;
}
.loader__bar {
  height: 100%;
  width: 0%;
  background: var(--terracota);
  transition: width .05s linear;
}

@keyframes loaderIn {
  to { opacity: 1; transform: none; }
}

/* ── Typography helpers ──────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: var(--sp-3);
}
.eyebrow--light { color: rgba(255,255,255,.6); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  background: var(--terracota);
  color: white;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .3s, transform .2s, box-shadow .3s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--terracota-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196,122,81,.3);
}
.btn-primary:active { transform: translateY(0); }

.btn-full { width: 100%; justify-content: center; }

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border: 1px solid rgba(255,255,255,.5);
  color: white;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .3s, border-color .3s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .625rem 1.25rem;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color .3s, color .3s;
}
.btn-outline-sm:hover { border-color: var(--terracota); color: var(--terracota); }

.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .625rem 1.25rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .04em;
  border-radius: var(--radius);
  transition: color .3s;
}
.btn-ghost-sm:hover { color: var(--text); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  background: #25D366;
  color: white;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: var(--radius);
  margin-top: var(--sp-3);
  transition: opacity .3s;
}
.btn-wa:hover { opacity: .9; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
@media (max-width: 768px) { .container { padding: 0 var(--sp-3); } }

/* ── Reveal animations ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

.reveal-hero {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .9s var(--delay, 0s) var(--ease) forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────────────────────────
   NAVEGACIÓN
───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 1.5rem 0;
}
.nav.scrolled {
  background: rgba(253,250,245,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 1rem 0;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-4);
}
.nav__left, .nav__right {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.nav__right { justify-content: flex-end; }

.nav__link {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .3s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform .3s var(--ease);
  transform-origin: left;
}
.nav__link:hover::after { transform: scaleX(1); }
.nav.scrolled .nav__link { color: var(--text); }
.nav__link:hover { color: var(--terracota); }
.nav.scrolled .nav__link:hover { color: var(--terracota); }

.nav__logo {
  display: block;
  justify-self: center;
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.nav.scrolled .nav__logo {
  opacity: 1;
  pointer-events: all;
}
.nav__logo-img { width: 52px; }
.nav__logo-light { display: block; }
.nav__logo-dark  { display: none; }
.nav.scrolled .nav__logo-light { display: none; }
.nav.scrolled .nav__logo-dark  { display: block; }

.nav__reserve-btn {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.4);
  padding: .5rem 1.25rem;
  border-radius: var(--radius);
  transition: background .3s, color .3s, border-color .3s;
}
.nav__reserve-btn:hover {
  background: rgba(255,255,255,.15);
  color: white;
  border-color: rgba(255,255,255,.7);
}
.nav.scrolled .nav__reserve-btn {
  color: var(--terracota);
  border-color: var(--terracota);
}
.nav.scrolled .nav__reserve-btn:hover {
  background: var(--terracota);
  color: white;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  grid-column: 3;
  justify-self: end;
}
.nav__burger-line {
  display: block;
  height: 1px;
  background: rgba(255,255,255,.85);
  transition: background .3s, transform .3s, opacity .3s;
}
.nav.scrolled .nav__burger-line { background: var(--text); }
.nav__burger.open .nav__burger-line:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav__burger.open .nav__burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }

@media (max-width: 900px) {
  .nav__left, .nav__right { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { grid-template-columns: auto 1fr; }
  .nav__logo { justify-self: start; }
}

/* ─────────────────────────────────────────────────────────────
   OVERLAY MENU
───────────────────────────────────────────────────────────── */
.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.overlay-menu.open {
  pointer-events: all;
  opacity: 1;
}
.overlay-menu__bg {
  position: absolute;
  inset: 0;
  background: var(--negro);
}
.overlay-menu__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: var(--sp-16) var(--sp-8);
  gap: var(--sp-8);
}
.overlay-menu__close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.overlay-menu__close span {
  position: absolute;
  width: 20px; height: 1px;
  background: rgba(255,255,255,.7);
}
.overlay-menu__close span:nth-child(1) { transform: rotate(45deg); }
.overlay-menu__close span:nth-child(2) { transform: rotate(-45deg); }

.overlay-menu__nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.overlay-menu__link {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: rgba(255,255,255,.7);
  line-height: 1.2;
  transition: color .3s;
  display: block;
  transform: translateX(-20px);
  opacity: 0;
  transition: color .3s, transform .5s var(--ease), opacity .5s var(--ease);
}
.overlay-menu.open .overlay-menu__link {
  transform: none;
  opacity: 1;
}
.overlay-menu.open .overlay-menu__link:nth-child(1) { transition-delay: .1s; }
.overlay-menu.open .overlay-menu__link:nth-child(2) { transition-delay: .15s; }
.overlay-menu.open .overlay-menu__link:nth-child(3) { transition-delay: .2s; }
.overlay-menu.open .overlay-menu__link:nth-child(4) { transition-delay: .25s; }
.overlay-menu.open .overlay-menu__link:nth-child(5) { transition-delay: .3s; }
.overlay-menu.open .overlay-menu__link:nth-child(6) { transition-delay: .35s; }
.overlay-menu__link:hover { color: white; }
.overlay-menu__link--cta { color: var(--terracota); font-style: italic; }
.overlay-menu__link--cta:hover { color: #E08A60; }

.overlay-menu__info {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.overlay-menu__info p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  font-family: var(--sans);
  letter-spacing: .08em;
}

/* ─────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: -8% -4%;
  overflow: hidden;
  will-change: transform;
}

/* Divisor orgánico bajo el hero — curva suave hacia el marquee, refuerza
   la sensación de paisaje/naturaleza en vez de un corte recto. */
.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 6.5vw;
  min-height: 44px;
  max-height: 90px;
  z-index: 1; /* debajo de .hero__props (z-index:3) y .hero__content (z-index:2) */
  fill: var(--negro);
  pointer-events: none;
}

/* Video principal */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.hero__video.playing { opacity: 1; }

/* Imagen de respaldo */
.hero__media-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}
.hero__media-item.active { opacity: 1; }
/* Se oculta cuando el video está corriendo */
.hero__media-item.hidden-by-video { opacity: 0; }

.hero__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 14s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08) translate(1%, 0.5%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__media-img { animation: none; }
  .hero__video     { transition: none; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.25) 0%,
    rgba(0,0,0,.42) 50%,
    rgba(0,0,0,.62) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 6rem var(--sp-6) 10rem;
  max-width: 860px;
}

/* Logo grande dentro del hero */
.hero__logo {
  width: clamp(160px, 22vw, 260px);
  margin: 0 auto var(--sp-3);
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.3));
}

/* Línea divisoria sutil bajo el logo */
.hero__logo-divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,.35);
  margin: 0 auto var(--sp-3);
}
.hero__eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: var(--sp-4);
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: rgba(255,255,255,.9);
  margin-bottom: var(--sp-6);
  letter-spacing: .01em;
}
.hero__title em {
  font-style: italic;
  color: rgba(255,255,255,.75);
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

/* Property links en hero */
.hero__props {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  animation: fadeUp .8s 1.4s var(--ease) both;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__prop-item {
  text-align: center;
  color: rgba(255,255,255,.7);
  padding: var(--sp-3) var(--sp-8);
  transition: color .3s, background .3s;
  display: block;
  flex: 1;
  max-width: 320px;
}
.hero__prop-item:hover {
  color: white;
  background: rgba(255,255,255,.06);
}
.hero__prop-name {
  display: block;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero__prop-price {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .04em;
  margin-top: .3rem;
  color: rgba(255,255,255,.45);
}
.hero__prop-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 600px) {
  .hero__prop-item { padding: var(--sp-2) .5rem; }
  .hero__content { padding: 5rem var(--sp-3) 9rem; }
  /* En pantallas angostas "Glamping La Nonita" no cabía en una línea y se
     recortaba contra el borde inferior del hero — se achica y ajusta el
     letter-spacing para que ambas propiedades quepan en una sola línea. */
  .hero__prop-name {
    font-size: .64rem;
    letter-spacing: .02em;
    white-space: nowrap;
  }
  .hero__prop-price { font-size: .62rem; }
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 6rem;
  right: var(--sp-6);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  animation: fadeUp .8s 1.6s var(--ease) both;
}
.hero__scroll-track {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.15);
  position: relative;
  overflow: hidden;
}
.hero__scroll-thumb {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: rgba(255,255,255,.6);
  animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: -30px; }
  100% { top: 60px; }
}
.hero__scroll-text {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .hero__switcher { gap: var(--sp-2); bottom: var(--sp-12); }
  .hero__scroll-hint { display: none; }
  .hero__sw { padding: var(--sp-1) var(--sp-2); }
}

/* ─────────────────────────────────────────────────────────────
   MARQUEE
───────────────────────────────────────────────────────────── */
.marquee {
  background: var(--negro);
  overflow: hidden;
  padding: var(--sp-3) 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee__track span {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
  letter-spacing: .04em;
}
.marquee__dot { color: var(--terracota) !important; font-size: .6rem !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ─────────────────────────────────────────────────────────────
   STATS
───────────────────────────────────────────────────────────── */
.stats {
  background: var(--negro);
  padding: var(--sp-16) var(--sp-6) var(--sp-12);
  border-top: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.stats__arc {
  position: relative;
  max-width: var(--max-w-md);
  margin: 0 auto;
}
.stats__arc-svg {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 220px;
  overflow: visible;
  pointer-events: none;
}
.stats__arc-track {
  fill: none;
  stroke: rgba(255,255,255,.08);
  stroke-width: 1;
}
.stats__arc-path {
  fill: none;
  stroke: var(--terracota);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 1300;
  stroke-dashoffset: 1300;
  filter: drop-shadow(0 0 6px rgba(196,92,30,.55));
  transition: stroke-dashoffset 1.8s var(--ease);
}
.stats__arc.revealed .stats__arc-path { stroke-dashoffset: 0; }
.stats__sun {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFE7B8 0%, var(--terracota) 70%);
  box-shadow: 0 0 20px 6px rgba(196,92,30,.55);
  opacity: 0;
  transition: opacity 1s ease .7s;
}
.stats__arc.revealed .stats__sun { opacity: 1; }
.stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 0;
  padding-top: 130px;
}
.stat-item {
  text-align: center;
  padding: var(--sp-3) var(--sp-2);
}
.stat-item--dawn    { transform: translateY(0); }
.stat-item--morning { transform: translateY(-54px); }
.stat-item--noon    { transform: translateY(-38px); }
.stat-item--dusk    { transform: translateY(-4px); }
.stat-item__time {
  display: block;
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracota);
  opacity: .85;
  margin-bottom: var(--sp-2);
}
.stat-item__num {
  display: inline;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: white;
  line-height: 1;
}
.stat-item__unit {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 300;
  color: rgba(255,255,255,.6);
}
.stat-item__label {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: var(--sp-2);
}

@media (max-width: 768px) {
  .stats__arc-svg, .stats__sun { display: none; }
  .stats__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: var(--sp-6) var(--sp-2);
    padding-top: 0;
  }
  .stat-item--dawn, .stat-item--morning, .stat-item--noon, .stat-item--dusk {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stats__arc-path { transition: none; stroke-dashoffset: 0; }
  .stats__sun { transition: none; opacity: 1; }
}

/* ─────────────────────────────────────────────────────────────
   ABOUT / MANIFESTO
───────────────────────────────────────────────────────────── */
.about {
  padding: var(--sp-20) var(--sp-6);
  background: var(--cream);
}
.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--negro);
  margin-bottom: var(--sp-4);
}
.about__title em { font-style: italic; color: var(--terracota); }

.about__divider {
  width: 48px;
  height: 1px;
  background: var(--terracota);
  margin-bottom: var(--sp-4);
  opacity: .6;
}
.about__body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: var(--sp-3);
}
.about__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
}
.about__pillar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--verde);
}
.about__pillar svg { opacity: .7; }

.about__img-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--sp-2);
  height: 560px;
}
.about__img-main {
  grid-row: 1 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.about__img-secondary {
  grid-row: 1 / 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.about__img-main img,
.about__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.about__img-main:hover img,
.about__img-secondary:hover img { transform: scale(1.04); }

@media (max-width: 1024px) {
  .about__inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .about__img-col { height: 400px; }
}
@media (max-width: 600px) {
  .about { padding: var(--sp-12) var(--sp-3); }
  .about__img-col { height: 300px; }
}

/* ─────────────────────────────────────────────────────────────
   PROPERTIES
───────────────────────────────────────────────────────────── */
.properties { background: var(--cream); position: relative; }

.properties__header {
  text-align: center;
  padding: var(--sp-16) var(--sp-6) var(--sp-12);
}
.properties__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--negro);
}
.properties__title em { font-style: italic; color: var(--terracota); }

.property {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 70vh;
  border-top: 1px solid var(--border);
}
.property--reverse { grid-template-columns: 42% 58%; }
.property--reverse .property__body { order: -1; }

.property__media {
  position: relative;
  overflow: hidden;
  background: var(--beige);
}
.property__imgs { position: relative; width: 100%; height: 100%; min-height: 500px; }
.property__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s ease;
}
.property__img.active { opacity: 1; }

.property__img-nav {
  position: absolute;
  bottom: var(--sp-3);
  right: var(--sp-3);
  display: flex;
  gap: var(--sp-1);
  z-index: 2;
}
.prop-nav {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--negro);
  transition: background .3s, transform .2s;
  backdrop-filter: blur(6px);
}
.prop-nav:hover { background: white; transform: scale(1.05); }

.property__img-dots {
  position: absolute;
  bottom: var(--sp-3);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 2;
}
.prop-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  transition: background .3s, transform .3s;
  cursor: pointer;
}
.prop-dot.active { background: white; transform: scale(1.3); }

.property__body {
  padding: var(--sp-12) var(--sp-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.property__type {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: var(--sp-3);
  display: block;
}
.property__name {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--negro);
  margin-bottom: var(--sp-4);
}
.property__name em { font-style: italic; }

.property__line {
  width: 44px;
  height: 1px;
  background: var(--terracota);
  opacity: .5;
  margin-bottom: var(--sp-4);
}
.property__desc {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: var(--sp-6);
}
.property__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-8);
}
.property__features li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--sans);
  font-size: .82rem;
  color: var(--text);
  font-weight: 300;
}
.property__features li svg { color: var(--verde); flex-shrink: 0; }

.property__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-3);
  flex-wrap: wrap;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}
.property__price { line-height: 1.2; }
.property__price-from {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .06em;
}
.property__price-amt {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--negro);
}
.property__price-per {
  font-family: var(--sans);
  font-size: .8rem;
  color: var(--muted);
}
.property__actions { display: flex; gap: var(--sp-2); align-items: center; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .property, .property--reverse {
    grid-template-columns: 1fr;
  }
  .property--reverse .property__body { order: 0; }
  .property__body { padding: var(--sp-8) var(--sp-4); }
  .property__imgs { min-height: 380px; }
}
@media (max-width: 600px) {
  .property__features { grid-template-columns: 1fr; }
  .properties__header { padding: var(--sp-12) var(--sp-3) var(--sp-8); }
  .property__body { padding: var(--sp-6) var(--sp-3); }
}

/* ─────────────────────────────────────────────────────────────
   BOOKING SECTION
───────────────────────────────────────────────────────────── */
.booking-section {
  background: var(--negro);
  padding: var(--sp-16) var(--sp-6);
  position: relative;
}
.booking-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.booking-section__header {
  margin-bottom: var(--sp-10);
}
.booking-section__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: var(--sp-3);
}
.booking-section__title em { font-style: italic; color: rgba(255,255,255,.6); }
.booking-section__sub {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  font-weight: 300;
}
.booking-section__promo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: var(--sp-4);
  padding: .55rem var(--sp-3);
  border: 1px solid rgba(196,92,30,.4);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  color: var(--terracota);
  background: rgba(196,92,30,.08);
  transition: background .3s, border-color .3s;
}
.booking-section__promo svg { color: var(--terracota); flex-shrink: 0; }
.booking-section__promo:hover { background: rgba(196,92,30,.16); border-color: rgba(196,92,30,.7); }

/* Booking Widget */
.bw {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.bw__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr auto;
  align-items: stretch;
}
.bw__field {
  padding: var(--sp-4) var(--sp-4);
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .5rem;
  min-height: 90px;
}
.bw__field--guests { border-right: none; }
.bw__label {
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.bw__select, .bw__input {
  background: none;
  border: none;
  color: white;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  width: 100%;
  outline: none;
}
.bw__select option { background: var(--negro); color: white; }
.bw__input::placeholder { color: rgba(255,255,255,.3); }
.bw__input:read-only { cursor: pointer; }

.bw__sep { width: 1px; background: rgba(255,255,255,.08); flex-shrink: 0; display: none; }

.bw__cta {
  padding: var(--sp-4) var(--sp-6);
  border-radius: 0;
  font-size: .75rem;
  height: 100%;
  align-self: stretch;
  white-space: nowrap;
}

.bw__price-preview {
  padding: var(--sp-2) var(--sp-4);
  font-family: var(--sans);
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.06);
  min-height: 36px;
  display: flex;
  align-items: center;
}
.bw__price-preview strong { color: var(--terracota); }

.bw__trust {
  display: flex;
  gap: var(--sp-6);
  padding: var(--sp-2) var(--sp-4) var(--sp-3);
  flex-wrap: wrap;
}
.bw__trust span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--sans);
  font-size: .7rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
}
.bw__trust span svg { opacity: .5; }

/* Guest counter */
.guest-counter {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.guest-counter__btn {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, color .3s;
  line-height: 1;
}
.guest-counter__btn:hover { border-color: rgba(255,255,255,.6); color: white; }
.guest-counter__num {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: white;
  min-width: 24px;
  text-align: center;
}

@media (max-width: 1100px) {
  .bw__row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .bw__field { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .bw__cta { grid-column: 1 / -1; border-radius: 0; }
}
@media (max-width: 600px) {
  .bw__row { grid-template-columns: 1fr; }
  .booking-section { padding: var(--sp-12) var(--sp-3); }
}

/* Flatpickr overrides */
.flatpickr-calendar {
  background: #3E3B37; /* un poco más clara que --negro para dar aire al calendario */
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  font-family: var(--sans);
  box-shadow: var(--shadow-lg);
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
  background: var(--terracota) !important;
  border-color: var(--terracota) !important;
}
.flatpickr-day.inRange {
  background: rgba(196,122,81,.2) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.flatpickr-day { color: rgba(255,255,255,.7); }
.flatpickr-day.today { border-color: var(--terracota) !important; }

/* Fechas no disponibles: el tema por defecto de Flatpickr las pinta casi
 * negras a baja opacidad (pensado para fondos claros) — sobre este fondo
 * oscuro quedaban invisibles. Aquí quedan visibles pero tachadas, para que
 * se entienda que existen pero no se pueden elegir. */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(255,255,255,.32) !important;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,.32);
  cursor: not-allowed;
  background: transparent !important;
  border-color: transparent !important;
}
.flatpickr-months { color: rgba(255,255,255,.6); }
.flatpickr-current-month, .flatpickr-monthDropdown-months,
.flatpickr-year { color: white !important; background: transparent !important; }
/* El <select> nativo de meses abre su lista con fondo blanco del navegador;
   sin esto el texto (blanco, heredado de arriba) queda invisible. */
.flatpickr-monthDropdown-months option {
  background: var(--negro);
  color: white;
}
.flatpickr-prev-month, .flatpickr-next-month { color: rgba(255,255,255,.5) !important; fill: rgba(255,255,255,.5) !important; }
.flatpickr-weekday { color: rgba(255,255,255,.3) !important; }

/* Aviso flotante — mínimo de noches al seleccionar check-in */
.min-nights-tip {
  position: fixed;
  transform: translate(-50%, -130%);
  background: var(--negro);
  color: white;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 6px 11px;
  border-radius: var(--radius);
  white-space: nowrap;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  box-shadow: var(--shadow-md);
  transition: opacity .25s ease, transform .25s ease;
}
.min-nights-tip.visible { opacity: 1; transform: translate(-50%, -145%); }
.min-nights-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--negro);
}
@media (prefers-reduced-motion: reduce) {
  .min-nights-tip { transition: none; }
}

/* ─────────────────────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────────────────────── */
.gallery {
  padding: var(--sp-16) var(--sp-6);
  background: var(--cream);
}
.gallery__header {
  text-align: center;
  margin-bottom: var(--sp-8);
}
.gallery__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--negro);
}
.gallery__title em { font-style: italic; color: var(--terracota); }

.gallery__filters {
  display: flex;
  justify-content: center;
  gap: var(--sp-1);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
}
.g-tab {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .5rem 1.25rem;
  border-radius: 50px;
  transition: background .3s, color .3s;
}
.g-tab.active, .g-tab:hover {
  background: var(--negro);
  color: white;
}

.gallery__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: var(--sp-1);
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  background: var(--beige);
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), opacity .4s;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item.hidden-item { display: none; }

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .4s;
}
.gallery__item-overlay svg { opacity: 0; transform: scale(.7); transition: opacity .4s, transform .4s var(--ease); }
.gallery__item:hover .gallery__item-overlay { background: rgba(0,0,0,.3); }
.gallery__item:hover .gallery__item-overlay svg { opacity: 1; transform: scale(1); }

@media (max-width: 1024px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; } }
@media (max-width: 480px)  { .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; } }
@media (max-width: 600px)  { .gallery { padding: var(--sp-12) var(--sp-3); } }

/* ─────────────────────────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
}
.lightbox__close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  z-index: 2;
  color: rgba(255,255,255,.7);
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  transition: color .3s, border-color .3s;
}
.lightbox__close:hover { color: white; border-color: rgba(255,255,255,.6); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: rgba(255,255,255,.7);
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  transition: color .3s, border-color .3s, background .3s;
}
.lightbox__nav:hover { color: white; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }
.lightbox__nav--prev { left: var(--sp-4); }
.lightbox__nav--next { right: var(--sp-4); }
.lightbox__wrap {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
}
.lightbox__wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: opacity .2s;
}
.lightbox__counter {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  z-index: 2;
  letter-spacing: .1em;
}

/* ─────────────────────────────────────────────────────────────
   EXPERIENCES
───────────────────────────────────────────────────────────── */
.experiences {
  position: relative;
  padding: var(--sp-20) var(--sp-6);
  overflow: hidden;
}
.experiences__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform .1s;
}
@media (max-width: 768px) {
  .experiences__bg { background-attachment: scroll; }
}
.experiences__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.65) 0%, rgba(0,0,0,.75) 100%);
}
/* Divisor orgánico hacia Testimonios — misma idea que el del hero */
.experiences__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 6vw;
  min-height: 40px;
  max-height: 80px;
  z-index: 3;
  fill: var(--beige);
}

/* ── Divisor orgánico reutilizable ──────────────────────────────
   Se coloca al final de una sección con position:relative; el fill
   se pinta del color de la sección SIGUIENTE, creando la transición. */
.organic-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 6vw;
  min-height: 40px;
  max-height: 80px;
  z-index: 2;
  pointer-events: none;
}
.organic-wave--negro { fill: var(--negro); }
.organic-wave--cream { fill: var(--cream); }
.experiences__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
}
.experiences__header {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.experiences__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
}
.experiences__title em { font-style: italic; color: rgba(255,255,255,.65); }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-1);
}
.exp-card {
  --accent: var(--terracota);
  padding: var(--sp-8) var(--sp-6);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  text-align: center;
  transition: background .4s, border-color .4s;
  backdrop-filter: blur(4px);
}
.exp-card:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); border-top-color: var(--accent); }
.exp-card--dawn      { --accent: #E8935A; }
.exp-card--noon      { --accent: var(--verde); }
.exp-card--afternoon { --accent: var(--beige-dark); }
.exp-card--dusk      { --accent: var(--terracota); }
.exp-card--night     { --accent: #5B6478; }
.exp-card--always    { --accent: rgba(255,255,255,.25); }
.exp-card__time {
  display: block;
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}
.exp-card__icon {
  color: rgba(255,255,255,.5);
  margin-bottom: var(--sp-3);
  transition: color .4s;
}
.exp-card:hover .exp-card__icon { color: var(--accent); }
.exp-card__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: white;
  margin-bottom: var(--sp-2);
}
.exp-card__desc {
  font-family: var(--sans);
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
}

@media (max-width: 900px)  { .exp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .exp-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px)  { .experiences { padding: var(--sp-12) var(--sp-3); } }

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────────────────── */
.testimonials {
  background: var(--beige);
  padding: var(--sp-20) var(--sp-6);
  position: relative;
  overflow: hidden;
}
/* Manchas orgánicas de fondo — evitan que el beige plano se sienta estático */
.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.testimonials::before {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(196,92,30,.07) 0%, transparent 70%);
}
.testimonials::after {
  width: 520px;
  height: 520px;
  bottom: -200px;
  right: -160px;
  background: radial-gradient(circle, rgba(114,130,105,.08) 0%, transparent 70%);
}
.testimonials__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonials__mark {
  font-family: var(--serif);
  font-size: 10rem;
  font-weight: 300;
  color: var(--beige-dark);
  line-height: .5;
  margin-bottom: var(--sp-6);
  user-select: none;
}
.t-slide { display: none; animation: tFadeIn .5s var(--ease); }
.t-slide.active { display: block; }
@keyframes tFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.t-slide__text {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--negro);
  margin-bottom: var(--sp-6);
}
.t-slide__author {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  align-items: center;
}
.t-slide__author strong {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  color: var(--negro);
  letter-spacing: .04em;
}
.t-slide__author span {
  font-family: var(--sans);
  font-size: .75rem;
  color: var(--muted);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.t-nav {
  width: 44px; height: 44px;
  border: 1px solid var(--beige-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color .3s, color .3s, background .3s;
}
.t-nav:hover { border-color: var(--terracota); color: var(--terracota); background: rgba(196,122,81,.06); }
.t-dots {
  display: flex;
  gap: .5rem;
}
.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--beige-dark);
  border: none;
  transition: background .3s, transform .3s;
  cursor: pointer;
}
.t-dot.active { background: var(--terracota); transform: scale(1.4); }

@media (max-width: 600px) { .testimonials { padding: var(--sp-12) var(--sp-3); } }

/* ─────────────────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────────────────── */
.faq { background: var(--cream); padding: var(--sp-16) var(--sp-6); position: relative; }
.faq__inner {
  max-width: var(--max-w-md);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: var(--sp-16);
  align-items: start;
}
.faq__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--negro);
  margin-bottom: var(--sp-3);
}
.faq__title em { font-style: italic; color: var(--terracota); }
.faq__sub {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  border-left: 2px solid transparent;
  transition: border-left-color .4s var(--ease), background .4s var(--ease);
}
.faq-item.open {
  border-left-color: var(--terracota);
  background: rgba(196,92,30,.035);
}
.faq-item__q {
  width: 100%;
  text-align: left;
  padding: var(--sp-4) var(--sp-3);
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 400;
  color: var(--negro);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  transition: color .3s;
}
.faq-item__q::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--terracota);
  flex-shrink: 0;
  transition: transform .4s var(--ease);
  line-height: 1;
}
.faq-item.open .faq-item__q::after { transform: rotate(45deg); }
.faq-item__q:hover { color: var(--terracota); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.faq-item.open .faq-item__a { max-height: 300px; }
.faq-item__a p {
  padding: 0 var(--sp-3) var(--sp-4);
  font-size: .9rem;
  line-height: 1.8;
  color: var(--muted);
}

@media (max-width: 900px)  { .faq__inner { grid-template-columns: 1fr; gap: var(--sp-8); } }
@media (max-width: 600px)  { .faq { padding: var(--sp-12) var(--sp-3); } }

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
.footer { background: var(--negro); position: relative; overflow: hidden; }
/* Resplandor sutil tipo "sol" tras el logo — coherente con "energía del sol"
   de la marca, sin competir con el contenido. */
.footer::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,92,30,.14) 0%, transparent 70%);
  pointer-events: none;
}
.footer__top { padding: var(--sp-16) 0 var(--sp-12); position: relative; z-index: 1; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-8);
}
.footer__logo { width: 60px; margin-bottom: var(--sp-4); }
.footer__brand p {
  font-size: .85rem;
  line-height: 1.8;
  color: rgba(255,255,255,.35);
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.footer__social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  transition: border-color .3s, color .3s;
}
.footer__social-link:hover { border-color: rgba(255,255,255,.4); color: rgba(255,255,255,.8); }

.footer__col h5 {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-4);
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer__col li a {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  transition: color .3s;
}
.footer__col li a:hover { color: rgba(255,255,255,.8); }

.footer__col--contact address p {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-2);
}
.footer__col--contact address p svg { opacity: .5; flex-shrink: 0; }
.footer__col--contact address a { color: rgba(255,255,255,.4); transition: color .3s; }
.footer__col--contact address a:hover { color: rgba(255,255,255,.8); }
.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: var(--sp-3);
  padding: .5rem 1rem;
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: var(--radius);
  color: #25D366;
  font-size: .75rem;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: .06em;
  transition: background .3s;
}
.footer__wa:hover { background: rgba(37,211,102,.2); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.2);
  font-family: var(--sans);
}

@media (max-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__top { padding: var(--sp-8) var(--sp-3) var(--sp-6); }
}

/* ─────────────────────────────────────────────────────────────
   WHATSAPP FAB
───────────────────────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: var(--z-fab);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-2);
}
.wa-fab__bubble {
  background: white;
  border-radius: var(--radius-lg) var(--radius-lg) 0 var(--radius-lg);
  padding: var(--sp-2) var(--sp-3);
  box-shadow: var(--shadow-md);
  max-width: 220px;
  position: relative;
  display: none;
}
.wa-fab__bubble.visible { display: block; }
.wa-fab__bubble p {
  font-size: .82rem;
  line-height: 1.6;
  color: var(--text);
  padding-right: var(--sp-3);
}
.wa-fab__bubble-close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color .2s;
}
.wa-fab__bubble-close:hover { color: var(--negro); }

.wa-fab__btn {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .3s;
}
.wa-fab__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

/* ─────────────────────────────────────────────────────────────
   BOOKING PANEL (slide-in drawer)
───────────────────────────────────────────────────────────── */
.booking-panel {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  pointer-events: none;
}
.booking-panel.open { pointer-events: all; }

.booking-panel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .45s var(--ease);
}
.booking-panel.open .booking-panel__overlay { background: rgba(0,0,0,.55); }

.booking-panel__drawer {
  position: absolute;
  top: 0; right: 0;
  bottom: 0;
  width: min(480px, 100vw);
  background: var(--cream);
  transform: translateX(100%);
  transition: transform .5s var(--ease-out);
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 60px rgba(0,0,0,.15);
}
.booking-panel.open .booking-panel__drawer { transform: none; }

.booking-panel__header {
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--cream);
  z-index: 10;
}
.booking-panel__logo { width: 120px; }
.booking-panel__close {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: color .3s, border-color .3s;
}
.booking-panel__close:hover { color: var(--negro); border-color: var(--negro); }

/* Steps */
.bp-steps {
  display: flex;
  align-items: center;
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 1px solid var(--border);
  gap: 0;
}
.bp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.bp-step__dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  color: var(--muted);
  transition: background .3s, border-color .3s, color .3s;
}
.bp-step.active .bp-step__dot {
  background: var(--terracota);
  border-color: var(--terracota);
  color: white;
}
.bp-step.done .bp-step__dot {
  background: var(--verde);
  border-color: var(--verde);
  color: white;
}
.bp-step > span {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.bp-step.active > span { color: var(--terracota); }
.bp-step__line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 var(--sp-1);
  margin-bottom: .9rem;
  transition: background .4s;
}
.bp-step__line.done { background: var(--verde); }

/* Step content */
.bp-step-content {
  padding: var(--sp-6);
  flex: 1;
}
.bp-step-content.hidden { display: none; }

.bp-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--negro);
  margin-bottom: .4rem;
}
.bp-sub {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: var(--sp-6);
}

.bp-props { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-6); }
.bp-prop {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: border-color .3s, background .3s;
  width: 100%;
}
.bp-prop img { width: 64px; height: 50px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.bp-prop__info { flex: 1; }
.bp-prop__info strong { display: block; font-family: var(--sans); font-size: .85rem; font-weight: 500; color: var(--negro); }
.bp-prop__info span  { font-size: .75rem; color: var(--muted); margin-top: .15rem; display: block; }
.bp-prop__check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: background .3s, border-color .3s, color .3s;
  flex-shrink: 0;
}
.bp-prop.selected { border-color: var(--verde); background: rgba(61,107,74,.04); }
.bp-prop.selected .bp-prop__check {
  background: var(--verde);
  border-color: var(--verde);
  color: white;
}

.bp-dates { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); margin-bottom: var(--sp-4); }

/* Guest counter in panel */
.guest-counter--large .guest-counter__btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, color .3s;
  line-height: 1;
}
.guest-counter--large .guest-counter__btn:hover { border-color: var(--terracota); color: var(--terracota); }
.guest-counter--large .guest-counter__num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--negro);
  min-width: 32px;
  text-align: center;
}

.bp-price-preview {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  margin: var(--sp-4) 0;
  font-size: .85rem;
  color: var(--muted);
  min-height: 56px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  justify-content: center;
}
.bp-price-preview:empty { display: none; }

.bp-price-preview__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-3);
}
.bp-price-preview__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.bp-price-preview__prop {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--negro);
  line-height: 1.2;
}
.bp-price-preview__meta {
  font-family: var(--sans);
  font-size: .75rem;
  color: var(--muted);
}
.bp-price-preview__amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  text-align: right;
  line-height: 1.3;
}
.bp-price-preview__original {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 400;
  color: var(--muted);
  opacity: .75;
  text-decoration-color: var(--muted);
}
.bp-price-preview__final {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--terracota);
  white-space: nowrap;
}
.bp-price-preview__discount {
  align-self: flex-start;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  color: var(--verde-dk);
  background: rgba(114, 130, 105, .12);
  padding: 4px 10px;
  border-radius: 999px;
}
@media (max-width: 380px) {
  .bp-price-preview__row { flex-direction: column; align-items: flex-start; }
  .bp-price-preview__amount { align-items: flex-start; text-align: left; }
}

.bp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}

.bp-booking-mini {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-4);
  font-size: .85rem;
  line-height: 1.7;
  color: var(--text);
}
.bp-booking-mini strong { color: var(--negro); }

.bp-confirm-detail {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  margin-bottom: var(--sp-3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.bp-confirm-detail-item span {
  display: block;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .25rem;
}
.bp-confirm-detail-item strong { font-size: .9rem; color: var(--negro); font-weight: 400; }

.bp-confirm-total {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: var(--sp-4);
}
.bp-confirm-total-row {
  display: flex;
  justify-content: space-between;
  padding: .75rem var(--sp-4);
  font-size: .88rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.bp-confirm-total-row:last-child { border-bottom: none; }
.bp-confirm-total-row.total-row {
  background: var(--negro);
  color: rgba(255,255,255,.8);
  font-weight: 500;
}
.bp-confirm-total-row.total-row strong { color: white; font-size: 1rem; }

.bp-secure-note {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.6;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(61,107,74,.06);
  border-radius: var(--radius);
  margin-bottom: var(--sp-3);
}
.bp-secure-note svg { flex-shrink: 0; margin-top: 2px; color: var(--verde); }

/* Form elements */
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group--full { grid-column: 1 / -1; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.form-label {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input {
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 300;
  outline: none;
  transition: border-color .3s;
  width: 100%;
}
.form-input:focus { border-color: var(--terracota); }
.form-input::placeholder { color: rgba(0,0,0,.3); }
.form-input:read-only { cursor: pointer; background: var(--beige-light, #FAF7F1); }
.form-textarea { resize: vertical; min-height: 80px; }

/* WOMPI container */
.wompi-container {
  margin-bottom: var(--sp-3);
}
.wompi-container form { width: 100%; }

/* ─────────────────────────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero__media-img { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .reveal-hero { opacity: 1; transform: none; animation: none; }
}
