:root {
  --ink: #17201c;
  --muted: #65726c;
  --paper: #fbfaf5;
  --sea: #076b82;
  --sea-dark: #044250;
  --olive: #6f844e;
  --sun: #f0b35b;
  --coral: #d45d45;
  --rust: #c76d4b;
  --terracotta: #c76d4b;
  --white: #ffffff;
  --line: rgba(23, 32, 28, 0.12);
  --shadow: 0 24px 70px rgba(18, 42, 46, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.lightbox-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

.detail-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(251, 250, 245, 0.92);
  box-shadow: 0 12px 36px rgba(23, 32, 28, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(12, 24, 22, 0.18));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.06;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(23, 32, 28, 0.08);
  font-size: 14px;
  font-weight: 850;
}

.nav-dropdown {
  position: relative;
  z-index: 20;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 44px rgba(19, 33, 31, 0.16);
  color: var(--ink);
  transform: translateX(-50%);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--sea-dark);
  background: var(--mist);
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  color: var(--white);
  background: var(--coral);
  font-weight: 900;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212, 93, 69, 0.24);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.suite-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1.14fr);
  min-height: 44svh;
  background: #f4f1e6;
}

.suite-hero-background {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  min-height: min(780px, calc(100svh - 88px));
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 27, 25, 0.82) 0%, rgba(9, 27, 25, 0.58) 38%, rgba(9, 27, 25, 0.18) 72%, rgba(9, 27, 25, 0.1) 100%),
    linear-gradient(180deg, rgba(9, 27, 25, 0.08) 0%, rgba(9, 27, 25, 0.62) 100%),
    var(--hero-bg) center / cover no-repeat;
}

.suite-hero-v1-balcony {
  --hero-bg: url("assets/photos/v1/all/v1-03.jpg");
}

.suite-hero-v3-balcony {
  --hero-bg: url("assets/photos/v3/all/v3-04.jpg");
}

.suite-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 64px) clamp(22px, 5vw, 62px);
}

.suite-hero-background .suite-hero-copy {
  max-width: 760px;
  min-height: inherit;
  padding: clamp(120px, 15vw, 220px) clamp(22px, 6vw, 78px) clamp(48px, 7vw, 92px);
}

.suite-hero-background h1 {
  color: var(--white);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.suite-hero-background .eyebrow,
.suite-hero-background .lead {
  color: rgba(255, 255, 255, 0.9);
}

.suite-hero-background .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.suite-hero-background .btn-secondary:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.24);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.03;
}

h1 {
  font-size: clamp(33px, 3.9vw, 48px);
}

h2 {
  font-size: clamp(23px, 2.4vw, 32px);
}

h3 {
  margin: 0;
  font-size: 21px;
}

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-photo {
  position: relative;
  min-height: 280px;
  max-height: 380px;
  overflow: hidden;
  background: #e7e3d8;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 50%, rgba(8, 36, 40, 0.32)),
    radial-gradient(circle at 72% 22%, rgba(240, 179, 91, 0.22), transparent 30%);
}

.facts-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.facts-strip div {
  padding: 20px clamp(12px, 2vw, 28px);
}

.facts-strip div + div {
  border-left: 1px solid var(--line);
}

.facts-strip span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.facts-strip strong {
  display: block;
  margin-top: 7px;
  font-size: 18px;
}

.section-pad {
  padding: clamp(34px, 4.5vw, 58px) clamp(20px, 6vw, 72px);
}

.split-section,
.suite-includes,
.amenities,
.gallery-section,
.booking-section {
  scroll-margin-top: 92px;
}

.suite-includes {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(360px, 1.3fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
  background: linear-gradient(180deg, #fbfaf5 0%, #eef4ee 100%);
}

.section-anchor {
  position: absolute;
  top: -92px;
}

.suite-includes-intro {
  position: sticky;
  top: 96px;
  max-width: 440px;
}

.suite-includes-intro p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
}

.suite-includes-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 58px rgba(24, 46, 42, 0.08);
}

