:root {
  --ink: #171615;
  --soft-ink: #4f4a43;
  --muted: #7b746b;
  --paper: #fbfaf6;
  --sand: #e9dfcb;
  --mist: #edf4ef;
  --forest: #16453a;
  --deep-forest: #092a24;
  --ocean: #1c6e80;
  --gold: #b9934b;
  --gold-dark: #765a28;
  --terracotta: #a85f3d;
  --white: #ffffff;
  --line: rgba(23, 22, 21, 0.12);
  --shadow: 0 18px 54px rgba(20, 18, 15, 0.18);
  --radius: 8px;
  --radius-sm: 4px;
  --header-height: 74px;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --hero-image: url("./assets/original-website-hero.jpg");
  --ambient-image: url("./assets/rainbow-pool-view.webp");
  --ambient-opacity: 0.08;
  --ambient-shade: linear-gradient(180deg, rgba(251, 250, 246, 0.94), rgba(251, 250, 246, 0.86));
  --ambient-tint-opacity: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--font-body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  isolation: isolate;
  transition: color 0.7s ease;
}

body.menu-open {
  overflow: hidden;
}

body[data-atmosphere="morning"] {
  --ambient-image: url("./assets/ambient-morning-nature.webp");
  --ambient-opacity: 0.12;
  --ambient-shade: linear-gradient(180deg, rgba(251, 250, 246, 0.9), rgba(251, 250, 246, 0.82));
  --ambient-tint-opacity: 0.01;
}

body[data-atmosphere="sunset"] {
  --hero-image: url("./assets/ambient-sunset-pool.webp");
  --ambient-image: url("./assets/ambient-sunset-pool.webp");
  --ambient-opacity: 0.2;
  --ambient-shade:
    radial-gradient(circle at 76% 18%, rgba(255, 199, 116, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(251, 250, 246, 0.88), rgba(250, 239, 219, 0.78));
  --ambient-tint-opacity: 0.055;
}

body[data-atmosphere="night"] {
  --hero-image: url("./assets/ambient-night-reflection.webp");
  --ambient-image: url("./assets/ambient-night-reflection.webp");
  --ambient-opacity: 0.34;
  --ambient-shade:
    radial-gradient(circle at 28% 18%, rgba(61, 127, 145, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(7, 16, 18, 0.76), rgba(8, 17, 16, 0.86));
  --ambient-tint-opacity: 0.18;
}

.ambient-wallpaper,
.ambient-page-tint {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient-wallpaper {
  z-index: -1;
  overflow: hidden;
  background: var(--paper);
}

.ambient-wallpaper-image,
.ambient-wallpaper-shade {
  position: absolute;
  inset: 0;
}

.ambient-wallpaper-image {
  z-index: 0;
  background-image: var(--ambient-image);
  background-position: center;
  background-size: cover;
  opacity: var(--ambient-opacity);
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
  transition: opacity 0.9s ease, filter 0.9s ease, background-image 0.9s ease;
  animation: ambientBreath 28s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.ambient-wallpaper-shade {
  z-index: 2;
  background: var(--ambient-shade);
  transition: background 0.9s ease;
}

.nature-depth-canvas {
  pointer-events: none;
  user-select: none;
}

.page-depth-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.46;
  mix-blend-mode: multiply;
  filter: saturate(1.06);
}

body[data-atmosphere="sunset"] .page-depth-canvas,
body[data-atmosphere="night"] .page-depth-canvas {
  opacity: 0.58;
  mix-blend-mode: screen;
}

.ambient-page-tint {
  z-index: 14;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 220, 148, 0.18), transparent 42%),
    rgba(4, 11, 12, 0.58);
  opacity: var(--ambient-tint-opacity);
  mix-blend-mode: multiply;
  transition: opacity 0.9s ease;
}

@keyframes ambientBreath {
  from {
    transform: scale(1.035) translate3d(-0.6%, -0.4%, 0);
  }
  to {
    transform: scale(1.075) translate3d(0.8%, 0.6%, 0);
  }
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 60;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #f3d68a, var(--ocean));
  box-shadow: 0 0 18px rgba(185, 147, 75, 0.45);
  pointer-events: none;
}

img,
canvas {
  display: block;
  max-width: 100%;
}

.proof-band,
.intro,
.image-ribbon,
.motion-gallery,
.day-journey,
.villas-section,
.property-details,
.experience,
.media-experience,
.global-film,
.concierge,
.amenities,
.trust,
.guest-voice,
.channels,
.booking,
.pay {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -3rem;
  z-index: 50;
  background: var(--white);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.6rem;
  padding: 0 clamp(1rem, 4vw, 4rem);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(to bottom, rgba(9, 42, 36, 0.62), rgba(9, 42, 36, 0.16));
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.94);
  border-color: rgba(23, 22, 21, 0.08);
  box-shadow: 0 12px 34px rgba(20, 18, 15, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: max-content;
}

.brand-text {
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand small {
  margin-top: 0.2rem;
  color: currentColor;
  font-size: 0.58rem;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.78;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2.2rem);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 0.55rem 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.25rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.language-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  min-width: 70px;
  height: 38px;
  padding: 0 0.35rem 0 0.75rem;
  opacity: 0.95;
}

.language-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.language-control select {
  width: 100%;
  color: inherit;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 0.74rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.language-control option {
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1.15rem;
  color: var(--white);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.73rem;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #c8a45e;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.menu-toggle span + span {
  transform: translateY(8px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span + span {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 18;
  inset: var(--header-height) 0 auto 0;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem clamp(1rem, 4vw, 2rem) 1.4rem;
  background: rgba(251, 250, 246, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(20, 18, 15, 0.08);
}

.mobile-menu a {
  padding: 0.9rem 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.mobile-menu.is-open {
  display: flex;
}

.atmosphere-switch {
  position: fixed;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 55;
  display: flex;
  gap: 0.25rem;
  padding: 0.28rem;
  border: 1px solid rgba(23, 22, 21, 0.12);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.76);
  box-shadow: 0 18px 50px rgba(20, 18, 15, 0.14);
  backdrop-filter: blur(16px);
}

.atmosphere-switch button {
  min-width: 62px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(23, 22, 21, 0.72);
  padding: 0.45rem 0.72rem;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.atmosphere-switch button:hover {
  transform: translateY(-1px);
}

.atmosphere-switch button[aria-pressed="true"] {
  background: var(--forest);
  color: var(--white);
}

body[data-atmosphere="night"] .atmosphere-switch {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(8, 22, 20, 0.76);
}

body[data-atmosphere="night"] .atmosphere-switch button {
  color: rgba(255, 255, 255, 0.72);
}

body[data-atmosphere="night"] .atmosphere-switch button[aria-pressed="true"] {
  background: var(--gold);
  color: #171615;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 4rem) clamp(1rem, 5vw, 5.5rem) clamp(0.85rem, 2vw, 1.5rem);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 244, 209, 0.11) 42%, transparent 64%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.12) 100%);
  opacity: 0.64;
  animation: editorialLightSweep 18s ease-in-out infinite alternate;
}

.hero::after {
  inset: 8rem 0 auto 0;
  height: 38%;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.09), transparent 76%),
    linear-gradient(90deg, transparent, rgba(242, 214, 154, 0.12), transparent);
  filter: blur(24px);
  opacity: 0.3;
  transform: translate3d(0, -1rem, 0);
  animation: quietMist 17s ease-in-out infinite alternate;
}

.hero-media,
.hero-overlay,
.hero-editorial-light,
.hero-grain,
.hero-luxury-lines {
  position: absolute;
  inset: 0;
}

.hero-media {
  --parallax-y: 0px;
  z-index: -3;
  background-image: var(--hero-image);
  background-position: center 54%;
  background-size: cover;
  transform: scale(1.04) translate3d(0, var(--parallax-y), 0);
  animation: slowZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 25, 22, 0.78) 0%, rgba(8, 25, 22, 0.45) 42%, rgba(8, 25, 22, 0.14) 100%),
    linear-gradient(to top, rgba(12, 19, 17, 0.8) 0%, rgba(12, 19, 17, 0.06) 58%),
    linear-gradient(to bottom, rgba(8, 25, 22, 0.34), transparent 34%);
}

.hero-editorial-light {
  z-index: -1;
  background:
    linear-gradient(105deg, transparent 4%, rgba(255, 247, 221, 0.14) 28%, transparent 48%),
    linear-gradient(18deg, rgba(185, 147, 75, 0.18), transparent 38%);
  mix-blend-mode: soft-light;
  opacity: 0.72;
  transform: translate3d(-3%, 0, 0);
  animation: editorialLightFloat 16s ease-in-out infinite alternate;
}

.hero-depth-canvas,
.hero-4d-aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-depth-canvas {
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  mix-blend-mode: screen;
  transform: translate3d(0, 0, 0);
}

.hero-4d-aura {
  z-index: -1;
  background:
    radial-gradient(circle at calc(24% + (var(--depth-x, 0) * 10%)) calc(28% + (var(--depth-y, 0) * 8%)), rgba(255, 233, 168, 0.22), transparent 30%),
    radial-gradient(circle at calc(76% - (var(--depth-x, 0) * 8%)) calc(32% - (var(--depth-y, 0) * 6%)), rgba(86, 180, 191, 0.18), transparent 34%),
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.14) 42%, transparent 56%);
  opacity: 0.62;
  mix-blend-mode: soft-light;
  transform: translate3d(calc(var(--depth-x, 0) * 12px), calc(var(--depth-y, 0) * 10px), 0);
  animation: depthAuraDrift 13s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

body[data-atmosphere="night"] .hero-depth-canvas {
  opacity: 0.72;
}

body[data-atmosphere="night"] .hero-4d-aura {
  opacity: 0.48;
  mix-blend-mode: screen;
}

.hero-grain {
  z-index: -1;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 74%, transparent);
}

.hero-luxury-lines {
  z-index: -1;
  pointer-events: none;
}

.hero-luxury-lines span {
  position: absolute;
  left: clamp(1rem, 5vw, 5.5rem);
  right: clamp(1rem, 5vw, 5.5rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 247, 221, 0.62), rgba(255, 247, 221, 0.05), transparent);
  opacity: 0.45;
}

.hero-luxury-lines span:first-child {
  top: 23%;
}

.hero-luxury-lines span:last-child {
  bottom: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 247, 221, 0.1), rgba(255, 247, 221, 0.5));
}

@keyframes editorialLightSweep {
  from {
    transform: translate3d(-4%, 1%, 0);
    opacity: 0.42;
  }
  to {
    transform: translate3d(4%, -1%, 0);
    opacity: 0.7;
  }
}

@keyframes quietMist {
  from {
    transform: translate3d(0, -1rem, 0) scaleY(0.96);
    opacity: 0.22;
  }
  to {
    transform: translate3d(0, 0.7rem, 0) scaleY(1.04);
    opacity: 0.36;
  }
}

