:root {
  --arena: #f7e0c3;
  --dorado: #d89a2b;
  --naranja: #f26a1b;
  --selva: #2f5d46;
  --oceano: #174a5a;
  --volcan: #2c2c2c;
  --oro: #c99c3c;
  --lino: #fff6e8;
  --ink: #f8ead6;
  --muted: #c9b79b;
  --surface: #15110d;
  --surface-soft: #201913;
  --surface-warm: #2a2017;
  --line: rgba(44, 44, 44, 0.14);
  --shadow: 0 22px 60px rgba(10, 8, 6, 0.22);
}

* { box-sizing: border-box; letter-spacing: 0; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 154, 43, 0.13), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(47, 93, 70, 0.13), transparent 30%),
    linear-gradient(180deg, #0a0908, #17110d 48%, #0d0c0a);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img {
  display: block;
  width: 100%;
  height: auto;
  background:
    radial-gradient(circle at 50% 28%, rgba(216, 154, 43, 0.2), transparent 38%),
    linear-gradient(135deg, #15120e, #24201a 48%, #0b0b0b);
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0;
  font-weight: 600;
  line-height: 0.98;
}
p { margin: 0; }
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 78px;
  display: grid;
  grid-template-columns: minmax(190px, 280px) 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(18, 17, 15, 0.78);
  color: var(--lino);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}
.brand-logo { max-height: 50px; object-fit: contain; object-position: left center; }
.brand-link { display: block; min-width: 0; }
.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
  font-size: 13px;
  font-weight: 700;
}
.primary-nav a { opacity: 0.9; }
.primary-nav a:hover { color: var(--dorado); opacity: 1; }
.home-page:not(.is-scrolled) .site-header {
  background: linear-gradient(180deg, rgba(8,8,7,0.72), rgba(8,8,7,0.04));
  border-bottom-color: transparent;
}
.home-page:not(.is-scrolled) .site-header .brand-link-centered {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}
.home-page .site-header .brand-link-centered {
  transition: opacity .28s ease, transform .28s ease;
}
.header-cta, .btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.header-cta, .btn-gold {
  color: #17110a;
  background:
    linear-gradient(135deg, #f3b338, var(--dorado) 48%, #c17d18),
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.55), transparent 32%);
  box-shadow: 0 16px 42px rgba(216, 154, 43, 0.34);
}
.btn-ghost {
  color: var(--lino);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(7, 7, 7, 0.28);
  backdrop-filter: blur(14px);
}
.btn-light { color: var(--volcan); background: var(--lino); }
.btn-outline { color: inherit; border: 1px solid currentColor; background: transparent; }
.hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--volcan);
  color: var(--lino);
}
.hero-media, .hero-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-diffusion {
  background: #070706;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  animation: heroDiffusion 32s infinite ease-in-out;
  will-change: opacity, transform;
}
.hero-slide-1 { animation-delay: 0s; }
.hero-slide-2 { animation-delay: 6.4s; }
.hero-slide-3 { animation-delay: 12.8s; }
.hero-slide-4 { animation-delay: 19.2s; }
.hero-slide-5 { animation-delay: 25.6s; }
.hero-slide:first-child {
  opacity: 1;
  animation: none;
}
.hero-slide picture,
.hero-slide img {
  height: 100%;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.03) contrast(1.04) brightness(0.94);
}
@keyframes heroDiffusion {
  0% { opacity: 0; transform: scale(1.04); }
  6% { opacity: 1; transform: scale(1.02); }
  24% { opacity: 1; transform: scale(1); }
  32% { opacity: 0; transform: scale(1.018); }
  100% { opacity: 0; transform: scale(1.04); }
}
.home-hero .hero-image {
  object-position: 50% 48%;
  filter: saturate(1.04) contrast(1.04);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.46), rgba(8, 8, 7, 0.18), rgba(8, 8, 7, 0.48)),
    linear-gradient(0deg, rgba(8, 8, 7, 0.62), rgba(8, 8, 7, 0.16) 54%, rgba(8, 8, 7, 0.22));
}
.home-hero .hero-shade {
  background:
    radial-gradient(circle at 50% 20%, rgba(216, 154, 43, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(6, 6, 6, 0.56), rgba(6, 6, 6, 0.24) 48%, rgba(6, 6, 6, 0.58)),
    linear-gradient(0deg, rgba(6, 6, 6, 0.68), rgba(6, 6, 6, 0.12) 56%, rgba(6, 6, 6, 0.34));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 54px;
  display: grid;
  justify-items: center;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}
.home-page .hero-content { margin-left: auto; margin-right: auto; }
.home-hero-copy {
  align-self: end;
  width: min(860px, calc(100% - 34px));
  padding-bottom: clamp(70px, 11vh, 128px);
}
.hero-kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: rgba(255,246,232,0.94);
  background: linear-gradient(180deg, rgba(8,8,8,0.52), rgba(8,8,8,0.34));
  border: 1px solid rgba(216,154,43,0.32);
  backdrop-filter: blur(16px);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.hero-logo {
  width: min(280px, 62vw);
  margin: 0 auto 10px;
  object-fit: contain;
}
.hero h1 {
  font-size: clamp(40px, 5.4vw, 74px);
  max-width: 940px;
  text-wrap: balance;
}
.home-hero h1 {
  max-width: 770px;
  margin-top: 16px;
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: 0;
}
.hero p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.52vw, 21px);
}
.hero-lede {
  max-width: 760px;
  color: rgba(255,246,232,0.88);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.48;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.home-hero-actions {
  width: min(640px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.home-hero-actions .btn {
  min-height: 60px;
  width: 100%;
  border-radius: 8px;
  font-size: 13px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}
.hero-direct-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.hero-direct-note span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255,246,232,0.84);
  background: rgba(7,7,7,0.36);
  border: 1px solid rgba(216,154,43,0.18);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-meta-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(118px, 1fr));
  gap: 10px;
  width: min(720px, 100%);
  margin-top: 24px;
}
.hero-meta-item {
  min-height: 62px;
  padding: 11px 13px;
  border: 1px solid rgba(216,154,43,0.2);
  border-radius: 8px;
  background: rgba(9, 9, 8, 0.38);
  backdrop-filter: blur(14px);
  display: grid;
  align-content: center;
  gap: 3px;
}
.hero-meta-item span {
  color: rgba(255,255,255,0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-meta-item strong {
  font-size: 13px;
  line-height: 1.2;
}
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0));
  animation: scrollCue 1.9s infinite ease-in-out;
}
@keyframes scrollCue {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.46; }
  50% { transform: translate(-50%, 9px); opacity: 1; }
}
.booking-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 18px clamp(18px, 6vw, 72px);
  background: var(--selva);
  color: var(--lino);
  text-align: center;
}
.booking-band div:first-child {
  display: grid;
  gap: 4px;
}
.booking-band strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 27px; line-height: 1; }
.booking-band span { color: rgba(255, 255, 255, 0.82); }
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.content-section, .linen-section, .dark-section, .cta-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 72px);
}
.hero + .content-section,
.hero + .linen-section,
.hero + .dark-section,
.hero + .carousel-section {
  padding-top: clamp(126px, 15vh, 168px);
}
.content-section {
  background:
    linear-gradient(135deg, rgba(255, 246, 232, 0.045), rgba(216, 154, 43, 0.045)),
    radial-gradient(circle at 12% 8%, rgba(216, 154, 43, 0.12), transparent 28%),
    linear-gradient(180deg, #15110d, #0e0c0a);
  color: var(--ink);
}
.linen-section {
  background:
    linear-gradient(135deg, rgba(44, 34, 24, 0.94), rgba(20, 15, 11, 0.98)),
    radial-gradient(circle at 86% 10%, rgba(216, 154, 43, 0.14), transparent 34%),
    var(--surface-warm);
  color: var(--ink);
}
.dark-section {
  background:
    linear-gradient(135deg, rgba(31, 31, 29, 0.98), rgba(44, 44, 44, 0.96)),
    var(--volcan);
  color: var(--lino);
}
.cta-section {
  min-height: 440px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  color: var(--lino);
  background:
    linear-gradient(rgba(16, 14, 12, 0.62), rgba(16, 14, 12, 0.76)),
    url("/assets/dreamcatcher/fresh-user-media/beach-sunset-dreamcatcher.jpg") center / cover;
}
.section-header {
  display: grid;
  gap: 12px;
  width: min(980px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}
.section-header h2, .cta-section h2 {
  font-size: clamp(34px, 5vw, 68px);
}
.section-header p, .cta-section p {
  max-width: 790px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
}
.dark-section .section-header p, .cta-section p { color: rgba(255, 255, 255, 0.82); }
.stay-grid, .villa-grid, .experience-grid, .editorial-grid, .segment-grid, .room-grid {
  display: grid;
  gap: 18px;
  width: min(1220px, 100%);
  margin: 0 auto;
}
.stay-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.villa-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.experience-grid, .editorial-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.segment-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.room-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.room-grid.compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.quick-answer-shell,
.faq-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1220px, 100%);
  margin: 0 auto;
}
.stay-card, .villa-card, .room-card, .editorial-card, .segment-card, .quiet-panel, details {
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 154, 43, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(46, 35, 24, 0.98), rgba(13, 12, 10, 0.995));
  border: 1px solid rgba(216, 154, 43, 0.26);
  box-shadow:
    0 22px 72px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255,246,232,0.06);
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.stay-card:hover, .villa-card:hover, .room-card:hover, .editorial-card:hover, .compare-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 154, 43, 0.52);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(247,224,195,0.04) inset;
}
.dark-section .room-card, .dark-section .villa-card, .dark-section .segment-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}
.stay-card a, .villa-card a, .room-card a, .editorial-card a, .compare-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}
.card-media-shell {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #14100b;
}
.card-media-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.02), rgba(6, 6, 6, 0.08) 38%, rgba(6, 6, 6, 0.74)),
    radial-gradient(circle at 18% 18%, rgba(216, 154, 43, 0.28), transparent 36%);
}
.card-media-badge,
.card-media-chip {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  border-radius: 999px;
  color: #fffffe;
  background: rgba(7, 7, 8, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}
.card-media-badge {
  top: 12px;
  left: 12px;
}
.card-media-chip {
  right: 12px;
  bottom: 12px;
  color: var(--volcan);
  background: rgba(247, 224, 195, 0.92);
  border-color: rgba(216, 154, 43, 0.34);
}
.room-media-shell,
.villa-media-shell {
  border-bottom: 1px solid rgba(216,154,43,0.2);
}
.stay-card:hover img, .villa-card:hover img, .room-card:hover img, .editorial-card:hover img, .compare-card:hover img {
  transform: scale(1.055);
}
.stay-card img, .villa-card img, .room-card img, .editorial-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 420ms ease;
}
.room-card img {
  aspect-ratio: 4 / 3.28;
}
.villa-card img {
  aspect-ratio: 4 / 3.18;
}
.stay-card-copy, .villa-card-copy, .room-card-copy, .editorial-card div, .segment-card {
  padding: 24px 22px 22px;
  display: grid;
  gap: 11px;
  align-content: start;
}
.stay-card h3, .villa-card h3, .room-card h3, .editorial-card h3, .segment-card h3 {
  font-size: clamp(25px, 2.4vw, 36px);
  margin-bottom: 0;
  color: var(--lino);
  line-height: 0.98;
  text-wrap: balance;
}
.card-eyebrow {
  display: block;
  color: var(--dorado);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}
