/* =========================
   GLOBAL TOKENS
========================= */
:root {
  --color-navy: #0d1b2a;
  --color-navy-soft: #1b263b;
  --color-gold: #5e142d;
  --color-gold-soft: #c4879b;
  --color-bg: #f8f9fa;
  --color-surface: #ffffff;
  --color-text: #222222;
  --color-muted: #5f6875;
  --color-border: #d8dde4;
  --shadow-sm: 0 10px 24px rgba(11, 25, 41, 0.07);
  --shadow-md: 0 18px 40px rgba(11, 25, 41, 0.11);
  --shadow-lg: 0 28px 60px rgba(11, 25, 41, 0.16);
  --shadow-focus: 0 0 0 4px rgba(94, 20, 45, 0.2);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 120px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --container-width: 1200px;
  --container-gutter: 24px;
  --header-height: 92px;
  --header-height-mobile: 64px;
  --anchor-scroll-offset: 20px;
  --section-space: clamp(var(--space-7), 9vw, var(--space-8));
  --wa-fab-size: 64px;
  --wa-fab-bottom: max(16px, calc(16px + env(safe-area-inset-bottom)));
  --hero-image: url("PHOTO1.jpg");
  --transition-fast:
    transform 0.24s ease,
    opacity 0.24s ease,
    color 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease;
  --transition-standard:
    transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 0.32s ease,
    background-color 0.32s ease,
    border-color 0.32s ease,
    color 0.32s ease;
}

