/* ===================================================================
   HOTEL LOS AMIGOS — v2 — Modern Coastal
   ================================================================= */

:root {
  /* Brand */
  --turquoise:      #0DC5D2;
  --turquoise-mid:  #0C8AA0;
  --blue-mid:       #045180;
  --blue-dark:      #092469;
  --navy:           #04273A;

  --sand:           #E8D5B0;
  --sand-light:     #F5EBD4;
  --sunset:         #E8814A;
  --terracotta:     #C25A3D;

  /* Neutrals */
  --white:          #ffffff;
  --offwhite:       #FBFBF9;
  --cream:          #FBF6EC;
  --ink:            #04273A;
  --ink-soft:       #355669;
  --line:           rgba(4, 39, 58, 0.1);

  /* Type */
  --font-script: "Playwrite CZ", cursive;
  --font-body:   "Urbanist", system-ui, sans-serif;

  /* Layout */
  --container:    1280px;
  --radius-sm:    10px;
  --radius:       18px;
  --radius-lg:    32px;

  /* Motion */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===================================================================
   BASE
   ================================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.is-locked { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

::selection { background: var(--turquoise); color: var(--navy); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===================================================================
   LOADER
   ================================================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__inner {
  text-align: center;
  color: var(--white);
}
.loader__dolphin {
  width: 80px; height: 64px;
  margin: 0 auto 18px;
  color: var(--turquoise);
  animation: dolphinSwim 1.6s ease-in-out infinite;
}
@keyframes dolphinSwim {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-10px) rotate(4deg); }
}
.loader__text {
  font-family: var(--font-script);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.loader__bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.loader__bar span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--turquoise);
  transform-origin: left;
  animation: loaderBar 1.4s var(--ease) infinite;
}
@keyframes loaderBar {
  0%   { transform: scaleX(0); }
  60%  { transform: scaleX(1); }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ===================================================================
   CUSTOM CURSOR (desktop only)
   ================================================================= */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9000;
  mix-blend-mode: difference;
  display: none;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  body { cursor: none; }
  a, button, input, select, textarea, [data-cursor] { cursor: none; }
}
.cursor__dot,
.cursor__ring {
  position: absolute;
  top: 0; left: 0;
  border-radius: 50%;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.cursor__dot {
  width: 6px; height: 6px;
  background: var(--white);
  transform: translate(-50%, -50%);
}
.cursor__ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--white);
  transform: translate(-50%, -50%);
}
.cursor.is-link .cursor__dot {
  width: 0; height: 0;
}
.cursor.is-link .cursor__ring {
  width: 60px; height: 60px;
  background: var(--white);
  border-color: var(--white);
}
.cursor.is-zoom .cursor__ring {
  width: 80px; height: 80px;
  background: var(--turquoise);
  border-color: var(--turquoise);
}
.cursor.is-zoom .cursor__dot::after {
  content: "Ver";
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}

/* ===================================================================
   WHATSAPP FLOAT
   ================================================================= */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px 14px 16px;
  background: #25D366;
  color: var(--white);
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.5);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease);
  opacity: 0;
  transform: translateY(80px) scale(0.7);
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float.is-shown { opacity: 1; transform: translateY(0) scale(1); }
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 40px -8px rgba(37, 211, 102, 0.65);
}
.wa-float::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 2px solid #25D366;
  opacity: 0;
  animation: waPing 2.8s ease-out infinite;
}
@keyframes waPing {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ===================================================================
   TYPOGRAPHY HELPERS
   ================================================================= */
.h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 24px;
}
.h2--light { color: var(--white); }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: italic;
  color: var(--turquoise-mid);
  font-size: 0.85em;
  letter-spacing: -0.01em;
  display: inline-block;
}
.script--sand { color: var(--sunset); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--turquoise-mid);
  padding: 7px 14px 7px 14px;
  border: 1px solid currentColor;
  border-radius: 100px;
  margin-bottom: 24px;
}
.eyebrow--light { color: rgba(255,255,255,0.85); }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.section-head__lede {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 18px;
}
.section-head__lede--light { color: rgba(255,255,255,0.78); }