.stay-card p, .villa-card p, .room-card p, .editorial-card p, .segment-card p {
  color: rgba(255, 246, 232, 0.74);
  font-size: 15px;
  line-height: 1.48;
}
.room-card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}
.room-card-facts small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--lino);
  background: rgba(216, 154, 43, 0.16);
  border: 1px solid rgba(216, 154, 43, 0.26);
  font-size: 11px;
  font-weight: 800;
}
.room-card-facts svg {
  width: 14px;
  height: 14px;
}
.room-card em {
  color: rgba(255, 246, 232, 0.78);
  font-size: 13px;
  font-style: normal;
}
.room-card-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.room-card-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 8px;
  border-radius: 999px;
  color: rgba(255, 246, 232, 0.9);
  background: rgba(255, 246, 232, 0.07);
  border: 1px solid rgba(255, 246, 232, 0.12);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
}
.quick-answer-card,
.faq-mini-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(216,154,43,0.14);
  background:
    radial-gradient(circle at top left, rgba(216,154,43,0.08), transparent 38%),
    rgba(20,17,14,0.92);
  box-shadow: 0 18px 48px rgba(0,0,0,0.2);
}
.quick-answer-card h2,
.faq-mini-card h3 {
  color: var(--lino);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  margin: 0;
}
.quick-answer-card p,
.faq-mini-card p {
  color: rgba(255,246,232,0.76);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
.room-card strong {
  color: var(--dorado);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.card-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(216, 154, 43, 0.16);
  color: var(--dorado);
}
.card-cta-row strong {
  color: currentColor;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.card-cta-row span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(216, 154, 43, 0.18);
  color: currentColor;
}
.card-cta-row svg {
  width: 16px;
  height: 16px;
}
.dark-section .room-card p, .dark-section .room-card h3 { color: var(--lino); }
.dark-section .room-card em { color: rgba(255, 255, 255, 0.72); }
.dark-section .room-card-facts small { color: var(--lino); background: rgba(216, 154, 43, 0.18); }
.dark-section .card-eyebrow { color: var(--dorado); }
.dark-section .card-cta-row { border-top-color: rgba(216, 154, 43, 0.28); }
.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}
.split-feature > div { min-width: 0; }
.split-feature img {
  min-height: 420px;
  max-height: 640px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.split-feature h2 {
  font-size: clamp(38px, 5vw, 76px);
  margin-bottom: 18px;
}
.split-feature p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 18px;
}
.dark-section.split-feature p { color: rgba(255, 255, 255, 0.82); }
.mini-list, .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.mini-list a, .tag-cloud span {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 6px;
  background: rgba(216, 154, 43, 0.12);
  color: var(--volcan);
  font-size: 13px;
  font-weight: 800;
}
.room-detail-grid, .article-layout, .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}
.fact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.fact-list div {
  padding: 15px;
  border: 1px solid rgba(216,154,43,0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(216,154,43,0.14), transparent 34%),
    rgba(247, 224, 195, 0.28);
}
.fact-list span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.fact-list strong { display: block; margin-top: 4px; }
.room-media-stage-section {
  padding: 18px clamp(14px, 4vw, 28px) 0;
}
.room-detail-hero {
  padding-top: 92px;
}
.room-detail-hero-copy {
  width: min(1180px, calc(100% - 36px));
  margin: 16px auto 0;
  display: grid;
  gap: 10px;
}
.room-detail-hero-copy h1 {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 0.94;
}
.room-detail-hero-copy p {
  max-width: 760px;
  color: rgba(255,246,232,0.8);
  font-size: 18px;
}
.room-media-stage {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.room-media-lead {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #0d0c0a;
  cursor: zoom-in;
}
.room-media-lead-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.room-media-topline,
.room-media-actions {
  position: absolute;
  z-index: 1;
}
.room-media-topline {
  left: 14px;
  top: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(8,8,7,0.56);
  color: var(--lino);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
}
.room-media-actions {
  right: 14px;
  top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8,8,7,0.56);
  color: var(--lino);
}
.room-media-actions span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--lino);
}
.room-media-actions strong {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.room-media-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.room-media-thumbs::-webkit-scrollbar { display: none; }
.room-thumb {
  flex: 0 0 auto;
  width: 82px;
  height: 62px;
  padding: 0;
  border: 1px solid rgba(216,154,43,0.12);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  opacity: 0.62;
}
.room-thumb.is-active {
  border-color: rgba(216,154,43,0.52);
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(216,154,43,0.18);
}
.room-thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-media-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: rgba(255,246,232,0.6);
  font-size: 12px;
  font-weight: 700;
}
.room-lightbox[hidden] {
  display: none !important;
}
.room-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(5,5,5,0.92);
}
.room-lightbox-stage {
  width: min(1100px, 100%);
}
.room-lightbox-image {
  width: 100%;
  max-height: calc(100svh - 56px);
  object-fit: contain;
  transform-origin: center center;
  transition: transform 180ms ease;
}
.room-lightbox.is-zoomed .room-lightbox-image {
  transform: scale(1.6);
  cursor: zoom-out;
}
.room-lightbox-close,
.room-lightbox-zoom {
  position: absolute;
  top: 18px;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: var(--lino);
}
.room-lightbox-close { right: 18px; }
.room-lightbox-zoom { right: 70px; }
.room-fact-chip-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 22px;
}
.room-fact-chip {
  min-width: 0;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid rgba(216,154,43,0.16);
  background: rgba(247,224,195,0.1);
}
.room-fact-chip .icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(216,154,43,0.14);
  color: var(--dorado);
  margin-bottom: 10px;
}
.room-fact-chip small,
.room-fact-chip strong {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.room-fact-chip small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.room-fact-chip strong {
  margin-top: 4px;
  color: var(--lino);
  font-size: 15px;
}
.compact-room-signal h3 {
  font-size: clamp(26px, 2vw, 34px);
}
.room-amenity-cloud {
  margin-top: 18px;
}
.quiet-panel {
  padding: 24px;
  border: 1px solid rgba(216,154,43,0.22);
  background:
    radial-gradient(circle at 18% 0%, rgba(216,154,43,0.18), transparent 36%),
    linear-gradient(145deg, rgba(41,31,23,0.96), rgba(16,14,12,0.98));
  box-shadow: 0 24px 66px rgba(0,0,0,0.18);
}
.quiet-panel-compact {
  display: grid;
  gap: 10px;
}
.quiet-panel-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.quiet-panel-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.quiet-panel-row .icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(216,154,43,0.14);
  color: var(--dorado);
}
.quiet-panel-row small,
.quiet-panel-row strong {
  display: block;
}
.quiet-panel-row small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.quiet-panel-row strong {
  margin-top: 3px;
  color: var(--lino);
  font-size: 15px;
  line-height: 1.25;
}
.quiet-panel h2 {
  color: var(--lino);
  font-size: 28px;
  margin: 0 0 8px;
}
.quiet-panel p + h2 { margin-top: 22px; }
.body-copy, .article-copy p, .quiet-panel p, .clean-list {
  color: rgba(255,246,232,0.76);
  font-size: 17px;
}
.quiet-panel-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.quiet-panel-actions .btn {
  width: 100%;
}
.segment-card .btn {
  width: fit-content;
  margin-top: 8px;
}
.lead-copy {
  max-width: 820px;
  margin-bottom: 24px;
}
.article-copy section + section { margin-top: 30px; }
.article-copy h2 {
  font-size: clamp(34px, 4vw, 58px);
  margin-bottom: 12px;
}
.inline-actions { margin-top: 22px; }
.clean-list {
  margin: 22px 0 0;
  padding-left: 20px;
}
.clean-list li + li { margin-top: 8px; }
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(1220px, 100%);
  margin: 0 auto;
}
.image-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}
.image-grid .feature-photo {
  grid-column: span 2;
  grid-row: span 2;
}
.faq-layout {
  display: grid;
  gap: 12px;
  width: min(980px, 100%);
  margin: 0 auto;
}
details {
  padding: 18px 22px;
}
summary {
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 700;
}
details p {
  margin-top: 12px;
  color: var(--muted);
}
.site-footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(216,154,43,0.14), transparent 30%),
    linear-gradient(180deg, #141210, #0e0d0c);
  color: var(--lino);
  padding: 42px clamp(18px, 6vw, 72px);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.95fr;
  gap: 28px;
  width: min(1220px, 100%);
  margin: 0 auto;
  align-items: start;
}
.footer-brand {
  display: grid;
  gap: 10px;
}
.footer-logo {
  max-width: 280px;
  margin-bottom: 4px;
}
.footer-brand strong {
  color: var(--dorado);
  font-size: 12px;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.footer-links a {
  color: rgba(255,255,255,0.82);
}
.footer-legal {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(216, 154, 43, 0.18);
  background: rgba(255, 255, 255, 0.045);
}
.footer-contact {
  display: grid;
  gap: 8px;
}
.footer-contact p, .footer-brand p {
  color: rgba(255, 255, 255, 0.72);
}
.home-hero {
  min-height: 100svh;
  align-items: center;
}
.home-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -102px;
  width: 138%;
  height: 210px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 0%, rgba(216,154,43,0.24), transparent 42%),
    linear-gradient(180deg, rgba(14,11,9,0.02), rgba(14,11,9,0.92) 72%);
  pointer-events: none;
}
.home-hero-copy.home-hero-vision-copy {
  width: min(720px, calc(100% - 34px));
  padding: 118px 0 128px;
  display: grid;
  justify-items: center;
  gap: 14px;
}
.hero-logo-halo {
  width: min(132px, 38vw);
  display: flex;
  justify-content: center;
  margin-inline: auto;
  position: relative;
  isolation: isolate;
}
.hero-logo-halo::before {
  content: "";
  position: absolute;
  inset: -10px -18px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216,154,43,0.24), transparent 68%);
  filter: blur(12px);
  z-index: -1;
}
.hero-logo-halo .hero-logo {
  margin-inline: auto;
  transform: translateX(-6px);
}
.hero-manifesto {
  max-width: 780px;
  text-align: center;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(18px);
  will-change: transform, opacity;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}
