/* ==========================================================================
   VILLA BONDA — Classic Villa Redesign
   Design tokens + full stylesheet
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Palette: teak, songket gold, limewash cream */
  --ink:        #1E1A13;
  --teak:       #2A2419;
  --teak-soft:  #3A3225;
  --bark:       #473E2D;
  --stone:      #665C49;
  --clay:       #968871;
  --gold:       #B58B3C;
  --gold-lite:  #D8B770;
  --gold-deep:  #77571E;
  --cream:      #F8F5EE;
  --cream-warm: #FFFCF8;
  --paper:      #FFFFFF;
  --line:       rgba(149, 136, 113, .28);
  --line-soft:  rgba(149, 136, 113, .16);

  /* Type */
  --serif: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;

  --step--1: clamp(.8rem, .76rem + .18vw, .89rem);
  --step-0:  clamp(.95rem, .9rem + .22vw, 1.06rem);
  --step-1:  clamp(1.1rem, 1rem + .4vw, 1.3rem);
  --step-2:  clamp(1.5rem, 1.28rem + .9vw, 2.1rem);
  --step-3:  clamp(2rem, 1.6rem + 1.8vw, 3.1rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.2vw, 4.6rem);

  /* Space */
  --gut: clamp(1.25rem, 4vw, 3rem);
  --sec: clamp(4.5rem, 8vw, 8rem);
  --wrap: 1240px;
  --wrap-narrow: 820px;

  --radius: 2px;
  --shadow-sm: 0 1px 2px rgba(30,26,19,.06), 0 8px 24px -18px rgba(30,26,19,.35);
  --shadow-md: 0 2px 4px rgba(30,26,19,.05), 0 28px 60px -34px rgba(30,26,19,.5);
  --ease: cubic-bezier(.2,.7,.25,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 108px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  background: var(--cream-warm);
  color: var(--bark);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, iframe, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 400; line-height: 1.15; color: var(--teak); font-family: var(--serif); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.wrap { width: min(100% - var(--gut) * 2, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - var(--gut) * 2, var(--wrap-narrow)); margin-inline: auto; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--teak); color: var(--cream); padding: .8rem 1.2rem;
}
.skip:focus { left: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Shared section furniture ---------- */
.section { padding-block: var(--sec); position: relative; }
.section--cream { background: var(--cream); }
.section--teak { background: var(--teak); color: rgba(248,245,238,.78); }
.section--teak h2, .section--teak h3, .section--teak h4 { color: var(--cream); }

.eyebrow {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold);
  margin: 0 0 1.1rem;
  display: block;
}
.section--teak .eyebrow { color: var(--gold-lite); }

.section-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: var(--step-3); letter-spacing: -.01em; }
.section-head h2 em { font-style: italic; color: var(--gold-deep); }
.section--teak .section-head h2 em { color: var(--gold-lite); }
.section-head .lede {
  margin: 1.5rem auto 0;
  max-width: 62ch;
  color: var(--stone);
  font-size: var(--step-0);
}
.section--teak .section-head .lede { color: rgba(248,245,238,.72); }

