/* ==========================================================================
   BOUTIQUE HOTEL OPAL — main.css
   Night-pool luxury. Dark site throughout.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink: #0A1420;
  --ink-2: #101E2E;
  --ink-3: #16283C;
  --pool: #2E8BC0;
  --pool-soft: #7FBEDD;
  --gold: #C9A227;
  --gold-hi: #E3BC4B;
  --sand: #F4EFE6;
  --sand-dim: rgba(244, 239, 230, .68);
  --line: rgba(244, 239, 230, .14);
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
img, video { display: block; max-width: 100%; }
ul[class], ol[class] { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select, button, textarea { font: inherit; color: inherit; }

body {
  background: var(--ink);
  color: var(--sand);
  font-family: "Inter", -apple-system, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--sand);
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 500; letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 600; }

.overline {
  font-family: "Inter", sans-serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--pool-soft);
  font-weight: 600;
}

.lead { color: var(--sand-dim); font-size: 1.08rem; max-width: 60ch; }

/* ---------- Focus / a11y ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #141003;
  padding: .8rem 1.4rem;
  z-index: 999;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-alt { background: var(--ink-2); }
.section-head { max-width: 46rem; margin-bottom: 3rem; }
.section-head h2 { margin-top: .6rem; }
.section-head .lead { margin-top: 1rem; }
main { display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 999px;
  padding: 1rem 1.9rem;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  color: #141003;
  box-shadow: 0 8px 30px rgba(201, 162, 39, .25);
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(201, 162, 39, .38);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--sand);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .05); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 20, 32, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .75rem 0;
  border-bottom-color: var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}
.site-header .btn-gold { padding: .85rem 1.4rem; font-size: .8rem; }
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .03em;
  display: flex;
  align-items: baseline;
  gap: .4rem;
  white-space: nowrap;
}
.logo .stars { color: var(--gold); font-size: .8rem; letter-spacing: .1em; }

.main-nav {
  display: flex;
  gap: 2rem;
}
.main-nav a {
  font-size: .88rem;
  white-space: nowrap;
  font-weight: 500;
  color: var(--sand-dim);
  transition: color .2s var(--ease);
}
.main-nav a:hover { color: var(--sand); }

.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.lang-switch {
  display: flex;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
}
.lang-switch a {
  padding: .25rem .5rem;
  border-radius: 6px;
  color: var(--sand-dim);
}
.lang-switch a[aria-current="page"] { color: var(--gold); }
.lang-switch a:hover { color: var(--sand); }
.phone-link {
  font-size: .88rem;
  color: var(--sand-dim);
  display: none;
  white-space: nowrap;
}
.phone-link:hover { color: var(--pool-soft); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .5rem .6rem;
  color: var(--sand);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}
.mobile-menu .btn { margin-top: 1rem; }
.mobile-menu-close {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 44px; height: 44px;
  font-size: 1.4rem;
  color: var(--sand);
}
body.menu-open { overflow: hidden; }

/* ---------- Mobile bottom CTA bar ---------- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  background: rgba(10, 20, 32, .95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform .3s var(--ease);
}
.mobile-cta-bar.is-visible { transform: translateY(0); }
.mobile-cta-bar .btn { flex: 1; }
.mobile-cta-bar .phone-icon-link {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 6rem;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Lift the footage: the dark scrim below was washing the clips out. */
  filter: saturate(1.16) brightness(1.05) contrast(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* A light scrim at the very top keeps the white nav legible; the middle stays
     nearly clear so the footage reads bright and vivid; it darkens only low
     down, behind the headline/widget, where text needs contrast. */
  background: linear-gradient(to bottom,
    rgba(10,20,32,.30) 0%,
    rgba(10,20,32,.10) 16%,
    rgba(10,20,32,.12) 42%,
    rgba(10,20,32,.46) 66%,
    rgba(10,20,32,.82) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}
.hero-content .overline { justify-content: center; display: flex; }
.hero-content h1 { margin-top: .9rem; text-shadow: 0 2px 28px rgba(10,20,32,.55), 0 1px 4px rgba(10,20,32,.45); }
.hero-follow {
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  padding: 2.4rem 0 2.6rem;
  text-align: center;
}
.hero-follow .subhead {
  margin: 0 auto;
  max-width: 52rem;
  color: var(--sand-dim);
  font-size: 1.02rem;
}
.hero-follow .trust-chips { margin-top: 1.4rem; }
.hero .booking-widget { margin: 2.2rem auto 0; }
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem 1.4rem;
  margin: 1.8rem auto 0;
  max-width: 56rem;
}
.trust-chips li {
  font-size: .85rem;
  color: var(--sand-dim);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.trust-chips .chip-check { color: var(--gold); font-weight: 700; }

/* ---------- Booking widget ---------- */
.booking-widget {
  background: rgba(16, 30, 46, .78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
  backdrop-filter: blur(6px);
}
.final-cta .booking-widget {
  background: rgba(16, 30, 46, .9);
}
.bw-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: end;
}
.bw-form[hidden] { display: none; }
.bw-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1 1 150px;
  min-width: 130px;
}
.bw-field-narrow { flex: 1 1 100px; min-width: 90px; }
.bw-field label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--pool-soft);
}
.bw-field input,
.bw-field select {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .7rem .75rem;
  color: var(--sand);
  color-scheme: dark;
}
.bw-field input:focus,
.bw-field select:focus { border-color: var(--gold); }
.bw-child-ages {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex: 1 1 100%;
}
.bw-submit { flex: 0 0 auto; }
/* "Best price + 3 gifts" badge under the price button (expands on click) */
.bw-gifts { flex: 1 1 100%; margin-top: -.3rem; }
.bw-gifts-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  list-style: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--gold-hi);
  background: rgba(201, 162, 39, .12);
  border: 1px solid rgba(201, 162, 39, .5);
  border-radius: 999px;
  padding: .35rem .8rem;
  transition: background .15s ease;
}
.bw-gifts-badge:hover { background: rgba(201, 162, 39, .2); }
.bw-gifts-badge::-webkit-details-marker { display: none; }
.bw-gifts-badge::after {
  content: "▾";
  font-size: .75em;
  transition: transform .2s ease;
}
.bw-gifts[open] .bw-gifts-badge::after { transform: rotate(180deg); }
.bw-gifts-list {
  list-style: none;
  margin: .6rem 0 0;
  padding: .55rem .85rem;
  max-width: 360px;
  border: 1px solid rgba(201, 162, 39, .28);
  border-radius: 12px;
  background: rgba(201, 162, 39, .06);
  font-size: .82rem;
  color: var(--sand);
}
.bw-gifts-list li {
  position: relative;
  padding: .25rem 0 .25rem 1.55rem;
}
.bw-gifts-list li::before {
  content: "🎁";
  position: absolute;
  left: 0;
  top: .25rem;
  font-size: .85em;
}
.bw-msg {
  flex: 1 1 100%;
  border: 1px solid var(--gold);
  color: var(--gold-hi);
  background: rgba(201, 162, 39, .08);
  padding: .6rem .9rem;
  border-radius: 8px;
  font-size: .85rem;
}