.include-group {
  min-height: 190px;
  padding: clamp(20px, 2.4vw, 30px);
  border-right: 1px solid rgba(23, 32, 28, 0.08);
  border-bottom: 1px solid rgba(23, 32, 28, 0.08);
}

.include-group:nth-child(2n) {
  border-right: 0;
}

.include-group:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.include-group span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.include-group h3 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.08;
}

.include-group p {
  max-width: 460px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(360px, 1.3fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 96px;
}

.copy-block {
  display: grid;
  gap: 14px;
}

.copy-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(16px, 2vw, 22px);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(24, 46, 42, 0.045);
}

.copy-card p,
.copy-card li,
.policy-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.copy-card ul,
.amenity-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.copy-card li,
.amenity-list li {
  position: relative;
  padding: 7px 0 7px 22px;
  border-top: 1px solid rgba(23, 32, 28, 0.08);
}

.copy-card li::before,
.amenity-list li::before {
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive);
  content: "";
}

.amenities {
  background: #eef4ee;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.amenity-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.gallery-section {
  background: var(--paper);
}

.gallery-section.section-pad {
  padding-inline: clamp(20px, 5vw, 72px);
}

.gallery-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.full-gallery {
  display: grid;
  justify-items: center;
}

.slider-stage {
  position: relative;
  width: min(100%, 1480px);
  height: clamp(560px, 52vw, 780px);
  max-height: 780px;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: #ebe7dc;
  box-shadow: var(--shadow);
}

.slider-main-button {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.slider-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 650ms ease, filter 650ms ease;
}

.slider-main-button:hover .slider-main-image {
  filter: saturate(1.08);
  transform: scale(1.01);
}

.slider-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--white);
  background: rgba(15, 44, 40, 0.68);
  cursor: pointer;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  padding: 0 0 4px;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.slider-nav:hover {
  background: rgba(15, 44, 40, 0.86);
  transform: translateY(-50%) scale(1.05);
}

.slider-prev {
  left: 18px;
}

.slider-next {
  right: 18px;
}

.slider-counter {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(15, 44, 40, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.slider-caption {
  width: min(100%, 1480px);
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.slider-thumbnails {
  display: grid;
  width: min(100%, 1480px);
  grid-auto-columns: minmax(124px, 150px);
  grid-auto-flow: column;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding: 2px 0 10px;
  scrollbar-color: var(--sea) transparent;
}

.slider-thumb {
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: #dfe7e1;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.slider-thumb.is-active {
  border-color: var(--gold);
}

.slider-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suite-proof {
  background: linear-gradient(180deg, #fbfaf5 0%, #eef4ee 100%);
}

.review-marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(23, 32, 28, 0.08);
  padding: 8px 0;
}

.review-marquee::before,
.review-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(120px, 18vw);
  content: "";
  pointer-events: none;
}

.review-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fbfaf5, rgba(251, 250, 245, 0));
}

.review-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #eef4ee, rgba(238, 244, 238, 0));
}

.review-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: review-scroll 48s linear infinite;
}

.review-marquee:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  display: grid;
  width: clamp(286px, 28vw, 390px);
  min-height: 190px;
  align-content: start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(24, 46, 42, 0.06);
}

.review-person {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.review-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(48, 108, 130, 0.22);
  border-radius: 50%;
  background: linear-gradient(135deg, #eef7f6 0%, #fff8ef 100%);
  color: var(--blue);
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
}

.review-person strong,
.review-person small {
  display: block;
  min-width: 0;
}

.review-person strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.1;
}

.review-person small {
  margin-top: 4px;
  color: var(--rust);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.42;
}

