/* ============================================================
   JAGO GILI AIR — Boutique Hotel
   Warm · Tropical · Clean · Luxurious
   Mobile-first, minimal, fast.
   ============================================================ */

:root {
  --ivory: #fdfbf7;
  --sand: #f6f0e6;
  --sand-deep: #ede4d3;
  --ink: #2c2a25;
  --ink-soft: #5d574c;
  --bronze: #b18153;
  --bronze-deep: #96683e;
  --palm: #45604e;
  --line: #e5dccc;
  --shadow: 0 18px 50px -18px rgba(44, 42, 37, .22);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--bronze-deep); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--ink); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .6rem 1.2rem;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 7vw, 4.75rem); letter-spacing: .01em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.7rem); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  margin-bottom: 1.1rem;
}

.lead { font-size: clamp(1.1rem, 2vw, 1.25rem); color: var(--ink-soft); }

.center { text-align: center; }

/* ---------- Layout ---------- */

.wrap { width: min(1180px, 92vw); margin-inline: auto; }
.wrap-narrow { width: min(780px, 92vw); margin-inline: auto; }

.section { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.section-sand { background: var(--sand); }

.section-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-head h2 { margin-bottom: 1rem; }
.section-head .lead { max-width: 42rem; }
.section-head.center .lead { margin-inline: auto; }

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

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  border: 1px solid var(--bronze-deep);
  background: var(--bronze-deep);
  color: #fff;
  cursor: pointer;
  transition: background .35s var(--ease), border-color .35s var(--ease),
              transform .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease);
}
.btn:hover, .btn:focus-visible {
  background: #7d5430;
  border-color: #7d5430;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(150, 104, 62, .55);
}

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--ink); border-color: var(--ink); box-shadow: none; }

.btn-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.85); }
.btn-light:hover, .btn-light:focus-visible { background: #fff; border-color: #fff; color: var(--ink); box-shadow: none; }

/* ---------- Header ---------- */

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 1.1rem 0;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.site-header.scrolled {
  background: rgba(253, 251, 247, .94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: .55rem 0;
}

.brand img { height: 52px; width: auto; transition: height .4s var(--ease); }
.site-header.scrolled .brand img { height: 42px; }

.nav-list { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-list a {
  font-size: .8rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase;
  color: #fff; position: relative; padding: .35rem 0;
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-list a:hover::after, .nav-list a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.site-header.scrolled .nav-list a, .site-header.solid .nav-list a { color: var(--ink); }

.header-cta { white-space: nowrap; padding: .8rem 1.7rem; font-size: .74rem; }

.site-header.solid { background: rgba(253, 251, 247, .94); box-shadow: 0 1px 0 var(--line); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; z-index: 120;
  width: 44px; height: 44px; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 10px; width: 24px; height: 1.5px;
  background: #fff; transition: transform .35s var(--ease), opacity .3s, background .3s;
}
.site-header.scrolled .nav-toggle span, .site-header.scrolled .nav-toggle span::before,
.site-header.scrolled .nav-toggle span::after,
.site-header.solid .nav-toggle span, .site-header.solid .nav-toggle span::before,
.site-header.solid .nav-toggle span::after { background: var(--ink); }
.nav-toggle span { top: 21px; }
.nav-toggle span::before { left: 0; top: -7px; }
.nav-toggle span::after { left: 0; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent !important; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); background: var(--ink); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); background: var(--ink); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 0; background: var(--ivory);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
  }
  .site-nav.open { opacity: 1; visibility: visible; }
  .nav-list { flex-direction: column; gap: 2rem; text-align: center; }
  .nav-list a { color: var(--ink) !important; font-size: 1rem; }
  .header-cta { display: none; }
}

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

.hero {
  position: relative; min-height: 92svh;
  display: flex; align-items: flex-end;
  color: #fff; isolation: isolate; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top,
    rgba(24, 22, 18, .82) 0%,
    rgba(24, 22, 18, .55) 30%,
    rgba(24, 22, 18, .22) 60%,
    rgba(24, 22, 18, .28) 100%);
}
.hero-inner { padding: 0 0 clamp(4rem, 10vh, 7rem); width: min(1180px, 92vw); margin-inline: auto; }
.hero h1 {
  color: #fff; max-width: 16ch; margin-bottom: 1.2rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .45), 0 1px 3px rgba(0, 0, 0, .3);
}
.hero .eyebrow {
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .5);
}
.hero p {
  max-width: 34rem; font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #fff; font-weight: 400; margin-bottom: 2.2rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .55), 0 1px 3px rgba(0, 0, 0, .35);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  width: 1px; height: 52px; background: rgba(255,255,255,.4); overflow: hidden;
}
.hero-scroll::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: #fff; animation: scrollHint 2.2s var(--ease) infinite;
}
@keyframes scrollHint { to { top: 110%; } }

