:root {
  --sand: #f3ead9;
  --sand-2: #eadcc5;
  --green: #050505;
  --green-2: #000;
  --leaf: #2fb36e;
  --charcoal: #17120e;
  --muted: #786a5b;
  --ink: #0b0907;
  --surface: #f7efe1;
  --surface-2: #eadbc4;
  --lavender: #d7c8aa;
  --clay: #f26a1b;
  --ochre: #c8943e;
  --white: #fff4e6;
  --line: rgba(23, 18, 14, .16);
  --dark-line: rgba(255, 244, 230, .2);
  --shadow: 0 22px 80px rgba(0, 0, 0, .34);
  --radius: 8px;
  --max: 1180px;
  --cream: #f3ead9;
  --cream-2: #e6d6be;
  --cream-3: #fff4e6;
  --noir: #050505;
  --noir-2: #12100d;
  --noir-3: #1b1712;
  --gold-soft: #c8943e;
  --cream-line: rgba(40, 28, 18, .16);
  --gold-line: rgba(200, 148, 62, .34);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--charcoal);
  background: var(--sand-2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 250, 242, .026) 1px, transparent 1px);
  background-size: 72px 72px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a, input, select { outline-color: var(--lavender); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 10px clamp(16px, 3vw, 34px);
  border-bottom: 1px solid rgba(255, 250, 242, .18);
  background: rgba(0, 0, 0, .92);
  color: var(--white);
  backdrop-filter: blur(18px);
}
.brand img { width: auto; height: clamp(54px, 5.5vw, 74px); }
.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 22px);
  font-size: 13px;
  font-weight: 800;
}
.main-nav a {
  padding: 8px 0;
  color: rgba(255, 250, 242, .82);
}
.main-nav a:hover { color: var(--white); }
.header-actions,
.split-actions,
.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255, 244, 230, .24);
  border-radius: 999px;
  background: rgba(255, 244, 230, .08);
}
.language-toggle a {
  min-width: 34px;
  padding: 7px 9px;
  border-radius: 999px;
  color: rgba(255, 244, 230, .76);
  font-size: 11px;
  font-weight: 950;
  text-align: center;
}
.language-toggle a[aria-current="true"] {
  background: var(--cream-3);
  color: var(--noir);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--dark-line);
  background: transparent;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--clay); color: #fff; }
.btn.secondary { background: #000; color: var(--white); }
.btn.ghost {
  background: rgba(255, 250, 242, .1);
  border-color: currentColor;
  color: inherit;
}
.btn.compact {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 12px;
}
.tere-btn {
  width: 46px;
  min-width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border-color: rgba(37, 211, 102, .46);
  border-radius: 999px;
  background: rgba(0, 0, 0, .76);
  color: #07140c;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .28), inset 0 0 0 1px rgba(255, 250, 242, .1);
}
.tere-btn.compact {
  width: 46px;
  min-width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
}
.tere-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: #07140c;
  font-weight: 950;
}
.tere-mark svg {
  width: 22px;
  height: 22px;
  fill: #07140c;
}
.tere-copy {
  display: none;
}
.tere-copy strong {
  font-size: 12px;
  line-height: 1;
}
.tere-copy small {
  color: rgba(255, 250, 242, .68);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: min(calc(100svh - 240px), 700px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  color: var(--white);
  background: var(--green-2);
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-carousel,
.hero-carousel figure {
  position: absolute;
  inset: 0;
  margin: 0;
}
.hero-carousel figure {
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 900ms ease, transform 5200ms ease;
}
.hero-carousel figure.active {
  opacity: 1;
  transform: scale(1);
}
.hero-carousel figcaption {
  position: absolute;
  right: clamp(16px, 4vw, 52px);
  bottom: clamp(22px, 5vw, 72px);
  display: grid;
  gap: 3px;
  max-width: 310px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 250, 242, .24);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .34);
  color: var(--white);
  backdrop-filter: blur(14px);
}
.hero-carousel figcaption strong {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.hero-carousel figcaption span {
  color: rgba(255, 250, 242, .76);
  font-size: 12px;
  line-height: 1.35;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .56) 0%, rgba(0, 0, 0, .28) 44%, rgba(0, 0, 0, .06) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .52), transparent 45%);
}
.hero-copy {
  width: min(720px, calc(100vw - 32px));
  margin-left: clamp(16px, 7vw, 108px);
  padding: 0 0 clamp(110px, 14vh, 150px);
}
.location-line,
.label,
.section-heading p {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero .location-line { color: var(--lavender); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}
h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: .95;
  overflow-wrap: break-word;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 1;
}
h3 {
  margin-bottom: 10px;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.08;
}
.hero-copy p:not(.location-line) {
  max-width: 650px;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.5;
  color: rgba(255, 250, 242, .88);
}
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  max-width: 760px;
  gap: 8px;
  margin-top: 26px;
}
.trust-bar span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 250, 242, .26);
  border-radius: 999px;
  background: rgba(255, 250, 242, .09);
  font-size: 12px;
  font-weight: 800;
}
.hero-book {
  position: absolute;
  left: clamp(16px, 7vw, 108px);
  right: clamp(16px, 7vw, 108px);
  bottom: clamp(28px, 5vh, 58px);
}
.booking-panel {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) minmax(120px, 1fr) minmax(84px, .68fr) minmax(72px, .45fr) auto;
  gap: 9px;
  max-width: 1040px;
  padding: 10px;
  border: 1px solid rgba(255, 250, 242, .24);
  border-radius: var(--radius);
  background: rgba(14, 13, 12, .9);
  color: var(--white);
  box-shadow: var(--shadow);
}
.booking-panel-head {
  min-width: 132px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 0 10px 0 2px;
}
.booking-panel-head strong {
  font-size: 14px;
  font-weight: 950;
}
.booking-panel-head span {
  color: rgba(255, 250, 242, .62);
  font-size: 11px;
  font-weight: 800;
}
.booking-panel label {
  display: grid;
  gap: 6px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-panel input,
.booking-panel select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 242, .96);
  color: #201b18;
  padding: 9px 10px;
}
.booking-presets {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.booking-presets button {
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 250, 242, .16);
  border-radius: 999px;
  background: rgba(255, 250, 242, .07);
  color: rgba(255, 250, 242, .82);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}
.booking-presets button.active {
  border-color: var(--clay);
  background: rgba(210, 118, 80, .22);
  color: var(--white);
}

.section {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 0;
}
.section-heading {
  max-width: 730px;
  margin-bottom: 14px;
}
.section-heading.wide {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
}
.section-heading.wide h2 { max-width: 780px; margin-bottom: 0; }
.section-heading a {
  color: var(--clay);
  font-weight: 950;
}
.section-heading a.open-gallery-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(242, 106, 27, .42);
  border-radius: 999px;
  background: rgba(242, 106, 27, .1);
  color: var(--clay);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .12);
}
.section-heading a.open-gallery-link::after {
  content: "->";
  margin-left: 10px;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.intent-card {
  min-height: 252px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(32, 27, 24, .07);
}
.intent-card span {
  color: var(--lavender);
  font-weight: 950;
}
.intent-card p {
  color: var(--muted);
  line-height: 1.5;
}
.intent-card small {
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
  line-height: 1.35;
}
.intent-card strong {
  margin-top: 14px;
  color: var(--clay);
}

.direct {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr) auto;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding-inline: max(16px, calc((100vw - var(--max)) / 2));
  background: var(--green);
  color: var(--white);
}
.direct h2 { color: var(--white); }
.direct p { color: rgba(255, 250, 242, .78); line-height: 1.6; }
.direct-list {
  display: grid;
  gap: 10px;
}
.direct-list span,
.map-card span,
.planner-grid span,
.proof-grid span {
  padding: 12px 14px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-weight: 850;
}

.stay-snapshot {
  width: min(var(--max), calc(100vw - 32px));
}
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.snapshot-card {
  min-height: 360px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  overflow: hidden;
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 244, 230, .96), rgba(230, 214, 190, .96)),
    var(--cream);
  color: var(--noir-2);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
}
.snapshot-card:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(255, 244, 230, .045), rgba(255, 244, 230, .012)),
    var(--noir-2);
  color: var(--cream-3);
  border-color: var(--gold-line);
}
.snapshot-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}
.snapshot-card span,
.snapshot-card p {
  margin-inline: 16px;
}
.snapshot-card span {
  margin-top: 16px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.snapshot-card p {
  margin-bottom: 18px;
  color: inherit;
  line-height: 1.48;
}

.category-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}
.category-rail a {
  min-height: 146px;
  display: grid;
  grid-template-rows: 82px auto auto;
  gap: 8px;
  align-content: start;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.category-rail img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}
.category-rail strong,
.category-rail span {
  margin-inline: 6px;
}
.category-rail strong {
  line-height: 1.08;
}
.category-rail span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.room-grid,
.villa-grid,
.experience-grid,
.guide-grid,
.offer-grid,
.photo-strategy-grid,
.gallery-wall,
.collection-images,
.gallery-preview-grid {
  display: grid;
  grid-auto-flow: dense;
  align-items: stretch;
}
.room-grid,
.villa-grid,
.experience-grid,
.guide-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.all-rooms { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rooms-preview .room-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.villa-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.experience-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.room-card,
.villa-card,
.experience-grid article,
.guide-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 48px rgba(0, 0, 0, .2);
}
.card-kross-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  cursor: pointer;
}
.card-kross-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.room-card .media,
.villa-media-collage,
.room-card .card-body,
.villa-card .card-body {
  position: relative;
}
.room-card .card-actions,
.villa-card .card-actions,
.room-card .media,
.villa-card .btn,
.room-card .btn,
.tere-btn {
  position: relative;
  z-index: 5;
}
.room-card:hover,
.villa-card:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 106, 27, .46);
}
.room-card,
.villa-card {
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.room-card {
  display: grid;
  grid-template-rows: auto 1fr;
}
.room-card .media,
.villa-card .media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--green);
}
.room-card .media { aspect-ratio: 16 / 7.8; }
.villa-card .media { aspect-ratio: 16 / 11; }
.room-card img,
.villa-card img,
.experience-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-card .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), transparent 42%, rgba(0, 0, 0, .32));
  pointer-events: none;
}
.card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}
.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.card-body p {
  color: var(--muted);
  line-height: 1.48;
}
.room-card .card-body {
  gap: 6px;
  padding: 10px 10px 11px;
  align-content: start;
}
.room-card .card-body h3 {
  margin-bottom: 0;
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.06;
}
.room-proof-line {
  min-height: 0;
  margin-bottom: 0;
  font-size: 12.5px;
  line-height: 1.34;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-body small {
  color: var(--green);
  font-weight: 850;
  line-height: 1.4;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tags span {
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 12px;
  font-weight: 850;
}
.rank-badge {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 250, 242, .92);
  color: #050505;
  font-size: 11px;
  font-weight: 950;
  max-width: 44%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.room-number-badge {
  position: absolute;
  left: 9px;
  top: 9px;
  z-index: 2;
  min-width: 72px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 244, 230, .72);
  border-radius: 999px 999px 999px 8px;
  background:
    linear-gradient(135deg, rgba(242, 106, 27, .98), rgba(200, 148, 62, .96)),
    var(--clay);
  color: var(--cream-3);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .32);
}
.room-number-badge::after {
  content: "";
  position: absolute;
  left: 9px;
  bottom: 6px;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 244, 230, .64);
}
.room-number-badge small,
.room-number-badge strong {
  position: relative;
  z-index: 1;
}
.room-number-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: .85;
}
.room-identity {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.room-identity strong {
  max-width: 56%;
  color: var(--white);
  text-align: right;
  line-height: 1.2;
  text-wrap: balance;
}
.room-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}
.room-spec:nth-child(2) { grid-column: span 2; }
.room-spec {
  min-height: 42px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 6px;
  border: 1px solid rgba(255, 250, 242, .12);
  border-radius: 6px;
  background: rgba(255, 250, 242, .06);
}
.room-spec:first-child {
  background: rgba(210, 118, 80, .92);
}
.room-spec:first-child small,
.room-spec:first-child strong {
  color: var(--white);
}
.room-spec small {
  color: var(--clay);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}