.page-ready .hero-manifesto {
  animation: heroLineReveal 1.15s cubic-bezier(.2,.84,.16,1) forwards;
}
.home-page .hero-manifesto {
  font-size: clamp(50px, 7.2vw, 92px);
  line-height: 0.9;
}
.vision-hero-actions {
  width: min(590px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}
.btn-hero-wood {
  position: relative;
  overflow: hidden;
  min-height: 66px;
  width: 100%;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(201,156,60,0.24);
  box-shadow:
    0 22px 58px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
}
.btn-hero-wood .btn-grain {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), transparent 28%),
    linear-gradient(90deg, rgba(89,53,24,0.58), rgba(54,31,13,0.72) 36%, rgba(109,68,34,0.56) 62%, rgba(36,21,11,0.78));
  opacity: 0.94;
}
.btn-hero-wood .btn-icon,
.btn-hero-wood span:last-child {
  position: relative;
  z-index: 1;
}
.btn-hero-primary {
  color: #150f09;
  border-color: rgba(233, 186, 94, 0.28);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.42), transparent 28%),
    linear-gradient(135deg, #b8772e, #d19a42 45%, #815123 100%);
}
.btn-hero-primary .btn-grain {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.26), transparent 24%),
    linear-gradient(90deg, rgba(116,71,28,0.4), rgba(181,121,49,0.8) 34%, rgba(225,179,84,0.85) 58%, rgba(125,78,28,0.64));
}
.btn-hero-secondary {
  color: var(--lino);
  background: rgba(11, 10, 9, 0.44);
}
.btn-hero-secondary .btn-grain {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), transparent 24%),
    linear-gradient(90deg, rgba(49,31,18,0.76), rgba(31,20,11,0.82) 48%, rgba(64,40,24,0.72));
}
.btn-hero-wood:hover {
  transform: translateY(-1px);
}
.hero-orbit-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.hero-orbit-icons span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(255,246,232,0.9);
  border: 1px solid rgba(201,156,60,0.2);
  background: rgba(9, 9, 8, 0.34);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.home-amenity-section {
  position: relative;
  z-index: 2;
  margin-top: -112px;
  padding: 0 clamp(16px, 4vw, 52px) 42px;
}
.home-amenity-shell {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 36px;
  border: 1px solid rgba(201,156,60,0.16);
  background:
    radial-gradient(circle at 18% 0%, rgba(216,154,43,0.18), transparent 28%),
    linear-gradient(145deg, rgba(19,15,12,0.94), rgba(12,10,9,0.98));
  box-shadow: 0 34px 90px rgba(0,0,0,0.38);
  backdrop-filter: blur(20px);
}
.home-page .home-screen,
.home-page .map-section,
.home-page .site-footer {
  scroll-snap-align: start;
}
.home-page .home-screen {
  min-height: auto;
}
.home-amenity-intro {
  display: grid;
  gap: 8px;
  max-width: 640px;
  margin-bottom: 14px;
}
.home-amenity-intro h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.98;
}
.home-amenity-intro p {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.45;
}
.footer-kicker,
.carousel-kicker,
.card-eyebrow {
  color: var(--dorado);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.home-amenity-medallions {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0 8px;
  scrollbar-width: none;
}
.home-amenity-medallions::-webkit-scrollbar { display: none; }
.amenity-medallion {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  justify-items: center;
  align-items: center;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(201,156,60,0.15);
  color: rgba(255,246,232,0.84);
  background:
    linear-gradient(160deg, rgba(56,39,26,0.82), rgba(20,15,11,0.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  cursor: pointer;
}
.amenity-medallion.is-active {
  color: #190f08;
  border-color: rgba(233,186,94,0.28);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.34), transparent 30%),
    linear-gradient(135deg, #d6a44a, #91612b 88%);
}
.amenity-medallion-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}
.amenity-medallion.is-active .amenity-medallion-icon {
  transform: scale(1.03);
}
.home-amenity-stage {
  position: relative;
  min-height: 360px;
  margin-top: 12px;
}
.amenity-stage-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .28s ease, transform .28s ease;
}
.amenity-stage-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.amenity-stage-media {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.amenity-stage-media img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.amenity-stage-copy {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(201,156,60,0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(216,154,43,0.14), transparent 34%),
    linear-gradient(180deg, rgba(15,12,10,0.92), rgba(9,8,7,0.98));
}
.amenity-stage-copy span {
  color: var(--dorado);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.amenity-stage-copy h3 {
  font-size: clamp(34px, 4vw, 54px);
  color: var(--lino);
}
.amenity-stage-copy p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
}
.tere-section {
  padding: 0 clamp(16px, 4vw, 52px) 36px;
}
.tere-shell {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 34px;
  border: 1px solid rgba(201,156,60,0.14);
  background:
    radial-gradient(circle at 12% 0%, rgba(216,154,43,0.14), transparent 28%),
    linear-gradient(160deg, rgba(16,12,10,0.96), rgba(9,8,7,0.98));
  box-shadow: 0 26px 68px rgba(0,0,0,0.28);
}
.tere-copy {
  max-width: 760px;
  margin-bottom: 18px;
}
.tere-kicker {
  color: var(--dorado);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tere-copy h2 {
  margin-top: 8px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.98;
  color: var(--lino);
}
.tere-copy p {
  margin-top: 10px;
  color: rgba(255,255,255,0.72);
  max-width: 760px;
}
.tere-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: stretch;
}
.tere-stage-media,
.tere-stage-media img {
  height: 100%;
}
.tere-stage-media {
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
}
.tere-stage-media img {
  object-fit: cover;
}
.tere-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.tere-question-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 148px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(201,156,60,0.14);
  background:
    linear-gradient(180deg, rgba(56,39,26,0.78), rgba(16,12,10,0.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}
.tere-question-card:hover,
.tere-question-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(233,186,94,0.28);
  background:
    radial-gradient(circle at 18% 0%, rgba(245,188,78,0.18), transparent 28%),
    linear-gradient(180deg, rgba(64,44,28,0.86), rgba(18,13,10,0.96));
}
.tere-question-card strong {
  color: var(--lino);
  font-size: 18px;
  line-height: 1.15;
}
.tere-question-card span {
  color: rgba(255,255,255,0.66);
  font-size: 14px;
  line-height: 1.45;
}
.home-story-section,
.villa-feature-section,
.room-rail-section,
.discover-section {
  position: relative;
  z-index: 1;
}
.home-story-section {
  padding-top: 28px;
  background:
    radial-gradient(circle at 82% 0%, rgba(216,154,43,0.08), transparent 30%),
    linear-gradient(180deg, #100d0b, #15110e);
}
.room-rail-section,
.discover-section {
  padding: 34px clamp(16px, 4vw, 42px) 40px;
  background:
    radial-gradient(circle at 20% 0%, rgba(216,154,43,0.08), transparent 30%),
    linear-gradient(180deg, #12100f, #0f0f10);
}
.room-rail-head {
  width: min(1220px, 100%);
  margin: 0 auto;
}
.filter-chip-row,
.room-number-nav {
  width: min(1220px, 100%);
  margin: 14px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
  padding-bottom: 0;
  scrollbar-width: none;
}
.filter-chip-row::-webkit-scrollbar,
.room-number-nav::-webkit-scrollbar,
.discover-track::-webkit-scrollbar,
.room-number-track::-webkit-scrollbar { display: none; }
.filter-chip,
.room-number-btn {
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 14px;
  border: 1px solid rgba(201,156,60,0.24);
  color: rgba(255,246,232,0.84);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    rgba(255,255,255,0.04);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.filter-chip:hover,
.room-number-btn:hover,
.filter-chip:focus-visible,
.room-number-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(233,186,94,0.34);
}
.filter-chip.is-active,
.room-number-btn.is-active {
  color: #140e08;
  background: linear-gradient(135deg, #d6a44a, #8d5d2b);
  border-color: rgba(233,186,94,0.28);
}
.room-number-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(48px, 1fr));
}
.room-number-btn {
  width: 100%;
  justify-content: center;
}
.room-number-track,
.discover-track {
  width: min(1220px, 100%);
  margin: 14px auto 0;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 0 10px;
  scrollbar-width: none;
}
.room-rail-item,
.discover-item {
  flex: 0 0 min(78vw, 332px);
  scroll-snap-align: center;
}
.room-rail-item .room-card,
.discover-item .editorial-card {
  height: 100%;
}
.catalog-room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.room-grid-item {
  min-width: 0;
}
.room-grid-item .room-card {
  height: 100%;
}
.room-nav-helper {
  width: min(1220px, 100%);
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(216,154,43,0.18);
  background: rgba(255,255,255,0.03);
}
.room-nav-helper p {
  margin: 0;
  color: rgba(255,255,255,0.74);
  font-size: 14px;
}
.room-match-guide-section .section-header {
  margin-bottom: 18px;
}
.room-match-grid {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.match-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(216,154,43,0.18);
  background:
    radial-gradient(circle at 12% 0%, rgba(216,154,43,0.12), transparent 28%),
    linear-gradient(180deg, rgba(22,18,14,0.98), rgba(11,10,9,0.98));
  box-shadow: var(--shadow);
}
.match-card .card-media-shell img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.match-card-copy {
  display: grid;
  gap: 10px;
  padding: 18px;
}
.match-card-copy h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  color: var(--lino);
}
.match-card-copy p {
  margin: 0;
  color: rgba(255,255,255,0.74);
  font-size: 14px;
  line-height: 1.42;
}
.rooms-tere-shell {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 18px;
  align-items: center;
}
.tere-inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.tere-inline-form input {
  min-width: 0;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(216,154,43,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--lino);
}
.rooms-villa-grid {
  margin-top: 16px;
}
.room-card-best-for {
  margin: -4px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.38;
}
.room-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 8px;
}
.room-card-actions .btn {
  min-height: 40px;
}
.room-detail-shell {
  padding: 98px clamp(18px, 5vw, 54px) 30px;
}
.room-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(18px, 4vw, 32px);
  align-items: start;
  width: min(1220px, 100%);
  margin: 0 auto;
}
.room-summary-card {
  position: sticky;
  top: 104px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(216,154,43,0.22);
  background:
    radial-gradient(circle at 16% 0%, rgba(216,154,43,0.18), transparent 34%),
    linear-gradient(180deg, rgba(32,24,18,0.98), rgba(14,12,10,0.98));
  box-shadow: var(--shadow);
}
.room-summary-card h1 {
  margin: 10px 0 0;
  color: var(--lino);
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 0.94;
}
.room-summary-card .room-fact-chip-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}
.room-summary-card .room-fact-chip small,
.room-summary-card .room-fact-chip strong {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
.room-summary-card .room-fact-chip strong {
  font-size: 14px;
  line-height: 1.22;
}
.room-summary-best-for {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.42;
}
.room-summary-actions {
  grid-template-columns: 1fr 1fr;
}
.room-summary-actions .btn {
  width: 100%;
}
.room-summary-note {
  margin-top: 16px;
}
.room-intro-grid {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  gap: clamp(18px, 4vw, 32px);
  align-items: start;
}
.room-good-to-know-panel {
  margin-top: 44px;
}
.room-location-teaser .rooms-tere-shell {
  grid-template-columns: minmax(0, 1fr) auto;
}
.booking-hidden-select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  inset: 0;
}
.booking-date-inline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.booking-stepper-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.booking-stepper {
  position: relative;
  display: grid;
  gap: 8px;
}
.booking-stepper > span,
.booking-language > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.booking-stepper-control {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid rgba(216,154,43,0.2);
  background: rgba(255,255,255,0.03);
}
.booking-stepper-control strong {
  text-align: center;
  font-size: 18px;
}
.stepper-btn,
.range-month-btn {
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--dorado), #f0b44b);
  color: #17110a;
  font-weight: 900;
  cursor: pointer;
}
.stepper-btn[disabled],
.range-month-btn[disabled] {
  opacity: 0.44;
  cursor: not-allowed;
}
.booking-room-split-shell {
  margin-top: 14px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(216,154,43,0.2);
  background: rgba(255,255,255,0.03);
}
.booking-room-split-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.booking-room-split-head span {
  color: rgba(255,255,255,0.66);
  font-size: 12px;
}
.booking-room-split {
  display: grid;
  gap: 10px;
}
.booking-room-split-card {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(216,154,43,0.14);
  background: rgba(255,255,255,0.03);
}
.booking-room-split-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.booking-room-split-card-head span {
  color: rgba(255,255,255,0.66);
  font-size: 12px;
}
.booking-room-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.booking-mini-stepper {
  display: grid;
  gap: 6px;
}
.booking-mini-stepper > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.range-month-nav {
  display: flex;
  gap: 8px;
}
.range-month-btn {
  min-width: 70px;
}
.room-rail-item[hidden],
.discover-item[hidden] {
  display: none !important;
}
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 44px clamp(18px, 6vw, 72px) 82px;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -120px;
  width: 138%;
  height: 220px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 100%, rgba(216,154,43,0.2), transparent 42%),
    linear-gradient(180deg, transparent, rgba(8,8,7,0.95));
}
.footer-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(216,154,43,0.14), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(47,93,70,0.14), transparent 28%);
  pointer-events: none;
}
.footer-inner {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px 28px;
}
.footer-lead {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-lead h2 {
  max-width: 620px;
  font-size: clamp(34px, 4.4vw, 62px);
  color: var(--lino);
  line-height: 0.96;
}
.footer-lead p {
  max-width: 560px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
}
.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.footer-utility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}
.footer-utility-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 10px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(201,156,60,0.16);
  background: rgba(255,255,255,0.04);
}
.footer-utility-card .icon {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--dorado);
}
.footer-utility-card strong {
  color: var(--lino);
  font-size: 13px;
}
.footer-utility-card small {
  color: rgba(255,255,255,0.66);
  font-size: 12px;
}
.footer-social-row,
.panel-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-social-row a,
.panel-social-row a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(201,156,60,0.18);
  background: rgba(255,255,255,0.05);
  color: rgba(255,246,232,0.84);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(201,156,60,0.14);
  background: rgba(255,255,255,0.04);
}
.footer-column > span,
.footer-closure strong {
  color: var(--dorado);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-column a,
.footer-column p {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}
.footer-contact a {
  color: rgba(255,255,255,0.86);
}
.footer-phone-line {
  color: rgba(255,255,255,0.66);
  font-weight: 700;
}
.footer-closure {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(201,156,60,0.16);
}
.footer-closure p {
  color: rgba(255,255,255,0.68);
}
.menu-intro {
  max-width: 520px;
  margin: 2px auto 0;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.45;
}
.menu-hero {
  display: grid;
  justify-items: center;
  gap: 6px;
}
.menu-action-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.menu-action-card {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 10px;
  min-height: 72px;
  padding: 13px;
  border-radius: 20px;
  border: 1px solid rgba(233,186,94,0.18);
  color: var(--lino);
  background:
    radial-gradient(circle at 18% 0%, rgba(216,154,43,0.2), transparent 32%),
    linear-gradient(145deg, rgba(54,36,22,0.82), rgba(13,11,9,0.94));
}
.menu-action-card span {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #140e08;
  background: linear-gradient(135deg, #d6a44a, #8d5d2b);
}
.menu-action-card strong {
  font-size: 15px;
  line-height: 1.05;
}
.menu-action-card small {
  color: rgba(255,246,232,0.62);
  font-size: 11px;
  font-weight: 800;
}
.menu-route-block {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(201,156,60,0.12);
  background: rgba(255,255,255,0.035);
}
.menu-route-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.menu-route-head strong {
  color: var(--lino);
  font-size: 14px;
}
.menu-route-head a,
.menu-legal-row a {
  color: var(--dorado);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.menu-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.menu-contact-row a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201,156,60,0.16);
  color: rgba(255,246,232,0.88);
  background: rgba(255,255,255,0.045);
  font-size: 11px;
  font-weight: 900;
}
.menu-chip-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  overflow: visible;
  padding-bottom: 0;
  scrollbar-width: none;
}
.menu-chip-scroll::-webkit-scrollbar { display: none; }
.menu-chip-scroll a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(201,156,60,0.16);
  color: rgba(255,246,232,0.86);
  background: rgba(255,255,255,0.045);
  font-size: 12px;
  font-weight: 900;
}
.menu-room-scroll a {
  min-width: 38px;
  padding-inline: 10px;
}
.menu-wide-scroll a {
  min-width: max-content;
}
.menu-legal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.home-mood-band {
  min-height: 78svh;
}
.mood-gallery {
  width: min(1220px, 100%);
  margin: 18px auto 0;
  display: grid;
  gap: 12px;
}
.mood-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
  scrollbar-width: none;
}
.mood-filter-row::-webkit-scrollbar { display: none; }
.contact-utility-grid {
  width: 100%;
  margin: 18px 0 0;
}
.villa-index-actions {
  justify-content: center;
  margin-top: 18px;
}
.mood-gallery-lead {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(201,156,60,0.16);
  background: #10100f;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}
.mood-gallery-lead img {
  width: 100%;
  height: min(46svh, 520px);
  object-fit: cover;
}
.mood-gallery-lead figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 3px;
  max-width: 520px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(8,7,6,0.58);
  backdrop-filter: blur(14px);
}
.mood-gallery-lead figcaption strong {
  color: var(--lino);
  font-size: 18px;
  line-height: 1.05;
}
.mood-gallery-lead figcaption span {
  color: rgba(255,246,232,0.72);
  font-size: 13px;
  line-height: 1.3;
}
.mood-gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.mood-thumb {
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #111;
  cursor: pointer;
}
.mood-thumb.is-active {
  border-color: rgba(233,186,94,0.5);
  box-shadow: 0 0 0 1px rgba(233,186,94,0.34);
}
.mood-thumb.is-hidden {
  display: none;
}
.mood-thumb img {
  width: 100%;
  height: 128px;
  object-fit: cover;
}
.mood-load-more {
  justify-self: center;
}
.discover-section-compact {
  min-height: auto;
}
.guide-slide-card .card-media-shell img {
  aspect-ratio: 16 / 9.4;
}
.guide-slide-card > a > div {
  padding: 16px;
  gap: 7px;
}
.guide-slide-card h3 {
  font-size: clamp(22px, 2.1vw, 30px);
}
.guide-slide-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 13px;
  line-height: 1.36;
}
.guide-slide-card .card-cta-row {
  margin-top: 2px;
  padding-top: 10px;
}
.home-page .global-media-band,
.home-page .map-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(216,154,43,0.08), transparent 30%),
    linear-gradient(180deg, #11100f, #0d0c0a);
}
.home-page .global-media-band {
  margin-top: -1px;
}
@keyframes heroLineReveal {
  0% { opacity: 0; transform: translateY(18px); }
  60% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}
