/* ══════════════════════════════════════════════
   VILLA BAMBÚ — Seseh · Bali
   Lenguaje "quiet luxury": serif protagonista, hairlines,
   esquinas editoriales, profundidad sutil, cero ruido.
   ══════════════════════════════════════════════ */

:root {
  --ivory: #f7f4ec;
  --ivory-2: #efeadd;
  --ink: #191813;
  --ink-soft: #62604f;
  --jungle: #16281d;
  --jungle-2: #23402e;
  --leaf: #8aa98c;
  --brass: #a2854e;
  --brass-soft: #c2ab7c;
  --white: #fffdf8;
  --hairline: rgba(25, 24, 19, .14);
  --hairline-light: rgba(247, 244, 236, .18);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", -apple-system, "Segoe UI", sans-serif;
  --shadow: 0 30px 70px -30px rgba(22, 26, 18, .45);
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--jungle); color: var(--ivory); }

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

.wrap { width: min(1180px, 91%); margin: 0 auto; }

svg { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ─────────── Reveal (solo con JS activo) ─────────── */
html.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s ease, transform 1s var(--ease);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ─────────── Tipografía común ─────────── */
.kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .42em;
  text-indent: .42em;
  color: var(--brass);
  margin-bottom: 22px;
}
.kicker::before, .kicker::after {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}
.kicker--left { justify-content: flex-start; }
.kicker--left::after { display: none; }
.kicker--light { color: var(--brass-soft); }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: .01em;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; font-weight: 300; color: var(--jungle-2); }
.section-title--light { color: var(--ivory); }
.section-title--light em { color: var(--leaf); }

.lead {
  max-width: 660px;
  margin: 0 auto 30px;
  color: var(--ink-soft);
  font-size: 1.04rem;
  font-weight: 300;
}
.lead--left { margin-left: 0; }

.ornament {
  width: 30px;
  height: 30px;
  margin: 0 auto 20px;
  color: var(--brass);
  display: block;
}