.room-spec strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}
.photo-strip figure,
.villa-media-collage figure,
.collection-images button {
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: var(--green);
}
.photo-strip figure {
  position: relative;
  aspect-ratio: 16 / 8;
}
.photo-strip img,
.villa-media-collage img,
.collection-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-strip figcaption {
  position: absolute;
  left: 5px;
  bottom: 5px;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .72);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
}
.visual-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  overflow: hidden;
}
.visual-tags span {
  min-width: 0;
  padding: 3px 6px;
  border: 1px solid rgba(255, 250, 242, .16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 250, 242, .07);
  font-size: 10px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.villa-media-collage {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: 170px 100px;
  gap: 7px;
  padding: 8px;
  background: #000;
}
.villa-media-collage figure:first-child {
  grid-row: 1 / 3;
}
.villa-grid-special .villa-card:first-child,
.villa-grid-special .villa-card:nth-child(2) {
  grid-column: span 2;
}
.villa-grid-special .villa-card:first-child .villa-media-collage,
.villa-grid-special .villa-card:nth-child(2) .villa-media-collage {
  grid-template-rows: 260px 150px;
}
.public-note {
  padding: 10px 12px;
  border-left: 3px solid var(--leaf);
  background: rgba(88, 136, 101, .13);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.villas-band {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - var(--max)) / 2));
  background: #e7d9c5;
}
.santa-toro,
.offer,
.photo-strategy,
.ai-recommendation,
.location-story,
.final-cta,
.planner,
.proof,
.approved-notes {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  padding: clamp(20px, 3.6vw, 40px);
}
.santa-toro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
}
.offer.is-muted {
  background: #f0e8dd;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}
.offer-grid article {
  display: grid;
  align-content: space-between;
  min-height: 240px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.offer-grid span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.offer-grid h3 {
  font-size: 24px;
}
.offer-grid p {
  color: var(--muted);
  line-height: 1.55;
}
.offer-grid a {
  color: var(--clay);
  font-weight: 950;
}
.photo-strategy {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, .94), rgba(231, 217, 197, .92)),
    var(--white);
}
.photo-strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.photo-strategy-grid article {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.photo-strategy-grid h3 {
  font-size: 24px;
}
.photo-strategy-grid p {
  color: var(--muted);
  line-height: 1.55;
}
.ai-recommendation {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  background: var(--green-2);
  color: var(--white);
}
.ai-recommendation h2 {
  color: var(--white);
}
.ai-recommendation p:not(.label) {
  color: rgba(255, 250, 242, .78);
  line-height: 1.65;
}
.ai-facts {
  display: grid;
  gap: 10px;
}
.ai-facts span {
  padding: 16px;
  border: 1px solid rgba(255, 250, 242, .18);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, .08);
  color: rgba(255, 250, 242, .9);
  font-weight: 800;
  line-height: 1.4;
}
.location-story {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, 1.28fr);
  gap: 34px;
  align-items: center;
  border: 0;
  background: transparent;
  padding-inline: 0;
}
.location-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: 12px;
}
.location-video-card,
.location-map-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--green);
  box-shadow: var(--shadow);
}
.location-video-card video,
.location-map-visual {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.video-source-link {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 250, 242, .88);
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  backdrop-filter: blur(10px);
}
.location-map-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(242, 106, 27, .24), transparent 18%),
    radial-gradient(circle at 78% 74%, rgba(18, 60, 47, .22), transparent 24%),
    linear-gradient(110deg, rgba(59, 127, 148, .82) 0 28%, transparent 28%),
    linear-gradient(145deg, rgba(255, 244, 230, .98), rgba(219, 233, 204, .96));
}
.location-map-visual::before {
  content: "";
  position: absolute;
  left: 23%;
  top: -8%;
  bottom: -8%;
  width: 17%;
  transform: rotate(8deg);
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,.78) 0 5px, transparent 5px 14px),
    rgba(255, 250, 242, .36);
  border-left: 1px solid rgba(18, 60, 47, .18);
  border-right: 1px solid rgba(18, 60, 47, .12);
}
.location-map-visual::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(18, 60, 47, .14);
  border-radius: 18px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 242, .54);
}
.map-sea,
.map-road,
.map-pin,
.map-route,
.map-question,
.map-step {
  position: absolute;
  z-index: 1;
}
.map-question {
  left: 18px;
  right: 18px;
  top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 250, 242, .42);
  border-radius: 14px;
  background: rgba(5, 5, 5, .72);
  color: var(--cream-3);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
  backdrop-filter: blur(10px);
}
.map-sea {
  left: 18px;
  top: 92px;
  max-width: 120px;
  color: var(--white);
  font-weight: 950;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .38);
}
.map-road {
  left: 47%;
  top: 48%;
  transform: rotate(28deg);
  color: rgba(18, 60, 47, .5);
  font-size: 12px;
  font-weight: 950;
}
.map-pin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 12px 34px rgba(32, 27, 24, .14);
}
.map-pin::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--clay);
}
.map-pin.hotel {
  right: 22px;
  bottom: 96px;
  background: var(--noir);
  color: var(--cream-3);
  border: 1px solid rgba(200, 148, 62, .36);
}
.map-pin.surf {
  left: 31%;
  top: 38%;
  background: rgba(255, 244, 230, .94);
}
.map-route {
  right: 92px;
  bottom: 130px;
  width: 184px;
  height: 128px;
  border-left: 4px dotted var(--clay);
  border-top: 4px dotted var(--clay);
  border-radius: 90px 0 0 0;
  opacity: .9;
  filter: drop-shadow(0 8px 14px rgba(242, 106, 27, .2));
}
.map-step {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid rgba(18, 60, 47, .12);
  border-radius: 999px;
  background: rgba(255, 244, 230, .9);
  color: var(--noir-2);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .1);
}
.map-step.step-one {
  right: 154px;
  bottom: 244px;
}
.map-step.step-two {
  right: 86px;
  bottom: 178px;
}
.map-step.step-three {
  right: 24px;
  bottom: 58px;
  background: var(--clay);
  color: #fffaf2;
}
.location-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(10, 37, 31, .56), rgba(10, 37, 31, .1));
}
.video-play {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(255, 250, 242, .38);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, .88), rgba(18, 60, 47, .86));
  color: var(--white);
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(14px);
}
.video-play span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.video-play strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
  line-height: .95;
}
.location-video-card.is-playing::after,
.location-video-card.is-playing .video-play {
  display: none;
}
.location-map-card a {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--noir), #1a1712);
  color: var(--cream-3);
  border: 1px solid rgba(200, 148, 62, .34);
  font-weight: 950;
}
.map-card,
.planner-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.map-card span,
.planner-grid span,
.proof-grid span {
  color: var(--green);
}
.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-grid article,
.guide-grid article {
  display: grid;
}
.experience-grid img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.experience-grid article span,
.experience-grid article h3,
.experience-grid article p,
.guide-grid article h3,
.guide-grid article p {
  margin-inline: 18px;
}
.experience-grid article span {
  margin-top: 18px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.experience-grid article p,
.guide-grid article p {
  color: var(--muted);
  line-height: 1.55;
}

.groups-feature,
.wellness-feature {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(22px, 5vw, 62px);
  align-items: center;
}
.wellness-feature {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, .95fr);
}
.feature-copy {
  display: grid;
  align-content: center;
}
.feature-copy p:not(.label) {
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}
.feature-media {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}
.feature-media::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 82px;
  border: 1px solid rgba(255, 250, 242, .28);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(18, 60, 47, .84), rgba(18, 60, 47, .12));
}
.mini-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 22px;
}
.mini-flow span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.guide-preview {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - var(--max)) / 2));
  background: var(--green-2);
  color: var(--white);
}
.guide-preview .section-heading p,
.guide-preview .section-heading a {
  color: var(--lavender);
}
.guide-tiles {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.guide-tiles article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(255, 250, 242, .18);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, .08);
}
.guide-tiles h3 {
  font-size: 22px;
}
.guide-tiles p {
  color: rgba(255, 250, 242, .76);
  line-height: 1.5;
}

.gallery-collection {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, .4fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
}
.gallery-collection span {
  color: var(--lavender);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.gallery-collection h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 48px);
}
.collection-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.collection-images button {
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.home-gallery {
  padding-bottom: 12px;
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr .9fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.gallery-preview-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
}
.gallery-preview-grid figure:first-child {
  grid-row: 1 / 3;
}
.gallery-preview-grid figure:nth-child(4) {
  grid-column: 2 / 4;
}
.gallery-preview-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-preview-grid figure:hover img {
  transform: scale(1.035);
}
.gallery-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}
.gallery-caption p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.local-seo {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: start;
  padding: clamp(20px, 3.6vw, 42px);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 244, 230, .96), rgba(230, 214, 190, .96)),
    var(--cream);
  color: var(--noir-2);
}
.local-seo-copy {
  display: grid;
  gap: 14px;
}
.local-seo-copy p {
  margin: 0;
  color: #5d4f40;
  line-height: 1.62;
}
.local-keywords {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.local-keywords a {
  padding: 10px 12px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: var(--noir-2);
  color: var(--cream-3);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 900;
}
.faq-list p {
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.6;
}
.final-cta {
  width: min(var(--max), calc(100vw - 32px));
  margin: clamp(24px, 4vw, 44px) auto;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 60, 47, .95), rgba(32, 27, 24, .92)),
    var(--green);
}
.final-cta p {
  max-width: 680px;
  color: rgba(255, 250, 242, .82);
  font-size: 18px;
  line-height: 1.55;
}

.page-hero {
  position: relative;
  min-height: 56vh;
  display: grid;
  align-content: end;
  gap: 20px;
  padding: clamp(82px, 12vw, 136px) max(16px, calc((100vw - var(--max)) / 2)) 34px;
  background:
    linear-gradient(135deg, rgba(18, 60, 47, .70), rgba(32, 27, 24, .46)),
    url("assets/optimized/booking_upload_pack_2026-06-03/TORO_VILLA/07_Pool-Tropical_Garden-Dreamcatcher.webp") center/cover;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .24) 58%, rgba(0, 0, 0, .16)),
    linear-gradient(0deg, rgba(0, 0, 0, .44), transparent 56%);
}
.page-hero-carousel,
.page-hero-carousel figure {
  position: absolute;
  inset: 0;
  margin: 0;
}
.page-hero-carousel {
  z-index: -2;
}
.page-hero-carousel figure {
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 900ms ease, transform 5200ms ease;
}
.page-hero-carousel figure.active {
  opacity: 1;
  transform: scale(1);
}
.page-hero-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-carousel figcaption {
  position: absolute;
  right: clamp(16px, 4vw, 54px);
  bottom: 30px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 250, 242, .2);
  border-radius: 8px;
  background: rgba(0, 0, 0, .28);
  color: rgba(255, 250, 242, .72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.page-hero p {
  max-width: 750px;
  color: rgba(255, 250, 242, .84);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.5;
}
.page-kicker {
  margin: 0 0 6px;
  color: rgba(255, 241, 220, .88);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.page-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-hero-facts span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 248, 235, .2);
  border-radius: 999px;
  background: rgba(255, 248, 235, .1);
  color: rgba(255, 248, 235, .92);
  font-size: 12px;
  font-weight: 900;
}
.page-hero h1,
.page-hero p,
.page-hero .split-actions,
.page-hero .page-kicker,
.page-hero .page-hero-facts {
  width: min(100%, calc(100vw - 32px));
}
.page-hero .booking-panel { max-width: 920px; }
.room-hero,
.villa-hero,
.wellness-hero,
.guide-hero {
  background-image: none;
}

.filter-bar {
  position: sticky;
  top: 82px;
  z-index: 20;
  display: flex;
  gap: 8px;
  padding: 10px 0 20px;
  background: linear-gradient(180deg, var(--sand-2) 72%, transparent);
  overflow-x: auto;
}
.filter-bar button {
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--charcoal);
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
}
.filter-bar button.active {
  background: var(--green);
  color: var(--white);
}

.filter-bar,
.page-hero-facts,
.hero-mini-trust,
.dream-trust-strip {
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar,
.page-hero-facts::-webkit-scrollbar,
.hero-mini-trust::-webkit-scrollbar,
.dream-trust-strip::-webkit-scrollbar {
  display: none;
}
[hidden] { display: none !important; }

.gallery-wall {
  width: min(var(--max), calc(100vw - 32px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
  padding: 28px 0 56px;
}
.gallery-wall button {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
}
.gallery-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lightbox {
  width: min(1000px, calc(100vw - 28px));
  border: 0;
  border-radius: var(--radius);
  padding: 12px;
  background: var(--white);
}
.lightbox::backdrop { background: rgba(10, 37, 31, .82); }
.lightbox button {
  margin-bottom: 10px;
  min-height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  cursor: pointer;
}
.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 48px max(16px, calc((100vw - var(--max)) / 2)) 84px;
  background: var(--green-2);
  color: var(--white);
}
.footer img { width: 54px; margin-bottom: 14px; }
.footer p {
  max-width: 460px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.05;
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-content: start;
}
.footer a,
.footer small {
  color: rgba(255, 250, 242, .72);
}
.footer small { grid-column: 1 / -1; }

.booking-dock {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 78;
  width: min(1050px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 250, 242, .18);
  border-radius: 12px;
  background: rgba(0, 0, 0, .82);
  color: var(--white);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .34);
  backdrop-filter: blur(18px);
  opacity: .82;
  transform: translateX(-50%);
  transition: opacity .18s ease, transform .18s ease;
}
.booking-dock:hover,
.booking-dock:focus-within {
  opacity: 1;
}
.booking-dock.is-soft {
  opacity: .38;
}
.booking-dock.is-soft:hover,
.booking-dock.is-soft:focus-within {
  opacity: 1;
}
.booking-dock.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(28px);
}
.booking-dock-form {
  display: grid;
  grid-template-columns: auto minmax(120px, .95fr) minmax(120px, .95fr) minmax(78px, .5fr) minmax(66px, .42fr) auto;
  gap: 7px;
  align-items: center;
}
.booking-dock-form > strong {
  padding: 0 6px;
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}
.booking-dock-form label {
  display: grid;
  gap: 2px;
  color: rgba(255, 250, 242, .58);
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
}
.booking-dock-form input,
.booking-dock-form select {
  width: 100%;
  min-height: 34px;
  border: 1px solid rgba(255, 250, 242, .16);
  border-radius: 7px;
  background: rgba(255, 250, 242, .94);
  color: #201b18;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 800;
}
.booking-dock .btn {
  min-height: 36px;
  padding: 8px 12px;
}
.booking-dock-nav {
  display: flex;
  gap: 6px;
  align-items: center;
}
.booking-dock-nav > a:not(.tere-btn) {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border: 1px solid rgba(255, 250, 242, .14);
  border-radius: 8px;
  color: rgba(255, 250, 242, .82);
  font-size: 12px;
  font-weight: 900;
}
.booking-dock .quick-book {
  background: var(--clay);
  border-color: transparent;
  color: #fff;
}

