/* Villa Bokaa page styles — ported from newdesign.bokaa.ro; scoped under .villa-page where possible */


.villa-page {
  /* Brand tokens from newdesign — required for section backgrounds / on-dark text */
  --color-gold: #b8995a;
  --color-teal: #8bbdb7;
  --color-teal-deep: #457a74;
  --color-teal-mist: #9fcfcb;
  --color-abyss: #0f1c1b;
  --color-stone: #edf0ee;
  --color-stone-2: #e2e7e5;
  --color-ink: #1d1d1d;
  --color-paper: #f4f1ea;
  --color-muted: rgba(29, 29, 29, 0.62);
  --stay-ease: cubic-bezier(0.16, 0.84, 0.24, 1);
  --font-display: "Marcellus", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --wrap: min(1120px, calc(100% - 2 * clamp(16px, 4vw, 40px)));
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-stone);
  overflow-x: clip;
}
.villa-page .wrap {
  width: var(--wrap);
  margin-inline: auto;
}
.villa-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0;
}
.villa-page .eyebrow::before {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: var(--color-gold);
}
.villa-page .lede {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0;
}
.villa-page .on-dark .lede { color: rgb(237 240 238 / 0.62); }
.villa-page h1,
.villa-page h2,
.villa-page h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: inherit;
}
.villa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: filter 0.16s ease, border-color 0.16s ease, background 0.16s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.villa-btn--gold {
  background: var(--color-gold);
  color: #0a1413 !important;
}
.villa-btn--gold:hover { filter: brightness(1.06); color: #0a1413 !important; }
.villa-btn--line-light {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,0.45);
}
.villa-btn--line-light:hover { border-color: #fff; color: #fff !important; }

  .bento-gallery-head p,
  .blog-thesis-in .lede,
  .blog-feature-excerpt,
  .blog-story-body p,
  .blog-article-intro p,
  .blog-article-prose p,
  .blog-article-band p,
  .blog-article-band .lede,
  .blog-article-head .lede,
  .blog-steps span,
  .blog-checklist span,
  .blog-mistakes p,
  .blog-pillars p,
  .blog-note,
  .blog-pullquote blockquote p,
  .blog-faq-answer p,
  .blog-cta-in .lede,
  .blog-cta-in > p {
    text-align: justify;
    text-wrap: pretty;
    hyphens: auto;
  }
  .hero-poster-picture {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: none;
  }
  .hero-bg[data-mode='file'] .hero-poster-picture,
  .hero-bg[data-mode='file'] .hero-poster {
    display: none !important;
  }
  .hero-bg[data-mode='poster'] .hero-poster-picture {
    display: block;
  }
  .hero-bg[data-mode='poster'] .hero-poster {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 28%;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--color-abyss);
  }
  .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(15 28 27 / 0.46) 0%, rgb(15 28 27 / 0.06) 30%, rgb(15 28 27 / 0.9) 100%);
    z-index: 2;
    pointer-events: none;
  }
  .hero-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-bg[data-mode='poster'] .hero-video {
    visibility: hidden;
  }
  .hero-bg[data-mode='poster'] .hero-poster {
    display: block;
  }
  .hero-poster {
    display: none;
    object-position: 50% 22%;
  }
  .hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.82);
  }
  .hero-meta::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--color-gold);
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
    align-items: center;
  }
  .hero-btn-line {
    color: #fff !important;
    border-color: rgb(255 255 255 / 0.35) !important;
  }
  .hero-btn-line:hover {
    background: #fff !important;
    color: var(--color-abyss) !important;
  }
  .hero-btn-villa {
    color: #f0e2c4 !important;
    border-color: rgb(184 153 90 / 0.55) !important;
    background: rgb(184 153 90 / 0.14) !important;
    letter-spacing: 0.12em;
  }
  .hero-btn-villa:hover,
  .hero-btn-villa:focus-visible {
    color: #fff !important;
    border-color: var(--color-gold) !important;
    background: rgb(184 153 90 / 0.28) !important;
  }