/* Steps replace one another, so the panels fade/expand in place of the form. */
.bw-price-panel,
.bw-payment-step {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .5s var(--ease), opacity .4s var(--ease);
}
.bw-price-panel.is-open,
.bw-payment-step.is-open {
  max-height: 2000px;
  opacity: 1;
}
.bw-price-panel:not([hidden]),
.bw-payment-step:not([hidden]) {
  display: block;
}
.bw-lines { display: flex; flex-direction: column; gap: .5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.bw-line { display: flex; justify-content: space-between; font-size: .92rem; color: var(--sand-dim); }
.bw-notice { color: var(--pool-soft); font-size: .92rem; padding-top: 1rem; }
.bw-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: .9rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--gold);
}
.bw-split {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .8rem;
}
.bw-split[hidden] { display: none; }
.bw-guest-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
}
.bw-guest-fields .bw-field { flex: 1 1 220px; }
.bw-confirm { margin-top: 1.2rem; width: 100%; }
.bw-reassurance {
  text-align: center;
  font-size: .78rem;
  color: var(--sand-dim);
  margin-top: .7rem;
}

.bw-ref {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: .95rem;
}
.bw-ref strong { color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 1.2rem; }

/* HOTFIX: payment-under-development notice (config.paymentUnderDevelopment) */
.bw-underdev {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: 1.2rem;
  padding: 1rem;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.bw-underdev[hidden] { display: none; }
.bw-underdev-msg { font-size: .95rem; line-height: 1.55; color: var(--sand); }
.bw-underdev-form { display: flex; flex-wrap: wrap; gap: .8rem; align-items: stretch; }
.bw-underdev-form .bw-field { flex: 1 1 220px; }
.bw-underdev-send { flex: 0 0 auto; }
.bw-underdev-thanks { font-size: .88rem; color: var(--pool-soft); }
.bw-underdev-thanks[hidden] { display: none; }

.bw-iban-block { margin-top: 1rem; display: flex; flex-direction: column; gap: .6rem; }
.bw-iban-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .6rem .8rem;
}
.bw-iban-row dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--pool-soft); flex: 0 0 auto; min-width: 5.5rem; }
.bw-iban-row dd { display: flex; align-items: center; gap: .6rem; margin: 0; flex: 1; justify-content: flex-end; text-align: right; }
.bw-iban-value { font-family: "SFMono-Regular", Menlo, Consolas, monospace; font-size: .88rem; letter-spacing: .03em; word-break: break-word; }
.bw-copy-btn {
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .3rem .5rem;
  font-size: .85rem;
  flex-shrink: 0;
}
.bw-copy-btn.is-copied { border-color: var(--gold); color: var(--gold); }
.bw-pay-microcopy { margin-top: 1rem; font-size: .85rem; color: var(--sand-dim); }
.bw-summary {
  margin-top: 1.4rem;
  padding: 1rem;
  border: 1px dashed var(--line);
  border-radius: 10px;
}
.bw-summary h3 { font-size: 1rem; margin-bottom: .7rem; }
.bw-summary-list { display: grid; grid-template-columns: auto 1fr; gap: .4rem 1rem; font-size: .88rem; }
.bw-summary-list dt { color: var(--pool-soft); }
.bw-summary-list dd { margin: 0; text-align: right; }