@keyframes editorialLightFloat {
  from {
    transform: translate3d(-3%, 0, 0);
  }
  to {
    transform: translate3d(3%, -1.5%, 0);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.04) translate3d(0, var(--parallax-y), 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.2%, calc(var(--parallax-y) - 18px), 0);
  }
}

@keyframes depthAuraDrift {
  from {
    filter: hue-rotate(-4deg) saturate(1);
    opacity: 0.48;
  }
  to {
    filter: hue-rotate(8deg) saturate(1.22);
    opacity: 0.7;
  }
}

.hero-content {
  width: min(920px, 100%);
  min-width: 0;
  align-self: center;
  margin-top: clamp(1rem, 6vh, 4rem);
}

.hero-premium-notes {
  position: absolute;
  right: clamp(1rem, 5vw, 5.5rem);
  bottom: clamp(7rem, 16vh, 12rem);
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  color: rgba(255, 247, 221, 0.82);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
}

.hero-premium-notes span {
  display: block;
  padding-right: 1.4rem;
  position: relative;
}

.hero-premium-notes span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.68rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.hero-brand-lockup {
  position: relative;
  width: min(920px, 100%);
  padding: 0 0 1.25rem;
  margin-bottom: 1.1rem;
}

.hero-brand-lockup::after {
  content: "";
  display: block;
  width: min(520px, 100%);
  height: 1px;
  margin-top: 1rem;
  background: linear-gradient(90deg, rgba(242, 214, 154, 0.88), rgba(111, 211, 188, 0.42), transparent);
  animation: lineGlow 4.8s ease-in-out infinite alternate;
}

.hero .hero-brand-lockup h1 {
  max-width: 920px;
  margin: 0;
  color: #fff8e4;
  font-family: var(--font-display);
  font-size: 5.15rem;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow:
    0 0 22px rgba(242, 214, 154, 0.28),
    0 8px 32px rgba(0, 0, 0, 0.48);
}

.hero .hero-brand-lockup h1 span {
  display: inline;
}

.hero .hero-brand-lockup p {
  margin: 0.85rem 0 0;
  color: rgba(255, 246, 220, 0.86);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

@keyframes lineGlow {
  from {
    opacity: 0.45;
    transform: scaleX(0.84);
    transform-origin: left;
  }
  to {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-layout h2,
.experience-content h2,
.booking-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6.4vw, 6.25rem);
}

.hero-copy {
  max-width: 640px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  width: min(640px, 100%);
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.hero-kinetic {
  width: min(680px, 100%);
  overflow: hidden;
  margin-top: 1.25rem;
  padding-block: 0.7rem;
  border-block: 1px solid rgba(255, 255, 255, 0.22);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.kinetic-track {
  display: flex;
  width: max-content;
  gap: 1.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: kineticSlide 19s linear infinite;
}

.kinetic-track span {
  white-space: nowrap;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: skewX(-18deg);
  transition: left 0.45s ease;
}

.btn:hover::after {
  left: 115%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  color: var(--white);
  background: var(--gold);
}

.btn-glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.booking-panel {
  position: relative;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(930px, 100%);
  margin-left: auto;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.booking-panel label,
.reservation-form label {
  display: grid;
  gap: 0.45rem;
}

.booking-panel label {
  padding: 1rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(9, 42, 36, 0.42);
}

.booking-panel span,
.reservation-form span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-panel input,
.booking-panel select {
  width: 100%;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: 0;
  min-height: 32px;
}

.booking-panel select option {
  color: var(--ink);
}

.booking-panel button {
  min-height: 100%;
  color: var(--white);
  background: var(--gold);
  border: 0;
  padding: 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.booking-panel button:hover {
  background: #c8a45e;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--deep-forest);
  color: var(--white);
}

.proof-band div {
  min-height: 124px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.proof-band strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.proof-band span {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 5.5rem);
}

.intro {
  background: var(--paper);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.split-layout h2,
.section-heading h2,
.experience-content h2,
.booking-card h2 {
  font-size: clamp(2.25rem, 5.4vw, 5.4rem);
}

.intro-copy {
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--forest);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.image-ribbon {
  overflow: hidden;
  background: var(--ink);
}

.motion-gallery {
  overflow: hidden;
  padding: 1rem 0;
  background:
    linear-gradient(90deg, rgba(237, 244, 239, 0.94), rgba(185, 147, 75, 0.22), rgba(9, 42, 36, 0.96)),
    var(--deep-forest);
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.motion-gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-inline: 1rem;
  animation: galleryDrift 42s linear infinite;
}

.motion-gallery:hover .motion-gallery-track {
  animation-play-state: paused;
}

.motion-gallery figure {
  position: relative;
  width: clamp(240px, 28vw, 420px);
  height: clamp(220px, 26vw, 360px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.motion-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.motion-gallery figure:hover img {
  transform: scale(1.12);
  filter: saturate(1.18) contrast(1.05);
}

.motion-gallery figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

@keyframes galleryDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.ribbon-track {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr 1fr;
  min-height: clamp(240px, 40vw, 520px);
}

.ribbon-track img {
  width: 100%;
  height: 100%;
  min-height: clamp(240px, 40vw, 520px);
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
  transition: transform 0.8s ease, filter 0.8s ease;
  animation: photoBreath 14s ease-in-out infinite alternate;
}

.ribbon-track img:hover {
  transform: scale(1.04);
  filter: saturate(1.16) contrast(1.04);
}

@keyframes photoBreath {
  from {
    filter: saturate(1.04) contrast(1);
  }
  to {
    filter: saturate(1.16) contrast(1.04);
  }
}

.day-journey {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(237, 244, 239, 0.96) 0%, rgba(242, 214, 154, 0.72) 36%, rgba(44, 78, 75, 0.9) 68%, rgba(9, 42, 36, 1) 100%);
  isolation: isolate;
}

.day-journey::before,
.day-journey::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.day-journey::before {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.42) 0%, transparent 34%),
    linear-gradient(245deg, transparent 20%, rgba(241, 195, 109, 0.3) 48%, rgba(9, 42, 36, 0.58) 88%);
  animation: dayToNightSweep 18s ease-in-out infinite alternate;
}

.day-journey::after {
  background:
    repeating-linear-gradient(115deg, transparent 0 96px, rgba(255, 255, 255, 0.12) 98px, transparent 106px);
  mix-blend-mode: soft-light;
  opacity: 0.48;
  animation: mysticVeil 20s ease-in-out infinite alternate;
}

.day-journey .section-heading {
  color: var(--deep-forest);
}

.day-journey .section-kicker {
  color: var(--forest);
}

.day-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.35rem);
}

.day-card {
  position: relative;
  min-height: clamp(340px, 34vw, 540px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 62px rgba(9, 42, 36, 0.24);
  background: var(--ink);
  isolation: isolate;
}

.day-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(9, 23, 20, 0.82), rgba(9, 23, 20, 0.08) 58%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.18), transparent 38%);
}

.day-card:nth-child(3)::after,
.day-card:nth-child(4)::after {
  background:
    linear-gradient(to top, rgba(4, 12, 13, 0.9), rgba(4, 12, 13, 0.18) 60%),
    linear-gradient(140deg, rgba(241, 195, 109, 0.24), transparent 38%);
}

.day-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1s ease, filter 1s ease;
}

.day-card:nth-child(4) img {
  filter: saturate(1.08) contrast(1.06);
}

.day-card:hover img {
  transform: scale(1.1);
  filter: saturate(1.16) contrast(1.06);
}

.day-card div {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(1rem, 2vw, 1.45rem);
}

.day-card span {
  color: #f1d386;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.day-card h3 {
  max-width: 15rem;
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  font-weight: 500;
  line-height: 1.04;
}

@keyframes dayToNightSweep {
  from {
    transform: translate3d(-4%, -2%, 0);
    opacity: 0.82;
  }
  to {
    transform: translate3d(4%, 3%, 0);
    opacity: 0.58;
  }
}

.section-heading {
  width: min(900px, 100%);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.villas-section {
  background:
    linear-gradient(180deg, rgba(237, 244, 239, 0.94), rgba(251, 250, 246, 1)),
    var(--mist);
}

.villa-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.villa-card {
  position: relative;
  min-height: clamp(420px, 46vw, 620px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(20, 18, 15, 0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  isolation: isolate;
}

.villa-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10, 23, 20, 0.88) 0%, rgba(10, 23, 20, 0.08) 58%);
}

.villa-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.villa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(20, 18, 15, 0.24);
}

.villa-card:hover img {
  transform: scale(1.05);
}

.villa-card-content {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  padding: clamp(1.1rem, 2.2vw, 1.8rem);
  color: var(--white);
}

.villa-card-content span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.villa-card-content h3 {
  margin: 0.45rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.villa-card-content p {
  margin: 0.8rem 0 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.stay-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
}

.stay-facts strong,
.stay-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.48rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(11, 22, 18, 0.36);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.stay-facts strong {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(232, 197, 128, 0.96), rgba(167, 122, 60, 0.96));
  color: #171511;
}

.villa-card-content a {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.house-gallery {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 1), rgba(237, 244, 239, 0.9) 46%, rgba(242, 214, 154, 0.24)),
    var(--paper);
}

.house-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(38, 93, 79, 0.08), transparent 34%),
    repeating-linear-gradient(115deg, transparent 0 118px, rgba(241, 195, 109, 0.12) 120px, transparent 128px);
  opacity: 0.86;
}

.house-gallery > * {
  position: relative;
  z-index: 1;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}

.gallery-tab {
  min-height: 46px;
  padding: 0.75rem 1.05rem;
  border: 1px solid rgba(38, 93, 79, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(20, 18, 15, 0.07);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.gallery-tab:hover,
.gallery-tab.is-active {
  transform: translateY(-2px);
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(20, 18, 15, 0.16);
}

.gallery-panels {
  min-height: 520px;
}

.gallery-panel[hidden] {
  display: none;
}

.gallery-panel {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.gallery-feature,
.gallery-photo {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(20, 18, 15, 0.16);
}

.gallery-feature {
  min-height: clamp(400px, 44vw, 620px);
}

.gallery-feature::after,
.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(9, 23, 20, 0.66), transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 34%);
  opacity: 0.9;
  transition: opacity 0.35s ease;
}

.gallery-feature img,
.gallery-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-feature:hover img,
.gallery-photo:hover img {
  transform: scale(1.055);
  filter: saturate(1.1) contrast(1.04);
}

.gallery-feature:hover::after,
.gallery-photo:hover::after {
  opacity: 0.72;
}

.gallery-feature span,
.gallery-photo span {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  color: #f6d982;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gallery-copy {
  display: grid;
  align-content: center;
  min-height: clamp(400px, 44vw, 620px);
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid rgba(38, 93, 79, 0.15);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(20, 18, 15, 0.1);
}

.gallery-copy span {
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gallery-copy h3 {
  margin: 0.65rem 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 4.8rem);
  font-weight: 500;
  line-height: 0.95;
  color: var(--ink);
}

.gallery-copy p {
  margin: 0;
  color: rgba(34, 48, 43, 0.78);
}

.gallery-copy strong {
  width: fit-content;
  margin-top: 1.4rem;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: rgba(38, 93, 79, 0.1);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.35vw, 1rem);
}

