:root {
  --paper: #f7f3ea;
  --paper-soft: #fffaf1;
  --ink: #17201f;
  --muted: #66706d;
  --line: rgba(23, 32, 31, 0.14);
  --gold: #c99b58;
  --gold-dark: #9b7038;
  --sea: #0f7d8a;
  --clay: #c96f48;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 26, 24, 0.18);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

button {
  cursor: pointer;
}

.section-inner {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.section-pad {
  padding: 112px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 66px;
}

.pearl-word {
  color: #e7c889;
}

h2 {
  margin-bottom: 22px;
  font-size: 48px;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  gap: 10px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn i {
  font-size: 15px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #e7c889);
  color: #1b1710;
  box-shadow: 0 14px 36px rgba(201, 155, 88, 0.28);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

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

.btn-full {
  width: 100%;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 36px, 1280px);
  min-height: 68px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(18, 24, 23, 0.44);
  color: var(--white);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), top 0.25s var(--ease);
}

.site-header.is-scrolled {
  top: 10px;
  border-color: rgba(23, 32, 31, 0.08);
  background: rgba(255, 250, 241, 0.9);
  color: var(--ink);
}

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  color: var(--sea);
  font-size: 20px;
}

.brand-copy span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a {
  opacity: 0.86;
  transition: opacity 0.25s var(--ease), color 0.25s var(--ease);
}

.desktop-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.lang-switch button {
  min-width: 42px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  font-size: 13px;
  font-weight: 900;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.lang-switch button:not(.is-active):hover {
  background: rgba(255, 255, 255, 0.16);
}

.lang-switch .is-active {
  background: var(--white);
  color: var(--ink);
}

.site-header.is-scrolled .lang-switch {
  border-color: rgba(23, 32, 31, 0.1);
  background: rgba(23, 32, 31, 0.04);
}

.site-header.is-scrolled .lang-switch .is-active {
  background: var(--ink);
  color: var(--white);
}

.mobile-lang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  margin-bottom: 12px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.mobile-lang span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.mobile-lang-buttons {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(23, 32, 31, 0.08);
  border-radius: var(--radius);
  background: rgba(23, 32, 31, 0.04);
  gap: 2px;
}

.mobile-lang button {
  min-width: 42px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.mobile-lang .is-active {
  background: var(--ink);
  color: var(--white);
}

.icon-link,
.menu-toggle,
.menu-close,
.modal-close,
.lightbox-close {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
}

.icon-link i,
.menu-close i,
.modal-close i,
.lightbox-close i {
  font-size: 17px;
}

.menu-toggle {
  display: none;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--paper-soft);
  transform: translateY(-100%);
  transition: transform 0.42s var(--ease);
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav {
  display: grid;
  margin-top: 50px;
}

.mobile-nav a {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  font-weight: 800;
}

.mobile-menu-bottom {
  margin-top: auto;
}

.btn-menu {
  width: 100%;
  background: #25d366;
}

.hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  overflow: hidden;
  background: #131817;
}

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

.hero-image {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s var(--ease), transform 7s linear;
}

.hero-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 18, 17, 0.78), rgba(13, 18, 17, 0.32) 54%, rgba(13, 18, 17, 0.58)),
    linear-gradient(180deg, rgba(13, 18, 17, 0.2), rgba(13, 18, 17, 0.72));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  width: min(100% - 40px, 1240px);
  margin: auto auto 92px;
  gap: 36px;
}

.hero-content {
  width: min(100%, 730px);
}

.hero-lead {
  width: min(100%, 630px);
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  backdrop-filter: blur(12px);
}

.hero-points i {
  color: #e7c889;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  min-height: 132px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.booking-panel {
  position: relative;
  z-index: 5;
  width: min(100% - 40px, 1180px);
  margin: -54px auto 0;
}

.booking-strip {
  display: grid;
  grid-template-columns: 1.15fr 1.25fr 0.95fr auto;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: #5e6865;
  font-size: 12px;
  font-weight: 800;
}