/* ─────────── Botones ─────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 40px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-indent: .22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: color .4s ease, border-color .4s ease, box-shadow .4s ease;
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease), opacity .45s ease;
  z-index: -1;
}
.btn__ic { width: 18px; height: 18px; flex: 0 0 auto; }

.btn--solid { background: var(--ivory); color: var(--ink); }
.btn--solid:hover { box-shadow: 0 18px 44px -14px rgba(0, 0, 0, .55); }

.btn--outline {
  border-color: rgba(255, 253, 248, .6);
  color: var(--white);
  background: rgba(255, 253, 248, .04);
  backdrop-filter: blur(3px);
}
.btn--outline:hover { background: rgba(255, 253, 248, .14); border-color: var(--white); }

.btn--dark {
  background: var(--jungle);
  color: var(--ivory);
  border-color: var(--jungle);
}
.btn--dark:hover { background: var(--jungle-2); box-shadow: var(--shadow); }

.btn--wa {
  width: 100%;
  background: var(--jungle);
  color: var(--ivory);
  font-size: .82rem;
  padding: 19px 30px;
}
.btn--wa:hover { background: #1d6b45; box-shadow: 0 18px 40px -14px rgba(29, 107, 69, .55); }

/* ══════════════ NAV ══════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 22px min(4.5vw, 54px);
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease, color .4s ease;
  color: var(--white);
}
.nav.is-solid {
  background: rgba(247, 244, 236, .94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--hairline), 0 10px 34px -22px rgba(25, 24, 19, .45);
  color: var(--ink);
  padding-top: 13px;
  padding-bottom: 13px;
}

.nav__brand {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
}
.nav__brand em { font-style: italic; font-weight: 400; text-transform: none; letter-spacing: .04em; font-size: 1.18em; }

.nav__links { display: flex; gap: 34px; margin-left: auto; }
.nav__links a {
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: .92;
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: left .35s var(--ease), right .35s var(--ease);
}
.nav__links a:hover::after { left: 0; right: 0; }

.nav__cta {
  padding: 12px 30px;
  border: 1px solid currentColor;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-indent: .24em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .35s ease, color .35s ease;
  white-space: nowrap;
  will-change: transform;
}
.nav .nav__cta:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.nav.is-solid .nav__cta:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px 6px;
}
.nav__burger span {
  width: 28px; height: 1.5px;
  background: currentColor;
  transition: transform .35s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav { gap: 16px; }
  .nav__burger { display: flex; margin-left: auto; }
  .nav__cta { margin-left: auto; padding: 10px 22px; }
  .nav__burger { margin-left: 0; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(80vw, 340px);
    flex-direction: column;
    gap: 4px;
    padding: 110px 40px;
    background: var(--jungle);
    color: var(--ivory);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    box-shadow: -30px 0 80px rgba(0, 0, 0, .4);
  }
  .nav__links.is-open { transform: none; }
  .nav__links a {
    font-size: .92rem;
    padding: 16px 0;
    border-bottom: 1px solid var(--hairline-light);
  }
}

/* ══════════════ HERO ══════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero__slides { position: absolute; inset: 0; }
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 2.2s ease, transform 8s linear;
}
.hero__img.is-active { opacity: 1; transform: scale(1); }

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(12, 20, 14, .58) 0%,
    rgba(12, 20, 14, .16) 40%,
    rgba(12, 20, 14, .24) 68%,
    rgba(12, 20, 14, .66) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: .5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
}

.hero__content { position: relative; z-index: 2; padding: 0 6vw; will-change: transform; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .5em;
  text-indent: .5em;
  opacity: .95;
  margin-bottom: 26px;
}
.hero__eyebrow .rule { width: 52px; height: 1px; background: currentColor; opacity: .55; }

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.2rem, 10.5vw, 7rem);
  letter-spacing: .12em;
  text-indent: .12em;
  text-transform: uppercase;
  line-height: 1;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: .015em;
  text-indent: 0;
}

.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  margin: 22px 0 42px;
  opacity: .96;
}

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

.hero__footer {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 min(4.5vw, 54px) 30px;
}
.hero__counter {
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .22em;
  opacity: .9;
}
.hero__counter em { font-family: var(--serif); font-size: 1.2em; letter-spacing: .06em; }

.hero__dots { display: flex; gap: 14px; }
.hero__dots button {
  width: 26px; height: 2px;
  border: 0;
  background: rgba(255, 253, 248, .35);
  cursor: pointer;
  transition: background .4s ease;
}
.hero__dots button.is-active { background: var(--white); }

.hero__scroll { display: flex; }
.hero__scroll span {
  display: block;
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, var(--white));
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.55); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll span { animation: none; }
  .hero__img { transition: opacity .6s ease; transform: none; }
}
@media (max-width: 640px) {
  .hero__footer { justify-content: center; }
  .hero__counter, .hero__scroll { display: none; }
}

/* ══════════════ INTRO ══════════════ */
.intro {
  padding: clamp(90px, 13vw, 160px) 0 clamp(70px, 10vw, 120px);
  text-align: center;
}
.intro__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.8vw, 3.3rem);
  line-height: 1.16;
  margin-bottom: 26px;
}
.intro__title em { font-style: italic; font-weight: 300; color: var(--jungle-2); }

.intro__tags {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 64px;
}
.intro__tags span { color: var(--brass); font-style: normal; font-size: .7em; padding: 0 12px; }

.intro__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stat {
  flex: 1 1 150px;
  text-align: center;
  padding: 34px 20px;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 25%;
  height: 50%;
  width: 1px;
  background: var(--hairline);
}
.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--jungle);
  line-height: 1;
}
.stat__label {
  display: block;
  margin-top: 10px;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 640px) {
  .stat { flex: 1 1 40%; }
  .stat:nth-child(3)::before { display: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--hairline); }
}

/* ══════════════ MARQUEE ══════════════ */
.marquee {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--ivory-2);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee__track span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.35rem;
  color: var(--jungle);
  white-space: nowrap;
  padding-right: 10px;
}
.marquee__track i { font-style: normal; color: var(--brass); font-size: .75em; padding: 0 22px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ══════════════ HABITACIÓN ══════════════ */
.room { padding: clamp(80px, 11vw, 140px) 0; }
.room__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.room__media { position: sticky; top: 100px; will-change: transform; }
.room__media img { width: 100%; box-shadow: var(--shadow); }
.room__media figcaption {
  margin-top: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink-soft);
  text-align: center;
}
.room__text { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 34px; max-width: 540px; }

