/* ==========================================================
   JACARANDA — REFUGIO NATURAL
   Paleta extraída del portafolio real de marca:
     --ink      #5B6135  verde oliva (texto, logo, fondo oscuro)
     --ink-deep #3F4526  oliva profundo (hover/contraste)
     --gold     #D9A257  mostaza (acentos sobre fondo oscuro)
     --amber    #C7893E  terracota (paneles, precios)
     --lavender #A7A4DF  lavanda (secciones: ubicación, contacto)
     --cream    #F4E1CE  crema (fondo de contenido)
     --paper    #FBF3E6  crema claro (tarjetas)
   Tipografía: Fraunces (display) + Archivo (cuerpo)
   ========================================================== */

:root {
  --ink: #5B6135;
  --ink-deep: #3F4526;
  --gold: #D9A257;
  --gold-deep: #B87F3B;
  --amber: #C7893E;
  --lavender: #A7A4DF;
  --lavender-deep: #7D79BE;
  --cream: #F4E1CE;
  --paper: #FBF3E6;

  --font-display: "Fraunces", serif;
  --font-body: "Archivo", sans-serif;

  --container: 1180px;
  --radius: 3px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

/* -------------------- Type helpers -------------------- */

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 16px;
}

.eyebrow--gold { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--ink);
}

.section-title--light { color: var(--paper); }

.section-lede {
  max-width: 620px;
  font-size: 17px;
  opacity: 0.85;
}

/* -------------------- Buttons -------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--ink-deep); }

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(251, 243, 230, 0.5);
}
.btn--ghost:hover { border-color: var(--gold); background: rgba(217, 162, 87, 0.12); }

.btn--text { padding: 14px 4px; background: none; color: var(--amber); }
.btn--text:hover { color: var(--ink-deep); }

/* -------------------- Nav -------------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.is-scrolled {
  padding: 12px 0;
  background: rgba(251, 243, 230, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(91, 97, 53, 0.12);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  font-style: italic;
  color: var(--paper);
  transition: color 0.3s var(--ease);
}

.nav__logo { 
  height: 64px; 
  width: auto; 
  object-fit: contain; 
}

.nav.is-scrolled .nav__brand { color: var(--ink); }

.nav__links { display: flex; gap: 26px; flex: 1; justify-content: center; }

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(251, 243, 230, 0.9);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.nav.is-scrolled .nav__links a { color: var(--ink); }

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.25s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  padding: 10px 20px;
  border: 1px solid rgba(251, 243, 230, 0.6);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--paper);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.nav.is-scrolled .nav__cta { color: var(--ink); border-color: var(--ink); }
.nav__cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink-deep); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span { width: 22px; height: 2px; background: var(--paper); transition: background 0.3s var(--ease); }
.nav.is-scrolled .nav__burger span { background: var(--ink); }

/* -------------------- Hero -------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 32px 100px;
}

.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31, 36, 18, 0.55) 0%, rgba(31, 36, 18, 0.35) 45%, rgba(20, 24, 12, 0.75) 100%);
}

.hero__content { position: relative; z-index: 2; max-width: 620px; }

.hero__logo {
  height: 300px;
  width: auto;
  margin: 0 auto 20px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}

.hero__tagline {
  max-width: 580px;
  margin: 0 auto 28px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  text-wrap: balance;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}

.hero__tagline > span { display: block; }

.hero__location {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.scroll-cue {
  position: absolute;
  bottom: 32px;
  z-index: 2;
  width: 26px; height: 42px;
  border: 1px solid rgba(251, 243, 230, 0.5);
  border-radius: 20px;
  background: none;
  cursor: pointer;
}
.scroll-cue span {
  display: block;
  width: 4px; height: 8px;
  margin: 6px auto 0;
  background: var(--gold);
  border-radius: 2px;
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* -------------------- Intro -------------------- */

.intro { padding: 110px 0; background: var(--paper); }

.intro__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro__visual img { border-radius: var(--radius); aspect-ratio: 3/4; object-fit: cover; }