.booking-policy-note {
  margin: 10px auto 0;
  max-width: 500px;
  color: rgba(255,246,232,0.62);
  font-size: 12px;
  text-align: center;
}
.booking-policy-note a {
  color: var(--dorado);
  font-weight: 900;
}
.legal-page {
  max-width: 920px;
}
.legal-page h2 {
  margin: 28px 0 10px;
  color: var(--lino);
  font-size: clamp(28px, 4vw, 44px);
}
.legal-page p {
  color: rgba(255,246,232,0.76);
}
.sister-business-strip {
  width: min(1220px, calc(100% - 28px));
  margin: clamp(28px, 5vw, 62px) auto;
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 18px;
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  border-radius: 8px;
  border: 1px solid rgba(216,154,43,0.22);
  background:
    radial-gradient(circle at 12% 0%, rgba(216,154,43,0.18), transparent 36%),
    linear-gradient(135deg, rgba(42,32,23,0.96), rgba(13,12,10,0.98));
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}
.sister-business-strip.compact {
  margin-top: 0;
}
.sister-business-copy {
  display: grid;
  gap: 7px;
}
.sister-business-copy span {
  color: var(--dorado);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.sister-business-copy h2 {
  font-size: clamp(32px, 5vw, 58px);
}
.sister-business-copy p {
  max-width: 780px;
  color: rgba(255,246,232,0.72);
}
.sister-business-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.sister-card {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,246,232,0.12);
  background: rgba(255,255,255,0.055);
}
.sister-card h3 {
  font-size: 26px;
}
.sister-card p {
  margin: 8px 0;
  color: rgba(255,246,232,0.7);
  font-size: 13px;
}
.sister-card a {
  color: var(--dorado);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 180;
  transform: translateX(-50%);
  width: min(620px, calc(100% - 24px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--lino);
  border: 1px solid rgba(216,154,43,0.28);
  background:
    radial-gradient(circle at 10% 0%, rgba(216,154,43,0.18), transparent 38%),
    rgba(12,11,10,0.94);
  box-shadow: 0 24px 82px rgba(0,0,0,0.62);
  backdrop-filter: blur(18px);
}
.cookie-consent[hidden] {
  display: none;
}
.modal-open .cookie-consent {
  display: none !important;
}
.cookie-consent strong {
  color: var(--dorado);
  font-size: 11px;
  text-transform: uppercase;
}
.cookie-consent p,
.cookie-preferences {
  color: rgba(255,246,232,0.72);
  font-size: 11px;
}
.cookie-preferences {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.cookie-preferences[hidden] {
  display: none;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}
.cookie-consent-open .bottom-action-bar {
  display: none !important;
}
@media (min-width: 841px) {
  .bottom-action-bar {
    display: none !important;
  }
}
@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: minmax(160px, 240px) auto;
    height: auto;
    min-height: 74px;
  }
  .primary-nav { display: none; }
  .stay-grid, .villa-grid, .experience-grid, .editorial-grid, .segment-grid, .room-grid, .room-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quick-answer-shell,
  .faq-mini-grid {
    grid-template-columns: 1fr;
  }
  .room-match-grid,
  .catalog-room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .conversion-router {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split-feature, .room-detail-grid, .article-layout, .contact-grid, .footer-inner {
    grid-template-columns: 1fr;
  }
  .sister-business-strip,
  .cookie-consent {
    grid-template-columns: 1fr;
  }
  .cookie-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 10px 14px;
  }
  .brand-logo { max-height: 42px; }
  .header-cta { min-height: 40px; padding: 9px 12px; font-size: 11px; }
  .hero { min-height: 76svh; }
  .hero-image { object-position: 58% center; }
  .hero-shade {
    background: linear-gradient(0deg, rgba(8, 8, 7, 0.68), rgba(8, 8, 7, 0.18) 52%, rgba(8, 8, 7, 0.04));
  }
  .hero-content { width: calc(100% - 28px); padding: 96px 0 28px; }
  .home-page .hero-content { margin-left: auto; }
  .hero-logo { width: min(280px, 76vw); }
  .hero h1 { font-size: clamp(34px, 11vw, 44px); }
  .hero p { font-size: 17px; }
  .booking-band { align-items: flex-start; flex-direction: column; }
  .stay-grid, .villa-grid, .experience-grid, .editorial-grid, .segment-grid, .room-grid, .room-grid.compact {
    grid-template-columns: 1fr;
  }
  .quick-answer-shell,
  .faq-mini-grid { grid-template-columns: 1fr; }
  .fact-list, .image-grid { grid-template-columns: 1fr; }
  .room-fact-chip-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .room-fact-chip {
    display: grid;
    grid-template-columns: 28px 72px 1fr;
    align-items: center;
    gap: 0 10px;
    padding: 11px 12px;
  }
  .room-fact-chip .icon {
    margin-bottom: 0;
  }
  .room-fact-chip small,
  .room-fact-chip strong {
    white-space: nowrap;
  }
  .room-fact-chip strong {
    font-size: 14px;
    text-align: right;
  }
  .room-media-stage-section {
    padding: 10px 14px 0;
  }
  .room-detail-hero {
    padding-top: 80px;
  }
  .room-detail-hero-copy {
    width: calc(100% - 28px);
    margin-top: 10px;
    gap: 8px;
  }
  .room-detail-hero-copy h1 {
    font-size: clamp(34px, 12vw, 54px);
  }
  .room-detail-hero-copy p {
    font-size: 16px;
  }
  .room-media-thumbs {
    gap: 6px;
  }
  .room-thumb {
    width: 72px;
    height: 56px;
  }
  .room-media-meta {
    font-size: 11px;
  }
  .image-grid .feature-photo { grid-column: auto; grid-row: auto; }
  .split-feature img { min-height: 300px; }
  .footer-links { grid-template-columns: 1fr; }
  .sister-business-strip {
    width: calc(100% - 22px);
  }
  .sister-business-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .sister-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
  .cookie-consent {
    bottom: max(64px, calc(env(safe-area-inset-bottom) + 56px));
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    padding: 8px 8px 8px;
    gap: 3px;
    border-radius: 16px;
  }
  .cookie-consent strong {
    font-size: 10px;
  }
  .cookie-consent p {
    font-size: 8px;
    line-height: 1.14;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
  .cookie-actions .btn {
    min-height: 30px;
    padding: 5px 7px;
    font-size: 9px;
  }
  .cookie-actions .btn:last-child {
    grid-column: auto;
  }
}

body {
  padding-bottom: 96px;
  background: #08080a;
}
body.home-page {
  scroll-snap-type: y proximity;
}
.btn {
  border: 0;
  cursor: pointer;
  gap: 9px;
}
.btn svg, .chrome-icon svg, .bottom-pill svg, .bottom-lift svg, .map-pin svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-header {
  inset: 14px auto auto 50%;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 28px));
  height: 74px;
  grid-template-columns: 52px 1fr 52px;
  padding: 8px 12px;
  border-radius: 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.brand-link-centered {
  justify-self: center;
  position: relative;
  width: min(460px, 72vw);
  transform: translateY(30px);
  filter:
    drop-shadow(0 0 9px rgba(255, 218, 97, 0.7))
    drop-shadow(0 0 20px rgba(242, 106, 27, 0.38))
    drop-shadow(0 7px 9px rgba(0, 0, 0, 0.5));
}
.brand-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 118px;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
.is-scrolled .brand-link-centered {
  width: min(210px, 40vw);
  transform: translateY(4px);
  filter:
    drop-shadow(0 0 7px rgba(255, 218, 97, 0.5))
    drop-shadow(0 5px 8px rgba(0, 0, 0, 0.46));
}
.is-scrolled .site-header {
  height: 58px;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}
.footer-logo, .map-logo, .panel-logo, .hero-logo { background: transparent; }
.primary-nav { display: none; }
.chrome-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--lino);
  background: rgba(8, 8, 10, 0.58);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}
