/* ============================================================
   MARESELVA HOTEL — CSS
   ============================================================
   Paleta de colores de la marca:
     --primary      #2D5F5A  teal oscuro (logo color)
     --accent       #C8BDB3  beige cálido (logo claro)
     --bg-light     #F7F5F2  fondo crema secciones alternas
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --primary:        #16272F;
  --primary-dark:   #2B5E5B;
  --primary-light:  #3FA69B;
  --accent:         #53543c;
  --accent-dark:    #e9e4DE;

  --white:          #ffffff;
  --bg-light:       #F7F5F2;
  --bg-cream:       #F0EDE8;
  --text-dark:      #1C2B29;
  --text-body:      #4A4A4A;
  --text-muted:     #888;
  --border:         #E0DBD5;

  --font-serif:     'Cormorant Garamond', Georgia, serif;
  --font-sans:      'Montserrat', sans-serif;

  --nav-h:          72px;
  --section-py:     90px;
  --container:      1200px;

  --ease:           cubic-bezier(.4,0,.2,1);
  --shadow-sm:      0 2px 12px rgba(0,0,0,.06);
  --shadow:         0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:      0 12px 48px rgba(0,0,0,.14);
  --radius:         8px;
  --radius-lg:      16px;
}

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

/* ── Placeholders de imagen (cuando no existe el archivo) ─── */
img[src=""],
img:not([src]),
img[src$="hero-bg.jpg"],
img[src$="about-main.jpg"],
img[src$="exp-bg.jpg"],
img[src*="/rooms/"],
img[src*="/gallery/"] {
  background: linear-gradient(135deg, #2D5F5A22 0%, #3D7A7433 50%, #C8BDB322 100%);
  min-height: 200px;
}

/* ── Tipografía base ─────────────────────────────────────────── */
.h-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
}
h2.h-serif { font-size: clamp(2rem, 4vw, 3rem); }
h3         { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--text-dark); }
h4         { font-size: .9rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
p          { line-height: 1.75; }

.h-white { color: var(--white) !important; }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}
.eyebrow--light { color: var(--accent); }

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--container);
  margin-inline: auto;
}
.section         { padding: var(--section-py) 0; }
.bg-light        { background: var(--bg-light); }

.section-header  { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-desc    { margin-top: 1rem; color: var(--text-muted); }
.section-header--light { color: var(--white); }
.section-header--light .section-desc { color: rgba(255,255,255,.75); }

/* ── Botones ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .8rem 2rem;
  border-radius: 3px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  border: 1.5px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-outline-white {
  border: 1.5px solid var(--white);
  color: var(--white);
  font-size: .75rem;
  padding: .55rem 1.4rem;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-sm  { padding: .5rem 1.2rem; font-size: .72rem; }
.btn-full { width: 100%; text-align: center; }
.link-arrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--primary);
  transition: letter-spacing .3s;
}
.link-arrow:hover { letter-spacing: .15em; }


/* ────────────────────────────────────────────────────────────
   NAVBAR
   ────────────────────────────────────────────────────────────
   Estados:
     .navbar              → transparente (sobre el hero)
     .navbar.scrolled     → fondo blanco, sombra
     .navbar.menu-open    → fondo blanco (mobile con menú abierto)
   ──────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.navbar.scrolled,
.navbar.menu-open {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 90%;
  max-width: var(--container);
  margin-inline: auto;
}

/* Logos */
.nav-logo { display: flex; align-items: center; }
.logo     { height: 44px; width: auto; transition: opacity .4s; }

/* Por defecto (sobre hero): logo claro visible, oscuro oculto */
.logo-dark  { opacity: 0; position: absolute; }
.logo-light { opacity: 1; }

/* Cuando scrolled: logo oscuro visible, claro oculto */
.navbar.scrolled .logo-dark,
.navbar.menu-open .logo-dark  { opacity: 1; position: static; }
.navbar.scrolled .logo-light,
.navbar.menu-open .logo-light { opacity: 0; position: absolute; }

/* Menú */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.nav-link:hover::after { width: 100%; }

.navbar.scrolled .nav-link,
.navbar.menu-open .nav-link { color: var(--text-dark); }

/* Botón Reservar en nav */
.nav-btn {
  padding: .55rem 1.4rem;
  border: 1.5px solid var(--white);
  border-radius: 3px;
}
.nav-btn:hover { background: var(--white); color: var(--primary) !important; }
.navbar.scrolled .nav-btn,
.navbar.menu-open .nav-btn {
  border-color: var(--primary);
  color: var(--primary) !important;
}
.navbar.scrolled .nav-btn:hover,
.navbar.menu-open .nav-btn:hover {
  background: var(--primary);
  color: var(--white) !important;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 10;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .35s var(--ease);
}
.navbar.scrolled .hamburger span,
.navbar.menu-open .hamburger span  { background: var(--text-dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ────────────────────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--primary-dark); /* fallback sin imagen */
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.50) 60%,
    rgba(0,0,0,.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 1rem;
}
.hero-eyebrow {
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 1rem;
}
.hero-logo {
  height: clamp(180px, 36vw, 420px); /* 3× original */
  width: auto;
  margin: 0 auto 1.5rem;
  filter: brightness(0) invert(1); /* asegura blanco */
}
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  opacity: .9;
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.7));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(.7); transform-origin: top; }
  50%      { opacity: 1; transform: scaleY(1); }
}

