:root {
  --blue: #0877bd;
  --blue-deep: #05649c;
  --aqua: #08ace0;
  --aqua-soft: #cdeff9;
  --sand: #e6bd86;
  --sand-soft: #fff5e8;
  --navy: #073a5b;
  --ink: #173344;
  --muted: #587485;
  --mist: #e3f4f9;
  --white: #fff;
  --line: #d7e9ef;
  --shadow: 0 20px 60px rgba(7, 58, 91, .14);
  --shadow-soft: 0 12px 34px rgba(7, 58, 91, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #f7fcfe;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.wrap { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }
.muted { color: var(--muted); }
.center { text-align: center; }

.topbar {
  background: linear-gradient(90deg, #052d47, var(--navy), #064c72);
  color: #dff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  text-align: center;
  padding: 8px 16px;
  font-size: .86rem;
  letter-spacing: .01em;
}
.time-clocks { display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 7px; }
.time-clocks > span { padding: 2px 9px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.08); white-space: nowrap; }
.time-clocks time { margin-left: 4px; color: #fff; font-weight: 850; font-variant-numeric: tabular-nums; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #dcecf2;
}
.nav { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--navy);
}
.brand img { width: 66px; height: 66px; object-fit: contain; }
[data-page="home"] .nav { min-height: 96px; }
[data-page="home"] .brand img { width: 82px; height: 82px; }
.brand span { line-height: 1.02; font-size: 1.02rem; }
.brand b { color: var(--blue); font-weight: 900; }
.brand small {
  display: block;
  color: var(--aqua);
  font-size: .64rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-top: 6px;
}
.navlinks { display: flex; align-items: center; gap: 24px; }
.navlinks a { text-decoration: none; font-weight: 750; font-size: .94rem; }
.navlinks a:hover, .navlinks a.active { color: var(--blue); }
.language-switcher { position: relative; margin-left: auto; flex: 0 0 auto; }
.language-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  border: 1px solid #c9e2eb;
  border-radius: 999px;
  background: #f5fbfd;
  color: var(--navy);
  padding: 8px 12px;
  font-size: .84rem;
  font-weight: 850;
  cursor: pointer;
}
.language-menu {
  position: absolute;
  z-index: 90;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  width: min(260px, calc(100vw - 28px));
  max-height: min(70vh, 520px);
  overflow-y: auto;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.language-switcher.open .language-menu { display: grid; }
.language-menu button { display: grid; grid-template-columns: 28px 1fr; gap: 8px; align-items: center; width: 100%; border: 0; border-radius: 10px; background: transparent; color: var(--ink); padding: 9px 10px; text-align: left; cursor: pointer; }
.language-menu button:hover, .language-menu button.is-active { background: var(--mist); color: var(--blue); }
.language-switcher-floating { position: fixed; z-index: 100; top: 62px; right: 18px; margin: 0; }
.language-switcher-floating .language-menu { position: absolute; }
.menu {
  display: none;
  margin-left: auto;
  border: 0;
  background: var(--mist);
  color: var(--navy);
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 1.35rem;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  text-decoration: none;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(8, 119, 189, .22);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  max-width: 100%;
  text-align: center;
  line-height: 1.25;
  white-space: normal;
}
.button:hover { transform: translateY(-2px); background: var(--blue-deep); box-shadow: 0 14px 32px rgba(8,119,189,.28); }
.button.alt { background: transparent; color: var(--navy); border: 1px solid #b8dce9; box-shadow: none; }
.button.light { background: #fff; color: var(--navy); }
.button.small { padding: 10px 16px; font-size: .9rem; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(8,172,224,.16), transparent 24%),
    linear-gradient(135deg, #dff5fb 0%, #fbfeff 54%, #fff5e8 100%);
  padding: 56px 0 72px;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 52px; }
.hero-grid > *, .split > *, .grid-2 > *, .grid-3 > *, .grid-4 > *, .room-grid > *, .booking-grid > * { min-width: 0; }
.eyebrow { text-transform: uppercase; color: var(--blue); font-weight: 900; letter-spacing: .14em; font-size: .78rem; }
.hero h1, .page-hero h1 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 5.45rem);
  line-height: .98;
  margin: 14px 0 22px;
  letter-spacing: -.04em;
}
.hero h1 em { font-style: normal; color: var(--aqua); }
.lead { font-size: 1.14rem; color: #466579; max-width: 700px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.facts { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 26px; }
.fact { min-width: 122px; padding-right: 18px; border-right: 1px solid #cfe6ee; }
.fact:last-child { border-right: 0; }
.fact strong { display: block; color: var(--navy); font-size: 1.28rem; }
.fact span { font-size: .84rem; color: #64808f; }
.trust-line { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 20px; color: #31596e; font-size: .84rem; font-weight: 750; }

.photo-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #dff6fb;
  border-radius: 36% 64% 62% 38% / 44% 37% 63% 56%;
  padding: 14px;
  box-shadow: var(--shadow);
}
.organic-slider { isolation: isolate; }
.organic-slider .slides { position: absolute; inset: 14px; overflow: hidden; border-radius: inherit; background: #e6f4f8; }
.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .75s ease, visibility .75s ease;
}
.slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 15px;
  width: fit-content;
  max-width: calc(100% - 36px);
  color: #fff;
  background: rgba(4,43,67,.82);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .86rem;
  font-weight: 800;
}
.organic-slider .slide figcaption {
  left: 50%;
  right: auto;
  bottom: 72px;
  max-width: 72%;
  transform: translateX(-50%);
  text-align: center;
}
.badge {
  position: absolute;
  z-index: 5;
  right: 40px;
  top: 52px;
  background: #fff;
  padding: 13px 17px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-weight: 900;
  color: var(--navy);
}
.organic-slider .slide figcaption {
  left: 50%;
  right: auto;
  bottom: 96px;
  width: max-content;
  max-width: min(72%, 360px);
  text-align: center;
  transform: translateX(-50%);
}
.slider-arrow {
  position: absolute;
  z-index: 6;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 20px rgba(7,58,91,.16);
  transform: translateY(-50%);
  cursor: pointer;
}
.slider-arrow:hover { background: #fff; }
.slider-arrow.prev { left: 22px; }
.slider-arrow.next { right: 22px; }
.slider-dots {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 17px;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  padding: 7px 9px;
  background: rgba(4,43,67,.58);
  border-radius: 999px;
}
.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.58);
  cursor: pointer;
}
.slider-dots button.is-active { width: 24px; border-radius: 999px; background: #fff; }

section { padding: 78px 0; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.center { margin-inline: auto; }
.section-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  margin: 8px 0 12px;
}
.section-head p { color: var(--muted); }
.pale { background: var(--mist); }
.sand { background: var(--sand-soft); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 27px;
  box-shadow: var(--shadow-soft);
}
.card .icon { font-size: 1.7rem; }
.card h3 { color: var(--navy); margin: 12px 0 8px; line-height: 1.25; }
.card p:last-child { margin-bottom: 0; }
.amenity-card { position: relative; overflow: hidden; }
.amenity-card:after { content: ""; position: absolute; width: 90px; height: 90px; right: -30px; bottom: -34px; border-radius: 50%; background: var(--aqua-soft); }

.property-story { padding-block: 68px; }
.property-story-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.property-story-grid figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7,58,91,.1);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.property-story-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: #e4f4f9; }
.property-story-grid figcaption { display: grid; gap: 5px; padding: 18px 20px 21px; color: var(--muted); font-size: .92rem; }
.property-story-grid figcaption strong { color: var(--navy); font-size: 1.05rem; }

.banner-showcase { padding-top: 48px; }
.banner-slider {
  position: relative;
  aspect-ratio: 1920 / 700;
  overflow: hidden;
  border-radius: 28px;
  background: #dcecf2;
  box-shadow: var(--shadow);
}
.banner-slider .slides { position: absolute; inset: 0; }
.banner-slider .slide img { width: 100%; height: 100%; object-fit: contain; background: #eaf4f8; }
.banner-slider .slide figcaption { left: 22px; bottom: 62px; }
.banner-slider .slider-dots { bottom: 14px; }
.brand-banner { background: linear-gradient(115deg, #eaf9fd 0%, #fff 52%, #fff1dd 100%); }
.brand-banner-content { height: 100%; display: flex; align-items: center; justify-content: center; gap: clamp(22px, 5vw, 58px); padding: clamp(24px, 5vw, 64px); }
.brand-banner .brand-banner-content img { width: clamp(110px, 17vw, 210px); height: clamp(110px, 17vw, 210px); object-fit: contain; flex: 0 0 auto; background: #fff; border-radius: 26px; padding: 8px; box-shadow: var(--shadow-soft); }
.brand-banner-content strong { display: block; max-width: 650px; color: var(--navy); font: 800 clamp(1.5rem, 3.6vw, 3.25rem)/1.04 Georgia, serif; letter-spacing: -.025em; }
.brand-banner-content p { margin: 12px 0 0; color: var(--blue); font-weight: 800; }
.brand-banner-kicker { display: block; margin-bottom: 10px; color: var(--aqua); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.brand-banner figcaption { display: none; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-grid details { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 17px 19px; box-shadow: var(--shadow-soft); }
.faq-grid details:last-child { grid-column: 1 / -1; }
.faq-grid summary { color: var(--navy); font-weight: 850; cursor: pointer; }
.faq-grid p { margin: 10px 0 0; color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.wide-photo { grid-template-columns: .92fr 1.08fr; }
.split-photo { background: #fff; border-radius: 26px; padding: 12px; box-shadow: var(--shadow); }
.split-photo img { width: 100%; height: auto; object-fit: contain; border-radius: 18px; }
.photo-collage { display: grid; grid-template-columns: 1.35fr .65fr; gap: 12px; }
.photo-collage img { width: 100%; height: 100%; object-fit: contain; border-radius: 18px; background: #edf7fa; }
.photo-collage img:first-child { min-height: 440px; }
.kitchen-collage { grid-template-columns: 1.35fr .65fr; }
.bathroom-collage { grid-template-columns: 1fr 1fr; }
.orientation-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
  padding: 13px 16px;
  border: 1px dashed #bad8e3;
  border-radius: 16px;
  background: #f4fafc;
  color: #68808d;
  font-size: .78rem;
}
.orientation-note img { width: 116px; height: 76px; object-fit: contain; border-radius: 10px; background: #e9f5f8; flex: 0 0 auto; }
.orientation-note p { margin: 0; }
.ticks { list-style: none; padding: 0; columns: 2; gap: 26px; }
.ticks.one-column { columns: 1; }
.ticks li { break-inside: avoid; margin: 0 0 12px; padding-left: 27px; position: relative; }
.ticks li:before { content: "✓"; position: absolute; left: 0; color: var(--aqua); font-weight: 900; }
.feature-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  background: #cce3eb;
  border: 1px solid #cce3eb;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}
.feature-band div { background: #fff; padding: 22px 18px; text-align: center; }
.feature-band strong { display: block; color: var(--navy); margin-top: 5px; }

.cta {
  background: linear-gradient(120deg, var(--navy), var(--blue));
  color: #fff;
  border-radius: 28px;
  padding: 42px;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  box-shadow: var(--shadow);
}
.cta h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 4vw, 3rem); margin: 0; line-height: 1.08; }
.cta .button { background: #fff; color: var(--navy); }
.page-hero {
  background:
    radial-gradient(circle at 92% 10%, rgba(8,172,224,.15), transparent 28%),
    linear-gradient(120deg, #eaf8fc, #fff8ed);
  padding: 64px 0;
}
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); margin-bottom: 14px; }
.page-kicker { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 999px; background: rgba(255,255,255,.9); border: 1px solid #cfe5ec; color: var(--navy); font-weight: 750; font-size: .88rem; }

.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.room-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-soft); }
.room-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.room-card-body { padding: 24px; }
.room-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.28rem; }
.room-card .room-bed { color: var(--blue); font-weight: 900; }
.room-card ul { margin: 15px 0 0; padding-left: 20px; color: var(--muted); }
.room-card li + li { margin-top: 6px; }
.detail-strip { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.detail-strip.three { grid-template-columns: repeat(3, 1fr); }
.detail-strip.four { grid-template-columns: repeat(4, 1fr); }
.detail-strip figure { margin: 0; overflow: hidden; border-radius: 22px; background: #fff; border: 1px solid var(--line); }
.detail-strip img { width: 100%; max-height: 520px; object-fit: contain; background: #f2f8fa; }
.detail-strip figcaption { padding: 13px 16px; color: var(--muted); font-size: .9rem; }

.gallery { columns: 3 290px; column-gap: 18px; }
.gallery figure { break-inside: avoid; background: #fff; border: 1px solid #dbeaf0; border-radius: 18px; padding: 10px; margin: 0 0 18px; box-shadow: 0 10px 26px rgba(7,58,91,.08); }
.gallery img { width: 100%; height: auto; object-fit: contain; border-radius: 12px; cursor: zoom-in; }
.gallery figcaption { font-size: .88rem; padding: 10px 4px 3px; color: #526f7e; }
.gallery .reference-photo { border-style: dashed; background: #f6fafb; box-shadow: none; }
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(2,28,43,.94); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-height: 88vh; max-width: 92vw; width: auto; height: auto; object-fit: contain; }
.lightbox button { position: absolute; right: 22px; top: 18px; border: 0; background: #fff; color: var(--navy); border-radius: 50%; width: 44px; height: 44px; font-size: 1.4rem; cursor: pointer; }

.video-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.reel-launch { position: relative; display: block; width: min(100%, 450px); aspect-ratio: 9 / 16; margin-inline: auto; overflow: hidden; border-radius: 28px; background: #071f2d; box-shadow: var(--shadow); text-decoration: none; }
.reel-launch img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform .35s ease, opacity .35s ease; }
.reel-launch:hover img { transform: scale(1.025); opacity: .68; }
.reel-play { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 10px; width: max-content; max-width: calc(100% - 36px); padding: 12px 17px; border-radius: 999px; background: #fff; color: var(--navy); box-shadow: var(--shadow); font-weight: 900; }
.reel-play b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--blue); color: #fff; }

.map-card { background: linear-gradient(145deg, #dff6fb, #fff); border-radius: 28px; padding: 38px; box-shadow: var(--shadow); }
.map-card h2, .contact-panel h2, .localized-content .split > div > h2 {
  margin: 8px 0 18px;
  color: var(--navy);
  font: 800 clamp(1.8rem, 3.4vw, 2.7rem)/1.1 Georgia, "Times New Roman", serif;
}
.nearby { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.nearby div { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.attraction-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.attraction-card { position: relative; padding-bottom: 70px; }
.attraction-card .button { position: absolute; left: 26px; bottom: 24px; }
.directions-image { margin: 0; background: #071c28; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); }
.directions-image img { width: 100%; height: auto; object-fit: contain; }
.directions-image figcaption { color: #d8edf6; padding: 14px 18px; font-size: .9rem; }
.route-gallery { display: grid; grid-template-columns: 1.25fr 1fr .72fr; gap: 18px; align-items: stretch; }
.route-gallery .directions-image { display: flex; flex-direction: column; }
.route-gallery .directions-image img { flex: 1; max-height: 480px; object-fit: contain; }
.route-gallery .directions-image figcaption { margin-top: auto; }
.arrival-planner { background: linear-gradient(135deg, #dff5fb, #f7fcfe 58%, #fff5e8); }
.airport-grid .card { display: flex; flex-direction: column; }
.airport-grid .button { align-self: flex-start; margin-top: auto; }
.map-overview { margin: 32px 0 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.map-overview img { width: 100%; height: auto; object-fit: contain; }
.map-overview figcaption { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 20px; color: var(--muted); }
.live-map { margin-top: 28px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.live-map iframe { display: block; width: 100%; height: min(64vh, 520px); min-height: 360px; border: 0; }
.live-map-caption { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 20px; color: var(--muted); }
.destination-slider { position: relative; min-height: 460px; overflow: hidden; border-radius: 28px; background: #dcecf2; box-shadow: var(--shadow); }
.destination-slider .slides { position: absolute; inset: 0; }
.destination-slider .slide img { width: 100%; height: 100%; object-fit: cover; }
.destination-slider .slide figcaption { bottom: 58px; }

.booking-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.booking-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
.booking-card .platform { font-size: 1.2rem; font-weight: 900; color: var(--navy); }
.booking-card p { flex-grow: 1; }
.contact-panel { background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 32px; box-shadow: var(--shadow); }
.phone-link { display: inline-block; color: var(--blue); font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 900; text-decoration: none; margin: 8px 0 14px; }
.note { border-left: 4px solid var(--sand); background: #fff8ed; padding: 18px 20px; border-radius: 0 14px 14px 0; }
.note.info { border-left-color: var(--aqua); background: #ebfaff; }
.fine-print { margin-top: 20px; color: #6e8795; font-size: .78rem; }

.page-journey {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 7px 22px;
  margin-top: 8px;
  margin-bottom: 78px;
  padding: 25px 30px;
  overflow: hidden;
  background: linear-gradient(120deg, #e9f8fc, #fff7eb);
  border: 1px solid #cfe6ed;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.page-journey .journey-step { grid-row: 1 / span 2; align-self: center; padding: 7px 11px; border-radius: 999px; background: #fff; color: var(--blue); font-size: .76rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.page-journey strong { color: var(--navy); font: 800 1.25rem/1.2 Georgia, serif; }
.page-journey > span:not(.journey-step) { color: var(--muted); font-size: .86rem; }
.page-journey a { grid-column: 4; grid-row: 1 / span 2; align-self: center; padding: 11px 16px; border-radius: 999px; background: var(--blue); color: #fff; text-decoration: none; font-weight: 850; white-space: nowrap; }
.page-journey a.journey-back { grid-column: 3; background: #fff; color: var(--navy); border: 1px solid #b8dce9; }
.page-journey-end { background: #f2f7f9; }
.journey-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--aqua), var(--blue)); }
.page-journey.is-counting .journey-progress { animation: journey-progress 1.8s linear forwards; }
@keyframes journey-progress { to { transform: scaleX(1); } }

.previous-page-cue { position: fixed; z-index: 80; top: 14px; left: 50%; display: none; min-width: min(340px, calc(100vw - 28px)); overflow: hidden; transform: translateX(-50%); background: #fff; color: var(--navy); border: 1px solid #c8e1ea; border-radius: 999px; padding: 10px 18px 11px; text-align: center; box-shadow: var(--shadow); font-size: .84rem; font-weight: 850; }
.previous-page-cue.is-counting { display: block; }
.previous-page-cue:after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--aqua), var(--blue)); transform: scaleX(0); transform-origin: left; animation: previous-page-progress 1.1s linear forwards; }
@keyframes previous-page-progress { to { transform: scaleX(1); } }

.site-footer { background: #062f49; color: #d8edf6; padding: 52px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-grid img { width: 112px; background: #fff; border-radius: 14px; padding: 6px; }
.footer-grid img.footer-logo-wide { width: min(220px, 100%); height: auto; object-fit: contain; }
.footer-grid h3 { color: #fff; }
.footer-grid a { display: block; text-decoration: none; margin: 8px 0; }
.footer-grid a:hover { color: #fff; }
.copyright { border-top: 1px solid #1d506a; margin-top: 36px; padding-top: 20px; font-size: .84rem; color: #9fc4d4; }
.float-book { position: fixed; right: 18px; bottom: 18px; z-index: 45; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 200; background: #fff; color: var(--navy); padding: 11px 16px; border-radius: 10px; box-shadow: var(--shadow); font-weight: 800; }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; }
body.no-scroll { overflow: hidden; }
[dir="rtl"] .language-menu { right: auto; left: 0; }
[dir="rtl"] .language-menu button { text-align: right; }
[dir="rtl"] .ticks li { padding-left: 0; padding-right: 27px; }
[dir="rtl"] .ticks li:before { left: auto; right: 0; }
[dir="rtl"] .navlinks { text-align: right; }

@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .property-story-grid { grid-template-columns: 1fr 1fr; }
  .feature-band { grid-template-columns: repeat(3, 1fr); }
  .attraction-grid { grid-template-columns: 1fr 1fr; }
  .route-gallery { grid-template-columns: 1fr 1fr; }
  .route-gallery .portrait-route { grid-column: 1 / -1; }
  .brand small { display: none; }
  .detail-strip.three { grid-template-columns: 1fr 1fr; }
  .detail-strip.four { grid-template-columns: 1fr 1fr; }
  .nav { gap: 16px; }
  .navlinks { gap: 14px; }
  .navlinks a { font-size: .86rem; }
}

@media (max-width: 1040px) {
  .hero-grid, .split, .footer-grid, .video-layout { grid-template-columns: 1fr; }
  .grid-3, .booking-grid, .room-grid { grid-template-columns: 1fr 1fr; }
  .navlinks { display: none; position: absolute; top: 82px; left: 0; right: 0; background: #fff; padding: 20px; box-shadow: var(--shadow); flex-direction: column; align-items: flex-start; }
  [data-page="home"] .navlinks { top: 96px; }
  .navlinks.open { display: flex; }
  .menu { display: block; }
  .hero { padding-top: 42px; }
  .photo-frame { max-width: 650px; width: 100%; min-height: 560px; margin-inline: auto; }
  .ticks { columns: 1; }
  .cta { align-items: flex-start; flex-direction: column; }
  .footer-grid { gap: 24px; }
  .video-layout { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 24px, 1180px); }
  .grid-2, .grid-3, .grid-4, .booking-grid, .room-grid, .nearby, .attraction-grid, .detail-strip, .property-story-grid, .route-gallery { grid-template-columns: 1fr; }
  .hero h1 { font-size: 3.15rem; }
  .brand img { width: 58px; height: 58px; }
  [data-page="home"] .nav { min-height: 76px; }
  [data-page="home"] .brand img { width: 64px; height: 64px; }
  .brand span { font-size: .9rem; }
  .nav { min-height: 72px; gap: 8px; }
  .brand { gap: 8px; min-width: 0; }
  .navlinks { top: 72px; }
  [data-page="home"] .navlinks { top: 76px; }
  .topbar { align-items: stretch; font-size: .75rem; }
  .topbar-message { width: 100%; }
  .time-clocks { width: 100%; }
  .cta { padding: 28px; }
  .float-book { left: 18px; }
  .float-book .button { width: 100%; }
  .photo-frame { min-height: 400px; }
  .organic-slider .slide figcaption { bottom: 78px; max-width: 72%; padding: 7px 11px; font-size: .75rem; }
  .badge { top: 42px; right: 22px; padding: 9px 12px; font-size: .76rem; }
  .feature-band { grid-template-columns: 1fr 1fr; }
  .feature-band div:last-child { grid-column: 1 / -1; }
  .banner-slider { aspect-ratio: 16 / 7; border-radius: 18px; }
  .banner-slider .slide figcaption { display: none; }
  .brand-banner-content { gap: 14px; padding: 18px 28px; }
  .brand-banner .brand-banner-content img { width: 78px; height: 78px; border-radius: 16px; padding: 4px; }
  .brand-banner-content strong { font-size: clamp(1rem, 4.7vw, 1.35rem); }
  .brand-banner-content p { margin-top: 6px; font-size: .72rem; }
  .brand-banner-kicker { margin-bottom: 5px; font-size: .58rem; }
  .slider-arrow { width: 38px; height: 38px; }
  .photo-collage { grid-template-columns: 1fr; }
  .photo-collage img:first-child { min-height: 0; }
  .detail-strip.three { grid-template-columns: 1fr; }
  .detail-strip.four { grid-template-columns: 1fr; }
  .route-gallery .portrait-route { grid-column: auto; }
  .orientation-note { align-items: flex-start; }
  .orientation-note img { width: 92px; height: 68px; }
  .map-overview figcaption { align-items: flex-start; flex-direction: column; }
  .live-map-caption { align-items: flex-start; flex-direction: column; }
  .live-map iframe { min-height: 420px; }
  .destination-slider { min-height: 420px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-grid details:last-child { grid-column: auto; }
  .page-journey { grid-template-columns: 1fr; gap: 7px; padding: 22px; }
  .page-journey .journey-step, .page-journey strong, .page-journey > span:not(.journey-step), .page-journey a { grid-column: 1; grid-row: auto; justify-self: start; }
  .page-journey a.journey-back { grid-column: 1; }
  .language-button span:nth-child(2) { display: none; }
  .language-button { min-width: 44px; justify-content: center; padding-inline: 9px; }
}

@media (max-width: 410px) {
  .hero h1 { font-size: 2.65rem; }
  .brand span { font-size: .8rem; }
  .brand img { width: 52px; height: 52px; }
  .menu { padding: 8px 10px; }
  .photo-frame { min-height: 360px; }
  .organic-slider .slide figcaption { max-width: 62%; }
  .actions .button { width: 100%; }
}

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

/* Complete-language layout: captions and controls never share the photo mask. */
:root { --mist:#d5f1f9; --aqua-soft:#bceaf7; }
body { font-size:1rem; }
.hero { background:radial-gradient(circle at 90% 10%,#b4eaf7 0,transparent 30%),linear-gradient(130deg,#cff0fa,#f8fdff 60%,#fff3e2); }
.hero h1,.page-hero h1 { line-height:1.13; letter-spacing:-.025em; }
[lang="hi"] h1,[lang="hi"] h2,[lang="ja"] h1,[lang="zh"] h1,[lang="he"] h1 { line-height:1.3; letter-spacing:normal; }
.brand small { font-size:.75rem; line-height:1.45; letter-spacing:.035em; }
.eyebrow { font-size:.875rem; line-height:1.65; letter-spacing:.08em; }
.fine-print { font-size:.8125rem; line-height:1.65; color:#536d7b; }
.fact span,.trust-line,.topbar,.language-button,.copyright { font-size:.875rem; }
.nav { gap:18px; flex-wrap:wrap; padding-block:10px; }
.brand { min-width:0; }
.brand span { line-height:1.25; }
.brand b { display:block; }
.navlinks { gap:18px; margin-inline-start:auto; }
.navlinks a { line-height:1.5; }
.language-button { list-style:none; cursor:pointer; }
.language-button::-webkit-details-marker { display:none; }
.language-switcher[open] .language-menu { display:grid; }
.language-menu a { display:grid; grid-template-columns:28px 1fr; gap:8px; text-decoration:none; align-items:center; padding:11px 12px; border-radius:10px; }
.language-menu a:hover,.language-menu a.is-active { background:var(--mist); color:var(--navy); }
.language-menu a[dir="rtl"] { text-align:right; }
.photo-frame.organic-slider { min-height:0; border-radius:0; padding:0; background:transparent; box-shadow:none; overflow:visible; }
.organic-slider .slides { position:relative; inset:auto; height:auto; aspect-ratio:1/1; border-radius:36% 64% 62% 38% / 44% 37% 63% 56%; border:12px solid #bceaf7; box-shadow:var(--shadow); }
.slide figcaption { display:none!important; }
.slider-caption { display:flex; align-items:center; justify-content:center; text-align:center; min-height:4.25rem; padding:14px 22px 6px; color:var(--navy); font-size:1rem; font-weight:650; line-height:1.55; }
.slider-controls { position:relative; display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:8px; padding:8px 12px 16px; direction:ltr; }
.slider-controls .slider-arrow { position:static; transform:none; width:44px; height:44px; flex:0 0 44px; font-size:1.6rem; background:#fff; }
.slider-controls .slider-dots { position:static; transform:none; display:flex; flex-wrap:wrap; justify-content:center; max-width:100%; background:transparent; padding:0; gap:0; }
.slider-dots button,.slider-dots button.is-active { width:24px; height:36px; background:transparent; border-radius:0; position:relative; }
.slider-dots button::after { content:""; position:absolute; width:8px; height:8px; top:14px; left:8px; border-radius:50%; background:#8caebf; }
.slider-dots button.is-active::after { background:var(--blue); box-shadow:0 0 0 3px #c1e9f6; }
.slider-pause { width:44px; height:44px; border:1px solid #bedde8; border-radius:50%; background:#fff; color:var(--navy); cursor:pointer; }
.banner-slider { aspect-ratio:auto; background:#f7fcfe; overflow:hidden; }
.banner-slider .slides { position:relative; inset:auto; aspect-ratio:1920/700; min-height:240px; }
.banner-slider .slide img { object-fit:contain; }
.brand-banner-content { width:100%; height:100%; padding:28px 8%; gap:32px; }
.brand-banner-content strong { font-size:clamp(1.35rem,3vw,2.5rem); line-height:1.28; }
.brand-banner-kicker { font-size:.875rem; line-height:1.5; }
.brand-banner-content p { font-size:1rem; line-height:1.5; }
.brand-banner .brand-banner-content img { width:clamp(110px,18vw,220px); height:auto; object-fit:contain; flex-shrink:0; }
.destination-slider { min-height:0; background:#f7fcfe; }
.destination-slider .slides { position:relative; inset:auto; aspect-ratio:4/3; }
.room-card img { aspect-ratio:4/3; height:auto; object-fit:contain; background:var(--mist); }
.room-card-body p,.card p,.property-story-grid figcaption { font-size:1rem; }
.room-bed { line-height:1.5; }
.feature-band>div { min-width:0; padding:20px 16px; font-size:.9375rem; }
.feature-band strong { line-height:1.45; margin-block:7px; }
.property-story-grid,.room-grid,.detail-strip,.attraction-grid { align-items:stretch; }
.attraction-card { display:flex; flex-direction:column; }
.attraction-card .button { align-self:flex-start; margin-top:auto; }
.attraction-card.compact p { display:block; }
.amenity-card:after { pointer-events:none; opacity:.35; z-index:0; }
.amenity-card>* { position:relative; z-index:1; }
.page-journey { grid-template-columns:auto minmax(0,1fr); padding:28px; }
.page-journey .journey-step { grid-column:1; grid-row:1/3; }
.page-journey strong,.page-journey>span:not(.journey-step) { grid-column:2; }
.page-journey a,.page-journey a.journey-back { grid-column:auto; grid-row:auto; white-space:normal; line-height:1.5; justify-self:start; }
.page-journey .journey-step { font-size:.875rem; }
.page-journey>span:not(.journey-step) { font-size:1rem; }
.site-footer { padding:60px 0 calc(85px + env(safe-area-inset-bottom,0px)); }
.footer-grid>* { min-width:0; }
.building-information { margin:30px 0; padding:16px 20px; background:#f0f8fb; border:1px solid var(--line); border-radius:14px; font-size:.875rem; color:#536d7b; }
.building-information summary { cursor:pointer; font-weight:650; }
.building-information .orientation-note { box-shadow:none; border:0; margin:0; justify-content:flex-start; flex-wrap:wrap; }
.building-information .orientation-note img { width:180px; height:auto; max-width:100%; object-fit:contain; }
.video-layout { display:block; max-width:720px; margin-inline:auto; }
.video-layout video { width:100%; height:auto; border-radius:24px; background:var(--navy); }
.reel-launch { max-width:540px; margin-inline:auto; }
.phone-link { unicode-bidi:isolate; direction:ltr; }
[dir="rtl"] .language-switcher { margin-left:0; margin-inline-start:auto; }
[dir="rtl"] .language-menu a { text-align:right; }
[dir="rtl"] .time-clocks time { margin-left:0; margin-inline-start:4px; }
@media (max-width:1250px) {
  .navlinks { display:none; position:absolute; inset-inline:0; top:100%!important; padding:24px; background:#fff; box-shadow:var(--shadow); flex-direction:column; align-items:stretch; max-height:70vh; overflow:auto; }
  .navlinks.open { display:flex; }
  .menu { display:block; margin-left:0; }
  .language-switcher { margin-inline-start:auto; }
  .language-menu { max-height:65vh; }
  .brand small { display:block; }
}
@media (max-width:700px) {
  .hero-grid { gap:28px; }
  .hero h1,.page-hero h1 { font-size:clamp(2.3rem,8vw,3.3rem); }
  .brand small { display:none; }
  .language-button span:nth-child(2) { display:inline; font-size:.875rem; }
  .language-button { gap:5px; }
  .nav { column-gap:8px; }
  .brand img,[data-page="home"] .brand img { width:52px; height:60px; }
  .brand span { font-size:.875rem; }
  .photo-frame.organic-slider { width:100%; min-height:0; }
  .slider-caption { min-height:5.25rem; padding-inline:16px; }
  .brand-banner-content { gap:16px; padding:20px; }
  .brand-banner .brand-banner-content img { width:100px; }
  .brand-banner-content strong { font-size:1.25rem; }
  .brand-banner-kicker { font-size:.8125rem; }
  .brand-banner-content p { font-size:.875rem; }
  .page-journey { grid-template-columns:1fr; gap:12px; }
  .page-journey .journey-step,.page-journey strong,.page-journey>span:not(.journey-step),.page-journey a,.page-journey a.journey-back { grid-column:1; grid-row:auto; }
  .feature-band { grid-template-columns:1fr; }
  section { padding-block:52px; }
  .card,.contact-panel { padding:24px; }
  .button { padding:13px 18px; }
}
@media (max-width:380px) {
  .brand { gap:5px; }
  .brand span { font-size:.8125rem; }
  .brand img,[data-page="home"] .brand img { width:40px; }
  .language-button { padding-inline:7px; }
  .slider-controls { gap:4px; }
  .slider-controls .slider-dots { order:3; width:100%; }
  .brand-banner-content { display:flex; flex-direction:column; text-align:center; padding:16px; }
  .banner-slider .slides { min-height:350px; }
  .brand-banner .brand-banner-content img { width:95px; }
}