body[data-page="gallery"] .booking-dock,
body[data-page="faq"] .booking-dock,
body[data-page="contact"] .booking-dock {
  display: none;
}
.tere-btn.rail {
  width: 46px;
  min-width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
}

.mobile-cta {
  display: none;
  position: fixed;
  z-index: 80;
  left: 10px;
  right: 10px;
  bottom: 10px;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 250, 242, .28);
  border-radius: 12px;
  background: rgba(0, 0, 0, .9);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition: opacity .18s ease, transform .18s ease;
}
.mobile-cta .btn {
  flex: 1;
  text-align: center;
}
.mobile-cta .tere-btn {
  flex: 0 0 46px;
}
.mobile-cta button.btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}
.mobile-cta.is-card-action-visible {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.mobile-booking-widget {
  display: none;
  position: fixed;
  z-index: 79;
  left: 10px;
  right: 10px;
  bottom: 78px;
  padding: 10px;
  border: 1px solid rgba(255, 250, 242, .28);
  border-radius: 12px;
  background: rgba(0, 0, 0, .96);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(12, 30, 24, .28);
  backdrop-filter: blur(18px);
}
.mobile-booking-panel {
  display: grid;
  gap: 8px;
}
.mobile-booking-panel header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.mobile-booking-panel header strong {
  font-size: 15px;
  font-weight: 950;
}
.mobile-booking-panel header button {
  min-height: 32px;
  border: 1px solid rgba(255, 250, 242, .18);
  border-radius: 999px;
  background: rgba(255, 250, 242, .08);
  color: rgba(255, 250, 242, .82);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}
.mobile-booking-panel div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mobile-booking-panel label {
  display: grid;
  gap: 4px;
  color: rgba(255, 250, 242, .74);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.mobile-booking-panel input,
.mobile-booking-panel select {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(255, 250, 242, .22);
  border-radius: 8px;
  padding: 11px 10px;
  background: rgba(255, 250, 242, .96);
  color: #201b18;
  font: inherit;
}
.mobile-booking-panel .btn {
  justify-content: center;
  width: 100%;
}
.mobile-booking-panel small {
  color: rgba(255, 250, 242, .68);
  font-size: 12px;
  text-align: center;
}

.seo-fallback {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 44px 0;
  color: var(--charcoal);
}
.js-ready .seo-fallback { display: none; }

.hero-paths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-width: 720px;
  margin-top: 18px;
}
.hero-paths a {
  display: grid;
  gap: 3px;
  min-height: 64px;
  padding: 12px;
  border: 1px solid rgba(255, 250, 242, .28);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, .1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.room-card .card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(112px, .8fr);
  gap: 8px;
  align-items: center;
}
.room-card .card-actions .btn {
  width: 100%;
  min-height: 38px;
  padding: 7px 10px;
}
.room-card .card-actions .tere-btn {
  width: 100%;
  min-width: 0;
  height: 46px;
  min-height: 46px;
  padding: 0 12px;
}
.hero-paths strong { font-size: 14px; font-weight: 950; }
.hero-paths span {
  color: rgba(255, 250, 242, .74);
  font-size: 12px;
  line-height: 1.25;
}

.intent-card {
  overflow: hidden;
  padding: 0;
}
.intent-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.intent-card > span,
.intent-card h3,
.intent-card p,
.intent-card small,
.intent-card strong {
  margin-inline: 18px;
}
.intent-card > span { margin-top: 16px; }
.intent-card strong { margin-bottom: 18px; }
.ask-tere-card {
  border-color: rgba(157, 85, 60, .38);
  background: #fff;
}

.direct {
  grid-template-columns: minmax(0, .95fr) minmax(260px, .55fr) minmax(260px, .55fr);
}
.direct-media {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 220px;
}
.direct-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
.direct .split-actions { grid-column: 1 / -1; }

.villa-comparison {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.villa-comparison article {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.villa-comparison strong { color: var(--green); font-size: 16px; }
.villa-comparison span { font-size: 13px; font-weight: 850; }
.villa-comparison small { color: var(--muted); line-height: 1.35; }

.photo-strategy-grid article,
.offer-grid article {
  overflow: hidden;
  padding: 0;
}
.photo-strategy-grid img,
.offer-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.photo-strategy-grid h3,
.photo-strategy-grid p,
.offer-grid span,
.offer-grid h3,
.offer-grid p,
.offer-grid a {
  margin-inline: 18px;
}
.photo-strategy-grid h3,
.offer-grid span { margin-top: 16px; }
.photo-strategy-grid p,
.offer-grid a { margin-bottom: 18px; }

.inline-filter {
  position: relative;
  top: auto;
  z-index: 1;
  margin: 0 0 18px;
  border-radius: var(--radius);
}
.experience-feature-strip {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
}
.experience-feature-strip span {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}
.experience-grid article[hidden],
.gallery-wall button[hidden],
.gallery-collection[hidden],
.collection-images button[hidden] {
  display: none;
}
.experience-grid article .btn {
  width: calc(100% - 36px);
  margin: 4px 18px 18px;
  color: var(--green);
}

.guide-tiles article {
  overflow: hidden;
  padding: 0;
}
.guide-tiles img,
.guide-grid article img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.guide-tiles h3,
.guide-tiles p { margin-inline: 16px; }
.guide-tiles h3 { margin-top: 14px; }
.guide-tiles p { margin-bottom: 16px; }
.guide-cta-row { margin-top: 18px; }
.guide-grid article {
  overflow: hidden;
  padding-bottom: 18px;
}

.proof-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.proof-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.proof-grid article span {
  display: block;
  border: 0;
  color: var(--green);
}

.faq-list details a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--clay);
  font-weight: 950;
}
.faq-tere-card {
  display: grid;
  grid-template-columns: minmax(240px, .48fr) minmax(0, .52fr);
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.faq-tere-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.faq-tere-card div { padding: 22px 22px 22px 0; }
.faq-tere-card p { color: var(--muted); line-height: 1.55; }

.final-cta {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, .45fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  text-align: left;
}
.final-cta > img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ai-fact-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.ai-fact-page article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.ai-fact-page h2 { font-size: clamp(28px, 3vw, 42px); }
.ai-fact-page li {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.villas-band,
.offer.is-muted,
.photo-strategy {
  background: #070707;
}
.santa-toro,
.offer,
.photo-strategy,
.final-cta,
.planner,
.proof,
.approved-notes,
.offer-grid article,
.photo-strategy-grid article,
.mini-flow span,
.gallery-caption,
.faq-list details,
.ask-tere-card,
.villa-comparison article,
.experience-feature-strip span,
.proof-grid article,
.faq-tere-card,
.ai-fact-page article,
.lightbox button,
.lightbox {
  background: var(--surface);
  color: var(--white);
  border-color: var(--line);
}
.offer-grid span,
.experience-feature-strip span,
.proof-grid article span,
.villa-comparison strong,
.experience-grid article .btn,
.public-note,
.card-body small,
.intent-card small {
  color: var(--white);
}
.tags span,
.offer-grid span {
  background: rgba(255, 250, 242, .08);
}
.public-note {
  background: rgba(47, 179, 110, .12);
}
.card-body p,
.category-rail span,
.offer-grid p,
.photo-strategy-grid p,
.faq-list p,
.faq-tere-card p,
.ai-fact-page li,
.villa-comparison small {
  color: var(--muted);
}

/* Boutique claro/oscuro layer system */
body {
  background:
    linear-gradient(180deg, var(--noir) 0%, #090807 48%, var(--noir) 100%);
  color: var(--cream-3);
}
body::before {
  opacity: .24;
  background:
    linear-gradient(90deg, rgba(243, 234, 217, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(243, 234, 217, .026) 1px, transparent 1px);
  background-size: 76px 76px;
}
.section-heading h2,
.section h2,
.section h3 {
  color: inherit;
}
.section-heading p,
.label,
.location-line {
  color: var(--clay);
}
.rooms-preview,
.villas-band,
.photo-strategy,
.room-system,
.villa-system,
.proof,
.approved-notes {
  background:
    linear-gradient(180deg, rgba(255, 244, 230, .8), rgba(230, 214, 190, .92)),
    var(--cream);
  color: var(--noir-2);
  border: 1px solid var(--cream-line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}
.rooms-preview,
.photo-strategy,
.room-system,
.villa-system,
.proof,
.approved-notes {
  border-radius: var(--radius);
  padding-inline: clamp(14px, 2.4vw, 28px);
}
.villas-band {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}
.rooms-preview .section-heading p,
.villas-band .section-heading p,
.photo-strategy .section-heading p,
.room-system .section-heading p,
.villa-system .section-heading p,
.proof .section-heading p,
.approved-notes .section-heading p {
  color: var(--clay);
}
.rooms-preview .section-heading a,
.villas-band .section-heading a,
.photo-strategy .section-heading a,
.room-system .section-heading a,
.villa-system .section-heading a,
.proof .section-heading a,
.approved-notes .section-heading a {
  color: var(--noir);
  border-bottom: 1px solid var(--gold-line);
}
.rooms-preview .category-rail a,
.room-system .category-rail a,
.villa-system .villa-comparison article,
.proof .proof-grid article,
.rooms-preview .room-card,
.room-system .room-card,
.villas-band .villa-card,
.villa-system .villa-card,
.photo-strategy .photo-strategy-grid article,
.approved-notes article {
  background:
    linear-gradient(180deg, rgba(255, 244, 230, .045), rgba(255, 244, 230, .012)),
    var(--noir-2);
  color: var(--cream-3);
  border-color: var(--gold-line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}
.rooms-preview .category-rail span,
.room-system .category-rail span,
.rooms-preview .card-body p,
.room-system .card-body p,
.villas-band .card-body p,
.villa-system .card-body p,
.photo-strategy .photo-strategy-grid p,
.villa-system .villa-comparison small,
.proof .proof-grid p {
  color: rgba(255, 244, 230, .72);
}
.rooms-preview .room-spec,
.room-system .room-spec,
.rooms-preview .visual-tags span,
.room-system .visual-tags span,
.villas-band .tags span,
.villa-system .tags span {
  border-color: rgba(243, 234, 217, .14);
  background: rgba(243, 234, 217, .055);
}
.router .intent-card,
.guide-preview .guide-grid article,
.experiences .experience-grid article,
.home-gallery .gallery-caption,
.offer .offer-grid article,
.faq .faq-list details,
.location-story .map-card,
.location-story .location-map-card,
.location-story .location-video-card,
.ai-fact-page article,
.planner,
.santa-toro {
  background:
    linear-gradient(180deg, rgba(255, 244, 230, .96), rgba(230, 214, 190, .96)),
    var(--cream);
  color: var(--noir-2);
  border-color: var(--cream-line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
}
.router .intent-card p,
.guide-preview .guide-grid article p,
.experiences .experience-grid article p,
.offer .offer-grid p,
.faq .faq-list p,
.location-story p,
.ai-fact-page li,
.planner p,
.santa-toro p,
.home-gallery .gallery-caption p {
  color: #5d4f40;
}
.router .intent-card small,
.experiences .experience-grid article span,
.offer .offer-grid span,
.ai-fact-page article strong,
.proof-grid article span {
  color: var(--clay);
}
.offer .offer-grid span,
.experience-feature-strip span,
.tags span {
  background: rgba(5, 5, 5, .08);
  color: var(--noir-2);
  border-color: rgba(5, 5, 5, .1);
}
.direct,
.ai-recommendation,
.final-cta {
  background:
    linear-gradient(135deg, rgba(5, 5, 5, .96), rgba(27, 23, 18, .94)),
    var(--noir);
  color: var(--cream-3);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.direct h2,
.ai-recommendation h2,
.final-cta h2 {
  color: var(--cream-3);
}
.direct p,
.ai-recommendation p,
.final-cta p {
  color: rgba(255, 244, 230, .78);
}
.booking-panel,
.booking-dock,
.mobile-cta,
.mobile-booking-widget {
  border-color: var(--gold-line);
  background: rgba(5, 5, 5, .9);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .34);
}
.filter-bar {
  background: linear-gradient(180deg, rgba(5, 5, 5, .96) 72%, transparent);
}
.filter-bar button {
  background: var(--cream-3);
  color: var(--noir-2);
  border-color: rgba(200, 148, 62, .28);
}
.filter-bar button.active {
  background: var(--noir-2);
  color: var(--cream-3);
  border-color: var(--gold-line);
}

.gallery-filter-section { padding-bottom: 8px; }
.gallery-wall button span {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(18, 60, 47, .82);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
}
.gallery-wall button:hover span,
.gallery-wall button:focus-visible span,
.collection-images button span {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="home"] .section {
  padding-block: clamp(18px, 3.2vw, 38px);
}
body[data-page="home"] .rooms-preview .room-card .media {
  aspect-ratio: 16 / 8.6;
}
body[data-page="home"] .rooms-preview .room-card .card-body {
  padding: 10px;
}
body[data-page="home"] .rooms-preview .photo-strip,
body[data-page="home"] .rooms-preview .visual-tags {
  display: none;
}
body[data-page="home"] .rooms-preview .room-spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body[data-page="home"] .rooms-preview .room-spec:nth-child(2) {
  grid-column: auto;
}
body[data-page="home"] .rooms-preview .room-proof-line {
  -webkit-line-clamp: 1;
}
body[data-page="home"] .experiences .experience-feature-strip,
body[data-page="home"] .proof .public-note {
  display: none;
}
body[data-page="home"] .offer-grid article {
  min-height: 0;
}
body[data-page="home"] .offer-grid img {
  aspect-ratio: 16 / 7;
}
body[data-page="home"] .proof-grid img {
  aspect-ratio: 16 / 8;
}

/* Global sand/noir redesign */
body {
  background:
    radial-gradient(circle at 50% -18%, rgba(200, 148, 62, .14), transparent 30%),
    linear-gradient(180deg, #050505 0%, #090706 46%, #050505 100%);
  color: var(--white);
}
body::before {
  opacity: .18;
  background:
    linear-gradient(90deg, rgba(255, 244, 230, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 244, 230, .03) 1px, transparent 1px);
  background-size: 82px 82px;
}
.site-header {
  border-bottom: 1px solid rgba(200, 148, 62, .28);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, .96), rgba(5, 5, 5, .88));
  color: var(--white);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .34);
}
.main-nav a {
  color: rgba(255, 244, 230, .74);
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--cream-3);
}
.btn.primary,
.booking-dock .quick-book {
  background:
    linear-gradient(135deg, #f26a1b, #cf7d2a);
  color: #fffaf2;
  box-shadow: 0 12px 26px rgba(242, 106, 27, .22);
}
.btn.secondary {
  background: var(--cream-3);
  color: var(--noir);
  border-color: rgba(200, 148, 62, .34);
}
.btn.ghost {
  background: rgba(255, 244, 230, .08);
  color: inherit;
  border-color: rgba(255, 244, 230, .28);
}
.hero {
  background: var(--noir);
}
.hero::after,
.page-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .66), rgba(0, 0, 0, .3) 58%, rgba(0, 0, 0, .14)),
    linear-gradient(0deg, rgba(0, 0, 0, .56), transparent 58%);
}
.hero .location-line,
.page-hero-carousel figcaption,
.section-heading p,
.label,
.location-line {
  color: var(--gold-soft);
}
.hero-copy p:not(.location-line),
.page-hero p {
  color: rgba(255, 244, 230, .88);
}
.booking-panel,
.booking-dock,
.mobile-cta,
.mobile-booking-widget,
.mobile-booking-panel {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, .94), rgba(18, 16, 13, .92));
  color: var(--cream-3);
  border-color: rgba(200, 148, 62, .34);
}
.booking-panel input,
.booking-panel select,
.booking-dock-form input,
.booking-dock-form select,
.mobile-booking-panel input,
.mobile-booking-panel select {
  background: var(--cream-3);
  color: var(--noir);
  border-color: rgba(200, 148, 62, .32);
}
.rooms-preview,
.villas-band,
.room-system,
.villa-system,
.offer,
.faq,
.proof,
.approved-notes,
.local-seo {
  background:
    linear-gradient(180deg, rgba(255, 244, 230, .98), rgba(232, 216, 192, .98)),
    var(--sand);
  color: var(--noir);
  border: 1px solid rgba(200, 148, 62, .24);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
}
.local-seo p,
.offer p,
.faq p,
.proof p,
.approved-notes li,
.rooms-preview .section-heading h2,
.villas-band .section-heading h2,
.room-system .section-heading h2,
.villa-system .section-heading h2,
.offer .section-heading h2,
.faq .section-heading h2,
.proof .section-heading h2,
.local-seo h2 {
  color: var(--noir);
}
.local-seo-copy p,
.offer-grid p,
.faq-list p,
.card-body p {
  color: #5e5143;
}
.rooms-preview .room-card,
.room-system .room-card,
.villas-band .villa-card,
.villa-system .villa-card,
.proof .proof-grid article,
.rooms-preview .category-rail a,
.room-system .category-rail a,
.villa-system .villa-comparison article,
.approved-notes article {
  background:
    linear-gradient(180deg, rgba(255, 244, 230, .055), rgba(255, 244, 230, .018)),
    var(--noir-2);
  color: var(--cream-3);
  border-color: rgba(200, 148, 62, .38);
}
.villas-band .villa-grid-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.proof .proof-grid article span,
.rooms-preview .category-rail span,
.room-system .category-rail span,
.villas-band .card-body p,
.villa-system .card-body p,
.rooms-preview .card-body p,
.room-system .card-body p {
  color: rgba(255, 244, 230, .78);
}
.rooms-preview .room-card h3,
.room-system .room-card h3,
.villas-band .villa-card h3,
.villa-system .villa-card h3,
.rooms-preview .category-rail strong,
.room-system .category-rail strong {
  color: var(--cream-3);
}
.room-spec,
.rooms-preview .room-spec,
.room-system .room-spec,
.visual-tags span,
.tags span {
  background: rgba(255, 244, 230, .075);
  color: var(--cream-3);
  border-color: rgba(255, 244, 230, .16);
}
.room-spec:first-child {
  background: linear-gradient(135deg, #f26a1b, #c8943e);
}
.room-spec strong,
.room-spec small {
  color: inherit;
}
.room-number-badge,
.rank-badge {
  border-color: rgba(255, 244, 230, .68);
}
.stay-snapshot,
.direct,
.groups-feature,
.wellness-feature,
.experiences,
.guide-preview,
.home-gallery,
.location-story,
.ai-recommendation,
.final-cta,
.planner {
  background: transparent;
  color: var(--cream-3);
}
.snapshot-card,
.router .intent-card,
.experiences .experience-grid article,
.guide-preview .guide-tiles article,
.home-gallery .gallery-caption,
.location-story .location-map-card,
.location-story .location-video-card,
.location-story .map-card,
.planner {
  background:
    linear-gradient(180deg, rgba(255, 244, 230, .98), rgba(232, 216, 192, .98)),
    var(--sand);
  color: var(--noir);
  border-color: rgba(200, 148, 62, .24);
}
.snapshot-card:nth-child(even),
.offer .offer-grid article,
.faq .faq-list details,
.santa-toro,
.ai-fact-page article {
  background:
    linear-gradient(180deg, rgba(255, 244, 230, .05), rgba(255, 244, 230, .018)),
    var(--noir-2);
  color: var(--cream-3);
  border-color: rgba(200, 148, 62, .34);
}
.snapshot-card p,
.router .intent-card p,
.experiences .experience-grid article p,
.guide-preview .guide-tiles p,
.home-gallery .gallery-caption p,
.location-story p,
.planner p {
  color: #5e5143;
}
.snapshot-card:nth-child(even) p,
.offer .offer-grid article p,
.faq .faq-list details p,
.santa-toro p,
.ai-fact-page li {
  color: rgba(255, 244, 230, .76);
}
.direct,
.groups-feature,
.wellness-feature,
.final-cta {
  border-color: rgba(200, 148, 62, .32);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, .98), rgba(23, 18, 14, .94));
}
.feature-copy p:not(.label),
.direct p,
.final-cta p {
  color: rgba(255, 244, 230, .78);
}
.mini-flow span {
  background: var(--cream-3);
  color: var(--noir);
  border-color: rgba(200, 148, 62, .24);
}
.filter-bar {
  background: linear-gradient(180deg, rgba(5, 5, 5, .98) 72%, transparent);
}
.filter-bar button {
  background: var(--cream-3);
  color: var(--noir);
  border-color: rgba(200, 148, 62, .3);
}
.filter-bar button.active {
  background: var(--clay);
  color: #fffaf2;
}
.lightbox,
.lightbox button {
  background: var(--cream-3);
  color: var(--noir);
}
.lightbox::backdrop {
  background: rgba(5, 5, 5, .86);
}
.footer {
  background:
    linear-gradient(180deg, #050505, #0f0b08);
  color: var(--cream-3);
  border-top: 1px solid rgba(200, 148, 62, .34);
}
.footer a,
.footer small {
  color: rgba(255, 244, 230, .72);
}
.footer p {
  color: var(--cream-3);
}

/* Final contrast rule: black page, light boutique cards. */
.rooms-preview,
.villas-band,
.room-system,
.villa-system,
.offer,
.faq,
.proof,
.approved-notes,
.stay-snapshot,
.experiences,
.guide-preview,
.home-gallery,
.location-story {
  background: transparent;
  color: var(--cream-3);
  border-color: rgba(200, 148, 62, .2);
  box-shadow: none;
}
.rooms-preview .section-heading h2,
.villas-band .section-heading h2,
.room-system .section-heading h2,
.villa-system .section-heading h2,
.offer .section-heading h2,
.faq .section-heading h2,
.proof .section-heading h2,
.experiences .section-heading h2,
.guide-preview .section-heading h2,
.home-gallery .section-heading h2,
.location-story .section-heading h2 {
  color: var(--cream-3);
}
.rooms-preview .section-heading a,
.villas-band .section-heading a,
.room-system .section-heading a,
.villa-system .section-heading a,
.offer .section-heading a,
.experiences .section-heading a,
.guide-preview .section-heading a,
.home-gallery .section-heading a {
  color: var(--gold-soft);
  border-bottom-color: rgba(200, 148, 62, .44);
}
.rooms-preview .room-card,
.room-system .room-card,
.villas-band .villa-card,
.villa-system .villa-card,
.rooms-preview .category-rail a,
.room-system .category-rail a,
.villa-system .villa-comparison article,
.offer .offer-grid article,
.experiences .experience-grid article,
.guide-preview .guide-tiles article,
.guide-grid article,
.snapshot-card,
.snapshot-card:nth-child(even),
.home-gallery .gallery-caption,
.location-story .location-map-card,
.location-story .location-video-card,
.location-story .map-card,
.faq .faq-list details,
.faq-tere-card,
.proof .proof-grid article,
.proof-grid article,
.approved-notes article,
.santa-toro,
.planner,
.ai-fact-page article,
.ask-tere-card {
  background:
    linear-gradient(180deg, rgba(255, 244, 230, .99), rgba(232, 216, 192, .98)),
    var(--cream);
  color: var(--noir);
  border-color: rgba(200, 148, 62, .28);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
}
.rooms-preview .room-card h3,
.room-system .room-card h3,
.villas-band .villa-card h3,
.villa-system .villa-card h3,
.rooms-preview .category-rail strong,
.room-system .category-rail strong,
.offer .offer-grid h3,
.experiences .experience-grid article h3,
.guide-preview .guide-tiles h3,
.faq .faq-list summary,
.proof .proof-grid article h3 {
  color: var(--noir);
}
.rooms-preview .card-body p,
.room-system .card-body p,
.villas-band .card-body p,
.villa-system .card-body p,
.rooms-preview .category-rail span,
.room-system .category-rail span,
.offer .offer-grid p,
.experiences .experience-grid article p,
.guide-preview .guide-tiles p,
.guide-grid article p,
.snapshot-card p,
.snapshot-card:nth-child(even) p,
.home-gallery .gallery-caption p,
.location-story p,
.faq .faq-list p,
.faq-tere-card p,
.proof .proof-grid p,
.proof-grid article p,
.santa-toro p,
.planner p,
.ai-fact-page li {
  color: #5e5143;
}
.room-spec,
.rooms-preview .room-spec,
.room-system .room-spec,
.visual-tags span,
.tags span,
.offer .offer-grid span,
.experience-feature-strip span {
  background: rgba(5, 5, 5, .07);
  color: var(--noir);
  border-color: rgba(5, 5, 5, .1);
}
.room-spec:first-child {
  color: #fffaf2;
}
.rank-badge,
.room-number-badge {
  color: #fffaf2;
  border-color: rgba(255, 244, 230, .74);
}
.experience-grid article .btn.tere-plan {
  width: calc(100% - 36px);
  min-height: 44px;
  margin: 8px 18px 18px;
  border: 1px solid rgba(242, 106, 27, .55);
  background:
    linear-gradient(135deg, #f26a1b, #d98620);
  color: #fffaf2;
  box-shadow: 0 12px 28px rgba(242, 106, 27, .24);
}
.experience-grid article .btn.tere-plan:hover {
  transform: translateY(-2px);
}
.card-actions .tere-btn,
.split-actions .tere-btn,
.guide-cta-row .tere-btn {
  border-color: rgba(37, 211, 102, .72);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, .13), 0 14px 30px rgba(0, 0, 0, .28);
}
.villas-band .villa-grid,
.villa-system .villa-grid {
  gap: 18px;
}
.villa-card {
  position: relative;
  isolation: isolate;
}
.villa-card[data-villa="dreamcatcher-villa"] {
  --villa-accent: #f26a1b;
  --villa-glow: rgba(242, 106, 27, .28);
}
.villa-card[data-villa="villa-toro"] {
  --villa-accent: #c8943e;
  --villa-glow: rgba(200, 148, 62, .3);
}
.villa-card[data-villa="makaiza"] {
  --villa-accent: #7f8d6a;
  --villa-glow: rgba(127, 141, 106, .28);
}
.villa-card[data-villa="santa-toro"] {
  --villa-accent: #25d366;
  --villa-glow: rgba(37, 211, 102, .2);
}
.villa-media-collage {
  position: relative;
  grid-template-columns: 1.24fr .78fr .78fr;
  grid-template-rows: 188px 112px;
  border-bottom: 1px solid rgba(200, 148, 62, .24);
  background:
    radial-gradient(circle at 12% 0%, var(--villa-glow, rgba(242, 106, 27, .22)), transparent 34%),
    var(--cream);
}
.villa-grid-featured .villa-media-collage {
  grid-template-rows: clamp(230px, 24vw, 340px) clamp(120px, 12vw, 160px);
}
.villa-media-collage figure {
  position: relative;
}
.villa-media-collage figure:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
}
.villa-media-collage figure:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.villa-media-collage figure:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}
.villa-media-collage figure:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2;
}
.villa-media-collage figure:first-child::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, .44));
}
.villa-photo-note {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 3;
  max-width: calc(100% - 36px);
  padding: 8px 11px;
  border: 1px solid rgba(255, 244, 230, .42);
  border-radius: 999px;
  background: rgba(5, 5, 5, .74);
  color: var(--cream-3);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  backdrop-filter: blur(12px);
}
.villa-card .card-topline span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--villa-accent, var(--clay));
  color: #fffaf2;
}
.villa-positioning {
  margin-bottom: 0;
  color: var(--noir);
  font-weight: 850;
}
.villa-description {
  color: #5d4f40;
  font-size: clamp(16px, 1.35vw, 20px);
}
.villa-fact-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 2px 0;
}
.villa-fact-row span {
  min-width: 0;
  padding: 10px 9px;
  border: 1px solid rgba(5, 5, 5, .09);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, .62), rgba(255, 244, 230, .28));
  color: var(--noir-2);
}
.villa-fact-row strong,
.villa-fact-row small {
  display: block;
}
.villa-fact-row strong {
  color: var(--noir);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.05;
}
.villa-fact-row small {
  margin-top: 4px;
  color: #6e604f;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.15;
}
.villa-best-fit {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, .96), rgba(27, 23, 18, .92));
  color: var(--cream-3);
  box-shadow: inset 0 0 0 1px rgba(200, 148, 62, .22);
}
.villa-best-fit span {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.villa-best-fit strong {
  color: var(--cream-3);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.22;
}
.villa-conversion-line {
  margin: 0;
  padding: 10px 12px;
  border-left: 3px solid var(--villa-accent, var(--clay));
  border-radius: 10px;
  background: rgba(5, 5, 5, .045);
  color: #514638;
  font-size: 13px;
  font-weight: 760;
}
.villa-card .visual-tags span {
  border-color: color-mix(in srgb, var(--villa-accent, var(--clay)) 34%, transparent);
}
.villa-card .card-actions .btn.primary {
  background: linear-gradient(135deg, var(--villa-accent, var(--clay)), #d98620);
  color: #fffaf2;
}
.villa-media-collage figure {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream), var(--cream-2));
}
.villa-media-collage figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}
.villa-card .card-body,
.room-card .card-body {
  gap: 10px;
}
.villa-card .card-body p,
.villa-card .card-body small,
.villa-card .public-note {
  color: #5d4f40;
}
.villa-card .card-topline span:last-child {
  color: var(--villa-accent, var(--clay));
}
.villa-card .visual-tags span {
  background: rgba(5, 5, 5, .06);
  color: var(--noir-2);
}
.experience-grid article {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto minmax(72px, 1fr) auto auto;
  overflow: hidden;
}
.experience-grid article img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.experience-card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 18px 10px;
}
.experience-card-facts small {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 6px 9px;
  border: 1px solid rgba(5, 5, 5, .1);
  border-radius: 999px;
  background: rgba(5, 5, 5, .055);
  color: #5d4f40;
  font-size: 11px;
  font-weight: 850;
}
.villa-comparison article {
  border-top: 4px solid var(--clay);
}
.villa-comparison article:nth-child(2) {
  border-top-color: var(--gold-soft);
}
.villa-comparison article:nth-child(3) {
  border-top-color: #7f8d6a;
}
.villa-comparison article:nth-child(4) {
  border-top-color: #25d366;
}