/* ===================================================================
   BUTTONS
   ================================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.005em;
  border-radius: 100px;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.4s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Liquid hover effect */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: var(--turquoise);
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.55s var(--ease-out);
  z-index: -1;
}
.btn:hover::before { transform: scale(1.05); }

.btn--cta {
  background: var(--sunset);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(232, 129, 74, 0.5);
}
.btn--cta::before { background: var(--terracotta); }
.btn--cta:hover { box-shadow: 0 16px 30px -8px rgba(194, 90, 61, 0.55); }

.btn--ghost {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.08);
}
.btn--ghost::before { background: var(--white); }
.btn--ghost:hover { color: var(--navy); border-color: var(--white); }

/* Outline variant for light backgrounds (dark text, fills navy on hover) */
.btn--outline {
  color: var(--navy);
  border: 1.5px solid rgba(4, 39, 58, 0.22);
  background: var(--white);
}
.btn--outline::before { background: var(--navy); }
.btn--outline:hover { color: var(--white); border-color: var(--navy); }
.btn--outline svg { width: 18px; height: 18px; }

.btn--outline-light {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  width: 100%;
}
.btn--outline-light::before { background: var(--turquoise); }
.btn--outline-light:hover {
  color: var(--navy);
  border-color: var(--turquoise);
}

.btn--lg { padding: 16px 30px; font-size: 15px; }
.btn--block { width: 100%; }

/* ===================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px rgba(4,39,58,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  height: 44px;
  width: 120px;
}
.nav__logo {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  height: 44px;
  width: auto;
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease-spring);
}
.nav__logo--white {
  opacity: 1;
  filter: drop-shadow(0 2px 12px rgba(4,39,58,0.45));
}
.nav__logo--dark  { opacity: 0; }
.nav.is-scrolled .nav__logo--white { opacity: 0; }
.nav.is-scrolled .nav__logo--dark  { opacity: 1; }
.nav__brand:hover .nav__logo { transform: translateY(-50%) scale(1.05); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  position: relative;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(4,39,58,0.45);
  border-radius: 8px;
  transition: color 0.3s var(--ease), text-shadow 0.3s var(--ease);
}
.nav.is-scrolled .nav__links a {
  color: var(--ink);
  text-shadow: none;
}
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 5px; height: 5px;
  background: var(--turquoise);
  border-radius: 50%;
  transform: translate(-50%, 0) scale(0);
  transition: transform 0.4s var(--ease-spring);
}
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: translate(-50%, 0) scale(1); }

.nav__cta {
  flex-shrink: 0;
  padding: 11px 20px;
  font-size: 13.5px;
}
.nav:not(.is-scrolled) .nav__cta {
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  box-shadow: none;
}
.nav:not(.is-scrolled) .nav__cta::before { background: var(--sunset); }
.nav:not(.is-scrolled) .nav__cta:hover { color: var(--white); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 10px;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-spring), background 0.3s var(--ease);
}
.nav.is-scrolled .nav__toggle span { background: var(--ink); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 28px 28px;
  background: var(--white);
  border-top: 1px solid var(--line);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.nav__mobile a {
  padding: 14px 16px;
  font-weight: 500;
  border-radius: 10px;
  color: var(--ink);
}
.nav__mobile a:hover { background: var(--cream); color: var(--turquoise-mid); }
.nav__mobile.is-open { display: flex; }
.nav__mobile .btn { margin-top: 10px; justify-content: center; }

/* ===================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,39,58,0.55) 0%, rgba(4,39,58,0.35) 30%, rgba(4,39,58,0.55) 65%, rgba(4,39,58,0.88) 100%),
    linear-gradient(90deg, rgba(4,39,58,0.55) 0%, rgba(4,39,58,0.10) 55%, transparent 100%),
    radial-gradient(circle at 80% 25%, rgba(13,197,210,0.15), transparent 55%);
}

/* Wave at bottom of hero — fades into the navy marquee below */
.hero__ribbon {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 60px;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 60' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 60 C 200 20, 400 40, 600 25 C 800 10, 1000 35, 1200 20 L 1200 60 L 0 60 Z' fill='%2304273A'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px 28px 160px;
}