.chrome-icon:hover { color: var(--dorado); border-color: rgba(216, 154, 43, 0.58); }
.hero {
  min-height: 84svh;
}
.home-page .hero {
  min-height: 100svh;
}
.home-page .hero h1 {
  max-width: 780px;
  font-size: clamp(50px, 6vw, 92px);
  text-wrap: balance;
}
.home-hero-copy {
  padding-top: clamp(160px, 22vh, 218px);
  padding-bottom: clamp(118px, 16vh, 164px);
}
.home-hero-actions {
  justify-content: center;
  margin-top: clamp(24px, 4vw, 36px);
}
.home-hero-actions .btn-ghost {
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}
.intent-bar-section {
  padding: clamp(78px, 7vw, 96px) clamp(14px, 5vw, 70px) clamp(28px, 4vw, 44px);
  background:
    linear-gradient(180deg, #09090a, #12100e 72%, #17120e);
  color: var(--lino);
}
.intent-bar-kicker {
  width: min(1180px, 100%);
  margin: 0 auto 15px;
  color: rgba(247, 240, 227, 0.7);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}
.mobile-intent-chips {
  display: none;
}
.intent-bar {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid rgba(216, 154, 43, 0.28);
  background: rgba(255, 255, 255, 0.018);
}
.intent-route {
  min-height: 152px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: clamp(18px, 2.2vw, 28px);
  background: transparent;
  border-right: 1px solid rgba(216, 154, 43, 0.25);
}
.intent-route:last-child {
  border-right: 0;
}
.intent-route:hover {
  background: rgba(216, 154, 43, 0.06);
}
.intent-route h2 {
  font-size: clamp(24px, 2.5vw, 36px);
}
.intent-route p {
  margin-top: 8px;
  max-width: 220px;
  color: rgba(255,255,255,0.74);
  font-size: 14px;
}
.intent-route .btn {
  width: fit-content;
  min-height: 44px;
  padding-inline: 16px;
}
.home-story-section {
  padding: clamp(42px, 7vw, 82px) clamp(16px, 6vw, 72px);
  background:
    radial-gradient(circle at 18% 8%, rgba(216, 154, 43, 0.14), transparent 34%),
    linear-gradient(180deg, #17120e, #0d0c0a);
  color: var(--ink);
}
.home-story-lead {
  width: min(760px, 100%);
  margin: 0 auto clamp(30px, 4vw, 48px);
  text-align: center;
}
.home-story-lead h2 {
  font-size: clamp(38px, 5vw, 68px);
}
.home-story-lead p {
  width: min(660px, 100%);
  margin: 12px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
}
.home-story-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.16fr 0.92fr;
  gap: clamp(18px, 2.6vw, 30px);
  align-items: start;
}
.hotel-overview-section {
  padding: clamp(34px, 6vw, 64px) clamp(16px, 6vw, 72px) clamp(24px, 5vw, 34px);
  background:
    radial-gradient(circle at 86% 0%, rgba(47,93,70,0.14), transparent 28%),
    linear-gradient(180deg, #0d0c0a, #13110f);
}
.hotel-overview-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}
.hotel-overview-copy {
  display: grid;
  gap: 12px;
}
.hotel-overview-copy h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.97;
}
.hotel-overview-copy p {
  max-width: 720px;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.48;
}
.hotel-overview-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.hotel-overview-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(201,156,60,0.16);
  background: rgba(255,255,255,0.04);
}
.hotel-overview-card strong {
  color: var(--dorado);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.hotel-overview-card span {
  color: rgba(255,255,255,0.74);
  font-size: 14px;
  line-height: 1.38;
}
.hotel-overview-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 26px;
}
.home-story-card {
  display: grid;
  gap: 18px;
}
.home-story-card:nth-child(2) {
  margin-top: clamp(22px, 4vw, 50px);
}
.home-story-card img {
  width: 100%;
  aspect-ratio: 5 / 3.9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(45, 34, 22, 0.16);
}
.home-story-card:nth-child(2) img {
  aspect-ratio: 4 / 3.6;
}
.home-story-card h3 {
  font-size: clamp(24px, 2.5vw, 34px);
}
.home-story-card p {
  margin-top: 7px;
  color: var(--muted);
}
.villa-feature-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(56px, 7vw, 96px) clamp(16px, 6vw, 86px);
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 154, 43, 0.14), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(37, 93, 70, 0.35), transparent 36%),
    linear-gradient(180deg, #0b0b0c, #17120e);
  color: var(--lino);
}
.villa-feature-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 55%;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.48);
}
.villa-feature-copy {
  display: grid;
  gap: 22px;
  max-width: 560px;
}
.villa-feature-copy h2 {
  font-size: clamp(42px, 5.2vw, 74px);
  text-wrap: balance;
}
.villa-feature-copy p {
  color: rgba(255,255,255,0.78);
  font-size: clamp(17px, 2vw, 20px);
}
.villa-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.villa-link-grid a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(216, 154, 43, 0.28);
  color: var(--dorado);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-content {
  padding-top: 150px;
}
.booking-band {
  justify-content: center;
  padding: 20px clamp(18px, 5vw, 70px);
}
.booking-band strong { font-size: clamp(28px, 3.2vw, 42px); }
.booking-band .btn-light {
  background: rgba(255, 246, 232, 0.92);
  color: #17110a;
}
.carousel-section {
  padding: clamp(48px, 7vw, 90px) clamp(14px, 5vw, 70px);
  overflow: hidden;
  position: relative;
}
.carousel-section::before,
.carousel-section::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(18px, 5vw, 84px);
  pointer-events: none;
}
.carousel-section::before {
  left: 0;
  background: linear-gradient(90deg, rgba(13,12,10,0.94), transparent);
}
.carousel-section::after {
  right: 0;
  background: linear-gradient(270deg, rgba(13,12,10,0.94), transparent);
}
.conversion-strip-section {
  padding: clamp(28px, 5vw, 46px) clamp(14px, 5vw, 70px);
  background:
    radial-gradient(circle at 50% -20%, rgba(216, 154, 43, 0.16), transparent 42%),
    linear-gradient(180deg, #08080a, #11100f);
  color: var(--lino);
}
.hero + .conversion-strip-section {
  padding-top: clamp(116px, 14vh, 156px);
}
.home-page .home-hero + .conversion-strip-section {
  padding-top: clamp(28px, 5vw, 46px);
}
.proof-strip {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.proof-item {
  min-height: 86px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(216, 154, 43, 0.28);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.proof-item svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--dorado);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.proof-item strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--dorado);
}
.proof-item span {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  line-height: 1.35;
}
.conversion-router-section {
  scroll-margin-top: 170px;
  padding: clamp(46px, 7vw, 82px) clamp(14px, 5vw, 70px);
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 154, 43, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,254,0.98), rgba(247,224,195,0.82)),
    var(--lino);
}
.conversion-router-shell {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.6fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
}
.conversion-router-lead {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  color: var(--lino);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 154, 43, 0.24), transparent 36%),
    linear-gradient(145deg, rgba(8, 8, 10, 0.96), rgba(32, 28, 21, 0.94));
  box-shadow: 0 24px 60px rgba(10, 8, 6, 0.18);
}
.conversion-router-lead > span,
.expert-review > div > span {
  color: var(--dorado);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.conversion-router-lead h2 {
  font-size: clamp(44px, 6vw, 74px);
}
.conversion-router-lead p {
  max-width: 420px;
  color: rgba(255,255,255,0.76);
}
.conversion-mini-proof {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(216, 154, 43, 0.3);
}
.conversion-mini-proof strong {
  color: var(--dorado);
  font-size: 13px;
  text-transform: uppercase;
}
.conversion-mini-proof span {
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}
.conversion-router {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.conversion-path {
  min-height: 214px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(44, 44, 44, 0.12);
  background: rgba(255, 255, 254, 0.72);
  box-shadow: 0 14px 42px rgba(10, 8, 6, 0.08);
}
.conversion-path > a {
  display: grid;
  gap: 8px;
}
.conversion-path span {
  color: var(--dorado);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.conversion-path h3 {
  font-size: 30px;
}
.conversion-path p {
  color: var(--muted);
  font-size: 14px;
}
.conversion-path small {
  color: var(--selva);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.conversion-path .btn {
  width: 100%;
}
.expert-review-section {
  padding: clamp(30px, 5vw, 54px) clamp(14px, 5vw, 70px);
  background: #11100f;
  color: var(--lino);
}
.expert-review {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}
.expert-review > div,
.expert-review article {
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(216, 154, 43, 0.24);
  background: rgba(255, 255, 255, 0.055);
}
.expert-review h2 {
  margin-top: 8px;
  font-size: clamp(32px, 4vw, 52px);
}
.expert-review strong {
  color: var(--dorado);
  font-size: 13px;
  text-transform: uppercase;
}
.expert-review p {
  margin-top: 10px;
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  line-height: 1.42;
}
.home-page .hero + .carousel-section {
  padding-top: clamp(126px, 15vh, 168px);
}
.carousel-linen {
  background:
    radial-gradient(circle at 14% 0%, rgba(216, 154, 43, 0.16), transparent 34%),
    linear-gradient(180deg, #1b140f, #120f0c);
  color: var(--ink);
}
.carousel-dark {
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 154, 43, 0.15), transparent 36%),
    linear-gradient(135deg, #08080a, #171615 60%, #0b0b0b);
  color: var(--lino);
}
.carousel-head {
  width: min(1220px, 100%);
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}
.carousel-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: rgba(216,154,43,0.9);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.carousel-head h2 {
  font-size: clamp(34px, 5vw, 68px);
}
.carousel-head p {
  max-width: 640px;
  margin-top: 8px;
  color: var(--muted);
}
.carousel-dark .carousel-head p { color: rgba(255,255,255,0.72); }
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.view-all {
  font-size: 12px;
  font-weight: 900;
  color: var(--dorado);
  text-transform: uppercase;
}
.carousel-arrow {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid currentColor;
  color: inherit;
  background: rgba(255,246,232,0.06);
  backdrop-filter: blur(12px);
  cursor: pointer;
}
.carousel-arrow:hover {
  color: #17110a;
  background: var(--dorado);
  border-color: var(--dorado);
}
.carousel-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.carousel-track {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 8px;
  padding: 8px 4px 22px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * {
  flex: 0 0 clamp(280px, 29vw, 380px);
  scroll-snap-align: center;
}
.carousel-compact .carousel-track > * {
  flex-basis: clamp(220px, 22vw, 300px);
}
.carousel-progress {
  width: min(420px, 72vw);
  height: 3px;
  margin: 10px auto 0;
  background: rgba(216, 154, 43, 0.2);
  border-radius: 999px;
  overflow: hidden;
}
.carousel-progress span {
  display: block;
  width: 10%;
  height: 100%;
  background: var(--dorado);
  transition: width 220ms ease;
  box-shadow: 0 0 18px rgba(216,154,43,0.54);
}
.photo-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}
.photo-card img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
}
.compare-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(216, 154, 43, 0.2);
  background:
    linear-gradient(145deg, rgba(42, 32, 23, 0.96), rgba(17, 14, 11, 0.99));
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.34);
}
.compare-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}
.compare-card img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
}
.compare-card a > div {
  display: grid;
  gap: 7px;
  padding: 15px;
}
.compare-card .card-eyebrow {
  color: var(--dorado);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.compare-card h3 {
  font-size: clamp(24px, 2.5vw, 34px);
  color: var(--volcan);
}
.compare-card p {
  color: var(--muted);
  font-size: 14px;
}
.bottom-action-bar {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 120;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 24px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  padding: 9px;
  border-radius: 8px;
  background: rgba(8, 8, 10, 0.78);
  border: 1px solid rgba(216, 154, 43, 0.3);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px);
  visibility: visible;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.bottom-back {
  background: rgba(255,255,255,0.08);
  color: var(--lino);
}
body:not(.is-scrolled) .bottom-action-bar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 18px);
}
.modal-open .bottom-action-bar,
.bottom-actions-muted .bottom-action-bar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 18px);
}
.modal-open .bottom-action-bar {
  display: none;
}
.bottom-pill {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-weight: 900;
}
.bottom-whatsapp {
  color: var(--lino);
  background: linear-gradient(135deg, #2f5d46, #1e6a4a);
}
.bottom-reserve {
  border: 0;
  color: #17110a;
  background: linear-gradient(135deg, var(--dorado), #f0b44b);
  cursor: pointer;
}
.bottom-lift {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--lino);
  background: rgba(255,255,255,0.08);
  cursor: pointer;
}
.room-conversion-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 6vw, 72px);
  background: linear-gradient(135deg, #17120e, #0b0b0c);
  color: var(--lino);
  border-block: 1px solid rgba(216, 154, 43, 0.24);
}
.room-conversion-strip > div:first-child {
  display: grid;
  gap: 4px;
}
.room-conversion-strip span {
  color: var(--dorado);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.room-conversion-strip strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.95;
}
.room-conversion-strip p {
  color: rgba(255,255,255,0.74);
}
.room-conversion-strip .hero-actions {
  margin-top: 0;
  flex: 0 0 auto;
}
.overlay-panel[aria-hidden="true"] { display: none; }
.overlay-panel[aria-hidden="false"] { display: block; }
.panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,0.68);
  backdrop-filter: blur(10px);
}
.floating-panel {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 60;
  transform: translate(-50%, -50%);
  width: min(620px, calc(100% - 28px));
  max-height: min(760px, calc(100svh - 34px));
  overflow: auto;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 8px;
  color: var(--lino);
  background:
    radial-gradient(circle at 50% 0%, rgba(216,154,43,0.22), transparent 34%),
    linear-gradient(145deg, #10100f, #090909);
  border: 1px solid rgba(216, 154, 43, 0.36);
  box-shadow: 0 30px 90px rgba(0,0,0,0.65);
}
.panel-close {
  position: absolute;
  top: 14px;
  right: 14px;
}
.panel-logo {
  width: min(250px, 70%);
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 14px rgba(242, 106, 27, 0.36));
}
.booking-modal .panel-logo {
  width: min(210px, 62%);
  margin-bottom: 10px;
}
.booking-modal h2, .search-drawer h2, .menu-drawer h2 {
  text-align: center;
  font-size: clamp(32px, 4.4vw, 52px);
}
.booking-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.booking-context {
  max-width: 460px;
  margin: 8px auto 0;
  text-align: center;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}