body[data-page="home"] .home-gallery,
body[data-page="home"] .location-story,
body[data-page="home"] .guide-preview,
body[data-page="home"] .proof,
body[data-page="home"] .faq {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 16% 0%, rgba(200, 148, 62, .16), transparent 30%),
    linear-gradient(180deg, rgba(255, 244, 230, .98), rgba(232, 216, 192, .98));
  color: var(--noir);
  border-top: 1px solid rgba(200, 148, 62, .18);
}
body[data-page="home"] .location-story,
body[data-page="home"] .proof {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, .96), rgba(18, 16, 13, .96));
  color: var(--cream-3);
}
body[data-page="home"] .home-gallery .section-heading h2,
body[data-page="home"] .guide-preview .section-heading h2,
body[data-page="home"] .faq .section-heading h2 {
  color: var(--noir);
}
body[data-page="home"] .home-gallery .section-heading p,
body[data-page="home"] .guide-preview .section-heading p,
body[data-page="home"] .faq .section-heading p {
  color: var(--clay);
}
body[data-page="home"] .home-gallery .section-heading a,
body[data-page="home"] .guide-preview .section-heading a {
  color: var(--clay);
  border-bottom: 0;
}
.gallery-caption .btn.gallery-open {
  min-width: 190px;
  background: linear-gradient(135deg, #f26a1b, #d98620);
  color: #fffaf2;
  box-shadow: 0 14px 34px rgba(242, 106, 27, .28);
}
body:not([data-page="home"]) .faq,
body:not([data-page="home"]) .proof,
body:not([data-page="home"]) .approved-notes,
body:not([data-page="home"]) .home-gallery,
body:not([data-page="home"]) .guide-preview {
  background:
    linear-gradient(180deg, rgba(255, 244, 230, .96), rgba(232, 216, 192, .96));
  color: var(--noir);
  border-top: 1px solid rgba(200, 148, 62, .18);
  border-bottom: 1px solid rgba(200, 148, 62, .18);
}
body:not([data-page="home"]) .faq .section-heading h2,
body:not([data-page="home"]) .proof .section-heading h2,
body:not([data-page="home"]) .approved-notes .section-heading h2,
body:not([data-page="home"]) .home-gallery .section-heading h2,
body:not([data-page="home"]) .guide-preview .section-heading h2 {
  color: var(--noir);
}

.card-carousel {
  isolation: isolate;
}
.card-carousel .card-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045) translate3d(0, 0, 0);
  transition: opacity 1s ease, transform 4.2s ease;
  will-change: opacity, transform;
}
.card-carousel .card-slide.is-active {
  opacity: 1;
  transform: scale(1.012) translate3d(0, 0, 0);
}
.card-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, .03), transparent 38%, rgba(5, 5, 5, .22));
}
.card-carousel .room-number-badge,
.card-carousel .rank-badge {
  z-index: 2;
}
.villa-carousel-frame {
  overflow: hidden;
}
.villa-carousel-frame::before {
  z-index: 2;
}
.villa-media-collage figure:first-child::after {
  z-index: 2;
}
.google-reviews {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 85% 0%, rgba(242, 106, 27, .12), transparent 28%),
    linear-gradient(180deg, rgba(255, 244, 230, .98), rgba(232, 216, 192, .98));
  color: var(--noir);
  border-top: 1px solid rgba(200, 148, 62, .2);
  border-bottom: 1px solid rgba(200, 148, 62, .2);
}
.google-reviews .section-heading h2 {
  color: var(--noir);
}
.google-reviews .section-heading p,
.google-reviews .section-heading a {
  color: var(--clay);
}
.reviews-empty-state {
  display: grid;
  gap: 10px;
  max-width: 820px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, .96), rgba(28, 23, 18, .95));
  color: var(--cream-3);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}