/* ---------- Bonus stack ---------- */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stack-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.stack-card:hover {
  border-color: rgba(201, 162, 39, .5);
  transform: translateY(-3px);
}
.stack-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
}
.stack-card h3 { margin-top: .6rem; }
.stack-card p { margin-top: .6rem; color: var(--sand-dim); font-size: .92rem; }
.stack-closer {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--sand);
  margin-top: 2.5rem;
}

/* ---------- Rooms ---------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.room-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.room-media { aspect-ratio: 16 / 10; overflow: hidden; }
.room-media img, .room-media video { width: 100%; height: 100%; object-fit: cover; }
.room-body { padding: 1.4rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.room-occ { display: flex; gap: .5rem; font-size: .8rem; color: var(--sand-dim); }
.room-features { display: flex; flex-direction: column; gap: .3rem; font-size: .88rem; color: var(--sand-dim); }
.room-features li::before { content: "— "; color: var(--pool-soft); }
.room-price { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; color: var(--gold); margin-top: auto; }
.room-price small { font-family: "Inter", sans-serif; font-size: .7rem; color: var(--sand-dim); text-transform: uppercase; letter-spacing: .08em; }
.room-card .btn { margin-top: .3rem; }
.rooms-microcopy { margin-top: 2rem; font-size: .88rem; color: var(--sand-dim); text-align: center; }

/* ---------- Ultra all inclusive ---------- */
.aic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.aic-text { position: sticky; top: 7rem; }
.aic-text .closer {
  margin-top: 1.6rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.4rem;
}
.aic-panel {
  aspect-ratio: 9 / 16;
  max-height: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 0 auto;
}
.aic-panel video { width: 100%; height: 100%; object-fit: cover; }
.aic-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 1.5rem;
  margin-top: 1.5rem;
}
.aic-checklist li {
  display: flex;
  gap: .5rem;
  font-size: .92rem;
  color: var(--sand-dim);
}
.aic-checklist .chip-check { color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ---------- Gallery ---------- */
.gallery-featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
}
.gallery-featured video { width: 100%; height: 100%; object-fit: cover; }
.gallery-featured.is-portrait { aspect-ratio: 9 / 16; max-width: 360px; margin-left: auto; margin-right: auto; }
.gallery-mute-btn {
  position: absolute;
  bottom: 1rem; right: 1rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(10, 20, 32, .7);
  border: 1px solid var(--line);
  color: var(--sand);
  font-size: 1.2rem;
  backdrop-filter: blur(6px);
}
.gallery-caption {
  margin-top: 1rem;
  color: var(--sand-dim);
  font-size: .92rem;
  text-align: center;
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  aspect-ratio: 21 / 10;
  gap: 1rem;
  margin-top: 1.5rem;
}
.mosaic-tile {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.mosaic-tile video, .mosaic-tile img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-tile.is-portrait { grid-row: span 2; }
.mosaic-tile.is-landscape { grid-column: span 2; }
.mosaic-tile.is-still { grid-column: span 2; }
.mosaic-tile.is-still img { object-position: 50% 32%; }

/* ---------- Hotel life strip ---------- */
.life-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.life-tile { margin: 0; }
.life-tile video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.life-tile figcaption {
  margin-top: .6rem;
  text-align: center;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sand-dim);
}