/* =========================
   GLOBAL BASE / RESET
========================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-scroll-offset);
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 0.2vw + 0.97rem, 1.0625rem);
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.booking-panel-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.01em;
  line-height: 1.14;
  color: var(--color-navy);
}

html:lang(zh) body {
  font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
}

html:lang(ko) body {
  font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', 'Noto Sans KR', sans-serif;
}

html:lang(zh) h1,
html:lang(zh) h2,
html:lang(zh) h3,
html:lang(zh) h4,
html:lang(zh) h5,
html:lang(zh) h6,
html:lang(ko) h1,
html:lang(ko) h2,
html:lang(ko) h3,
html:lang(ko) h4,
html:lang(ko) h5,
html:lang(ko) h6 {
  font-family: inherit;
  letter-spacing: 0;
  line-height: 1.22;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(var(--container-width), 100% - (var(--container-gutter) * 2));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.about-section,
.rooms-section,
.services-section,
.gallery-section,
.location-section,
.cta-section,
.contact-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: var(--space-6);
}

.section-eyebrow {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.section-heading h2,
.about-content h2,
.location-content h2,
.contact-info h2,
.cta-content h2 {
  font-size: clamp(2.4rem, 4.9vw, 3rem);
  margin-bottom: var(--space-3);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(var(--space-4), 5vw, 72px);
  align-items: center;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  min-height: 48px;
  padding: 13px 28px;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition-standard);
}

.btn-primary {
  background: var(--color-gold);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(94, 20, 45, 0.26);
}

.btn-primary:hover {
  background: #721a36;
  transform: translate3d(0, -3px, 0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translate3d(0, -3px, 0);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border-color: rgba(13, 27, 42, 0.16);
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-navy);
  transform: translate3d(0, -3px, 0);
}

/* =========================
   NAVBAR
========================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1100;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(12, 24, 41, 0.1);
}

.navbar {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(var(--space-3), 2.4vw, var(--space-4));
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.42rem;
  color: #ffffff;
  transition: color 0.35s ease;
}

.brand-logo-image {
  position: relative;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 12px;
  transition: var(--transition-standard);
}

.brand-logo__img {
  grid-area: 1 / 1;
  width: 228px;
  height: 76px;
  max-width: min(300px, 42vw);
  object-fit: cover;
  object-position: center;
  transition: opacity 0.28s ease;
}

.brand-logo__img--light {
  opacity: 1;
}

.brand-logo__img--dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo,
.site-header.menu-open .brand-logo,
.site-footer .brand-logo {
  color: var(--color-navy);
}

.site-header.is-scrolled .brand-logo-image,
.site-header.menu-open .brand-logo-image {
  padding: 0;
}

.site-header.is-scrolled .brand-logo__img--light,
.site-header.menu-open .brand-logo__img--light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo__img--dark,
.site-header.menu-open .brand-logo__img--dark {
  opacity: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: clamp(20px, 2.4vw, 36px);
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--space-2), 2vw, var(--space-5));
  list-style: none;
  min-width: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a,
.nav-submenu-toggle {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
}

.nav-submenu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: inherit;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.nav-links a::after,
.nav-submenu-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-submenu-toggle:hover::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-submenu-toggle:hover {
  color: #ffffff;
}

.site-header.is-scrolled .nav-links a,
.site-header.menu-open .nav-links a,
.site-header.is-scrolled .nav-submenu-toggle,
.site-header.menu-open .nav-submenu-toggle {
  color: var(--color-navy-soft);
}

.nav-submenu {
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 32;
  min-width: 192px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 8px;
  background: rgba(17, 29, 46, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 16px 32px rgba(7, 15, 27, 0.24);
  display: grid;
  gap: 4px;
  opacity: 0;
  transform: translate(-50%, -8px);
  pointer-events: none;
  transition: var(--transition-fast);
}

.nav-item-has-submenu.is-open .nav-submenu {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.site-header.is-scrolled .nav-submenu,
.site-header.menu-open .nav-submenu {
  border-color: rgba(13, 27, 42, 0.12);
  background: #ffffff;
}

.nav-submenu a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-submenu a::after {
  display: none;
}

.nav-submenu a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .nav-submenu a,
.site-header.menu-open .nav-submenu a {
  color: var(--color-navy-soft);
}

.site-header.is-scrolled .nav-submenu a:hover,
.site-header.menu-open .nav-submenu a:hover {
  color: var(--color-navy);
  background: rgba(13, 27, 42, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.language-switcher {
  position: relative;
  min-width: 0;
  width: auto;
}

.lang-current {
  width: auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-pill);
  min-height: 44px;
  padding: 8px 10px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  backdrop-filter: blur(5px);
  transition: var(--transition-fast);
}

.lang-current__label {
  flex: 0 1 auto;
  white-space: nowrap;
}

.lang-current__flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-current:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(123, 30, 58, 0.28);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  width: max-content;
  min-width: 170px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  padding: 5px;
  background: rgba(17, 29, 46, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 38px rgba(7, 15, 27, 0.22);
  display: grid;
  gap: 4px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: var(--transition-fast);
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  border-radius: 9px;
  padding: 7px 8px;
  font: inherit;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: left;
}

.lang-btn.is-active {
  background: rgba(123, 30, 58, 0.22);
  color: #ffffff;
}

.lang-btn.is-active::after {
  content: "";
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.95;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.lang-btn span[aria-hidden='true'] {
  font-size: 1rem;
  line-height: 1;
}

.lang-btn span:not([aria-hidden='true']) {
  white-space: nowrap;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-btn:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.36);
}

.site-header.is-scrolled .language-switcher,
.site-header.menu-open .language-switcher {
  background: transparent;
}

.site-header.is-scrolled .lang-current,
.site-header.menu-open .lang-current {
  background: #f4f6f8;
  border-color: rgba(13, 27, 42, 0.12);
  color: var(--color-navy-soft);
}

.site-header.is-scrolled .language-menu,
.site-header.menu-open .language-menu {
  background: #ffffff;
  border-color: rgba(13, 27, 42, 0.12);
}

.site-header.is-scrolled .lang-btn,
.site-header.menu-open .lang-btn {
  color: var(--color-navy-soft);
}

.site-header.is-scrolled .lang-btn.is-active,
.site-header.menu-open .lang-btn.is-active {
  background: rgba(123, 30, 58, 0.24);
  color: var(--color-navy);
}

.nav-cta {
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(94, 20, 45, 0.3);
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.mobile-booking-cta {
  display: none;
}

.nav-toggle {
  display: none;
}

/* =========================
   FLOATING WHATSAPP
========================= */
.whatsapp-fab {
  position: fixed;
  right: clamp(14px, 2.4vw, 28px);
  bottom: var(--wa-fab-bottom);
  z-index: 1200;
  width: var(--wa-fab-size);
  height: var(--wa-fab-size);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(145deg, #25d366 0%, #1ca34f 100%);
  box-shadow:
    0 18px 34px rgba(10, 43, 22, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 22px 40px rgba(8, 36, 19, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.whatsapp-fab:focus-visible {
  outline: none;
  box-shadow:
    0 22px 40px rgba(8, 36, 19, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 0 0 4px rgba(37, 211, 102, 0.35);
}

.support-chat-panel {
  position: fixed;
  right: clamp(12px, 2vw, 24px);
  bottom: calc(var(--wa-fab-bottom) + var(--wa-fab-size) + 10px);
  width: min(384px, calc(100vw - 24px));
  max-height: min(620px, calc(100vh - 120px));
  border-radius: 18px;
  border: 1px solid rgba(13, 27, 42, 0.14);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(11, 25, 41, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 1199;
}

.support-chat-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.support-chat-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(145deg, #6e1b38, #521129);
  color: #ffffff;
}

.support-chat-panel__header h3 {
  margin: 0;
  font-size: 1rem;
  color: #ffffff;
}

.support-chat-panel__header p {
  margin: 2px 0 0;
  font-size: 0.82rem;
  opacity: 0.95;
}

.support-chat-panel__header button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.support-chat-panel__body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #f5f7fb;
  flex: 1;
}

.support-chat-messages {
  flex: 1;
  min-height: 120px;
  overflow-y: auto;
  scrollbar-gutter: stable;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-chat-message {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 13px;
  font-size: 0.92rem;
  line-height: 1.45;
  white-space: pre-line;
  animation: support-chat-in 0.2s ease;
}

.support-chat-message--bot {
  align-self: flex-start;
  background: #edf2f8;
  color: #1b263b;
  border-top-left-radius: 5px;
}

.support-chat-message--user {
  align-self: flex-end;
  background: #f4e3ea;
  color: #4a1027;
  border-top-right-radius: 5px;
}

.support-chat-message--action {
  background: transparent;
  padding: 0;
  max-width: 100%;
}

.support-chat-action-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  background: linear-gradient(145deg, #6e1b38, #521129);
}

.support-chat-typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.support-chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7b8da1;
  animation: support-chat-pulse 1s infinite ease-in-out;
}

.support-chat-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.support-chat-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

.support-chat-questions-launcher {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.support-chat-questions-launcher__btn {
  border: 1px solid #cc8ea5;
  border-radius: 999px;
  background: linear-gradient(145deg, #ffffff, #f8ecf1);
  color: #5e142d;
  padding: 8px 18px;
  min-height: 38px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.support-chat-questions-launcher__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(94, 20, 45, 0.14);
}

.support-chat-quick {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  border: 1px solid #d6e0ec;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
  padding: 10px;
  box-shadow: 0 6px 16px rgba(13, 27, 42, 0.06);
}

.support-chat-quick__title {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #607184;
}

.support-chat-quick__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-height: min(48vh, 280px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-right: 0;
}

.support-chat-quick__list::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.support-chat-quick button {
  position: relative;
  border: 1px solid #d9b2c0;
  border-radius: 11px;
  background: #ffffff;
  color: #5e142d;
  padding: 9px 28px 9px 10px;
  font-size: 0.81rem;
  line-height: 1.28;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  animation: support-chat-question-in 0.26s ease var(--chat-question-delay, 0ms) both;
}

.support-chat-quick button::after {
  content: '›';
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  line-height: 1;
  color: #a06279;
}

.support-chat-quick button:hover {
  transform: translateY(-1px);
  border-color: #c5859b;
  box-shadow: 0 6px 12px rgba(94, 20, 45, 0.12);
}

.support-chat-quick button.is-whatsapp {
  border-color: #a9d9c0;
  background: linear-gradient(145deg, #e8f7ef, #d8f1e4);
  color: #1f6f45;
  font-weight: 700;
}

.support-chat-quick button.is-whatsapp::after {
  content: '↗';
  color: #1d8a4f;
}

.support-chat-whatsapp {
  margin: 10px 12px 0;
  border: 1px solid #d6dfe9;
  border-radius: 11px;
  background: #ffffff;
  padding: 10px;
}

.support-chat-whatsapp.is-locked {
  border-color: #dfe6ee;
  background: #f7f9fc;
}

.support-chat-whatsapp p {
  margin: 0 0 8px;
  font-size: 0.82rem;
  color: #4f6273;
  line-height: 1.4;
}

.support-chat-whatsapp__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, #25d366, #1ca34f);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

.support-chat-whatsapp__btn.is-disabled {
  background: linear-gradient(145deg, #99b7a6, #8ba799);
  cursor: not-allowed;
}

.support-chat-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(13, 27, 42, 0.1);
  background: #ffffff;
}

.support-chat-form input {
  flex: 1;
  border: 1px solid #cdd8e3;
  border-radius: 10px;
  padding: 10px 11px;
  font-family: inherit;
  font-size: 0.9rem;
}

.support-chat-form button {
  border: 0;
  border-radius: 10px;
  background: #5e142d;
  color: #ffffff;
  padding: 0 14px;
  font-weight: 700;
  cursor: pointer;
}

.support-chat-form input:focus-visible,
.support-chat-form button:focus-visible,
.support-chat-action-link:focus-visible,
.support-chat-quick button:focus-visible,
.support-chat-questions-launcher__btn:focus-visible,
.support-chat-panel__header button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(94, 20, 45, 0.25);
}

.support-chat-whatsapp__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25);
}

@keyframes support-chat-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes support-chat-question-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes support-chat-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

/* =========================
   HERO SECTION
========================= */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #ffffff;
  isolation: isolate;
}

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

.hero-media {
  z-index: -3;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(128deg, rgba(7, 15, 27, 0.62) 10%, rgba(7, 15, 27, 0.28) 54%, rgba(7, 15, 27, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 15, 27, 0.22) 0%, rgba(7, 15, 27, 0.66) 95%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding-top: calc(var(--header-height) + 4px);
  padding-bottom: 124px;
}

.hero-kicker {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--space-3);
}

#hero-title {
  color: #ffffff;
  font-size: clamp(4rem, 7.6vw, 4.5rem);
  margin-bottom: var(--space-3);
  text-wrap: balance;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 2.3vw, 1.48rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: var(--space-2);
}

.hero-description {
  max-width: 740px;
  margin-inline: auto;
  font-size: clamp(1rem, 0.55vw + 0.92rem, 1.14rem);
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  margin-top: var(--space-5);
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.booking-panel {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 32px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.booking-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-panel__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  background: rgba(4, 10, 19, 0.62);
  backdrop-filter: blur(7px);
  cursor: pointer;
}

.booking-panel__dialog {
  position: relative;
  width: min(1140px, 100%);
  max-height: min(88svh, 920px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(17, 27, 44, 0.97) 0%, rgba(29, 43, 68, 0.94) 100%),
    radial-gradient(circle at 88% 10%, rgba(123, 30, 58, 0.22) 0%, rgba(123, 30, 58, 0) 42%);
  box-shadow:
    0 40px 86px rgba(6, 14, 25, 0.46),
    0 10px 26px rgba(7, 15, 27, 0.28);
  padding: clamp(20px, 3.3vw, 36px);
  transform: translateY(16px) scale(0.985);
  transition: transform 0.35s ease;
  overflow: hidden;
  overflow-y: auto;
}

.booking-panel__dialog::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0.08) 100%);
  pointer-events: none;
}

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

.booking-panel__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-standard);
}