.booking-intent-summary {
  display: grid;
  gap: 2px;
  width: min(420px, 100%);
  margin: 10px auto 0;
  padding: 10px 12px;
  border-radius: 8px;
  text-align: center;
  background: rgba(216, 154, 43, 0.12);
  border: 1px solid rgba(216, 154, 43, 0.22);
}
.booking-intent-summary strong {
  color: var(--oro);
  font-size: 12px;
  text-transform: uppercase;
}
.booking-intent-summary span {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
}
.booking-date-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.booking-size-note {
  margin: -2px 0 2px;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  line-height: 1.5;
}
.booking-submit-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
}
.booking-direct-root {
  min-width: 0;
}
.child-age-row[hidden] {
  display: none;
}
.range-calendar {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(216, 154, 43, 0.2);
  background:
    radial-gradient(circle at 16% 0%, rgba(216,154,43,0.12), transparent 30%),
    rgba(255,255,255,0.045);
}
.range-calendar-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255,246,232,0.76);
  font-size: 12px;
}
.range-calendar-head strong {
  color: var(--oro);
  text-transform: uppercase;
}
.range-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.range-month-title {
  margin-bottom: 6px;
  color: var(--lino);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.range-weekdays,
.range-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}
.range-weekdays span {
  color: rgba(255,246,232,0.52);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}