/* ---------- Reviews ---------- */
.reviews-chip {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: .85rem;
  margin-top: .8rem;
}
.reviews-chip strong { color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 1.1rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.review-stars { color: var(--gold); letter-spacing: .1em; }
.review-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.4;
}
/* "(translated from …)" tag under review quotes — marquee + Google cards */
.rev-lang {
  font-size: .72rem;
  font-style: normal;
  color: var(--pool-soft);
  letter-spacing: .02em;
  margin-top: -.35rem;
}
.review-attr { font-size: .8rem; color: var(--pool-soft); margin-top: auto; }

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 1rem;
}
.facts-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.6rem 0 2rem;
}
.facts-row li {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: .82rem;
  color: var(--sand-dim);
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 380px;
}
.map-embed iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(.2) contrast(.95);
}
.location-video {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 380px;
}
.location-video video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 46rem; margin: 2.5rem auto 0; }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}
.faq-list summary {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon {
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform .25s var(--ease);
  width: 1.4rem;
  text-align: center;
}
.faq-list p {
  margin-top: .9rem;
  color: var(--sand-dim);
  font-size: .95rem;
  max-width: 42rem;
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 8rem) 0;
}
.final-cta-video-wrap { position: absolute; inset: 0; z-index: 0; }
.final-cta-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.final-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,20,32,.75), rgba(10,20,32,.95));
  z-index: 1;
}
.final-cta .container { position: relative; z-index: 2; text-align: center; }
.final-cta h2 { margin-top: .6rem; }
.final-cta .lead { margin: 1rem auto 0; text-align: center; }
.final-cta .booking-widget { margin-top: 2.2rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-2);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-name { font-family: "Cormorant Garamond", serif; font-size: 1.3rem; }
.footer-name .stars { color: var(--gold); }
.footer-col { font-size: .88rem; color: var(--sand-dim); display: flex; flex-direction: column; gap: .5rem; }
.footer-links { display: flex; gap: 1.2rem; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  color: rgba(244,239,230,.4);
  text-align: center;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--stagger-i, 0) * 60ms); }

.reduced-motion-poster { opacity: 1; }

/* ---------- Responsive ---------- */
@media (min-width: 1600px) {
  .site-header .phone-link { display: inline; }
}
@media (min-width: 640px) {
  .mobile-menu .phone-link { display: inline; }
}

@media (max-width: 1023px) {
  .main-nav { display: none; }
  .life-strip { grid-template-columns: repeat(3, 1fr); }
  .nav-toggle { display: inline-flex; }
  .aic-grid { grid-template-columns: 1fr; }
  .aic-text { position: static; }
  .aic-panel { max-height: 480px; }
  .location-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .mobile-cta-bar { display: flex; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; aspect-ratio: auto; }
  .mosaic-tile.is-portrait { grid-row: auto; aspect-ratio: 9 / 16; }
  .mosaic-tile.is-portrait:nth-of-type(3) { display: none; }
  .mosaic-tile.is-landscape, .mosaic-tile.is-still { grid-column: span 2; aspect-ratio: 16 / 9; }
  .reviews-grid { grid-template-columns: 1fr; }
  .aic-checklist { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .stack-grid { grid-template-columns: 1fr; }
  .life-strip { grid-template-columns: repeat(2, 1fr); }
  .bw-field { flex: 1 1 100%; }
  .header-right .btn { display: none; }
  .logo { font-size: .92rem; letter-spacing: .01em; }
  .logo .stars { display: none; }
  .header-right { gap: .5rem; }
  .site-header .container { gap: .5rem; }
}

/* ==========================================================================
   v2 — copy-rebuild additions (hero sub/microcopy, promise, kids,
   amenity chips, roof grid, stack-line, location checklist/badge,
   photo grid, restaurant-bars gallery spacing)
   ========================================================================== */

/* ---------- Hero: minimal subhead + microcopy ---------- */
.hero-sub {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .85);
  max-width: 46ch;
  margin: 1.1rem auto 0;
  text-align: center;
  line-height: 1.6;
  text-shadow: 0 1px 16px rgba(10,20,32,.55);
}
.hero-microcopy {
  margin-top: 1.2rem;
  text-align: center;
  font-size: .8rem;
  color: var(--sand-dim);
}