.reviews-empty-state strong {
  color: var(--cream-3);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.05;
}
.reviews-empty-state p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 244, 230, .78);
  line-height: 1.58;
}
.upgraded-map {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 22%, rgba(37, 211, 102, .18), transparent 20%),
    radial-gradient(circle at 80% 72%, rgba(242, 106, 27, .2), transparent 18%),
    linear-gradient(140deg, #0a0a08 0 48%, #1d1912 48% 100%);
}
.upgraded-map::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 244, 230, .18);
  border-radius: 18px;
  pointer-events: none;
}
.upgraded-map .map-pin {
  display: grid;
  gap: 2px;
  min-width: 128px;
  color: var(--cream-3);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .28);
}
.upgraded-map .map-pin small {
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.upgraded-map .map-question,
.upgraded-map .map-step {
  background: rgba(255, 244, 230, .94);
  color: var(--noir);
}
.upgraded-map .map-sea {
  color: #dbeeee;
}
.map-real-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f26a1b, #d98620);
  color: #fffaf2;
  font-weight: 950;
  box-shadow: 0 16px 36px rgba(242, 106, 27, .24);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .card-carousel .card-slide:not(.is-active) { display: none; }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
  }
  .brand { justify-self: start; }
  .nav-toggle {
    display: block;
    justify-self: end;
  }
  .main-nav,
  .header-actions {
    display: none;
  }
  .header-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-self: start;
    padding-top: 2px;
  }
  .header-actions .btn {
    display: none;
  }
  .header-actions .language-toggle {
    display: inline-flex;
  }
  .nav-open .main-nav {
    display: grid;
    grid-column: 1 / -1;
    width: 100%;
    gap: 0;
    padding-top: 12px;
  }
  .nav-open .main-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--dark-line);
  }
  .intent-grid,
  .snapshot-grid,
  .room-grid,
  .rooms-preview .room-grid,
  .all-rooms,
  .villa-grid,
  .offer-grid,
  .photo-strategy-grid,
  .experience-grid,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .local-seo {
    grid-template-columns: 1fr;
  }
  .groups-feature,
  .wellness-feature,
  .ai-recommendation {
    grid-template-columns: 1fr;
  }
  .gallery-collection { grid-column: span 4; }
  .guide-tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .category-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .direct { grid-template-columns: 1fr; }
  .hero-paths,
  .villa-comparison,
  .ai-fact-page,
  .final-cta,
  .faq-tere-card {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .booking-dock {
    grid-template-columns: 1fr;
    width: min(720px, calc(100vw - 32px));
  }
  .booking-dock-nav {
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  body { padding-bottom: 68px; }
  .booking-dock { display: none; }
  .site-header {
    min-height: 68px;
    padding: 11px 14px;
  }
  .brand img { width: auto; height: 54px; }
  .hero {
    min-height: 78svh;
  }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .18) 58%, rgba(0, 0, 0, .06) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, .34), transparent 48%);
  }
  .hero-carousel figcaption {
    display: none;
  }
  .hero-copy {
    width: min(100% - 32px, 420px);
    margin-inline: auto;
    padding-bottom: 86px;
    text-align: center;
  }
  .hero-copy p { margin-inline: auto; }
  .hero-actions,
  .split-actions,
  .card-actions {
    justify-content: center;
  }
  .hero-actions .btn.primary {
    width: min(100%, 360px);
  }
  h1 { font-size: clamp(42px, 13vw, 58px); }
  h2 { font-size: clamp(32px, 10vw, 44px); }
  .hero-book {
    display: none;
  }
  .booking-panel {
    grid-template-columns: 1fr 1fr;
  }
  .booking-panel-head {
    grid-column: 1 / -1;
    padding: 0;
  }
  .page-hero .booking-panel {
    display: none;
  }
  .booking-panel .btn {
    grid-column: 1 / -1;
  }
  .section {
    width: calc(100vw - 24px);
    padding: 34px 0;
  }
  .room-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .room-spec:nth-child(2) { grid-column: span 1; }
  .room-spec:last-child { grid-column: 1 / -1; }
  .section-heading.wide {
    display: block;
  }
  .section-heading,
  .section-heading.wide,
  .page-hero,
  .direct,
  .final-cta {
    text-align: center;
  }
  .section-heading a,
  .direct .btn,
  .final-cta .btn {
    margin-inline: auto;
  }
  .room-card .card-body {
    text-align: center;
  }
  .room-identity {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .room-identity strong {
    display: block;
    max-width: none;
    text-align: center;
  }
  .visual-tags {
    justify-content: center;
  }
  .room-card .card-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .intent-grid,
  .snapshot-grid,
  .room-grid,
  .rooms-preview .room-grid,
  .all-rooms,
  .villa-grid,
  .offer-grid,
  .photo-strategy-grid,
  .experience-grid,
  .guide-grid,
  .location-story,
  .location-proof,
  .santa-toro,
  .local-seo,
  .ai-recommendation,
  .guide-tiles,
  .footer {
    grid-template-columns: 1fr;
  }
  .villas-band .villa-grid-featured {
    grid-template-columns: 1fr;
  }
  .local-seo {
    width: min(var(--max), calc(100vw - 24px));
    padding: 14px;
  }
  .snapshot-card {
    min-height: 256px;
  }
  .snapshot-card img {
    min-height: 154px;
  }
  .local-keywords a {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }
  .villa-grid-special .villa-card:first-child,
  .villa-grid-special .villa-card:nth-child(2) {
    grid-column: span 1;
  }
  .villa-media-collage,
  .villa-grid-special .villa-card:first-child .villa-media-collage,
  .villa-grid-special .villa-card:nth-child(2) .villa-media-collage {
    grid-template-rows: 220px 120px;
  }
  .villa-fact-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .villa-best-fit,
  .villa-conversion-line {
    text-align: left;
  }
  .gallery-collection {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }
  .gallery-wall { grid-template-columns: 1fr 1fr; }
  .collection-images {
    grid-template-columns: 1fr;
  }
  .location-video-card,
  .location-map-card,
  .location-video-card video,
  .location-map-visual {
    min-height: 320px;
  }
  .hero-paths,
  .villa-comparison,
  .ai-fact-page,
  .final-cta,
  .faq-tere-card {
    grid-template-columns: 1fr;
  }
  .hero-paths {
    max-width: 360px;
  }
  .hero .trust-bar {
    display: none;
  }
  .faq-tere-card div {
    padding: 0 18px 18px;
  }
  .final-cta > img {
    min-height: 260px;
  }
  .feature-media,
  .feature-media img {
    min-height: 360px;
  }
  .mini-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 190px);
  }
  .gallery-preview-grid figure:first-child,
  .gallery-preview-grid figure:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-preview-grid figure:first-child,
  .gallery-preview-grid figure:nth-child(6) {
    grid-column: 1 / -1;
  }
  .gallery-caption {
    display: grid;
  }
  .category-rail {
    display: flex;
    width: 100%;
    max-width: calc(100vw - 24px);
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    contain: paint;
  }
  .category-rail a {
    flex: 0 0 220px;
    min-width: 0;
    scroll-snap-align: start;
  }
  .proof-grid,
  .map-card,
  .planner-grid {
    grid-template-columns: 1fr;
  }
  body[data-page="home"] .snapshot-grid,
  body[data-page="home"] .offer-grid,
  body[data-page="home"] .guide-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  body[data-page="home"] .snapshot-card {
    min-height: 0;
  }
  body[data-page="home"] .snapshot-card img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  body[data-page="home"] .snapshot-card span,
  body[data-page="home"] .snapshot-card p {
    margin-inline: 12px;
  }
  body[data-page="home"] .snapshot-card span {
    margin-top: 12px;
    font-size: 11px;
  }
  body[data-page="home"] .snapshot-card p {
    margin-bottom: 14px;
    font-size: 12.5px;
    line-height: 1.36;
  }
  body[data-page="home"] .offer-grid article {
    min-height: 0;
  }
  body[data-page="home"] .offer-grid img {
    aspect-ratio: 4 / 3;
  }
  body[data-page="home"] .offer-grid h3 {
    font-size: 20px;
  }
  body[data-page="home"] .offer-grid p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
  }
  body[data-page="home"] .guide-tiles article {
    min-height: 0;
    padding: 14px;
  }
  body[data-page="home"] .guide-tiles img {
    aspect-ratio: 4 / 3;
  }
  body[data-page="home"] .guide-tiles h3 {
    font-size: 18px;
  }
  body[data-page="home"] .guide-tiles p {
    font-size: 12.5px;
    line-height: 1.38;
  }
  body[data-page="home"] .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body[data-page="home"] .proof-grid article {
    min-height: 0;
  }
  body[data-page="home"] .proof-grid img {
    min-height: 120px;
  }
  body[data-page="home"] .proof-grid article span {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 8px;
    text-align: center;
  }
  .page-hero {
    min-height: 58vh;
    padding: 82px 16px 24px;
  }
  .page-hero-carousel figcaption {
    display: none;
  }
  .filter-bar {
    top: 68px;
    width: 100%;
    max-width: calc(100vw - 24px);
    min-width: 0;
    overscroll-behavior-inline: contain;
    contain: paint;
  }
  .mobile-cta {
    display: flex;
    left: 10px;
    right: 10px;
    bottom: 8px;
    gap: 6px;
    padding: 4px;
    border-radius: 10px;
  }
  .mobile-cta .btn {
    min-height: 46px;
    padding: 9px 12px;
  }
  .mobile-booking-widget {
    bottom: 66px;
  }
  .mobile-booking-widget:not([hidden]) { display: block; }
}