.intro__copy p { max-width: 520px; }
.intro__note { color: var(--amber); font-weight: 600; }

/* -------------------- Alojamientos (Tarjetas Interactivas) -------------------- */

.lodging { padding: 110px 0; background: var(--cream); }

.room-card {
  background: var(--paper);
  border-radius: var(--radius);
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(63, 69, 38, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.room-card:hover { 
  box-shadow: 0 12px 32px rgba(63, 69, 38, 0.15); 
  transform: translateY(-2px); 
}

.room-card__header {
  position: relative;
  height: 320px;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  overflow: hidden;
}

.room-card__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.room-card:hover .room-card__bg { transform: scale(1.03); }

.room-card__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(31,36,18,0.2) 40%, rgba(20,24,12,0.85) 100%);
}

.room-card__title-wrap {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  color: var(--paper);
  flex: 1;
}
.room-card__title-wrap h3 {
  font-family: var(--font-display); font-size: 36px; font-weight: 500; margin: 0;
}

.room-card__hint {
  position: relative; z-index: 2;
  background: rgba(251, 243, 230, 0.2);
  backdrop-filter: blur(8px);
  padding: 10px 20px; border-radius: 30px;
  color: var(--paper); font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  border: 1px solid rgba(251, 243, 230, 0.4);
  transition: all 0.3s var(--ease);
}
.room-card__header:hover .room-card__hint { 
  background: var(--gold); 
  color: var(--ink-deep); 
  border-color: var(--gold); 
}
.room-card__hint svg { transition: transform 0.5s var(--ease); }
.room-card.is-open .room-card__hint svg { transform: rotate(180deg); }

/* Animación fluida mediante propiedades Grid */
.room-card__expandable {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s var(--ease);
}
.room-card.is-open .room-card__expandable {
  grid-template-rows: 1fr;
}
.room-card__content { overflow: hidden; }

.room-card__inner {
  padding: 48px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.room__thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.room__thumbs img, .room__thumbs video { border-radius: var(--radius); aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.room__copy p { max-width: 480px; opacity: 0.9; margin-top: 0; }
.room__amenities {
  list-style: none;
  padding: 14px 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  border-top: 1px solid rgba(91, 97, 53, 0.18);
  border-bottom: 1px solid rgba(91, 97, 53, 0.18);
}
.room__amenities li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-deep);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}
.room__amenities li > span {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  border-radius: 50%;
  background: rgba(217, 162, 87, 0.18);
  font-size: 13px;
}
.room__price { display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 22px 0 6px; font-size: 15px; }
.room__price strong { color: var(--amber); font-size: 18px; font-family: var(--font-display); font-weight: 600; }
.room__fineprint { font-size: 12px; opacity: 0.6; margin: 0; }
.room__capacity { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-deep); background: var(--gold); padding: 5px 12px; border-radius: 20px; }

/* -------------------- Servicios -------------------- */

.services { padding: 110px 0; background: var(--paper); }

.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0;
}
.services .service:first-of-type { padding-top: 48px; }

.service--reverse { direction: rtl; }
.service--reverse > * { direction: ltr; }

.service__copy h3 { font-family: var(--font-display); font-size: 26px; font-weight: 500; margin: 0 0 16px; }
.service__copy p { max-width: 480px; opacity: 0.9; }

.service__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.service__gallery img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; }

.price-table {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 20px 0 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(91, 97, 53, 0.2);
}
.price-table div { display: flex; flex-direction: column; gap: 4px; font-size: 13px; }
.price-table strong { font-family: var(--font-display); font-size: 20px; color: var(--amber); font-weight: 600; }

.service__note { font-size: 12px; opacity: 0.65; margin: 4px 0 0; }

/* -------------------- Actividades -------------------- */

.activities { position: relative; padding: 130px 0; overflow: hidden; }
.activities__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.activities__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,36,18,0.55), rgba(20,24,12,0.85)); }
.activities__content { position: relative; z-index: 1; }