.field-label {
  color: #5e6865;
  font-size: 12px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(23, 32, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  outline: 0;
  padding: 0 14px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

textarea {
  min-height: 98px;
  padding-top: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 155, 88, 0.16);
}

.guest-group {
  display: grid;
  gap: 8px;
}

.guest-inline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.guest-inline label {
  min-width: 0;
  gap: 5px;
}

.guest-inline label span {
  overflow: hidden;
  color: #5e6865;
  font-size: 10.5px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guest-inline input {
  min-height: 52px;
  padding: 0 8px;
  text-align: center;
}

.check-line {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 42px;
  gap: 10px;
}

.check-line input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  accent-color: var(--sea);
}

.check-line span {
  color: #3f4845;
  font-size: 13px;
  font-weight: 800;
}

.direct {
  padding-top: 96px;
}

.direct-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: stretch;
  gap: 18px;
}

.direct-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  overflow: hidden;
  padding: 36px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(19, 24, 23, 0.12), rgba(19, 24, 23, 0.78)),
    url("../Photos/13_resized.jpg") center / cover;
  color: var(--white);
  box-shadow: 0 18px 48px rgba(23, 32, 31, 0.12);
}

.direct-copy h2,
.direct-copy p {
  color: var(--white);
}

.direct-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.direct-copy .btn {
  align-self: flex-start;
  margin-top: 10px;
}

.direct-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.direct-cards article {
  position: relative;
  min-height: 254px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(23, 32, 31, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(23, 32, 31, 0.07);
}

.direct-cards article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(201, 155, 88, 0.25);
  border-radius: 50%;
}

.direct-cards span {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(23, 32, 31, 0.25);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
}

.direct-cards i {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 125, 138, 0.13);
  color: var(--sea);
}

.direct-cards h3 {
  font-size: 22px;
}

.direct-cards p {
  margin-bottom: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
}

.intro-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature-band {
  padding: 34px 0;
  background: #18221f;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.feature-grid article {
  min-height: 230px;
  padding: 34px;
  background: #18221f;
  color: var(--white);
}

.feature-grid i {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 20px;
}

.feature-grid h3 {
  color: var(--white);
}

.feature-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 780px);
  align-items: start;
  margin-bottom: 46px;
  gap: 0;
}

.section-head .eyebrow {
  margin-bottom: 12px;
}

.section-head h2 {
  margin-bottom: 18px;
}

.section-head > p:not(.eyebrow) {
  width: min(100%, 650px);
}

.section-head p:last-child {
  margin-bottom: 0;
}

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

.suite-card {
  overflow: hidden;
  border: 1px solid rgba(23, 32, 31, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(23, 32, 31, 0.08);
}

.suite-card-image {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #d7d0c3;
}

.suite-card-image img {
  transition: transform 0.55s var(--ease);
}

.suite-card:hover .suite-card-image img {
  transform: scale(1.045);
}

.suite-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.suite-status {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(18, 24, 23, 0.74);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
  backdrop-filter: blur(12px);
}

.suite-status i {
  color: #e7c889;
  font-size: 13px;
}

.suite-card-body {
  padding: 24px;
}

.suite-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.suite-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f2eee5;
  color: #39413f;
  font-size: 12px;
  font-weight: 800;
  gap: 6px;
}

.suite-card h3 {
  font-size: 24px;
}

.suite-card p {
  min-height: 84px;
}

.suite-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.suite-price {
  color: var(--gold-dark);
  font-weight: 900;
}

.suite-open {
  min-height: 44px;
  padding: 0 14px;
}

.location {
  background: var(--paper-soft);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: center;
  gap: 54px;
}

.location-image,
.location-map {
  height: 650px;
  overflow: hidden;
  border-radius: var(--radius);
}

.location-map,
.map-panel-live {
  position: relative;
  background: #d7d0c3;
}

.location-map iframe,
.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-address {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.94);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  gap: 10px;
  box-shadow: 0 14px 36px rgba(23, 32, 31, 0.16);
  backdrop-filter: blur(12px);
}