.hero__top {
  margin-bottom: 28px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  50%      { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.hero__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.6rem, 7.5vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.15);
}
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.2em; /* room for script-font descenders like the "g" in "amigo" */
  margin-bottom: -0.12em; /* compensate so line spacing stays tight */
}
.hero__title .word {
  display: inline-block;
  transform: translateY(110%);
  animation: wordUp 1s var(--ease-out) forwards;
}
.hero__title .line:nth-child(1) .word:nth-child(1) { animation-delay: 0.7s; }
.hero__title .line:nth-child(1) .word:nth-child(2) { animation-delay: 0.78s; }
.hero__title .line:nth-child(1) .word:nth-child(3) { animation-delay: 0.86s; }
.hero__title .line:nth-child(2) { animation-delay: 1.0s; }
.hero__title .line:nth-child(3) .word:nth-child(1) { animation-delay: 1.4s; }
.hero__title .line:nth-child(3) .word:nth-child(2) { animation-delay: 1.48s; }
.hero__title .line:nth-child(3) .word:nth-child(3) { animation-delay: 1.56s; }

.hero__title-script {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: italic;
  color: var(--turquoise);
  font-size: 0.78em;
  display: inline-block;
  transform: translateY(110%) rotate(-3deg);
  animation: wordUp 1.1s var(--ease-out) 1s forwards;
}
.hero__title .word.amigo {
  color: var(--turquoise);
  font-style: italic;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 0.85em;
}
.hero__title .dot {
  display: inline-block;
  color: var(--sunset);
  transform: translateY(110%);
  animation: wordUp 1s var(--ease-spring) 1.7s forwards;
}
@keyframes wordUp {
  to { transform: translateY(0) rotate(0); }
}

.hero__lede {
  max-width: 540px;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.6s forwards;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.8s forwards;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 760px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2s forwards;
}
.stat__num {
  display: block;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--turquoise);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__num small { color: rgba(255,255,255,0.5); font-size: 0.7em; }
.stat__label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.hero__scroll {
  position: absolute;
  bottom: 60px;
  right: 40px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2.2s forwards;
}
.hero__scroll span:first-child {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.7));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 30%;
  background: var(--turquoise);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: -30%; }
  100% { top: 100%; }
}

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

/* ===================================================================
   MARQUEE
   ================================================================= */
.marquee {
  background: var(--navy);
  color: var(--white);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  animation: marquee 40s linear infinite;
}
.marquee__sep {
  color: var(--turquoise);
  font-size: 0.6em;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ===================================================================
   ABOUT
   ================================================================= */
.about {
  padding: 130px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 197, 210, 0.06), transparent 70%);
  pointer-events: none;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 100px;
  align-items: center;
}

.about__media {
  position: relative;
  height: 640px;
}
.about__main-img,
.about__sub-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(4, 39, 58, 0.3);
}
.about__main-img {
  top: 0; left: 0;
  width: 75%; height: 78%;
  z-index: 2;
}
.about__main-img img,
.about__sub-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.about__main-img:hover img,
.about__sub-img:hover img { transform: scale(1.05); }
.about__sub-img {
  bottom: 0; right: 0;
  width: 60%; height: 52%;
  z-index: 1;
}

.about__sticker {
  position: absolute;
  top: 30px; right: 0;
  z-index: 3;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--sunset);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(232, 129, 74, 0.5);
  animation: stickerSpin 22s linear infinite;
}
.about__sticker svg:first-child {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  fill: currentColor;
}
.about__sticker text {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  fill: var(--white);
}
.about__sticker-icon {
  width: 50px; height: 50px;
  position: relative;
  z-index: 2;
  animation: stickerSpin 22s linear infinite reverse;
}
@keyframes stickerSpin {
  to { transform: rotate(360deg); }
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 36px;
}
.value {
  padding: 22px 20px;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-out), border-color 0.4s var(--ease);
}
.value:hover {
  transform: translateY(-6px);
  border-color: var(--turquoise);
  box-shadow: 0 22px 40px -12px rgba(13, 197, 210, 0.25);
}
.value__icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise-mid));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease);
}
.value:hover .value__icon {
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 8px 18px -4px rgba(13, 197, 210, 0.5);
}
.value__icon svg { width: 22px; height: 22px; }
.value h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.value p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* ===================================================================
   ROOMS
   ================================================================= */
