:root {
  --ink: #17201c;
  --muted: #65726c;
  --paper: #fbfaf5;
  --blue: #076b82;
  --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.modal-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 8px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 260ms ease, box-shadow 260ms ease, color 260ms ease, padding 260ms ease;
}

.site-header.is-scrolled {
  padding-block: 8px;
  color: var(--ink);
  background: rgba(251, 250, 245, 0.9);
  box-shadow: 0 12px 36px rgba(23, 32, 28, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  width: 138px;
  height: 138px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
  transition: width 260ms ease, height 260ms ease, filter 260ms ease;
}

.site-header.is-scrolled .brand-logo {
  width: 108px;
  height: 108px;
  filter: drop-shadow(0 4px 10px rgba(12, 24, 22, 0.16));
}

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

.brand small {
  margin-top: 3px;
  color: currentColor;
  opacity: 0.75;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand strong {
  font-size: 19px;
  font-weight: 900;
}

.brand strong::first-letter {
  font-size: 1.42em;
  line-height: 0.82;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--white);
  background: rgba(15, 32, 29, 0.46);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 850;
}

.main-nav a {
  opacity: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.main-nav a:hover {
  opacity: 1;
}

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

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
  opacity: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.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,
.nav-dropdown summary:hover {
  opacity: 1;
}

.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;
  opacity: 1;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-select {
  min-width: 72px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  padding: 10px 12px;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.site-header.is-scrolled .lang-select {
  border-color: var(--line);
  background: var(--white);
}

.site-header.is-scrolled .main-nav {
  border-color: rgba(23, 32, 28, 0.12);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(23, 32, 28, 0.08);
}

.site-header.is-scrolled .main-nav a,
.site-header.is-scrolled .nav-dropdown summary {
  text-shadow: none;
}

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

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

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

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

.btn-small {
  min-height: 40px;
  padding-inline: 15px;
  font-size: 14px;
}

.btn-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 32px rgba(212, 93, 69, 0.28);
}

.btn-dark {
  color: var(--white);
  background: rgba(23, 32, 28, 0.92);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
}

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

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  min-height: 58svh;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(20px, 6vw, 72px) 58px;
  color: var(--white);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(8, 36, 40, 0.68), rgba(8, 36, 40, 0.18) 52%, rgba(8, 36, 40, 0.22)),
    url("assets/photos/hero-toroni-garden.jpg") center 52% / cover;
  transform: scale(1.04);
  will-change: transform;
}

.webp .hero-bg {
  background:
    linear-gradient(90deg, rgba(8, 36, 40, 0.68), rgba(8, 36, 40, 0.18) 52%, rgba(8, 36, 40, 0.22)),
    url("assets/photos/hero-toroni-garden.webp") center 52% / cover;
}

.hero-shade {
  background: radial-gradient(circle at 72% 36%, rgba(240, 179, 91, 0.28), transparent 32%);
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

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

.hero .eyebrow {
  display: none;
}

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

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

h1 {
  max-width: 820px;
  font-size: clamp(40px, 5vw, 68px);
}

h2 {
  font-size: clamp(32px, 4.55vw, 60px);
}

h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.08;
}