/* Page hero (inner pages) */
.page-hero { min-height: 58svh; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); }

/* ---------- Desktop hero refinement ---------- */

@media (min-width: 641px) {
  /* Corner scrim: darkness only where the text sits, photo stays vivid */
  .hero::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(78deg, rgba(24, 22, 18, .42) 0%, rgba(24, 22, 18, .12) 42%, transparent 60%);
  }
  .hero-inner { padding-bottom: clamp(5.5rem, 12vh, 8.5rem); }
  .hero-inner > * { max-width: 620px; }

  /* Signature rule line above the eyebrow */
  .hero .eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem; }
  .hero .eyebrow::before {
    content: ""; width: 44px; height: 1px; flex: none;
    background: rgba(255, 255, 255, .65);
  }

  .hero h1 {
    font-size: clamp(3rem, 5.2vw, 4.3rem);
    line-height: 1.08;
    margin-bottom: 1.5rem;
  }
  .hero p {
    font-size: 1.15rem; line-height: 1.7;
    max-width: 30rem;
    margin-bottom: 2.8rem;
  }

  .hero-actions { gap: 1.4rem; align-items: center; }
  .hero-actions .btn { padding: 1.1rem 2.5rem; }
  /* Secondary action becomes a quiet text link — one clear CTA */
  .hero-actions .btn-light {
    background: none; border: none; padding: .6rem 0;
    color: rgba(255, 255, 255, .92);
    text-decoration: underline; text-underline-offset: 6px;
    text-decoration-color: rgba(255, 255, 255, .45);
    transition: color .3s var(--ease), text-decoration-color .3s var(--ease);
  }
  .hero-actions .btn-light:hover, .hero-actions .btn-light:focus-visible {
    background: none; color: #fff; text-decoration-color: #fff;
    transform: none; box-shadow: none;
  }
}

/* ---------- Split intro ---------- */

.split { display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.split-rev > .split-media { order: 2; }
}
.split-media { position: relative; }
.split-media .frame { position: relative; overflow: hidden; box-shadow: var(--shadow); }
.split-media .frame img { transition: transform 1.2s var(--ease); }
.split-media .frame:hover img { transform: scale(1.04); }
.split-media .accent {
  position: absolute; z-index: -1; inset: auto -1.4rem -1.4rem auto;
  width: 62%; height: 62%; background: var(--sand-deep);
}
.split-body h2 { margin-bottom: 1.4rem; }
.split-body p + p { margin-top: 1.1rem; }
.split-body .btn { margin-top: 2.2rem; }

/* ---------- Room cards ---------- */

.card-grid { display: grid; gap: 2rem; }
@media (min-width: 720px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) and (max-width: 999px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--ivory); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { overflow: hidden; aspect-ratio: 4 / 3; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 1.8rem 1.6rem 2rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: .6rem; }
.card-meta { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze-deep); margin-bottom: .9rem; }
.card-body p { font-size: .98rem; color: var(--ink-soft); }
.card-link {
  margin-top: auto; padding-top: 1.4rem;
  font-size: .78rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink);
}
.card-link span { display: inline-block; transition: transform .35s var(--ease); }
.card:hover .card-link span { transform: translateX(6px); }

/* ---------- Mosaic / lifestyle strip ---------- */

.mosaic { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .mosaic { grid-template-columns: repeat(4, 1fr); } .mosaic .tall { grid-row: span 2; } }
.mosaic a { display: block; overflow: hidden; position: relative; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; transition: transform 1s var(--ease), filter 1s var(--ease); }
.mosaic .tall img { aspect-ratio: auto; height: 100%; }
.mosaic a:hover img { transform: scale(1.05); filter: brightness(1.05); }

/* ---------- Full-bleed banner ---------- */