.gallery-photo {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.gallery-error {
  margin: 0;
  color: rgba(34, 48, 43, 0.74);
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(4, 12, 13, 0.9);
  backdrop-filter: blur(18px);
}

.photo-lightbox[hidden] {
  display: none;
}

.photo-lightbox img {
  width: auto;
  max-width: min(94vw, 1800px);
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.photo-lightbox p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  text-align: center;
}

.photo-lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 82;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

.property-details {
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 1), rgba(237, 244, 239, 0.78)),
    var(--paper);
}

.details-grid,
.property-info-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.details-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.property-info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.detail-panel,
.info-panel {
  min-width: 0;
  padding: clamp(1.2rem, 2.2vw, 1.65rem);
  border: 1px solid rgba(38, 93, 79, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(20, 18, 15, 0.08);
}

.detail-panel {
  min-height: 100%;
}

.detail-panel span,
.info-panel span {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.detail-panel h3,
.info-panel h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}

.detail-panel p,
.info-panel p {
  margin: 0 0 0.8rem;
  color: rgba(34, 48, 43, 0.78);
}

.detail-panel ul,
.info-panel ul {
  display: grid;
  gap: 0.42rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.detail-panel li,
.info-panel li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(34, 48, 43, 0.8);
  font-size: 0.94rem;
}

.detail-panel li::before,
.info-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--gold);
}

.info-panel a {
  color: var(--forest);
  font-weight: 800;
}

.experience {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  background: var(--paper);
}

.experience-media {
  position: relative;
}

.experience-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.experience-media::before {
  content: "";
  position: absolute;
  inset: 8% -7% -8% 12%;
  z-index: -1;
  border: 1px solid rgba(185, 147, 75, 0.45);
  border-radius: var(--radius);
}

.experience-content p {
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.experience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.experience-list span {
  padding: 0.72rem 1rem;
  color: var(--forest);
  border: 1px solid rgba(22, 69, 58, 0.22);
  border-radius: 999px;
  background: rgba(237, 244, 239, 0.75);
  font-size: 0.78rem;
  font-weight: 800;
}

.media-experience {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(9, 42, 36, 0.92), rgba(9, 42, 36, 0.72)),
    url("./assets/mystic-fire-sunset.webp") center / cover;
  color: var(--white);
}

.media-copy {
  max-width: 820px;
}

.media-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.2vw, 5.4rem);
  font-weight: 500;
  line-height: 1;
}

.media-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.media-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.32fr);
  gap: 1rem;
  align-items: stretch;
}

.video-preview,
.sound-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.video-preview {
  min-height: 0;
  display: grid;
  align-content: start;
  padding: 0;
  background: #07110f;
}

.retreat-film {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #050a09;
}

.video-caption {
  padding: clamp(1.2rem, 2.8vw, 2rem);
  background: #0a1714;
}

.play-icon {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  animation: playPulse 2.6s ease-in-out infinite;
}

.play-icon::before {
  content: "";
  margin-left: 5px;
  border-left: 18px solid var(--forest);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

@keyframes playPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.video-preview strong,
.sound-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.video-preview small {
  display: block;
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.68);
}

.sound-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  background:
    linear-gradient(180deg, rgba(185, 147, 75, 0.94), rgba(168, 95, 61, 0.86)),
    var(--gold);
  background-size: 100% 140%;
  animation: warmShift 8s ease-in-out infinite alternate;
}

@keyframes warmShift {
  from {
    background-position: center top;
  }
  to {
    background-position: center bottom;
  }
}

.sound-card span {
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sound-card p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.global-film {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 0.98), rgba(233, 223, 203, 0.7)),
    var(--paper);
}

.global-film::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, rgba(22, 69, 58, 0.06) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(65deg, rgba(185, 147, 75, 0.05) 0 1px, transparent 1px 54px);
  mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
}

.film-intro {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
}

.film-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 5.6rem);
  font-weight: 500;
  line-height: 1;
}

.film-intro p {
  max-width: 740px;
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.world-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: clamp(2rem, 5vw, 4rem) calc(clamp(1rem, 5vw, 5.5rem) * -1) 1.5rem;
  padding: 0.85rem 0;
  border-block: 1px solid rgba(22, 69, 58, 0.16);
  background: rgba(255, 255, 255, 0.42);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.3rem;
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: marqueeSlide 26s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
}

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

.film-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.film-card {
  position: relative;
  min-height: clamp(430px, 42vw, 590px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--ink);
  isolation: isolate;
}

.film-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10, 23, 20, 0.86), rgba(10, 23, 20, 0.08) 58%);
}

.film-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.9s ease, filter 0.9s ease;
}

.film-card:hover img {
  transform: scale(1.1);
  filter: saturate(1.16) contrast(1.04);
}

.film-card div {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  color: var(--white);
}

/* No-crop image policy: every original composition remains fully visible. */
body[data-atmosphere="sunset"],
body[data-atmosphere="night"] {
  --hero-image: url("./assets/original-website-hero.jpg");
}

.ambient-wallpaper-image {
  background-color: var(--deep-forest);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: none;
}

.hero-media {
  overflow: hidden;
  background: #071d19;
  transform: none;
  animation: none;
}

.hero-media::before,
.hero-media::after {
  content: "";
}

.hero-media::before,
.hero-media::after,
.hero-photo {
  position: absolute;
  inset: 0;
}

.hero-media::before,
.hero-media::after {
  background-image: var(--hero-image);
  background-position: center;
  background-repeat: no-repeat;
}

.hero-media::before {
  background-size: cover;
  filter: blur(28px) saturate(0.86) brightness(0.62);
  opacity: 0.72;
  transform: scale(1.1);
}

.hero-media::after {
  display: none;
}

.hero-photo {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.motion-gallery figure,
.day-card,
.villa-card,
.gallery-feature,
.gallery-photo,
.film-card {
  background: #0a211d;
}

.motion-gallery img,
.ribbon-track img,
.day-card img,
.villa-card img,
.gallery-feature img,
.gallery-photo img,
.film-card img {
  object-fit: contain;
  transform: none;
}

.motion-gallery figure:hover img,
.ribbon-track img:hover,
.day-card:hover img,
.villa-card:hover img,
.gallery-feature:hover img,
.gallery-photo:hover img,
.film-card:hover img {
  transform: none;
}

.experience-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0a211d;
  box-shadow: var(--shadow);
}

.experience-media img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.film-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

.film-card h3 {
  margin: 0.8rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
}

.film-card p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.concierge {
  background: var(--paper);
}

.concierge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.concierge-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  background: var(--white);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.concierge-card::before,
.pay-box::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-bottom: 1rem;
  background: var(--gold);
  transform: scaleX(0.45);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.concierge-card:hover::before,
.pay-box:hover::before {
  transform: scaleX(1);
}

.concierge-card:hover {
  z-index: 1;
  transform: translateY(-5px);
  background: #fffdf8;
  box-shadow: 0 22px 54px rgba(20, 18, 15, 0.13);
}

.concierge-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
}

.concierge-card h3 {
  margin: auto 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.04;
}

.concierge-card p {
  color: var(--soft-ink);
}

.concierge-card a {
  align-self: flex-start;
  color: var(--forest);
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.amenities {
  background: var(--deep-forest);
  color: var(--white);
}

.amenities .section-kicker,
.booking .section-kicker,
.pay .section-kicker {
  color: var(--gold);
}

.amenities .section-heading h2 {
  color: var(--white);
}

.amenity-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  margin: 0 0 clamp(1.2rem, 3vw, 2rem);
  padding: clamp(1rem, 2.4vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(185, 147, 75, 0.12)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.amenity-story p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.65;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.amenity {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.055);
}

.amenity strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 500;
}

.amenity p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  background:
    linear-gradient(120deg, rgba(251, 250, 246, 0.96), rgba(237, 244, 239, 0.92)),
    url("./assets/casita-hillside-view.webp") center / cover;
}

.trust-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.3vw, 5.2rem);
  font-weight: 500;
  line-height: 1;
}

.trust-intro p {
  max-width: 650px;
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.trust-grid {
  display: grid;
  gap: 1rem;
}

.trust-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.2rem;
  align-items: center;
  min-height: 118px;
  padding: 1.2rem;
  border: 1px solid rgba(23, 22, 21, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(20, 18, 15, 0.07);
}

.trust-card strong {
  font-family: var(--font-display);
  color: var(--forest);
  font-size: 2rem;
  font-weight: 500;
}

.trust-card span {
  color: var(--soft-ink);
  font-weight: 700;
}

.channels {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(237, 244, 239, 0.94), rgba(251, 250, 246, 1)),
    var(--mist);
}

.channels .section-heading p:not(.section-kicker) {
  max-width: 740px;
  margin: 1rem 0 0;
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.45vw, 1.13rem);
}

.channel-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(22, 69, 58, 0.16);
  border: 1px solid rgba(22, 69, 58, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.channel-board::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(62vw, 760px);
  height: min(62vw, 760px);
  border: 1px solid rgba(185, 147, 75, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.channel-node {
  position: relative;
  z-index: 1;
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(251, 250, 246, 0.9);
  color: var(--forest);
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: 800;
}

.main-node {
  color: var(--white);
  background: var(--forest);
  font-family: var(--font-display);
  font-weight: 500;
}

.sync-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
  margin-top: clamp(1rem, 2.6vw, 1.6rem);
}

.sync-card {
  min-width: 0;
  padding: clamp(1.1rem, 2.2vw, 1.5rem);
  border: 1px solid rgba(22, 69, 58, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(20, 18, 15, 0.08);
}

.sync-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sync-card h3 {
  margin: 0.7rem 0 0.7rem;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 500;
  line-height: 1;
}

.sync-card p {
  margin: 0;
  color: rgba(34, 48, 43, 0.78);
}

.button-lab,
.calendar-vault {
  margin-top: clamp(1.2rem, 3vw, 2rem);
  padding: clamp(1rem, 2.6vw, 1.6rem);
  border: 1px solid rgba(22, 69, 58, 0.14);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.82);
  box-shadow: 0 18px 46px rgba(20, 18, 15, 0.08);
}

#availability {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.button-lab {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.button-lab h3,
.calendar-vault h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  font-weight: 500;
  line-height: 1.04;
}

.button-lab p,
.calendar-vault p {
  color: var(--soft-ink);
}