.bento-gallery {
  scroll-margin-top: 0;
  background: var(--color-abyss);
  color: var(--color-stone);
  padding: clamp(48px, 7vw, 96px) 0;
}
.bento-gallery-head h2 {
  color: #fff;
}
.bento-gallery-head .eyebrow {
  color: var(--color-teal-mist);
}
.bento-gallery-head p {
  color: rgb(237 240 238 / 0.62) !important;
}
.bento-gallery-bleed {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(6px, 0.9vw, 12px);
}
.bento-gallery-bleed .bento-gallery-films {
  margin-top: clamp(20px, 3vw, 32px);
}
.bento-gallery-films {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 14px);
  margin: clamp(28px, 4vw, 44px) 0 clamp(14px, 2vw, 20px);
}
.bento-gallery-film {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-abyss);
  cursor: pointer;
  color: #fff;
  text-align: left;
}
.bento-gallery-film-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1.01);
  transition: opacity 0.55s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(0.94) contrast(1.04);
}
.bento-gallery-film:hover .bento-gallery-film-poster,
.bento-gallery-film:focus-visible .bento-gallery-film-poster {
  opacity: 0.95;
  transform: scale(1.05);
}
.bento-gallery-film-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgb(15 28 27 / 0.72) 100%),
    linear-gradient(90deg, rgb(15 28 27 / 0.28), transparent 45%);
  pointer-events: none;
}
.bento-gallery-film-play {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(237 240 238 / 0.42);
  background: rgb(15 28 27 / 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.bento-gallery-film:hover .bento-gallery-film-play,
.bento-gallery-film:focus-visible .bento-gallery-film-play {
  border-color: var(--color-gold);
  background: rgb(15 28 27 / 0.72);
  transform: scale(1.04);
}
.bento-gallery-film-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}
.bento-gallery-film-kicker {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.bento-gallery-film-title {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  color: rgb(237 240 238 / 0.94);
  font-variation-settings: "SOFT" 20, "WONK" 1;
}
.bento-gallery-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.4vw, 14px);
  margin-top: clamp(8px, 1.5vw, 16px);
}
.bento-board {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(180px, 22vw));
  gap: clamp(6px, 0.7vw, 10px);
}
.bento-cell {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--color-abyss);
  cursor: pointer;
  isolation: isolate;
}
.bento-cell[data-span="hero"] {
  grid-column: 1 / span 6;
  grid-row: 1 / span 2;
}
.bento-cell[data-span="wide"] {
  grid-column: 7 / span 6;
  grid-row: 2;
}
.bento-cell[data-span="sm"]:nth-child(2) {
  grid-column: 7 / span 3;
  grid-row: 1;
}
.bento-cell[data-span="sm"]:nth-child(3) {
  grid-column: 10 / span 3;
  grid-row: 1;
}
.bento-cell[data-span="sm"]:nth-child(5) {
  grid-column: 1 / span 4;
  grid-row: 3;
}
.bento-cell[data-span="sm"]:nth-child(6) {
  grid-column: 5 / span 4;
  grid-row: 3;
}
.bento-cell[data-span="sm"]:nth-child(7) {
  grid-column: 9 / span 4;
  grid-row: 3;
}
.bento-board[data-mirror="1"] .bento-cell[data-span="hero"] {
  grid-column: 7 / span 6;
  grid-row: 1 / span 2;
}
.bento-board[data-mirror="1"] .bento-cell[data-span="sm"]:nth-child(2) {
  grid-column: 1 / span 3;
  grid-row: 1;
}
.bento-board[data-mirror="1"] .bento-cell[data-span="sm"]:nth-child(3) {
  grid-column: 4 / span 3;
  grid-row: 1;
}
.bento-board[data-mirror="1"] .bento-cell[data-span="wide"] {
  grid-column: 1 / span 6;
  grid-row: 2;
}
.bento-board[data-count="1"] {
  grid-template-rows: minmax(220px, 36vw);
}
.bento-cell[data-span="full"] {
  grid-column: 1 / -1;
  grid-row: 1;
}
.bento-board[data-count="2"] {
  grid-template-rows: minmax(220px, 32vw);
}
.bento-cell[data-span="half"] {
  grid-column: span 6;
  grid-row: 1;
}
.bento-board[data-count="3"] {
  grid-template-rows: repeat(2, minmax(180px, 22vw));
}
.bento-cell[data-span="third"] {
  grid-column: span 4;
  grid-row: 1 / span 2;
}
.bento-board[data-count="4"] {
  grid-template-rows: repeat(2, minmax(180px, 22vw));
}
.bento-board[data-count="5"] {
  grid-template-rows: repeat(3, minmax(160px, 18vw));
}
.bento-board[data-count="5"] .bento-cell[data-span="full"] {
  grid-column: 1 / -1;
  grid-row: 3;
}
.bento-board[data-count="6"] {
  grid-template-rows: repeat(3, minmax(160px, 18vw));
}
.bento-board[data-count="6"] .bento-cell[data-span="half"] {
  grid-row: 3;
}
.bento-board[data-count="6"] .bento-cell[data-span="half"]:nth-child(5) {
  grid-column: 1 / span 6;
}
.bento-board[data-count="6"] .bento-cell[data-span="half"]:nth-child(6) {
  grid-column: 7 / span 6;
}
.bento-cell-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
  filter: saturate(0.95) contrast(1.03);
}
.bento-cell:hover .bento-cell-img,
.bento-cell:focus-visible .bento-cell-img {
  transform: scale(1.07);
  filter: saturate(1) contrast(1.05);
}
.bento-cell-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgb(15 28 27 / 0.45) 100%);
  opacity: 0.55;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.bento-cell:hover .bento-cell-veil,