.hero-copy {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

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

.quick-panel {
  position: absolute;
  right: clamp(20px, 5vw, 68px);
  bottom: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(580px, calc(100% - 40px));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(10, 36, 41, 0.48);
  backdrop-filter: blur(18px);
}

.quick-panel div {
  padding: 15px 16px;
}

.quick-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-panel span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-panel strong {
  font-size: 18px;
}

.motion-ribbons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.motion-ribbons span {
  position: absolute;
  display: block;
  width: 46vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  transform-origin: left center;
  animation: drift 10s linear infinite;
}

.motion-ribbons span:nth-child(1) {
  top: 28%;
  left: -18%;
  transform: rotate(-10deg);
}

.motion-ribbons span:nth-child(2) {
  top: 54%;
  left: -12%;
  animation-delay: -3s;
}

.motion-ribbons span:nth-child(3) {
  top: 72%;
  left: 16%;
  animation-delay: -6s;
  transform: rotate(8deg);
}

@keyframes drift {
  0% {
    translate: -20% 0;
    opacity: 0;
  }
  18%,
  76% {
    opacity: 0.75;
  }
  100% {
    translate: 145% 0;
    opacity: 0;
  }
}

.section-pad {
  padding: clamp(56px, 7.5vw, 96px) clamp(20px, 6vw, 72px);
}

.section-heading {
  width: min(920px, 100%);
  margin-bottom: clamp(26px, 4vw, 46px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(560px, 1.52fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  padding-block: clamp(26px, 3.4vw, 46px);
  background: linear-gradient(180deg, var(--paper), #eef4ee);
}

.intro .section-heading {
  margin-bottom: 0;
}

.intro .section-heading h2 {
  max-width: 470px;
  font-size: clamp(27px, 2.7vw, 38px);
}

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

.feature {
  min-height: 100%;
  border: 1px solid rgba(122, 134, 92, 0.18);
  border-top: 3px solid var(--olive);
  border-radius: 8px;
  padding: 13px 14px 14px;
  background: rgba(255, 255, 255, 0.6);
}

.feature > span:not(.feature-icon) {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.feature-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(7, 107, 130, 0.1);
}

.feature-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.feature p,
.suite-body p,
.booking-copy p,
.location-copy p,
.microcopy,
.modal-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.feature h3 {
  margin: 10px 0 6px;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.18;
}

.feature p {
  font-size: 14px;
  line-height: 1.46;
}

.suites {
  display: grid;
  gap: 18px;
  padding-top: clamp(28px, 4vw, 54px);
  background: var(--paper);
}

.suites .section-heading {
  order: 2;
  margin: clamp(8px, 2vw, 18px) 0 0;
}

.suite-list {
  display: contents;
}

.suites .suite-card {
  order: 3;
}

.suites .suite-card-alt {
  order: 4;
}

.suite-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(24, 46, 42, 0.08);
}

.suite-card-alt {
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
}

.suite-card-alt .suite-card-gallery {
  order: 2;
}

.suite-card-gallery {
  align-self: stretch;
  padding: 12px;
  background: #f3f0e8;
}

.suite-card-gallery .home-gallery-stage {
  aspect-ratio: 16 / 10;
  min-height: 0;
  box-shadow: none;
}

.suite-card-gallery .home-gallery-thumbs {
  grid-auto-columns: minmax(68px, 84px);
  gap: 8px;
}

.suite-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 46px);
}

.suite-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 22px 0 0;
  background: var(--line);
}

.suite-facts div {
  padding: 16px 12px;
  background: #f7f5ec;
}

.suite-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.suite-facts dd {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 800;
}

.suite-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.suite-highlight {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-width: 0;
  border: 1px solid rgba(7, 107, 130, 0.12);
  border-radius: 8px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(238, 247, 244, 0.82), rgba(255, 255, 255, 0.92));
}

.suite-highlight-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: var(--sea-dark);
  background: rgba(7, 107, 130, 0.1);
}

.suite-highlight-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.suite-highlight strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.suite-highlight small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.suite-tags,
.suite-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.suite-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--sea-dark);
  background: #eef7f4;
  font-size: 13px;
  font-weight: 800;
}

.suite-links a,
.text-link {
  color: var(--sea);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.photo-gallery {
  background:
    linear-gradient(180deg, #f4f1e6, var(--paper) 48%, #eef4ee);
}

.gallery-group + .gallery-group {
  margin-top: clamp(46px, 7vw, 84px);
}

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

.gallery-heading h3 {
  font-family: "Playfair Display", Georgia, serif;
}

.home-gallery-slider {
  display: grid;
  gap: 12px;
}

.home-gallery-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe7e1;
  box-shadow: 0 16px 44px rgba(24, 46, 42, 0.08);
}

.home-gallery-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  pointer-events: none;
}

.home-gallery-main {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
}

.home-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease, filter 900ms ease;
}

.home-gallery-main:hover img {
  filter: saturate(1.08);
  transform: scale(1.05);
}

.home-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--white);
  background: rgba(24, 46, 42, 0.72);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  padding: 0 0 4px;
  transition: background 180ms ease, transform 180ms ease;
}

.home-gallery-nav:hover {
  background: rgba(24, 46, 42, 0.88);
  transform: translateY(-50%) scale(1.05);
}

