/*
  ABS Stays v3 — mobile-first visual refinement
  Loaded after styles.css so existing inner-page structures remain compatible.
*/

.site-v3 {
  --ink: #181416;
  --ink-soft: #5c5255;
  --burgundy: #4a1020;
  --burgundy-deep: #270812;
  --burgundy-soft: #742f45;
  --ivory: #f8f4ee;
  --ivory-deep: #eee4d9;
  --paper: #fffdfa;
  --gold: #d6b46d;
  --gold-deep: #b99143;
  --gold-light: #f2dfb1;
  --line: rgba(50, 18, 27, .12);
  --line-light: rgba(255, 255, 255, .18);
  --shadow-sm: 0 12px 30px rgba(43, 11, 20, .08);
  --shadow-md: 0 24px 70px rgba(43, 11, 20, .14);
  --shadow-lg: 0 40px 100px rgba(26, 6, 12, .22);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(92vw, 1360px);
  --header-h: 76px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

.site-v3 *,
.site-v3 *::before,
.site-v3 *::after { box-sizing: border-box; }

.site-v3 h1,
.site-v3 h2,
.site-v3 h3,
.site-v3 h4 { text-wrap: balance; }

.site-v3 p { color: var(--ink-soft); }
.site-v3 main { padding-top: var(--header-h); }
.site-v3 .section { padding: clamp(88px, 8vw, 132px) 0; }
.site-v3 .section--compact { padding: clamp(66px, 6vw, 96px) 0; }
.site-v3 .container { width: var(--container); }
.site-v3 .section-copy { max-width: 610px; font-size: clamp(.98rem, 1.15vw, 1.08rem); line-height: 1.75; }
.site-v3 .section-title { letter-spacing: -.045em; }

/* Clean, restrained browser scrollbar */
.site-v3::-webkit-scrollbar { width: 9px; height: 9px; }
.site-v3::-webkit-scrollbar-track { background: var(--ivory); }
.site-v3::-webkit-scrollbar-thumb { border: 2px solid var(--ivory); border-radius: 999px; background: rgba(74, 16, 32, .46); }
.site-v3::-webkit-scrollbar-thumb:hover { background: var(--burgundy); }
.site-v3 { scrollbar-color: rgba(74, 16, 32, .46) var(--ivory); scrollbar-width: thin; }

/* Remove the earlier announcement strip and use one clean sticky header */
.site-v3 .availability-bar { display: none !important; }
.site-v3 .site-header,
.site-v3 .site-header.is-scrolled,
.site-v3 .site-header--solid {
  position: fixed;
  z-index: 9500;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  background: rgba(255, 253, 250, .91);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(43, 11, 20, .08);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  transition: height .35s var(--ease), background .35s ease, box-shadow .35s ease;
}
.site-v3 .site-header.is-scrolled {
  height: 68px;
  background: rgba(255, 253, 250, .97);
  box-shadow: 0 12px 38px rgba(43, 11, 20, .08);
}
.site-v3 .site-header__inner {
  display: grid;
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: 0;
}
.site-v3 .brand { display: inline-flex; align-items: center; gap: 12px; color: var(--burgundy); }
.site-v3 .brand__mark { width: 38px; height: 38px; flex: 0 0 38px; }
.site-v3 .brand__wordmark { display: block; }
.site-v3 .brand__name { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; letter-spacing: .16em; line-height: 1; white-space: nowrap; }
.site-v3 .brand__tag { display: none !important; }
.site-v3 .header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid var(--burgundy);
  border-radius: 999px;
  background: var(--burgundy);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), background .3s ease, box-shadow .3s ease;
}
.site-v3 .header-cta:hover { transform: translateY(-2px); background: var(--burgundy-deep); box-shadow: 0 13px 30px rgba(74,16,32,.19); }
.site-v3 .site-header.is-scrolled .header-cta,
.site-v3 .site-header--solid .header-cta { border-color: var(--burgundy); background: var(--burgundy); color: var(--white); }