.booking-panel__close:hover {
  background: rgba(123, 30, 58, 0.46);
  border-color: rgba(255, 255, 255, 0.45);
}

.booking-panel__eyebrow {
  margin: 0 0 12px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

#booking-panel-title {
  color: #ffffff;
  font-size: clamp(1.65rem, 3.1vw, 2.35rem);
  margin: 0 0 clamp(20px, 2.2vw, 28px);
}

.booking-widget {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  position: relative;
  overflow: visible;
  width: 100%;
  min-width: 0;
}

.booking-widget > * {
  min-width: 0;
}

.booking-field {
  position: relative;
  text-align: left;
  width: 100%;
  max-width: 340px;
  min-width: 0;
  overflow: hidden;
}

#single-occupancy-field {
  max-width: 300px;
}

.booking-field.is-hidden,
.booking-occupancies.is-hidden {
  display: none;
}

.booking-field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.booking-label-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.86);
}

.booking-label-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-field select,
.booking-date-trigger {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 56px;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-navy);
  font-family: inherit;
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 4px 12px rgba(7, 15, 27, 0.16);
  transition: var(--transition-standard);
}

.booking-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-navy) 50%),
    linear-gradient(135deg, var(--color-navy) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 53%,
    calc(100% - 16px) 53%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.booking-date-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  text-align: left;
  cursor: pointer;
}

.booking-date-trigger__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(55, 101, 154, 0.66);
  font-weight: 600;
}

.booking-date-trigger.has-value .booking-date-trigger__value {
  color: var(--color-navy);
}

.booking-date-trigger__nights {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #8c1f45 0%, #5d1630 100%);
  box-shadow: 0 8px 16px rgba(93, 22, 48, 0.24);
  white-space: nowrap;
}

.booking-date-trigger__nights[hidden],
.booking-date-trigger__nights:empty {
  display: none;
}

.booking-date-native {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  border: 0;
  padding: 0;
}

.booking-field select:hover,
.booking-date-trigger:hover,
.booking-occupancy-row select:hover {
  border-color: rgba(123, 30, 58, 0.52);
}

.booking-field select:focus,
.booking-date-trigger:focus-visible {
  outline: none;
  border-color: rgba(123, 30, 58, 0.86);
  box-shadow:
    var(--shadow-focus),
    0 10px 24px rgba(7, 15, 27, 0.22);
  background: #ffffff;
}

.booking-date-trigger.is-active {
  border-color: rgba(94, 20, 45, 0.46);
  box-shadow: 0 10px 24px rgba(7, 15, 27, 0.18);
  background: #ffffff;
}

.booking-date-picker {
  position: fixed;
  top: var(--booking-date-picker-top, 0px);
  left: var(--booking-date-picker-left, 0px);
  width: min(360px, calc(100vw - 32px));
  max-width: calc(100vw - 24px);
  z-index: 4000;
  border: 1px solid rgba(94, 20, 45, 0.2);
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 24px 42px rgba(8, 16, 28, 0.2),
    0 8px 18px rgba(8, 16, 28, 0.1);
  padding: 14px;
  display: grid;
  gap: 10px;
  transform-origin: top left;
}

.booking-date-picker.is-above {
  transform-origin: bottom left;
}

.booking-date-picker__toolbar {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 10px;
}

.booking-date-picker__current {
  margin: 0;
  text-align: center;
  color: #141821;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.booking-date-picker__nav {
  border: 1px solid rgba(94, 20, 45, 0.22);
  border-radius: 10px;
  background: rgba(94, 20, 45, 0.04);
  color: #5e142d;
  width: 40px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.booking-date-picker__nav:hover {
  background: rgba(94, 20, 45, 0.12);
  border-color: rgba(94, 20, 45, 0.34);
}

.booking-date-picker__weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.booking-date-picker__weekdays span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(20, 24, 33, 0.72);
}