.button-lab-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.button-lab-actions a,
.calendar-item button,
.calendar-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(22, 69, 58, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: var(--forest);
  padding: 0.68rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button-lab-actions a:first-child,
.calendar-item.is-connected a {
  color: var(--white);
  background: var(--forest);
}

.button-lab-actions a:hover,
.calendar-item button:hover,
.calendar-item a:hover {
  transform: translateY(-2px);
}

.calendar-vault-intro {
  max-width: 860px;
  margin-bottom: clamp(1rem, 3vw, 1.7rem);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.calendar-channel {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid rgba(22, 69, 58, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.calendar-channel h4 {
  margin: 0 0 0.2rem;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.calendar-item {
  display: grid;
  gap: 0.55rem;
  padding: 0.8rem;
  border-radius: var(--radius);
  background: rgba(237, 244, 239, 0.9);
}

.calendar-item span {
  color: var(--ink);
  font-weight: 900;
}

.calendar-item strong {
  color: var(--terracotta);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.calendar-item.is-connected strong {
  color: var(--forest);
}

.calendar-item button,
.calendar-item a {
  width: 100%;
  min-height: 38px;
  padding: 0.54rem 0.75rem;
  border-radius: var(--radius);
  box-shadow: none;
}

.calendar-item button {
  border: 0;
  background: var(--gold);
  color: var(--white);
}

.calendar-item a[aria-disabled] {
  opacity: 0.48;
  pointer-events: auto;
}

.availability-card {
  min-height: 440px;
  align-content: start;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: rgba(255, 255, 255, 0.88);
}

.availability-card h4 {
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
}

.availability-card .calendar-item {
  gap: 0.75rem;
  padding: 1rem;
}

.availability-card .calendar-item strong {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.availability-note {
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.6;
  text-transform: uppercase;
}

.calendar-sync-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: -0.3rem 0 1.2rem;
}

.sync-pill,
.calendar-live-state {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  width: fit-content;
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.sync-pill {
  min-height: 34px;
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(22, 69, 58, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.sync-pill i,
.calendar-live-state i,
.calendar-platform::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #3d9a69;
  box-shadow: 0 0 0 4px rgba(61, 154, 105, 0.12);
  content: "";
}

.sync-pill.is-pending i,
.calendar-platform.is-pending::before {
  background: #c49245;
  box-shadow: 0 0 0 4px rgba(196, 146, 69, 0.13);
}

.calendar-property-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 68px;
}

.calendar-property-heading h4 {
  margin-top: 0.3rem;
}

.calendar-property-kicker {
  color: var(--gold-dark);
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.calendar-live-state {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 0.42rem 0.58rem;
  border: 1px solid rgba(61, 154, 105, 0.2);
  border-radius: 999px;
  background: rgba(237, 247, 241, 0.9);
}

.calendar-platform-list {
  display: grid;
  border-top: 1px solid rgba(22, 69, 58, 0.1);
}

.calendar-platform {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 43px;
  border-bottom: 1px solid rgba(22, 69, 58, 0.1);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
}

.calendar-platform strong {
  color: var(--forest);
  font-size: 0.62rem;
  line-height: 1.3;
  text-align: right;
  text-transform: uppercase;
}

.calendar-platform.is-pending strong {
  color: #94671f;
}

.calendar-platform.is-offline::before {
  background: #a94c3d;
  box-shadow: 0 0 0 4px rgba(169, 76, 61, 0.12);
}

.calendar-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.calendar-actions button,
.calendar-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.62rem 0.7rem;
  border: 1px solid rgba(22, 69, 58, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.calendar-actions button {
  background: var(--white);
  color: var(--forest);
  cursor: pointer;
}

.calendar-actions a {
  background: var(--forest);
  color: var(--white);
}

.calendar-actions button:hover,
.calendar-actions a:hover {
  transform: translateY(-2px);
}

.calendar-actions button.is-copied {
  border-color: rgba(61, 154, 105, 0.4);
  background: #edf7f1;
}

.calendar-privacy {
  margin: 1rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(22, 69, 58, 0.1);
  font-size: 0.76rem;
}

.guest-voice {
  position: relative;
  overflow: hidden;
  background: #f3f7f3;
  border-top: 1px solid rgba(22, 69, 58, 0.1);
  border-bottom: 1px solid rgba(22, 69, 58, 0.1);
}

.guest-voice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/ambient-morning-nature.webp") center / cover;
  opacity: 0.07;
  pointer-events: none;
}

.guest-voice > * {
  position: relative;
  z-index: 1;
}

.guest-voice-heading {
  max-width: 900px;
}

.guest-voice-heading p:not(.section-kicker) {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.45vw, 1.13rem);
}

.guest-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid rgba(22, 69, 58, 0.16);
  border-bottom: 1px solid rgba(22, 69, 58, 0.16);
}

.guest-highlight {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  min-width: 0;
  padding: clamp(1.2rem, 2.8vw, 2rem);
}

.guest-highlight + .guest-highlight {
  border-left: 1px solid rgba(22, 69, 58, 0.16);
}

.guest-highlight-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--gold);
  border: 1px solid rgba(185, 147, 75, 0.42);
  border-radius: 50%;
  font-size: 1.1rem;
}

.guest-highlight h3,
.guest-form h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
}

.guest-highlight h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.guest-highlight p {
  margin: 0.6rem 0 0;
  color: var(--soft-ink);
}

.guest-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.guest-form {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-width: 0;
  padding: clamp(1.2rem, 3.5vw, 2.5rem);
  border: 1px solid rgba(22, 69, 58, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(20, 18, 15, 0.08);
  backdrop-filter: blur(10px);
}

.guest-form-intro {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 0.4rem;
}

.guest-form-number {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.guest-form h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.guest-form-intro p:not(.section-kicker) {
  margin: 0.7rem 0 0;
  color: var(--soft-ink);
}

.guest-form label:not(.guest-consent),
.star-rating {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.guest-form label > span:first-child,
.star-rating legend {
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guest-form input,
.guest-form select,
.guest-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 22, 21, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0.82rem 0.9rem;
  outline: 0;
}

.guest-form textarea {
  min-height: 132px;
  resize: vertical;
}

.guest-form input:focus,
.guest-form select:focus,
.guest-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 147, 75, 0.16);
}

.star-rating {
  margin: 0;
  padding: 0;
  border: 0;
}

.star-rating-options {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  width: fit-content;
}

.star-rating-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.star-rating-options label {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: rgba(23, 22, 21, 0.22);
  cursor: pointer;
  font-size: 1.65rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.star-rating-options label:hover,
.star-rating-options label:hover ~ label,
.star-rating-options input:checked ~ label {
  color: var(--gold);
}

.star-rating-options label:hover {
  transform: translateY(-2px);
}

.star-rating-options input:focus-visible + label {
  outline: 2px solid var(--ocean);
  outline-offset: 2px;
}

.guest-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--soft-ink);
  font-size: 0.86rem;
}

.guest-consent input {
  width: 18px;
  min-height: 18px;
  margin: 0.12rem 0 0;
  accent-color: var(--forest);
}

.guest-form .btn {
  width: fit-content;
  min-width: 190px;
  border: 0;
}

.guest-form small {
  color: var(--muted);
  line-height: 1.5;
}

.booking {
  background:
    linear-gradient(rgba(251, 250, 246, 0.9), rgba(251, 250, 246, 0.9)),
    url("./assets/casita-grazing-hill.webp") center / cover fixed;
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(1.2rem, 4vw, 3rem);
  background: rgba(251, 250, 246, 0.94);
  border: 1px solid rgba(23, 22, 21, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-card p {
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.reservation-form {
  display: grid;
  gap: 1rem;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 22, 21, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0.85rem 0.9rem;
  outline: 0;
}

.reservation-form textarea {
  resize: vertical;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 147, 75, 0.16);
}

.direct-booking-hub {
  width: min(1180px, 100%);
  margin: clamp(3rem, 7vw, 6rem) auto 0;
  padding-top: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid rgba(23, 22, 21, 0.14);
}

.direct-booking-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.52fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.direct-booking-intro h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.direct-booking-intro > p:last-child {
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.7;
}

.booking-property-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.booking-property-tabs button {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(0.9rem, 2.2vw, 1.5rem);
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease;
}

.booking-property-tabs button:hover,
.booking-property-tabs button[aria-selected="true"] {
  background: var(--forest);
  color: var(--white);
}

.booking-property-tabs span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
}

.booking-property-tabs strong {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.booking-rate-note {
  margin: 0;
  padding: 0.8rem 1rem;
  border-inline-start: 2px solid var(--gold);
  background: rgba(185, 147, 75, 0.08);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.booking-widget-shell {
  min-height: 330px;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(20, 18, 15, 0.08);
}

.booking-widget-panel {
  padding: clamp(1rem, 3vw, 2rem);
}

.booking-widget-panel[hidden] {
  display: none !important;
}

.booking-widget-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.booking-widget-heading span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-widget-heading h3 {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 500;
}

.booking-widget-heading p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.86rem;
  text-align: right;
}

.yr-widget-direct-booking {
  min-height: 190px;
  width: 100% !important;
}

.booking-secure-note {
  max-width: 820px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.pay {
  background: var(--paper);
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pay-box {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(20, 18, 15, 0.06);
}

.pay-box span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pay-box strong {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.05;
  word-break: break-word;
}

.pay-box p {
  color: var(--soft-ink);
}

.pay-box button,
.pay-box a {
  align-self: flex-start;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: transparent;
  color: var(--forest);
  padding: 0.72rem 1rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body[data-atmosphere="sunset"] .intro,
body[data-atmosphere="sunset"] .villas-section,
body[data-atmosphere="sunset"] .house-gallery,
body[data-atmosphere="sunset"] .property-details,
body[data-atmosphere="sunset"] .experience,
body[data-atmosphere="sunset"] .media-experience,
body[data-atmosphere="sunset"] .global-film,
body[data-atmosphere="sunset"] .concierge,
body[data-atmosphere="sunset"] .trust,
body[data-atmosphere="sunset"] .guest-voice,
body[data-atmosphere="sunset"] .channels,
body[data-atmosphere="sunset"] .pay {
  background: rgba(251, 247, 238, 0.86);
  backdrop-filter: blur(10px);
}

body[data-atmosphere="night"] .site-header.is-scrolled,
body[data-atmosphere="night"] .site-header.menu-active,
body[data-atmosphere="night"] .mobile-menu {
  color: var(--white);
  background: rgba(8, 22, 20, 0.9);
  border-color: rgba(255, 255, 255, 0.14);
}

body[data-atmosphere="night"] .mobile-menu a {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
}

body[data-atmosphere="night"] .intro,
body[data-atmosphere="night"] .villas-section,
body[data-atmosphere="night"] .house-gallery,
body[data-atmosphere="night"] .property-details,
body[data-atmosphere="night"] .experience,
body[data-atmosphere="night"] .media-experience,
body[data-atmosphere="night"] .global-film,
body[data-atmosphere="night"] .concierge,
body[data-atmosphere="night"] .amenities,
body[data-atmosphere="night"] .trust,
body[data-atmosphere="night"] .guest-voice,
body[data-atmosphere="night"] .channels,
body[data-atmosphere="night"] .pay {
  color: #fff7e8;
  background: rgba(8, 20, 18, 0.82);
  backdrop-filter: blur(12px);
}

body[data-atmosphere="night"] .section-heading p,
body[data-atmosphere="night"] .intro p,
body[data-atmosphere="night"] .property-details p,
body[data-atmosphere="night"] .experience p,
body[data-atmosphere="night"] .media-experience p,
body[data-atmosphere="night"] .global-film p,
body[data-atmosphere="night"] .concierge p,
body[data-atmosphere="night"] .amenities p,
body[data-atmosphere="night"] .trust p,
body[data-atmosphere="night"] .guest-voice p,
body[data-atmosphere="night"] .channels p,
body[data-atmosphere="night"] .booking-card p,
body[data-atmosphere="night"] .pay p {
  color: rgba(255, 247, 232, 0.76);
}

body[data-atmosphere="night"] .section-kicker,
body[data-atmosphere="night"] .calendar-channel h4,
body[data-atmosphere="night"] .pay-box span {
  color: #e8c875;
}

body[data-atmosphere="night"] .concierge-card,
body[data-atmosphere="night"] .trust-card,
body[data-atmosphere="night"] .guest-form,
body[data-atmosphere="night"] .booking-card,
body[data-atmosphere="night"] .pay-box,
body[data-atmosphere="night"] .calendar-channel,
body[data-atmosphere="night"] .calendar-item {
  color: #fff7e8;
  background: rgba(13, 31, 28, 0.88);
  border-color: rgba(255, 255, 255, 0.14);
}

body[data-atmosphere="night"] .reservation-form input,
body[data-atmosphere="night"] .reservation-form select,
body[data-atmosphere="night"] .reservation-form textarea,
body[data-atmosphere="night"] .guest-form input,
body[data-atmosphere="night"] .guest-form select,
body[data-atmosphere="night"] .guest-form textarea {
  color: #fff7e8;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

body[data-atmosphere="night"] .direct-booking-hub {
  border-color: rgba(255, 255, 255, 0.16);
}

body[data-atmosphere="night"] .direct-booking-intro > p:last-child,
body[data-atmosphere="night"] .booking-widget-heading p,
body[data-atmosphere="night"] .booking-rate-note,
body[data-atmosphere="night"] .booking-secure-note {
  color: rgba(255, 247, 232, 0.76);
}

body[data-atmosphere="night"] .booking-property-tabs,
body[data-atmosphere="night"] .booking-widget-shell,
body[data-atmosphere="night"] .booking-widget-heading {
  border-color: rgba(255, 255, 255, 0.16);
}

body[data-atmosphere="night"] .booking-property-tabs button,
body[data-atmosphere="night"] .booking-widget-shell {
  color: #fff7e8;
  background: rgba(13, 31, 28, 0.9);
}

body[data-atmosphere="night"] .booking-property-tabs button:hover,
body[data-atmosphere="night"] .booking-property-tabs button[aria-selected="true"] {
  background: #b9934b;
  color: #102a25;
}

body[data-atmosphere="night"] .guest-highlight h3,
body[data-atmosphere="night"] .guest-form h3,
body[data-atmosphere="night"] .guest-form label > span:first-child,
body[data-atmosphere="night"] .star-rating legend {
  color: #fff7e8;
}

body[data-atmosphere="night"] .guest-highlight-grid,
body[data-atmosphere="night"] .guest-highlight + .guest-highlight {
  border-color: rgba(255, 255, 255, 0.16);
}

body[data-atmosphere="night"] .pay-box button,
body[data-atmosphere="night"] .pay-box a {
  color: #fff7e8;
  border-color: rgba(255, 255, 255, 0.34);
}

/* Keep pale information panels readable when the automatic night palette is active. */
body[data-atmosphere="night"] :is(.detail-panel, .info-panel, .sync-card, .calendar-vault) {
  color: #171615;
  background: rgba(251, 250, 246, 0.92);
  border-color: rgba(185, 147, 75, 0.28);
}

body[data-atmosphere="night"] :is(.detail-panel, .info-panel, .sync-card, .calendar-vault) p {
  color: #4f4a43;
}

body[data-atmosphere="night"] :is(.detail-panel, .info-panel, .sync-card, .calendar-vault) .section-kicker {
  color: #76591f;
}

body[data-atmosphere="night"] .intro .text-link,
body[data-atmosphere="night"] .concierge-card a,
body[data-atmosphere="night"] .trust-card strong {
  color: #f1d28a;
}

body[data-atmosphere="night"] .trust-card span,
body[data-atmosphere="night"] .calendar-item span {
  color: rgba(255, 247, 232, 0.78);
}

body[data-atmosphere="night"] .calendar-item strong {
  color: #f1d28a;
}

body[data-atmosphere="night"] .calendar-property-kicker,
body[data-atmosphere="night"] .calendar-platform strong {
  color: #e8c875;
}

body[data-atmosphere="night"] .calendar-platform,
body[data-atmosphere="night"] .availability-note {
  color: rgba(255, 247, 232, 0.84);
  border-color: rgba(255, 255, 255, 0.14);
}

body[data-atmosphere="night"] .calendar-platform-list {
  border-color: rgba(255, 255, 255, 0.14);
}

body[data-atmosphere="night"] .calendar-live-state {
  color: #dff3e7;
  background: rgba(61, 154, 105, 0.16);
  border-color: rgba(109, 201, 147, 0.26);
}

body[data-atmosphere="night"] .calendar-actions button {
  color: #fff7e8;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

body[data-atmosphere="night"] .calendar-actions a {
  color: #102a25;
  background: #e8c875;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.5fr);
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5.5rem);
  background: var(--ink);
  color: var(--white);
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-address {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 0.55rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 19;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1rem;
  color: var(--white);
  background: #1fa855;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  z-index: 30;
  max-width: calc(100% - 2rem);
  padding: 0.8rem 1rem;
  color: var(--white);
  background: rgba(9, 42, 36, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translate(-50%, 1rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content.reveal.is-visible {
  transform: translate3d(calc(var(--depth-x, 0) * -10px), calc(var(--depth-y, 0) * -7px), 0);
  transition-duration: 0.45s;
  will-change: transform;
}

.booking-panel.reveal.is-visible {
  transform: translate3d(calc(var(--depth-x, 0) * 9px), calc(var(--depth-y, 0) * 6px), 0);
  transition-duration: 0.45s;
  will-change: transform;
}

@media (max-width: 1320px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

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

  .day-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .villa-card {
    min-height: 520px;
  }

  .gallery-showcase {
    grid-template-columns: 1fr;
  }

  .gallery-copy {
    min-height: auto;
  }

  .gallery-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .details-grid,
  .property-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .button-lab {
    grid-template-columns: 1fr;
  }

  .button-lab-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 1rem;
    gap: 0.8rem;
  }

  .brand small {
    letter-spacing: 0;
  }

  .header-cta {
    display: none;
  }

  .language-control {
    min-width: 62px;
    height: 36px;
  }

  .hero {
    min-height: 100svh;
    padding: calc(var(--header-height) + 2rem) 1rem 1rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 5.2rem);
  }

  .hero .hero-brand-lockup h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 13vw, 3.35rem);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .hero .hero-brand-lockup h1 span {
    display: block;
  }

  .hero .hero-brand-lockup p {
    max-width: 320px;
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .hero-premium-notes {
    display: none;
  }

  .eyebrow {
    max-width: min(100%, 350px);
    font-size: 0.68rem;
    line-height: 1.45;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .booking-panel {
    grid-template-columns: 1fr 1fr;
    margin-top: 2rem;
  }

  .booking-panel button {
    grid-column: 1 / -1;
    min-height: 54px;
  }

  .proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .experience,
  .direct-booking-intro,
  .booking-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .ribbon-track {
    grid-template-columns: 1fr 1fr;
  }

  .day-journey .section-heading {
    color: var(--white);
    text-shadow: 0 2px 24px rgba(9, 42, 36, 0.38);
  }

  .experience-media img {
    aspect-ratio: 5 / 4;
  }

  .media-experience,
  .media-stage {
    grid-template-columns: 1fr;
  }

  .film-grid {
    grid-template-columns: 1fr;
  }

  .film-card {
    min-height: 420px;
  }

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

  .gallery-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .details-grid,
  .property-info-grid,
  .amenity-story {
    grid-template-columns: 1fr;
  }

  .pay-grid {
    grid-template-columns: 1fr;
  }

  .trust {
    grid-template-columns: 1fr;
  }

  .channel-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-grid {
    grid-template-columns: 1fr;
  }

  .guest-action-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.35rem;
    padding-inline: 0.75rem;
  }

  .calendar-actions {
    grid-template-columns: 1fr;
  }

  .brand {
    min-width: 0;
    gap: 0.5rem;
  }

  .brand-text {
    min-width: 0;
  }

  .header-actions {
    gap: 0.2rem;
  }

  .language-control {
    min-width: 54px;
    padding: 0 0.2rem 0 0.5rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .atmosphere-switch {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--header-height) + 0.75rem);
    bottom: auto;
    z-index: 18;
    justify-content: center;
  }

  .atmosphere-switch button {
    flex: 1;
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.72rem;
  }

  .brand small {
    font-size: 0.48rem;
    letter-spacing: 0;
  }

  .hero .hero-brand-lockup h1 {
    font-size: clamp(2.1rem, 12.5vw, 2.85rem);
  }

  .hero-actions,
  .experience-list {
    flex-direction: column;
    width: min(100%, 360px);
  }

  .btn,
  .experience-list span {
    width: 100%;
  }

  .booking-panel {
    grid-template-columns: 1fr;
  }

  .booking-property-tabs {
    grid-template-columns: 1fr;
  }

  .booking-widget-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .booking-widget-heading p {
    text-align: left;
  }

  .proof-band,
  .amenity-grid,
  .ribbon-track,
  .day-flow,
  .channel-board,
  .gallery-photo-grid,
  .concierge-grid {
    grid-template-columns: 1fr;
  }

  .proof-band div,
  .amenity,
  .day-card {
    min-height: 160px;
  }

  .day-card {
    min-height: 360px;
  }

  .villa-card {
    min-height: 440px;
  }

  .gallery-feature {
    min-height: 390px;
  }

  .gallery-photo {
    aspect-ratio: 5 / 4;
  }

  .trust-card {
    grid-template-columns: 1fr;
  }

  .guest-highlight-grid {
    grid-template-columns: 1fr;
  }

  .guest-highlight + .guest-highlight {
    border-left: 0;
    border-top: 1px solid rgba(22, 69, 58, 0.16);
  }

  .guest-form-intro {
    grid-template-columns: 1fr;
  }

  .guest-form .btn {
    width: 100%;
  }

  .concierge-card {
    min-height: 260px;
  }

  .world-marquee {
    margin-inline: -1rem;
  }

  .whatsapp-float {
    left: 1rem;
    right: 1rem;
    width: auto;
  }

  .button-lab-actions a {
    width: 100%;
  }
}

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

  .nature-depth-canvas,
  .hero-4d-aura {
    display: none !important;
  }
}

@media (max-width: 820px) {
  .hero {
    display: block;
    min-height: auto;
    padding: 0 1rem 1.5rem;
    background: #071d19;
  }

  .hero-media {
    inset: var(--header-height) 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4030 / 2316;
  }

  .hero-content {
    width: 100%;
    margin-top: 0;
    padding-top: calc(var(--header-height) + 56.25vw + 1.5rem);
  }
}
/* Clear arrival details beside the live booking engine. */
.booking-policy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--paper);
}

.booking-policy p {
  min-height: 64px;
  margin: 0;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.booking-policy p + p {
  border-inline-start: 1px solid var(--line);
}

.booking-policy span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.booking-policy strong {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

body[data-atmosphere="night"] .booking-policy {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(13, 31, 28, 0.9);
}

body[data-atmosphere="night"] .booking-policy p + p {
  border-color: rgba(255, 255, 255, 0.16);
}

body[data-atmosphere="night"] .booking-policy span {
  color: rgba(255, 247, 232, 0.72);
}

body[data-atmosphere="night"] .booking-policy strong {
  color: #e5c57d;
}

@media (max-width: 620px) {
  .booking-policy {
    grid-template-columns: 1fr;
  }

  .booking-policy p + p {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }
}

/* Immersive accommodation showcase - full-width Three.js scene. */
.three-showcase {
  position: relative;
  overflow: hidden;
  color: #f8f5ec;
  background: #071b1a;
  isolation: isolate;
}

.three-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(42, 112, 105, 0.3), transparent 38%),
    linear-gradient(180deg, #0a2321 0%, #071616 54%, #101d23 100%);
}

.three-showcase-heading {
  position: relative;
  z-index: 3;
  padding-bottom: clamp(1.4rem, 3vw, 2.5rem);
}

.three-showcase-heading .section-kicker {
  color: #d8b66c;
}

.three-showcase-heading h2 {
  max-width: 980px;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 7rem);
  font-weight: 500;
  line-height: 0.92;
}

.three-showcase-heading > p:last-child {
  max-width: 720px;
  margin: 1.2rem 0 0;
  color: rgba(240, 247, 243, 0.74);
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
}

.three-stage {
  position: relative;
  width: 100%;
  height: clamp(620px, 66vw, 820px);
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 27, 26, 0.08), rgba(3, 12, 14, 0.9)),
    url("./assets/rainbow-pool-view.webp") center / contain no-repeat,
    #071b1a;
}

.three-stage::before,
.three-stage::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  z-index: 2;
  height: 22%;
  pointer-events: none;
}

.three-stage::before {
  top: 0;
  background: linear-gradient(180deg, #071b1a, transparent);
}

.three-stage::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(3, 12, 14, 0.96), transparent);
}

.three-gallery-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  opacity: 0;
  cursor: grab;
  touch-action: pan-y;
  transition: opacity 0.8s ease;
}

.three-gallery-canvas:active {
  cursor: grabbing;
}

.three-stage.is-three-ready .three-gallery-canvas {
  opacity: 1;
}

.three-stage-fallback {
  position: absolute;
  inset: 7% 4% 17%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 2rem);
  align-items: center;
  transition: opacity 0.45s ease;
}

.three-stage-fallback figure {
  display: grid;
  place-items: center;
  min-width: 0;
  margin: 0;
  padding: 0;
  background: rgba(4, 18, 17, 0.72);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.36);
}