.activity-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px 40px;
}
.activity-list h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--gold);
  margin: 0 0 8px;
}
.activity-list p { color: rgba(251, 243, 230, 0.85); font-size: 14px; margin: 0; }

/* -------------------- Bienestar -------------------- */

.wellbeing {
  padding: 110px 0;
  background: var(--paper);
}

.wellbeing__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 72px;
  align-items: center;
}

.wellbeing__services {
  list-style: none;
  padding: 0;
  margin: 30px 0 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.wellbeing__services li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(91, 97, 53, 0.22);
  font-family: var(--font-display);
  font-size: 17px;
}

.wellbeing__gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  min-height: 480px;
}

.wellbeing__gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.wellbeing__gallery img:nth-child(2) {
  height: 350px;
  margin-top: 65px;
}

/* -------------------- Ubicación -------------------- */

.location {
  padding: 110px 0;
  background: var(--lavender);
  color: #34391f;
}

.location .eyebrow,
.location .section-title { color: #34391f; }
.location .section-lede { opacity: 1; }
.location__maps-button { margin-top: 18px; }

.location__map { margin: 40px 0 48px; }
.location__map img { border-radius: var(--radius); width: 100%; }

.location__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.location__card {
  background: var(--paper);
  padding: 32px;
  border-radius: var(--radius);
}
.location__card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 500; margin: 0 0 16px; }
.location__card ol { margin: 0 0 16px; padding-left: 20px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.location__card ol li::marker { color: #34391f; font-weight: 700; }

.location__warning, .location__note {
  font-size: 13px;
  padding: 12px 14px;
  background: rgba(199, 137, 62, 0.12);
  border-left: 2px solid var(--amber);
  margin: 0;
}

.fare-table { display: flex; flex-direction: column; gap: 8px; margin: 0 0 14px; font-size: 13px; }
.fare-table div { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 8px; border-bottom: 1px dashed rgba(91,97,53,0.2); }
.fare-table strong { color: #34391f; white-space: nowrap; }

.location__card--wifi { display: flex; flex-direction: column; justify-content: center; }
.wifi-box {
  margin-top: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  font-size: 14px;
  align-items: center;
}
.wifi-box span { opacity: 1; }
.wifi-box strong { font-family: var(--font-display); font-weight: 600; }

/* -------------------- Reservas -------------------- */

.reserve { padding: 110px 0; background: var(--cream); }

.reserve__grid { display: grid; grid-template-columns: 0.9fr 1fr; gap: 64px; align-items: center; }
.reserve__visual img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; }

.policy-list { list-style: none; padding: 0; margin: 28px 0 32px; display: flex; flex-direction: column; gap: 16px; }
.policy-list li { padding-left: 20px; position: relative; font-size: 14.5px; }
.policy-list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
}
.policy-list strong { font-family: var(--font-display); font-weight: 600; }

.reserve__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* -------------------- Recomendaciones -------------------- */

.notes { padding: 110px 0; background: var(--paper); }

.notes__grid { display: grid; grid-template-columns: 1.1fr 0.8fr; gap: 64px; align-items: start; }
.notes__visual img { border-radius: var(--radius); aspect-ratio: 3/4; object-fit: cover; }

.notes__subtitle { font-family: var(--font-display); font-size: 19px; font-weight: 500; margin: 32px 0 14px; }

.check-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px 20px; }
.check-list li { padding-left: 22px; position: relative; font-size: 14px; }

.check-list--yes li::before { content: "✓"; position: absolute; left: 0; color: var(--ink); font-weight: 700; }
.check-list--no li::before { content: "✕"; position: absolute; left: 0; color: var(--amber); font-weight: 700; }
.check-list--no { grid-template-columns: 1fr; }

.notes__text { font-size: 14.5px; opacity: 0.85; max-width: 560px; }

/* -------------------- Responsabilidad ambiental -------------------- */

.eco { padding: 110px 0; background: var(--ink); color: var(--paper); }

.eco__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.eco__copy p { color: rgba(251, 243, 230, 0.82); max-width: 520px; }
.eco__visual img { border-radius: var(--radius); aspect-ratio: 3/4; object-fit: cover; }