@media (max-width: 430px) {
  .booking-panel { grid-template-columns: 1fr; }
  .booking-presets {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero-copy { padding-bottom: 86px; }
  .trust-bar span { width: 100%; }
  .split-actions .btn,
  .hero-actions .btn,
  .card-actions .btn { width: 100%; }
  .card-actions .tere-btn {
    width: 46px;
    min-width: 46px;
    flex: 0 0 46px;
  }
}

/* Premium noir/sand finish */
:root {
  --sand: #efe0c8;
  --sand-2: #d9c39e;
  --surface: #f4e5cf;
  --surface-2: #e8d1ac;
  --cream: #efe0c8;
  --cream-2: #dfc7a2;
  --cream-3: #fff2df;
  --green: #050403;
  --green-2: #000;
  --leaf: #24593d;
  --charcoal: #11100d;
  --muted: #665745;
  --ink: #090705;
  --clay: #ff6816;
  --ochre: #d69c38;
  --gold-soft: #d8a64d;
  --line: rgba(63, 45, 25, .18);
  --dark-line: rgba(239, 224, 200, .24);
  --shadow: 0 26px 90px rgba(0, 0, 0, .38);
}

html,
body {
  background:
    radial-gradient(circle at 8% -10%, rgba(255, 104, 22, .12), transparent 24rem),
    radial-gradient(circle at 92% 8%, rgba(216, 166, 77, .13), transparent 28rem),
    linear-gradient(180deg, #030302 0%, #080604 42%, #020202 100%);
}

body {
  color: var(--cream-3);
}

body::before {
  opacity: .32;
  background:
    linear-gradient(90deg, rgba(239, 224, 200, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(239, 224, 200, .026) 1px, transparent 1px);
  background-size: 86px 86px;
}

.site-header {
  min-height: 74px;
  border-bottom: 1px solid rgba(216, 166, 77, .28);
  background:
    linear-gradient(180deg, rgba(3, 3, 2, .96), rgba(7, 5, 4, .88));
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
}

.main-nav a {
  color: rgba(255, 242, 223, .78);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--cream-3);
}

.language-toggle {
  border-color: rgba(216, 166, 77, .34);
  background: rgba(239, 224, 200, .08);
}

.language-toggle a[aria-current="true"] {
  background: linear-gradient(135deg, var(--cream-3), var(--sand));
}

.btn {
  border-radius: 8px;
  font-weight: 950;
}

.btn.primary,
.mobile-cta .btn.primary,
.gallery-caption .btn.gallery-open,
.experience-grid article .btn.tere-plan {
  border: 1px solid rgba(255, 145, 55, .5);
  background:
    linear-gradient(135deg, #ff5f0f 0%, #f37716 48%, #d99d28 100%);
  color: #fff8ed;
  box-shadow: 0 16px 36px rgba(255, 104, 22, .24);
}

.btn.secondary,
.btn.ghost {
  border: 1px solid rgba(216, 166, 77, .3);
  background: rgba(244, 229, 207, .92);
  color: #0a0805;
}

.btn:hover {
  transform: translateY(-1px);
}

.section,
.page-section,
.rooms-preview,
.villas-band,
.offer,
.guide-preview,
.home-gallery,
.proof,
.faq,
.location-story,
.approved-notes {
  border-color: rgba(216, 166, 77, .2);
}

.section-heading p,
.label,
.eyebrow,
.card-topline,
.offer-grid span,
.snapshot-card span,
.category-rail strong {
  color: var(--clay);
}

.section-heading h2,
.section h2,
.page-section h2 {
  color: var(--cream-3);
}

.rooms-preview,
.room-system,
.villa-system,
.villas-band,
.experience-system,
.offer {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 104, 22, .1), transparent 22rem),
    linear-gradient(180deg, rgba(5, 4, 3, .98), rgba(12, 9, 6, .98));
  color: var(--cream-3);
}

body[data-page="home"] .home-gallery,
body[data-page="home"] .guide-preview,
body[data-page="home"] .faq,
body:not([data-page="home"]) .faq,
body:not([data-page="home"]) .proof,
body:not([data-page="home"]) .approved-notes,
body:not([data-page="home"]) .home-gallery,
body:not([data-page="home"]) .guide-preview {
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 166, 77, .18), transparent 24rem),
    linear-gradient(180deg, #f4e5cf, #dfc7a2);
  color: #0b0906;
}

body[data-page="home"] .location-story,
body[data-page="home"] .proof {
  background:
    radial-gradient(circle at 84% 0%, rgba(36, 89, 61, .24), transparent 28rem),
    linear-gradient(180deg, #060504, #12100d);
  color: var(--cream-3);
}

body[data-page="home"] .home-gallery .section-heading h2,
body[data-page="home"] .guide-preview .section-heading h2,
body[data-page="home"] .faq .section-heading h2,
body:not([data-page="home"]) .faq .section-heading h2,
body:not([data-page="home"]) .proof .section-heading h2,
body:not([data-page="home"]) .approved-notes .section-heading h2,
body:not([data-page="home"]) .home-gallery .section-heading h2,
body:not([data-page="home"]) .guide-preview .section-heading h2 {
  color: #090705;
}

.room-card,
.villa-card,
.experience-grid article,
.guide-grid article,
.offer-grid article,
.snapshot-card,
.category-rail a,
.map-card,
.planner-grid article,
.proof-grid article,
.faq-item,
.approved-notes article {
  border: 1px solid rgba(216, 166, 77, .26);
  background:
    linear-gradient(180deg, #f7e9d4 0%, #ead3ad 100%);
  color: #090705;
  box-shadow:
    0 22px 64px rgba(0, 0, 0, .26),
    inset 0 1px 0 rgba(255, 255, 255, .42);
}

.room-card::before,
.villa-card::before,
.experience-grid article::before,
.offer-grid article::before,
.category-rail a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .16), transparent 34%),
    linear-gradient(180deg, transparent 70%, rgba(216, 166, 77, .12));
}

.room-card > *,
.villa-card > *,
.experience-grid article > *,
.offer-grid article > *,
.category-rail a > * {
  position: relative;
  z-index: 2;
}

.room-card:hover,
.villa-card:hover,
.experience-grid article:hover,
.offer-grid article:hover,
.category-rail a:hover {
  border-color: rgba(255, 104, 22, .58);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, .36),
    0 0 0 1px rgba(255, 104, 22, .18);
}

.room-card .media,
.villa-media-collage,
.experience-grid article img,
.offer-grid img,
.category-rail img,
.snapshot-card img {
  background: #050403;
}

.room-card .media {
  aspect-ratio: 16 / 7.2;
}

.room-card img,
.villa-card img,
.experience-grid img,
.offer-grid img,
.category-rail img {
  filter: saturate(1.04) contrast(1.02);
}

.room-card .media::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), transparent 38%, rgba(0, 0, 0, .34)),
    linear-gradient(90deg, rgba(0, 0, 0, .18), transparent 46%);
}

.room-number-badge {
  min-width: 76px;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 242, 223, .58);
  border-radius: 999px 999px 999px 18px;
  background:
    linear-gradient(135deg, rgba(255, 104, 22, .95), rgba(216, 156, 56, .95));
  box-shadow:
    0 14px 32px rgba(0, 0, 0, .35),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}

.room-number-badge small {
  color: rgba(255, 248, 237, .82);
}

.room-number-badge strong {
  color: #fff8ed;
}

.rank-badge,
.villa-photo-note {
  border-color: rgba(255, 242, 223, .5);
  background: rgba(5, 4, 3, .76);
  color: #fff2df;
  backdrop-filter: blur(12px);
}

.card-body,
.room-card .card-body,
.villa-card .card-body {
  padding: 16px;
}

.room-card .card-body {
  gap: 9px;
}

.room-card .card-body h3,
.villa-card .card-body h3,
.experience-grid article h3,
.offer-grid article h3,
.guide-grid article h3 {
  color: #080604;
  letter-spacing: 0;
}

.room-card .card-body p,
.villa-card .card-body p,
.experience-grid article p,
.offer-grid article p,
.guide-grid article p,
.category-rail span,
.snapshot-card p {
  color: #5b4d3d;
}

.room-identity,
.villa-best-fit,
.map-step {
  background:
    linear-gradient(135deg, #060504, #15110d);
  color: var(--cream-3);
  box-shadow: inset 0 0 0 1px rgba(216, 166, 77, .24);
}

.room-identity span,
.villa-best-fit span,
.map-step small {
  color: var(--gold-soft);
}

.room-identity strong,
.villa-best-fit strong,
.map-step strong {
  color: var(--cream-3);
}

.room-spec-grid,
.villa-fact-row {
  gap: 7px;
}

.room-spec,
.villa-fact-row span,
.experience-card-facts small {
  border: 1px solid rgba(99, 71, 38, .16);
  background:
    linear-gradient(180deg, rgba(255, 248, 237, .72), rgba(218, 194, 154, .28));
  color: #0a0805;
}

.room-spec:first-child {
  background:
    linear-gradient(135deg, #060504, #1a130b);
  color: var(--cream-3);
}

.room-spec:first-child small,
.room-spec:first-child strong {
  color: var(--cream-3);
}

.visual-tags span {
  border-color: rgba(216, 156, 56, .34);
  background: rgba(255, 248, 237, .58);
  color: #3b2e20;
}

.photo-strip figure {
  border-color: rgba(216, 166, 77, .22);
  background: rgba(5, 4, 3, .08);
}

.photo-strip figcaption {
  background: rgba(5, 4, 3, .78);
  color: #fff2df;
}

.villa-media-collage {
  background:
    radial-gradient(circle at 12% 0%, var(--villa-glow, rgba(255, 104, 22, .18)), transparent 34%),
    #050403;
}

.villa-card .card-topline span:first-child {
  background:
    linear-gradient(135deg, var(--villa-accent, var(--clay)), #d69c38);
  color: #fff8ed;
}

.villa-card .card-topline span:last-child {
  color: var(--villa-accent, var(--clay));
}

.villa-conversion-line {
  background: rgba(5, 4, 3, .05);
  color: #4a3c2e;
}

.villa-card .card-actions,
.room-card .card-actions {
  gap: 8px;
}

.villa-card .card-actions .btn,
.room-card .card-actions .btn {
  min-height: 44px;
}

.tere-btn {
  border-color: rgba(37, 211, 102, .74);
  background:
    radial-gradient(circle, rgba(37, 211, 102, .22), transparent 64%),
    #06120b;
  color: #25d366;
}

.tere-mark {
  background: #25d366;
  color: #06120b;
}

.mobile-cta {
  border: 1px solid rgba(216, 166, 77, .3);
  background:
    linear-gradient(180deg, rgba(4, 3, 2, .94), rgba(8, 6, 4, .9));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .46);
}

.page-hero::after,
.hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .64), rgba(0, 0, 0, .2) 54%, rgba(0, 0, 0, .5)),
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .42));
}