/* Hero animate-in */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeUp .9s var(--ease) .3s both; }


/* ────────────────────────────────────────────────────────────
   ABOUT / NOSOTROS
   ──────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-media { position: relative; }
.about-img-wrap {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-cream);
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.about-img-wrap:hover img { transform: scale(1.03); }

.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1;
}
.badge-label { font-size: .7rem; letter-spacing: .08em; opacity: .9; }

.about-content .h-serif { margin-bottom: 1.25rem; }
.about-content p + p { margin-top: .75rem; }

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  margin: 1.75rem 0;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--primary);
}
.features-list i { font-size: .9rem; }


/* ────────────────────────────────────────────────────────────
   ROOMS / HABITACIONES
   ──────────────────────────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-card.featured { border: 2px solid var(--primary); }

.badge-featured {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--primary);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2px;
  z-index: 2;
}
.room-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--bg-cream);
}
.room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.room-card:hover .room-img img { transform: scale(1.05); }

.room-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s;
}
.room-card:hover .room-hover-overlay { opacity: 1; }

.room-body { padding: 1.5rem; }
.room-type {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary-light);
  display: block;
  margin-bottom: .4rem;
}
.room-body h3 { margin-bottom: .6rem; }
.room-body p  { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

.room-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.room-icons { display: flex; gap: .75rem; color: var(--primary); font-size: 1rem; }


/* ────────────────────────────────────────────────────────────
   EXPERIENCES / EXPERIENCIAS
   ──────────────────────────────────────────────────────────── */
.experiences {
  position: relative;
  padding: var(--section-py) 0;
}
.exp-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--primary-dark); /* fallback */
}
.exp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,40,38,.82);
}
.experiences .container { position: relative; z-index: 2; }
.experiences .section-header { margin-bottom: 3rem; }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.exp-item {
  text-align: center;
  color: var(--white);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  transition: background .3s, transform .3s;
}
.exp-item:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-4px);
}
.exp-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  transition: background .3s;
}
.exp-item:hover .exp-icon { background: var(--primary-light); }
.exp-item h4  { color: var(--white); margin-bottom: .5rem; letter-spacing: .05em; }
.exp-item p   { font-size: .85rem; opacity: .75; line-height: 1.6; }


/* ────────────────────────────────────────────────────────────
   GALLERY / GALERÍA
   ──────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 5px;
  margin-top: 2rem;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-cream);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,95,90,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .g-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lb-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  color: var(--white);
  font-size: 1.5rem;
  padding: .75rem 1rem;
  transition: color .3s, transform .3s;
  z-index: 10;
}
.lb-close { top: 1.5rem; right: 1.5rem; }
.lb-prev  { left: 1.5rem;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-close:hover { color: var(--accent); transform: rotate(90deg); }
.lb-prev:hover  { color: var(--accent); transform: translateY(-50%) translateX(-4px); }
.lb-next:hover  { color: var(--accent); transform: translateY(-50%) translateX(4px); }


/* ────────────────────────────────────────────────────────────
   CONTACT / CONTACTO
   ──────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .h-serif { margin-bottom: 1rem; }
.contact-intro { color: var(--text-muted); margin-bottom: 2rem; }

.contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ci-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .9rem;
  flex-shrink: 0;
  transition: background .3s, color .3s;
}
.ci-wa { background: #e8f5e9; color: #25D366; }
.contact-list li:hover .ci-icon { background: var(--primary); color: var(--white); }
.contact-list strong { display: block; font-size: .78rem; color: var(--text-dark); margin-bottom: .2rem; }
.contact-list p, .contact-list a { font-size: .88rem; color: var(--text-muted); }
.contact-list a:hover { color: var(--primary); }

/* Formulario */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
label { font-size: .75rem; font-weight: 600; letter-spacing: .05em; color: var(--text-dark); }
input, select, textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .88rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color .3s, box-shadow .3s;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,95,90,.12);
}
textarea { resize: vertical; }
.form-note {
  text-align: center;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .75rem;
}
.btn-full i { margin-right: .4rem; }