.review-card em {
  margin-top: auto;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.review-card em a {
  color: var(--sea);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@keyframes review-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 6px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-track {
    animation: none;
    overflow-x: auto;
    padding-bottom: 8px;
  }
}

.suite-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.suite-proof-card {
  display: grid;
  gap: 10px;
  min-height: 146px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 2.2vw, 26px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(24, 46, 42, 0.06);
}

.suite-proof-card span {
  color: var(--rust);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.suite-proof-card strong {
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.15;
}

.suite-proof-card em {
  margin-top: auto;
  color: var(--sea-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.suite-faq {
  background: #fbfaf5;
}

.suite-faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.suite-faq-grid .faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.suite-faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 8px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.suite-faq-grid summary::-webkit-details-marker {
  display: none;
}

.suite-faq-grid summary::after {
  content: "+";
  flex: 0 0 auto;
  margin-left: 14px;
  color: var(--sea);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.suite-faq-grid .faq-item[open] summary::after {
  content: "-";
}

.suite-faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 400px);
  gap: clamp(20px, 4vw, 46px);
  align-items: start;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(240, 179, 91, 0.36), transparent 26%),
    linear-gradient(135deg, var(--sea-dark), #0f2c28 56%, #23422f);
}

.booking-section.section-pad {
  padding-top: clamp(30px, 4vw, 48px);
  padding-bottom: clamp(30px, 4vw, 48px);
}

.booking-section .eyebrow,
.booking-section p {
  color: rgba(255, 255, 255, 0.74);
}

.booking-section .lead {
  max-width: 620px;
  font-size: clamp(16px, 1.4vw, 19px);
}

.booking-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.booking-assurance span {
  border: 1px solid rgba(111, 138, 84, 0.2);
  border-radius: 999px;
  padding: 8px 10px;
  color: #426436;
  background: rgba(239, 247, 234, 0.76);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.policy-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 44px rgba(18, 42, 46, 0.16);
}

.policy-panel p {
  margin: 0 0 12px;
  color: var(--ink);
}

.policy-panel strong {
  color: var(--sea-dark);
}

.trust-list {
  display: grid;
  gap: 7px;
  margin: 10px 0 14px;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  border: 1px solid rgba(7, 107, 130, 0.12);
  border-radius: 8px;
  padding: 9px 11px 9px 30px;
  color: var(--muted);
  background: rgba(238, 244, 238, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.trust-list li::before {
  position: absolute;
  left: 12px;
  top: 15px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--olive);
  content: "";
}

.trust-list strong {
  color: var(--ink);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.policy-panel .btn {
  min-height: 40px;
  padding-inline: 14px;
}

.vista-referral {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(251, 248, 240, 0.98), rgba(238, 244, 238, 0.92)),
    var(--sand);
}

.vista-referral-media {
  position: relative;
  min-height: clamp(220px, 26vw, 340px);
  overflow: hidden;
  border: 1px solid rgba(24, 46, 42, 0.14);
  border-radius: 8px;
  background: var(--sea-dark);
  box-shadow: 0 18px 46px rgba(24, 46, 42, 0.12);
}

.vista-referral-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(10, 19, 18, 0.08), transparent 56%);
}

.vista-referral-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.14) saturate(1.06);
  transition: transform 600ms ease, filter 600ms ease;
}

.vista-referral-media:hover img {
  transform: scale(1.03);
  filter: brightness(1.2) saturate(1.08);
}

.vista-referral-copy {
  align-self: center;
  max-width: 660px;
}

.vista-referral-copy .eyebrow {
  color: var(--terracotta);
}

.vista-referral-copy h2 {
  max-width: 560px;
  margin-bottom: 12px;
}

.vista-referral-copy .lead {
  max-width: 560px;
  color: var(--muted);
}

.vista-referral-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.vista-referral-actions .btn {
  min-width: 190px;
}

.mobile-book-bar {
  display: none;
}

.availability-panel {
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(18, 42, 46, 0.13);
}

.live-booking-layout {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(280px, 360px);
  gap: 18px;
  align-items: start;
}

.availability-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.availability-panel-head .eyebrow,
.availability-panel-head h3 {
  color: var(--ink);
}