/* ---------- Trust chips: plain descriptors with dot separators ---------- */
.trust-chips li + li::before {
  content: "·";
  color: var(--gold);
  margin-right: .4rem;
}

/* Desktop: the marquee wrapper is inert — only the first chip row shows,
   centered and wrapping exactly as before. The duplicate row is hidden. */
.trust-marquee { display: block; }
.trust-marquee .trust-chips[aria-hidden] { display: none; }

/* Mobile: one continuous auto-scrolling strip. The row is duplicated and the
   track slides by exactly one copy, so it loops seamlessly and nothing is ever
   stranded off the edge. The edge fade lives on the static viewport, not the
   moving track. Mobile takes priority. */
@media (max-width: 767px) {
  .hero-follow .container {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 1.6rem, #000 calc(100% - 1.6rem), transparent);
            mask-image: linear-gradient(to right, transparent, #000 1.6rem, #000 calc(100% - 1.6rem), transparent);
  }
  .trust-marquee {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: trust-scroll 22s linear infinite;
  }
  .trust-marquee .trust-chips {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    max-width: none;
    margin: 0;
    gap: 0 1.1rem;
    padding-right: 1.1rem;
  }
  .trust-marquee .trust-chips[aria-hidden] { display: flex; }
  .trust-marquee .trust-chips li { flex: 0 0 auto; white-space: nowrap; }
}

@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Booking.com review marquee ---------- */
a.reviews-chip { text-decoration: none; transition: border-color .2s ease; }
a.reviews-chip:hover { border-color: var(--gold); }

.review-marquee-wrap {
  overflow: hidden;
  margin-top: 2.4rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 2rem, #000 calc(100% - 2rem), transparent);
          mask-image: linear-gradient(to right, transparent, #000 2rem, #000 calc(100% - 2rem), transparent);
}
.review-marquee {
  display: flex;
  width: max-content;
  animation: trust-scroll 110s linear infinite;
}
.review-marquee:hover,
.review-marquee:focus-within { animation-play-state: paused; }
.brev-track { display: flex; gap: 1rem; padding-right: 1rem; }
.brev-card {
  flex: 0 0 auto;
  width: min(330px, 78vw);
  display: flex;
  flex-direction: column;
  gap: .65rem;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  transition: border-color .2s ease;
}
.brev-card:hover { border-color: var(--gold); }
.brev-top { display: flex; align-items: center; gap: .7rem; }
.brev-score {
  background: #003b95;            /* Booking.com blue */
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: .3rem .5rem;
  border-radius: 7px 7px 7px 0;   /* Booking-style score tile */
  line-height: 1;
  flex-shrink: 0;
}
.brev-meta { font-size: .74rem; color: var(--sand-dim); letter-spacing: .02em; }
.brev-quote { font-size: .9rem; color: var(--sand); line-height: 1.55; flex-grow: 1; }
.brev-attr { font-size: .76rem; color: var(--sand-dim); }
.brev-caption {
  margin-top: 1.1rem;
  text-align: center;
  font-size: .82rem;
  color: var(--sand-dim);
}

/* Review cards and score badges are now links out to the platforms */
a.review-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: border-color .2s ease; }
a.review-card:hover { border-color: var(--gold); }
a.promise-badge { text-decoration: none; transition: border-color .2s ease; border-color: rgba(255, 255, 255, .22); color: var(--sand); }
a.promise-badge:hover { border-color: #00bafc; }

/* ---------- Language selector ---------- */
.lang-select {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--sand-dim);
  font: inherit;
  font-size: .8rem;
  letter-spacing: .06em;
  padding: .45rem .5rem;
  cursor: pointer;
}
.lang-select:hover, .lang-select:focus { border-color: var(--gold); color: var(--sand); outline: none; }
.lang-select option { background: var(--ink-2); color: var(--sand); }

/* ---------- Booking flow v3: stay line, beds, requests, screenshot ---------- */
.bw-step-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .4rem 1rem;
}
.bw-stay-line {
  font-size: .95rem;
  color: var(--sand-dim);
  margin: 0;
}
.bw-back {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pool-soft);
  transition: color .2s ease;
  flex: 0 0 auto;
}
.bw-back::before { content: "‹ "; }
.bw-back:hover, .bw-back:focus-visible { color: var(--gold); }
.bw-payment-step .bw-step-head { margin-bottom: 1rem; }
.bw-field textarea {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--sand);
  padding: .7rem .9rem;
  font: inherit;
  font-size: .95rem;
  resize: vertical;
  min-height: 2.9rem;
}
.bw-field textarea:focus { border-color: var(--gold); outline: none; }
.bw-guest-fields .bw-field-wide { flex: 1 1 100%; }
.bw-beds {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.1rem;
}
.bw-beds-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pool-soft);
  margin-right: .3rem;
}
.bw-bed { position: relative; cursor: pointer; }
.bw-bed input { position: absolute; opacity: 0; pointer-events: none; }
.bw-bed span {
  display: inline-block;
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--sand-dim);
  transition: border-color .2s ease, color .2s ease;
}
.bw-bed input:checked + span { border-color: var(--gold); color: var(--gold-hi); }
.bw-bed input:focus-visible + span { outline: 2px solid var(--pool-soft); outline-offset: 2px; }