.three-stage-fallback figure:nth-child(2) {
  transform: translateY(-4%);
}

.three-stage-fallback img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
}

.three-stage.is-three-ready .three-stage-fallback {
  opacity: 0;
  pointer-events: none;
}

.three-caption {
  position: absolute;
  left: clamp(1rem, 5vw, 5rem);
  bottom: clamp(2rem, 5vw, 4.6rem);
  z-index: 4;
  width: min(560px, calc(100% - 2rem));
  color: #ffffff;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.three-caption > span,
.three-caption > p:first-of-type {
  display: inline-block;
  margin: 0 0.65rem 0.55rem 0;
  color: #e4c272;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.three-caption h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 500;
  line-height: 0.82;
}

.three-caption > p[data-three-copy] {
  max-width: 540px;
  margin: 1rem 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.92rem, 1.3vw, 1.08rem);
}

.three-caption-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.three-caption-facts strong {
  color: #f2d58f;
  font-size: 1.02rem;
}

.three-caption-facts span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.three-caption-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1.1rem;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  pointer-events: auto;
}

.three-caption-link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.25s ease;
}

.three-caption-link:hover svg {
  transform: translate(3px, -3px);
}

.three-controls {
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: clamp(2rem, 5vw, 4.6rem);
  z-index: 5;
  display: flex;
  gap: 0.55rem;
}