.home-gallery-prev {
  left: 18px;
}

.home-gallery-next {
  right: 18px;
}

.home-gallery-counter {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(24, 46, 42, 0.76);
  font-size: 13px;
  font-weight: 900;
}

.home-gallery-caption {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.home-gallery-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(88px, 116px);
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scrollbar-width: thin;
}

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

.home-gallery-thumb.is-active {
  border-color: var(--coral);
}

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

.gallery-detail-link {
  justify-self: start;
}

.booking-hub {
  display: grid;
  order: 1;
  gap: 16px;
  margin: 0 0 8px;
  scroll-margin-top: 130px;
  border: 1px solid rgba(23, 32, 28, 0.09);
  border-radius: 8px;
  padding: clamp(18px, 2.6vw, 30px);
  background: linear-gradient(180deg, #fbfaf5 0%, #f5f2e9 100%);
  box-shadow: 0 18px 52px rgba(24, 46, 42, 0.055);
}

.booking-hub-priority {
  margin: clamp(18px, 3vw, 34px) clamp(20px, 6vw, 72px) clamp(18px, 3vw, 34px);
}

.booking-hub-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.booking-hub-head h3 {
  margin: 0 0 8px;
  font-size: clamp(26px, 2.7vw, 38px);
}

.booking-hub-head p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.booking-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.booking-steps span {
  border: 1px solid rgba(7, 107, 130, 0.11);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--sea-dark);
  background: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
}

.booking-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

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

.booking-suite-tabs-wrap {
  width: min(100%, 520px);
}

.booking-suite-tabs-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-suite-tabs-label::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--rust);
}

.booking-suite-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(24, 46, 42, 0.08);
}

.booking-suite-tab {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 96px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 16px 16px 14px 42px;
  color: var(--ink);
  background: #f8f6ee;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.booking-suite-tab::before {
  position: absolute;
  top: 17px;
  left: 15px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(7, 107, 130, 0.35);
  border-radius: 50%;
  content: "";
  background: var(--white);
  box-shadow: inset 0 0 0 4px var(--white);
}

.booking-suite-tab::after {
  position: absolute;
  right: 14px;
  bottom: 13px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: rgba(7, 107, 130, 0.26);
}

.booking-suite-tab > span:not(.booking-suite-status) {
  font-size: 15px;
  line-height: 1.15;
}

.booking-suite-status {
  width: fit-content;
  border: 1px solid rgba(7, 107, 130, 0.16);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--sea-dark);
  background: rgba(7, 107, 130, 0.07);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.booking-suite-tab small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
}

.booking-suite-tab:hover,
.booking-suite-tab:focus-visible {
  border-color: rgba(7, 107, 130, 0.35);
  background: var(--white);
  outline: none;
}

.booking-suite-tab.is-active {
  color: var(--white);
  background: var(--blue);
  border-color: rgba(7, 107, 130, 0.85);
  box-shadow: 0 12px 28px rgba(7, 107, 130, 0.24);
  transform: translateY(-1px);
}

.booking-suite-tab.is-active::before {
  border-color: rgba(255, 255, 255, 0.86);
  background: var(--white);
  box-shadow: inset 0 0 0 4px var(--blue);
}

.booking-suite-tab.is-active::after {
  background: rgba(255, 255, 255, 0.78);
}

.booking-suite-tab.is-active > span:not(.booking-suite-status) {
  color: var(--white);
}

.booking-suite-tab.is-active .booking-suite-status {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.booking-suite-tab.is-active small {
  color: rgba(255, 255, 255, 0.78);
}

.booking-suite-panels {
  display: grid;
}

.inline-booking-card {
  border: 1px solid rgba(23, 32, 28, 0.09);
  border-radius: 8px;
  padding: clamp(14px, 2.2vw, 22px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(24, 46, 42, 0.05);
}

.inline-booking-card[hidden] {
  display: none;
}

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

.inline-booking-head h3 {
  font-family: "Playfair Display", Georgia, serif;
}

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

.inline-booking-form {
  border: 1px solid rgba(7, 107, 130, 0.1);
  border-radius: 8px;
  padding: 16px;
  background: rgba(251, 250, 245, 0.78);
}

.inline-booking-form .booking-dates {
  grid-template-columns: 1fr;
}

.inline-booking-form label {
  display: grid;
  gap: 8px;
}

.inline-booking-form input {
  cursor: pointer;
}

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

.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;
}

.guest-note-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--rust);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.guest-note-grid h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.2;
}

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

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

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