.range-day {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 6px;
  border: 1px solid rgba(255,246,232,0.08);
  color: rgba(255,246,232,0.86);
  background: rgba(255,255,255,0.04);
  font: inherit;
  cursor: pointer;
}
.range-day strong {
  font-size: 12px;
}
.range-day span {
  display: none;
}
.range-day.is-in-range {
  background: rgba(216,154,43,0.18);
}
.range-day.is-selected {
  color: #17110a;
  background: linear-gradient(135deg, var(--dorado), #f0b44b);
  border-color: rgba(216,154,43,0.7);
}
.range-day.is-selected span {
  display: block;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
}
.range-day.is-selected strong {
  font-size: 11px;
}
.range-day:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}
.range-day.is-empty {
  min-height: 34px;
}
.booking-form label {
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.booking-form input, .booking-form select, .search-box input {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--lino);
  background: rgba(255,255,255,0.06);
  font: inherit;
}
.booking-form fieldset {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  border: 0;
}
.booking-form legend {
  grid-column: 1 / -1;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.booking-form fieldset label {
  display: block;
}
.booking-form fieldset input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.booking-form fieldset span {
  min-height: 54px;
  display: grid;
  place-items: center;
  gap: 4px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--lino);
  background: rgba(255,255,255,0.05);
  text-transform: none;
}
.booking-form fieldset span svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.booking-form fieldset input:checked + span {
  color: #17110a;
  background: linear-gradient(135deg, var(--dorado), #f0b44b);
}
.booking-submit {
  width: 100%;
  margin-top: 8px;
}
.booking-trust {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin: 16px auto 0;
  color: rgba(255,255,255,0.74);
  font-size: 13px;
}
.booking-trust span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.booking-trust svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--dorado);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.booking-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.booking-decision-grid div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(216, 154, 43, 0.2);
  background: rgba(255,255,255,0.055);
}
.booking-decision-grid strong {
  color: var(--dorado);
  font-size: 12px;
  text-transform: uppercase;
}
.booking-decision-grid span {
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  line-height: 1.35;
}
.menu-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.menu-groups div {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(201,156,60,0.12);
  background: rgba(255,255,255,0.035);
}
.menu-groups h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  font-size: 22px;
}
.menu-groups h2 span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(216,154,43,0.14);
  color: var(--dorado);
}
.menu-groups a, .search-result {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.82);
  font-weight: 800;
}
.panel-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.search-box {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.search-results {
  display: grid;
  margin-top: 18px;
}
.map-section {
  padding: clamp(42px, 7vw, 82px) clamp(14px, 5vw, 70px);
  background: #08080a;
  color: var(--lino);
}
.map-shell {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  text-align: center;
}
.map-logo {
  width: min(300px, 80%);
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 14px rgba(242,106,27,0.36));
}
.map-copy h2 {
  font-size: clamp(38px, 6vw, 76px);
}
.map-copy p {
  max-width: 450px;
  margin: 14px auto 0;
  color: rgba(255,255,255,0.74);
}
.map-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.location-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.location-fact {
  display: grid;
  gap: 5px;
  min-height: 86px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(44,44,44,0.12);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 12px 30px rgba(44,44,44,0.08);
}
.location-fact .icon {
  width: 19px;
  height: 19px;
  color: var(--dorado);
}
.location-fact strong {
  font-size: 13px;
  line-height: 1.25;
}
.location-fact span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.map-preview-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(216,154,43,0.32);
  background:
    radial-gradient(circle at 18% 0%, rgba(216,154,43,0.16), transparent 34%),
    linear-gradient(145deg, rgba(46,35,24,0.98), rgba(13,12,10,0.995));
  box-shadow: var(--shadow);
}
.map-preview-media {
  position: relative;
  min-height: 280px;
}
.map-preview-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.map-preview-copy {
  display: grid;
  gap: 10px;
  padding: 20px;
  color: var(--lino);
}
.map-preview-copy strong {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.02;
}
.map-preview-copy p {
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.45;
}
.map-preview-facts {
  margin-top: 2px;
}
.global-media-band {
  padding: clamp(70px, 8vw, 116px) clamp(18px, 5vw, 70px);
  color: var(--lino);
  background:
    radial-gradient(circle at 15% 10%, rgba(216,154,43,0.18), transparent 28%),
    linear-gradient(135deg, #0a0a09 0%, #15110d 55%, #22170f 100%);
}
.global-media-inner {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.35fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}
.global-media-copy {
  display: grid;
  gap: 12px;
}
.global-media-copy h2 {
  font-size: clamp(38px, 5.4vw, 78px);
  max-width: 640px;
}
.global-media-copy p {
  color: rgba(247,240,227,0.78);
  max-width: 520px;
}
.global-media-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: clamp(150px, 17vw, 230px);
  gap: 10px;
}
.global-media-tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #111;
  box-shadow: 0 18px 44px rgba(0,0,0,0.24);
}
.global-media-tile:nth-child(1) { grid-row: span 2; }
.global-media-tile:nth-child(4) { grid-column: span 2; }
.global-media-tile picture,
.global-media-tile img {
  height: 100%;
}
.global-media-tile img {
  object-fit: cover;
  filter: saturate(1.03) contrast(1.03);
  transform: scale(1.01);
}
.global-media-tile:hover img {
  transform: scale(1.055);
  transition: transform 700ms ease;
}
.editorial-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(216,154,43,0.32);
  box-shadow: var(--shadow);
}
.map-photo, .map-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-photo img {
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02) brightness(0.72);
}
.editorial-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8,8,10,0.56), rgba(8,8,10,0.08));
}
.map-pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--lino);
  background: rgba(8,8,10,0.72);
  border: 1px solid rgba(216,154,43,0.42);
  font-size: 12px;
  font-weight: 900;
}
.map-pin-main { left: 45%; top: 47%; color: var(--dorado); }
.map-pin-playa { left: 12%; bottom: 18%; }
.map-pin-surf { left: 22%; top: 28%; }
.map-pin-food { right: 17%; top: 34%; }
.map-pin-wellness { right: 12%; bottom: 22%; }
.site-footer {
  padding-bottom: 120px;
  text-align: center;
}
.footer-inner {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.footer-links {
  width: min(560px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.room-narrative {
  display: grid;
  gap: 14px;
}
.room-narrative p {
  color: var(--muted);
  font-size: 18px;
}
.room-story-grid .section-header {
  text-align: left;
  margin-left: 0;
}
.room-story-grid .section-header p {
  margin-left: 0;
}
.source-kicker {
  color: var(--dorado);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lead-copy {
  color: var(--volcan);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.22;
  font-weight: 700;
}
.compact-signal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-top: 22px;
}
.toro-amenity-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.toro-amenity-list div {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.toro-amenity-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.toro-amenity-list strong {
  font-size: 15px;
}
.toro-amenity-list span,
.source-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide,
  .hero-scroll-cue {
    animation: none;
  }
  .hero-slide {
    opacity: 0;
    transform: none;
  }
  .hero-slide:first-child {
    opacity: 1;
  }
  .global-media-tile:hover img {
    transform: scale(1.01);
  }
}
@media (max-width: 840px) {
  body { padding-bottom: 112px; }
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 58px;
    min-height: 0;
    overflow: visible;
    grid-template-columns: 46px 1fr 46px;
    padding: 6px 9px;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .brand-link-centered {
    width: min(184px, 48vw);
    height: 82px;
    transform: translateY(5px);
    max-height: 82px;
  }
  .brand-logo {
    display: block;
    max-height: 82px;
  }
  .is-scrolled .brand-link-centered {
    width: min(82px, 22vw);
    height: 38px;
    max-height: 38px;
    transform: translateY(-2px);
    overflow: visible;
  }
  .is-scrolled .brand-logo {
    max-height: 38px;
  }
  .is-scrolled .site-header {
    height: 48px;
    overflow: hidden;
    background: rgba(18, 17, 15, 0.56);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
  }
  .chrome-icon {
    width: 42px;
    height: 42px;
    background: rgba(10, 10, 10, 0.52);
  }
  .hero { min-height: 72svh; }
  .home-page .hero { min-height: 88svh; }
  body:not(.home-page) .hero {
    min-height: 66svh;
  }
  body:not(.home-page) .hero-content {
    width: min(344px, calc(100% - 24px));
    padding: 92px 0 74px;
  }
  body:not(.home-page) .hero h1 {
    max-width: min(332px, calc(100vw - 28px));
    font-size: clamp(34px, 9.3vw, 42px);
    line-height: 0.96;
    overflow-wrap: normal;
  }
  body:not(.home-page) .hero p,
  body:not(.home-page) .hero-lede {
    max-width: 332px;
    font-size: 14px;
    line-height: 1.38;
    margin-top: 10px;
  }
  body:not(.home-page) .hero-actions {
    display: grid;
    width: min(332px, 100%);
    gap: 9px;
  }
  body:not(.home-page) .hero-actions .btn {
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
    font-size: 11px;
  }
  .home-hero .hero-image {
    object-position: 52% 48%;
  }
  .hero-content {
    padding: 110px 0 30px;
  }
  .hero-meta-strip {
    grid-template-columns: 1fr;
    width: min(310px, 100%);
    gap: 8px;
    margin-top: 16px;
  }
  .hero-meta-item {
    min-height: 54px;
    padding: 10px 12px;
  }
  .hero-meta-item span {
    font-size: 9px;
  }
  .hero-meta-item strong {
    font-size: 13px;
  }
  .hero-scroll-cue {
    display: none;
  }
  .home-hero-copy {
    align-content: end;
    padding: 108px 0 96px;
  }
  .hero-kicker {
    min-height: 28px;
    padding: 7px 10px;
    font-size: 9px;
  }
  .home-page .hero h1 {
    max-width: 332px;
    margin-top: 12px;
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 0.96;
    text-wrap: balance;
  }
  .hero-lede {
    max-width: 330px;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.38;
  }
  .home-hero-actions {
    width: min(318px, 100%);
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    margin-top: 18px;
    gap: 9px;
  }
  .home-hero-actions .btn {
    width: 100%;
    min-height: 50px;
    padding: 9px 13px;
    font-size: 12px;
  }
  .hero-direct-note {
    max-width: 320px;
    margin-top: 12px;
    gap: 6px;
  }
  .hero-direct-note span {
    min-height: 28px;
    padding: 6px 9px;
    font-size: 9px;
  }
  .intent-bar-section {
    padding: 42px 0 26px;
    overflow: hidden;
    scroll-margin-top: 76px;
  }
  .intent-bar-kicker {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .mobile-intent-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 16px 14px;
    scrollbar-width: none;
  }
  .mobile-intent-chips::-webkit-scrollbar { display: none; }
  .mobile-intent-chips a,
  .mobile-intent-chips button {
    flex: 0 0 auto;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--lino);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(216, 154, 43, 0.28);
    font-size: 12px;
    font-weight: 900;
  }
  .mobile-intent-chips svg {
    width: 16px;
    height: 16px;
  }
  .intent-bar {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 0 18px 8px;
    scrollbar-width: none;
    border-radius: 0;
    border: 0;
  }
  .intent-bar::-webkit-scrollbar { display: none; }
  .intent-route {
    flex: 0 0 min(76vw, 286px);
    min-height: 150px;
    scroll-snap-align: center;
    border: 1px solid rgba(216, 154, 43, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
  }
  .intent-route .btn {
    width: fit-content;
    min-height: 40px;
  }
  .home-story-section {
    padding: 36px 16px 54px;
  }
  .room-rail-section,
  .discover-section {
    padding: 22px 12px 40px;
  }
  .discover-section-compact {
    min-height: auto;
    padding: 28px 12px 30px;
  }
  .content-section,
  .linen-section,
  .dark-section,
  .cta-section {
    padding: 46px 16px 86px;
  }
  .hero + .content-section,
  .hero + .linen-section,
  .hero + .dark-section,
  .hero + .carousel-section {
    padding-top: 50px;
  }
  .section-header h2,
  .cta-section h2,
  .home-story-lead h2,
  .villa-feature-copy h2,
  .carousel-head h2,
  .map-copy h2 {
    font-size: clamp(32px, 11vw, 46px);
    line-height: 1;
    text-wrap: balance;
  }
  .section-header p,
  .cta-section p,
  .home-story-lead p,
  .villa-feature-copy p,
  .carousel-head p,
  .map-copy p {
    font-size: 16px;
    line-height: 1.45;
  }
  .location-facts {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .location-fact {
    min-height: 70px;
  }
  .map-preview-media,
  .map-preview-media img {
    min-height: 220px;
  }
  .global-media-band {
    min-height: auto;
    padding: 34px 12px 34px;
  }
  .global-media-copy h2 {
    font-size: clamp(30px, 9.8vw, 42px);
  }
  .global-media-copy p {
    font-size: 14px;
    line-height: 1.38;
  }
  .mood-gallery {
    gap: 8px;
    margin-top: 12px;
  }
  .mood-gallery-lead img {
    height: 32svh;
    min-height: 220px;
  }
  .mood-gallery-lead figcaption {
    left: 9px;
    right: 9px;
    bottom: 9px;
    padding: 10px 11px;
    border-radius: 14px;
  }
  .mood-gallery-lead figcaption strong {
    font-size: 16px;
  }
  .mood-gallery-lead figcaption span {
    font-size: 12px;
  }
  .mood-filter-row {
    gap: 6px;
    justify-content: flex-start;
  }
  .mood-gallery-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
  .mood-thumb img {
    height: 92px;
  }
  .global-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
    gap: 8px;
  }
  .global-media-tile:nth-child(1),
  .global-media-tile:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: span 1;
  }
  .home-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
  }
  .home-story-grid::-webkit-scrollbar { display: none; }
  .home-story-card {
    flex: none;
  }
  .home-story-card:nth-child(2) {
    margin-top: 0;
  }
  .home-story-card img {
    aspect-ratio: 16 / 11;
  }
  .home-story-card:nth-child(2) img {
    aspect-ratio: 16 / 11;
  }
  .villa-feature-section {
    grid-template-columns: 1fr;
    padding: 42px 16px 64px;
  }
  .villa-feature-media img {
    aspect-ratio: 4 / 3.15;
  }
  .villa-feature-copy {
    max-width: none;
  }
  .villa-link-grid {
    grid-template-columns: 1fr;
  }
  .booking-band {
    align-items: center;
  }
  .carousel-head {
    align-items: start;
    flex-direction: column;
  }
  .carousel-controls {
    width: 100%;
    justify-content: center;
  }
  .filter-chip-row,
  .room-number-nav {
    margin-top: 10px;
    gap: 6px;
  }
  .filter-chip-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(94px, 1fr));
    align-items: stretch;
  }
  .villa-link-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .filter-chip,
  .room-number-btn {
    width: 100%;
    min-height: 34px;
    justify-content: center;
    padding: 6px 8px;
    font-size: 9px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }
  .room-number-nav {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .room-rail-head .carousel-kicker {
    font-size: 11px;
  }
  .room-rail-head h2 {
    font-size: clamp(26px, 9.3vw, 38px);
    line-height: 0.94;
  }
  .room-rail-head p {
    font-size: 13px;
    line-height: 1.28;
  }
  .room-match-grid,
  .catalog-room-grid,
  .rooms-villa-grid,
  .booking-stepper-grid,
  .booking-room-split-grid,
  .room-intro-grid,
  .room-detail-layout,
  .rooms-tere-shell,
  .room-location-teaser .rooms-tere-shell {
    grid-template-columns: 1fr;
  }
  .room-nav-helper {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }
  .room-nav-helper .section-actions,
  .rooms-tere-shell .section-actions {
    width: 100%;
    margin-top: 0;
  }
  .room-nav-helper .btn,
  .rooms-tere-shell .btn,
  .room-summary-actions .btn {
    width: 100%;
  }
  .tere-inline-form,
  .room-summary-actions {
    grid-template-columns: 1fr;
  }
  .room-grid-item .room-card,
  .match-card,
  .rooms-villa-grid .stay-card {
    min-height: auto;
  }
  .room-card-actions {
    grid-template-columns: 1fr;
  }
  .room-card-actions .btn {
    width: 100%;
  }
  .room-detail-shell {
    padding: 86px 12px 22px;
  }
  .room-summary-card {
    position: static;
    padding: 18px;
  }
  .room-summary-card .room-fact-chip-row {
    grid-template-columns: 1fr;
  }
  .room-summary-card h1 {
    font-size: clamp(30px, 9vw, 42px);
  }
  .room-summary-best-for,
  .room-location-teaser p,
  .rooms-tere-shell p,
  .match-card-copy p {
    font-size: 14px;
  }
  .room-media-actions {
    right: 10px;
    top: 10px;
    padding: 6px 10px;
  }
  .room-media-actions strong {
    font-size: 10px;
  }
  .room-media-actions span {
    width: 30px;
    height: 30px;
  }
  .room-media-topline {
    left: 10px;
    top: 10px;
    font-size: 10px;
    padding: 6px 8px;
  }
  .room-media-lead-image {
    aspect-ratio: 4 / 3.3;
  }
  .room-media-thumbs {
    gap: 6px;
  }
  .room-thumb {
    width: 68px;
    height: 54px;
  }
  .booking-date-inline {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .booking-stepper-grid {
    gap: 8px;
  }
  .booking-stepper-control {
    min-height: 44px;
  }
  .stepper-btn,
  .range-month-btn {
    min-height: 32px;
  }
  .range-month-nav {
    width: 100%;
    justify-content: space-between;
  }
  .range-month-btn {
    min-width: 82px;
  }
  .booking-room-split-shell {
    padding: 12px;
  }
  .booking-room-split-card {
    padding: 10px;
  }
  .room-number-track,
  .discover-track {
    width: 100%;
    margin-top: 8px;
    gap: 8px;
    scroll-padding-inline: 0;
  }
  .room-rail-item,
  .discover-item {
    flex-basis: calc(100vw - 24px);
    max-width: 390px;
  }
  .discover-track {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    padding-bottom: 0;
  }
  .discover-item,
  .discover-section-compact .discover-item {
    flex-basis: auto;
    max-width: none;
  }
  .quick-answer-card,
  .faq-mini-card {
    padding: 16px 14px;
    gap: 6px;
  }
  .quick-answer-card h2,
  .faq-mini-card h3 {
    font-size: clamp(22px, 6.3vw, 28px);
  }
  .quick-answer-card p,
  .faq-mini-card p {
    font-size: 13px;
    line-height: 1.42;
  }
  .discover-section-compact .carousel-head p {
    font-size: 13px;
    line-height: 1.34;
  }
  .guide-slide-card .card-media-shell img {
    aspect-ratio: 16 / 8.8;
  }
  .guide-slide-card > a > div {
    padding: 13px;
    gap: 5px;
  }
  .guide-slide-card h3 {
    font-size: clamp(20px, 6vw, 26px);
  }
  .guide-slide-card .card-eyebrow,
  .guide-slide-card .card-media-badge {
    font-size: 9px;
  }
  .guide-slide-card p {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
  .room-rail-item .room-card {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  .room-rail-item .room-media-shell img {
    aspect-ratio: 4 / 2.95;
    max-height: 210px;
    object-fit: cover;
  }
  .hero + .conversion-strip-section {
    padding-top: 118px;
  }
  .home-page .home-hero + .conversion-strip-section {
    padding-top: 30px;
  }
  .proof-strip {
    grid-template-columns: 1fr;
  }
  .proof-item {
    min-height: 72px;
  }
  .conversion-router-section {
    scroll-margin-top: 210px;
    padding: 38px 0 44px;
    overflow: hidden;
  }
  .conversion-router-shell {
    display: block;
    width: 100%;
  }
  .conversion-router-lead {
    width: calc(100% - 32px);
    margin: 0 auto 16px;
    padding: 24px;
  }
  .conversion-router-lead h2 {
    font-size: 44px;
  }
  .conversion-router {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 0 16px 8px;
    scrollbar-width: none;
  }
  .conversion-router::-webkit-scrollbar { display: none; }
  .conversion-path {
    flex: 0 0 min(78vw, 310px);
    min-height: 206px;
    scroll-snap-align: center;
  }
  .conversion-path h3 {
    font-size: 27px;
  }
  .expert-review-section {
    padding: 34px 16px;
  }
  .expert-review {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .expert-review::-webkit-scrollbar { display: none; }
  .expert-review > div,
  .expert-review article {
    flex: 0 0 min(78vw, 310px);
    scroll-snap-align: center;
  }
  .home-page .hero + .carousel-section { padding-top: 154px; }
  .carousel-track > * {
    flex-basis: min(82vw, 330px);
  }
  .room-card-copy {
    display: grid;
    padding: 11px 12px 12px;
    gap: 4px;
    flex: 1;
  }
  .room-card h3 {
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1;
  }
  .room-card-facts {
    gap: 5px;
  }
  .room-card-facts small {
    max-width: 100%;
    font-size: 10px;
  }
  .room-card em {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 12px;
    line-height: 1.28;
  }
  .carousel-compact .carousel-track > * {
    flex-basis: min(74vw, 280px);
  }
  .bottom-action-bar {
    bottom: max(8px, env(safe-area-inset-bottom));
    width: calc(100% - 28px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    border-radius: 8px;
  }
  .bottom-pill {
    min-height: 42px;
    gap: 7px;
    font-size: 12px;
    padding: 8px 10px;
  }
  .bottom-pill span { font-size: 13px; line-height: 1; }
  .bottom-pill svg { width: 18px; height: 18px; }
  .bottom-lift {
    width: 36px;
    height: 36px;
  }
  .bottom-back,
  .bottom-home {
    width: 36px;
    height: 36px;
    justify-self: center;
  }
  .room-conversion-strip {
    align-items: stretch;
    flex-direction: column;
    padding: 22px 16px 26px;
    text-align: center;
  }
  .room-conversion-strip .hero-actions {
    width: 100%;
  }
  .room-conversion-strip .btn {
    width: 100%;
  }
  .booking-date-grid,
  .menu-groups,
  .map-shell {
    grid-template-columns: 1fr;
  }
  .menu-drawer {
    width: min(100vw - 18px, 430px);
    max-height: calc(100svh - 18px);
    padding: 16px 14px;
    overflow-y: auto;
  }
  .menu-drawer .panel-logo {
    width: min(142px, 42%);
    max-width: 142px;
    margin-bottom: 4px;
  }
  .menu-intro {
    max-width: 310px;
    font-size: 11px;
    line-height: 1.26;
  }
  .menu-groups {
    gap: 7px;
    margin-top: 9px;
  }
  .menu-groups div {
    gap: 4px;
    padding: 9px 10px;
    border-radius: 14px;
  }
  .menu-groups h2 {
    font-size: 18px;
    line-height: 1;
  }
  .menu-groups a {
    padding: 5px 0;
    font-size: 12px;
    line-height: 1.15;
  }
  .panel-actions {
    margin-top: 12px;
    gap: 8px;
  }
  .panel-actions .btn {
    min-height: 40px;
    padding: 9px 12px;
  }
  .booking-form fieldset {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .booking-form fieldset span {
    min-height: 44px;
    grid-auto-flow: column;
    justify-content: center;
  }
  .floating-panel {
    width: calc(100% - 20px);
    top: 10px;
    bottom: 10px;
    transform: translateX(-50%);
    max-height: none;
    padding: 14px 16px 16px;
    overscroll-behavior: contain;
  }
  .menu-panel .menu-drawer {
    width: calc(100% - 16px);
    top: 8px;
    bottom: 8px;
    padding: 12px;
    border-radius: 24px;
  }
  .menu-hero {
    gap: 2px;
  }
  .menu-drawer .panel-logo {
    width: min(112px, 34%);
    max-width: 112px;
    margin-bottom: 2px;
  }
  .menu-action-cards {
    gap: 8px;
    margin-top: 10px;
  }
  .menu-action-card {
    min-height: 62px;
    grid-template-columns: 32px 1fr;
    padding: 10px;
    border-radius: 16px;
  }
  .menu-action-card span {
    width: 32px;
    height: 32px;
  }
  .menu-action-card strong {
    font-size: 13px;
  }
  .menu-action-card small {
    font-size: 10px;
  }
  .menu-route-block {
    margin-top: 8px;
    padding: 9px;
    gap: 6px;
    border-radius: 15px;
  }
  .menu-chip-scroll a {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 11px;
  }
  .menu-room-scroll a {
    min-width: 34px;
  }
  .menu-legal-row {
    margin-top: 8px;
    gap: 8px;
  }
  .booking-modal .panel-logo {
    width: min(118px, 38%);
    margin-bottom: 0;
  }
  .booking-modal h2 {
    font-size: clamp(26px, 7.8vw, 32px);
    line-height: 0.96;
  }
  .booking-context {
    max-width: 300px;
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.28;
  }
  .booking-intent-summary {
    margin-top: 7px;
    padding: 8px 10px;
  }
  .booking-intent-summary span {
    font-size: 11px;
  }
  .booking-form {
    gap: 7px;
    margin-top: 8px;
  }
  .booking-date-grid {
    gap: 7px;
  }
  .range-calendar {
    padding: 9px;
    gap: 8px;
  }
  .range-calendar-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
  .range-months {
    grid-template-columns: 1fr;
  }
  .range-months .range-month:nth-child(2) {
    display: none;
  }
  .range-day {
    min-height: 32px;
  }
  .booking-form label {
    gap: 4px;
    font-size: 11px;
  }
  .booking-form input,
  .booking-form select {
    min-height: 40px;
    border-radius: 7px;
  }
  .booking-form fieldset { gap: 7px; }
  .booking-form fieldset span {
    min-height: 40px;
    font-size: 12px;
  }
  .booking-submit-row { grid-template-columns: 1fr; gap: 7px; }
  .booking-submit,
  .booking-direct-root { min-height: 42px; margin-top: 2px; }
  .booking-trust {
    margin-top: 7px;
    gap: 6px;
    font-size: 11px;
  }
  .booking-trust span:nth-child(2) {
    display: none;
  }
  .booking-decision-grid {
    display: none;
  }
  .editorial-map {
    min-height: 330px;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
  .home-hero::after {
    bottom: -74px;
    height: 150px;
  }
  .home-hero-copy.home-hero-vision-copy {
    width: min(352px, calc(100% - 28px));
    padding: 96px 0 106px;
    gap: 10px;
  }
  .home-page .hero-manifesto {
    font-size: clamp(42px, 12.2vw, 60px);
    line-height: 0.92;
  }
  .hero-logo-halo {
    width: min(110px, 32vw);
  }
  .hero-logo-halo .hero-logo {
    transform: translateX(-5px);
  }
  .hero-strapline {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.35;
  }
  .vision-hero-actions {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .btn-hero-wood {
    min-height: 56px;
  }
  .hero-orbit-icons span {
    width: 34px;
    height: 34px;
  }
  .home-amenity-section {
    margin-top: -78px;
    padding: 0 12px 24px;
  }
  .home-amenity-shell {
    padding: 12px 10px 12px;
    border-radius: 24px;
  }
  .home-amenity-intro {
    margin-bottom: 10px;
    gap: 6px;
  }
  .home-amenity-intro h2 {
    font-size: clamp(24px, 7vw, 32px);
  }
  .home-amenity-intro p {
    font-size: 12px;
    line-height: 1.35;
  }
  .home-amenity-medallions {
    gap: 7px;
    padding: 2px 2px 8px;
  }
  .amenity-medallion {
    width: 40px;
    height: 40px;
    border-radius: 999px;
  }
  .amenity-medallion-icon { width: 17px; height: 17px; }
  .home-amenity-stage {
    min-height: auto;
  }
  .amenity-stage-card {
    position: relative;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .amenity-stage-card:not(.is-active) {
    display: none;
  }
  .amenity-stage-media img {
    min-height: 168px;
    max-height: 208px;
    object-fit: cover;
  }
  .amenity-stage-copy {
    padding: 13px 14px;
    border-radius: 20px;
  }
  .amenity-stage-copy h3 {
    font-size: clamp(23px, 7vw, 31px);
  }
  .amenity-stage-copy p {
    font-size: 13px;
    line-height: 1.38;
  }
  .tere-section {
    padding: 0 12px 24px;
  }
  .tere-shell {
    padding: 16px 14px;
    border-radius: 28px;
  }
  .tere-copy h2 {
    font-size: clamp(30px, 9vw, 40px);
  }
  .tere-stage {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .tere-stage-media {
    min-height: 220px;
  }
  .tere-question-grid {
    grid-template-columns: 1fr;
  }
  .tere-question-card {
    min-height: auto;
    padding: 16px;
    border-radius: 22px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: left;
    gap: 10px;
  }
  .footer-kicker {
    font-size: 11px;
  }
  .footer-logo {
    max-width: 148px;
    margin-bottom: 2px;
  }
  .footer-lead h2 {
    max-width: 320px;
    font-size: clamp(24px, 7.4vw, 34px);
    line-height: 0.96;
  }
  .footer-lead p {
    max-width: 320px;
    font-size: 12px;
    line-height: 1.32;
  }
  .site-footer {
    min-height: auto;
    padding: 26px 14px 84px;
  }
  .footer-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .footer-cta-row .btn:last-child {
    display: none;
  }
  .footer-utility-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .footer-utility-card {
    padding: 9px 10px;
    border-radius: 14px;
    grid-template-columns: 28px 1fr;
    gap: 1px 8px;
  }
  .footer-utility-card .icon {
    width: 28px;
    height: 28px;
  }
  .footer-utility-card strong {
    font-size: 11px;
  }
  .footer-utility-card small {
    font-size: 10px;
    line-height: 1.2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .footer-column {
    padding: 10px 11px;
    gap: 5px;
    border-radius: 16px;
  }
  .footer-contact {
    grid-column: 1 / -1;
  }
  .footer-column a,
  .footer-column p {
    font-size: 12px;
    line-height: 1.28;
  }
  .footer-social-row,
  .panel-social-row {
    gap: 6px;
  }
  .footer-social-row a,
  .panel-social-row a {
    width: 34px;
    height: 34px;
  }
  .menu-contact-row {
    margin-top: 8px;
    gap: 8px;
  }
  .footer-closure {
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 4px;
    column-gap: 8px;
    margin-top: 2px;
    padding-top: 8px;
  }
  .footer-closure strong {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .footer-closure p {
    font-size: 11px;
    line-height: 1.2;
    margin: 0;
  }
  .footer-phone-line {
    font-size: 11px;
  }
  .footer-column > span {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .footer-lead {
    gap: 8px;
  }
  .footer-social-row {
    margin-top: 2px;
  }
  .footer-utility-grid,
  .footer-grid {
    margin-top: 0;
  }
  .footer-cta-row .btn {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 11px;
  }
  .footer-utility-grid + .footer-social-row {
    margin-top: 4px;
  }
  .footer-closure {
    align-items: flex-start;
  }
  .room-story-grid .section-header, .room-story-grid .section-header p {
    text-align: center;
    margin-left: auto;
  }
  .hero-strapline {
    max-width: 620px;
    margin: 16px auto 0;
    color: rgba(255,246,232,0.86);
    font-size: 15px;
    line-height: 1.45;
  }
  .hero-logo-halo .hero-logo {
    width: min(176px, 46vw);
    margin-bottom: 10px;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.28));
  }
  .home-story-card a {
    display: grid;
    min-height: 100%;
    grid-template-rows: auto 1fr;
  }
  .hotel-overview-facts {
    grid-template-columns: 1fr;
  }
  .hotel-overview-card strong {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .featured-room-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .villa-curated-grid {
    grid-template-columns: 1fr;
  }
  .tere-quick-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .tere-question-card {
    justify-content: center;
    text-align: center;
  }
  .tere-custom-form {
    display: grid;
    gap: 10px;
  }
  .tere-custom-label {
    color: rgba(255,246,232,0.76);
    font-size: 12px;
    font-weight: 700;
  }
  .tere-custom-row {
    display: grid;
    gap: 10px;
  }
  .tere-custom-row input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid rgba(216,154,43,0.24);
    background: rgba(255,255,255,0.05);
    color: var(--lino);
    font: inherit;
  }
  .tere-custom-row input::placeholder {
    color: rgba(255,246,232,0.52);
  }
  .mood-gallery-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .site-footer {
    padding-bottom: 92px;
  }
  .footer-lead {
    gap: 12px;
  }
  .footer-utility-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bottom-action-bar {
    grid-template-columns: 1fr 1fr;
  }
}