.bento-cell:focus-visible .bento-cell-veil {
  opacity: 0.85;
}
.bento-cell-frame {
  position: absolute;
  inset: 10px;
  border: 1px solid rgb(237 240 238 / 0);
  transition: border-color 0.35s ease, inset 0.35s ease;
  pointer-events: none;
  z-index: 2;
}
.bento-cell:hover .bento-cell-frame,
.bento-cell:focus-visible .bento-cell-frame {
  border-color: rgb(184 153 90 / 0.55);
}
.bento-cell-index {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgb(237 240 238 / 0);
  transition: color 0.35s ease;
  pointer-events: none;
  font-variation-settings: "SOFT" 10, "WONK" 0;
}
.bento-cell:hover .bento-cell-index,
.bento-cell:focus-visible .bento-cell-index {
  color: rgb(237 240 238 / 0.78);
}
.bento-cell-cap {
  display: none;
}
.bento-gallery-more {
  margin-top: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.bento-gallery-count {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(237 240 238 / 0.42);
}
.bento-gallery-toggle {
  appearance: none;
  background: transparent;
  border: 1px solid rgb(237 240 238 / 0.28);
  color: rgb(237 240 238 / 0.88);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.bento-gallery-toggle:hover,
.bento-gallery-toggle:focus-visible {
  border-color: var(--color-gold);
  color: #fff;
  background: rgb(184 153 90 / 0.12);
}
.bento-lightbox-figure {
  margin: 0;
  display: grid;
  place-items: center;
  gap: 14px;
  width: min(1100px, 100%);
  max-width: 100%;
  min-width: 0;
}
.bento-lightbox-figure img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(78vh, calc(100dvh - 120px));
  object-fit: contain;
  box-shadow: 0 24px 80px rgb(0 0 0 / 0.35);
}
.bento-lightbox-count {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: rgb(237 240 238 / 0.55);
  text-align: center;
}
@media (max-width: 900px) {
  .bento-gallery-films {
    grid-template-columns: 1fr;
  }

  .bento-board {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(120px, 28vw));
  }

  .bento-cell[data-span="hero"] {
    grid-column: 1 / span 6;
    grid-row: 1 / span 2;
  }

  .bento-cell[data-span="sm"]:nth-child(2) {
    grid-column: 1 / span 3;
    grid-row: 3;
  }

  .bento-cell[data-span="sm"]:nth-child(3) {
    grid-column: 4 / span 3;
    grid-row: 3;
  }

  .bento-cell[data-span="wide"] {
    grid-column: 1 / span 6;
    grid-row: 4;
  }

  .bento-cell[data-span="sm"]:nth-child(5),
  .bento-cell[data-span="sm"]:nth-child(6),
  .bento-cell[data-span="sm"]:nth-child(7) {
    grid-column: span 2;
    grid-row: auto;
  }

  .bento-board:has(.bento-cell:nth-child(5)) {
    grid-template-rows: repeat(5, minmax(110px, 24vw));
  }

  .bento-cell[data-span="sm"]:nth-child(5) {
    grid-column: 1 / span 2;
    grid-row: 5;
  }

  .bento-cell[data-span="sm"]:nth-child(6) {
    grid-column: 3 / span 2;
    grid-row: 5;
  }

  .bento-cell[data-span="sm"]:nth-child(7) {
    grid-column: 5 / span 2;
    grid-row: 5;
  }

  .bento-board[data-count="1"] {
    grid-template-rows: minmax(180px, 42vw);
  }

  .bento-board[data-count="1"] .bento-cell[data-span="full"] {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .bento-board[data-count="2"] {
    grid-template-rows: minmax(160px, 36vw);
  }

  .bento-board[data-count="2"] .bento-cell[data-span="half"] {
    grid-column: span 3;
    grid-row: 1;
  }

  .bento-board[data-count="3"] {
    grid-template-rows: minmax(160px, 36vw);
  }

  .bento-board[data-count="3"] .bento-cell[data-span="third"] {
    grid-column: span 2;
    grid-row: 1;
  }

  .bento-board[data-count="4"] {
    grid-template-rows: repeat(3, minmax(120px, 28vw));
  }

  .bento-board[data-count="5"] {
    grid-template-rows: repeat(4, minmax(110px, 24vw));
  }

  .bento-board[data-count="5"] .bento-cell[data-span="full"] {
    grid-column: 1 / -1;
    grid-row: 4;
  }

  .bento-board[data-count="6"] {
    grid-template-rows: repeat(4, minmax(110px, 24vw));
  }

  .bento-board[data-count="6"] .bento-cell[data-span="half"] {
    grid-row: 4;
  }

  .bento-board[data-count="6"] .bento-cell[data-span="half"]:nth-child(5) {
    grid-column: 1 / span 3;
  }

  .bento-board[data-count="6"] .bento-cell[data-span="half"]:nth-child(6) {
    grid-column: 4 / span 3;
  }
}
@media (max-width: 640px) {
  .bento-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(148px, 36vw);
    grid-template-rows: unset;
  }

  /* Kill desktop/tablet explicit placements — they leave empty tracks on 2-col. */
  .bento-cell[data-span="hero"],
  .bento-cell[data-span="wide"],
  .bento-cell[data-span="full"],
  .bento-cell[data-span="half"],
  .bento-cell[data-span="third"],
  .bento-cell[data-span="sm"],
  .bento-cell[data-span="sm"]:nth-child(2),
  .bento-cell[data-span="sm"]:nth-child(3),
  .bento-cell[data-span="sm"]:nth-child(5),
  .bento-cell[data-span="sm"]:nth-child(6),
  .bento-cell[data-span="sm"]:nth-child(7),
  .bento-board[data-mirror="1"] .bento-cell[data-span="hero"],
  .bento-board[data-mirror="1"] .bento-cell[data-span="wide"],
  .bento-board[data-mirror="1"] .bento-cell[data-span="sm"]:nth-child(2),
  .bento-board[data-mirror="1"] .bento-cell[data-span="sm"]:nth-child(3),
  .bento-board[data-count="1"] .bento-cell[data-span="full"],
  .bento-board[data-count="2"] .bento-cell[data-span="half"],
  .bento-board[data-count="3"] .bento-cell[data-span="third"],
  .bento-board[data-count="5"] .bento-cell[data-span="full"],
  .bento-board[data-count="6"] .bento-cell[data-span="half"],
  .bento-board[data-count="6"] .bento-cell[data-span="half"]:nth-child(5),
  .bento-board[data-count="6"] .bento-cell[data-span="half"]:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  /* Lead image full-bleed; remaining cells pair on 2 columns.
     Specificity must beat mirror/sm nth-child resets above. */
  .bento-board > .bento-cell:first-child,
  .bento-board[data-mirror="1"] > .bento-cell:first-child,
  .bento-board[data-count] > .bento-cell:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: min(52vw, 280px);
  }

  /* Even board counts → odd remainder after lead → last cell spans full. */
  .bento-board[data-count="2"] > .bento-cell:last-child,
  .bento-board[data-count="4"] > .bento-cell:last-child,
  .bento-board[data-count="6"] > .bento-cell:last-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: min(42vw, 220px);
  }

  .bento-cell-index {
    color: rgb(237 240 238 / 0.55);
  }

  .bento-cell-frame {
    inset: 8px;
    border-color: rgb(237 240 238 / 0.12);
  }

  .villa-page .villa-gallery .bento-gallery-bleed {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}