/* One navigation system: native modal dialogs live directly under body. */
.site-v3 .site-nav { justify-self: center; }
.site-v3 .site-nav__list { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.site-v3 .site-nav__link { display: block; padding: 12px 0; color: var(--burgundy); font-size: .73rem; font-weight: 700; }
.site-v3 .site-nav__link[aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; }
.site-v3 .nav-toggle { display: none; width: 46px; height: 46px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--burgundy); }
.site-v3 .nav-toggle .icon-close { display: none; }
.navigation-dialog { box-sizing: border-box; width: 100%; max-width: none; height: 100vh; height: 100dvh; max-height: none; margin: 0; border: 0; padding: max(20px, env(safe-area-inset-top)) max(22px, env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) max(22px, env(safe-area-inset-left)); overflow-y: auto; overscroll-behavior: contain; background: var(--burgundy-deep); color: var(--ivory); }
.navigation-dialog[open] { display: flex; flex-direction: column; gap: 24px; }
.navigation-dialog__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--gold); letter-spacing: .12em; }
.navigation-dialog__top button { min-height: 44px; padding: 8px 12px; border: 1px solid var(--line-light); border-radius: 24px; color: #fff; letter-spacing: normal; }
.site-v3 .navigation-dialog .site-nav { width: min(100%, 600px); margin: auto; }
.site-v3 .navigation-dialog .site-nav__list { display: grid; gap: 0; text-align: center; }
.site-v3 .navigation-dialog .site-nav__link { padding: 10px; border-bottom: 1px solid var(--line-light); color: #fff; font-family: var(--serif); font-size: clamp(1.6rem, 4vh, 2.5rem); font-weight: 500; line-height: 1.25; }
.navigation-dialog > .v3-button { width: min(100%, 600px); margin-inline: auto; flex-shrink: 0; }
.booking-modal { box-sizing: border-box; width: 100%; max-width: none; height: 100vh; height: 100dvh; max-height: none; margin: 0; border: 0; }
.booking-modal:not([open]), .navigation-dialog:not([open]) { display: none; }
.booking-modal::backdrop, .navigation-dialog::backdrop { background: #270812; }
.site-v3 .booking-modal h2 { padding-right: 24px; line-height: 1.05; }
.site-v3 .booking-platform { grid-template-columns: minmax(0, 1fr) auto; gap: 14px; }
.site-v3 .home-booking-card__arrow { margin: 0; flex-shrink: 0; color: var(--burgundy-deep); }
.site-v3 .icon { flex-shrink: 0; }
.site-v3 p, .site-v3 a { overflow-wrap: break-word; }
.site-v3 .manifesto > * { min-width: 0; overflow-wrap: anywhere; }
.site-v3 a[href^="mailto:"] { overflow-wrap: anywhere; }
.site-v3 .home-location__visual { display: grid; min-height: 0; }
.site-v3 .home-location__visual img { height: auto; object-fit: contain; }
.site-v3 .home-location__label { position: static; padding: 24px; background: var(--burgundy-deep); }
.site-v3 .home-location__visual::after { content: none; }
.site-v3 .home-location__label h2 { font-size: clamp(2rem, 4vw, 3rem); }
.site-v3 .button, .site-v3 .v3-button { white-space: normal; height: auto; padding-block: 14px; line-height: 1.4; }
.site-v3 .home-booking-card:active, .site-v3 .booking-platform:active { background: var(--burgundy-soft); color: #fff; }
.site-v3 .preloader, .site-v3 .page-transition, .site-v3 .cursor-dot, .site-v3 .cursor-ring { display: none; }
@media (max-width: 980px) {
  .site-v3.navigation-ready .nav-toggle { display: grid; }
  .site-v3:not(.navigation-ready) .site-header { position: relative; height: auto; }
  .site-v3:not(.navigation-ready) .site-header__inner { display: block; }
  .site-v3:not(.navigation-ready) .site-nav__list { display: flex; flex-wrap: wrap; padding-block: 16px; }
}
@media (max-width: 700px) {
  .site-v3 .home-amenities__footer { display: grid; gap: 26px; }
  .site-v3 .home-amenities__footer p { font-size: 1rem; line-height: 1.7; }
  .site-v3 { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
  .site-v3 .mobile-booking-bar, .site-v3 .whatsapp-float { bottom: max(12px, env(safe-area-inset-bottom)); }
}

/* Consistent action system */
.site-v3 .button,
.site-v3 .v3-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .085em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .3s var(--ease), box-shadow .3s ease, background .3s ease, border-color .3s ease, color .3s ease;
}
.site-v3 .button:hover,
.site-v3 .v3-button:hover { transform: translateY(-3px); }
.site-v3 .v3-button--primary,
.site-v3 .button--primary { background: var(--burgundy); color: #fff; box-shadow: 0 16px 34px rgba(74,16,32,.16); }
.site-v3 .v3-button--primary:hover,
.site-v3 .button--primary:hover { background: var(--burgundy-deep); box-shadow: 0 20px 44px rgba(74,16,32,.24); }
.site-v3 .v3-button--light { background: #fff; color: var(--burgundy); box-shadow: var(--shadow-sm); }
.site-v3 .v3-button--line { border-color: rgba(74,16,32,.25); background: transparent; color: var(--burgundy); }
.site-v3 .v3-button--gold,
.site-v3 .button--gold { background: var(--gold); color: var(--burgundy-deep); box-shadow: 0 18px 42px rgba(214,180,109,.23); }
.site-v3 .text-link { gap: 10px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-family: var(--sans); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.site-v3 .icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.site-v3 .icon--sm { width: 17px; height: 17px; }

/* Homepage — cinematic, usable hero */
.home-v3-hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(214,180,109,.15), transparent 30%),
    var(--ivory);
}
.home-v3-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(74,16,32,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(74,16,32,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 52%);
  pointer-events: none;
}
.home-v3-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--container);
  min-height: calc(100svh - var(--header-h));
  margin-inline: auto;
  grid-template-columns: minmax(390px, .86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(46px, 6vw, 94px);
  padding: clamp(72px, 8vw, 120px) 0 clamp(62px, 6vw, 94px);
}
.home-v3-hero__copy { position: relative; z-index: 3; max-width: 660px; }
.home-v3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--burgundy);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.home-v3-eyebrow::before { width: 30px; height: 1px; background: currentColor; content: ""; }
.home-v3-hero h1 {
  margin: 25px 0 25px;
  color: var(--burgundy-deep);
  font-size: clamp(5rem, 7.8vw, 9.1rem);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: 1.05;
}
.home-v3-hero h1 span { display: block; }
.home-v3-hero h1 em { display: block; color: var(--burgundy); font-weight: 400; }
.home-v3-hero__lead { max-width: 570px; font-size: clamp(1.02rem, 1.25vw, 1.2rem); line-height: 1.75; }
.home-v3-hero__meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 25px; color: var(--burgundy); }
.home-v3-hero__meta span { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.home-v3-hero__meta span + span::before { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-deep); content: ""; }
.home-v3-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.home-v3-platforms { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; margin-top: 24px; color: #776c70; font-size: .68rem; font-weight: 700; letter-spacing: .05em; }
.home-v3-platforms strong { color: var(--burgundy); font-weight: 800; }
.home-v3-platforms span:not(:first-child) { position: relative; padding-left: 14px; }
.home-v3-platforms span:not(:first-child)::before { position: absolute; top: 50%; left: 0; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); content: ""; transform: translateY(-50%); }

.home-v3-hero__visual {
  position: relative;
  min-height: min(72vh, 760px);
  isolation: isolate;
}
.home-v3-hero__main {
  position: absolute;
  z-index: 2;
  top: 1%;
  right: 0;
  bottom: 4%;
  left: 13%;
  overflow: hidden;
  border-radius: 0 0 130px 0;
  background: #d7c8bb;
  box-shadow: var(--shadow-lg);
}
.home-v3-hero__main::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,6,13,.02), rgba(31,6,13,.18));
  content: "";
  pointer-events: none;
}
.home-v3-hero__main img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.035); }
.home-v3-hero__portrait {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 0;
  width: clamp(165px, 18vw, 260px);
  aspect-ratio: .74;
  overflow: hidden;
  border: 8px solid var(--ivory);
  border-radius: 100px 100px 20px 20px;
  background: #ddd;
  box-shadow: 0 25px 60px rgba(37,8,17,.2);
}
.home-v3-hero__portrait img { width: 100%; height: 100%; object-fit: cover; }
.home-v3-hero__detail {
  position: absolute;
  z-index: 5;
  top: 7%;
  right: -2.5%;
  display: grid;
  width: clamp(132px, 12vw, 190px);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 7px solid var(--ivory);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 20px 50px rgba(37,8,17,.18);
}
.home-v3-hero__detail img { width: 100%; height: 100%; object-fit: cover; }
.home-v3-hero__stamp {
  position: absolute;
  z-index: 6;
  right: 4%;
  bottom: 1%;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  background: rgba(39,8,18,.82);
  color: var(--gold-light);
  text-align: center;
  backdrop-filter: blur(13px);
}
.home-v3-hero__stamp strong { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1.05; }
.home-v3-hero__stamp span { display: block; margin-top: 8px; font-size: .55rem; font-weight: 800; letter-spacing: .13em; line-height: 1.35; text-transform: uppercase; }