.booking-date-picker__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.booking-date-picker__day {
  border: 1px solid rgba(94, 20, 45, 0);
  border-radius: 10px;
  background: #ffffff;
  color: #141821;
  min-height: 38px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  transition: var(--transition-fast);
}

.booking-date-picker__day.is-outside {
  color: rgba(20, 24, 33, 0.34);
}

.booking-date-picker__day.is-disabled {
  color: rgba(20, 24, 33, 0.22);
  cursor: not-allowed;
}

.booking-date-picker__day.is-today {
  border-color: rgba(94, 20, 45, 0.34);
  background: rgba(94, 20, 45, 0.04);
}

.booking-date-picker__day:hover:not(.is-disabled),
.booking-date-picker__day:focus-visible:not(.is-disabled) {
  outline: none;
  background: rgba(94, 20, 45, 0.12);
  border-color: rgba(94, 20, 45, 0.32);
}

.booking-date-picker__day.is-range {
  background: rgba(94, 20, 45, 0.12);
  border-radius: 0;
}

.booking-date-picker__day.is-start,
.booking-date-picker__day.is-end {
  background: linear-gradient(135deg, #8c1f45 0%, #5d1630 100%);
  color: #ffffff;
  border-color: rgba(94, 20, 45, 0.28);
}

.booking-date-picker__day.is-start {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.booking-date-picker__day.is-end {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.booking-date-picker__day.is-start.is-end {
  border-radius: 10px;
}

.booking-date-picker__summary {
  margin: 2px 0 0;
  min-height: 1.2em;
  text-align: center;
  color: #1d2431;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.booking-date-picker[hidden] {
  display: none;
}

.booking-occupancies {
  order: 5;
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%),
    rgba(14, 24, 40, 0.3);
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.booking-occupancies__head {
  display: grid;
  grid-template-columns: 104px minmax(220px, 420px);
  gap: 16px;
  align-items: center;
  justify-content: start;
  min-width: 0;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.booking-occupancies__title {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.booking-occupancies__title > span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.booking-occupancies__title .booking-label-icon {
  width: 16px;
  height: 16px;
}

.booking-occupancies__title .booking-label-icon svg {
  width: 16px;
  height: 16px;
}

.booking-occupancies__list {
  display: grid;
  gap: 10px;
}

.booking-occupancy-row {
  display: grid;
  grid-template-columns: 104px minmax(220px, 420px);
  gap: 16px;
  align-items: center;
  justify-content: start;
  min-width: 0;
}

.booking-occupancy-row__room {
  width: 40px;
  height: 40px;
  margin-inline: auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(7, 15, 27, 0.22);
}

.booking-occupancy-row select {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-navy);
  font: inherit;
  font-size: 1.02rem;
  font-weight: 500;
  padding: 0 16px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-navy) 50%),
    linear-gradient(135deg, var(--color-navy) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 53%,
    calc(100% - 16px) 53%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 44px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 4px 12px rgba(7, 15, 27, 0.16);
  transition: var(--transition-standard);
}

.booking-occupancy-row select:focus {
  outline: none;
  border-color: rgba(123, 30, 58, 0.86);
  box-shadow:
    var(--shadow-focus),
    0 10px 24px rgba(7, 15, 27, 0.22);
  background: #ffffff;
}

.booking-action .btn {
  width: 100%;
  min-height: 62px;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 34px rgba(94, 20, 45, 0.4);
}

.booking-action {
  order: 6;
  grid-column: 1 / -1;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: max(18px, calc(10px + env(safe-area-inset-bottom)));
  transform: translateX(-50%);
  display: inline-grid;
  place-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 3;
}

.scroll-indicator__mouse {
  width: 23px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  position: relative;
}

.scroll-indicator__mouse::after {
  content: "";
  width: 4px;
  height: 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.85);
  position: absolute;
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
  animation: scroll-track 1.8s infinite;
}

@keyframes scroll-track {
  0% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -1px);
  }
}

/* =========================
   ABOUT SECTION
========================= */
.about-section {
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
}

.about-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 52px rgba(11, 25, 41, 0.13);
}

.about-media img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-media__image {
  object-position: center 48%;
}

.about-content p {
  color: var(--color-muted);
  max-width: 560px;
  font-size: 1.04rem;
}

.highlights-list {
  margin-top: var(--space-4);
  list-style: none;
  display: grid;
  gap: 14px;
}

.highlights-list li {
  position: relative;
  padding-left: 26px;
  color: var(--color-navy-soft);
}

.highlights-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  box-shadow: inset 0 0 0 3px #ffffff;
  background: var(--color-gold);
}

/* =========================
   TRIPADVISOR STRIP
========================= */
.tripadvisor-strip {
  padding: 10px 0 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
}

.tripadvisor-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: clamp(8px, 1.8vw, 16px);
  max-width: 840px;
  margin-inline: auto;
}

.tripadvisor-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(148px, 16vw, 178px);
  aspect-ratio: 1 / 1;
  --badge-scale: 1;
  --badge-x: 0px;
  --badge-y: 0px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.tripadvisor-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: translate(var(--badge-x), var(--badge-y)) scale(var(--badge-scale));
  transform-origin: center;
}

.tripadvisor-badge--2019 {
  --badge-scale: 1;
  --badge-y: 0px;
}

.tripadvisor-badge--2015 {
  --badge-scale: 1.03;
  --badge-x: 2px;
  --badge-y: 0px;
}

.tripadvisor-badge--2013 {
  --badge-scale: 1.015;
  --badge-y: 3px;
}

.tripadvisor-badge--2011 {
  --badge-scale: 1;
  --badge-y: 1px;
}

.tripadvisor-strip + .rooms-section {
  padding-top: clamp(62px, 7vw, 84px);
}

@media (max-width: 960px) {
  .tripadvisor-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
  }

  .tripadvisor-badge {
    width: min(182px, 40vw);
  }
}

/* =========================
   ROOMS SECTION
========================= */
.rooms-section {
  background:
    radial-gradient(circle at top right, rgba(123, 30, 58, 0.08) 0%, rgba(123, 30, 58, 0) 45%),
    var(--color-bg);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.apartments-disclaimer {
  max-width: 780px;
  margin: var(--space-5) auto 0;
  padding: 18px 22px;
  border-radius: 14px;
  border: 1px solid rgba(160, 82, 106, 0.3);
  background: linear-gradient(160deg, rgba(255, 206, 219, 0.32), rgba(255, 231, 238, 0.58));
  box-shadow: 0 12px 24px rgba(11, 25, 41, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-navy-soft);
  font-size: 0.94rem;
  line-height: 1.65;
  position: relative;
  overflow: hidden;
}

.apartments-disclaimer::after {
  content: '';
  position: absolute;
  top: -46px;
  right: -38px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  pointer-events: none;
  z-index: 0;
}

.apartments-disclaimer p {
  margin: 0;
  position: relative;
  z-index: 1;
}

.apartments-disclaimer__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.room-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid rgba(13, 27, 42, 0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-standard);
  contain: paint;
}