.three-controls button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(6, 24, 23, 0.72);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.three-controls button:hover,
.three-controls button:focus-visible {
  border-color: #e4c272;
  background: rgba(180, 139, 69, 0.84);
  transform: translateY(-2px);
}

.three-controls svg {
  width: 21px;
  height: 21px;
}

.three-instruction {
  position: absolute;
  top: 2rem;
  right: clamp(1rem, 5vw, 5rem);
  z-index: 4;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* Refined depth for the three property choices. */
.villa-grid {
  perspective: 1600px;
}

.villa-card[data-property-card] {
  --card-rx: 0deg;
  --card-ry: 0deg;
  --card-lift: 0px;
  transform: perspective(1400px) rotateX(var(--card-rx)) rotateY(var(--card-ry)) translateY(var(--card-lift));
  transform-style: preserve-3d;
  will-change: transform;
}

.villa-card[data-property-card]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, var(--card-shine, 0)) 48%, transparent 76%);
  transform: translateX(var(--card-shine-x, -55%));
  transition: opacity 0.25s ease;
}

.villa-card[data-property-card] .villa-card-content {
  z-index: 3;
  transform: translateZ(44px) translateY(var(--content-shift, 0px));
  transition: transform 0.4s ease;
}

.villa-card[data-property-card] img {
  transform: translateZ(12px) scale(0.985);
  transition: filter 0.45s ease, transform 0.45s ease;
}

.villa-card[data-property-card].is-tilting img {
  filter: saturate(1.06) contrast(1.03);
}

.villa-card[data-property-card].is-tilting .villa-card-content {
  --content-shift: -5px;
}

.details-grid {
  perspective: 1500px;
}

.detail-panel {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.detail-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--ocean), var(--forest));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.detail-panel:hover {
  transform: translateY(-7px) rotateX(1.2deg);
  border-color: rgba(185, 147, 75, 0.44);
  box-shadow: 0 24px 54px rgba(16, 35, 31, 0.15);
}

.detail-panel:hover::after {
  transform: scaleX(1);
}

.detail-panel li {
  transition: transform 0.28s ease, color 0.28s ease;
}

.detail-panel li:hover {
  color: var(--forest);
  transform: translateX(5px);
}

@media (max-width: 900px) {
  .three-showcase-heading h2 {
    font-size: clamp(2.7rem, 10vw, 5rem);
  }

  .three-stage {
    height: 720px;
    min-height: 720px;
  }

  .three-caption {
    right: 1rem;
    bottom: 6.8rem;
    width: auto;
  }

  .three-caption h3 {
    font-size: clamp(3.2rem, 14vw, 5.8rem);
  }

  .three-controls {
    right: auto;
    left: 1rem;
    bottom: 2rem;
  }

  .three-instruction {
    top: 1rem;
    right: 1rem;
  }
}

@media (max-width: 620px) {
  .three-stage {
    height: 700px;
    min-height: 700px;
  }

  .three-stage-fallback {
    inset: 3.5rem 1rem 13rem;
    grid-template-columns: 1fr;
  }

  .three-stage-fallback figure:not(:first-child) {
    display: none;
  }

  .three-stage-fallback figure:nth-child(2) {
    transform: none;
  }

  .three-caption > p[data-three-copy] {
    max-width: 95%;
  }

  .three-instruction {
    display: none;
  }

  .villa-card[data-property-card] {
    transform: none !important;
  }

  .villa-card[data-property-card] .villa-card-content,
  .villa-card[data-property-card] img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .three-gallery-canvas {
    cursor: default;
  }

  .villa-card[data-property-card],
  .villa-card[data-property-card] .villa-card-content,
  .villa-card[data-property-card] img,
  .detail-panel {
    transform: none !important;
  }
}
/* Ambient full-photo presentation - 20260724 */
.motion-gallery figure,
.day-card,
.villa-card,
.gallery-feature,
.gallery-photo,
.film-card,
.three-stage-fallback figure {
  background-color: #173e35;
}