/* Ornamental divider — echoes the original brass divider motif */
.rule { display: flex; align-items: center; justify-content: center; gap: .75rem; margin: 1.4rem auto 0; }
.rule::before, .rule::after {
  content: ""; height: 1px; width: clamp(48px, 9vw, 96px);
  background: linear-gradient(90deg, transparent, var(--gold));
}
.rule::after { background: linear-gradient(270deg, transparent, var(--gold)); }
.rule i {
  width: 7px; height: 7px; background: var(--gold);
  transform: rotate(45deg); display: block; flex: none;
}
.rule span { width: 3px; height: 3px; background: var(--gold); transform: rotate(45deg); display: block; flex: none; opacity: .6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 2.1rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid var(--gold); color: var(--gold-deep);
  background: transparent; border-radius: var(--radius);
  position: relative; overflow: hidden; isolation: isolate;
  transition: color .45s var(--ease), border-color .45s var(--ease);
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.btn:hover { color: #fff; border-color: var(--gold); }
.btn:hover::after { transform: scaleX(1); transform-origin: left; }
.btn--solid { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--solid::after { background: var(--gold-deep); }
.btn--solid:hover { color: #fff; }
.btn--light { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--light::after { background: #fff; }
.btn--light:hover { color: var(--teak); border-color: #fff; }
.btn--sm { padding: .68rem 1.4rem; font-size: .64rem; letter-spacing: .18em; }
.btn svg { width: 12px; height: 12px; fill: currentColor; flex: none; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.topbar {
  background: var(--teak);
  color: rgba(248,245,238,.72);
  font-size: .72rem;
  letter-spacing: .09em;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 42px; padding-block: .35rem; }
.topbar__meta { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }
.topbar__meta a { display: inline-flex; align-items: center; gap: .55rem; transition: color .3s var(--ease); }
.topbar__meta a:hover { color: var(--gold-lite); }
.topbar__meta img { width: 13px; height: auto; opacity: .8; }
.topbar__meta a svg { width: 13px; height: 13px; fill: currentColor; opacity: .8; flex: none; }
.topbar__social { display: flex; align-items: center; gap: .35rem; }
.topbar__social a {
  width: 30px; height: 30px; display: grid; place-items: center;
  color: rgba(248,245,238,.6); transition: color .3s var(--ease), transform .3s var(--ease);
}
.topbar__social a:hover { color: var(--gold-lite); transform: translateY(-2px); }
.topbar__social svg { width: 14px; height: 14px; fill: currentColor; }
@media (max-width: 720px) {
  .topbar__inner { justify-content: center; padding-block: .55rem; }
  .topbar__meta { gap: 1rem; justify-content: center; font-size: .68rem; }
  .topbar__social { display: none; }
}

.masthead {
  position: sticky; top: 0; z-index: 90;
  background: rgba(41,43,44,0);
  transition: background .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.masthead__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 84px; }
.brand { display: block; flex: none; }
.brand img { width: 128px; transition: width .5s var(--ease); }
@media (min-width: 721px) {
  .masthead, .masthead__inner { height: 84px; }
  .masthead:not(.is-stuck) .brand img { width: 128px; height: 84px; padding-block: .5rem; object-fit: contain; }
}
@media (max-width: 720px) {
  .masthead { padding-bottom: .5rem; }
  .masthead__inner { min-height: 66px; }
  .brand { padding: .25rem .4rem; }
  .brand img { width: 92px; }
}
.nav { display: flex; align-items: center; gap: clamp(.2rem, 1.1vw, 1.1rem); }
.nav a {
  position: relative; display: block; padding: .55rem .1rem;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.82); white-space: nowrap;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: .18rem;
  height: 1px; background: var(--gold-lite); transition: right .4s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after, .nav a[aria-current="true"]::after { right: 0; }
.nav a[aria-current="true"] { color: var(--gold-lite); }
.nav__cta { margin-left: .75rem; }
.nav__cta .btn { padding: .72rem 1.5rem; font-size: .66rem; letter-spacing: .18em; white-space: nowrap; }

/* scrolled state */
.masthead.is-stuck { background: rgba(29,26,20,.94); backdrop-filter: blur(14px); box-shadow: 0 12px 40px -22px rgba(0,0,0,.85); }
.masthead.is-stuck .brand img { width: 100px; }

/* Solid header on pages without a dark hero (rates, generic pages, archives).
   The nav is white for the hero, so give it a dark bar to sit on. */
.vb-solid-header .masthead { background: rgba(29,26,20,.98); box-shadow: 0 12px 40px -26px rgba(0,0,0,.7); }
.vb-solid-header .masthead.is-stuck { background: rgba(29,26,20,.98); }

.burger { display: none; width: 44px; height: 44px; place-items: center; color: #fff; }
.burger span { display: block; width: 22px; height: 1px; background: currentColor; position: relative; transition: background .3s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 1px; background: currentColor; transition: transform .4s var(--ease); }
.burger span::before { top: -7px; }
.burger span::after  { top: 7px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .burger span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile drawer (slides from LEFT, content rich) ---------- */
.drawer {
  position: fixed; inset: 0 auto 0 0; width: min(390px, 90vw); z-index: 120;
  background: var(--teak); color: rgba(248,245,238,.72);
  transform: translateX(-100%); transition: transform .55s var(--ease);
  display: flex; flex-direction: column; overflow-y: auto;
  box-shadow: 30px 0 90px -40px #000;
}
body.nav-open .drawer { transform: translateX(0); }
.drawer__scrim {
  position: fixed; inset: 0; z-index: 110; background: rgba(14,12,9,.7);
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
  backdrop-filter: blur(3px);
}
body.nav-open .drawer__scrim { opacity: 1; visibility: visible; }

.drawer__head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.drawer__head img { width: 104px; }
.drawer__close { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; font-size: 1.3rem; }
.drawer__close:hover { color: var(--gold-lite); }

.drawer__media { position: relative; }
.drawer__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.drawer__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, var(--teak) 100%); }
.drawer__media span {
  position: absolute; left: 1.5rem; bottom: 1rem; z-index: 1;
  font-family: var(--serif); font-size: 1.25rem; color: #fff;
}

.drawer__nav { padding: .5rem 1.5rem 0; }
.drawer__nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .95rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.86);
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.drawer__nav a::after { content: "→"; color: var(--gold-lite); opacity: 0; transform: translateX(-6px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.drawer__nav a:hover { color: var(--gold-lite); padding-left: .35rem; }
.drawer__nav a:hover::after { opacity: 1; transform: none; }

.drawer__section { padding: 1.5rem; }
.drawer__section h6 {
  margin: 0 0 .9rem; font-family: var(--sans); font-size: .6rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold-lite); font-weight: 400;
}
.drawer__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); }
.drawer__facts div { background: var(--teak); padding: .85rem .5rem; text-align: center; }
.drawer__facts b { display: block; font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--gold-lite); line-height: 1; }
.drawer__facts span { font-size: .52rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); }

.drawer__contact { display: grid; gap: .75rem; font-size: .84rem; }
.drawer__contact a, .drawer__contact p { display: flex; gap: .7rem; align-items: flex-start; margin: 0; }
.drawer__contact svg { width: 14px; height: 14px; fill: var(--gold-lite); flex: none; margin-top: .28em; }
.drawer__contact a:hover { color: var(--gold-lite); }

.drawer__cta { padding: 0 1.5rem 1rem; display: grid; gap: .6rem; }
.drawer__cta .btn { width: 100%; }
.drawer__social { display: flex; gap: .5rem; padding: 0 1.5rem 2rem; }
.drawer__social a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.7);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.drawer__social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.drawer__social svg { width: 15px; height: 15px; fill: currentColor; }

@media (max-width: 1080px) {
  .burger { display: grid; }
  .nav { display: none; }
}
@media (min-width: 1081px) {
  .drawer, .drawer__scrim { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: calc(100svh - 42px); margin-top: -84px; display: grid; align-items: end; isolation: isolate; overflow: hidden; }
.hero__stage { position: absolute; inset: 0; z-index: -2; background: var(--teak); }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s var(--ease);
  animation: kenburns 16s ease-out infinite alternate;
}
.hero__slide.is-active { opacity: 1; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.14); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,17,12,.72) 0%, rgba(20,17,12,.24) 32%, rgba(20,17,12,.52) 72%, rgba(20,17,12,.9) 100%);
}
.hero__inner { padding-block: clamp(6rem, 14vh, 9rem) clamp(3.5rem, 8vh, 6rem); text-align: center; color: #fff; }
.hero__crest { width: 74px; margin: 0 auto 1.8rem; opacity: .95; filter: brightness(0) invert(1); }
.hero h1 {
  color: #fff; font-size: var(--step-4); letter-spacing: -.015em; line-height: 1.02;
  text-shadow: 0 2px 40px rgba(0,0,0,.4);
}
.hero h1 em { display: block; font-style: italic; color: var(--gold-lite); }
.hero__tag {
  margin: 1.6rem auto 0; max-width: 46ch;
  font-size: clamp(.66rem, 1.4vw, .78rem); letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.82); white-space: nowrap;
}
@media (max-width: 560px) { .hero__tag { white-space: normal; letter-spacing: .2em; } }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2.6rem; }
.hero__facts {
  margin-top: clamp(3rem, 7vh, 5rem);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  border-top: 1px solid rgba(255,255,255,.18); padding-top: 2rem;
}
.hero__fact { text-align: center; min-width: 92px; }
.hero__fact b { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 400; color: var(--gold-lite); line-height: 1; }
.hero__fact span { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.68); }
.hero__scroll {
  position: absolute; left: var(--gut); bottom: 2.2rem;
  writing-mode: vertical-rl; font-size: .58rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.45); display: flex; align-items: center; gap: .8rem;
}
.hero__scroll::after { content: ""; width: 1px; height: 40px; background: linear-gradient(180deg, var(--gold-lite), transparent); }
@media (max-width: 1100px) { .hero__scroll { display: none; } }
@media (max-width: 720px) {
  .hero__inner { padding-block: clamp(4rem, 10vh, 6rem) clamp(2.5rem, 6vh, 4rem); }
  .hero__crest { width: 54px; margin-bottom: 1.2rem; }
  .hero__actions { gap: .6rem; margin-top: 2rem; }
  .hero__actions .btn { flex: 1 1 0; min-width: 0; padding-inline: .75rem; font-size: .62rem; letter-spacing: .14em; white-space: nowrap; }
  .hero__facts { gap: 1rem 0; padding-top: 1.5rem; margin-top: 2.5rem; }
  .hero__fact { flex: 1 1 25%; min-width: 0; }
  .hero__fact b { font-size: 1.5rem; }
  .hero__fact span { font-size: .54rem; letter-spacing: .14em; }
}