.room-card:hover {
  transform: translate3d(0, -8px, 0);
  border-color: rgba(123, 30, 58, 0.2);
}

.room-image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.room-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.52s ease;
}

.room-card--apartment-studio .room-image img {
  object-position: 40% 58%;
}

.room-card--apartment-two-room .room-image img {
  object-position: 64% 56%;
}

.room-card--apartment-duplex .room-image img {
  object-position: 44% 58%;
}

.room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-content {
  padding: 28px var(--space-3) var(--space-3);
}

.room-content h3 {
  font-size: 1.62rem;
  margin-bottom: 12px;
}

.room-content p {
  color: var(--color-muted);
  margin-bottom: var(--space-3);
  font-size: 0.99rem;
}

.amenities-list {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: var(--space-3);
}

.amenities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy-soft);
  font-size: 0.93rem;
}

.apartments-section .amenities-list {
  gap: 16px;
}

.apartments-section .amenities-list li {
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}

.apartments-section .amenities-list li .icon {
  width: 38px;
  height: 38px;
  align-self: center;
  margin-top: 0;
}

.apartments-section .amenities-list li span:last-child {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}

.amenities-list li.room-option-separator {
  margin-left: 36px;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
}

.room-option-separator span {
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
}

/* =========================
   ICON SYSTEM
========================= */
.icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(123, 30, 58, 0.2);
  background: linear-gradient(145deg, rgba(123, 30, 58, 0.22), rgba(123, 30, 58, 0.08));
  color: #1f3850;
  box-shadow: 0 8px 16px rgba(11, 25, 41, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.icon-bed,
.icon-bath,
.icon-luggage {
  background: linear-gradient(145deg, rgba(165, 203, 236, 0.3), rgba(165, 203, 236, 0.1));
  border-color: rgba(122, 168, 206, 0.36);
  color: #1e4e72;
}

.icon-wifi,
.icon-tv,
.icon-assistance,
.icon-phone {
  background: linear-gradient(145deg, rgba(129, 194, 224, 0.28), rgba(129, 194, 224, 0.1));
  border-color: rgba(98, 156, 183, 0.36);
  color: #1b5774;
}

.icon-heat,
.icon-breakfast,
.icon-coffee {
  background: linear-gradient(145deg, rgba(170, 69, 98, 0.32), rgba(170, 69, 98, 0.12));
  border-color: rgba(153, 57, 84, 0.4);
  color: #6a1d36;
}

.icon-clean,
.icon-clock,
.icon-ski,
.icon-door {
  background: linear-gradient(145deg, rgba(165, 206, 172, 0.32), rgba(165, 206, 172, 0.12));
  border-color: rgba(114, 160, 123, 0.38);
  color: #2f6340;
}

.amenities-list li:hover .icon,
.room-services-list li:hover .icon,
.service-item:hover .icon {
  transform: translate3d(0, -2px, 0) scale(1.04);
}

.room-shared-services {
  margin-top: var(--space-5);
  padding: 28px clamp(18px, 2.1vw, 30px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(13, 27, 42, 0.06);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(11, 25, 41, 0.06);
}

.room-shared-services h3 {
  margin: 0 0 6px;
  font-size: clamp(1.12rem, 0.75vw + 0.92rem, 1.28rem);
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--color-navy-soft);
}

.room-shared-services__subtitle {
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(27, 38, 59, 0.72);
}

.room-services-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  align-items: stretch;
}

.room-services-list li {
  --room-service-bg-top: rgba(255, 255, 255, 0.9);
  --room-service-bg-bottom: rgba(255, 255, 255, 0.82);
  --room-service-border: rgba(13, 27, 42, 0.08);
  --room-service-heading: var(--color-navy-soft);
  display: grid;
  align-items: center;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 9px;
  min-height: 68px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--room-service-border);
  background: linear-gradient(100deg, var(--room-service-bg-top), var(--room-service-bg-bottom));
  color: var(--color-navy-soft);
  font-size: 0.9rem;
  line-height: 1.25;
  transition: var(--transition-standard);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 4px 10px rgba(11, 25, 41, 0.04);
  position: relative;
  overflow: hidden;
}

.room-services-list li > * {
  position: relative;
  z-index: 1;
}

.room-services-list li::after {
  content: '';
  position: absolute;
  top: -22px;
  right: -14px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  z-index: 0;
  pointer-events: none;
}

.room-services-list li[data-tone='tv'] {
  --room-service-bg-top: rgba(170, 212, 236, 0.22);
  --room-service-bg-bottom: rgba(142, 194, 226, 0.1);
  --room-service-border: rgba(88, 140, 171, 0.2);
  --room-service-heading: #1c4a67;
}

.room-services-list li[data-tone='wifi'] {
  --room-service-bg-top: rgba(151, 213, 255, 0.22);
  --room-service-bg-bottom: rgba(122, 180, 255, 0.1);
  --room-service-border: rgba(50, 115, 190, 0.2);
  --room-service-heading: #173f73;
}

.room-services-list li[data-tone='cleaning'] {
  --room-service-bg-top: rgba(175, 237, 174, 0.22);
  --room-service-bg-bottom: rgba(138, 220, 161, 0.1);
  --room-service-border: rgba(66, 149, 92, 0.2);
  --room-service-heading: #1f5b37;
}

.room-services-list li[data-tone='heating'] {
  --room-service-bg-top: rgba(255, 180, 143, 0.23);
  --room-service-bg-bottom: rgba(255, 127, 96, 0.1);
  --room-service-border: rgba(182, 78, 45, 0.2);
  --room-service-heading: #67220f;
}

.room-services-list li[data-tone='water'] {
  --room-service-bg-top: rgba(178, 224, 237, 0.21);
  --room-service-bg-bottom: rgba(149, 204, 224, 0.1);
  --room-service-border: rgba(89, 153, 176, 0.19);
  --room-service-heading: #1f5d72;
}

.room-services-list li[data-tone='safe'] {
  --room-service-bg-top: rgba(224, 199, 255, 0.23);
  --room-service-bg-bottom: rgba(199, 171, 240, 0.1);
  --room-service-border: rgba(122, 93, 166, 0.19);
  --room-service-heading: #4e3478;
}