.bw-ref-note { margin-top: .8rem; font-size: .88rem; color: var(--gold-hi); }
.bw-shot { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.bw-shot-title { font-size: .9rem; color: var(--sand); margin-bottom: .8rem; }
.bw-dropzone {
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.bw-dropzone:hover, .bw-dropzone.is-drag { border-color: var(--gold); background: rgba(201, 162, 39, .05); }
.bw-dropzone.has-image { padding: .8rem; }
.bw-shot-hint { font-size: .84rem; color: var(--sand-dim); }
.bw-shot-preview { max-width: 100%; max-height: 200px; border-radius: 8px; display: block; margin: 0 auto; }
.bw-shot-actions { margin-top: .9rem; }
.bw-shot-status { font-size: .86rem; color: var(--sand-dim); }
.bw-shot-links { display: flex; gap: .7rem; margin-top: .8rem; flex-wrap: wrap; }
.bw-shot-links .btn { padding: .6rem 1.2rem; font-size: .78rem; }

/* ---------- Platform branding on review elements ---------- */
.brev-score { display: inline-block; }
.bdc-logo { color: #fff; font-weight: 700; letter-spacing: -.01em; }
.bdc-logo span { color: #00bafc; }
.brev-attr .bdc-logo { font-size: .8rem; }
a.reviews-chip, a.promise-badge { display: inline-flex; align-items: center; gap: .5rem; }
.g-icon { width: 15px; height: 15px; flex-shrink: 0; }
.review-attr { display: flex; align-items: center; gap: .5rem; }
.review-card .review-stars { color: #FBBC04; }

@media (prefers-reduced-motion: reduce) {
  .review-marquee { animation: none; width: auto; overflow-x: auto; }
  .review-marquee .brev-track[aria-hidden] { display: none; }
  .review-marquee-wrap { -webkit-mask-image: none; mask-image: none; }
}

/* Reduced motion: no auto-scroll. Fall back to a centered, wrapping row with
   no separator dots (so nothing orphans) and nothing off-screen. */
@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .hero-follow .container { overflow: visible; -webkit-mask-image: none; mask-image: none; }
  .trust-marquee { display: block; animation: none; width: auto; }
  .trust-marquee .trust-chips[aria-hidden] { display: none; }
  .trust-marquee .trust-chips { flex-wrap: wrap; justify-content: center; gap: .5rem 1.2rem; padding-right: 0; }
  .trust-marquee .trust-chips li + li::before { content: none; }
}

/* ---------- The Promise ---------- */
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.promise-text h2 { margin-top: .6rem; }
.promise-text p.lead { margin-top: 1.4rem; max-width: 52ch; }
.promise-text p.lead + p.lead { margin-top: 1.1rem; }
.promise-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
}
.promise-media video { width: 100%; height: 100%; object-fit: cover; }
.promise-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  display: inline-flex;
  align-items: baseline;
  gap: .4rem;
  background: rgba(10, 20, 32, .85);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: .6rem 1.1rem;
  font-size: .82rem;
  backdrop-filter: blur(6px);
}
.promise-badge strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--gold);
}