/* Slideshow dots */
.hero__dots { position: absolute; right: var(--gut); bottom: 2.2rem; display: flex; flex-direction: column; gap: .55rem; z-index: 2; }
.hero__dots button { width: 7px; height: 7px; border: 1px solid rgba(255,255,255,.55); transform: rotate(45deg); transition: background .3s, transform .3s; }
.hero__dots button[aria-current="true"] { background: var(--gold-lite); border-color: var(--gold-lite); transform: rotate(45deg) scale(1.25); }
@media (max-width: 900px) { .hero__dots { display: none; } }

/* ==========================================================================
   ABOUT / STATS
   ========================================================================== */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }
.about__media { position: relative; }
.about__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about__media::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid var(--gold); z-index: -1;
}
.about__media { isolation: isolate; }
.about h2 { font-size: var(--step-3); }
.about h2 em { font-style: italic; color: var(--gold-deep); }
.about__body { color: var(--stone); }
.about__body p + p { margin-top: 1.1em; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); margin-top: clamp(3rem, 6vw, 4.5rem); border: 1px solid var(--line); }
.stat { background: var(--cream-warm); padding: clamp(1.6rem, 3vw, 2.4rem) 1rem; text-align: center; }
.section--cream .stat { background: var(--cream); }
.stat b { display: block; font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 400; color: var(--gold-deep); line-height: 1; }
.stat span { display: block; margin-top: .5rem; font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--stone); }
.stats-note { text-align: center; margin-top: 1rem; font-size: .74rem; color: var(--clay); font-style: italic; }
@media (max-width: 620px) { .stats { grid-template-columns: 1fr; } }