.stay-hero {
  min-height: min(88svh, 900px);
  height: auto;
  max-height: none;
  box-sizing: border-box;
  align-items: stretch;
  padding: clamp(100px, 12vh, 130px) clamp(16px, 3.2vw, 40px) clamp(28px, 4vh, 48px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(12px, 1.8vh, 18px);
}
.stay-hero .hero-bg::after {
  background:
    linear-gradient(180deg, rgb(15 28 27 / 0.55) 0%, rgb(15 28 27 / 0.18) 32%, rgb(15 28 27 / 0.55) 58%, rgb(15 28 27 / 0.96) 100%),
    linear-gradient(105deg, rgb(15 28 27 / 0.72) 0%, transparent 55%);
}
.stay-hero-veil {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgb(15 28 27 / 0.94));
}
.stay-hero-in {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  margin-bottom: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.stay-hero .hero-meta {
  margin-bottom: 10px;
}
.stay-hero h1 {
  margin: 0 0 10px;
  max-width: none;
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 0.98;
  display: flex;
  flex-direction: column;
  gap: 0.06em;
}
.stay-hero-h1-a {
  color: #fff;
}
.stay-hero-h1-b {
  color: var(--color-gold);
  font-size: 0.72em;
}
.stay-hero-lede {
  margin: 0 0 16px;
  max-width: 40ch;
  color: rgb(237 240 238 / 0.78);
  font-size: clamp(14px, 1.25vw, 17px);
}
.stay-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stay-hero .hero-btn-line {
  background: rgb(15 28 27 / 0.42);
  backdrop-filter: blur(8px);
}
.stay-hero-rail {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 0 0 auto;
  padding: clamp(12px, 1.6vh, 16px) 0 0;
  border-top: 1px solid rgb(237 240 238 / 0.12);
  display: grid;
  gap: clamp(10px, 1.4vh, 14px);
}
.stay-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.stay-hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stay-hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  color: var(--color-gold);
}
.stay-hero-stat-unit {
  font-size: 0.55em;
  margin-left: 1px;
}
.stay-hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(237 240 238 / 0.5);
}
.stay-hero-jump {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.stay-hero-jump-link {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  min-height: 68px;
  max-height: 76px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgb(237 240 238 / 0.18);
  background: rgb(15 28 27 / 0.45);
  backdrop-filter: blur(10px);
  color: #fff;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.35s var(--stay-ease);
}
.stay-hero-jump-link:hover,
.stay-hero-jump-link:focus-visible {
  border-color: rgb(201 169 98 / 0.7);
  transform: translateY(-1px);
  outline: none;
}
.stay-hero-jump-media {
  display: block;
  overflow: hidden;
  background: var(--color-abyss);
}
.stay-hero-jump-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--stay-ease);
}
.stay-hero-jump-link:hover .stay-hero-jump-media img {
  transform: scale(1.06);
}
.stay-hero-jump-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  padding: 8px 10px 8px 0;
}
.stay-hero-jump-idx {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--color-gold);
}
.stay-hero-jump-name {
  font-size: 14px;
  line-height: 1.2;
}
.stay-hero-jump-meta {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(237 240 238 / 0.5);
}
@media (max-width: 900px) {
  .stay-hero {
    min-height: min(92svh, 860px);
    padding-top: clamp(88px, 11vh, 120px);
    padding-bottom: clamp(24px, 4vh, 40px);
  }

  .stay-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stay-hero-jump {
    grid-template-columns: 1fr;
  }

  .stay-hero-jump-link {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 60px;
    max-height: none;
  }
}
@media (max-height: 760px) and (min-width: 901px) {
  .stay-hero {
    min-height: min(88svh, 760px);
    padding-top: clamp(72px, 10vh, 100px);
    padding-bottom: 24px;
    gap: 10px;
  }

  .stay-hero h1 {
    font-size: clamp(28px, 4vw, 48px);
  }

  .stay-hero-lede {
    margin-bottom: 12px;
  }

  .stay-hero-stat-value {
    font-size: 20px;
  }

  .stay-hero-jump-link {
    min-height: 54px;
    max-height: 58px;
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .stay-hero-rail {
    gap: 8px;
    padding-top: 10px;
  }
}
@media (max-width: 720px) {
  .stay-gallery .bento-cell-index,
  .stay-gallery .bento-cell-cap {
    color: rgb(237 240 238 / 0.78);
  }

  .stay-gallery .bento-cell-index {
    color: var(--color-gold);
  }
}
.villa-page .villa-hero {
  position: relative;
  min-height: min(92vh, 980px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(36px, 5vw, 64px);
  color: #fff; /* newdesign .hero — title/lede must stay light on dark poster */
}
.villa-page .villa-hero h1 {
  color: #fff;
  text-shadow: 0 2px 40px rgb(15 28 27 / 0.4);
}
.villa-page .villa-hero .lede,
.villa-page .villa-hero .stay-hero-lede {
  color: rgb(237 240 238 / 0.78);
}
.villa-hero-glow {
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 18% 88%, rgb(184 153 90 / 0.16), transparent 62%),
    linear-gradient(180deg, transparent, rgb(8 16 15 / 0.55) 40%, rgb(8 16 15 / 0.92));
}
.villa-hero-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 360px);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: end;
  width: 100%;
}
.villa-hero-copy {
  max-width: 36rem;
  padding-bottom: clamp(8px, 1.5vw, 20px);
}
.villa-hero-copy .hero-meta {
  margin-bottom: 12px;
}
.villa-hero-copy h1 {
  margin: 0 0 12px;
  max-width: none;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.02em;
}
.villa-hero-copy .stay-hero-lede {
  max-width: 38ch;
  margin-bottom: 22px;
}
.villa-page .villa-hero .stay-hero-actions {
  gap: 12px;
}
.villa-hero-video {
  margin: 0;
  width: 100%;
  max-width: 360px;
  justify-self: end;
  aspect-ratio: 9 / 16;
  background: #0a1413;
  overflow: clip;
  border: 1px solid rgb(237 240 238 / 0.18);
  box-shadow:
    0 28px 80px rgb(0 0 0 / 0.45),
    0 0 0 1px rgb(184 153 90 / 0.14);
  scroll-margin-top: 96px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}
.villa-hero-video:hover {
  transform: translateY(-4px);
  box-shadow:
    0 36px 90px rgb(0 0 0 / 0.5),
    0 0 0 1px rgb(184 153 90 / 0.22);
}
.villa-video-shell {
  position: relative;
  margin: 0;
  isolation: isolate;
}
.villa-video-player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  cursor: pointer;
}
.villa-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #1a1510;
  background: rgb(212 175 98 / 0.94);
  box-shadow:
    0 12px 36px rgb(0 0 0 / 0.35),
    0 0 0 1px rgb(255 255 255 / 0.18);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}