.room-services-list li[data-tone='phone'] {
  --room-service-bg-top: rgba(236, 204, 175, 0.23);
  --room-service-bg-bottom: rgba(220, 177, 138, 0.1);
  --room-service-border: rgba(170, 112, 72, 0.2);
  --room-service-heading: #6b3d1f;
}

.room-services-list li .icon {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--room-service-heading);
}

.room-services-list li .icon svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.85;
}

.room-services-list li span:last-child {
  color: var(--room-service-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.room-services-list li:hover {
  transform: translate3d(0, -1px, 0);
  box-shadow: 0 7px 14px rgba(11, 25, 41, 0.06);
}

/* =========================
   SERVICES SECTION
========================= */
.services-section {
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}

.service-item {
  --service-bg-top: rgba(255, 255, 255, 0.92);
  --service-bg-bottom: rgba(255, 255, 255, 0.84);
  --service-border: rgba(13, 27, 42, 0.1);
  --service-heading: #1f3042;
  display: grid;
  align-items: center;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 0;
  min-height: 122px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--service-border);
  background: linear-gradient(160deg, var(--service-bg-top), var(--service-bg-bottom));
  box-shadow: 0 12px 24px rgba(11, 25, 41, 0.08);
  transition: var(--transition-standard);
  position: relative;
  overflow: hidden;
  contain: paint;
}

.service-item > * {
  position: relative;
  z-index: 1;
}

.service-item::after {
  content: '';
  position: absolute;
  top: -42px;
  right: -34px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  z-index: 0;
  pointer-events: none;
}

.service-item[data-tone='breakfast'] {
  --service-bg-top: rgba(255, 203, 116, 0.42);
  --service-bg-bottom: rgba(255, 168, 84, 0.24);
  --service-border: rgba(188, 112, 18, 0.35);
  --service-heading: #5f3600;
}

.service-item[data-tone='reception'] {
  --service-bg-top: rgba(255, 173, 169, 0.4);
  --service-bg-bottom: rgba(255, 132, 142, 0.22);
  --service-border: rgba(182, 74, 94, 0.34);
  --service-heading: #5f1931;
}

.service-item[data-tone='wifi'] {
  --service-bg-top: rgba(151, 213, 255, 0.4);
  --service-bg-bottom: rgba(122, 180, 255, 0.22);
  --service-border: rgba(50, 115, 190, 0.34);
  --service-heading: #173f73;
}

.service-item[data-tone='luggage'] {
  --service-bg-top: rgba(226, 196, 255, 0.44);
  --service-bg-bottom: rgba(206, 166, 252, 0.24);
  --service-border: rgba(121, 79, 178, 0.3);
  --service-heading: #4b2c77;
}

.service-item[data-tone='excursions'] {
  --service-bg-top: rgba(167, 230, 213, 0.45);
  --service-bg-bottom: rgba(124, 207, 188, 0.24);
  --service-border: rgba(57, 140, 118, 0.35);
  --service-heading: #1b554a;
}

.service-item[data-tone='ski'] {
  --service-bg-top: rgba(180, 225, 255, 0.44);
  --service-bg-bottom: rgba(141, 204, 255, 0.24);
  --service-border: rgba(79, 135, 188, 0.33);
  --service-heading: #214b78;
}

.service-item[data-tone='heating'] {
  --service-bg-top: rgba(255, 180, 143, 0.45);
  --service-bg-bottom: rgba(255, 127, 96, 0.24);
  --service-border: rgba(182, 78, 45, 0.35);
  --service-heading: #67220f;
}

.service-item[data-tone='cleaning'] {
  --service-bg-top: rgba(175, 237, 174, 0.42);
  --service-bg-bottom: rgba(138, 220, 161, 0.22);
  --service-border: rgba(66, 149, 92, 0.33);
  --service-heading: #1f5b37;
}

.service-item .icon {
  width: clamp(2.5rem, 3.2vw, 2.95rem);
  height: clamp(2.5rem, 3.2vw, 2.95rem);
  align-self: center;
  justify-self: center;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: var(--service-heading);
  box-shadow: none;
}

.service-item .icon svg {
  width: clamp(1.6rem, 2.1vw, 1.85rem);
  height: clamp(1.6rem, 2.1vw, 1.85rem);
}

.service-item h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.28;
  color: var(--service-heading);
  margin: 0;
  align-self: center;
}

.service-item:hover {
  transform: translate3d(0, -5px, 0);
  box-shadow: 0 18px 30px rgba(11, 25, 41, 0.12);
}

.service-item:hover .icon {
  transform: translate3d(0, -2px, 0) scale(1.08);
}

.apartments-disclaimer .icon {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #6f2038;
  box-shadow: none;
}

.apartments-disclaimer .icon svg {
  width: 22px;
  height: 22px;
}

/* =========================
   GALLERY SECTION
========================= */
.gallery-section {
  background: var(--color-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 120px;
  gap: var(--space-2);
}

.gallery-item {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, 0.06);
  box-shadow: 0 10px 24px rgba(11, 25, 41, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease;
  contain: paint;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0);
  transition: transform 0.45s ease;
  will-change: transform;
}

.gallery-item:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(123, 30, 58, 0.24);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item:nth-child(1) {
  grid-column: span 7;
  grid-row: span 4;
}

.gallery-item:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item:nth-child(3) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-item:nth-child(5) {
  grid-column: span 8;
  grid-row: span 3;
}

/* =========================
   LOCATION SECTION
========================= */
.location-section {
  background: #ffffff;
}

.location-content address {
  margin: 0 0 var(--space-2);
  font-style: normal;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--color-navy-soft);
}

.location-content p {
  color: var(--color-muted);
  max-width: 540px;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 27, 42, 0.08);
}

.map-placeholder {
  position: relative;
  min-height: 390px;
  background: #e8edf2;
}

.map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder p {
  margin: 0;
  padding: 16px;
  color: var(--color-navy-soft);
  font-size: 0.95rem;
  text-align: center;
}

/* =========================
   CALL TO ACTION SECTION
========================= */
.cta-section {
  background:
    linear-gradient(115deg, rgba(8, 18, 32, 0.98) 12%, rgba(20, 35, 56, 0.96) 100%),
    radial-gradient(circle at 80% 20%, rgba(123, 30, 58, 0.26) 0%, rgba(123, 30, 58, 0) 36%);
  padding-block: clamp(var(--space-7), 10vw, 132px);
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  color: #ffffff;
  margin-bottom: var(--space-4);
  text-wrap: balance;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  background: var(--color-bg);
}

.contact-info {
  max-width: 520px;
}