.hero-copy,
.page-hero .hero-copy {
  text-shadow: 0 16px 34px rgba(0, 0, 0, .38);
}

.booking-panel,
.booking-engine,
.mobile-booking-widget {
  border-color: rgba(216, 166, 77, .32);
  background:
    linear-gradient(180deg, #fff0d9, #e8d0aa);
  color: #090705;
}

.footer,
footer {
  border-top: 1px solid rgba(216, 166, 77, .26);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 104, 22, .12), transparent 20rem),
    linear-gradient(180deg, #060504, #010101);
  color: var(--cream-3);
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
  }

  .room-card .media {
    aspect-ratio: 16 / 8.4;
  }

  .card-body,
  .room-card .card-body,
  .villa-card .card-body {
    padding: 14px;
  }

  .villa-media-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 106px 106px;
  }

  .villa-media-collage figure:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .villa-media-collage figure:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .villa-media-collage figure:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .villa-media-collage figure:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 3;
  }

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

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

  .room-spec-grid .room-spec:first-child {
    grid-column: span 2;
  }
}

/* Final launch polish: keep conversion visible without covering the product. */
.booking-dock {
  bottom: 12px;
  width: min(920px, calc(100vw - 36px));
  gap: 6px;
  padding: 6px;
  opacity: .68;
}

.booking-dock:hover,
.booking-dock:focus-within {
  opacity: 1;
}

.booking-dock-form {
  grid-template-columns: auto minmax(112px, .9fr) minmax(112px, .9fr) minmax(72px, .48fr) minmax(60px, .38fr) auto;
  gap: 6px;
}

.booking-dock-form input,
.booking-dock-form select {
  min-height: 31px;
}

.booking-dock .btn {
  min-height: 33px;
  padding: 7px 11px;
}

.booking-dock-nav > a:not(.tere-btn) {
  min-height: 34px;
}

@media (min-width: 1081px) and (max-width: 1320px) {
  .header-trust-note {
    display: none;
  }

  .main-nav {
    gap: 10px;
    font-size: 11px;
  }

  .header-actions {
    gap: 8px;
  }
}

@media (max-width: 760px) {
  .dream-hero {
    min-height: 88svh;
    padding-bottom: 24px;
  }

  .dream-hero-copy {
    padding: 82px 18px 10px;
  }

  .dream-hero-copy .location-line {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .dream-hero-copy h1 {
    font-size: clamp(40px, 12.2vw, 56px);
    line-height: .94;
  }

  .dream-hero-copy p:not(.location-line) {
    font-size: 16px;
    line-height: 1.38;
  }

  .dream-hero .hero-actions {
    margin-top: 18px;
  }

  .dream-hero .btn {
    min-height: 48px;
  }

  .hero-direct-note {
    margin-top: 12px;
    font-size: 11px;
  }

  .hero-mini-trust {
    margin-top: 12px;
  }

  .hero-mini-trust span {
    min-height: 32px;
    padding: 7px 11px;
  }

  body[data-page="gallery"] .page-hero {
    min-height: 52vh;
    padding-bottom: 18px;
  }

  body[data-page="gallery"] .gallery-filter-section {
    padding-top: 18px;
  }

  body[data-page="gallery"] .public-note {
    padding-bottom: 72px;
  }
}

/* Dreamcatcher homepage premium conversion layer */
:root {
  --dream-sand: #fbf6eb;
  --dream-sand-2: #efe0c6;
  --dream-green: #123f2d;
  --dream-green-2: #092217;
  --dream-ocean: #287d93;
  --dream-coral: #e86e45;
  --dream-gold: #c89c55;
  --dream-ink: #162018;
  --dream-muted: #6f6253;
  --dream-line: rgba(26, 54, 38, .16);
  --dream-shadow: 0 24px 70px rgba(30, 55, 43, .18);
}

body[data-page="home"] {
  background:
    radial-gradient(circle at 14% 8%, rgba(40, 125, 147, .16), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(232, 110, 69, .13), transparent 24rem),
    linear-gradient(180deg, var(--dream-sand), #f8efe0 45%, #eef3e9 100%);
}

.dream-section {
  position: relative;
  width: min(1220px, calc(100vw - 34px));
  margin-inline: auto;
  padding-block: clamp(56px, 8vw, 110px);
}

.dream-heading h2,
.dream-experience h2,
.book-direct-home h2,
.group-escape h2,
.location-guide-home h2,
.final-dream-cta h2 {
  color: var(--dream-ink);
  letter-spacing: 0;
}

.dream-heading p,
.dream-experience p,
.book-direct-home p,
.group-escape p,
.location-guide-home p,
.final-dream-cta p {
  color: var(--dream-muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
}

.dream-hero {
  min-height: calc(100svh - 72px);
  background: #06160f;
  isolation: isolate;
}

.dream-hero::after {
  background:
    linear-gradient(90deg, rgba(4, 21, 13, .66), rgba(4, 21, 13, .16) 55%, rgba(4, 21, 13, .38)),
    linear-gradient(180deg, rgba(4, 21, 13, .14), rgba(4, 21, 13, .36));
}

.dream-hero-media img {
  transform: scale(1.035);
  animation: heroBreathe 16s ease-in-out infinite alternate;
}

.hero-organic-wave {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(70% 120% at 50% 100%, rgba(251, 246, 235, .92), rgba(251, 246, 235, .08) 56%, transparent 72%);
  mix-blend-mode: screen;
  opacity: .55;
}

.dream-hero-copy {
  max-width: 760px;
  padding-top: clamp(44px, 7vw, 96px);
}

.dream-hero-copy .location-line {
  margin-bottom: 14px;
  color: rgba(255, 246, 232, .9);
  font-size: 13px;
  font-weight: 900;
  text-transform: none;
}

.dream-hero-copy h1 {
  max-width: 760px;
  color: #fff8ed;
  font-size: clamp(54px, 8vw, 116px);
  line-height: .92;
  text-wrap: balance;
}

.dream-hero-copy p:not(.location-line) {
  max-width: 650px;
  color: rgba(255, 246, 232, .9);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.dream-hero .hero-actions {
  margin-top: 30px;
}

.dream-hero .btn {
  min-width: 146px;
  min-height: 52px;
  border-radius: 999px;
}

.dream-hero .btn.primary {
  background: linear-gradient(135deg, var(--dream-coral), #f29f62);
  box-shadow: 0 16px 38px rgba(232, 110, 69, .34);
}

.dream-hero .btn.secondary {
  background: rgba(255, 248, 235, .94);
  color: var(--dream-green-2);
}

.hero-mini-trust {
  width: min(760px, 100%);
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-mini-trust span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 248, 235, .26);
  border-radius: 999px;
  background: rgba(255, 248, 235, .12);
  color: rgba(255, 248, 235, .92);
  font-size: 12px;
  font-weight: 900;
}

.dream-trust-strip {
  width: min(1220px, calc(100vw - 34px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--dream-shadow);
  backdrop-filter: blur(16px);
}

.dream-trust-strip article {
  min-height: 94px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 9px;
  padding: 18px 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(40, 125, 147, .09), transparent 70%),
    #fffaf0;
  text-align: center;
}

.dream-trust-strip span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f3ec;
  color: var(--dream-green);
  font-size: 13px;
  font-weight: 950;
}

.dream-trust-strip strong {
  color: var(--dream-ink);
  font-size: 13px;
  line-height: 1.25;
}

.stay-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stay-choice-card,
.featured-stay-card,
.wellness-card-grid article,
.review-ready-grid article {
  border: 1px solid rgba(18, 63, 45, .13);
  border-radius: 22px;
  background: rgba(255, 252, 245, .86);
  box-shadow: var(--dream-shadow);
  overflow: hidden;
}

.stay-choice-card {
  display: grid;
  grid-template-rows: minmax(300px, 38vw) auto;
  transition: transform .25s ease, box-shadow .25s ease;
}

.stay-choice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 90px rgba(21, 58, 42, .24);
}

.stay-choice-media {
  display: block;
  overflow: hidden;
}

.stay-choice-media img,
.featured-stay-media img,
.experience-tile img,
.editorial-masonry img,
.wellness-card-grid img,
.group-media-stack img,
.book-direct-home figure img,
.final-dream-cta > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stay-choice-card:hover img,
.editorial-masonry a:hover img,
.wellness-card-grid article:hover img {
  transform: scale(1.045);
}

.stay-choice-card img,
.editorial-masonry img,
.wellness-card-grid img {
  transition: transform .55s ease;
}

.stay-choice-card > div {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.stay-choice-card h3,
.featured-stay-body h3,
.experience-tile h3,
.wellness-card-grid h3,
.review-ready-grid strong {
  margin: 0;
  color: var(--dream-ink);
  font-size: clamp(23px, 2.1vw, 32px);
  line-height: 1.05;
}

.stay-choice-card p,
.featured-stay-body p,
.experience-tile p,
.wellness-card-grid p,
.review-ready-grid p {
  margin: 0;
  color: var(--dream-muted);
  line-height: 1.55;
}

.uniform-badges,
.direct-benefits,
.group-points,
.location-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.uniform-badges span,
.direct-benefits span,
.group-points span,
.location-points span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border: 1px solid rgba(18, 63, 45, .14);
  border-radius: 999px;
  background: #f4f8ed;
  color: var(--dream-green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.stay-choice-card.is-featured {
  background: linear-gradient(180deg, #fffaf0, #e7f1e4);
}

.dream-experience {
  display: grid;
  grid-template-columns: minmax(260px, .74fr) minmax(0, 1.26fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.experience-copy {
  position: sticky;
  top: 104px;
}

.experience-copy h2 {
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: .95;
}

.experience-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 132px;
  gap: 12px;
}

.experience-tile {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--dream-shadow);
}

.experience-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3, 21, 13, .72));
}

.experience-tile div {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
}

.experience-tile h3,
.experience-tile p {
  color: #fff9ee;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .28);
}

.experience-tile p {
  margin-top: 5px;
  font-size: 13px;
}

.tile-1 { grid-column: span 3; grid-row: span 3; }
.tile-2 { grid-column: span 3; grid-row: span 2; }
.tile-3 { grid-column: span 2; grid-row: span 2; }
.tile-4 { grid-column: span 2; grid-row: span 2; }
.tile-5 { grid-column: span 2; grid-row: span 2; }
.tile-6 { grid-column: span 4; grid-row: span 2; }

.featured-stay-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.featured-stay-card {
  display: grid;
  grid-column: span 1;
}

.featured-stay-card:first-child,
.villa-featured-card {
  grid-column: span 2;
}

.featured-stay-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.featured-stay-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.featured-stay-body > span {
  color: var(--dream-coral);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.book-direct-home {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, .98fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  width: min(1220px, calc(100vw - 34px));
  padding: clamp(28px, 5vw, 58px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(40, 125, 147, .2), transparent 24rem),
    linear-gradient(135deg, #123f2d, #082017);
  color: #fff9ee;
  box-shadow: 0 32px 90px rgba(15, 54, 38, .26);
}

.book-direct-home h2,
.book-direct-home p {
  color: #fff9ee;
}

.book-direct-home p {
  color: rgba(255, 249, 238, .82);
}

.book-direct-home figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 5 / 4;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.book-direct-home .direct-benefits span {
  border-color: rgba(255, 249, 238, .2);
  background: rgba(255, 249, 238, .1);
  color: #fff9ee;
}

.editorial-masonry {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 118px;
  gap: 12px;
}

.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #d9e5d4;
  box-shadow: var(--dream-shadow);
}

.masonry-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 26, 17, .66));
}

.masonry-item span {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  color: #fff9ee;
  font-size: 13px;
  font-weight: 950;
}

.item-1, .item-5 { grid-column: span 2; grid-row: span 3; }
.item-2, .item-6, .item-9 { grid-column: span 2; grid-row: span 2; }
.item-3, .item-4, .item-7, .item-8, .item-10 { grid-column: span 1; grid-row: span 2; }

.wellness-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.wellness-card-grid article {
  grid-column: span 2;
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
}

.wellness-card-grid img {
  aspect-ratio: 4 / 3;
}

.wellness-card-grid h3,
.wellness-card-grid p,
.wellness-card-grid a {
  margin-inline: 18px;
}

.wellness-card-grid a {
  color: var(--dream-coral);
  font-size: 13px;
  font-weight: 950;
}