/* ==========================================================================
   CONCEPT — editorial gallery
   ========================================================================== */
.concept-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(110px, 13vw, 180px);
}
.concept-grid a { position: relative; overflow: hidden; display: block; background: var(--teak); }
.concept-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s var(--ease); }
.concept-grid a:hover img { transform: scale(1.07); }
.concept-grid a::after {
  content: ""; position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.35);
  opacity: 0; transition: opacity .45s var(--ease);
}
.concept-grid a:hover::after { opacity: 1; }
.concept-grid a:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.concept-grid a:nth-child(2) { grid-column: span 3; grid-row: span 2; }
.concept-grid a:nth-child(3) { grid-column: span 2; grid-row: span 2; }
.concept-grid a:nth-child(4) { grid-column: span 2; grid-row: span 2; }
.concept-grid a:nth-child(5) { grid-column: span 2; grid-row: span 2; }
.concept-grid a:nth-child(6) { grid-column: span 6; grid-row: span 2; }
@media (max-width: 800px) {
  .concept-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .concept-grid a:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .concept-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}
.concept-note { max-width: 68ch; margin: clamp(2.5rem,5vw,3.5rem) auto 0; text-align: center; color: rgba(248,245,238,.72); }

/* ==========================================================================
   360 TOUR
   ========================================================================== */
.tour { position: relative; overflow: hidden; }
.tour__card {
  position: relative; display: block; overflow: hidden;
  border: 1px solid var(--line); background: var(--teak);
}
.tour__card img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; transition: transform 1.4s var(--ease), filter .8s var(--ease); filter: brightness(.72) saturate(.95); }
.tour__card:hover img { transform: scale(1.05); filter: brightness(.6); }
.tour__overlay {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center;
  text-align: center; color: #fff; gap: 1.4rem; padding: 1.5rem;
}
.tour__badge {
  width: clamp(70px, 9vw, 104px); height: clamp(70px, 9vw, 104px);
  border: 2px solid var(--gold-lite); border-radius: 50%;
  display: grid; place-items: center; font-family: var(--serif); font-size: clamp(1rem,1.6vw,1.35rem);
  letter-spacing: .04em; position: relative; z-index: 1;
  background: rgba(20,17,12,.48); box-shadow: 0 0 0 7px rgba(20,17,12,.18), 0 8px 24px rgba(0,0,0,.28);
  animation: tour-badge-breathe 2.4s var(--ease) infinite;
}
.tour__badge::after {
  content: ""; position: absolute; inset: -12px; border: 2px solid rgba(231,202,139,.58); border-radius: 50%;
  animation: pulse 2.2s var(--ease) infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .9; } 70% { transform: scale(1.22); opacity: 0; } 100% { opacity: 0; } }
@keyframes tour-badge-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.tour__overlay h3 { color: #fff; font-size: var(--step-2); letter-spacing: .02em; }
.tour__overlay p { font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.75); }
@media (max-width: 720px) {
  .tour__card img { aspect-ratio: 16 / 10; }
  .tour__overlay { gap: .9rem; padding: 1.25rem; }
  .tour__badge { width: 84px; height: 84px; font-size: 1.2rem; }
}