.banner {
  position: relative; min-height: 72svh; display: flex; align-items: center;
  color: #fff; isolation: isolate; overflow: hidden;
  background-attachment: fixed;
}
.banner-media { position: absolute; inset: 0; z-index: -2; }
.banner-media img { width: 100%; height: 100%; object-fit: cover; }
.banner::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to right, rgba(26, 24, 20, .62) 0%, rgba(26, 24, 20, .42) 55%, rgba(26, 24, 20, .3) 100%);
}
.banner h2, .banner p { color: #fff; text-shadow: 0 2px 18px rgba(0, 0, 0, .45); }
.banner p { font-weight: 400; }
.banner .eyebrow { color: rgba(255,255,255,.92); text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.banner-inner { width: min(1180px, 92vw); margin-inline: auto; padding: 5rem 0; max-width: none; }
.banner-inner > div { max-width: 34rem; }
.banner p { margin: 1.2rem 0 2rem; }

/* ---------- Feature list (location) ---------- */

.features { display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .features { grid-template-columns: repeat(2, 1fr); } }
.feature {
  background: var(--ivory); border: 1px solid var(--line); padding: 2rem 1.8rem;
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feature:hover { border-color: var(--bronze); transform: translateY(-4px); box-shadow: var(--shadow); }
.feature .num {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--bronze);
  display: block; margin-bottom: .8rem;
}
.feature h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.feature p { font-size: .96rem; color: var(--ink-soft); }

/* ---------- Reviews ---------- */

.reviews { display: grid; gap: 2rem; }
@media (min-width: 900px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review { border-top: 2px solid var(--bronze); padding-top: 1.8rem; }
.review blockquote {
  font-family: var(--font-display); font-size: 1.3rem; line-height: 1.5; font-style: italic;
  margin-bottom: 1.2rem;
}
.review .stars { color: var(--bronze); letter-spacing: .25em; margin-bottom: 1rem; font-size: .9rem; }
.review cite { font-style: normal; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- Direct booking ---------- */

.direct { text-align: center; }
.direct-perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem 3.5rem; margin: 3rem 0; }
.perk { max-width: 200px; }
.perk .perk-icon { font-family: var(--font-display); font-size: 2rem; color: var(--bronze); display: block; margin-bottom: .6rem; }
.perk h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.perk p { font-size: .9rem; color: var(--ink-soft); }

/* ---------- Amenities ---------- */

.amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 720px) { .amenities { grid-template-columns: repeat(4, 1fr); } }
.amenity {
  background: var(--ivory); padding: 1.6rem 1rem; text-align: center;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
  transition: background .35s var(--ease), color .35s var(--ease);
}
.amenity:hover { background: var(--sand); color: var(--ink); }

/* ---------- Gallery (masonry) ---------- */

.masonry { columns: 2 240px; column-gap: 1rem; }
@media (min-width: 900px) { .masonry { columns: 3 300px; } }
.masonry a {
  display: block; margin-bottom: 1rem; overflow: hidden; position: relative;
  break-inside: avoid;
}
.masonry img { width: 100%; transition: transform .9s var(--ease), filter .9s var(--ease); }
.masonry a:hover img { transform: scale(1.04); filter: brightness(1.06); }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(20, 18, 15, .93);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox button {
  position: absolute; background: none; border: 0; color: #fff; cursor: pointer;
  font-size: 2rem; line-height: 1; padding: 1rem; opacity: .75; transition: opacity .3s;
  font-family: var(--font-body);
}
.lightbox button:hover { opacity: 1; }
.lb-close { top: 1rem; right: 1.2rem; }
.lb-prev { left: .6rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: .6rem; top: 50%; transform: translateY(-50%); }

/* ---------- Room detail (accommodations) ---------- */

.room-hero { margin-bottom: clamp(2.5rem, 6vw, 4rem); overflow: hidden; box-shadow: var(--shadow); }
.room-hero img { width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; }
.room-grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); }
@media (min-width: 900px) { .room-grid { grid-template-columns: 1.15fr .85fr; align-items: start; } }
.room-facts { display: flex; flex-wrap: wrap; gap: 2rem; margin: 1.6rem 0 2rem; padding: 1.4rem 0; border-block: 1px solid var(--line); }
.room-facts div { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.room-facts strong { display: block; font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--ink); }

.feature-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.feature-card {
  border: 1px solid var(--line); padding: 1.4rem 1.2rem; background: var(--ivory);
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.feature-card:hover { border-color: var(--bronze); background: var(--sand); }
.feature-card h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.feature-card p { font-size: .88rem; color: var(--ink-soft); }

/* ---------- Contact ---------- */

.contact-grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .9fr 1.1fr; } }
.contact-list { list-style: none; display: grid; gap: 1.6rem; margin-top: 2rem; }
.contact-list strong { display: block; font-size: .78rem; letter-spacing: .24em; text-transform: uppercase; color: var(--bronze); margin-bottom: .3rem; }
.map-embed { border: 0; width: 100%; height: 420px; filter: saturate(.85); }

.form-grid { display: grid; gap: 1.2rem; }
.form-grid label { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: .4rem; }
.form-grid input, .form-grid textarea {
  width: 100%; padding: .9rem 1rem; border: 1px solid var(--line); background: var(--ivory);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  transition: border-color .3s var(--ease);
}
.form-grid input:focus, .form-grid textarea:focus { outline: none; border-color: var(--bronze); }

/* ---------- CTA band ---------- */