.has-media-backdrop.has-media-backdrop {
  background-image:
    linear-gradient(135deg, rgba(6, 25, 22, 0.72), rgba(25, 75, 63, 0.42)),
    var(--media-backdrop);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.has-media-backdrop > img {
  filter: drop-shadow(0 16px 28px rgba(2, 13, 12, 0.3));
}

.house-gallery {
  color: #f7f5ee;
  background:
    linear-gradient(180deg, rgba(5, 25, 23, 0.96), rgba(13, 55, 47, 0.92) 48%, rgba(6, 28, 27, 0.97)),
    url("./assets/main-villa-pool-day.webp") center / cover no-repeat;
}

.house-gallery::before {
  background:
    linear-gradient(115deg, rgba(213, 181, 111, 0.1), transparent 36%),
    url("./assets/rainbow-pool-view.webp") center / cover no-repeat;
  opacity: 0.16;
}

.house-gallery .section-heading,
.house-gallery .gallery-tabs,
.house-gallery .gallery-panel {
  position: relative;
  z-index: 1;
}

.house-gallery .section-heading h2,
.house-gallery .gallery-copy h3 {
  color: #ffffff;
}

.house-gallery .section-kicker,
.house-gallery .gallery-copy span,
.house-gallery .gallery-copy strong {
  color: #e3c478;
}

.house-gallery .gallery-tab {
  color: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(4, 24, 22, 0.62);
  backdrop-filter: blur(14px);
}

.house-gallery .gallery-tab:hover,
.house-gallery .gallery-tab:focus-visible {
  color: #ffffff;
  border-color: rgba(227, 196, 120, 0.68);
  background: rgba(15, 60, 51, 0.84);
}

.house-gallery .gallery-tab.is-active {
  color: #102b25;
  border-color: #e3c478;
  background: #e3c478;
}

.gallery-panels {
  min-height: 0;
}

.house-gallery .gallery-showcase,
.house-gallery .gallery-photo-grid {
  gap: clamp(0.4rem, 0.8vw, 0.7rem);
}

.house-gallery .gallery-copy {
  color: rgba(248, 250, 246, 0.82);
  border-color: rgba(255, 255, 255, 0.16);
  border-left-color: #e3c478;
  background:
    linear-gradient(135deg, rgba(5, 28, 25, 0.84), rgba(15, 61, 51, 0.72)),
    url("./assets/rainbow-pool-view.webp") center / cover no-repeat;
  box-shadow: 0 24px 64px rgba(1, 14, 13, 0.24);
  backdrop-filter: blur(18px);
}

.house-gallery .gallery-copy strong {
  border-color: rgba(227, 196, 120, 0.32);
  background: rgba(227, 196, 120, 0.08);
}

.house-gallery .gallery-photo,
.house-gallery .gallery-feature {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 45px rgba(2, 14, 13, 0.24);
}

.house-gallery .gallery-photo:hover,
.house-gallery .gallery-photo:focus-visible,
.house-gallery .gallery-feature:hover,
.house-gallery .gallery-feature:focus-visible {
  border-color: rgba(227, 196, 120, 0.74);
  box-shadow: 0 24px 58px rgba(2, 14, 13, 0.34);
}

@media (max-width: 820px) {
  .house-gallery {
    background:
      linear-gradient(180deg, rgba(5, 25, 23, 0.97), rgba(13, 55, 47, 0.94) 48%, rgba(6, 28, 27, 0.98)),
      url("./assets/main-villa-pool-day.webp") center / cover no-repeat;
  }
}
/* Editorial clarity and image emphasis - 20260724 */
.section-heading h2,
.split-layout h2,
.experience-content h2 {
  font-weight: 400;
  line-height: 1;
}

.section-kicker,
.eyebrow {
  font-weight: 600;
}

.has-media-backdrop.has-media-backdrop {
  background-image:
    linear-gradient(135deg, rgba(5, 24, 21, 0.54), rgba(24, 75, 63, 0.24)),
    var(--media-backdrop);
}

.motion-gallery img,
.day-card img,
.villa-card img,
.gallery-feature img,
.gallery-photo img,
.film-card img {
  filter: saturate(1.03) contrast(1.02) drop-shadow(0 14px 30px rgba(2, 14, 12, 0.28));
}

.hero {
  min-height: 100svh;
  background: #071d19;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 24, 21, 0.82) 0%, rgba(5, 24, 21, 0.38) 35%, transparent 68%),
    linear-gradient(to top, rgba(4, 20, 18, 0.94) 0%, rgba(4, 20, 18, 0.46) 30%, transparent 66%),
    linear-gradient(to bottom, rgba(4, 20, 18, 0.3), transparent 26%);
}

.hero-editorial-light,
.hero-4d-aura {
  opacity: 0.34;
}

.hero-grain {
  opacity: 0.08;
}

.hero-luxury-lines,
.hero-premium-notes,
.hero-kinetic {
  display: none;
}

.hero-content {
  z-index: 4;
  width: min(690px, 58vw);
  margin: 0;
}

.hero-brand-lockup {
  width: 100%;
  margin: 0 0 0.7rem;
  padding: 0 0 0.65rem;
}

.hero-brand-lockup::after {
  width: min(360px, 72%);
  margin-top: 0.75rem;
  opacity: 0.7;
}

.hero .hero-brand-lockup h1 {
  max-width: 690px;
  color: #fffaf0;
  font-size: clamp(3.25rem, 5.1vw, 5.35rem);
  font-weight: 400;
  line-height: 0.84;
  text-wrap: balance;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.38);
}

.hero .hero-brand-lockup h1 span:first-child {
  display: block;
  margin-bottom: 0.12em;
  font-size: 0.58em;
}

.hero .hero-brand-lockup h1 span:nth-child(2),
.hero .hero-brand-lockup h1 span:nth-child(3) {
  display: inline;
}

.hero .hero-brand-lockup p {
  margin-top: 0.65rem;
  color: rgba(255, 248, 229, 0.76);
  font-size: 0.7rem;
  font-weight: 500;
}

.hero .eyebrow {
  margin: 0.65rem 0 0;
  color: #e2c176;
  font-size: 0.68rem;
}

.hero-copy {
  max-width: 520px;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 1rem;
}

.booking-panel {
  z-index: 5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 18px 54px rgba(1, 14, 12, 0.28);
}

.booking-panel label {
  background: rgba(6, 35, 30, 0.72);
}

.villa-grid {
  align-items: stretch;
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
}

.villa-card {
  display: grid;
  grid-template-rows: minmax(340px, 1fr) auto;
  min-height: 690px;
  color: var(--ink);
  border: 1px solid rgba(22, 69, 58, 0.13);
  background-color: #173e35;
  box-shadow: 0 22px 54px rgba(16, 35, 31, 0.14);
}

.villa-card::after {
  display: none;
}

.villa-card img,
.villa-card[data-property-card] img {
  position: relative;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: contain;
  transform: translateZ(10px);
}

.villa-card-content,
.villa-card[data-property-card] .villa-card-content {
  position: relative;
  inset: auto;
  grid-row: 2;
  padding: clamp(1.2rem, 1.8vw, 1.6rem);
  color: var(--ink);
  border-top: 1px solid rgba(22, 69, 58, 0.12);
  background: rgba(250, 249, 244, 0.97);
  transform: translateZ(28px);
}

.villa-card-content span {
  color: var(--gold-dark);
  font-size: 0.64rem;
  font-weight: 700;
}

.villa-card-content h3 {
  margin-top: 0.35rem;
  color: var(--deep-forest);
  font-size: clamp(2.15rem, 3vw, 3.1rem);
  font-weight: 400;
  line-height: 0.95;
}

.villa-card-content p {
  margin: 0.75rem 0 1rem;
  color: #5f5b54;
  font-size: 0.88rem;
  line-height: 1.62;
}

.stay-facts {
  gap: 0.35rem;
}

.stay-facts strong,
.stay-facts span {
  min-height: 1.85rem;
  padding: 0.4rem 0.58rem;
  border-color: rgba(22, 69, 58, 0.14);
  background: rgba(22, 69, 58, 0.06);
  color: #35564d;
  font-size: 0.62rem;
  backdrop-filter: none;
}

.stay-facts strong {
  border-color: transparent;
  background: #d7b86e;
  color: #171511;
}

.villa-card-content a {
  color: var(--forest);
  font-size: 0.7rem;
}

@media (min-width: 821px) {
  .hero-content {
    position: absolute;
    left: clamp(1.5rem, 5vw, 5.5rem);
    bottom: clamp(8.9rem, 17vh, 11.5rem);
  }

  .booking-panel {
    position: absolute;
    right: clamp(1.5rem, 5vw, 5.5rem);
    bottom: clamp(1.2rem, 2.4vw, 2rem);
    left: clamp(1.5rem, 5vw, 5.5rem);
    width: auto;
    margin: 0;
  }
}

@media (min-width: 1101px) {
  .villa-card-content p {
    min-height: 7.1em;
  }

  .stay-facts {
    min-height: 4.1rem;
    align-content: flex-start;
  }
}

@media (max-width: 1100px) {
  .villa-card {
    grid-template-rows: minmax(420px, 56vw) auto;
    min-height: 0;
  }

  .villa-card img,
  .villa-card[data-property-card] img {
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 0;
    padding-bottom: 1.25rem;
  }

  .hero-overlay,
  .hero-editorial-light,
  .hero-grain,
  .hero-4d-aura {
    display: none;
  }

  .hero-content {
    position: relative;
    width: 100%;
    padding-right: 0.15rem;
    padding-left: 0.15rem;
  }

  .hero .hero-brand-lockup h1 {
    font-size: clamp(2.6rem, 12.2vw, 3.45rem);
    line-height: 0.86;
  }

  .hero .hero-brand-lockup h1 span:first-child {
    font-size: 0.55em;
  }

  .hero-copy {
    max-width: 600px;
    font-size: 0.9rem;
  }

  .booking-panel {
    margin-top: 1.3rem;
  }

  .villa-card {
    grid-template-rows: minmax(300px, 78vw) auto;
  }

  .villa-card img,
  .villa-card[data-property-card] img {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 46px;
    padding-inline: 0.7rem;
    font-size: 0.66rem;
  }

  .villa-card-content,
  .villa-card[data-property-card] .villa-card-content {
    padding: 1.15rem;
  }
}
/* Nature-led visual order and living bird atmosphere - 20260724 */
main#main {
  display: flex;
  flex-direction: column;
}

.hero { order: 10; }
.proof-band { order: 20; }
.intro { order: 30; }
.villas-section { order: 40; }
.three-showcase { order: 50; }
.house-gallery { order: 60; }
.property-details { order: 70; }
.bird-flight-section { order: 80; }
.day-journey { order: 90; }
.motion-gallery { order: 100; }
.experience { order: 110; }
.media-experience { order: 120; }
.global-film { order: 130; }
.concierge { order: 140; }
.amenities { order: 150; }
.trust { order: 160; }
.channels { order: 170; }
.guest-voice { order: 180; }
.booking { order: 190; }
.pay { order: 200; }

.image-ribbon {
  display: none;
}

.site-birds {
  position: fixed;
  inset: 0;
  z-index: 16;
  overflow: hidden;
  pointer-events: none;
}

.site-bird {
  position: absolute;
  left: -36vw;
  width: clamp(110px, 15vw, 240px);
  max-width: none;
  opacity: 0.18;
  mix-blend-mode: multiply;
  filter: saturate(0.9) contrast(1.04);
  will-change: transform;
}

.site-bird-one {
  top: 20vh;
  animation: siteBirdFlight 34s linear infinite;
}

.site-bird-two {
  top: 58vh;
  width: clamp(90px, 11vw, 175px);
  opacity: 0.13;
  transform: scaleX(-1);
  animation: siteBirdFlightReverse 46s linear 8s infinite;
}

.site-bird-three {
  top: 40vh;
  width: clamp(70px, 8vw, 130px);
  opacity: 0.11;
  animation: siteBirdFlight 55s linear 19s infinite;
}

@keyframes siteBirdFlight {
  from { transform: translate3d(-8vw, 6vh, 0) rotate(-2deg); }
  45% { transform: translate3d(78vw, -5vh, 0) rotate(1deg); }
  to { transform: translate3d(172vw, 3vh, 0) rotate(-1deg); }
}

@keyframes siteBirdFlightReverse {
  from { transform: translate3d(172vw, -3vh, 0) scaleX(-1) rotate(-1deg); }
  55% { transform: translate3d(72vw, 5vh, 0) scaleX(-1) rotate(1deg); }
  to { transform: translate3d(-12vw, -2vh, 0) scaleX(-1) rotate(-2deg); }
}