.rooms {
  padding: 130px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--blue-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.rooms::before {
  content: "";
  position: absolute;
  top: 50%; left: -300px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 197, 210, 0.1), transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
}

.rooms__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
}

.room {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.6s var(--ease-out), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.room:hover {
  border-color: var(--turquoise);
  box-shadow: 0 30px 60px -20px rgba(13, 197, 210, 0.3);
}
.room__media {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.room__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.room:hover .room__media img { transform: scale(1.08); }
.room__tag {
  position: absolute;
  top: 18px; left: 18px;
  padding: 6px 14px;
  background: var(--white);
  color: var(--navy);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.room__tag--accent { background: var(--sunset); color: var(--white); }
.room__body { padding: 28px; }
.room__name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.room__desc {
  color: rgba(255,255,255,0.72);
  margin-bottom: 18px;
  font-size: 14.5px;
  line-height: 1.6;
}
.room__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.room__features li {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  background: rgba(13, 197, 210, 0.13);
  color: var(--turquoise);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.room__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.room__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.room__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.room__btn--airbnb {
  background: #FF385C;
  color: #fff;
  border: 1px solid #FF385C;
}
.room__btn--airbnb:hover {
  background: #E31C5F;
  border-color: #E31C5F;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(255, 56, 92, 0.6);
}
.room__btn--whatsapp {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.22);
}
.room__btn--whatsapp:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

/* ===================================================================
   SHOWCASE / BENTO
   ================================================================= */
.showcase {
  padding: 130px 0;
  background: var(--offwhite);
  position: relative;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 230px);
  grid-template-areas:
    "a a b"
    "a a c"
    "d e f";
  gap: 16px;
  margin-bottom: 90px;
}
.bento__cell:nth-child(1) { grid-area: a; }
.bento__cell:nth-child(2) { grid-area: b; }
.bento__cell:nth-child(3) { grid-area: c; }
.bento__cell:nth-child(4) { grid-area: d; }
.bento__cell:nth-child(5) { grid-area: e; }
.bento__cell:nth-child(6) { grid-area: f; }
.bento__cell {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
}
.bento__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter 0.5s var(--ease);
}
.bento__cell:hover img { transform: scale(1.06); filter: brightness(1.05); }
.bento__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4, 39, 58, 0.65) 100%);
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.bento__caption {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--white);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.4s var(--ease);
}
.bento__cell:hover .bento__caption { transform: translateY(0); opacity: 1; }
.bento__num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--turquoise);
}
.bento__title {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}

/* Amenities — photo cards */
.amenities {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.amenity-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px -12px rgba(4, 39, 58, 0.25);
}
.amenity-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.amenity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 39, 58, 0) 35%, rgba(4, 39, 58, 0.85) 100%);
  transition: opacity 0.4s var(--ease);
}
.amenity-card:hover img { transform: scale(1.08); }
.amenity-card:hover::after { opacity: 0.92; }

.amenity-card__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 22px 20px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.amenity-card__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turquoise);
  opacity: 0.9;
}
.amenity-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* Amenities — service pills */
.amenity-services {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.3s var(--ease-spring), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.amenity-pill svg {
  width: 18px;
  height: 18px;
  color: var(--turquoise-mid);
  transition: color 0.3s var(--ease);
}
.amenity-pill:hover {
  transform: translateY(-2px);
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.amenity-pill:hover svg { color: var(--turquoise); }

/* ===================================================================
   MENU
   ================================================================= */
.menu {
  padding: 130px 0;
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.menu__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.menu__bg img {
  width: 100%; height: 110%;
  object-fit: cover;
  filter: brightness(0.4);
}
.menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--navy) 0%, rgba(4,39,58,0.85) 50%, var(--blue-dark) 100%);
  z-index: 1;
}
.menu .container { position: relative; z-index: 2; }