.cta-band { background: var(--palm); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: .8rem; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 36rem; margin: 0 auto 2.2rem; }
.cta-band .btn { background: #fff; border-color: #fff; color: var(--palm); display: inline-flex; align-items: center; gap: .55rem; }
.cta-band .btn:hover { background: var(--sand); border-color: var(--sand); transform: translateY(-2px); }
.cta-band .btn svg { width: 17px; height: 17px; fill: currentColor; flex: none; }

.or-link {
  display: block; margin-top: 1.2rem;
  font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
  text-decoration: underline; text-underline-offset: 4px;
}
.cta-band .or-link { color: rgba(255,255,255,.92); }
.cta-band .or-link:hover { color: #fff; }

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

.site-footer { background: #23211c; color: #b8b2a6; padding: clamp(3.5rem, 8vw, 5.5rem) 0 2rem; font-size: .95rem; }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1.2fr; } }
.site-footer h3 {
  color: #fff; font-family: var(--font-body); font-size: .78rem; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.site-footer ul { list-style: none; display: grid; gap: .5rem; }
.site-footer a { color: #b8b2a6; }
.site-footer a:hover { color: #fff; }
.footer-brand img { height: 54px; margin-bottom: 1rem; filter: brightness(2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .82rem; letter-spacing: .06em;
}

/* ---------- WiFi badge ---------- */

.wifi-badge {
  position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(253, 251, 247, .95); backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: .72rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase;
  padding: .7rem 1.15rem; box-shadow: 0 10px 30px -12px rgba(44,42,37,.35);
}
.wifi-badge svg { width: 17px; height: 17px; flex: none; stroke: var(--bronze); fill: none; stroke-width: 2; stroke-linecap: round; }

/* ---------- WhatsApp primary CTA ---------- */

.btn-wa {
  background: #128c7e; border-color: #128c7e; color: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
}
.btn-wa:hover, .btn-wa:focus-visible {
  background: #0e7266; border-color: #0e7266; color: #fff;
  box-shadow: 0 14px 30px -12px rgba(18, 140, 126, .55);
}
.btn-wa svg { width: 17px; height: 17px; fill: currentColor; flex: none; }


/* ---------- Mobile sticky booking bar ---------- */

.book-bar {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  display: none; gap: .6rem; padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(253, 251, 247, .96); backdrop-filter: blur(12px);
  box-shadow: 0 -1px 0 var(--line), 0 -8px 30px -18px rgba(44,42,37,.35);
}
.book-bar .btn { text-align: center; padding: .95rem .5rem; font-size: .7rem; letter-spacing: .14em; }
.book-bar .btn-wa { flex: 1.7; }
.book-bar .btn-ghost { flex: 1; }
@media (max-width: 860px) {
  .book-bar { display: flex; }
  body { padding-bottom: 80px; }
}

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.6rem; z-index: 89;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(37, 211, 102, .6);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: waPulse 2.8s var(--ease) infinite;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); color: #fff; }
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }
@media (max-width: 860px) {
  .wa-float { bottom: calc(92px + env(safe-area-inset-bottom)); }
}
@keyframes waPulse {
  0%   { box-shadow: 0 10px 26px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.4); }
  70%  { box-shadow: 0 10px 26px -8px rgba(37,211,102,.6), 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 26px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- FAQ accordion ---------- */

.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.4rem 2.5rem 1.4rem 0; position: relative;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--ink);
  transition: color .3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--bronze-deep); }
.faq summary::after {
  content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-weight: 300; font-size: 1.6rem; color: var(--bronze);
  transition: transform .35s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 1.5rem; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Mobile typography & spacing ---------- */

@media (max-width: 640px) {
  h1 { font-size: 2.15rem; line-height: 1.15; }
  h2 { font-size: 1.8rem; }
  .lead { font-size: 1.05rem; }
  .eyebrow { font-size: .7rem; letter-spacing: .24em; margin-bottom: .9rem; }

  /* Hero: clear the fixed header, tighter rhythm, full-width CTAs */
  .hero-inner { padding-top: 7rem; padding-bottom: 4.5rem; }
  .hero h1 { margin-bottom: .9rem; max-width: none; }
  .hero p { font-size: 1rem; line-height: 1.6; margin-bottom: 1.8rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero-actions .btn {
    width: 100%; justify-content: center; text-align: center;
    padding: 1rem 1rem; font-size: .72rem; letter-spacing: .16em;
  }
  .hero-scroll { display: none; }
  .page-hero .hero-inner { padding-bottom: 3.5rem; }

  /* Sections */
  .section-head { margin-bottom: 2.4rem; }
  .split-body .btn { width: 100%; justify-content: center; text-align: center; }
  .feature-cards { gap: .7rem; }
  .feature-card { padding: 1.1rem 1rem; }
  .room-facts { gap: 1.3rem 1.8rem; padding: 1.1rem 0; }
  .card-body { padding: 1.5rem 1.3rem 1.7rem; }
  .direct-perks { gap: 2rem 2.5rem; margin: 2.4rem 0; }
  .cta-band .btn { max-width: 100%; }

  /* Sticky bar: keep labels on one line */
  .book-bar .btn { font-size: .66rem; letter-spacing: .1em; padding: .95rem .4rem; }
}

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

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