/* ==========================================================================
   ROOMS — rail
   ========================================================================== */
.rail-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.rail-nav { display: flex; gap: .5rem; flex: none; }
.rail-nav button {
  width: 46px; height: 46px; border: 1px solid var(--line); display: grid; place-items: center;
  color: var(--bark); transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.rail-nav button:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.rail-nav button:disabled { opacity: .3; pointer-events: none; }
.rail-nav svg { width: 14px; height: 14px; fill: currentColor; }

.rail {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(clamp(260px, 30vw, 340px), 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: .5rem;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }

.room {
  background: var(--paper); border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; overflow: hidden;
  transition: box-shadow .5s var(--ease), transform .5s var(--ease), border-color .5s var(--ease);
}
.room:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--line); }
.room__media { position: relative; overflow: hidden; }
.room__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1s var(--ease); }
.room:hover .room__media img { transform: scale(1.06); }
.room__pax {
  position: absolute; top: 0; right: 0; background: var(--teak); color: var(--gold-lite);
  padding: .5rem 1rem; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
}
.room__body { padding: 1.5rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.room__body h3 { font-size: 1.6rem; letter-spacing: .01em; }
.room__body h3 + .rule { margin: .9rem 0 1.1rem; justify-content: flex-start; }
.room__body h3 + .rule::before { display: none; }
.room__body h3 + .rule::after { width: 44px; background: linear-gradient(90deg, var(--gold), transparent); }
.room__list { font-size: .88rem; color: var(--bark); display: grid; gap: .45rem; margin-bottom: 1.4rem; line-height: 1.55; }
.room__list li { padding-left: 1.1rem; position: relative; }
.room__list li::before { content: ""; position: absolute; left: 0; top: .58em; width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); }
.room__more { font-size: .8rem; color: var(--stone); font-style: italic; padding-left: 1.1rem; line-height: 1.55; }
.room__body .btn { margin-top: auto; align-self: flex-start; }

.rail-progress { height: 1px; background: var(--line-soft); margin-top: 2rem; position: relative; overflow: hidden; }
.rail-progress i { position: absolute; inset: 0 auto 0 0; background: var(--gold); width: 20%; transition: transform .2s linear; transform-origin: left; }

/* Download strip */
.download {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  border: 1px solid var(--line); padding: clamp(2rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  background: var(--cream);
}
.download h3 { font-size: var(--step-2); }
.download p { margin: .5rem 0 0; color: var(--stone); font-size: .9rem; }

/* ==========================================================================
   FACILITIES
   ========================================================================== */
.video-frame { position: relative; border: 1px solid rgba(255,255,255,.14); background: #000; }
.video-frame iframe, .video-frame__embed, .video-facade img { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }
.video-facade { width: 100%; padding: 0; overflow: hidden; color: #fff; cursor: pointer; }
.video-facade img { object-fit: cover; filter: brightness(.58) saturate(.85); transition: transform .8s var(--ease), filter .5s var(--ease); }
.video-facade::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,12,.08), rgba(20,17,12,.58)); pointer-events: none; }
.video-facade:hover img, .video-facade:focus-visible img { transform: scale(1.04); filter: brightness(.48) saturate(.9); }
.video-facade__play { position: absolute; inset: 50% auto auto 50%; z-index: 1; width: 72px; height: 72px; display: grid; place-items: center; border: 1px solid var(--gold-lite); border-radius: 50%; background: rgba(20,17,12,.48); transform: translate(-50%, -50%); box-shadow: 0 0 0 8px rgba(20,17,12,.18); transition: background .35s var(--ease), transform .35s var(--ease); }
.video-facade__play i { display: block; width: 0; height: 0; margin-left: 4px; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 13px solid var(--gold-lite); }
.video-facade:hover .video-facade__play, .video-facade:focus-visible .video-facade__play { background: var(--gold); transform: translate(-50%, -50%) scale(1.08); }
.video-facade__label { position: absolute; left: 1.5rem; bottom: 1.25rem; z-index: 1; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.86); }