.eco-list { list-style: none; padding: 0; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.eco-list li { padding-left: 20px; position: relative; font-size: 14.5px; color: rgba(251,243,230,0.85); }
.eco-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }

.eco__subtitle { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--gold); margin: 8px 0 10px; }

/* -------------------- Cita final -------------------- */

.quote { position: relative; padding: 140px 32px; text-align: center; overflow: hidden; }
.quote__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.quote__scrim { position: absolute; inset: 0; background: rgba(20, 24, 12, 0.6); }
.quote__text {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.4;
  color: var(--paper);
}

/* -------------------- Contacto -------------------- */

.contact { padding: 110px 0; background: var(--lavender); }

.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.contact .eyebrow { color: var(--ink-deep); }
.contact .section-title { color: var(--ink-deep); }
.contact__intro p { opacity: 0.85; max-width: 380px; }

.contact__info { display: flex; flex-direction: column; gap: 40px; }

.contact__badge { width: 120px; margin-bottom: 20px; }

.contact__block {
  padding: 18px 0;
  border-bottom: 1px solid rgba(63, 69, 38, 0.18);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__details .contact__block:first-child { padding-top: 0; }

.contact__label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-deep); opacity: 0.65; }
.contact__value { font-size: 17px; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.contact__ig-icon { width: 18px; height: 18px; }

/* Estilos del Formulario de contacto directo */
.contact__form {
  background: var(--paper);
  padding: 40px 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 12px rgba(63, 69, 38, 0.08);
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--ink-deep); }
.form-group input, .form-group textarea {
  padding: 14px;
  border: 1px solid rgba(91, 97, 53, 0.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--cream);
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 162, 87, 0.2);
}

/* -------------------- Footer -------------------- */

.footer { background: var(--ink-deep); color: rgba(251, 243, 230, 0.75); padding: 52px 0 28px; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.6fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(251, 243, 230, 0.12);
}

.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__logo { width: 70px; }
.footer__name { font-family: var(--font-display); font-size: 20px; color: var(--paper); margin: 0; }
.footer__tag { font-size: 12px; margin: 2px 0 0; opacity: 0.6; }

.footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__links a:hover { color: var(--gold); }

.footer__social { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__social a:hover { color: var(--gold); }

.footer__legal {
  max-width: var(--container);
  margin: 20px auto 0;
  padding: 0 32px;
  font-size: 12px;
  opacity: 0.55;
}

/* -------------------- WhatsApp flotante -------------------- */

.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink-deep);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(63, 69, 38, 0.35);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.whatsapp-float:hover { background: var(--amber); transform: translateY(-3px); }

/* -------------------- Reveal on scroll -------------------- */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* -------------------- Responsive -------------------- */

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    padding: 24px 32px;
    gap: 18px;
    box-shadow: 0 12px 24px rgba(63, 69, 38, 0.15);
  }
  .nav__links.is-open a { color: var(--ink); }

  .intro__grid,
  .service, .service--reverse,
  .reserve__grid,
  .notes__grid,
  .eco__grid,
  .wellbeing__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 36px;
  }

  .room-card__inner { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .room-card__header { padding: 24px; height: 260px; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 16px; }
  .room-card__title-wrap { flex: none; }

  .intro, .lodging, .services, .wellbeing, .location, .reserve, .notes, .eco, .contact { padding: 72px 0; }
  .wellbeing__gallery { min-height: 380px; }
  .activities { padding: 90px 0; }
  .quote { padding: 90px 24px; }

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

@media (max-width: 480px) {
  .container, .intro__grid, .nav__inner { padding-left: 20px; padding-right: 20px; }
  .footer__legal { padding-left: 20px; padding-right: 20px; }
  .wellbeing__services,
  .wellbeing__gallery { grid-template-columns: 1fr; }
  .wellbeing__gallery { min-height: 0; }
  .wellbeing__gallery img,
  .wellbeing__gallery img:nth-child(2) {
    height: 360px;
    margin-top: 0;
  }
}