.group-escape {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.group-media-stack {
  display: grid;
  grid-template-columns: 1fr .78fr;
  align-items: end;
  gap: 14px;
}

.group-media-stack img {
  border-radius: 24px;
  box-shadow: var(--dream-shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.group-media-stack img:first-child {
  aspect-ratio: 5 / 4;
  margin-bottom: 54px;
}

.group-copy h2,
.location-guide-home h2 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: .96;
}

.location-guide-home {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.location-guide-home .location-proof {
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
}

.location-guide-home .location-video-card,
.location-guide-home .location-map-card {
  min-height: 460px;
}

.illustrated-map {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(18, 63, 45, .14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .72), transparent 10rem),
    linear-gradient(135deg, #f7e9ce 0 38%, #d7eddf 38% 65%, #88cad0 65% 100%);
  box-shadow: var(--dream-shadow);
}

.illustrated-map span {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 252, 245, .9);
  color: var(--dream-green);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 10px 30px rgba(19, 53, 39, .13);
}

.illustrated-map .map-ocean {
  right: 9%;
  top: 16%;
  background: #1f7890;
  color: #fff;
}

.illustrated-map .map-beach {
  right: 28%;
  top: 42%;
  background: #fff6dc;
}

.illustrated-map .map-main {
  left: 12%;
  bottom: 18%;
  transform: rotate(-9deg);
}

.illustrated-map .map-hotel {
  left: 22%;
  top: 35%;
  background: var(--dream-coral);
  color: #fff;
  min-height: 48px;
  padding-inline: 18px;
}

.illustrated-map .map-food { left: 16%; top: 19%; }
.illustrated-map .map-surf { right: 18%; bottom: 23%; }

.illustrated-map .map-line {
  z-index: 1;
  left: 31%;
  top: 43%;
  width: 35%;
  height: 4px;
  min-height: 4px;
  padding: 0;
  border: 0;
  background: repeating-linear-gradient(90deg, var(--dream-green), var(--dream-green) 9px, transparent 9px, transparent 16px);
  box-shadow: none;
  transform: rotate(16deg);
}

.reviews-home {
  overflow: hidden;
}

.review-ticker {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: reviewTicker 34s linear infinite;
}

.review-ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fffaf0;
  color: var(--dream-green);
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(21, 58, 42, .1);
}

.review-ready-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.review-ready-grid article {
  padding: 20px;
}

.review-ready-grid article a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 63, 45, .12);
  background: rgba(255, 250, 243, .86);
  color: var(--dream-green);
  font-size: 13px;
  font-weight: 900;
}

.home-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(18, 63, 45, .12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 249, 239, .98), rgba(245, 236, 220, .98)),
    #fff8ed;
  box-shadow: 0 18px 48px rgba(34, 29, 20, .08);
}

.contact-card strong {
  color: var(--dream-coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-bottom: 0;
  color: var(--dream-ink);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.04;
}

.contact-card p {
  margin-bottom: 0;
  color: var(--dream-muted);
  line-height: 1.6;
}

.final-dream-cta {
  border-radius: 0;
}

.final-dream-cta::after {
  background:
    linear-gradient(90deg, rgba(5, 25, 16, .72), rgba(5, 25, 16, .14) 58%, rgba(5, 25, 16, .52)),
    linear-gradient(180deg, rgba(5, 25, 16, .12), rgba(5, 25, 16, .5));
}

.final-dream-cta h2 {
  color: #fff9ee;
  font-size: clamp(46px, 6vw, 88px);
}

.final-dream-cta p {
  color: rgba(255, 249, 238, .88);
}

@keyframes heroBreathe {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(-1.2%, -.8%, 0); }
}

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

@media (prefers-reduced-motion: reduce) {
  .dream-hero-media img,
  .review-ticker {
    animation: none;
  }
}

@media (max-width: 980px) {
  .dream-trust-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .dream-trust-strip article {
    flex: 0 0 190px;
    scroll-snap-align: start;
  }

  .stay-choice-grid,
  .dream-experience,
  .book-direct-home,
  .group-escape,
  .location-guide-home {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    position: static;
  }

  .featured-stay-grid,
  .wellness-card-grid,
  .review-ready-grid,
  .home-faq-list {
    grid-template-columns: 1fr 1fr;
  }

  .featured-stay-card,
  .featured-stay-card:first-child,
  .villa-featured-card,
  .wellness-card-grid article {
    grid-column: span 1;
  }

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

  .editorial-masonry {
    grid-template-columns: repeat(4, 1fr);
  }

  .masonry-item {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] {
    background: linear-gradient(180deg, #fff8ed, #f3ead9 54%, #eef3e9);
  }

  .dream-hero {
    min-height: auto;
    padding: 0 0 92px;
  }

  .dream-hero-copy {
    padding: 84px 18px 18px;
  }

  .dream-hero-copy h1 {
    font-size: clamp(45px, 15vw, 64px);
    line-height: .95;
  }

  .dream-hero-copy p:not(.location-line) {
    font-size: 17px;
  }

  .dream-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero-mini-trust {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-mini-trust span {
    white-space: nowrap;
  }

  .page-hero-facts {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .page-hero-facts span {
    white-space: nowrap;
  }

  .page-hero h1 {
    max-width: calc(100vw - 40px);
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: .98;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .page-hero p {
    font-size: 16px;
  }

  body[data-page="gallery"] .page-hero h1 {
    font-size: clamp(32px, 9.8vw, 44px);
  }

  .dream-trust-strip {
    width: calc(100vw - 20px);
    margin-top: -58px;
    border-radius: 14px;
  }

  .dream-section {
    width: min(100% - 22px, 1220px);
    padding-block: 54px;
  }

  .dream-heading h2,
  .dream-experience h2,
  .group-copy h2,
  .location-guide-home h2 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1;
  }

  .stay-choice-grid,
  .featured-stay-grid,
  .wellness-card-grid,
  .review-ready-grid,
  .home-faq-list {
    grid-template-columns: 1fr;
  }

  .location-guide-home .location-proof,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .stay-choice-card {
    grid-template-rows: 255px auto;
    border-radius: 18px;
  }

  .experience-collage {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .experience-tile,
  .tile-1,
  .tile-2,
  .tile-3,
  .tile-4,
  .tile-5,
  .tile-6 {
    grid-column: auto;
    grid-row: auto;
    min-height: 245px;
  }

  .book-direct-home {
    width: calc(100vw - 22px);
    padding: 22px;
    border-radius: 20px;
  }

  .editorial-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }

  .masonry-item,
  .item-1,
  .item-2,
  .item-3,
  .item-4,
  .item-5,
  .item-6,
  .item-7,
  .item-8,
  .item-9,
  .item-10 {
    grid-column: span 1;
    grid-row: span 2;
  }

  .item-1,
  .item-5 {
    grid-column: span 2;
  }

  .group-media-stack {
    grid-template-columns: 1fr;
  }

  .group-media-stack img:first-child {
    margin-bottom: 0;
  }

  .illustrated-map {
    min-height: 390px;
    border-radius: 20px;
  }

  .illustrated-map .map-hotel {
    left: 10%;
  }

  .mobile-cta {
    grid-template-columns: 1fr 1fr 46px 1fr;
    display: grid;
    align-items: center;
  }

  .mobile-cta .btn {
    min-width: 0;
    min-height: 44px;
    padding: 8px 9px;
    border-radius: 9px;
    font-size: 12px;
  }

  .mobile-cta .tere-btn {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }

  .mobile-cta .tere-copy {
    display: none;
  }

  .final-dream-cta {
    min-height: 480px;
    padding-bottom: 84px;
  }
}

/* 2026-06 premium conversion pass */
.site-header {
  min-height: 78px;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 244, 230, .12);
  background:
    linear-gradient(180deg, rgba(7, 16, 12, .94), rgba(7, 16, 12, .86)),
    rgba(7, 16, 12, .9);
}

.brand img {
  height: clamp(56px, 5vw, 72px);
}

.main-nav {
  gap: clamp(10px, 1.3vw, 18px);
  font-size: 12px;
}

.main-nav a {
  position: relative;
  color: rgba(255, 246, 232, .78);
}

.main-nav a[aria-current="page"],
.main-nav a:hover {
  color: #fff8ed;
}

.main-nav a[aria-current="page"]::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f0a96f, #e86e45);
}

.header-actions {
  justify-content: flex-end;
  gap: 12px;
}

.header-trust-note {
  display: grid;
  gap: 1px;
  margin-right: 4px;
  text-align: right;
}

.header-trust-note strong {
  color: #fff8ed;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.header-trust-note span {
  color: rgba(255, 246, 232, .62);
  font-size: 11px;
  line-height: 1.25;
}

.tere-btn {
  gap: 8px;
}

.tere-copy {
  display: none;
  font-weight: 900;
}

.tere-btn.compact,
.tere-btn.with-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tere-btn.compact .tere-copy,
.tere-btn.with-copy .tere-copy {
  display: inline;
}

.dream-hero {
  min-height: calc(100svh - 78px);
  align-items: center;
}

.dream-hero::after {
  background:
    linear-gradient(90deg, rgba(8, 23, 17, .5) 0%, rgba(8, 23, 17, .14) 54%, rgba(8, 23, 17, .34) 100%),
    linear-gradient(180deg, rgba(7, 20, 15, .12), rgba(7, 20, 15, .28));
}

.dream-hero-copy {
  max-width: 720px;
  padding-top: clamp(56px, 8vw, 104px);
  padding-bottom: clamp(48px, 7vw, 88px);
}

.dream-hero-copy .location-line {
  color: rgba(255, 246, 232, .78);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dream-hero-copy h1 {
  max-width: 840px;
  font-size: clamp(56px, 7vw, 102px);
  line-height: .9;
}

.dream-hero-copy p:not(.location-line) {
  max-width: 610px;
  font-size: clamp(18px, 1.9vw, 23px);
  color: rgba(255, 247, 236, .9);
}

.hero-direct-note {
  margin-top: 18px;
  color: rgba(255, 246, 232, .72);
  font-size: 13px;
  line-height: 1.5;
}

.hero-mini-trust {
  margin-top: 18px;
  gap: 10px;
}

.hero-mini-trust span {
  min-height: 38px;
  padding: 9px 14px;
  border-color: rgba(255, 248, 235, .18);
  background: rgba(255, 248, 235, .08);
  font-size: 12px;
}

.dream-trust-strip {
  margin-top: -18px;
}

.home-booking-band {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
  margin-top: 18px;
  padding: 34px;
  border: 1px solid rgba(24, 42, 32, .08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(125, 178, 153, .14), transparent 38%),
    linear-gradient(180deg, rgba(255, 250, 243, .98), rgba(247, 239, 225, .98));
  box-shadow: 0 22px 60px rgba(34, 29, 20, .08);
}

.home-booking-copy h2 {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: .98;
}

.home-booking-copy p:not(.label) {
  max-width: 560px;
  color: var(--dream-muted);
}

.home-booking-copy .split-actions {
  margin-top: 20px;
  align-items: center;
}

.booking-band-note {
  color: var(--dream-muted);
  font-size: 13px;
  font-weight: 800;
}

.home-booking-form .booking-panel {
  max-width: none;
  grid-template-columns: minmax(120px, .9fr) repeat(3, minmax(120px, 1fr)) auto;
  border: 1px solid rgba(14, 33, 24, .08);
  background: rgba(17, 22, 19, .96);
}

.home-booking-form .booking-panel-head {
  min-width: 0;
}

.featured-stays {
  display: grid;
  gap: 26px;
}

.featured-stay-block {
  display: grid;
  gap: 16px;
}

.featured-stay-intro {
  display: grid;
  gap: 8px;
  max-width: 720px;
}

.featured-stay-intro span {
  color: var(--dream-coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.featured-stay-intro h3 {
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
}

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

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

@media (max-width: 1080px) {
  .header-trust-note {
    display: none;
  }

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

  .home-booking-form .booking-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-booking-form .booking-panel-head,
  .home-booking-form .booking-presets,
  .home-booking-form .booking-panel .btn.primary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 74px;
    grid-template-columns: auto 1fr auto;
    padding-inline: 14px;
  }

  .brand {
    justify-self: center;
  }

  .brand img {
    height: 60px;
  }

  .header-actions {
    display: none;
  }

  .dream-hero {
    padding: 0 0 38px;
  }

  .dream-hero-copy {
    padding: 96px 18px 12px;
  }

  .dream-hero-copy h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .dream-hero-copy p:not(.location-line) {
    font-size: 18px;
  }

  .hero-direct-note {
    font-size: 12px;
  }

  .home-booking-band {
    width: calc(100vw - 22px);
    padding: 22px 16px;
    margin-top: 10px;
    border-radius: 20px;
  }

  .home-booking-copy h2 {
    font-size: clamp(30px, 10.5vw, 42px);
  }

  .home-booking-copy .split-actions {
    align-items: stretch;
  }

  .booking-band-note {
    display: block;
  }

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

  .home-booking-form .booking-panel-head,
  .home-booking-form .booking-presets,
  .home-booking-form .booking-panel .btn.primary,
  .home-booking-form .booking-panel label {
    grid-column: auto;
  }

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

/* Continuous production polish: preserve conversion while reducing visual friction. */
.dream-hero-media {
  background:
    linear-gradient(180deg, rgba(5, 18, 12, .2), rgba(5, 18, 12, .42)),
    url("/assets/optimized/assets/gallery/gallery-003.webp") center / cover no-repeat;
}

@media (min-width: 761px) {
  body[data-page="home"] .booking-dock {
    bottom: 8px;
    opacity: .54;
    transform: translateX(-50%) scale(.94);
  }

  body[data-page="home"] .booking-dock:hover,
  body[data-page="home"] .booking-dock:focus-within {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }

  body[data-page="home"] .booking-dock.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(28px) scale(.94);
  }
}

@media (max-width: 760px) {
  .dream-hero-media {
    background-position: center top;
  }

  .dream-hero-media img {
    min-height: 100%;
  }

  body[data-page="gallery"] .gallery-filter-section {
    padding-bottom: 0;
  }

  body[data-page="gallery"] .gallery-filter-section .public-note {
    display: none;
  }

  body[data-page="gallery"] .gallery-wall {
    padding-top: 14px;
  }

  body[data-page="rooms"] .page-hero-facts,
  body[data-page="villas"] .page-hero-facts {
    display: none;
  }

  .mobile-cta .tere-btn {
    width: auto;
    min-width: 56px;
    padding-inline: 10px;
  }

  .mobile-cta .tere-copy {
    display: inline;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .02em;
  }

  .mobile-cta .tere-mark {
    margin-right: 2px;
  }
}