.villa-video-play:hover,
.villa-video-play:focus-visible {
  transform: scale(1.06);
  background: rgb(232 196 118 / 0.98);
  outline: none;
}
.villa-video-play svg {
  margin-left: 3px;
}
.villa-video--mobile {
  display: none;
  background: var(--color-abyss);
  color: var(--color-stone);
  padding: clamp(48px, 7vw, 96px) 0;
}
.villa-video-in {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}
.villa-video-copy .lede {
  color: rgb(237 240 238 / 0.62);
  max-width: 42ch;
  margin-top: 14px;
}
.villa-video-frame {
  margin: 0;
  width: min(100%, 320px);
  aspect-ratio: 9 / 16;
  background: #0a1413;
  overflow: clip;
  box-shadow: 0 28px 80px rgb(0 0 0 / 0.4);
  border: 1px solid rgb(237 240 238 / 0.12);
}
.villa-facts {
  background: var(--color-stone);
  color: var(--color-ink);
  padding: clamp(56px, 8vw, 110px) 0;
}
.villa-facts-head {
  margin-bottom: clamp(32px, 4.5vw, 56px);
  max-width: 52ch;
}
.villa-facts-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 48px) clamp(20px, 3vw, 40px);
  border-top: 1px solid rgb(29 29 29 / 0.12);
  padding-top: clamp(28px, 4vw, 40px);
}
.villa-facts-grid li {
  padding: 0;
  border: 0;
  background: transparent;
  position: relative;
}
.villa-facts-item--lead .villa-facts-k {
  font-size: clamp(48px, 6.2vw, 72px);
}
.villa-facts-k {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 300;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--color-gold);
  margin-bottom: 10px;
  line-height: 0.92;
  font-variation-settings: "SOFT" 22, "WONK" 0, "opsz" 96;
}
.villa-facts-grid h3 {
  font-size: clamp(13px, 1.1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.villa-facts-grid p {
  margin: 0;
  color: rgb(29 29 29 / 0.58);
  max-width: 30ch;
  font-size: 14.5px;
  line-height: 1.55;
}
.villa-included {
  background: var(--color-abyss);
  color: var(--color-stone);
  padding: clamp(56px, 8vw, 110px) 0;
  border-top: 1px solid rgb(237 240 238 / 0.08);
}
.villa-included-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: stretch;
}
.villa-included-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.villa-included-head {
  margin-bottom: clamp(24px, 3.5vw, 36px);
  max-width: 42ch;
}
.villa-included-head h2 {
  color: #fff;
  margin-top: 10px;
}
.villa-included-head .eyebrow,
.villa-brochure-copy .eyebrow,
.villa-experiences-head .eyebrow {
  color: var(--color-gold);
}
.villa-included-head .eyebrow::before,
.villa-brochure-copy .eyebrow::before,
.villa-experiences-head .eyebrow::before {
  background: var(--color-gold);
}
.villa-included-head .lede {
  color: rgb(237 240 238 / 0.62);
  margin-top: 14px;
}
.villa-included-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgb(237 240 238 / 0.14);
}
.villa-included-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgb(237 240 238 / 0.12);
  font-size: 15px;
  line-height: 1.5;
  color: rgb(237 240 238 / 0.92);
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 12px;
  align-items: baseline;
}
.villa-included-list li::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--color-gold);
  margin-top: 0.65em;
}
.villa-included-aside {
  margin-top: auto;
  padding-top: clamp(22px, 3vw, 32px);
  max-width: 48ch;
}
.villa-included-note,
.villa-included-bespoke {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
  color: rgb(237 240 238 / 0.58);
}
.villa-included-bespoke {
  margin-bottom: 20px;
}
.villa-included-media {
  margin: 0;
  position: relative;
  min-height: min(72vh, 640px);
  overflow: clip;
  background: #0a1413;
  border: 1px solid rgb(237 240 238 / 0.1);
}
.villa-included-media img,
.villa-included-media .villa-clip {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.villa-included-media:hover img,
.villa-included-media:hover .villa-clip {
  transform: scale(1.03);
}
.villa-included-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgb(8 16 15 / 0.35), transparent 42%),
    linear-gradient(90deg, rgb(8 16 15 / 0.28), transparent 35%);
}
.villa-spaces {
  background: var(--color-stone);
  color: var(--color-ink);
  padding: clamp(56px, 8vw, 110px) 0;
  border-top: 1px solid rgb(29 29 29 / 0.06);
}
.villa-spaces-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 64px);
  max-width: none;
  padding-bottom: clamp(28px, 3.5vw, 40px);
  border-bottom: 1px solid rgb(29 29 29 / 0.12);
}
.villa-spaces-head-main {
  min-width: 0;
}
.villa-spaces-head .eyebrow {
  color: var(--color-gold);
}
.villa-spaces-head .eyebrow::before {
  background: var(--color-gold);
}
.villa-spaces-head h2 {
  color: var(--color-ink);
  margin-top: 10px;
  max-width: 16ch;
}
.villa-spaces-head .lede {
  margin: 0;
  color: rgb(29 29 29 / 0.58);
  max-width: 36ch;
  justify-self: end;
}
.villa-spaces-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px) clamp(14px, 2vw, 22px);
}
.villa-space-card {
  grid-column: span 4;
  display: grid;
  grid-template-rows: minmax(220px, 22vw) auto;
  background: transparent;
  border: 0;
  overflow: clip;
}
.villa-space-card--feature {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  grid-template-rows: minmax(300px, 38vw);
  align-items: stretch;
  margin-bottom: clamp(8px, 1.5vw, 16px);
  background: #fff;
  border: 1px solid rgb(29 29 29 / 0.08);
}
.villa-space-media {
  min-height: 0;
  overflow: clip;
  position: relative;
}
.villa-space-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgb(15 28 27 / 0.22));
  pointer-events: none;
  opacity: 0.85;
}
.villa-space-card--feature .villa-space-media::after {
  background: linear-gradient(90deg, transparent 45%, rgb(15 28 27 / 0.08));
  opacity: 1;
}
.villa-space-media img,
.villa-space-media .villa-clip {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.villa-space-card:hover .villa-space-media img,
.villa-space-card:hover .villa-space-media .villa-clip {
  transform: scale(1.04);
}
.villa-space-copy {
  padding: clamp(16px, 2vw, 22px) 2px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.villa-space-card--feature .villa-space-copy {
  padding: clamp(28px, 4vw, 52px) clamp(22px, 3.2vw, 44px);
}
.villa-space-idx {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}
.villa-space-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--color-ink);
  line-height: 1.12;
}
.villa-space-card--feature .villa-space-copy h3 {
  font-size: clamp(26px, 3vw, 40px);
}
.villa-space-copy p {
  margin: 0;
  color: rgb(29 29 29 / 0.58);
  max-width: 40ch;
  font-size: 15px;
  line-height: 1.6;
}
.villa-experiences {
  background: var(--color-abyss);
  color: var(--color-stone);
  padding: clamp(56px, 8vw, 110px) 0;
}
.villa-experiences-head {
  margin-bottom: clamp(32px, 4.5vw, 56px);
  max-width: 48ch;
}
.villa-experiences-head h2 {
  color: #fff;
}
.villa-experiences-head .lede {
  color: rgb(237 240 238 / 0.6);
}
.villa-experiences-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgb(237 240 238 / 0.14);
}
.villa-moments {
  background: var(--color-stone);
  color: var(--color-ink);
  padding: clamp(56px, 8vw, 110px) 0;
  border-top: 1px solid rgb(29 29 29 / 0.06);
}
.villa-moments-head {
  margin-bottom: clamp(32px, 4.5vw, 56px);
  max-width: 48ch;
}
.villa-moments-head h2 {
  margin: 12px 0 14px;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
}
.villa-moments-head .lede {
  margin: 0;
  color: rgb(29 29 29 / 0.7);
}
.villa-moments-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
}
.villa-moments-cell {
  margin: 0;
  grid-column: span 4;
  overflow: clip;
  aspect-ratio: 16 / 10;
  background: #0a1413;
}
.villa-moments-cell:nth-child(n + 4) {
  grid-column: span 6;
  aspect-ratio: 16 / 9;
}
.villa-moments-cell .villa-clip {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .villa-moments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .villa-moments-cell,
  .villa-moments-cell:nth-child(n + 4) {
    grid-column: auto;
    aspect-ratio: 16 / 10;
  }

  .villa-moments-cell:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .villa-moments-grid {
    grid-template-columns: 1fr;
  }

  .villa-moments-cell:last-child:nth-child(odd) {
    grid-column: auto;
  }
}
.villa-experience {
  padding: clamp(28px, 3.5vw, 40px) clamp(16px, 2.5vw, 32px) clamp(28px, 3.5vw, 40px) 0;
  border: 0;
  border-bottom: 1px solid rgb(237 240 238 / 0.12);
  background: transparent;
  position: relative;
  transition: background 0.35s ease;
}
.villa-experience:nth-child(odd) {
  padding-right: clamp(20px, 3vw, 40px);
  border-right: 1px solid rgb(237 240 238 / 0.1);
}
.villa-experience:nth-child(even) {
  padding-left: clamp(20px, 3vw, 40px);
}
.villa-experience:hover {
  background: rgb(255 255 255 / 0.04);
}
.villa-experience-idx {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.villa-experience h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.12;
  color: #fff;
}
.villa-experience-lede {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgb(237 240 238 / 0.62);
  max-width: 38ch;
}
.villa-experience-ideal {
  margin: 0 0 8px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.villa-experience ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.villa-experience li {
  padding: 7px 0;
  border-top: 1px solid rgb(237 240 238 / 0.1);
  font-size: 14px;
  color: rgb(237 240 238 / 0.82);
}
.villa-brochure {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: var(--color-abyss);
  color: var(--color-stone);
  padding: clamp(72px, 10vw, 140px) 0;
  border-top: 0;
}
.villa-brochure-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.villa-brochure-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.78) brightness(0.55);
  transform: scale(1.03);
}
.villa-brochure-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgb(8 16 15 / 0.92) 0%, rgb(8 16 15 / 0.72) 48%, rgb(8 16 15 / 0.55) 100%),
    linear-gradient(0deg, rgb(8 16 15 / 0.5), transparent 45%);
}
.villa-brochure-in {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
}
.villa-brochure-copy {
  flex: 1 1 280px;
  max-width: 48ch;
}
.villa-brochure-copy h2 {
  color: #fff;
  margin-top: 12px;
}
.villa-brochure-copy .lede {
  color: rgb(237 240 238 / 0.68);
  margin-top: 14px;
}
.villa-brochure-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.villa-brochure-note {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(237 240 238 / 0.45);
}
.villa-page .villa-gallery {
  background: var(--color-stone);
  color: var(--color-ink);
  border-top: 1px solid rgb(29 29 29 / 0.06);
}
.villa-page .villa-gallery .bento-gallery-head h2 {
  color: var(--color-ink);
}
.villa-page .villa-gallery .bento-gallery-head .eyebrow {
  color: var(--color-gold);
}
.villa-page .villa-gallery .bento-gallery-head .eyebrow::before {
  background: var(--color-gold);
}
.villa-page .villa-gallery .bento-gallery-head p {
  color: rgb(29 29 29 / 0.58) !important;
}
.villa-page .villa-gallery .bento-gallery-count {
  color: rgb(29 29 29 / 0.42);
}
.villa-page .villa-gallery .bento-gallery-toggle {
  border-color: rgb(29 29 29 / 0.22);
  color: var(--color-ink);
}
.villa-page .villa-gallery .bento-gallery-toggle:hover,
.villa-page .villa-gallery .bento-gallery-toggle:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-ink);
  background: rgb(184 153 90 / 0.1);
}
@media (max-width: 900px) {
  .villa-page .villa-hero {
    min-height: 0;
    height: auto;
    padding: clamp(88px, 15vw, 104px) 20px clamp(24px, 4vw, 32px);
    justify-content: flex-end;
  }

  .villa-hero-stage {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 0;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: 0;
  }

  .villa-hero-copy {
    max-width: none;
    padding-bottom: 0;
  }

  .villa-hero-copy .hero-meta {
    font-size: 10px;
    letter-spacing: 0.14em;
    line-height: 1.4;
    max-width: 28ch;
  }

  .villa-hero-copy h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .villa-hero-copy .stay-hero-lede {
    max-width: 34ch;
    margin-bottom: 18px;
  }

  .villa-page .villa-hero .stay-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  .villa-page .villa-hero .stay-hero-actions .btn-level,
  .villa-page .villa-hero .stay-hero-actions .hero-btn-line,
  .villa-page .villa-hero .stay-hero-actions .hero-btn-gold {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .villa-hero-video {
    display: none;
  }

  .villa-video--mobile {
    display: block;
    padding: clamp(28px, 6vw, 44px) 0 clamp(40px, 8vw, 56px);
  }

  .villa-video--mobile .eyebrow {
    color: var(--color-gold);
  }

  .villa-video--mobile .eyebrow::before {
    background: var(--color-gold);
  }

  .villa-video--mobile h2 {
    color: #fff;
    margin: 12px 0 0;
  }

  .villa-video-frame {
    width: min(100%, 280px);
    margin-inline: auto;
  }

  .villa-facts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .villa-facts-item--lead {
    grid-column: 1 / -1;
  }

  .villa-included-list {
    grid-template-columns: 1fr;
  }

  .villa-included-stage {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .villa-included-media {
    order: -1;
    min-height: min(52vw, 360px);
    aspect-ratio: 4 / 3;
  }

  .villa-experiences-grid {
    grid-template-columns: 1fr;
  }

  .villa-experience:nth-child(odd),
  .villa-experience:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }

  .villa-spaces-head {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .villa-spaces-head .lede {
    justify-self: start;
    max-width: 42ch;
  }

  .villa-spaces-grid {
    grid-template-columns: 1fr;
  }

  .villa-space-card,
  .villa-space-card--feature {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(200px, 56vw) auto;
  }

  .villa-space-card--feature {
    background: transparent;
    border: 0;
    margin-bottom: 0;
  }

  .villa-space-card--feature .villa-space-copy {
    padding: 18px 4px 8px;
  }
}
@media (min-width: 901px) {
  .villa-video--mobile {
    display: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .villa-hero-video,
  .villa-space-media img,
  .villa-space-media .villa-clip,
  .villa-included-media img,
  .villa-included-media .villa-clip {
    transition: none;
  }

  .villa-hero-video:hover {
    transform: none;
  }

  .villa-space-card:hover .villa-space-media img,
  .villa-space-card:hover .villa-space-media .villa-clip,
  .villa-included-media:hover img,
  .villa-included-media:hover .villa-clip {
    transform: none;
  }
}

/* mid-cta + lightbox */
  .video-dialog {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    background: rgb(15 28 27 / 0.88);
    padding: 20px;
  }
  .video-dialog-in {
    position: relative;
    width: min(960px, 100%);
    aspect-ratio: 16 / 9;
  }
  .video-dialog-lg .video-dialog-in {
    width: min(1280px, 96vw);
  }
  .video-dialog iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  .video-dialog-close {
    position: absolute;
    top: -42px;
    right: 0;
    font-size: 32px;
    color: #fff;
  }
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 85;
    background: rgb(15 28 27 / 0.92);
    display: grid;
    place-items: center;
    padding: clamp(12px, 4vw, 40px);
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
  .lightbox img {
    max-width: min(900px, 100%);
    max-height: 80vh;
    object-fit: contain;
  }
  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 36px;
    color: #fff;
  }
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    color: #fff;
    padding: 10px 16px;
  }
  .lightbox-prev {
    left: 12px;
  }
  .lightbox-next {
    right: 12px;
  }
  @media (max-width: 700px) {
    .strip {
      grid-template-columns: 1fr 1fr;
    }

    .lightbox {
      padding: 16px 48px 28px;
    }

    .lightbox-close {
      top: 12px;
      right: 14px;
      font-size: 32px;
    }

    .lightbox-nav {
      font-size: 40px;
      padding: 8px 10px;
    }

    .lightbox-prev {
      left: 2px;
    }

    .lightbox-next {
      right: 2px;
    }
  }
.corporate-mid-cta .corporate-mid-cta-actions .btn-level-tertiary {
  color: rgb(237 240 238 / 0.78);
}
.corporate-mid-cta .corporate-mid-cta-actions .btn-level-tertiary:hover {
  color: #fff;
}
.corporate-mid-cta {
  background: var(--color-abyss);
  color: var(--color-stone);
  padding: clamp(48px, 7vw, 88px) 0;
  border-top: 1px solid rgb(237 240 238 / 0.08);
}
.corporate-mid-cta-in {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
}
.corporate-mid-cta-copy .eyebrow {
  color: var(--color-teal-mist);
}
.corporate-mid-cta-copy h2 {
  margin: 12px 0 14px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.12;
  color: #fff;
  max-width: 18ch;
}
.corporate-mid-cta-copy .lede {
  margin: 0;
  max-width: 48ch;
  color: rgb(237 240 238 / 0.68);
}
.corporate-mid-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.corporate-mid-cta-aside {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(237 240 238 / 0.45);
}
@media (max-width: 1100px) {
  .corporate-thesis-in,
  .corporate-mid-cta-in {
    grid-template-columns: 1fr;
  }

  .corporate-thesis-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corporate-thesis-facts li:last-child {
    grid-column: auto;
  }

  .corporate-faq-in {
    grid-template-columns: 1fr;
  }

  .corporate-process-steps::before {
    display: none;
  }
}
.bento-lightbox-figure {
  margin: 0;
  display: grid;
  place-items: center;
  gap: 14px;
  width: min(1100px, 100%);
  max-width: 100%;
  min-width: 0;
}
.bento-lightbox-figure img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(78vh, calc(100dvh - 120px));
  object-fit: contain;
  box-shadow: 0 24px 80px rgb(0 0 0 / 0.35);
}
.bento-lightbox-count {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: rgb(237 240 238 / 0.55);
  text-align: center;
}