.menu__filters {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 6px;
  margin: 0 auto 50px;
  padding: 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.menu__filters::-webkit-scrollbar { display: none; }
.menu__filter-pill {
  position: absolute;
  top: 10px;
  height: calc(100% - 20px);
  background: var(--sunset);
  border-radius: 100px;
  z-index: 0;
  transition: left 0.5s var(--ease-spring), width 0.5s var(--ease-spring);
  box-shadow: 0 6px 14px -4px rgba(232, 129, 74, 0.5);
  pointer-events: none;
}
.menu__filter {
  position: relative;
  z-index: 1;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  border-radius: 100px;
  transition: color 0.3s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu__filter:hover { color: var(--white); }
.menu__filter.is-active { color: var(--white); }

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.menu-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease), background 0.4s var(--ease), opacity 0.4s var(--ease);
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 129, 74, 0.4);
  background: rgba(255,255,255,0.07);
}
.menu-card.is-hidden { display: none; }
.menu-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.menu-card__head h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sunset);
}
.menu-card__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(232, 129, 74, 0.5), transparent);
}
.menu-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.menu-card li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.menu-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.menu-card li strong {
  display: block;
  font-weight: 600;
  color: var(--white);
  font-size: 15px;
}
.menu-card li span:not(.price) {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  margin-top: 2px;
}
.menu-card li .price {
  font-weight: 700;
  color: var(--turquoise);
  font-size: 15.5px;
  white-space: nowrap;
  font-feature-settings: "tnum";
  letter-spacing: 0.01em;
}

.menu__cta {
  text-align: center;
  padding: 50px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(13, 197, 210, 0.12), rgba(232, 129, 74, 0.12));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}
.menu__cta p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}

/* ===================================================================
   GALLERY
   ================================================================= */
.gallery {
  padding: 130px 0;
  background: var(--cream);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 230px);
  grid-template-areas:
    "a a b c"
    "a a d e"
    "f g g h"
    "i j k l";
  gap: 14px;
  padding: 0 28px;
  max-width: 1400px;
  margin: 40px auto 0;
}
.gallery__item:nth-child(1)  { grid-area: a; }
.gallery__item:nth-child(2)  { grid-area: b; }
.gallery__item:nth-child(3)  { grid-area: c; }
.gallery__item:nth-child(4)  { grid-area: d; }
.gallery__item:nth-child(5)  { grid-area: e; }
.gallery__item:nth-child(6)  { grid-area: f; }
.gallery__item:nth-child(7)  { grid-area: g; }
.gallery__item:nth-child(8)  { grid-area: h; }
.gallery__item:nth-child(9)  { grid-area: i; }
.gallery__item:nth-child(10) { grid-area: j; }
.gallery__item:nth-child(11) { grid-area: k; }
.gallery__item:nth-child(12) { grid-area: l; }
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--navy);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter 0.4s var(--ease);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 39, 58, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }

/* ===================================================================
   EXPERIENCIAS
   ================================================================= */
.experiences {
  padding: 130px 0;
  background: var(--offwhite);
}
.exp__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.exp-card {
  position: relative;
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease-spring), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.exp-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(13,197,210,0.14), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.exp-card:hover {
  transform: translateY(-6px);
  border-color: var(--turquoise);
  box-shadow: 0 30px 50px -18px rgba(4, 39, 58, 0.15);
}
.exp-card:hover::after { opacity: 1; }
.exp-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cream), var(--sand-light));
  color: var(--turquoise-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.5s var(--ease-spring), background 0.4s var(--ease), color 0.3s var(--ease);
}
.exp-card__icon svg { width: 28px; height: 28px; }
.exp-card:hover .exp-card__icon {
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise-mid));
  color: var(--white);
  transform: rotate(-6deg) scale(1.05);
}
.exp-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.exp-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ===================================================================
   QUÉ HACER CERCA
   ================================================================= */