.contact-info .contact-list {
  list-style: none;
  margin-top: var(--space-4);
  display: grid;
  gap: 14px;
}

.contact-info .contact-list li {
  color: var(--color-navy-soft);
}

.contact-form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(13, 27, 42, 0.07);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  gap: 9px;
  margin-bottom: var(--space-3);
}

.form-row label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-navy-soft);
  letter-spacing: 0.02em;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #f9fafb;
  padding: 14px var(--space-2);
  font: inherit;
  font-size: 0.99rem;
  color: var(--color-text);
  transition: var(--transition-standard);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(123, 30, 58, 0.9);
  background: #ffffff;
  box-shadow: var(--shadow-focus);
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row--honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  margin: 0;
}

.form-row--captcha {
  margin-top: 2px;
}

.contact-captcha-label {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-navy-soft);
  letter-spacing: 0.02em;
}

.contact-captcha {
  min-height: 68px;
}

.contact-captcha-help {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--color-muted);
}

.contact-form .btn[disabled] {
  opacity: 0.58;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #0b1522;
  color: #d0d7e1;
  padding-top: var(--space-7);
}

.site-footer .brand-logo {
  color: #ffffff;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
  gap: var(--space-4);
}

.footer-brand p,
.footer-contact p,
.footer-social p {
  color: #a9b4c5;
  margin-top: 12px;
}

.footer-nav ul,
.footer-social ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-nav a,
.footer-social a {
  color: #d8dfeb;
  font-size: 0.94rem;
  transition: color 0.25s ease;
}

.footer-nav a:hover,
.footer-social a:hover {
  color: var(--color-gold-soft);
}

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

.footer-social a {
  border: 1px solid rgba(216, 223, 235, 0.22);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  background: transparent;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a svg .pupil {
  fill: currentColor;
  stroke: none;
}

.footer-social a:hover {
  border-color: rgba(196, 135, 155, 0.55);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-5);
  padding: var(--space-3) 0 var(--space-3);
}

.footer-bottom p {
  color: #93a0b4;
  font-size: 0.9rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1280px) {
  .gallery-grid {
    grid-auto-rows: 108px;
  }
}