/* —— Villa page closing bands: tighter, higher contrast —— */
.villa-page .villa-brochure {
  padding: clamp(56px, 8vw, 104px) 0;
}
.villa-page .villa-brochure-veil {
  background:
    linear-gradient(105deg, rgb(8 16 15 / 0.94) 0%, rgb(8 16 15 / 0.78) 42%, rgb(8 16 15 / 0.62) 100%),
    linear-gradient(0deg, rgb(8 16 15 / 0.55), transparent 50%);
}
.villa-page .villa-brochure-in {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 3.5vw, 40px);
  align-items: center;
  padding: clamp(28px, 3.8vw, 44px) clamp(24px, 3.2vw, 40px);
  border: 1px solid rgb(237 240 238 / 0.14);
  background: rgb(8 16 15 / 0.52);
  box-shadow: 0 24px 64px rgb(0 0 0 / 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.villa-page .villa-brochure-copy {
  flex: none;
  max-width: 42ch;
}
.villa-page .villa-brochure-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.villa-page .villa-brochure-copy .lede {
  margin-top: 12px;
  max-width: 36ch;
}
.villa-page .villa-brochure-actions {
  align-items: stretch;
  min-width: min(240px, 100%);
}
.villa-page .villa-brochure-actions .villa-btn {
  justify-content: center;
  white-space: nowrap;
  min-width: 220px;
  box-shadow: 0 8px 28px rgb(184 153 90 / 0.28);
}
.villa-page .villa-brochure-note {
  text-align: center;
  width: 100%;
}

.villa-page .villa-mid-cta.corporate-mid-cta {
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 0;
  background:
    linear-gradient(180deg, rgb(15 28 27 / 0.55), var(--color-abyss) 28%),
    var(--color-abyss);
}
.villa-page .villa-mid-cta .corporate-mid-cta-in {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  padding: clamp(24px, 3.2vw, 36px) clamp(22px, 3vw, 36px);
  border: 1px solid rgb(237 240 238 / 0.12);
  background: rgb(237 240 238 / 0.03);
}
.villa-page .villa-mid-cta .corporate-mid-cta-copy h2 {
  max-width: 16ch;
  margin: 10px 0 12px;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}
.villa-page .villa-mid-cta .corporate-mid-cta-copy .lede {
  max-width: 42ch;
}
.villa-page .villa-mid-cta .corporate-mid-cta-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  max-width: 340px;
}
.villa-page .villa-mid-cta .corporate-mid-cta-actions .villa-btn {
  flex: 1 1 auto;
  min-width: 148px;
  justify-content: center;
}
.villa-page .villa-mid-cta .corporate-mid-cta-actions .villa-btn--gold {
  box-shadow: 0 8px 28px rgb(184 153 90 / 0.28);
}
.villa-page .villa-mid-cta .corporate-mid-cta-aside {
  flex: 1 0 100%;
  margin-top: 2px;
  text-align: left;
}