.location-address i {
  color: var(--sea);
}

.location-copy {
  padding-left: 16px;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.location-list span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 32, 31, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  color: #3b4542;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
}

.location-list i {
  color: var(--sea);
}

.gallery-head {
  margin-bottom: 36px;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  height: 640px;
  gap: 14px;
}

.gallery-feature,
.gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #e3ddd1;
  padding: 0;
}

.gallery-feature {
  height: 100%;
  min-height: 0;
}

.gallery-side {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: 100%;
  min-height: 0;
  gap: 14px;
}

.gallery-side .gallery-item {
  min-height: 0;
}

.gallery-feature span,
.gallery-item span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(17, 24, 22, 0.72);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-align: left;
  backdrop-filter: blur(12px);
}

.gallery-feature span {
  display: grid;
  justify-content: start;
  gap: 3px;
}

.gallery-feature small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.gallery-feature::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 22, 0), rgba(17, 24, 22, 0.34));
  pointer-events: none;
}

.gallery-feature img,
.gallery-item img {
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.gallery-feature:hover img,
.gallery-item:hover img {
  filter: saturate(1.08);
  transform: scale(1.04);
}

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

.gallery-extra-item {
  position: relative;
  min-height: 218px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #e3ddd1;
  padding: 0;
}

.gallery-extra-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 22, 0), rgba(17, 24, 22, 0.46));
  pointer-events: none;
}

.gallery-extra-item img {
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.gallery-extra-item:hover img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.gallery-extra-item span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  gap: 3px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(17, 24, 22, 0.72);
  color: var(--white);
  text-align: left;
  backdrop-filter: blur(12px);
}

.gallery-extra-item strong {
  font-size: 13px;
  line-height: 1.1;
}

.gallery-extra-item small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.page-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 150px 0 82px;
  background: #111816;
}

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

.page-hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 18, 17, 0.82), rgba(13, 18, 17, 0.34) 60%, rgba(13, 18, 17, 0.68)),
    linear-gradient(180deg, rgba(13, 18, 17, 0.2), rgba(13, 18, 17, 0.76));
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 0.65fr;
  align-items: end;
  gap: 48px;
}

.page-hero h1 {
  font-size: 60px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.page-hero-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
}

.page-hero-card span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.about-story {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 56px;
}

.story-stack {
  display: grid;
  grid-template-columns: 0.92fr 0.78fr;
  align-items: end;
  gap: 12px;
}

.story-stack img {
  height: 520px;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(23, 32, 31, 0.12);
}

.story-stack img:last-child {
  height: 360px;
}

.story-copy {
  align-self: center;
}

.story-copy .btn {
  margin-top: 10px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.stat-strip div {
  min-height: 150px;
  padding: 26px;
  background: #18221f;
  color: var(--white);
}

.stat-strip strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
}

.stat-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

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

.value-card,
.amenity-card,
.contact-card,
.suite-detail-card {
  padding: 28px;
  border: 1px solid rgba(23, 32, 31, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(23, 32, 31, 0.07);
}

.value-card i,
.amenity-card i,
.contact-card i {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 125, 138, 0.1);
  color: var(--sea);
}

.suite-page-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}

.suite-detail-card {
  display: grid;
  align-content: end;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 24, 22, 0.04), rgba(17, 24, 22, 0.82)),
    url("../Penthouse/16_resized.jpg") center / cover;
  color: var(--white);
}

.suite-detail-card h2,
.suite-detail-card p {
  color: var(--white);
}

.suite-detail-card p {
  color: rgba(255, 255, 255, 0.78);
}

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

.matrix-item {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper-soft);
  border: 1px solid rgba(23, 32, 31, 0.1);
}

.matrix-item span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
}

.contact-panel {
  padding: 34px;
  border-radius: var(--radius);
  background: #18221f;
  color: var(--white);
}