.proof-band {
  position: relative;
  background:
    linear-gradient(90deg, rgba(20, 69, 58, 0.9), rgba(34, 91, 73, 0.8)),
    url("./assets/gallery/our-mountain/original/04-sunlit-mountain-panorama.jpg") center 52% / cover no-repeat;
}

.motion-gallery {
  background:
    linear-gradient(90deg, rgba(234, 242, 235, 0.96), rgba(214, 231, 219, 0.92), rgba(239, 224, 188, 0.84)),
    url("./assets/gallery/our-mountain/original/03-tropical-garden-path.jpg") center / cover no-repeat;
  border-color: rgba(22, 69, 58, 0.12);
}

.motion-gallery figure,
.day-card,
.villa-card,
.gallery-feature,
.gallery-photo,
.film-card,
.three-stage-fallback figure,
.experience-media {
  background-color: #dce8df;
}

.has-media-backdrop.has-media-backdrop {
  background-image:
    linear-gradient(135deg, rgba(237, 245, 239, 0.34), rgba(29, 82, 68, 0.12)),
    var(--media-backdrop);
}

.three-showcase {
  color: var(--deep-forest);
  background:
    linear-gradient(180deg, rgba(238, 246, 240, 0.93), rgba(214, 231, 218, 0.84)),
    url("./assets/gallery/our-mountain/original/04-sunlit-mountain-panorama.jpg") center / cover no-repeat;
}

.three-showcase::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 42%),
    linear-gradient(180deg, rgba(232, 242, 234, 0.2), rgba(225, 238, 228, 0.66));
}

.three-showcase-heading .section-kicker {
  color: var(--gold-dark);
}

.three-showcase-heading h2 {
  color: var(--deep-forest);
}

.three-showcase-heading > p:last-child {
  color: rgba(18, 61, 51, 0.78);
}

.three-stage {
  background:
    linear-gradient(180deg, rgba(235, 245, 238, 0.12), rgba(13, 50, 43, 0.34)),
    url("./assets/gallery/our-mountain/original/04-sunlit-mountain-panorama.jpg") center / cover no-repeat,
    #dce9df;
}

.three-stage::before {
  background: linear-gradient(180deg, rgba(231, 242, 234, 0.98), transparent);
}

.three-stage::after {
  background: linear-gradient(0deg, rgba(13, 49, 43, 0.88), transparent);
}

.three-stage-fallback figure {
  background:
    linear-gradient(135deg, rgba(237, 245, 239, 0.34), rgba(29, 82, 68, 0.1)),
    url("./assets/gallery/our-mountain/original/03-tropical-garden-path.jpg") center / cover no-repeat;
}

.house-gallery {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(247, 249, 244, 0.94), rgba(231, 241, 233, 0.88) 48%, rgba(244, 237, 218, 0.9)),
    url("./assets/main-villa-pool-day.webp") center / cover no-repeat;
}

.house-gallery::before {
  background:
    linear-gradient(115deg, rgba(185, 147, 75, 0.1), transparent 38%),
    url("./assets/gallery/our-mountain/original/03-tropical-garden-path.jpg") center / cover no-repeat;
  opacity: 0.1;
}

.house-gallery .section-heading h2,
.house-gallery .gallery-copy h3 {
  color: var(--deep-forest);
}

.house-gallery .section-kicker,
.house-gallery .gallery-copy span,
.house-gallery .gallery-copy strong {
  color: var(--gold-dark);
}

.house-gallery .gallery-tab {
  color: var(--forest);
  border-color: rgba(22, 69, 58, 0.2);
  background: rgba(255, 255, 255, 0.78);
}

.house-gallery .gallery-tab:hover,
.house-gallery .gallery-tab:focus-visible {
  color: #ffffff;
  background: rgba(22, 69, 58, 0.9);
}

.house-gallery .gallery-tab.is-active {
  color: #ffffff;
  border-color: var(--forest);
  background: var(--forest);
}

.house-gallery .gallery-copy {
  color: var(--soft-ink);
  border-color: rgba(22, 69, 58, 0.14);
  border-left-color: var(--gold);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(233, 242, 235, 0.84)),
    url("./assets/gallery/our-mountain/original/04-sunlit-mountain-panorama.jpg") center / cover no-repeat;
  box-shadow: 0 24px 64px rgba(22, 69, 58, 0.14);
}

.bird-flight-section {
  position: relative;
  min-height: clamp(560px, 70vw, 860px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.55fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(11, 49, 42, 0.84) 0%, rgba(11, 49, 42, 0.42) 46%, rgba(11, 49, 42, 0.16) 72%),
    linear-gradient(0deg, rgba(7, 35, 31, 0.56), transparent 52%),
    url("./assets/gallery/our-mountain/original/04-sunlit-mountain-panorama.jpg") center / cover no-repeat;
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

.bird-flight-copy,
.bird-reference-card {
  position: relative;
  z-index: 3;
}

.bird-flight-copy {
  max-width: 720px;
  align-self: center;
}

.bird-flight-copy .section-kicker {
  color: #efd18a;
}

.bird-flight-copy h2 {
  max-width: 720px;
  margin: 0.35rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7.2rem);
  font-weight: 500;
  line-height: 0.9;
}

.bird-flight-copy > p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.bird-reference-card {
  width: min(100%, 480px);
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(15, 59, 49, 0.2)),
    url("./assets/gallery/costa-rica-wildlife/original/06-toucan-in-costa-rica.jpg") center / cover no-repeat;
  box-shadow: 0 28px 72px rgba(5, 28, 24, 0.28);
  backdrop-filter: blur(10px);
}

.bird-reference-card img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
}

.bird-reference-card figcaption {
  padding: 1rem 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(9, 43, 36, 0.8);
  font-size: 0.78rem;
}

.bird-section-flight {
  position: absolute;
  top: 6%;
  right: -8%;
  z-index: 2;
  width: min(58vw, 760px);
  pointer-events: none;
  mix-blend-mode: multiply;
  animation: birdSectionGlide 18s ease-in-out infinite alternate;
}

.bird-section-flight img {
  width: 100%;
  opacity: 0.82;
}

@keyframes birdSectionGlide {
  from { transform: translate3d(-4vw, 1vh, 0) rotate(-1deg); }
  to { transform: translate3d(-18vw, 7vh, 0) rotate(2deg); }
}

.amenities {
  background:
    linear-gradient(115deg, rgba(14, 61, 51, 0.94), rgba(22, 82, 67, 0.82)),
    url("./assets/gallery/our-mountain/original/03-tropical-garden-path.jpg") center / cover no-repeat;
}

.retreat-film,
.video-caption {
  background:
    linear-gradient(rgba(229, 239, 232, 0.86), rgba(229, 239, 232, 0.86)),
    url("./assets/gallery/our-mountain/original/04-sunlit-mountain-panorama.jpg") center / cover no-repeat;
}

.video-caption {
  color: var(--deep-forest);
}

.site-footer {
  background:
    linear-gradient(100deg, rgba(12, 49, 42, 0.95), rgba(17, 69, 57, 0.86)),
    url("./assets/gallery/our-mountain/original/02-red-chairs-mountain-sunset.jpg") center / cover no-repeat;
}

@media (max-width: 820px) {
  .house-gallery {
    background:
      linear-gradient(180deg, rgba(247, 249, 244, 0.95), rgba(231, 241, 233, 0.92) 48%, rgba(244, 237, 218, 0.94)),
      url("./assets/main-villa-pool-day.webp") center / cover no-repeat;
  }

  .bird-flight-section {
    min-height: 720px;
    grid-template-columns: 1fr;
    align-content: end;
    gap: 1.5rem;
    background:
      linear-gradient(180deg, rgba(11, 49, 42, 0.24), rgba(11, 49, 42, 0.9) 66%),
      url("./assets/gallery/our-mountain/original/04-sunlit-mountain-panorama.jpg") center / cover no-repeat;
  }

  .bird-reference-card {
    width: min(78vw, 420px);
    justify-self: start;
  }

  .bird-section-flight {
    top: 7%;
    right: -22%;
    width: min(96vw, 700px);
  }

  .site-bird-two,
  .site-bird-three {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-bird,
  .bird-section-flight {
    animation: none !important;
  }

  .site-birds {
    display: none;
  }
}
/* Keep automatic sunset and night modes photographic, never empty black. */
body[data-atmosphere="sunset"] .intro,
body[data-atmosphere="sunset"] .villas-section,
body[data-atmosphere="sunset"] .property-details,
body[data-atmosphere="sunset"] .experience,
body[data-atmosphere="sunset"] .media-experience,
body[data-atmosphere="sunset"] .global-film,
body[data-atmosphere="sunset"] .concierge,
body[data-atmosphere="sunset"] .trust,
body[data-atmosphere="sunset"] .guest-voice,
body[data-atmosphere="sunset"] .channels,
body[data-atmosphere="sunset"] .pay {
  background:
    linear-gradient(rgba(251, 247, 238, 0.88), rgba(246, 239, 224, 0.86)),
    url("./assets/gallery/our-mountain/original/03-tropical-garden-path.jpg") center / cover no-repeat;
}

body[data-atmosphere="night"] .intro,
body[data-atmosphere="night"] .villas-section,
body[data-atmosphere="night"] .property-details,
body[data-atmosphere="night"] .experience,
body[data-atmosphere="night"] .media-experience,
body[data-atmosphere="night"] .global-film,
body[data-atmosphere="night"] .concierge,
body[data-atmosphere="night"] .trust,
body[data-atmosphere="night"] .guest-voice,
body[data-atmosphere="night"] .channels,
body[data-atmosphere="night"] .pay {
  background:
    linear-gradient(rgba(8, 31, 27, 0.8), rgba(12, 45, 37, 0.78)),
    url("./assets/gallery/our-mountain/original/03-tropical-garden-path.jpg") center / cover no-repeat;
}

body[data-atmosphere="sunset"] .house-gallery {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(250, 247, 239, 0.92), rgba(233, 241, 232, 0.86)),
    url("./assets/main-villa-pool-day.webp") center / cover no-repeat;
}

body[data-atmosphere="night"] .house-gallery {
  background:
    linear-gradient(180deg, rgba(8, 35, 30, 0.82), rgba(13, 53, 44, 0.8)),
    url("./assets/main-villa-pool-day.webp") center / cover no-repeat;
}

.house-gallery .gallery-copy,
body[data-atmosphere="sunset"] .house-gallery .gallery-copy,
body[data-atmosphere="night"] .house-gallery .gallery-copy {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(229, 240, 231, 0.82)),
    url("./assets/rainbow-pool-view.webp") center / cover no-repeat;
}

body[data-atmosphere="night"] .house-gallery .gallery-copy {
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(7, 32, 28, 0.84), rgba(15, 61, 51, 0.74)),
    url("./assets/rainbow-pool-view.webp") center / cover no-repeat;
}