.nearby {
  padding: 140px 0;
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.nearby::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(13,197,210,0.13), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(232,129,74,0.10), transparent 55%);
  pointer-events: none;
}
.nearby .container { position: relative; z-index: 1; }
.nearby__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  grid-auto-rows: auto;
}
.near-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  transition: transform 0.5s var(--ease-spring), border-color 0.4s var(--ease), background 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.near-card:hover {
  transform: translateY(-6px);
  border-color: var(--turquoise);
  background: rgba(255,255,255,0.07);
}
.near-card--lg { grid-column: span 2; grid-row: span 2; }
.near-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.near-card--lg .near-card__media { aspect-ratio: 16 / 11; }
.near-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.near-card:hover .near-card__media img { transform: scale(1.06); }
.near-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4,39,58,0.55) 100%);
  pointer-events: none;
}
.near-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--sand);
  border-radius: 100px;
  z-index: 2;
}
.near-card__body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.near-card--lg .near-card__body { padding: 32px 34px 34px; }
.near-card__dist {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 10px;
}
.near-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.near-card--lg h3 { font-size: 28px; margin-bottom: 14px; }
.near-card p {
  color: rgba(255,255,255,0.72);
  font-size: 14.5px;
  line-height: 1.65;
}
.near-card--lg p { font-size: 16px; }

/* ===================================================================
   UBICACIÓN
   ================================================================= */
.location {
  padding: 130px 0;
  background: var(--cream);
}
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location__copy .h2 { margin: 8px 0 22px; }
.location__copy .lede { margin-bottom: 36px; }
.location__how {
  margin-bottom: 36px;
  padding: 28px 28px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.location__how h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquoise-mid);
  margin-bottom: 14px;
}
.location__list { display: flex; flex-direction: column; }
.location__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  gap: 16px;
}
.location__list li:last-child { border-bottom: 0; }
.location__from {
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}
.location__time {
  font-weight: 700;
  color: var(--turquoise-mid);
  font-size: 14px;
  white-space: nowrap;
}
.location__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.location__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -22px rgba(4, 39, 58, 0.25);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #eef4f8 0%, #d9e6ee 100%);
}
.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(1.05);
}
.location__map-link {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255,255,255,0.96);
  color: var(--navy);
  border: 1px solid rgba(4, 39, 58, 0.12);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 18px -6px rgba(4, 39, 58, 0.25);
  backdrop-filter: blur(8px);
  transition: transform .2s var(--ease-out), background .2s var(--ease-out);
  text-decoration: none;
  z-index: 2;
}
.location__map-link:hover {
  background: var(--white);
  transform: translateY(-2px);
}

/* ===================================================================
   FAQ
   ================================================================= */
.faq {
  padding: 130px 0;
  background: var(--offwhite);
}
.faq__list {
  margin: 50px auto 0;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.faq-item[open] {
  border-color: var(--turquoise);
  box-shadow: 0 18px 40px -18px rgba(4, 39, 58, 0.12);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--turquoise-mid); }
.faq-item__icon {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-spring);
}
.faq-item__icon::before { width: 14px; height: 2px; }
.faq-item__icon::after  { width: 2px; height: 14px; }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item__body {
  padding: 0 28px 24px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item__body strong { color: var(--navy); }

/* ===================================================================
   TESTIMONIALS
   ================================================================= */
.testimonials {
  padding: 130px 0;
  background: var(--offwhite);
}
.testi-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testi {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease), border-color 0.4s var(--ease);
}
.testi:hover {
  transform: translateY(-6px);
  border-color: var(--turquoise);
  box-shadow: 0 30px 50px -16px rgba(4, 39, 58, 0.15);
}
.testi__stars {
  color: var(--sunset);
  font-size: 16px;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}
.testi__quote {
  font-size: 17px;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 24px;
  font-weight: 500;
}
.testi__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
}
.testi__author strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
}
.testi__author span {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ===================================================================
   CONTACT
   ================================================================= */
.contact {
  padding: 130px 0;
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact__bg img {
  width: 100%; height: 110%;
  object-fit: cover;
  filter: brightness(0.35);
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(4, 39, 58, 0.92) 0%, rgba(12, 138, 160, 0.85) 50%, rgba(4, 39, 58, 0.95) 100%);
  z-index: 1;
}
.contact .container { position: relative; z-index: 2; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact__lede {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 480px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__info li {
  padding: 18px 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease-out);
}
.contact__info li:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(13, 197, 210, 0.4);
  transform: translateX(4px);
}
.contact__info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turquoise);
}
.contact__info-value {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}