.amenities {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  margin-bottom: 40px;
}
.amenities li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .92rem;
  font-weight: 400;
  letter-spacing: .02em;
  padding: 13px 0;
  border-bottom: 1px solid var(--hairline);
}
.amenities svg {
  flex: 0 0 auto;
  width: 21px; height: 21px;
  color: var(--brass);
}

.room__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 0 0;
  border-top: 1px solid var(--ink);
}
.room__price-label {
  display: block;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .32em;
  color: var(--brass);
  margin-bottom: 6px;
}
.room__price-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 400;
  color: var(--jungle);
  line-height: 1.1;
}
.room__price-usd { font-size: .9rem; color: var(--ink-soft); }
.room__note {
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--jungle-2);
}

@media (max-width: 900px) {
  .room__grid { grid-template-columns: 1fr; }
  .room__media { position: static; max-width: 500px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .amenities { grid-template-columns: 1fr; }
}

/* ══════════════ LA VILLA ══════════════ */
.villa {
  padding: clamp(80px, 11vw, 140px) 0 clamp(90px, 12vw, 150px);
  background:
    radial-gradient(1300px 540px at 85% -10%, rgba(138, 169, 140, .13), transparent 60%),
    var(--jungle);
  color: var(--ivory);
  text-align: center;
}
.villa__cards {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  perspective: 1400px;
}
.vcard {
  flex: 0 1 345px;
  max-width: 365px;
  background: rgba(255, 253, 248, .04);
  border: 1px solid var(--hairline-light);
  text-align: left;
  box-shadow: 0 34px 80px -34px rgba(0, 0, 0, .6);
  transition: box-shadow .5s ease, border-color .5s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.vcard:hover { border-color: rgba(247, 244, 236, .4); box-shadow: 0 48px 100px -36px rgba(0, 0, 0, .75); }
.vcard__imgwrap { overflow: hidden; }
.vcard img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 58%;
  transition: transform 1.2s var(--ease);
}
.vcard:hover img { transform: scale(1.06); }
.vcard__body { padding: 26px 28px 32px; position: relative; }
.vcard__num {
  position: absolute;
  top: -16px;
  right: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--brass-soft);
  opacity: .85;
  background: transparent;
}
.vcard__body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: .01em;
  margin-bottom: 10px;
}
.vcard__body p { font-size: .9rem; font-weight: 300; color: rgba(247, 244, 236, .75); line-height: 1.65; }

/* ══════════════ GALERÍA ══════════════ */
.gallery { padding: clamp(80px, 11vw, 140px) 0; text-align: center; }
.gallery__grid {
  margin-top: 52px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}
.gphoto {
  flex: 0 1 305px;
  max-width: 345px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  box-shadow: var(--shadow);
}
.gphoto img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gphoto:hover img { transform: scale(1.05); }
.gphoto figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 20px 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--white);
  background: linear-gradient(to top, rgba(12, 20, 14, .72), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s var(--ease);
  pointer-events: none;
}
.gphoto:hover figcaption { opacity: 1; transform: none; }

/* Lightbox */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(14, 18, 14, .94);
  display: grid;
  place-items: center;
  padding: 4vmin;
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  box-shadow: 0 40px 110px rgba(0, 0, 0, .65);
}
.lightbox__close {
  position: absolute;
  top: 16px; right: 26px;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  opacity: .8;
  transition: opacity .3s ease;
}
.lightbox__close:hover { opacity: 1; }

/* ══════════════ ALREDEDORES ══════════════ */
.around {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--ivory-2);
}
.around .section-title, .around .lead--left { max-width: 720px; }
.around__list { margin-top: 54px; border-top: 1px solid var(--hairline); }
.arow {
  display: grid;
  grid-template-columns: 60px 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 26px 6px;
  border-bottom: 1px solid var(--hairline);
  transition: background .4s ease, padding .4s ease;
}
.arow:hover { background: rgba(255, 253, 248, .65); padding-left: 16px; }
.arow__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brass);
}
.arow__ic { width: 30px; height: 30px; color: var(--jungle-2); }
.arow__body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 4px;
}
.arow__body p { font-size: .92rem; font-weight: 300; color: var(--ink-soft); line-height: 1.6; max-width: 560px; }
.arow__dist {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid currentColor;
  padding: 8px 16px;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .arow { grid-template-columns: 40px minmax(0, 1fr) auto; gap: 14px; }
  .arow__num { display: none; }
  .arow__ic { width: 26px; height: 26px; }
  .arow__dist { padding: 6px 10px; font-size: .62rem; }
}