/* ────────────────────────────────────────────────────────────
   SOCIAL BUTTONS
   ──────────────────────────────────────────────────────────── */
.social-row { display: flex; gap: .75rem; margin-top: 1.5rem; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  transition: background .3s, transform .3s;
}
.social-btn:hover { background: var(--primary-light); transform: translateY(-3px); }
/* Social en sección de contacto (fondo claro) */
.contact-info .social-btn {
  background: var(--bg-light);
  color: var(--primary);
}
.contact-info .social-btn:hover { background: var(--primary); color: var(--white); }


/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */
.footer { background: var(--primary-dark); color: rgba(255,255,255,.8); }
.footer-top { padding: 4.5rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-logo { height: 200px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .85rem; line-height: 1.7; opacity: .7; max-width: 260px; }

.footer-nav h4,
.footer-contact h4 {
  color: var(--white);
  font-size: .72rem;
  letter-spacing: .15em;
  margin-bottom: 1.2rem;
}
.footer-nav ul li + li { margin-top: .6rem; }
.footer-nav a {
  font-size: .85rem;
  opacity: .7;
  transition: opacity .3s, color .3s;
}
.footer-nav a:hover { opacity: 1; color: var(--accent); }

.footer-contact p {
  font-size: .85rem;
  opacity: .7;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .6rem;
}
.footer-contact i { color: var(--accent); font-size: .9rem; }
.footer-contact a:hover { color: var(--accent); opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .8rem; opacity: .5; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .78rem; opacity: .5; transition: opacity .3s; }
.footer-legal a:hover { opacity: 1; }


/* ────────────────────────────────────────────────────────────
   WHATSAPP FLOATING BUTTON
   ──────────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  z-index: 900;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.6);
  color: var(--white);
}
/* Pulse ring */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { opacity: .6; transform: scale(.9); }
  80%  { opacity: 0; transform: scale(1.5); }
  100% { opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: 66px;
  background: var(--text-dark);
  color: var(--white);
  font-size: .75rem;
  white-space: nowrap;
  padding: .4rem .9rem;
  border-radius: var(--radius);
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .3s, transform .3s;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--text-dark);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }


/* ────────────────────────────────────────────────────────────
   SCROLL TO TOP
   ──────────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); }


/* ────────────────────────────────────────────────────────────
   SCROLL REVEAL
   ──────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ────────────────────────────────────────────────────────────
   RESPONSIVE — Tablet (≤1024px)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 70px; }

  .about-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .about-media    { max-width: 500px; margin: 0 auto; }
  .about-badge    { right: 0; }

  .rooms-grid     { grid-template-columns: 1fr 1fr; }
  .room-card:nth-child(3) { grid-column: span 2; max-width: 500px; margin: 0 auto; }

  .exp-grid       { grid-template-columns: repeat(3, 1fr); }

  .gallery-grid   { grid-template-columns: repeat(3, 1fr); }

  .contact-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info   { max-width: 600px; }

  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}


/* ────────────────────────────────────────────────────────────
   RESPONSIVE — Mobile (≤768px)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-py: 56px; --nav-h: 60px; }

  /* Nav mobile */
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 85vw);
    height: 100svh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
    gap: 0;
    transition: right .4s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open { right: 0; }
  .nav-menu li { width: 100%; }
  .nav-link {
    display: block;
    padding: 1rem 0;
    color: var(--text-dark) !important;
    border-bottom: 1px solid var(--border);
    font-size: .85rem;
  }
  .nav-link::after { display: none; }
  .nav-btn {
    margin-top: 1.5rem;
    display: inline-block;
    padding: .75rem 1.5rem !important;
    border: 1.5px solid var(--primary) !important;
    color: var(--primary) !important;
    text-align: center;
    border-bottom: none !important;
  }

  /* Hero */
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; text-align: center; }

  /* Rooms */
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card:nth-child(3) { grid-column: auto; max-width: 100%; }

  /* Experiences */
  .exp-grid { grid-template-columns: 1fr 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item.tall  { grid-row: auto; }
  .gallery-item.wide  { grid-column: auto; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.75rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}


/* ────────────────────────────────────────────────────────────
   RESPONSIVE — Small mobile (≤480px)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .about-badge { right: .5rem; bottom: -1rem; }
  .exp-grid    { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .wa-float   { bottom: 1.5rem; right: 1.5rem; }
  .scroll-top { bottom: 4.5rem; right: 1.5rem; }
  .hero-logo  { height: clamp(150px, 45vw, 270px); }
}