.fac-grid {
  display: grid; gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  margin-top: clamp(3rem, 6vw, 4.5rem);
}
.fac {
  position: relative; text-align: left; overflow: hidden;
  background: var(--teak-soft); border: 1px solid rgba(255,255,255,.09);
  display: block; width: 100%; aspect-ratio: 4 / 3.4;
}
.fac img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s var(--ease); filter: brightness(.62) saturate(.9); }
.fac:hover img { transform: scale(1.08); filter: brightness(.48); }
.fac__cap { position: absolute; inset: auto 0 0 0; padding: 1.4rem; color: #fff; z-index: 1; }
.fac__cap h4 { color: #fff; font-size: 1.22rem; line-height: 1.25; }
.fac__cap em {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: .7rem;
  font-style: normal; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-lite); opacity: 0; transform: translateY(6px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.fac:hover .fac__cap em, .fac:focus-visible .fac__cap em { opacity: 1; transform: none; }
.fac::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(20,17,12,.86) 100%);
}
.fac::after {
  content: ""; position: absolute; inset: 12px; border: 1px solid rgba(216,183,112,.45); z-index: 1;
  opacity: 0; transition: opacity .45s var(--ease);
}
.fac:hover::after { opacity: 1; }

.fac-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
@media (max-width: 720px) {
  .fac-cta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; }
  .fac-cta .btn { width: 100%; min-width: 0; padding-inline: .65rem; font-size: .62rem; letter-spacing: .14em; white-space: nowrap; }
}

/* Modal — editorial split panel */
.modal {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  padding: clamp(0px, 3vw, 2.5rem); background: rgba(20,17,12,.9);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
  backdrop-filter: blur(8px);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__panel {
  background: var(--cream-warm); width: min(100%, 1080px);
  height: min(92vh, 760px); max-height: 92vh;
  position: relative; display: grid; grid-template-columns: 44% 1fr;
  transform: translateY(24px) scale(.985); transition: transform .55s var(--ease);
  box-shadow: 0 40px 120px -40px rgba(0,0,0,.9); overflow: hidden;
}
.modal.is-open .modal__panel { transform: none; }
@media (max-width: 860px) { .modal__panel { grid-template-columns: 1fr; max-height: 100vh; height: 100%; } }

/* left: hero image + thumbs */
.modal__visual { position: relative; background: var(--teak); overflow: hidden; display: flex; flex-direction: column; }
.mv-frame { position: relative; flex: 1; min-height: 240px; }
.modal__visual .mv-main { position: absolute; inset: 0; }
.modal__visual .mv-main > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; background: var(--ink);
  opacity: 0; transition: opacity .5s var(--ease);
}
.modal__visual .mv-main > img.is-active { opacity: 1; }
.mv-count {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  font-size: .62rem; letter-spacing: .2em; color: #fff;
  background: rgba(20,17,12,.6); padding: .35rem .7rem; backdrop-filter: blur(4px);
}
.mv-arrows { position: absolute; right: 1rem; bottom: 1rem; z-index: 2; display: flex; gap: .4rem; }
.mv-arrows button {
  width: 34px; height: 34px; display: grid; place-items: center;
  background: rgba(20,17,12,.6); color: #fff; backdrop-filter: blur(4px);
  transition: background .3s var(--ease);
}
.mv-arrows button:hover { background: var(--gold); }
.mv-arrows svg { width: 11px; height: 11px; fill: currentColor; }
.mv-thumbs { display: flex; gap: 4px; padding: 4px; background: var(--teak); overflow-x: auto; scrollbar-width: none; flex: none; }
.mv-thumbs::-webkit-scrollbar { display: none; }
.mv-thumbs button { width: 58px; height: 44px; flex: none; opacity: .45; transition: opacity .3s var(--ease); position: relative; }
.mv-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.mv-thumbs button[aria-current="true"] { opacity: 1; box-shadow: inset 0 0 0 2px var(--gold); }
.mv-thumbs button:hover { opacity: .85; }
@media (max-width: 860px) { .mv-frame { min-height: 40vh; } }

/* right: scrolling detail */
.modal__body {
  padding: clamp(1.75rem, 3.5vw, 2.75rem); overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: var(--clay) transparent;
}
.modal__body::-webkit-scrollbar { width: 5px; }
.modal__body::-webkit-scrollbar-thumb { background: var(--clay); }
.modal__eyebrow { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .7rem; }
.modal__body h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); padding-right: 2.5rem; line-height: 1.1; }
.modal__body > p:first-of-type { margin-top: 1rem; color: var(--bark); font-size: .96rem; line-height: 1.7; }
.modal__body h5 {
  font-family: var(--sans); font-size: .64rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-deep); margin: 1.9rem 0 .8rem; padding-bottom: .5rem; border-bottom: 1px solid var(--line-soft);
}
.modal__body ul { columns: 2; column-gap: 1.75rem; font-size: .92rem; color: var(--bark); line-height: 1.65; }
.modal__body ul li { break-inside: avoid; padding-left: 1.15rem; position: relative; margin-bottom: .42rem; }
.modal__body ul li::before { content: ""; position: absolute; left: 0; top: .6em; width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); }
.modal__note { margin-top: 1.6rem; padding: 1rem 1.2rem; background: var(--cream); border-left: 2px solid var(--gold); font-size: .9rem; color: var(--bark); line-height: 1.65; }
@media (max-width: 620px) { .modal__body ul { columns: 1; } }