.contact-panel h2,
.contact-panel p {
  color: var(--white);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-lines a,
.contact-lines span {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  gap: 12px;
}

.contact-form-panel {
  padding: 34px;
  border: 1px solid rgba(23, 32, 31, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(23, 32, 31, 0.08);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.map-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 125, 138, 0.18), rgba(201, 155, 88, 0.18)),
    url("../Photos/18_resized.jpg") center / cover;
}

.map-panel-live {
  min-height: 520px;
  background: #d7d0c3;
}

.contact-map-section {
  padding-top: 72px;
}

.contact-map-head {
  display: grid;
  grid-template-columns: minmax(0, 680px) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 24px;
}

.contact-map-head h2 {
  margin-bottom: 14px;
}

.contact-map-head p:last-child {
  margin-bottom: 0;
}

.contact-map-frame {
  height: min(72vh, 680px);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 31, 0.1);
  border-radius: var(--radius);
  background: #d7d0c3;
  box-shadow: 0 18px 48px rgba(23, 32, 31, 0.08);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(100% - 48px, 420px);
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.site-footer {
  padding: 58px 0;
  background: #101716;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.48fr 0.72fr 0.95fr;
  gap: 42px;
}

.footer-brand {
  margin-bottom: 22px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--gold);
}

.footer-map {
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  border: 0;
  filter: saturate(0.92);
}

.closing {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 96px 20px;
  background: #111816;
}

.closing-media,
.closing-media::after {
  position: absolute;
  inset: 0;
}

.closing-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(17, 24, 22, 0.86), rgba(17, 24, 22, 0.54));
}

.closing-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  color: var(--white);
  text-align: center;
}

.closing-inner p {
  color: rgba(255, 255, 255, 0.78);
}

.closing-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 35;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp i {
  font-size: 25px;
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

.modal.is-open,
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 15, 0.62);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  height: min(92svh, 760px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-soft);
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.3s var(--ease);
}

.modal.is-open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  border-color: rgba(23, 32, 31, 0.12);
  background: rgba(255, 255, 255, 0.84);
}

.modal-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  height: 100%;
}

.modal-visual {
  position: relative;
  min-height: 100%;
  background: #121817;
}

.modal-visual > img {
  object-fit: contain;
  background: #121817;
}

.modal-photo-count {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 24, 22, 0.72);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.modal-photo-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(17, 24, 22, 0.58);
  color: var(--white);
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.modal-photo-arrow:hover {
  background: rgba(15, 125, 138, 0.78);
  transform: translateY(-50%) scale(1.04);
}

.modal-photo-arrow.is-prev {
  left: 18px;
}

.modal-photo-arrow.is-next {
  right: 18px;
}

.modal-photo-arrow.is-hidden {
  display: none;
}

.modal-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
}

.modal-gallery {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 66px;
  z-index: 2;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(17, 24, 22, 0.34);
  box-shadow: 0 12px 30px rgba(17, 24, 22, 0.24);
  backdrop-filter: blur(12px);
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.modal-gallery::-webkit-scrollbar {
  display: none;
}

.modal-thumb {
  flex: 0 0 74px;
  width: 74px;
  height: 56px;
  overflow: hidden;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 6px;
  background: var(--white);
  opacity: 0.82;
  scroll-snap-align: center;
  transition: border-color 0.2s var(--ease), opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.modal-thumb:hover,
.modal-thumb.is-active {
  border-color: var(--gold);
  opacity: 1;
}

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

.modal-order-cta {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

.order-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.order-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  max-height: min(92svh, 900px);
  overflow: auto;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--paper-soft);
  box-shadow: var(--shadow);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s var(--ease);
}

.order-modal.is-open .order-panel {
  transform: translateY(0) scale(1);
}

.order-head {
  padding-right: 48px;
  margin-bottom: 24px;
}

.order-head h2 {
  margin-bottom: 12px;
  font-size: 38px;
}

.order-head p:not(.eyebrow) {
  margin-bottom: 0;
}

.order-widgets-pool {
  position: relative;
}

.order-widgets-pool [data-widget-suite] {
  display: none;
}

.order-widgets-pool [data-widget-suite].is-active {
  display: block;
}

.modal-content {
  overflow: auto;
  padding: 44px 40px;
}

.modal-content h2 {
  font-size: 38px;
}

.modal-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.modal-specs span,
.room-number {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(23, 32, 31, 0.1);
  border-radius: 999px;
  background: var(--white);
  color: #36413e;
  font-size: 13px;
  font-weight: 800;
  gap: 7px;
}

.room-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 14px;
}