/* ══════════════ UBICACIÓN ══════════════ */
.map { padding: clamp(80px, 11vw, 140px) 0; text-align: center; }
.map__frame {
  margin-top: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 8;
  border: 1px solid var(--hairline);
}
@media (max-width: 700px) {
  .map__frame { aspect-ratio: 4 / 5; }
}
.map__frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.82); }
.map__actions { margin-top: 34px; }

/* ══════════════ RESERVA ══════════════ */
.booking {
  padding: clamp(80px, 11vw, 150px) 0;
  background:
    radial-gradient(1000px 460px at 10% 6%, rgba(138, 169, 140, .12), transparent 60%),
    var(--jungle);
  color: var(--ivory);
}
.booking__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 100px);
  align-items: center;
}
.booking__text { color: rgba(247, 244, 236, .8); margin-bottom: 30px; font-weight: 300; }
.booking__perks { list-style: none; display: grid; gap: 0; border-top: 1px solid var(--hairline-light); }
.booking__perks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .95rem;
  font-weight: 300;
  padding: 14px 2px;
  border-bottom: 1px solid var(--hairline-light);
}
.booking__perks li::before { content: "✦"; color: var(--brass-soft); font-size: .7rem; }

.booking__form {
  background: var(--ivory);
  color: var(--ink);
  padding: clamp(30px, 4.5vw, 48px);
  box-shadow: 0 50px 110px -36px rgba(0, 0, 0, .6);
  display: grid;
  gap: 24px;
}
.field { display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field label {
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--jungle);
}
.field .opt { font-weight: 300; text-transform: none; letter-spacing: .04em; color: var(--ink-soft); }
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(25, 24, 19, .3);
  border-radius: 0;
  padding: 10px 2px;
  width: 100%;
  transition: border-color .3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23191813' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 26px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--jungle);
  box-shadow: 0 1px 0 var(--jungle);
}
.field textarea { resize: vertical; }
.field input.is-invalid { border-bottom-color: #b04432; box-shadow: 0 1px 0 #b04432; }

.booking__alt { text-align: center; font-size: .88rem; font-weight: 300; color: var(--ink-soft); }
.booking__alt a { color: var(--jungle-2); font-weight: 500; }

@media (max-width: 900px) { .booking__grid { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .field-row { grid-template-columns: 1fr; } }

/* ══════════════ FOOTER ══════════════ */
.footer {
  background: #0f1d14;
  color: rgba(247, 244, 236, .75);
  padding: 60px 0 32px;
}
.footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--hairline-light);
}
.footer__brand {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ivory);
  font-size: 1.05rem;
}
.footer__brand em { font-style: italic; font-weight: 400; text-transform: none; letter-spacing: .04em; font-size: 1.18em; }
.footer__loc { margin-top: 8px; font-size: .86rem; font-weight: 300; }
.footer__links { display: flex; flex-wrap: wrap; gap: 26px; }
.footer__links a {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: .8;
  transition: opacity .3s ease;
}
.footer__links a:hover { opacity: 1; }
.footer__copy { text-align: center; font-size: .76rem; font-weight: 300; opacity: .5; padding-top: 28px; letter-spacing: .06em; }

/* ══════════════ WHATSAPP FLOTANTE ══════════════ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: var(--jungle);
  color: var(--ivory);
  border: 1px solid rgba(247, 244, 236, .25);
  border-radius: 50%;
  box-shadow: 0 18px 42px -12px rgba(15, 29, 20, .65);
  transition: transform .3s var(--ease), background .3s ease, box-shadow .3s ease;
}
.wa-float svg { width: 26px; height: 26px; fill: currentColor; stroke: none; }
.wa-float:hover {
  transform: translateY(-4px);
  background: #1d6b45;
  box-shadow: 0 24px 50px -12px rgba(29, 107, 69, .7);
}