.modal__close {
  position: absolute; top: 0; right: 0; z-index: 5;
  width: 52px; height: 52px; display: grid; place-items: center;
  background: var(--cream-warm); color: var(--bark); font-size: 1.2rem; line-height: 1;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.modal__close:hover { background: var(--gold); color: #fff; }

/* ==========================================================================
   LIGHTBOX (concept gallery)
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(14,12,9,.96);
  display: grid; grid-template-rows: auto 1fr auto; gap: 1rem;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lb-bar { display: flex; align-items: center; justify-content: space-between; padding: 1rem clamp(1rem, 3vw, 2rem); color: rgba(255,255,255,.7); }
.lb-bar span { font-size: .68rem; letter-spacing: .22em; }
.lb-close { width: 44px; height: 44px; display: grid; place-items: center; color: #fff; font-size: 1.3rem; transition: color .3s var(--ease); }
.lb-close:hover { color: var(--gold-lite); }
.lb-stage { position: relative; min-height: 0; }
.lb-track { position: absolute; inset: 0; }
.lb-track img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: contain;
  padding: 0 clamp(1rem, 8vw, 6rem);
  opacity: 0; transform: scale(.985); transition: opacity .45s var(--ease), transform .45s var(--ease);
  pointer-events: none;
}
.lb-track img.is-active { opacity: 1; transform: none; pointer-events: auto; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  background: rgba(14,12,9,.55); backdrop-filter: blur(4px);
  width: 52px; height: 52px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.28); color: #fff;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.lb-nav:hover { background: var(--gold); border-color: var(--gold); }
.lb-nav svg { width: 14px; height: 14px; fill: currentColor; }
.lb-prev { left: clamp(.5rem, 2vw, 1.5rem); }
.lb-next { right: clamp(.5rem, 2vw, 1.5rem); }
.lb-thumbs { display: flex; gap: 6px; justify-content: center; padding: 0 1rem 1.25rem; overflow-x: auto; scrollbar-width: none; }
.lb-thumbs::-webkit-scrollbar { display: none; }
.lb-thumbs button { width: 74px; height: 52px; flex: none; opacity: .4; transition: opacity .3s var(--ease); }
.lb-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.lb-thumbs button[aria-current="true"] { opacity: 1; box-shadow: inset 0 0 0 2px var(--gold); }
@media (max-width: 620px) { .lb-nav { width: 42px; height: 42px; } .lb-thumbs button { width: 54px; height: 40px; } }

/* ==========================================================================
   TOUR MODAL (Kuula, fullscreen)
   ========================================================================== */
.tourbox {
  position: fixed; inset: 0; z-index: 300; background: #0E0C09;
  display: grid; grid-template-rows: auto 1fr;
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
}
.tourbox.is-open { opacity: 1; visibility: visible; }
.tourbox__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .85rem clamp(1rem, 3vw, 2rem); border-bottom: 1px solid rgba(255,255,255,.1);
}
.tourbox__bar img { width: 96px; filter: brightness(0) invert(1); opacity: .9; }
.tourbox__bar span { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.tourbox__close {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .6rem 1.1rem; border: 1px solid rgba(255,255,255,.3); color: #fff;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.tourbox__close:hover { background: var(--gold); border-color: var(--gold); }
.tourbox iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 620px) { .tourbox__bar span { display: none; } }

/* ==========================================================================
   EMBEDS (calendar / reviews) — preserved plugin regions
   ========================================================================== */
.embed-frame {
  background: var(--paper); border: 1px solid var(--line);
  padding: clamp(1rem, 2.5vw, 1.75rem);
  box-shadow: var(--shadow-sm);
}
.embed-frame iframe { width: 100%; border: 0; display: block; }
.embed-frame--calendar iframe { min-height: 620px; }
.checkinout {
  display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 4vw, 3rem);
  flex-wrap: wrap; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line-soft);
}
.checkinout div { text-align: center; }
.checkinout span { display: block; font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--clay); }
.checkinout b { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--teak); }