.guest-note-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 2.2vw, 26px);
  background: rgba(255, 255, 255, 0.78);
}

.reviews {
  background: #fbfaf5;
}

.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, #fbfaf5, rgba(251, 250, 245, 0));
}

.review-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: review-scroll 58s 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;
  }
}

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

.review-platform {
  display: grid;
  gap: 10px;
  min-height: 160px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 2.2vw, 26px);
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(24, 46, 42, 0.06);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.review-platform:hover {
  border-color: rgba(7, 107, 130, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(24, 46, 42, 0.11);
}

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

.review-platform strong {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.1;
}

.review-platform 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;
}

.faq {
  background: linear-gradient(180deg, #fbfaf5 0%, #f3f5ef 100%);
}

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

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

.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;
}

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

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

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

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

.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;
}

.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;
}

.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;
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 470px);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 179, 91, 0.35), transparent 26%),
    linear-gradient(135deg, var(--sea-dark), #0f2c28 56%, #23422f);
}

.booking-copy .eyebrow,
.booking-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.booking-panel,
.modal-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.booking-panel {
  padding: 24px;
  color: var(--ink);
}

.booking-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.booking-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

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

.booking-row label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-row select,
.booking-row input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  outline-color: var(--sea);
}

.booking-summary {
  margin: -4px 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(7, 107, 130, 0.16);
  border-radius: 6px;
  color: var(--sea-dark);
  background: rgba(7, 107, 130, 0.08);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.availability-calendar {
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #f8f6ee;
}

.calendar-widget-shell {
  display: none;
  min-height: 250px;
  padding: 10px;
}

.calendar-widget-shell.is-active {
  display: block;
}

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

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

.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;
}

.booking-secondary {
  margin-top: 10px;
}

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

.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;
}

.bank-transfer-box {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(240, 179, 91, 0.45);
  border-radius: 6px;
  background: rgba(240, 179, 91, 0.12);
}

.bank-transfer-box span {
  display: block;
  margin-bottom: 6px;
  color: var(--sea-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bank-transfer-box p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.microcopy {
  margin: 14px 0 0;
  font-size: 13px;
}

.location {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.9fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  background: #f4f1e6;
}

.map-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: #e8e3d5;
  box-shadow: var(--shadow);
}

.google-map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.map-preview {
  position: absolute;
  inset: 0;
  display: none;
  background: #e8e3d5;
}

.map-visual.use-map-fallback .google-map-frame {
  display: none;
}

.map-visual.use-map-fallback .map-preview {
  display: block;
}

.map-fallback-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.map-open-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--sea-dark);
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(24, 46, 42, 0.16);
}

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

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

.contact-button {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
  color: var(--sea-dark);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 16px 44px rgba(24, 46, 42, 0.07);
  transition: transform 220ms ease, border-color 220ms ease;
}

.contact-button:hover {
  border-color: rgba(212, 93, 69, 0.5);
  transform: translateY(-3px);
}

.sister-property {
  position: relative;
  display: grid;
  min-height: clamp(520px, 72svh, 760px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.sister-visual {
  position: absolute;
  inset: 0;
  display: block;
}

.sister-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 19, 18, 0.42), rgba(10, 19, 18, 0.12) 48%, rgba(10, 19, 18, 0.5)),
    linear-gradient(0deg, rgba(10, 19, 18, 0.3), rgba(10, 19, 18, 0.04) 50%);
}

.sister-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.18) saturate(1.08) contrast(1.03);
}

.sister-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: end;
  width: min(560px, calc(100% - 40px));
  margin: clamp(80px, 10vw, 150px) clamp(20px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(10, 19, 18, 0.58);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.sister-copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.sister-logo {
  display: block;
  width: min(285px, 68%);
  max-height: 128px;
  margin: 0 0 24px -18px;
  object-fit: contain;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.32))
    drop-shadow(0 12px 26px rgba(0, 0, 0, 0.42));
  opacity: 1;
}