.availability-panel-head h3 {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.suite-calendar {
  min-height: 292px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f6ee;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.suite-calendar.is-picking-date {
  border-color: rgba(7, 107, 130, 0.72);
  box-shadow: 0 0 0 4px rgba(7, 107, 130, 0.12), 0 18px 42px rgba(18, 42, 46, 0.12);
}

.suite-calendar iframe {
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
}

.tokeet-calendar-widget {
  display: block;
  min-height: 300px;
  padding: 18px;
  color: var(--sea-dark);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.live-booking-engine {
  padding: 14px;
}

.engine-loading,
.engine-error {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.engine-error {
  color: #8d3d1f;
}

.engine-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}

.engine-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.engine-toolbar .engine-legend {
  margin: 0;
}

.engine-hint {
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.engine-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.engine-legend span::before {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  content: "";
  background: #d9ead3;
}

.engine-legend span:nth-child(2)::before {
  background: #d77a61;
}

.engine-nav {
  display: flex;
  gap: 8px;
}

.engine-nav-button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(7, 107, 130, 0.18);
  border-radius: 50%;
  color: var(--sea-dark);
  background: var(--white);
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.engine-nav-button:hover {
  border-color: rgba(7, 107, 130, 0.52);
  background: rgba(7, 107, 130, 0.08);
  transform: translateY(-1px);
}

.engine-nav-button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
  transform: none;
}

.engine-months {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 12px;
}

.engine-month {
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: 8px;
  padding: 10px;
  background: var(--white);
}

.engine-month h4 {
  margin: 0 0 8px;
  color: var(--sea-dark);
  font-size: 14px;
  text-align: center;
}

.engine-month-note {
  display: grid;
  gap: 5px;
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.engine-special-gap {
  color: #4f683a;
}

.engine-weekdays,
.engine-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.engine-weekdays span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.engine-day {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 34px;
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: 5px;
  padding: 0;
  color: var(--sea-dark);
  background: #d9ead3;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.engine-day:hover {
  border-color: var(--sea);
}

.engine-day.is-special-gap {
  border-color: rgba(111, 132, 78, 0.72);
  box-shadow: inset 0 0 0 2px rgba(111, 132, 78, 0.2);
}

.engine-day.is-empty {
  visibility: hidden;
}

.engine-day.is-unavailable,
.engine-day:disabled {
  color: rgba(23, 32, 28, 0.42);
  background: #c9795d;
  cursor: not-allowed;
  text-decoration: line-through;
}

.engine-day.is-turnover {
  color: var(--sea-dark);
  background: linear-gradient(135deg, #d9ead3 0 50%, #c9795d 50% 100%);
  text-decoration: none;
}

.engine-day.is-checkout-option {
  border-color: rgba(7, 107, 130, 0.32);
  color: var(--sea-dark);
  background: linear-gradient(135deg, #d9ead3 0 50%, #c9795d 50% 100%);
  cursor: pointer;
  text-decoration: none;
}

.engine-day.is-selected {
  color: var(--white);
  background: var(--sea);
}

.engine-day.is-range {
  border-color: rgba(7, 107, 130, 0.26);
  background: #b9ded7;
}

.suite-booking-form {
  border: 1px solid rgba(7, 107, 130, 0.14);
  border-radius: 8px;
  padding: 16px;
  background: #fbfaf5;
}

.booking-dates {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.booking-dates label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-dates input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
  outline: none;
}

.booking-dates input::placeholder {
  color: rgba(23, 32, 28, 0.58);
  opacity: 1;
}

.booking-dates input:focus {
  border-color: rgba(7, 107, 130, 0.55);
  box-shadow: 0 0 0 3px rgba(7, 107, 130, 0.11);
}

.booking-discount-note {
  position: relative;
  margin: 0 0 14px;
  border: 1px solid rgba(79, 122, 66, 0.34);
  border-radius: 8px;
  padding: 12px 13px 12px 38px;
  color: #284c23;
  background: #eef6e8;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.inline-booking-card .booking-discount-note,
.availability-panel .booking-discount-note,
.booking-section .booking-discount-note {
  color: #284c23;
}

.booking-discount-note::before {
  content: "%";
  position: absolute;
  top: 11px;
  left: 12px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: #5f7e48;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
}

.booking-terms-note {
  margin: -4px 0 14px;
  border-left: 3px solid var(--olive);
  padding: 8px 0 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.price-estimate {
  margin: 0 0 14px;
  border: 1px solid rgba(7, 107, 130, 0.2);
  border-radius: 8px;
  padding: 17px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 241, 0.86)),
    rgba(7, 107, 130, 0.07);
  box-shadow: 0 18px 42px rgba(18, 42, 46, 0.1);
}

.price-estimate span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-estimate strong {
  display: block;
  color: var(--sea-dark);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.price-estimate p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.price-estimate .price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 8px 0;
  border-top: 1px solid rgba(7, 107, 130, 0.12);
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.price-estimate .price-line:first-child {
  border-top: 0;
}

.price-estimate .price-line span,
.price-estimate .price-line strong {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}

.price-estimate .price-line span {
  color: var(--muted);
  font-weight: 800;
}

.price-estimate .price-line strong {
  flex: 0 0 auto;
  color: var(--sea-dark);
  font-weight: 900;
}

.price-estimate .price-line-saving {
  color: #4f7a42;
}

.price-estimate .price-line-saving span,
.price-estimate .price-line-saving strong {
  color: #4f7a42;
}

.price-estimate .payment-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
  letter-spacing: 0;
  text-transform: none;
}

.price-estimate .payment-pill {
  display: block;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(7, 107, 130, 0.16);
  border-radius: 8px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.88);
  letter-spacing: 0;
  text-transform: none;
}

.price-estimate .payment-pill span,
.price-estimate .payment-pill strong,
.price-estimate .payment-pill em {
  display: block;
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
}

.price-estimate .payment-pill span,
.price-estimate .payment-pill em {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.price-estimate .payment-pill strong {
  margin-top: 3px;
  color: var(--ink);
  font-size: 18px;
  font-style: normal;
  line-height: 1.08;
}

.price-estimate .payment-pill em {
  margin-top: 4px;
  font-style: normal;
  font-weight: 800;
}

.booking-message {
  display: none;
  margin: -2px 0 14px;
  color: #8d3d1f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.booking-message.is-visible {
  display: block;
}

.suite-next {
  width: 100%;
}

.suite-send-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
  border: 1px solid rgba(212, 93, 69, 0.2);
  border-radius: 8px;
  padding: 12px;
  background: rgba(212, 93, 69, 0.06);
}

.suite-send-options[hidden] {
  display: none;
}

.suite-send-options p {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.booking-contact-line {
  display: grid;
  gap: 4px;
  margin: -2px 0 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.booking-contact-line a {
  color: var(--sea-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.mobile-sticky-booking {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: none;
  border-radius: 999px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 16px 42px rgba(24, 46, 42, 0.28);
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(20px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.footer strong {
  color: rgba(255, 255, 255, 0.9);
}

.footer a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  padding: 18px;
  background: rgba(10, 19, 18, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-weight: 900;
}

.lightbox-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  cursor: pointer;
  font-size: 30px;
}

.lightbox-stage {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 14px;
  align-items: center;
  min-height: 0;
}

.lightbox-nav {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  cursor: pointer;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible,
.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  outline: none;
  transform: translateY(-1px);
}

.lightbox img {
  align-self: center;
  justify-self: center;
  max-width: min(100%, 1400px);
  max-height: calc(100svh - 108px);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

@media (max-width: 980px) {
  .detail-nav {
    display: none;
  }

  .suite-hero,
  .split-section,
  .suite-includes,
  .live-booking-layout,
  .engine-months,
  .booking-section,
  .vista-referral,
  .suite-proof-grid,
  .suite-faq-grid {
    grid-template-columns: 1fr;
  }

  .vista-referral-media {
    min-height: 280px;
  }

  .slider-stage {
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 300px;
  }

  .availability-panel-head {
    align-items: start;
    flex-direction: column;
  }

  .suite-hero {
    min-height: 0;
  }

  .suite-hero-background {
    min-height: 660px;
    background:
      linear-gradient(90deg, rgba(9, 27, 25, 0.84) 0%, rgba(9, 27, 25, 0.58) 54%, rgba(9, 27, 25, 0.18) 100%),
      linear-gradient(180deg, rgba(9, 27, 25, 0.06) 0%, rgba(9, 27, 25, 0.66) 100%),
      var(--hero-bg) center / cover no-repeat;
  }

  .hero-photo {
    min-height: 340px;
    order: -1;
  }

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

  .sticky-heading {
    position: static;
  }

  .suite-includes-intro {
    position: static;
    max-width: 680px;
  }

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

  .include-group,
  .include-group:nth-child(2n),
  .include-group:nth-last-child(-n + 2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 32, 28, 0.08);
  }

  .include-group:last-child {
    border-bottom: 0;
  }

}

@media (max-width: 640px) {
  body {
    padding-bottom: 78px;
  }

  .price-estimate .payment-split {
    grid-template-columns: 1fr;
  }

  .booking-discount-note {
    padding: 10px 11px 10px 32px;
    font-size: 12px;
    line-height: 1.32;
  }

  .booking-discount-note::before {
    top: 10px;
  }

  .suite-hero-background {
    min-height: 560px;
    background-position: center;
  }

  .suite-hero-background .suite-hero-copy {
    padding: 120px 18px 42px;
  }

  .price-estimate {
    padding: 14px;
  }

  .price-estimate strong {
    font-size: 31px;
  }

  .price-estimate .price-line {
    gap: 8px;
  }

  .price-estimate .price-line span,
  .price-estimate .price-line strong {
    font-size: 12px;
  }

  .engine-nav-button {
    width: 44px;
    height: 44px;
  }

  .engine-months {
    grid-template-columns: 1fr;
  }

  .engine-month:nth-child(n + 2) {
    display: none;
  }

  .engine-weekdays,
  .engine-days {
    gap: 4px;
  }

  .engine-day {
    min-height: 40px;
    border-radius: 7px;
    font-size: 12px;
  }

  .engine-month-note {
    font-size: 12px;
  }

  .detail-header {
    flex-wrap: wrap;
    padding: 8px 14px;
  }

  .detail-header .brand img {
    width: 54px;
    height: 54px;
  }

  .detail-header .brand {
    min-width: 0;
  }

  .detail-nav {
    order: 3;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 6px;
    font-size: 11.5px;
    scrollbar-width: none;
  }

  .detail-nav::-webkit-scrollbar {
    display: none;
  }

  .detail-nav a {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 7px 9px;
    white-space: nowrap;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small,
  .detail-header .btn {
    display: none;
  }

  .mobile-book-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    padding: 10px;
    color: var(--white);
    background: rgba(4, 66, 80, 0.94);
    box-shadow: 0 18px 42px rgba(18, 42, 46, 0.24);
    backdrop-filter: blur(12px);
  }

  .mobile-book-bar span {
    display: grid;
    gap: 2px;
    min-width: 0;
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-book-bar strong {
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-book-bar .btn {
    min-height: 44px;
    padding: 12px 16px;
  }

  .suite-faq-grid summary {
    margin-bottom: 0;
  }

  .suite-faq-grid .faq-item[open] summary {
    margin-bottom: 8px;
  }

  .suite-hero-copy {
    padding: 44px 18px 54px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-photo {
    min-height: 330px;
  }

  .facts-strip,
  .amenity-grid,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .vista-referral-actions,
  .vista-referral-actions .btn {
    width: 100%;
  }

  .slider-stage {
    aspect-ratio: 4 / 3;
    max-height: 360px;
    min-height: 260px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    font-size: 28px;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }

  .slider-thumbnails {
    grid-auto-columns: minmax(86px, 104px);
  }

  .availability-panel {
    padding: 16px;
  }

  .suite-calendar {
    min-height: 280px;
  }

  .live-booking-engine {
    padding: 6px;
  }

  .engine-day {
    min-height: 40px;
    font-size: 12px;
  }

  .facts-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .gallery-intro {
    display: block;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-stage {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 34px;
  }

  .lightbox img {
    max-height: calc(100svh - 92px);
  }

}