/* Facts — simple, airy, no card clutter */
.home-facts { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.home-facts__grid { display: grid; width: var(--container); margin-inline: auto; grid-template-columns: repeat(5, 1fr); }
.home-fact { position: relative; display: grid; min-height: 145px; align-content: center; gap: 8px; padding: 28px clamp(18px, 2.4vw, 36px); }
.home-fact + .home-fact { border-left: 1px solid var(--line); }
.home-fact strong { color: var(--burgundy); font-family: var(--serif); font-size: clamp(2.2rem, 3vw, 3.2rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.05; }
.home-fact span { color: #766b6e; font-size: .65rem; font-weight: 800; letter-spacing: .1em; line-height: 1.45; text-transform: uppercase; }

/* Editorial intro */
.home-editorial { background: var(--ivory); }
.home-editorial__grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(360px, .76fr); gap: clamp(50px, 8vw, 128px); align-items: start; }
.home-editorial__title { max-width: 890px; color: var(--burgundy-deep); font-size: clamp(3.8rem, 6.4vw, 7.8rem); letter-spacing: -.06em; line-height: 1.05; }
.home-editorial__title em { color: var(--burgundy); font-weight: 400; }
.home-editorial__aside { display: grid; gap: 25px; padding-top: 10px; }
.home-editorial__aside p { font-size: clamp(1rem, 1.2vw, 1.13rem); line-height: 1.82; }
.home-editorial__promise { display: grid; grid-template-columns: 38px 1fr; gap: 18px; padding-top: 24px; border-top: 1px solid var(--line); }
.home-editorial__promise > span { color: var(--gold-deep); font-family: var(--serif); font-size: 1.7rem; font-style: italic; }
.home-editorial__promise strong { display: block; margin-bottom: 4px; color: var(--burgundy); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.home-editorial__promise p { font-size: .94rem; line-height: 1.7; }
.home-editorial__gallery { display: grid; margin-top: clamp(54px, 7vw, 104px); grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 260px 240px; gap: 14px; }
.home-editorial__gallery figure { position: relative; overflow: hidden; border-radius: 20px; background: #ddd; }
.home-editorial__gallery figure:first-child { grid-row: 1 / 3; }
.home-editorial__gallery figure:nth-child(2) { grid-column: 2 / 4; }
.home-editorial__gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.home-editorial__gallery figure:hover img { transform: scale(1.045); }
.home-editorial__gallery figcaption { position: absolute; right: 14px; bottom: 14px; padding: 8px 11px; border-radius: 999px; background: rgba(255,253,250,.88); color: var(--burgundy); font-size: .59rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; backdrop-filter: blur(10px); }

/* Video walkthrough */
.home-reel { position: relative; overflow: hidden; background: var(--burgundy-deep); color: var(--ivory); }
.home-reel::before { position: absolute; top: -240px; right: -120px; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(214,180,109,.18), transparent 66%); content: ""; }
.home-reel__grid { position: relative; display: grid; grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr); gap: clamp(56px, 8vw, 122px); align-items: center; }
.home-reel__phone { position: relative; width: min(100%, 430px); margin-inline: auto; }
.home-reel__video-wrap { position: relative; overflow: hidden; aspect-ratio: 9 / 16; border: 1px solid rgba(255,255,255,.19); border-radius: 38px; background: #12070a; box-shadow: 0 42px 110px rgba(0,0,0,.38); }
.home-reel__video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.home-reel__video-wrap::after { position: absolute; inset: 0; border: 12px solid rgba(255,255,255,.025); border-radius: inherit; content: ""; pointer-events: none; }
.home-reel__controls { position: absolute; z-index: 3; right: 18px; bottom: 18px; display: flex; gap: 8px; }
.home-reel__controls button { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(18,7,10,.62); color: #fff; backdrop-filter: blur(12px); }
.home-reel__controls button:hover { background: rgba(214,180,109,.9); color: var(--burgundy-deep); }
.home-reel__badge { position: absolute; z-index: 4; top: 8%; left: -42px; width: 112px; padding: 16px 14px; border-radius: 18px; background: var(--gold); color: var(--burgundy-deep); box-shadow: 0 18px 46px rgba(0,0,0,.25); text-align: center; transform: rotate(-7deg); }
.home-reel__badge strong { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 600; line-height: 1.05; }
.home-reel__badge span { display: block; margin-top: 8px; font-size: .55rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.home-reel__content { position: relative; z-index: 2; max-width: 690px; }
.home-reel__content .home-v3-eyebrow { color: var(--gold-light); }
.home-reel__content h2 { margin: 24px 0 27px; color: #fff; font-size: clamp(4rem, 6.4vw, 7.6rem); letter-spacing: -.055em; line-height: 1.05; }
.home-reel__content h2 em { color: var(--gold-light); font-weight: 400; }
.home-reel__content > p { max-width: 620px; color: rgba(248,244,238,.72); font-size: 1.04rem; line-height: 1.8; }
.home-reel__chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 29px; }
.home-reel__chips span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.82); font-size: .65rem; font-weight: 700; letter-spacing: .045em; }
.home-reel__still-grid { display: grid; margin-top: 38px; grid-template-columns: 1fr 1fr; gap: 12px; }
.home-reel__still-grid figure { overflow: hidden; height: 180px; border-radius: 18px; background: #3b1d25; }
.home-reel__still-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease); }
.home-reel__still-grid figure:hover img { transform: scale(1.055); }

/* Native horizontal spaces carousel — works with touch */
.home-spaces { overflow: hidden; background: var(--paper); }
.home-section-head { display: flex; align-items: end; justify-content: space-between; gap: 38px; }
.home-section-head__copy { max-width: 700px; }
.home-section-head h2 { margin-top: 17px; color: var(--burgundy-deep); font-size: clamp(3.8rem, 5.8vw, 6.9rem); letter-spacing: -.055em; line-height: 1.05; }
.home-section-head p { max-width: 520px; }
.home-carousel-controls { display: flex; gap: 9px; }
.home-carousel-controls button { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); color: var(--burgundy); transition: .3s var(--ease); }
.home-carousel-controls button:hover { border-color: var(--burgundy); background: var(--burgundy); color: #fff; transform: translateY(-2px); }
.home-carousel-controls button:first-child svg { transform: rotate(180deg); }
.home-spaces__viewport { position: relative; width: 100%; margin-top: 50px; }
.home-spaces__track {
  display: flex;
  width: 100%;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 max(4vw, calc((100vw - 1360px) / 2)) 26px;
  scroll-behavior: smooth;
  scroll-padding-left: max(4vw, calc((100vw - 1360px) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}
.home-spaces__track::-webkit-scrollbar { display: none; }
.home-space-card {
  flex: 0 0 min(420px, 32vw);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(43,11,20,.07);
  scroll-snap-align: start;
  transition: transform .4s var(--ease), box-shadow .4s ease;
}
.home-space-card:hover { transform: translateY(-7px); box-shadow: 0 26px 68px rgba(43,11,20,.13); }
.home-space-card__image { position: relative; height: 370px; overflow: hidden; background: #ddd; }
.home-space-card__image::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(30,7,14,.18)); content: ""; }
.home-space-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.home-space-card:hover .home-space-card__image img { transform: scale(1.045); }
.home-space-card__body { display: grid; min-height: 196px; align-content: start; gap: 10px; padding: 24px 25px 27px; }
.home-space-card__number { color: var(--gold-deep); font-size: .63rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.home-space-card h3 { color: var(--burgundy); font-size: 2.45rem; letter-spacing: -.04em; line-height: 1.05; }
.home-space-card p { font-size: .91rem; line-height: 1.68; }
.home-spaces__progress { position: relative; width: var(--container); height: 3px; margin: 12px auto 0; overflow: hidden; border-radius: 999px; background: rgba(74,16,32,.11); }
.home-spaces__progress span { display: block; width: 20%; height: 100%; border-radius: inherit; background: var(--burgundy); transform-origin: left; }
.home-spaces__hint { width: var(--container); margin: 12px auto 0; color: #8b7e82; font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* Amenities */
.home-amenities { background: var(--ivory); }
.home-amenities__intro { display: grid; grid-template-columns: 1.05fr .65fr; gap: 60px; align-items: end; }
.home-amenities__intro h2 { margin-top: 18px; color: var(--burgundy-deep); font-size: clamp(3.8rem, 5.6vw, 6.8rem); letter-spacing: -.055em; line-height: 1.05; }
.home-amenity-grid { display: grid; margin-top: 52px; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.home-amenity {
  display: grid;
  min-height: 0;
  align-content: start;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,253,250,.78);
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}
.home-amenity:hover { border-color: rgba(74,16,32,.32); transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.home-amenity__icon { display: grid; width: 47px; height: 47px; place-items: center; border-radius: 14px; background: rgba(214,180,109,.17); color: var(--burgundy); }
.home-amenity__icon .icon { width: 24px; height: 24px; }
.home-amenity h3 { margin-bottom: 8px; color: var(--burgundy); font-family: var(--sans); font-size: .83rem; font-weight: 800; letter-spacing: .075em; line-height: 1.35; text-transform: uppercase; }
.home-amenity p { font-size: .89rem; line-height: 1.65; }
.home-amenities__footer { display: flex; justify-content: space-between; gap: 28px; margin-top: 32px; align-items: center; }
.home-amenities__footer p { max-width: 680px; font-size: .86rem; }

/* Who it suits */
.home-suits { background: var(--burgundy); color: var(--ivory); }
.home-suits__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 8vw, 120px); align-items: start; }
.home-suits__copy .home-v3-eyebrow { color: var(--gold-light); }
.home-suits__copy h2 { margin: 22px 0 25px; color: #fff; font-size: clamp(4rem, 6vw, 7rem); letter-spacing: -.055em; line-height: 1.05; }
.home-suits__copy p { color: rgba(255,255,255,.67); font-size: 1rem; line-height: 1.8; }
.home-suits__list { display: grid; border-top: 1px solid rgba(255,255,255,.16); }
.home-suit { display: grid; grid-template-columns: 65px 1fr auto; gap: 18px; align-items: center; min-height: 108px; border-bottom: 1px solid rgba(255,255,255,.16); }
.home-suit > span { color: var(--gold-light); font-family: var(--serif); font-size: 1.5rem; font-style: italic; }
.home-suit h3 { margin-bottom: 5px; color: #fff; font-family: var(--sans); font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.home-suit p { color: rgba(255,255,255,.57); font-size: .86rem; line-height: 1.55; }
.home-suit .icon { color: var(--gold-light); }

/* Neighbourhood */
.home-location { background: var(--paper); }
.home-location__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; }
.home-location__visual { position: relative; min-height: 610px; overflow: hidden; border-radius: 30px; background: #ddd; }
.home-location__visual img { width: 100%; height: 100%; object-fit: cover; }
.home-location__visual::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(31,7,14,.72)); content: ""; }
.home-location__label { position: absolute; z-index: 2; right: 28px; bottom: 28px; left: 28px; color: #fff; }
.home-location__label span { color: var(--gold-light); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.home-location__label h2 { margin-top: 10px; color: #fff; font-size: clamp(3.4rem, 5vw, 6rem); letter-spacing: -.05em; line-height: 1.05; }
.home-location__content { display: grid; align-content: center; gap: 20px; padding: clamp(34px, 5vw, 72px); border: 1px solid var(--line); border-radius: 30px; background: var(--ivory); }
.home-location__content h3 { color: var(--burgundy); font-size: clamp(2.6rem, 4vw, 4.7rem); letter-spacing: -.045em; }
.home-location__list { display: grid; margin-top: 10px; border-top: 1px solid var(--line); }
.home-location__list li { display: grid; grid-template-columns: 34px 1fr; gap: 13px; align-items: start; padding: 17px 0; border-bottom: 1px solid var(--line); }
.home-location__list .icon { color: var(--burgundy); }
.home-location__list strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: .8rem; }
.home-location__list span { color: var(--ink-soft); font-size: .84rem; }
.home-location__actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 10px; }

/* Reviews */
.home-reviews { overflow: hidden; background: var(--ivory-deep); }
.home-reviews__intro { display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.home-reviews__intro h2 { margin-top: 18px; color: var(--burgundy-deep); font-size: clamp(3.8rem, 5.7vw, 6.8rem); letter-spacing: -.055em; line-height: 1.05; }
.home-reviews__note { max-width: 430px; padding: 16px 18px; border-left: 2px solid var(--gold-deep); color: #766a6e; font-size: .77rem; line-height: 1.65; }
.home-reviews__track { display: flex; gap: 15px; margin-top: 48px; overflow-x: auto; padding: 0 max(4vw, calc((100vw - 1360px) / 2)) 22px; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.home-reviews__track::-webkit-scrollbar { display: none; }
.home-review { flex: 0 0 min(420px, 34vw); display: grid; min-height: 340px; align-content: space-between; gap: 28px; padding: 31px; border: 1px solid rgba(74,16,32,.12); border-radius: 22px; background: var(--paper); scroll-snap-align: start; }
.home-review__stars { display: flex; gap: 3px; color: var(--gold-deep); }
.home-review__stars .icon { width: 16px; height: 16px; fill: currentColor; stroke: currentColor; }
.home-review blockquote { color: var(--burgundy-deep); font-family: var(--serif); font-size: clamp(1.65rem, 2.1vw, 2.15rem); line-height: 1.14; }
.home-review__author { color: var(--burgundy); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.home-review__author small { display: block; margin-top: 4px; color: #9a8d90; font-size: .58rem; letter-spacing: .06em; }

/* Booking platform section */
.home-booking { position: relative; overflow: hidden; background: var(--burgundy-deep); color: #fff; }
.home-booking::before { position: absolute; inset: 0; background: radial-gradient(circle at 20% 10%, rgba(214,180,109,.2), transparent 34%), linear-gradient(120deg, rgba(255,255,255,.02), transparent 58%); content: ""; }
.home-booking__grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(46px, 8vw, 112px); align-items: center; }
.home-booking__copy .home-v3-eyebrow { color: var(--gold-light); }
.home-booking__copy h2 { margin: 22px 0 24px; color: #fff; font-size: clamp(4.2rem, 6.5vw, 7.6rem); letter-spacing: -.06em; line-height: 1.05; }
.home-booking__copy p { color: rgba(255,255,255,.68); line-height: 1.8; }
.home-booking__platforms { display: grid; gap: 12px; }
.home-booking-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 20px; min-height: 112px; padding: 23px 24px; border: 1px solid rgba(255,255,255,.15); border-radius: 20px; background: rgba(255,255,255,.07); color: #fff; backdrop-filter: blur(15px); transition: transform .35s var(--ease), background .35s ease, border-color .35s ease; }
.home-booking-card:hover { border-color: rgba(214,180,109,.7); background: rgba(255,255,255,.11); transform: translateX(7px); }
.home-booking-card strong { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1; }
.home-booking-card > div > span { display: block; margin-top: 7px; color: rgba(255,255,255,.75); font-size: .875rem; }
.home-booking-card__arrow { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--gold); color: var(--burgundy-deep); }
.home-booking__contact { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 25px; color: rgba(255,255,255,.72); font-size: .78rem; }
.home-booking__contact a { border-bottom: 1px solid rgba(255,255,255,.3); }

/* Global footer refresh */
.site-v3 .site-footer { padding: clamp(70px, 8vw, 110px) 0 30px; background: #1d070e; color: #fff; }
.site-v3 .footer-top { display: grid; grid-template-columns: 1.15fr .55fr .78fr; gap: clamp(42px, 6vw, 92px); }
.site-v3 .footer-brand img { width: min(100%, 330px); height: auto; }
.site-v3 .footer-brand p { max-width: 520px; margin-top: 22px; color: rgba(255,255,255,.58); font-size: .88rem; line-height: 1.75; }
.site-v3 .footer-col h3 { margin-bottom: 20px; color: var(--gold-light); font-family: var(--sans); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.site-v3 .footer-links { display: grid; gap: 13px; }
.site-v3 .footer-links a { display: inline-flex; align-items: center; gap: 9px; color: rgba(255,255,255,.68); font-size: .82rem; line-height: 1.45; transition: color .25s ease, transform .25s ease; }
.site-v3 .footer-links a:hover { color: #fff; transform: translateX(3px); }
.site-v3 .footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 58px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); }
.site-v3 .footer-bottom p,
.site-v3 .footer-bottom a { color: rgba(255,255,255,.43); font-size: .68rem; }
.site-v3 .footer-bottom__links { display: flex; flex-wrap: wrap; gap: 19px; }

/* Floating WhatsApp + mobile booking action */
.site-v3 .whatsapp-float {
  position: fixed;
  z-index: 9100;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #1fa855;
  color: #fff;
  box-shadow: 0 18px 38px rgba(21,112,57,.28);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.site-v3 .whatsapp-float:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 24px 48px rgba(21,112,57,.34); }
.site-v3 .whatsapp-float .icon { width: 27px; height: 27px; }
.site-v3 .mobile-booking-bar { display: none; }

/* Booking chooser */
.site-v3.booking-open { overflow: hidden; }
.booking-modal {
  position: fixed;
  z-index: 12000;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
  background: rgba(18,4,9,.72);
  opacity: 0;
  backdrop-filter: blur(12px);
  transition: opacity .28s ease, visibility .28s ease;
}
.booking-modal[open] { visibility: visible; opacity: 1; }
.booking-modal__panel {
  position: relative;
  width: min(100%, 640px);
  max-height: 100%;
  overflow-y: auto;
  padding: clamp(29px, 5vw, 48px);
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 50px 140px rgba(0,0,0,.38);
  color: var(--ink);
  transform: translateY(30px) scale(.98);
  transition: transform .38s var(--ease);
}
.booking-modal[open] .booking-modal__panel { transform: none; }
.booking-modal__close { position: absolute; top: 17px; right: 17px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--burgundy); }
.booking-modal__kicker { color: var(--gold-deep); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.booking-modal h2 { max-width: 470px; margin: 15px 0 12px; color: var(--burgundy); font-size: clamp(3.2rem, 6vw, 5.1rem); letter-spacing: -.05em; line-height: 1.05; }
.booking-modal__lead { max-width: 510px; font-size: .88rem; line-height: 1.7; }
.booking-modal__list { display: grid; gap: 10px; margin-top: 28px; }
.booking-platform { display: grid; grid-template-columns: 1fr auto; align-items: center; min-height: 78px; padding: 17px 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease; }
.booking-platform:hover { border-color: rgba(74,16,32,.34); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.booking-platform strong { color: var(--burgundy); font-family: var(--serif); font-size: 1.6rem; font-weight: 600; }
.booking-platform small { display: block; margin-top: 3px; color: #716468; font-size: .8rem; }
.booking-platform__icon { display: grid; width: 39px; height: 39px; place-items: center; border-radius: 50%; background: var(--ivory); color: var(--burgundy); }
.booking-modal__foot { margin-top: 19px; color: #94878b; font-size: .64rem; line-height: 1.55; }

/* Inner-page refinements */
.site-v3 .inner-hero { min-height: min(74svh, 790px); }
.site-v3 .inner-hero__content { padding-top: 70px; }
.site-v3 .inner-hero__content h1 { letter-spacing: -.06em; }
.site-v3 .room-row,
.site-v3 .about-preview,
.site-v3 .contact-grid { gap: clamp(38px, 7vw, 96px); }
.site-v3 .amenity-card { min-height: 0; border-radius: 18px; background: rgba(255,255,255,.72); }
.site-v3 .amenity-card h3 { overflow-wrap: anywhere; font-family: var(--sans); font-size: .78rem; line-height: 1.4; letter-spacing: .07em; }
.site-v3 .amenity-card p { overflow-wrap: anywhere; }
.site-v3 .gallery-grid { gap: 12px; }
.site-v3 .faq-question { min-height: 84px; }
.site-v3 .final-cta { min-height: 640px; }
.site-v3 .final-cta__content { max-width: 850px; }
.site-v3 .final-cta__content .button-group { flex-wrap: wrap; }

@media (max-width: 1180px) {
  .site-v3 .header-cta { padding-inline: 16px; font-size: .65rem; }
  .home-v3-hero__inner { grid-template-columns: minmax(330px, .82fr) minmax(480px, 1.18fr); gap: 42px; }
  .home-v3-hero__main { left: 8%; }
  .home-amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .home-space-card { flex-basis: 390px; }
  .home-review { flex-basis: 390px; }
}

@media (max-width: 980px) {
  .site-v3 { --header-h: 70px; }
  .site-v3 main { padding-top: var(--header-h); }
  .site-v3 .site-header,
  .site-v3 .site-header.is-scrolled { height: var(--header-h); }
  .site-v3 .site-header__inner { grid-template-columns: 1fr auto; gap: 16px; }
  .site-v3 .header-cta { display: none; }

  .home-v3-hero__inner { min-height: auto; grid-template-columns: 1fr; padding-top: 64px; }
  .home-v3-hero__copy { max-width: 760px; }
  .home-v3-hero h1 { font-size: clamp(5rem, 12vw, 8rem); }
  .home-v3-hero__visual { min-height: 680px; }
  .home-v3-hero__main { left: 12%; }
  .home-v3-hero__portrait { left: 2%; }

  .home-facts__grid { grid-template-columns: repeat(3, 1fr); }
  .home-fact:nth-child(4) { border-left: 0; }
  .home-fact:nth-child(n+4) { border-top: 1px solid var(--line); }

  .home-editorial__grid,
  .home-reel__grid,
  .home-suits__grid,
  .home-booking__grid { grid-template-columns: 1fr; }
  .home-editorial__aside { max-width: 720px; }
  .home-reel__phone { width: min(72vw, 410px); }
  .home-reel__grid { gap: 74px; }
  .home-reel__content { max-width: 800px; }
  .home-amenities__intro { grid-template-columns: 1fr; gap: 26px; }
  .home-location__grid { grid-template-columns: 1fr; }
  .home-location__visual { min-height: 560px; }
  .home-booking__platforms { max-width: 760px; }

  .site-v3 .footer-top { grid-template-columns: 1fr 1fr; }
  .site-v3 .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .site-v3 { --container: 90vw; --header-h: 68px; font-size: 15px; }
  .site-v3 .section { padding: 78px 0; }
  .site-v3 .section--compact { padding: 62px 0; }
  .site-v3 .brand__mark { width: 36px; height: 36px; flex-basis: 36px; }
  .site-v3 .brand__name { font-size: 1.04rem; letter-spacing: .135em; }

  .home-v3-hero { min-height: auto; }
  .home-v3-hero::before { background-size: 46px 46px; }
  .home-v3-hero__inner { min-height: auto; gap: 38px; padding: 49px 0 48px; }
  .home-v3-eyebrow { font-size: .61rem; }
  .home-v3-hero h1 { margin: 20px 0 21px; font-size: clamp(4.6rem, 20vw, 6.5rem); line-height: 1.05; }
  .home-v3-hero__lead { font-size: .98rem; line-height: 1.7; }
  .home-v3-hero__meta { gap: 8px 12px; margin-top: 20px; }
  .home-v3-hero__meta span { font-size: .6rem; }
  .home-v3-hero__actions { display: grid; grid-template-columns: 1fr; margin-top: 27px; }
  .home-v3-hero__actions .v3-button { width: 100%; }
  .home-v3-platforms { gap: 8px 12px; margin-top: 18px; font-size: .61rem; }
  .home-v3-hero__visual { min-height: 490px; margin-inline: -5vw; }
  .home-v3-hero__main { top: 0; right: 0; bottom: 0; left: 0; border-radius: 0 0 72px 0; box-shadow: none; }
  .home-v3-hero__main img { object-position: 47% center; }
  .home-v3-hero__portrait { bottom: -22px; left: 5vw; width: 135px; border-width: 5px; border-radius: 72px 72px 16px 16px; }
  .home-v3-hero__detail { top: -20px; right: 5vw; width: 104px; border-width: 5px; }
  .home-v3-hero__stamp { right: 5vw; bottom: 14px; width: 100px; height: 100px; }
  .home-v3-hero__stamp strong { font-size: 1.65rem; }
  .home-v3-hero__stamp span { font-size: .48rem; }

  .home-facts__grid { grid-template-columns: repeat(2, 1fr); }
  .home-fact { min-height: 118px; padding: 22px 18px; }
  .home-fact:nth-child(3) { border-left: 0; }
  .home-fact:nth-child(n+3) { border-top: 1px solid var(--line); }
  .home-fact:nth-child(4) { border-left: 1px solid var(--line); }
  .home-fact:nth-child(5) { grid-column: 1 / -1; border-left: 0; text-align: center; }
  .home-fact strong { font-size: 2.4rem; }
  .home-fact span { font-size: .57rem; }

  .home-editorial__grid { gap: 40px; }
  .home-editorial__title { font-size: clamp(3.55rem, 15vw, 5.6rem); }
  .home-editorial__gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 330px 180px; gap: 9px; margin-top: 52px; }
  .home-editorial__gallery figure:first-child { grid-column: 1 / -1; grid-row: 1; }
  .home-editorial__gallery figure:nth-child(2) { grid-column: 1; }
  .home-editorial__gallery figure:nth-child(3) { grid-column: 2; }
  .home-editorial__gallery figcaption { right: 9px; bottom: 9px; font-size: .5rem; }

  .home-reel__grid { gap: 52px; }
  .home-reel__phone { width: min(82vw, 380px); }
  .home-reel__badge { left: -20px; width: 94px; }
  .home-reel__content h2 { font-size: clamp(3.7rem, 16vw, 5.6rem); }
  .home-reel__still-grid figure { height: 130px; }

  .home-section-head { display: grid; gap: 25px; }
  .home-section-head h2 { font-size: clamp(3.5rem, 14.5vw, 5.4rem); }
  .home-carousel-controls { justify-self: start; }
  .home-spaces__viewport { margin-top: 36px; }
  .home-spaces__track { gap: 12px; padding-right: 8vw; padding-bottom: 20px; padding-left: 5vw; scroll-padding-left: 5vw; }
  .home-space-card { flex-basis: 82vw; border-radius: 20px; }
  .home-space-card__image { height: 390px; }
  .home-space-card__body { min-height: 180px; padding: 22px; }
  .home-space-card h3 { font-size: 2.25rem; }
  .home-spaces__progress,
  .home-spaces__hint { width: 90vw; }
  .home-spaces__hint { font-size: .56rem; }

  .home-amenities__intro h2 { font-size: clamp(3.5rem, 14.5vw, 5.3rem); }
  .home-amenity-grid { grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 36px; }
  .home-amenity { min-height: 205px; gap: 20px; padding: 20px 17px; border-radius: 17px; }
  .home-amenity__icon { width: 42px; height: 42px; border-radius: 12px; }
  .home-amenity h3 { margin-bottom: 6px; font-size: .69rem; overflow-wrap: anywhere; }
  .home-amenity p { font-size: .79rem; line-height: 1.55; overflow-wrap: anywhere; }
  .home-amenities__footer { display: grid; }

  .home-suits__copy h2 { font-size: clamp(3.7rem, 15.5vw, 5.6rem); }
  .home-suit { grid-template-columns: 44px 1fr 20px; gap: 11px; min-height: 100px; }
  .home-suit > span { font-size: 1.25rem; }
  .home-suit h3 { font-size: .68rem; }
  .home-suit p { font-size: .78rem; }

  .home-location__visual { min-height: 480px; border-radius: 22px; }
  .home-location__label { right: 20px; bottom: 20px; left: 20px; }
  .home-location__label h2 { font-size: 3.8rem; }
  .home-location__content { padding: 28px 22px; border-radius: 22px; }
  .home-location__content h3 { font-size: 3rem; }
  .home-location__actions { display: grid; grid-template-columns: 1fr; }
  .home-location__actions .v3-button { width: 100%; }

  .home-reviews__intro { display: grid; }
  .home-reviews__intro h2 { font-size: clamp(3.5rem, 14.5vw, 5.3rem); }
  .home-reviews__track { gap: 11px; margin-top: 35px; padding-right: 8vw; padding-left: 5vw; }
  .home-review { flex-basis: 84vw; min-height: 315px; padding: 25px; }
  .home-review blockquote { font-size: 1.75rem; }

  .home-booking__copy h2 { font-size: clamp(3.8rem, 16vw, 5.8rem); }
  .home-booking-card { min-height: 95px; padding: 19px; }
  .home-booking-card strong { font-size: 1.75rem; }

  .site-v3 .footer-top { grid-template-columns: 1fr; gap: 42px; }
  .site-v3 .footer-brand { grid-column: auto; }
  .site-v3 .footer-bottom { align-items: flex-start; flex-direction: column; }

  .site-v3 .mobile-booking-bar {
    position: fixed;
    z-index: 9050;
    right: 74px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--burgundy-deep);
    box-shadow: 0 16px 40px rgba(74,16,32,.24);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .075em;
    text-transform: uppercase;
    transition: transform .3s var(--ease), opacity .3s ease;
  }
  .site-v3 .whatsapp-float { right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); width: 54px; height: 54px; }
  .site-v3 .site-footer { padding-bottom: 110px; }

  .booking-modal { align-items: end; padding: 0; }
  .booking-modal__panel { width: 100%; max-height: 88svh; overflow-y: auto; padding: 32px 20px max(28px, env(safe-area-inset-bottom)); border-radius: 27px 27px 0 0; transform: translateY(100%); }
  .booking-modal[open] .booking-modal__panel { transform: none; }
  .booking-modal h2 { padding-right: 42px; font-size: 3.45rem; }

  /* Fix crowded/overflowing legacy inner-page cards */
  .site-v3 .inner-hero { min-height: 72svh; }
  .site-v3 .inner-hero__content { padding: 90px 0 44px; }
  .site-v3 .inner-hero__content h1 { font-size: clamp(3.6rem, 17vw, 6rem); }
  .site-v3 .amenity-grid,
  .site-v3 .full-amenities { grid-template-columns: 1fr 1fr; gap: 9px; }
  .site-v3 .amenity-card { min-width: 0; min-height: 200px; padding: 18px 16px; overflow: hidden; }
  .site-v3 .amenity-card h3 { max-width: 100%; font-size: .67rem; letter-spacing: .055em; overflow-wrap: anywhere; word-break: normal; }
  .site-v3 .amenity-card p { max-width: 100%; font-size: .78rem; line-height: 1.5; overflow-wrap: anywhere; }
  .site-v3 .amenity-card__icon { width: 40px; height: 40px; }
  .site-v3 .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .site-v3 .gallery-item { min-height: 230px; }
  .site-v3 .room-row { gap: 28px; }
  .site-v3 .room-row__content { padding: 0; }
  .site-v3 .final-cta { min-height: 560px; }
  .site-v3 .final-cta__content h2 { font-size: clamp(3.7rem, 16vw, 5.8rem); }
  .site-v3 .final-cta__content .button-group { display: grid; grid-template-columns: 1fr; width: 100%; }
  .site-v3 .final-cta__content .button { width: 100%; }
}

@media (max-width: 420px) {
  .home-amenity-grid { grid-template-columns: 1fr; }
  .home-amenity { min-height: 170px; }
  .site-v3 .amenity-grid,
  .site-v3 .full-amenities { grid-template-columns: 1fr; }
  .site-v3 .gallery-grid { grid-template-columns: 1fr; }
  .home-v3-hero__visual { min-height: 450px; }
  .home-space-card__image { height: 350px; }
}

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

/* v3.1 finishing layer: one visual language across every page */
.site-v3 {  }
.site-v3 button,
.site-v3 a { -webkit-tap-highlight-color: transparent; }
.site-v3 button { font-family: var(--sans); }
.site-v3 .button--burgundy { background: var(--burgundy); color: #fff; box-shadow: 0 16px 34px rgba(74,16,32,.16); }
.site-v3 .button--burgundy:hover { background: var(--burgundy-deep); box-shadow: 0 20px 44px rgba(74,16,32,.24); }
.site-v3 .button--outline-light { border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.04); color: #fff; backdrop-filter: blur(10px); }
.site-v3 .button--outline-light:hover { border-color: #fff; background: #fff; color: var(--burgundy); }
.site-v3 .button--outline { border-color: rgba(74,16,32,.24); background: transparent; color: var(--burgundy); }
.site-v3 .footer-book-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,.78);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s var(--ease);
}
.site-v3 .footer-book-button:hover { border-color: var(--gold); background: var(--gold); color: var(--burgundy-deep); transform: translateY(-2px); }
.site-v3 .home-carousel-controls button:disabled { cursor: default; opacity: .32; transform: none; }
.site-v3 .home-carousel-controls button:disabled:hover { border-color: var(--line); background: var(--paper); color: var(--burgundy); }
.site-v3 .home-spaces__track,
.site-v3 .home-reviews__track { cursor: grab; }
.site-v3 .home-spaces__track:active,
.site-v3 .home-reviews__track:active { cursor: grabbing; }
.site-v3 .home-space-card,
.site-v3 .home-review,
.site-v3 .home-amenity,
.site-v3 .contact-card,
.site-v3 .amenity-card { box-shadow: 0 14px 42px rgba(43,11,20,.055); }
.site-v3 .contact-card,
.site-v3 .amenity-card,
.site-v3 .faq-item,
.site-v3 .policy-card { border-color: var(--line); border-radius: var(--radius); }
.site-v3 .contact-card__link { overflow-wrap: anywhere; }
.site-v3 .legal-content { max-width: 940px; }
.site-v3 .legal-content section { padding-block: clamp(26px, 4vw, 44px); }
.site-v3 .legal-content p { line-height: 1.78; }
.site-v3 .breadcrumbs { letter-spacing: .07em; }
.site-v3 .home-reviews__track { touch-action: pan-x pan-y; overscroll-behavior-x: contain; }
.site-v3 .home-spaces__track > *,
.site-v3 .home-reviews__track > * { -webkit-user-drag: none; }
.site-v3 .home-spaces__track img,
.site-v3 .home-reviews__track img { pointer-events: none; }
.site-v3 .inner-hero__media::after { background: linear-gradient(180deg, rgba(27,5,12,.14), rgba(27,5,12,.72)); }
.site-v3 .section-head { gap: clamp(24px, 5vw, 72px); }
.site-v3 .section-head > * { min-width: 0; }
.site-v3 .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.site-v3 .contact-card { min-width: 0; padding: clamp(24px, 3vw, 38px); }
.site-v3 .contact-card p { max-width: 45ch; }
.site-v3 .amenity-grid,
.site-v3 .full-amenities { gap: 14px; }
.site-v3 .amenity-card { display: grid; min-width: 0; align-content: start; gap: 18px; padding: clamp(24px, 3vw, 34px); }
.site-v3 .amenity-card h3 { margin: 0; max-width: 100%; overflow-wrap: normal; word-break: normal; hyphens: auto; }
.site-v3 .amenity-card p { margin: 0; max-width: 100%; }
.site-v3 .gallery-item { overflow: hidden; border-radius: var(--radius); }
.site-v3 .gallery-item img { transition: transform .85s var(--ease), filter .5s ease; }
.site-v3 .gallery-item:hover img { transform: scale(1.045); }

@media (max-width: 700px) {
  .site-v3 { --container: 89vw; }
  .site-v3 .site-header__inner { width: 89vw; }
  .site-v3 .section { padding: 88px 0; }
  .site-v3 .section--compact { padding: 68px 0; }
  .site-v3 .home-v3-hero__inner { padding-top: 42px; }
  .site-v3 .home-v3-hero h1 { font-size: clamp(4rem, 18.4vw, 5.9rem); line-height: 1.05; }
  .site-v3 .home-v3-hero__copy { max-width: none; }
  .site-v3 .home-v3-hero__visual { min-height: 520px; margin-inline: -5.5vw; }
  .site-v3 .home-v3-hero__main { border-radius: 24px 24px 70px 24px; }
  .site-v3 .home-v3-hero__portrait { left: 5.5vw; }
  .site-v3 .home-v3-hero__detail { right: 5.5vw; }
  .site-v3 .home-space-card { flex-basis: 84vw; }
  .site-v3 .home-space-card__body { min-height: 0; padding: 23px 22px 26px; }
  .site-v3 .home-spaces__track { touch-action: pan-x pan-y; }
  .site-v3 .home-spaces__hint::before { content: none; }
  .site-v3 .home-amenity { min-height: 0; }
  .site-v3 .home-amenity h3 { font-size: .72rem; letter-spacing: .045em; overflow-wrap: normal; word-break: normal; }
  .site-v3 .home-amenity p { font-size: .81rem; }
  .site-v3 .home-reviews__track { touch-action: pan-x pan-y; }
  .site-v3 .home-review { min-height: 300px; }
  .site-v3 .contact-grid { grid-template-columns: 1fr; gap: 12px; }
  .site-v3 .contact-card { padding: 26px 22px; }
  .site-v3 .amenity-grid,
  .site-v3 .full-amenities { grid-template-columns: 1fr; gap: 12px; }
  .site-v3 .amenity-card { min-height: 0; padding: 24px 21px; }
  .site-v3 .amenity-card h3 { font-size: .74rem; letter-spacing: .045em; }
  .site-v3 .amenity-card p { font-size: .84rem; }
  .site-v3 .footer-book-button { width: 100%; }
  .site-v3 .mobile-booking-bar { right: 76px; left: 12px; min-height: 52px; }
  .site-v3 .whatsapp-float { right: 12px; width: 52px; height: 52px; }
  .site-v3 .site-footer { padding-bottom: 104px; }
}

@media (max-width: 420px) {
  .site-v3 .home-v3-hero__visual { min-height: 470px; }
  .site-v3 .home-space-card { flex-basis: 86vw; }
  .site-v3 .home-space-card__image { height: 330px; }
  .site-v3 .home-review { flex-basis: 86vw; }
  .site-v3 .mobile-booking-bar { font-size: .63rem; letter-spacing: .055em; }
}