.sister-copy h2 {
  max-width: 520px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(30px, 3.35vw, 46px);
  line-height: 1.08;
}

.sister-copy p {
  max-width: 470px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.62;
}

.sister-copy a[data-i18n="sister.contact"] {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding: 34px clamp(20px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.footer-legal {
  max-width: 500px;
}

.footer-legal p {
  margin: 0;
}

.footer-legal [data-i18n="footer.text"] {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.55;
}

.footer-ama {
  margin-top: 8px !important;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-place {
  margin-top: 6px !important;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 750;
}

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

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

.footer-kicker {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  display: flex;
  min-height: 102px;
  min-width: 222px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 16px 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-brand:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.footer-brand-logo img {
  max-width: 170px;
  max-height: 58px;
  object-fit: contain;
}

.footer-brand-invista img {
  max-width: 250px;
  max-height: 70px;
}

.footer-brand-vista img {
  max-width: 220px;
  max-height: 82px;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.2))
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.34));
  opacity: 1;
}

.footer-brand-vsuite img {
  max-width: 185px;
  max-height: 112px;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.18))
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.34));
  opacity: 1;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(10, 19, 18, 0.62);
  backdrop-filter: blur(8px);
}

.modal[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(560px, 100%);
  padding: 34px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f3f0e6;
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero-content.reveal,
.quick-panel.reveal {
  opacity: 1;
  transform: none;
}

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

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

  .hero {
    min-height: 68svh;
    align-items: end;
    padding-bottom: 150px;
  }

  .quick-panel,
  .intro,
  .booking-hub-head,
  .inline-booking-layout,
  .engine-months,
  .location {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    right: 20px;
    bottom: 24px;
  }

  .suite-card,
  .suite-card-alt {
    grid-template-columns: 1fr;
  }

  .suite-card-alt .suite-card-gallery {
    order: 0;
  }

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

  .home-gallery-thumbs {
    grid-auto-columns: minmax(82px, 108px);
  }
}

@media (max-width: 680px) {
  .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;
  }

  .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;
  }

  .site-header {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 14px;
  }

  .main-nav {
    order: 3;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    border-color: rgba(255, 255, 255, 0.22);
    padding: 7px;
    color: var(--white);
    background: rgba(15, 32, 29, 0.6);
    font-size: 12px;
    scrollbar-width: none;
  }

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

  .main-nav a {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 8px 10px;
    white-space: nowrap;
  }

  .brand {
    min-width: 0;
  }

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

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

  .brand-logo {
    width: 82px;
    height: 82px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 74px;
    height: 74px;
  }

  .hero {
    min-height: 72svh;
    padding: 232px 18px 188px;
  }

  .sister-property {
    min-height: 620px;
  }

  .sister-copy {
    align-self: end;
    justify-self: center;
    width: calc(100% - 28px);
    margin: 0 14px 22px;
    padding: 22px;
  }

  .footer-brands {
    display: grid;
  }

  .booking-suite-tabs-wrap {
    width: 100%;
  }

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

  .booking-suite-tab {
    min-height: 84px;
  }

  .guest-note-grid,
  .review-platforms,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .booking-hub-priority {
    margin-inline: 8px;
  }

  .booking-hub-head h3 {
    font-size: 30px;
  }

  .inline-booking-layout {
    gap: 14px;
  }

  .inline-booking-card {
    padding: 10px;
  }

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

  .engine-toolbar {
    align-items: flex-start;
  }

  .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;
  }

  .footer-brand {
    min-width: 0;
    justify-content: flex-start;
  }

  h1 {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .modal-actions {
    flex-direction: column;
  }

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

  .quick-panel div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .section-pad {
    padding-inline: 18px;
  }

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

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

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

  .inline-booking-head {
    display: block;
  }

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

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

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

  .map-visual {
    min-height: 360px;
  }

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

  .gallery-heading {
    display: block;
  }

  .home-gallery-stage {
    aspect-ratio: 4 / 3;
  }

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

  .home-gallery-prev {
    left: 10px;
  }

  .home-gallery-next {
    right: 10px;
  }

  .home-gallery-thumbs {
    grid-auto-columns: minmax(76px, 96px);
  }

  .mobile-sticky-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body {
    padding-bottom: 72px;
  }

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

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

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