.contact__form {
  padding: 40px;
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  color: var(--ink);
  box-shadow: 0 30px 60px -20px rgba(4, 39, 58, 0.4);
}
.contact__form-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 12px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-color: var(--turquoise-mid);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 90px; }
.form__note {
  margin-top: 14px;
  padding: 14px 18px;
  background: rgba(13, 197, 210, 0.1);
  color: var(--turquoise-mid);
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
}

/* ===================================================================
   FOOTER
   ================================================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 14.5px;
  position: relative;
  overflow: hidden;
}
.footer__marquee {
  background: var(--turquoise);
  color: var(--navy);
  padding: 14px 0;
  overflow: hidden;
}
.footer__marquee .marquee__track {
  font-size: 1.1rem;
  font-weight: 700;
  gap: 30px;
  animation-duration: 35s;
}
.footer__marquee .marquee__track span:not(:first-child) {
  font-family: var(--font-body);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
  height: 64px;
  width: auto;
  margin-bottom: 18px;
}
.footer__brand p {
  max-width: 320px;
  line-height: 1.6;
}
.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--turquoise); }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease-spring);
}
.socials a:hover {
  background: var(--turquoise);
  border-color: var(--turquoise);
  color: var(--navy);
  transform: translateY(-3px) rotate(-6deg);
}
.socials svg { width: 18px; height: 18px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 24px 0 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer__bottom > * { margin: 0; }
.footer__copyright { letter-spacing: .01em; }
.footer__credit span { color: var(--sunset); }
.footer__credit { font-size: 12.5px; color: rgba(255,255,255,0.45); }

/* "Hecho por Codigoss" credit */
.footer__made {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease-spring);
  white-space: nowrap;
}
.footer__made-label {
  font-size: 11.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.footer__made-brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--turquoise);
  font-size: 14px;
}
.footer__made-brand svg {
  width: 14px;
  height: 14px;
  color: var(--turquoise);
}
.footer__made:hover {
  background: rgba(13, 197, 210, 0.12);
  border-color: rgba(13, 197, 210, 0.35);
  color: rgba(255,255,255,0.85);
  transform: translateY(-2px);
}
.footer__made:hover .footer__made-label { color: rgba(255,255,255,0.75); }
.footer__made:hover .footer__made-brand,
.footer__made:hover .footer__made-brand svg { color: #fff; }

/* ===================================================================
   LIGHTBOX
   ================================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(4, 39, 58, 0.95);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.92);
  transition: transform 0.4s var(--ease-spring);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease-out);
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--turquoise);
  transform: scale(1.08);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__nav svg,
.lightbox__close svg { width: 22px; height: 22px; }

/* ===================================================================
   REVEAL ANIMATIONS
   ================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 0.08s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stack > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal-stack.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stack.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stack.is-visible > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stack.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .about__grid { grid-template-columns: 1fr; gap: 60px; }
  .about__media { height: 520px; }

  .contact__grid { grid-template-columns: 1fr; gap: 50px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .bento {
    grid-template-rows: repeat(3, 200px);
  }

  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 200px);
    grid-template-areas:
      "a a b"
      "a a c"
      "d e f"
      "g h i"
      "j k l";
    gap: 12px;
  }

  .amenities { grid-template-columns: repeat(3, 1fr); }
  .exp__grid { grid-template-columns: repeat(2, 1fr); }
  .nearby__grid { grid-template-columns: repeat(2, 1fr); }
  .near-card--lg { grid-column: span 2; grid-row: span 1; }
  .location__grid { grid-template-columns: 1fr; gap: 50px; }
  .location__map { aspect-ratio: 16 / 10; }
}

@media (max-width: 720px) {
  body { font-size: 16px; cursor: auto; }
  body * { cursor: auto !important; }
  .cursor { display: none !important; }
  .container { padding: 0 20px; }

  section { padding: 80px 0 !important; }
  .gallery { padding: 80px 0 !important; }

  .section-head { margin-bottom: 50px; }

  .hero__content { padding: 120px 20px 80px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 50px; }
  .hero__actions .btn { flex: 1; min-width: 140px; justify-content: center; }
  .hero__scroll { display: none; }
  /* Hidden on mobile — scroll indicator not needed when users swipe */

  .about { padding: 80px 0 !important; }
  .about__media { height: 420px; }
  .about__sticker { width: 100px; height: 100px; }
  .about__sticker text { font-size: 7px; }
  .about__sticker-icon { width: 36px; height: 36px; }
  .values { grid-template-columns: 1fr 1fr; }

  .rooms__grid { grid-template-columns: 1fr; }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 180px);
    grid-template-areas:
      "a a"
      "b c"
      "d e"
      "f f";
  }

  .menu__filters {
    border-radius: var(--radius);
    padding: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu__filters::-webkit-scrollbar { display: none; }
  .menu__filter { flex-shrink: 0; padding: 8px 14px; font-size: 12.5px; }
  .menu__filter-pill { display: none; }
  .menu__filter.is-active {
    background: var(--sunset);
    box-shadow: 0 4px 10px -2px rgba(232, 129, 74, 0.5);
  }

  .menu__grid { grid-template-columns: 1fr; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 180px);
    grid-template-areas:
      "a b"
      "c d"
      "e f"
      "g h"
      "i j"
      "k l";
    gap: 10px;
    padding: 0 20px;
  }

  .amenities { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .amenity-card__title { font-size: 17px; }
  .amenity-card__overlay { padding: 16px 14px; }
  .amenity-services { margin-top: 22px; gap: 8px; }
  .amenity-pill { padding: 10px 16px; font-size: 13px; }
  .exp__grid { grid-template-columns: 1fr; gap: 16px; }
  .exp-card { padding: 28px 24px; }
  .nearby__grid { grid-template-columns: 1fr; gap: 16px; }
  .near-card--lg { grid-column: span 1; }
  .near-card--lg h3 { font-size: 22px; }
  .near-card--lg p { font-size: 15px; }
  .location__how { padding: 22px 22px 8px; }
  .location__list li { flex-direction: column; align-items: flex-start; gap: 4px; padding: 12px 0; }
  .location__cta { flex-direction: column; }
  .location__cta .btn { width: 100%; justify-content: center; }
  .faq-item summary { padding: 18px 22px; font-size: 15px; gap: 16px; }
  .faq-item__body { padding: 0 22px 20px; font-size: 14.5px; }

  .contact__form { padding: 28px; }
  .field-row { grid-template-columns: 1fr; }

  /* ─── FOOTER mobile ─── */
  .footer__marquee { padding: 12px 0; }
  .footer__marquee .marquee__track {
    font-size: 0.95rem;
    gap: 22px;
    animation-duration: 25s;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    padding: 56px 0 32px;
    text-align: left;
  }
  .footer__brand {
    grid-column: 1 / -1;
    text-align: center;
    padding-bottom: 6px;
  }
  .footer__logo { height: 56px; margin: 0 auto 14px; }
  .footer__brand p {
    max-width: 360px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.55;
  }
  .footer__col h4 {
    font-size: 11px;
    margin-bottom: 14px;
    letter-spacing: .14em;
  }
  .footer__col ul { gap: 8px; font-size: 14px; }
  .footer__col:last-child {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer__col:last-child .socials {
    justify-content: center;
    gap: 14px;
  }
  .socials a { width: 44px; height: 44px; }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 0 96px; /* leave room for WhatsApp float */
    font-size: 12.5px;
  }
  .footer__bottom > p { line-height: 1.5; max-width: 100%; word-wrap: break-word; }
  .footer__copyright {
    order: 3;
    color: rgba(255,255,255,0.45);
    font-size: 11.5px;
    padding: 0 8px;
  }
  .footer__made {
    order: 1;
    padding: 10px 20px;
    font-size: 13.5px;
  }
  .footer__credit {
    order: 2;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
  }

  .wa-float { padding: 12px 18px 12px 14px; bottom: 16px; right: 16px; }
  .wa-float span { display: none; }
  .wa-float svg { width: 24px; height: 24px; }

  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
}

@media (max-width: 460px) {
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat__num { font-size: 1.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stack > * { opacity: 1; transform: none; }
  .hero__title .word, .hero__title-script, .hero__title .dot { transform: none; opacity: 1; }
}