@media (max-width: 800px) {
  .villa-page .villa-brochure-in,
  .villa-page .villa-mid-cta .corporate-mid-cta-in {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .villa-page .villa-brochure-actions,
  .villa-page .villa-mid-cta .corporate-mid-cta-actions {
    width: 100%;
    max-width: none;
  }

  .villa-page .villa-brochure-actions .villa-btn,
  .villa-page .villa-mid-cta .corporate-mid-cta-actions .villa-btn {
    width: 100%;
    min-width: 0;
  }

  .villa-page .villa-brochure-note,
  .villa-page .villa-mid-cta .corporate-mid-cta-aside {
    text-align: left;
  }
}


/* —— Readable type vs legacy html { font-size: 62.5% } (rem ≈ 10px) —— */
.villa-page {
  line-height: 1.65;
}
.villa-page .eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 1.35;
}
.villa-page .lede {
  font-size: 17px;
  line-height: 1.65;
}
.villa-page .on-dark .lede {
  color: rgb(237 240 238 / 0.82);
}
.villa-page h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.2;
}
.villa-page h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
}
.villa-page .villa-btn {
  font-size: 15px;
  min-height: 48px;
  padding: 0.85rem 1.45rem;
  line-height: 1.25;
}

.villa-page .villa-brochure-copy .eyebrow,
.villa-page .villa-mid-cta .eyebrow {
  font-size: 13px;
  color: var(--color-gold);
}
.villa-page .villa-mid-cta .corporate-mid-cta-copy .eyebrow {
  color: var(--color-gold);
}
.villa-page .villa-brochure-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.villa-page .villa-brochure-copy .lede {
  margin-top: 14px;
  max-width: 40ch;
  font-size: 17px;
  line-height: 1.65;
  color: rgb(237 240 238 / 0.86);
}
.villa-page .villa-brochure-note {
  text-align: center;
  width: 100%;
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.45;
  color: rgb(237 240 238 / 0.72);
  text-transform: uppercase;
}
.villa-page .villa-mid-cta .corporate-mid-cta-copy h2 {
  max-width: 18ch;
  margin: 10px 0 12px;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.18;
}
.villa-page .villa-mid-cta .corporate-mid-cta-copy .lede {
  max-width: 44ch;
  font-size: 17px;
  line-height: 1.65;
  color: rgb(237 240 238 / 0.86);
}
.villa-page .villa-mid-cta .corporate-mid-cta-aside {
  flex: 1 0 100%;
  margin-top: 4px;
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.45;
  color: rgb(237 240 238 / 0.72);
  text-transform: uppercase;
}