/* ---------- The Kids ---------- */
.kids-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}
.kids-media { display: flex; flex-direction: column; gap: 1.2rem; }
.kids-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.kids-media video {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.kids-blocks { display: flex; flex-direction: column; gap: 1.8rem; }
.kids-block h3 { font-size: 1.25rem; }
.kids-block p { margin-top: .5rem; color: var(--sand-dim); font-size: .95rem; }

/* ---------- Amenity chips (rooms) ---------- */
.amenity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.6rem;
}
.amenity-chips li {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: .82rem;
  color: var(--sand-dim);
}

/* ---------- Room showcase (replaces room-type cards) ---------- */
.room-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.room-clip { margin: 0; }
.room-clip video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.room-clip figcaption {
  margin-top: .6rem;
  text-align: center;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sand-dim);
}

.room-detail {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
.room-detail-media {
  aspect-ratio: 9 / 16;
  max-height: 620px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 0 auto;
  width: 100%;
}
.room-detail-media video { width: 100%; height: 100%; object-fit: cover; }

.room-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.room-highlight { border-left: 2px solid var(--gold); padding-left: 1.1rem; }
.room-highlight h3 { font-size: 1.15rem; }
.room-highlight p { margin-top: .35rem; color: var(--sand-dim); font-size: .95rem; }

.room-amenities { margin-top: 2rem; }
.room-amenities-title {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pool-soft);
  margin-bottom: 1rem;
}
.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem 1.5rem;
}
.amenity-list li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  color: var(--sand-dim);
}
.amenity-list li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---------- Everything under one roof ---------- */
.roof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.roof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  text-align: center;
  padding: 1.6rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.roof-icon { color: var(--gold); }
.roof-item span { font-size: .85rem; color: var(--sand-dim); }

/* ---------- Restaurant & bars: gap between the two-col intro and gallery ---------- */
.rb-gallery { margin-top: clamp(3rem, 6vw, 5rem); }

/* ---------- Bonus stack: one-liner cards ---------- */
.stack-line { margin-top: .6rem; }
.stack-card .stack-line strong { color: var(--sand); font-weight: 700; }

/* ---------- Location: checklist + map badge ---------- */
.location-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem 2rem;
  margin: 1.8rem 0 2rem;
  max-width: 46rem;
}
.location-checklist li {
  display: flex;
  gap: .5rem;
  font-size: .95rem;
  color: var(--sand-dim);
}
.location-checklist .chip-check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.location-map { max-width: 760px; margin: 1rem auto 0; }
.map-embed { position: relative; }
.map-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(10, 20, 32, .88);
  border: 1.5px solid var(--gold);
  color: var(--gold-hi);
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  backdrop-filter: blur(6px);
}

/* ---------- See for yourself: photo grid ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.photo-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
}
.photo-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- v2 balance fixes ---------- */
.kids-grid { grid-template-columns: 5fr 6fr; align-items: center; }
.kids-media video { aspect-ratio: 1 / 1; }
.kids-media video.is-wide { aspect-ratio: 16 / 9; }
#restaurant-bars .aic-grid { align-items: center; }
#restaurant-bars .aic-text { position: static; }
#restaurant-bars .aic-panel { max-height: 560px; }

/* ---------- v2 responsive ---------- */
@media (max-width: 1023px) {
  .promise-grid { grid-template-columns: 1fr; }
  .kids-grid { grid-template-columns: 1fr; }
  .roof-grid { grid-template-columns: repeat(3, 1fr); }
  .room-detail { grid-template-columns: 1fr; gap: 2rem; }
  .room-detail-media { max-height: 520px; max-width: 380px; }
}
@media (max-width: 767px) {
  .location-checklist { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .room-strip { grid-template-columns: 1fr; }
  .room-clip video { aspect-ratio: 16 / 10; }
}
@media (max-width: 640px) {
  .roof-grid { grid-template-columns: repeat(2, 1fr); }
}
