/* =============================================================
   1. Tokens — arena + turquesa + terracota
   ============================================================= */
:root {
  --sand: #f6ecd9;
  --sand-2: #ecdcbe;
  --ink: #2b2118;
  --ink-soft: #6b5c48;
  --turquoise: #0f9b93;
  --turquoise-deep: #0b746e;
  --terracotta: #d9612f;
  --white: #fffbf3;
  --line: rgba(43, 33, 24, 0.13);

  --display: "Lora", "Georgia", serif;
  --sans: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); font-style: italic; font-weight: 500; line-height: 1.12; }
ul { list-style: none; padding: 0; }
::selection { background: var(--turquoise); color: var(--white); }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 4px; }

.container { max-width: 1140px; margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--terracotta); display: block; margin-bottom: 0.8em;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: 0.6rem 1rem; background: var(--turquoise-deep); color: var(--white);
  border-radius: 999px; font-weight: 700; transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* =============================================================
   3. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  padding: 0.9em 1.9em; border-radius: 999px; font-weight: 700; font-size: 0.92rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.btn-whatsapp { background: var(--turquoise); color: var(--white); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(15,155,147,0.5); }
.btn-outline { border: 2px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--white); }

/* =============================================================
   4. Header / nav
   ============================================================= */
.masthead {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem var(--gutter);
  background: color-mix(in srgb, var(--sand) 88%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.masthead__logo { font-family: var(--display); font-style: italic; font-size: 1.5rem; }
.masthead__nav { display: none; gap: 1.8rem; font-size: 0.9rem; font-weight: 600; }
.masthead__nav a:hover { color: var(--turquoise-deep); }

@media (min-width: 960px) { .masthead__nav { display: flex; } }

/* =============================================================
   5. Hero
   ============================================================= */
.hero { padding: clamp(2.5rem, 7vw, 5rem) var(--gutter); display: grid; gap: 2rem; text-align: center; }
.hero__rating {
  display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.85rem; color: var(--ink-soft);
  background: var(--white); border-radius: 999px; padding: 0.5em 1.1em; margin-bottom: 1.2rem;
}
.hero__rating strong { color: var(--terracotta); }
.hero__headline { font-size: clamp(2.3rem, 6vw, 4rem); max-width: 16ch; margin-inline: auto; }
.hero__sub { font-size: 1.02rem; color: var(--ink-soft); max-width: 44ch; margin: 1.1rem auto 0; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.7rem; justify-content: center; }
.hero__media {
  aspect-ratio: 21/9; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, var(--sand-2), var(--turquoise) 170%);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: rgba(43,33,24,0.45); font-size: 0.8rem; padding: 1rem;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================================
   6. Sections
   ============================================================= */
.section { padding: clamp(3rem, 7vw, 5.5rem) var(--gutter); }
.section__head { max-width: 60ch; margin-bottom: 2.6rem; }
.section__title { font-size: clamp(1.9rem, 4vw, 2.6rem); }

/* =============================================================
   7. Rooms
   ============================================================= */
.rooms { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.room-card {
  background: var(--white); border-radius: var(--radius); padding: 1.6rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 24px 44px -24px rgba(43,33,24,0.25); }
.room-card__img {
  aspect-ratio: 4/3; border-radius: 12px; overflow: hidden;
  background: var(--sand-2); display: flex; align-items: center; justify-content: center;
  color: rgba(43,33,24,0.4); font-size: 0.75rem; text-align: center; padding: 0.6rem;
}
.room-card__img img { width: 100%; height: 100%; object-fit: cover; }
.room-card__name { font-size: 1.2rem; }
.room-card__capacity { font-size: 0.78rem; font-weight: 700; color: var(--turquoise-deep); text-transform: uppercase; letter-spacing: 0.04em; }
.room-card__summary { color: var(--ink-soft); font-size: 0.88rem; }

@media (min-width: 720px) { .rooms { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .rooms { grid-template-columns: repeat(4, 1fr); } }

/* =============================================================
   8. Booking selector — arma el mensaje de WhatsApp, no reserva de verdad
   ============================================================= */
.booking {
  background: var(--white); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.4rem);
  display: grid; gap: 1.4rem;
}
.booking__grid { display: grid; gap: 1rem; }
.field label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 0.4rem; }
.field input, .field select {
  width: 100%; padding: 0.75em 0.9em; border-radius: 10px; border: 1px solid var(--line);
  background: var(--sand); font-size: 0.92rem; font-family: var(--sans); color: var(--ink);
}
.booking__disclaimer { font-size: 0.78rem; color: var(--ink-soft); opacity: 0.8; }

@media (min-width: 720px) { .booking__grid { grid-template-columns: repeat(4, 1fr); align-items: end; } }

/* =============================================================
   9. Experiences
   ============================================================= */
.experiences { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.experience-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; }
.experience-card__name { font-size: 1.1rem; margin-bottom: 0.5rem; }
.experience-card__summary { color: var(--ink-soft); font-size: 0.88rem; }

@media (min-width: 720px) { .experiences { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   10. Check-in/out + location
   ============================================================= */
.info-strip {
  background: var(--turquoise-deep); color: var(--white); border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem); display: grid; gap: 2rem;
}
.info-block__title { font-family: var(--display); font-style: italic; font-size: 1.15rem; margin-bottom: 0.9rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
.address-text { font-size: 0.92rem; color: rgba(255,255,255,0.85); }

@media (min-width: 720px) { .info-strip { grid-template-columns: 1fr 1fr; } }

/* =============================================================
   11. Testimonials
   ============================================================= */
.testimonials { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 1.8rem; }
.demo-flag {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--terracotta); background: rgba(217,97,47,0.14);
  padding: 0.25em 0.7em; border-radius: 999px; margin-bottom: 0.9em;
}
.testimonial-card__quote { font-family: var(--display); font-style: italic; font-size: 1.1rem; }
.testimonial-card__name { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.9rem; }

@media (min-width: 720px) { .testimonials { grid-template-columns: repeat(2, 1fr); } }

/* =============================================================
   12. Final CTA
   ============================================================= */
.cta-final { text-align: center; padding: clamp(3rem, 7vw, 5.5rem) var(--gutter); }
.cta-final__title { font-size: clamp(1.9rem, 4vw, 2.6rem); max-width: 20ch; margin-inline: auto; }
.cta-final .btn-whatsapp { margin-top: 1.6rem; font-size: 1rem; padding: 1.05em 2.4em; }

/* =============================================================
   13. Footer — incluye enlace ESCNNA, requisito legal en Colombia
   ============================================================= */
.footer { padding: 2.2rem var(--gutter) 3rem; text-align: center; }
.footer__row { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.82rem; color: var(--ink-soft); }
.footer__logo { font-family: var(--display); font-style: italic; font-size: 1.1rem; color: var(--ink); }
.footer__legal { font-size: 0.72rem; opacity: 0.75; }
.footer__legal a { text-decoration: underline; }

/* =============================================================
   14. Floating WhatsApp bubble
   ============================================================= */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 200;
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--turquoise); color: var(--white); font-size: 1.5rem;
  box-shadow: 0 16px 30px -14px rgba(15,155,147,0.55);
  transition: transform 0.3s var(--ease-out);
}
.wa-float:hover { transform: scale(1.08); }

/* =============================================================
   15. Reduced motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { transition-duration: 0.2s; }
}