@media (max-width: 1120px) {
  .section-heading {
    margin-bottom: var(--space-5);
  }

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

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

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

  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: var(--header-height-mobile);
    --container-gutter: 20px;
    --anchor-scroll-offset: 12px;
    --wa-fab-size: 58px;
  }

  .section-heading h2,
  .about-content h2,
  .location-content h2,
  .contact-info h2,
  .cta-content h2 {
    font-size: clamp(2.1rem, 5vw, 2.7rem);
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: var(--header-height);
    gap: 0;
  }

  .brand-logo {
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .nav-toggle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 1300;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .site-header.is-scrolled .nav-toggle,
  .site-header.menu-open .nav-toggle {
    border-color: transparent;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 999px;
    transition: var(--transition-fast);
  }

  .site-header.is-scrolled .nav-toggle span,
  .site-header.menu-open .nav-toggle span {
    background: var(--color-navy);
  }

  .site-header.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header.menu-open {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    max-width: 100vw;
    background: #f9fafc;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: var(--space-2);
    padding: calc(var(--header-height) + 8px) 24px calc(26px + env(safe-area-inset-bottom));
    box-shadow: inset -1px 0 0 rgba(13, 27, 42, 0.05);
    transform: translate3d(0, 10px, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transition:
      transform 0.2s cubic-bezier(0.2, 0.7, 0.2, 1),
      opacity 0.22s ease,
      visibility 0s linear 0.2s;
    will-change: transform, opacity;
    z-index: 1200;
  }

  .site-header.menu-open .nav-menu {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .nav-actions .nav-cta {
    display: none;
  }

  .mobile-booking-cta {
    display: inline-flex;
    position: fixed;
    left: 50%;
    bottom: max(12px, calc(12px + env(safe-area-inset-bottom)));
    transform: translateX(-50%);
    width: min(400px, calc(100vw - 28px));
    min-height: 52px;
    z-index: 1250;
    box-shadow:
      0 8px 18px rgba(12, 24, 41, 0.16),
      0 1px 0 rgba(255, 255, 255, 0.22) inset;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  @supports (-webkit-touch-callout: none) {
    .mobile-booking-cta {
      bottom: max(8px, calc(8px + env(safe-area-inset-bottom)));
      box-shadow: 0 6px 14px rgba(12, 24, 41, 0.12);
    }
  }

  body.nav-open .mobile-booking-cta,
  body.booking-panel-open .mobile-booking-cta {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
    max-width: none;
    margin-inline: auto;
    margin-top: 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a,
  .nav-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    color: var(--color-navy);
    font-size: 1.08rem;
    font-weight: 600;
    text-align: left;
    padding: 12px 10px;
    border-radius: 10px;
  }

  .nav-links a:hover,
  .nav-submenu-toggle:hover {
    background: rgba(13, 27, 42, 0.06);
  }

  .nav-links a::after,
  .nav-submenu-toggle::after {
    display: none;
  }

  .nav-item-has-submenu {
    width: 100%;
  }

  .nav-submenu {
    position: static;
    left: auto;
    top: auto;
    min-width: 0;
    transform: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    pointer-events: none;
    transition: max-height 0.28s ease, margin-top 0.28s ease;
  }

  .nav-item-has-submenu.is-open .nav-submenu {
    margin-top: 6px;
    max-height: 160px;
    pointer-events: auto;
  }

  .nav-submenu a {
    color: var(--color-navy-soft);
    text-align: left;
    background: #f4f6f8;
    margin-bottom: 4px;
  }

  .nav-submenu a:hover {
    color: var(--color-navy);
    background: rgba(13, 27, 42, 0.1);
  }

  .nav-cta {
    width: 100%;
    justify-self: center;
  }

  .nav-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    margin-inline: auto;
    padding-top: 14px;
    padding-bottom: calc(4px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(13, 27, 42, 0.1);
    background: linear-gradient(180deg, rgba(249, 250, 252, 0) 0%, #f9fafc 22%);
  }

  .language-switcher {
    width: 100%;
  }

  .lang-current {
    width: 100%;
    justify-content: flex-start;
    background: #f4f6f8;
    border-color: rgba(13, 27, 42, 0.12);
    color: var(--color-navy-soft);
  }

  .language-menu {
    left: 0;
    right: 0;
    top: auto;
    bottom: calc(100% + 8px);
    width: 100%;
    background: #ffffff;
    border-color: rgba(13, 27, 42, 0.12);
    transform: translateY(6px);
  }

  .lang-btn {
    color: var(--color-navy-soft);
    padding: 8px 12px;
  }

  .lang-btn.is-active {
    background: var(--color-gold);
    color: #ffffff;
  }

  .site-header.menu-open .lang-btn.is-active {
    background: var(--color-gold);
    color: #ffffff;
  }

  .brand-logo {
    font-size: 1.2rem;
  }

  .brand-logo__img {
    width: 160px;
    height: 52px;
    max-width: min(200px, 52vw);
  }

  .site-header:not(.is-scrolled):not(.menu-open) .brand-logo {
    color: #ffffff;
  }

  main {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .hero-content {
    max-width: 760px;
    padding-bottom: 96px;
  }

  #hero-title {
    font-size: clamp(3.4rem, 8vw, 4rem);
  }

  .booking-panel__dialog {
    width: min(760px, 100%);
  }

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

  .booking-field,
  #single-occupancy-field {
    max-width: none;
  }

  .booking-occupancies__head,
  .booking-occupancy-row {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
  }

  .booking-occupancy-row__room {
    width: 42px;
    height: 42px;
    font-size: 1.06rem;
  }

  .booking-action .btn {
    min-height: 58px;
    font-size: 1.04rem;
  }

  .booking-action {
    grid-column: 1 / -1;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 104px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 6;
    grid-row: span 3;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 3;
    grid-row: span 2;
  }

  :root {
    --wa-fab-bottom: max(84px, calc(84px + env(safe-area-inset-bottom)));
  }
}

@media (max-width: 860px) {
  :root {
    --section-space: clamp(72px, 10vw, 88px);
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-media img {
    min-height: 320px;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 8px);
    padding-bottom: 24px;
  }

  #hero-title {
    font-size: clamp(2.9rem, 9vw, 3.6rem);
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 700px) {
  .section-heading h2,
  .about-content h2,
  .location-content h2,
  .contact-info h2,
  .cta-content h2 {
    font-size: clamp(2rem, 8.2vw, 2.45rem);
  }

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

  .tripadvisor-strip {
    padding: 8px 0 12px;
  }

  .tripadvisor-badges {
    gap: 8px;
  }

  .tripadvisor-badge {
    width: min(170px, 42vw);
  }

  .tripadvisor-strip + .rooms-section {
    padding-top: clamp(54px, 9vw, 72px);
  }

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

  .service-item {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 106px;
    padding: 16px 18px;
    column-gap: 12px;
  }

  .service-item .icon {
    width: clamp(2.2rem, 7vw, 2.5rem);
    height: clamp(2.2rem, 7vw, 2.5rem);
  }

  .room-services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .room-services-list li {
    min-height: 64px;
    padding: 9px 10px;
  }

  .support-chat-panel {
    max-height: min(72vh, 560px);
  }

  .contact-form {
    padding: 24px;
  }

  .apartments-disclaimer {
    align-items: flex-start;
    padding: 12px 14px;
  }

  .apartments-disclaimer__icon {
    width: 32px;
    height: 32px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #hero-title {
    font-size: clamp(2.5rem, 10.8vw, 3.1rem);
  }

  .hero-subtitle {
    font-size: 1.07rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.72;
  }

  .booking-panel__dialog {
    width: min(620px, 100%);
  }

  .whatsapp-fab {
    right: 14px;
  }

  .whatsapp-fab svg {
    width: 29px;
    height: 29px;
  }

  .support-chat-panel {
    right: 10px;
    width: min(380px, calc(100vw - 20px));
  }
}

@media (max-width: 540px) {
  :root {
    --container-gutter: 16px;
  }

  .hero-section {
    min-height: 92svh;
  }

  .brand-logo__img {
    width: 150px;
    height: 48px;
    max-width: min(182px, 56vw);
  }

  .hero-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-actions .btn {
    width: min(300px, 100%);
    min-height: 50px;
  }

  .booking-panel__dialog {
    border-radius: 16px;
    padding: 16px;
  }

  .booking-widget {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .booking-date-picker {
    width: min(340px, calc(100vw - 24px));
    padding: 12px;
    gap: 8px;
  }

  .booking-date-picker__day {
    min-height: 34px;
    font-size: 0.84rem;
  }

  .booking-date-trigger__nights {
    min-height: 22px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .booking-action {
    grid-column: auto;
  }

  .booking-occupancies__head {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .booking-occupancies__head .booking-occupancies__title:first-child {
    justify-content: center;
  }

  .booking-occupancies__head .booking-occupancies__title:first-child > span:last-child {
    display: none;
  }

  .booking-occupancy-row {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .booking-occupancies {
    padding: 14px;
  }

  .booking-occupancy-row__room {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }

  .booking-field input,
  .booking-date-trigger,
  .booking-field select,
  .booking-occupancy-row select {
    min-height: 56px;
    font-size: 1.02rem;
  }

  .booking-action .btn {
    min-height: 56px;
    font-size: 1rem;
  }

  .section-heading {
    margin-bottom: var(--space-4);
  }

  .section-heading h2,
  .about-content h2,
  .location-content h2,
  .contact-info h2,
  .cta-content h2 {
    margin-bottom: 12px;
  }

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

  .room-services-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 100px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .map-placeholder {
    min-height: 280px;
  }

  .contact-form {
    padding: var(--space-3);
  }

  .footer-layout {
    text-align: center;
  }

  .footer-social ul {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  :root {
    --wa-fab-size: 54px;
  }

  .btn {
    min-height: 50px;
    font-size: 0.95rem;
    width: 100%;
  }

  .mobile-booking-cta {
    width: calc(100vw - 20px);
    min-height: 50px;
  }

  .nav-menu {
    padding-inline: 16px;
  }

  .room-content,
  .room-shared-services,
  .service-item,
  .contact-form {
    padding-inline: 18px;
  }

  .service-item {
    min-height: 100px;
  }

  .map-placeholder {
    min-height: 240px;
    font-size: 0.95rem;
  }

  .booking-occupancies__head {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .booking-occupancy-row {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
  }

  .booking-occupancy-row__room {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .whatsapp-fab {
    right: 12px;
  }

  .whatsapp-fab svg {
    width: 27px;
    height: 27px;
  }

  .support-chat-panel {
    right: 8px;
    width: calc(100vw - 16px);
  }

  .support-chat-quick__list {
    grid-template-columns: 1fr;
  }
}

@media (hover: none) {
  .room-card:hover,
  .service-item:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-outline:hover {
    transform: none;
  }

  .amenities-list li:hover .icon,
  .room-services-list li:hover .icon,
  .service-item:hover .icon {
    transform: none;
  }
}

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