.legend { display: flex; gap: clamp(1rem, 3vw, 2.5rem); justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; font-size: .85rem; color: var(--bark); }
.legend li { display: flex; align-items: center; gap: .55rem; }
.legend i { width: 12px; height: 12px; border: 1px solid var(--line); flex: none; }
.legend i.red { background: #c0392b; border-color: #c0392b; }
.legend i.green { background: #2e8b57; border-color: #2e8b57; }
.legend i.white { background: #fff; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; text-align: left; font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.32rem);
  color: var(--teak); transition: color .35s var(--ease);
}
.faq__q:hover { color: var(--gold-deep); }
.faq__q i {
  flex: none; width: 26px; height: 26px; border: 1px solid var(--line); position: relative; margin-top: .2rem;
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.faq__q i::before, .faq__q i::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--gold-deep);
  transform: translate(-50%, -50%); transition: opacity .3s var(--ease), background .3s var(--ease);
}
.faq__q i::before { width: 11px; height: 1px; }
.faq__q i::after  { width: 1px; height: 11px; }
.faq__item.is-open .faq__q i { background: var(--gold); border-color: var(--gold); transform: rotate(180deg); }
.faq__item.is-open .faq__q i::before { background: #fff; }
.faq__item.is-open .faq__q i::after { opacity: 0; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { color: var(--bark); font-size: .96rem; max-width: 76ch; line-height: 1.75; }
.faq__a > div > :first-child { padding-top: .2rem; }
.faq__a > div > :last-child { padding-bottom: 1.9rem; }
.faq__a strong { color: var(--bark); font-weight: 500; }

/* ==========================================================================
   REVIEWS (plugin embed region)
   ========================================================================== */
.reviews-embed { }
.rv-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  background: var(--teak); color: #fff; padding: 1.25rem clamp(1.25rem, 3vw, 2rem);
}
.rv-head__score { display: flex; align-items: center; gap: 1rem; }
.rv-head__score img { width: 34px; }
.rv-head__score b { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: var(--gold-lite); line-height: 1; }
.rv-head__score span { display: block; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.66); }
.rv-stars { color: var(--gold-lite); letter-spacing: .1em; font-size: .95rem; }
.rv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1px; background: transparent; border: 1px solid var(--line); border-top: 0; }
.rv-card { background: var(--paper); padding: 1.5rem; box-shadow: 0 0 0 1px var(--line); }
.rv-card__top { display: flex; align-items: center; gap: .85rem; margin-bottom: .9rem; }
.rv-card__top img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none;
  background: var(--gold-deep) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 12a5 5 0 100-10 5 5 0 000 10zm0 2c-5 0-9 2.5-9 5.5V22h18v-2.5c0-3-4-5.5-9-5.5z'/%3E%3C/svg%3E") center/56% no-repeat;
}
.rv-card__name { font-weight: 400; color: var(--teak); font-size: .92rem; }
.rv-card__date { font-size: .7rem; color: var(--clay); }
.rv-card p { font-size: .92rem; color: var(--bark); white-space: pre-line; line-height: 1.65; }
.rv-more { display: flex; justify-content: center; margin-top: 2rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--teak); color: rgba(248,245,238,.68); padding-block: clamp(4rem, 8vw, 6.5rem) 0; }
.footer__top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand img { width: 190px; margin-bottom: 1.75rem; }
.footer h2 { color: var(--cream); font-size: var(--step-2); margin-bottom: 1rem; }
.footer h2 em { font-style: italic; color: var(--gold-lite); }
.footer__brand p { font-size: .9rem; max-width: 52ch; }
.footer h5 { font-family: var(--sans); font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-lite); margin-bottom: .9rem; }
.footer__block + .footer__block { margin-top: 2rem; }
.footer__block p, .footer__block a { font-size: .9rem; }
.footer__block a:hover { color: var(--gold-lite); }
.footer__links { display: flex; flex-direction: column; gap: .6rem; }
.footer__links a { display: inline-flex; align-items: center; gap: .7rem; transition: color .3s var(--ease); }
.footer__links svg { width: 15px; height: 15px; fill: currentColor; opacity: .75; }
.footer__bottom {
  margin-top: clamp(3rem, 6vw, 4.5rem); border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.6rem; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; font-size: .74rem; color: rgba(248,245,238,.5);
}
.footer__nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer__nav a:hover { color: var(--gold-lite); }
@media (max-width: 720px) { .footer__nav { display: none; } }

/* Floating WhatsApp */
.wa {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 80;
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gold-deep); color: #fff; box-shadow: 0 14px 34px -12px rgba(0,0,0,.55);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.wa:hover { transform: translateY(-3px) scale(1.05); background: var(--gold); }
.wa svg { width: 24px; height: 24px; fill: currentColor; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }
 
/* ===== RATES PAGE ===== */ 
.rates-grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); grid-template-columns: 1fr; max-width: 1100px; margin-inline: auto; } 
.rates-grid a { display: block; overflow: hidden; border: 1px solid var(--line); background: var(--teak); } 
.rates-grid img { width: 100%; height: auto; object-fit: contain; transition: transform 1s var(--ease); } 
.rates-grid a:hover img { transform: scale(1.02); } 
.rates-grid--mobile { max-width: 520px; display: none; } 
@media (max-width: 720px) { .rates-grid--desktop { display: none; } .rates-grid--mobile { display: grid; } }