.room-number {
  border-color: rgba(15, 125, 138, 0.2);
  background: rgba(15, 125, 138, 0.08);
  color: var(--sea);
}

.room-number.is-selected {
  background: var(--sea);
  color: var(--white);
}

.room-insight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 0 0 28px;
  border: 1px solid rgba(23, 32, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(23, 32, 31, 0.1);
}

.room-insight div {
  min-height: 86px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.room-insight span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.room-insight strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.sleeping-layout {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid rgba(15, 125, 138, 0.18);
  border-radius: var(--radius);
  background: rgba(15, 125, 138, 0.06);
}

.sleeping-layout h3 {
  margin: 0;
  font-size: 18px;
}

.sleeping-layout div {
  display: grid;
  gap: 8px;
}

.sleeping-layout span {
  display: flex;
  align-items: flex-start;
  color: #35413e;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  gap: 10px;
}

.sleeping-layout i {
  margin-top: 3px;
  color: var(--sea);
}

.booking-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.lightbox {
  background: rgba(12, 16, 15, 0.82);
}

.lightbox img {
  width: min(100%, 1080px);
  height: min(82vh, 760px);
  border-radius: var(--radius);
  background: #121817;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2;
  background: var(--white);
  color: var(--ink);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  min-height: 48px;
  width: min(100% - 40px, 460px);
  padding: 14px 18px;
  border-radius: var(--radius);
  background: #17201f;
  color: var(--white);
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 16px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.date-popover {
  position: absolute;
  z-index: 130;
  width: min(94vw, 680px);
  overflow: hidden;
  border: 1px solid rgba(23, 32, 31, 0.1);
  border-radius: var(--radius);
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.date-picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.date-picker-head strong {
  font-size: 14px;
}

.date-nav {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(23, 32, 31, 0.1);
  border-radius: var(--radius);
  background: var(--white);
}

.date-months {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.date-month {
  padding: 16px;
  background: var(--paper-soft);
}

.date-month h4 {
  margin: 0 0 12px;
  font-size: 15px;
}

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

.date-weekdays span {
  display: grid;
  height: 26px;
  place-items: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.date-day {
  display: grid;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.date-day:not(:disabled):hover {
  background: rgba(201, 155, 88, 0.16);
}

.date-day:disabled {
  color: rgba(23, 32, 31, 0.24);
  cursor: default;
}

.date-day.is-start,
.date-day.is-end {
  background: var(--sea);
  color: var(--white);
}

.date-day.is-range {
  background: rgba(15, 125, 138, 0.12);
  color: var(--sea);
}

.date-empty {
  min-height: 38px;
}

.date-picker-foot {
  padding: 13px 16px 15px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (width <= 1080px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 40px;
  }

  .desktop-nav,
  .header-actions .btn-small,
  .lang-switch {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    margin-bottom: 104px;
  }

  .hero-facts {
    width: min(100%, 720px);
  }

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

  .booking-strip .btn {
    grid-column: span 2;
  }

  .intro-grid,
  .direct-grid,
  .page-hero-inner,
  .about-story,
  .suite-page-grid,
  .contact-shell,
  .footer-grid,
  .location-grid,
  .modal-layout {
    grid-template-columns: 1fr;
  }

  .intro-text,
  .direct-cards,
  .values-grid,
  .amenity-grid,
  .contact-card-grid,
  .location-list {
    grid-template-columns: 1fr;
  }

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

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

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

@media (width <= 760px) {
  .section-inner,
  .booking-panel,
  .hero-inner,
  .site-header {
    width: min(100% - 24px, 1240px);
  }

  .section-pad {
    padding: 78px 0;
  }

  .site-header {
    top: 12px;
    min-height: 62px;
    padding: 8px 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy span {
    font-size: 10px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-inner {
    padding-top: 112px;
    margin-bottom: 88px;
  }

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

  .hero-actions,
  .closing-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-facts div {
    min-height: 128px;
    padding: 16px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 0;
  }

  .hero-facts div:last-child {
    border-right: 0;
  }

  .booking-panel {
    margin-top: -34px;
  }

  .booking-strip,
  .feature-grid,
  .suite-grid,
  .gallery-showcase,
  .gallery-side,
  .direct-cards,
  .gallery-extra-grid,
  .room-insight,
  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-strip .btn {
    grid-column: auto;
  }

  .feature-grid {
    gap: 0;
  }

  .feature-grid article {
    min-height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px;
  }

  .page-hero {
    min-height: 560px;
    padding: 128px 0 64px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero-card {
    padding: 22px;
  }

  .story-stack,
  .stat-strip,
  .suite-matrix {
    grid-template-columns: 1fr;
  }

  .story-stack img,
  .story-stack img:last-child {
    height: 360px;
  }

  .stat-strip div {
    min-height: 116px;
  }

  .contact-panel,
  .contact-form-panel {
    padding: 26px;
  }

  .direct {
    padding-top: 74px;
  }

  .direct-copy {
    min-height: 430px;
    padding: 28px;
  }

  .direct-cards article {
    min-height: auto;
  }

  .suite-card-image {
    height: 260px;
  }

  .suite-card p {
    min-height: 0;
  }

  .location-image,
  .location-map {
    height: 420px;
  }

  .contact-map-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-map-head .btn {
    width: 100%;
  }

  .contact-map-frame {
    height: 460px;
    min-height: 460px;
  }

  .map-panel-live {
    min-height: 460px;
  }

  .location-copy {
    padding-left: 0;
  }

  .gallery-feature,
  .gallery-side .gallery-item,
  .gallery-extra-item {
    height: auto;
    min-height: 280px;
  }

  .gallery-showcase,
  .gallery-side {
    height: auto;
  }

  .modal {
    padding: 0;
    align-items: end;
  }

  .order-modal {
    padding: 0;
    align-items: end;
  }

  .modal-panel {
    width: 100%;
    height: 94svh;
    border-radius: 8px 8px 0 0;
  }

  .order-panel {
    width: 100%;
    max-height: 94svh;
    padding: 30px 18px 32px;
    border-radius: 8px 8px 0 0;
  }

  .order-head h2 {
    font-size: 32px;
  }

  .modal-content {
    padding: 30px 18px 32px;
  }

  .modal-content h2 {
    font-size: 32px;
  }

  .modal-visual {
    min-height: 260px;
  }

  .modal-gallery {
    left: 12px;
    right: 12px;
    bottom: 58px;
  }

  .modal-photo-count {
    top: 12px;
    left: 12px;
  }

  .modal-photo-arrow {
    width: 38px;
    height: 38px;
  }

  .modal-photo-arrow.is-prev {
    left: 12px;
  }

  .modal-photo-arrow.is-next {
    right: 12px;
  }

  .modal-thumb {
    flex-basis: 60px;
    width: 60px;
    height: 46px;
  }

  .date-popover {
    left: 12px !important;
    width: calc(100vw - 24px);
  }

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

  .floating-whatsapp {
    display: none;
  }
}

@media (width <= 430px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .icon-link {
    display: none;
  }

  .hero-facts strong {
    font-size: 26px;
  }

  .hero-facts span {
    font-size: 11px;
  }

  .suite-card-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .suite-open {
    width: 100%;
  }
}

section.booking-panel {
    display: none;
}
.direct-cards article::after {
    display: none;
}
html :where([style*=border-color]) {
	border-style: initial!important;
}
.order-modal .booking-form {
	display: none;!important
}


