:root {
  color-scheme: light;
  --header-top-gap: 4px;
  --bg: #f7f1e8;
  --bg-soft: #fbf7f1;
  --surface: rgba(255, 253, 249, 0.9);
  --surface-solid: #fffdfa;
  --surface-alt: #f6eee2;
  --surface-strong: #fbf4e8;
  --text: #243129;
  --text-soft: #66746d;
  --heading: #15211c;
  --line: rgba(21, 33, 28, 0.12);
  --line-strong: rgba(21, 33, 28, 0.22);
  --brand: #1c4338;
  --brand-strong: #122f26;
  --brand-contrast: #fdf8f1;
  --accent: #c59a6c;
  --accent-soft: rgba(197, 154, 108, 0.14);
  --success: #2c7c59;
  --error: #b04e39;
  --footer-bg: #111815;
  --footer-line: rgba(255, 255, 255, 0.12);
  --shadow: 0 34px 96px rgba(20, 29, 25, 0.14);
  --shadow-soft: 0 22px 52px rgba(20, 29, 25, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: min(1220px, calc(100vw - 40px));
  --transition: 220ms ease;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #101815;
  --bg-soft: #121b18;
  --surface: rgba(20, 30, 26, 0.92);
  --surface-solid: #16201d;
  --surface-alt: #1a2521;
  --surface-strong: #19231f;
  --text: #dde6de;
  --text-soft: #a2b0a7;
  --heading: #f4f2ea;
  --line: rgba(224, 231, 225, 0.12);
  --line-strong: rgba(224, 231, 225, 0.2);
  --brand: #d6b386;
  --brand-strong: #edd7b8;
  --brand-contrast: #18211d;
  --accent: #97bfad;
  --accent-soft: rgba(151, 191, 173, 0.14);
  --success: #79c79d;
  --error: #f08d74;
  --footer-bg: #0b100e;
  --footer-line: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 20px 46px rgba(0, 0, 0, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-synthesis: none;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(197, 154, 108, 0.1), transparent 22%),
    radial-gradient(circle at top right, rgba(28, 67, 56, 0.08), transparent 18%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 42%, var(--bg) 100%);
  transition:
    background var(--transition),
    color var(--transition);
}

:root[data-theme="dark"] body {
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 179, 134, 0.035), transparent 22%),
    radial-gradient(circle at 86% 8%, rgba(88, 118, 106, 0.065), transparent 24%),
    linear-gradient(180deg, #0b110f 0%, #101815 48%, #0c1210 100%);
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

iframe {
  display: block;
  width: 100%;
}

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

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

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section[id] {
  scroll-margin-top: 120px;
}

.section {
  padding: 88px 0;
}

.section--warm {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 24%),
    var(--bg-soft);
}

:root[data-theme="dark"] .section--warm {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0)),
    #101714;
}

.section--feature {
  padding-top: 28px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading__eyebrow {
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brand);
}

.section-heading__title,
h1,
h2,
h3 {
  margin: 0;
  color: var(--heading);
  line-height: 1.06;
  font-family: "Prata", "Georgia", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.section-heading__title {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
}

.section-heading__lead,
.body-copy,
.room-card__summary,
.discover-card__body p,
.feature-band__copy p,
.form-card__header p,
.faq-item p,
.site-footer p,
.site-footer li,
.itinerary-card p,
.hero__copy p,
.inner-hero__content p,
.location-panel__item span {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform var(--transition),
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--brand-contrast);
  background: var(--brand);
  box-shadow: var(--shadow-soft);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--brand-strong);
}

.button--ghost {
  color: var(--heading);
  background: rgba(255, 255, 255, 0.35);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}

:root[data-theme="dark"] .button--ghost {
  background: rgba(255, 255, 255, 0.04);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  padding: calc(env(safe-area-inset-top, 0px) + var(--header-top-gap)) 0 0;
  pointer-events: none;
}

.site-header__main {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  overflow: visible;
  pointer-events: auto;
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
  outline: none;
}

.site-header.is-scrolled .site-header__main {
  background: rgba(255, 252, 247, 0.88);
  box-shadow: 0 18px 48px rgba(19, 28, 24, 0.14);
}

:root[data-theme="dark"] .site-header.is-scrolled .site-header__main {
  background: rgba(19, 29, 25, 0.94);
}

:root[data-theme="dark"] .site-header__main {
  background: rgba(16, 25, 22, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.brand__monogram {
  width: 62px;
  height: 62px;
  display: block;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(20, 29, 25, 0.14);
}

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

.brand__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand__copy strong {
  display: block;
  color: var(--heading);
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand__copy span:last-child {
  display: block;
  color: var(--text-soft);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-width: 0;
  outline: none;
}

.site-nav__links,
.site-nav__actions,
.site-nav__utility,
.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav__links {
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
  gap: 14px;
  padding: 6px 10px;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.site-nav__links::-webkit-scrollbar {
  display: none;
}

.site-nav__actions {
  flex-shrink: 0;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav__utility {
  gap: 8px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.site-nav__links a,
.lang-switch a,
.nav-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 18px;
  border: 0;
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  list-style: none;
  cursor: pointer;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.site-nav__links a:focus,
.nav-menu summary:focus,
.lang-menu summary:focus,
.theme-toggle:focus,
.nav-toggle:focus {
  outline: none;
}

.site-nav__links a:focus-visible,
.nav-menu summary:focus-visible,
.lang-menu summary:focus-visible,
.theme-toggle:focus-visible,
.nav-toggle:focus-visible {
  box-shadow: 0 0 0 3px rgba(28, 67, 56, 0.18);
}

:root[data-theme="dark"] .site-nav__links a:focus-visible,
:root[data-theme="dark"] .nav-menu summary:focus-visible,
:root[data-theme="dark"] .lang-menu summary:focus-visible,
:root[data-theme="dark"] .theme-toggle:focus-visible,
:root[data-theme="dark"] .nav-toggle:focus-visible {
  box-shadow: 0 0 0 3px rgba(214, 179, 134, 0.2);
}

.site-nav__links a:hover,
.site-nav__links a.is-active,
.nav-menu summary:hover,
.nav-menu.is-active summary,
.nav-menu[open] summary,
.lang-switch a:hover,
.lang-switch a.is-active {
  color: var(--heading);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(20, 29, 25, 0.08);
}

:root[data-theme="dark"] .site-nav__links a:hover,
:root[data-theme="dark"] .site-nav__links a.is-active,
:root[data-theme="dark"] .nav-menu summary:hover,
:root[data-theme="dark"] .nav-menu.is-active summary,
:root[data-theme="dark"] .nav-menu[open] summary,
:root[data-theme="dark"] .lang-switch a:hover,
:root[data-theme="dark"] .lang-switch a.is-active {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

:root[data-theme="dark"] .site-nav__links {
  background: rgba(255, 255, 255, 0.03);
}

:root[data-theme="dark"] .site-nav__utility {
  background: rgba(255, 255, 255, 0.03);
}

.nav-menu {
  position: relative;
  z-index: 5;
  outline: none;
}

.nav-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 34px;
}

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

.nav-menu summary {
  list-style: none;
}

.nav-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform var(--transition);
}

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

.nav-menu__list {
  position: absolute;
  left: 50%;
  top: calc(100% + 2px);
  transform: translateX(-50%);
  width: min(300px, calc(100vw - 40px));
  padding: 14px;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-solid);
  box-shadow: var(--shadow);
  z-index: 20;
}

.nav-menu--wide .nav-menu__list {
  width: min(320px, calc(100vw - 40px));
}

.nav-menu__title {
  margin: 0;
  padding: 2px 4px 6px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-menu__list a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text-soft);
  font-weight: 700;
  transition:
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
}

.nav-menu__index {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
}

.nav-menu__text {
  min-width: 0;
  color: var(--heading);
  font-size: 0.96rem;
  line-height: 1.3;
}

.nav-menu__list a:hover {
  border-color: rgba(197, 154, 108, 0.28);
  background: rgba(255, 255, 255, 0.48);
}

:root[data-theme="dark"] .nav-menu__list a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.site-nav__cta {
  min-height: 46px;
  min-width: 126px;
  padding-inline: 22px;
}

.site-nav__meta {
  display: none;
}

.lang-menu {
  position: relative;
  flex-shrink: 0;
  outline: none;
}

.lang-menu summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--heading);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.lang-menu summary::-webkit-details-marker {
  display: none;
}

.lang-menu summary {
  list-style: none;
}

.lang-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform var(--transition);
}

.lang-menu[open] summary::after {
  transform: translateY(2px) rotate(-135deg);
}

:root[data-theme="dark"] .lang-menu summary {
  background: rgba(255, 255, 255, 0.04);
}

.lang-menu__list {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 220px;
  padding: 10px;
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-solid);
  box-shadow: var(--shadow);
}

.lang-menu__list a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--text-soft);
  transition:
    background var(--transition),
    color var(--transition);
}

.lang-menu__list a strong {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lang-menu__list a span {
  font-size: 0.96rem;
  font-weight: 600;
}

.lang-menu__list a:hover,
.lang-menu__list a.is-active {
  background: rgba(255, 255, 255, 0.48);
  color: var(--heading);
}

:root[data-theme="dark"] .lang-menu__list a:hover,
:root[data-theme="dark"] .lang-menu__list a.is-active {
  background: rgba(255, 255, 255, 0.05);
}

.theme-toggle {
  position: relative;
  width: 60px;
  height: 36px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-alt);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition:
    background var(--transition),
    border-color var(--transition);
}

.theme-toggle__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.theme-toggle__icon--light {
  width: 13px;
  height: 13px;
  background: #d3aa77;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 4a1 1 0 0 1 1 1v1.2a1 1 0 1 1-2 0V5a1 1 0 0 1 1-1Zm0 12.6a4.6 4.6 0 1 0 0-9.2a4.6 4.6 0 0 0 0 9.2Zm8-5.6a1 1 0 0 1 0 2h-1.2a1 1 0 1 1 0-2H20Zm-14.8 1a1 1 0 1 1 0-2H4a1 1 0 1 1 0 2h1.2ZM17.66 6.34a1 1 0 0 1 1.41 0l.85.85a1 1 0 1 1-1.41 1.41l-.85-.85a1 1 0 0 1 0-1.41Zm-12.58 0a1 1 0 0 1 1.41 1.41l-.85.85A1 1 0 1 1 4.23 7.2l.85-.85Zm13.99 11.32a1 1 0 0 1 0 1.41l-.85.85a1 1 0 1 1-1.41-1.41l.85-.85a1 1 0 0 1 1.41 0Zm-12.58 0l.85.85a1 1 0 1 1-1.41 1.41l-.85-.85a1 1 0 0 1 1.41-1.41ZM13 17.8a1 1 0 1 1-2 0V19a1 1 0 1 1 2 0v-1.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 4a1 1 0 0 1 1 1v1.2a1 1 0 1 1-2 0V5a1 1 0 0 1 1-1Zm0 12.6a4.6 4.6 0 1 0 0-9.2a4.6 4.6 0 0 0 0 9.2Zm8-5.6a1 1 0 0 1 0 2h-1.2a1 1 0 1 1 0-2H20Zm-14.8 1a1 1 0 1 1 0-2H4a1 1 0 1 1 0 2h1.2ZM17.66 6.34a1 1 0 0 1 1.41 0l.85.85a1 1 0 1 1-1.41 1.41l-.85-.85a1 1 0 0 1 0-1.41Zm-12.58 0a1 1 0 0 1 1.41 1.41l-.85.85A1 1 0 1 1 4.23 7.2l.85-.85Zm13.99 11.32a1 1 0 0 1 0 1.41l-.85.85a1 1 0 1 1-1.41-1.41l.85-.85a1 1 0 0 1 1.41 0Zm-12.58 0l.85.85a1 1 0 1 1-1.41 1.41l-.85-.85a1 1 0 0 1 1.41-1.41ZM13 17.8a1 1 0 1 1-2 0V19a1 1 0 1 1 2 0v-1.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.theme-toggle__icon--dark {
  width: 13px;
  height: 13px;
  background: #55675f;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14.7 3.2a1 1 0 0 1 .37 1.4a7.4 7.4 0 1 0 4.34 8.87a1 1 0 1 1 1.92.57a9.4 9.4 0 1 1-8.03-11.5a1 1 0 0 1 1.4.66Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14.7 3.2a1 1 0 0 1 .37 1.4a7.4 7.4 0 1 0 4.34 8.87a1 1 0 1 1 1.92.57a9.4 9.4 0 1 1-8.03-11.5a1 1 0 0 1 1.4.66Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.theme-toggle__thumb {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-solid);
  box-shadow: 0 8px 18px rgba(18, 28, 24, 0.14);
  transition:
    transform var(--transition),
    background var(--transition);
}

:root[data-theme="dark"] .theme-toggle__thumb {
  transform: translateX(24px);
  background: var(--brand);
}

:root[data-theme="dark"] .theme-toggle__icon--light {
  background: rgba(214, 179, 134, 0.55);
}

:root[data-theme="dark"] .theme-toggle__icon--dark {
  background: #f5f1e6;
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 16px;
  background: var(--surface-alt);
  padding: 13px;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--heading);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-10px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(700px, 84svh);
  display: grid;
  align-items: end;
  overflow: clip;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(104deg, rgba(8, 14, 12, 0.8) 0%, rgba(8, 14, 12, 0.62) 28%, rgba(8, 14, 12, 0.3) 56%, rgba(8, 14, 12, 0.62) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%, rgba(8, 14, 12, 0.24) 100%);
  z-index: 1;
}

.hero__media,
.hero__slide {
  position: absolute;
  inset: 0;
}

.hero__slide {
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 1000ms ease,
    transform 6500ms ease;
  background-size: cover;
  background-position: center;
}

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

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: end;
  padding: 158px 0 48px;
}

.hero__copy {
  max-width: 760px;
}

.hero__copy--home {
  max-width: 640px;
}

.hero .section-heading__eyebrow,
.inner-hero .section-heading__eyebrow {
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.hero__badges span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__copy h1 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.5rem, 4.8vw, 4rem);
  max-width: 11ch;
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.4);
}

.hero__copy p:not(.section-heading__eyebrow) {
  color: rgba(255, 255, 255, 0.94);
  max-width: 46ch;
  font-size: clamp(0.98rem, 1.35vw, 1.03rem);
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero__stats li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero__panel {
  width: 100%;
}

.form-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  color: var(--text);
}

.form-card--hero {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 239, 227, 0.9)),
    rgba(255, 248, 240, 0.9);
  border-color: rgba(188, 145, 99, 0.24);
}

.form-card--quiet {
  padding-top: 22px;
}

:root[data-theme="dark"] .form-card--hero {
  background:
    linear-gradient(180deg, rgba(24, 34, 29, 0.96), rgba(20, 29, 25, 0.88)),
    rgba(21, 29, 26, 0.84);
}

.form-card__header {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.form-card__header h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.form-card--hero .form-card__header h3 {
  font-size: clamp(1.45rem, 2vw, 1.95rem);
}

.form-card--hero .form-card__header p {
  font-size: 0.92rem;
  max-width: 34ch;
}

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

.form-field,
.form-field--full {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.form-field span,
.form-field--full span {
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--heading);
  background: rgba(255, 255, 255, 0.72);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

:root[data-theme="dark"] .form-field input,
:root[data-theme="dark"] .form-field select,
:root[data-theme="dark"] .form-field textarea {
  background: rgba(255, 255, 255, 0.05);
}

.form-field textarea {
  min-height: 144px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(31, 74, 61, 0.12);
}

:root[data-theme="dark"] .form-field input:focus,
:root[data-theme="dark"] .form-field select:focus,
:root[data-theme="dark"] .form-field textarea:focus {
  box-shadow: 0 0 0 4px rgba(211, 177, 130, 0.14);
}

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

.form-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.form-card__meta,
.form-message {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.form-message {
  min-height: 24px;
  margin-top: 14px;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.form-message.is-loading {
  color: var(--accent);
  opacity: 0.92;
}

.form-message.is-success {
  color: var(--success);
}

.form-message.is-error {
  color: var(--error);
}

.form-success {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--success) 26%, var(--line) 74%);
  background:
    linear-gradient(180deg, rgba(92, 176, 132, 0.12), rgba(92, 176, 132, 0.05)),
    rgba(255, 255, 255, 0.52);
  color: var(--heading);
  outline: none;
  box-shadow: 0 18px 34px rgba(60, 136, 97, 0.08);
  animation: form-success-enter 0.48s cubic-bezier(0.2, 0.8, 0.2, 1);
}

:root[data-theme="dark"] .form-success {
  background:
    linear-gradient(180deg, rgba(92, 176, 132, 0.12), rgba(92, 176, 132, 0.05)),
    rgba(255, 255, 255, 0.04);
}

.form-success__icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(92, 176, 132, 0.15);
  color: var(--success);
  font-weight: 800;
  font-size: 1rem;
  animation: form-success-icon 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.form-success strong {
  line-height: 1.5;
}

.button[disabled] {
  cursor: progress;
  opacity: 0.76;
  transform: none !important;
}

.button.is-loading::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-right-color: transparent;
  animation: button-spin 0.7s linear infinite;
}

.button.is-loading {
  gap: 10px;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes form-success-enter {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes form-success-icon {
  0% {
    transform: scale(0.72);
    opacity: 0.35;
  }
  70% {
    transform: scale(1.06);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: center;
}

.split-section__content {
  max-width: 620px;
}

.room-detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.room-detail-pills span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.84rem;
  font-weight: 700;
}

.room-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 30px;
  align-items: start;
}

.room-detail-intro__copy {
  display: grid;
  gap: 18px;
}

.room-detail-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.room-detail-aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.room-detail-aside img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
  object-position: center;
}

.room-detail-aside__body {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.room-detail-aside__body h2 {
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
}

.room-detail-facts {
  display: grid;
  gap: 12px;
}

.room-detail-facts__item {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-alt) 82%, #ffffff 18%);
  display: grid;
  gap: 6px;
}

.room-detail-facts__item span {
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.room-detail-facts__item strong {
  color: var(--heading);
  font-size: 1rem;
  line-height: 1.45;
}

.room-detail-features,
.room-detail-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.room-detail-features li,
.room-detail-highlights li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
}

.room-detail-features li::before,
.room-detail-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.feature-band--room .feature-band__copy {
  display: grid;
  gap: 16px;
}

.image-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.image-stack img,
.feature-band__media img,
.discover-card img,
.room-card__media img,
.map-card iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  grid-column: auto;
  height: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  object-position: center 52%;
}

.image-stack img:last-child {
  width: 100%;
  height: 100%;
  margin-top: 0;
  justify-self: stretch;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  object-position: center 48%;
  border: 0;
  box-shadow: var(--shadow);
}

:root[data-theme="dark"] .image-stack img:last-child {
  border-color: transparent;
}

.image-stack--restaurant img:first-child {
  aspect-ratio: 1.18 / 1;
  object-position: center 54%;
}

.image-stack--restaurant img:last-child {
  aspect-ratio: 0.86 / 1;
  object-position: center 42%;
}

.section-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.room-grid,
.amenity-grid,
.discover-grid {
  display: grid;
  gap: 24px;
}

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

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

.discover-grid,
.story-grid {
  align-items: start;
}

.amenity-grid--restaurant {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.room-card,
.amenity-card,
.discover-card,
.contact-card,
.itinerary-card,
.table-wrap,
.map-card,
.faq-card,
.location-panel,
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.room-card,
.discover-card {
  overflow: hidden;
}

.discover-card {
  align-self: start;
  display: flex;
  flex-direction: column;
  border-color: transparent;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface-solid) 97%, #ffffff 3%), color-mix(in srgb, var(--surface-solid) 99%, #ffffff 1%));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.54) inset,
    0 14px 32px rgba(20, 29, 25, 0.05);
}

.room-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.room-card:hover,
.room-card:focus-within,
.discover-card:hover,
.discover-card:focus-within,
.amenity-card:hover,
.contact-card:hover,
.itinerary-card:hover {
  transform: translateY(-4px);
  border-color: rgba(188, 145, 99, 0.22);
  box-shadow: 0 28px 70px rgba(20, 29, 25, 0.12);
}

.room-card__media {
  aspect-ratio: 1.16 / 1;
  overflow: hidden;
}

.room-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.room-card:hover .room-card__media img,
.room-card:focus-within .room-card__media img {
  transform: scale(1.04);
}

.room-card__body,
.amenity-card,
.discover-card__body,
.itinerary-card,
.faq-card,
.location-panel {
  padding: 24px;
}

.room-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.room-card__eyebrow {
  margin: 0;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.room-card__title,
.discover-card__body h3,
.amenity-card h3,
.itinerary-card h3,
.faq-card h3 {
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
}

.room-card__summary {
  min-height: 5.4em;
}

.room-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.room-card__meta span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 700;
}

.room-card__ideal {
  margin: 0;
  color: var(--text-soft);
}

.room-card__features {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: grid;
  gap: 10px;
}

.room-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
}

.room-card__features li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
}

.room-card__footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.room-card__cta {
  color: var(--heading);
  font-size: 0.92rem;
  font-weight: 700;
}

.room-card__arrow {
  color: var(--brand);
  font-size: 1.1rem;
  transition: transform var(--transition);
}

.room-card:hover .room-card__arrow,
.room-card:focus-visible .room-card__arrow {
  transform: translateX(4px);
}

.room-card:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(31, 74, 61, 0.1),
    0 28px 70px rgba(20, 29, 25, 0.12);
}

.amenity-card,
.discover-card__body,
.contact-card,
.itinerary-card,
.location-panel {
  height: 100%;
}

.discover-card__body {
  height: auto;
  padding: 18px 20px 20px;
  gap: 10px;
}

.amenity-card h3 {
  margin-bottom: 10px;
}

.discover-card img {
  aspect-ratio: 1.58 / 1;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

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

.story-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: auto;
  padding: 22px;
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent 28%);
  border-radius: var(--radius-xl);
  background: color-mix(in srgb, var(--surface-solid) 96%, #ffffff 4%);
  box-shadow: 0 18px 42px rgba(20, 29, 25, 0.06);
  backdrop-filter: blur(14px);
}

:root[data-theme="dark"] .story-card {
  background: color-mix(in srgb, var(--surface-solid) 94%, #0b100e 6%);
  border-color: rgba(224, 231, 225, 0.08);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18);
}

.story-card__eyebrow {
  margin: 0;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.story-card h3 {
  font-size: clamp(1.4rem, 2.3vw, 1.9rem);
}

.story-card p {
  margin: 0;
  color: var(--text-soft);
}

.discover-card__body {
  display: grid;
  gap: 10px;
}

.discover-card__body h3 {
  max-width: 12ch;
  line-height: 1.04;
  text-wrap: balance;
}

.discover-card__detail {
  color: var(--text-soft);
}

.discover-card__body p {
  margin: 0;
  line-height: 1.68;
}

.discover-card__facts {
  list-style: none;
  padding: 0;
  margin: 2px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.discover-card__facts li {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
}

:root[data-theme="dark"] .discover-card {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface-solid) 94%, #111714 6%), color-mix(in srgb, var(--surface-solid) 98%, #060907 2%));
  border-color: transparent;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.03) inset,
    0 18px 40px rgba(0, 0, 0, 0.16);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: calc(var(--radius-xl) + 2px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(197, 154, 108, 0.08), rgba(255, 255, 255, 0.06)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

:root[data-theme="dark"] .feature-band,
:root[data-theme="dark"] .restaurant-menu-card,
:root[data-theme="dark"] .fact-strip__item,
:root[data-theme="dark"] .cta-banner__inner,
:root[data-theme="dark"] .access-note-card,
:root[data-theme="dark"] .contact-shell__aside,
:root[data-theme="dark"] .contact-support-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008)),
    #121b18;
}

.feature-band--access {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.feature-band__copy {
  padding: 10px 8px;
}

.feature-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.feature-band__media {
  min-height: 100%;
}

.feature-band__media img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 44%;
}

.feature-band--story .feature-band__media img {
  object-position: center;
}

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

.access-note-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-soft);
}

:root[data-theme="dark"] .access-note-card {
  background: rgba(255, 255, 255, 0.03);
}

.access-note-card span {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.access-note-card strong {
  font-size: 1.16rem;
  line-height: 1.35;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.media-shell {
  display: grid;
  gap: 24px;
}

.media-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.media-filter button,
.currency-switch button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-soft);
  font-weight: 600;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.media-filter button.is-active,
.currency-switch button.is-active,
.media-filter button:hover,
.currency-switch button:hover {
  color: var(--brand-contrast);
  background: var(--brand);
  border-color: var(--brand);
}

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

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  background: color-mix(in srgb, var(--surface-solid) 86%, transparent 14%);
  box-shadow: 0 14px 32px rgba(20, 29, 25, 0.08);
  isolation: isolate;
}

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

.gallery-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  z-index: 0;
  background: linear-gradient(180deg, rgba(10, 18, 15, 0), rgba(10, 18, 15, 0.88));
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.05);
}

.gallery-card--rich {
  aspect-ratio: 1 / 1;
  min-height: clamp(250px, 28vw, 390px);
}

.gallery-card__badge,
.gallery-card__title {
  position: absolute;
  left: 16px;
  right: 16px;
  z-index: 2;
}

.gallery-card__badge {
  top: 16px;
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
}

.gallery-card__title {
  bottom: 16px;
  color: #fff;
  font-size: 1.14rem;
  font-weight: 700;
  text-align: left;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.5);
  line-height: 1.25;
  max-width: 72%;
}

.gallery-card--rich::after {
  content: "↗";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand);
  font-size: 1.12rem;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(20, 29, 25, 0.16);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.gallery-card--rich:hover::after,
.gallery-card--rich:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.location-panel__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.location-panel__signature {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.location-panel__item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid var(--line);
  display: grid;
  gap: 6px;
}

:root[data-theme="dark"] .location-panel__item {
  background: rgba(255, 255, 255, 0.03);
}

.location-panel__item span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-panel__item strong {
  color: var(--heading);
  font-size: 1rem;
}

.location-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.restaurant-menu__note {
  max-width: 72ch;
  margin: -8px 0 28px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.restaurant-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.restaurant-menu-card {
  padding: 24px;
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.restaurant-menu-card:hover,
.restaurant-menu-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(188, 145, 99, 0.22);
  box-shadow: 0 28px 70px rgba(20, 29, 25, 0.12);
}

.restaurant-menu-card__eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.restaurant-menu-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.restaurant-menu-card__lead {
  margin: 10px 0 14px;
  color: var(--text-soft);
}

.restaurant-menu-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.restaurant-menu-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.restaurant-menu-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.map-card {
  position: relative;
  overflow: hidden;
}

.map-card__overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 24, 21, 0.8);
  backdrop-filter: blur(16px);
  color: #fff;
  box-shadow: 0 18px 40px rgba(10, 18, 15, 0.26);
}

.map-card__overlay span,
.map-card__overlay em {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.map-card__overlay strong {
  font-size: 1rem;
  line-height: 1.35;
}

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

.map-card__action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.map-card__action:hover,
.map-card__action:focus-visible {
  transform: translateY(-1px);
}

.map-card__action--primary {
  color: var(--brand-contrast);
  background: var(--brand);
  border-color: var(--brand);
}

.fact-strip {
  padding-top: 6px;
}

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

.fact-strip__item {
  min-height: 132px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.fact-strip__item span {
  display: block;
  margin-bottom: 6px;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fact-strip__item strong {
  color: var(--heading);
  font-size: 1.04rem;
  line-height: 1.45;
  max-width: 18ch;
}

.cta-banner {
  padding: 12px 0 76px;
}

.cta-banner__inner {
  padding: 24px 28px;
  border-radius: calc(var(--radius-xl) + 8px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(188, 145, 99, 0.2), rgba(255, 255, 255, 0.08)),
    var(--surface);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.cta-banner__inner h2 {
  max-width: 12ch;
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
  line-height: 1.08;
}

.cta-banner__inner > div:first-child {
  max-width: 660px;
}

.cta-banner__inner p:not(.section-heading__eyebrow) {
  max-width: 40ch;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.inner-hero {
  position: relative;
  min-height: 38svh;
  padding: 150px 0 56px;
  color: #fff;
  background-size: cover;
  background-position: center;
  margin-top: 0;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(8, 14, 12, 0.78), rgba(8, 14, 12, 0.3)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%, rgba(8, 14, 12, 0.22) 100%);
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(10, 18, 15, 0), rgba(10, 18, 15, 0.2));
}

.inner-hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.inner-hero__content h1 {
  color: #fff;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  max-width: 10ch;
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.inner-hero__content p:not(.section-heading__eyebrow) {
  color: rgba(255, 255, 255, 0.94);
  max-width: 42ch;
  font-size: 0.95rem;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

.page-rooms .inner-hero {
  background-position: center 58%;
}

.page-about .inner-hero {
  background-position: center 44%;
}

.page-restaurant .inner-hero {
  background-position: center 48%;
}

.page-contact .inner-hero {
  min-height: 38svh;
  padding-bottom: 48px;
  background-position: center 42%;
}

.page-room-detail .inner-hero {
  min-height: 46svh;
  padding-bottom: 42px;
  background-position: center 52%;
}

.table-wrap {
  padding: 18px;
  overflow-x: auto;
}

.comparison-table,
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table {
  min-width: 700px;
}

.comparison-table th,
.comparison-table td,
.pricing-table th,
.pricing-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th,
.pricing-table th {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison-table td {
  font-weight: 600;
}

.pricing-module {
  display: grid;
  gap: 22px;
}

.pricing-module__header {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: flex-end;
}

.pricing-module__header h2 {
  margin-bottom: 6px;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
}

.pricing-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.currency-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rate-pill {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.pricing-card {
  overflow: hidden;
}

.pricing-card__header {
  padding: 24px 24px 12px;
}

.pricing-card__header h3 {
  margin-bottom: 6px;
  font-size: 1.9rem;
}

.pricing-card__header p {
  margin: 0;
  color: var(--text-soft);
}

.pricing-table-wrap {
  padding: 0 16px 16px;
  overflow-x: auto;
}

.pricing-table {
  min-width: 520px;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  min-width: 210px;
}

.pricing-table th:not(:first-child),
.pricing-table td:not(:first-child) {
  text-align: center;
}

.price-cell {
  display: grid;
  gap: 4px;
  justify-items: center;
}

.price-cell strong {
  color: var(--heading);
  font-size: 1.08rem;
}

.price-cell span {
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.pricing-note-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.pricing-note-list li {
  padding: 13px 15px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-soft);
  box-shadow: var(--shadow-soft);
}

.pricing-fallback {
  margin: 0;
  color: var(--accent);
  font-size: 0.92rem;
}

.itinerary-grid,
.contact-card-grid,
.contact-layout,
.map-grid {
  display: grid;
  gap: 24px;
}

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

.itinerary-card span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 18px;
  background: var(--accent-soft);
  color: var(--brand);
  font-weight: 700;
}

.contact-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 108px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
  overflow-wrap: anywhere;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

:root[data-theme="dark"] .contact-card {
  background: rgba(255, 255, 255, 0.03);
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.contact-card span {
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--heading);
  font-size: clamp(0.94rem, 1.8vw, 1.04rem);
  line-height: 1.5;
  word-break: break-word;
}

.contact-layout,
.map-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.contact-shell,
.contact-flow,
.contact-message-layout {
  display: grid;
  gap: 24px;
}

.contact-shell {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: start;
}

.contact-shell__main {
  padding: 24px;
  border-radius: calc(var(--radius-xl) + 2px);
  border: 1px solid var(--line);
  background: var(--surface-solid);
  box-shadow: var(--shadow-soft);
}

.contact-shell__aside,
.contact-support-card {
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    var(--surface-solid);
  box-shadow: var(--shadow-soft);
}

.contact-shell__aside {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 108px;
}

.contact-shell__aside h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.contact-shell__links,
.contact-anchor-list,
.contact-support-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.contact-anchor-list {
  margin: 0 0 20px;
}

.contact-anchor-list a,
.contact-shell__links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
  color: var(--heading);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: normal;
  text-align: left;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.contact-shell__links a {
  width: 100%;
}

.contact-anchor-list a:hover,
.contact-shell__links a:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.58);
}

:root[data-theme="dark"] .contact-anchor-list a,
:root[data-theme="dark"] .contact-shell__links a {
  background: rgba(255, 255, 255, 0.04);
}

.contact-flow {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  align-items: start;
}

.contact-support-card {
  display: grid;
  gap: 16px;
}

.contact-support-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.contact-support-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.contact-support-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-message-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.contact-message-layout__intro .section-heading {
  margin-bottom: 0;
}

.contact-message-layout__intro {
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface-solid);
  box-shadow: var(--shadow-soft);
}

.contact-message-layout__intro .section-heading {
  max-width: 44ch;
}

.map-card {
  overflow: hidden;
}

.map-card iframe {
  border: 0;
  min-height: 540px;
}

.faq-card {
  padding: 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

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

:root[data-theme="dark"] .faq-item {
  background: rgba(255, 255, 255, 0.03);
}

.faq-item summary {
  position: relative;
  padding-right: 28px;
  list-style: none;
  cursor: pointer;
  color: var(--heading);
  font-weight: 700;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.3rem;
  line-height: 1;
}

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

.faq-item p {
  margin-top: 12px;
}

.site-footer {
  padding: 56px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--footer-bg);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--footer-line);
}

.site-footer__mark {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.site-footer__monogram {
  width: 58px;
  height: 58px;
  display: block;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}

.site-footer__monogram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer__intro {
  max-width: 640px;
}

.site-footer__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.site-footer h3 {
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 14px;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--footer-line);
  font-size: 0.9rem;
}

.lang-switch--footer {
  gap: 8px;
  flex-wrap: wrap;
}

.lang-switch--footer a {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--footer-line);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.86rem;
}

.lang-switch--footer a:hover,
.lang-switch--footer a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.lightbox {
  width: min(94vw, 1280px);
  padding: 0;
  border: 0;
  border-radius: 32px;
  background: rgba(7, 12, 10, 0.9);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(6, 10, 8, 0.88);
  backdrop-filter: blur(12px);
}

.lightbox__close {
  margin-left: auto;
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 2rem;
}

.lightbox__frame {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.lightbox__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 2px 0;
}

.lightbox__meta {
  display: grid;
  gap: 4px;
}

.lightbox__meta span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightbox__meta strong {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.35;
  max-width: 36ch;
}

.lightbox__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(68vh, 800px);
  padding: 0 58px;
  border-radius: 0;
  background: transparent;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.lightbox__nav--prev {
  left: 14px;
}

.lightbox__nav--next {
  right: 14px;
}

.lightbox img {
  width: 100%;
  max-width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

.lightbox__hint {
  margin: 0;
  padding: 0 8px 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  text-align: center;
}

.reveal {
  opacity: 1;
  transform: none;
}

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

.hero .reveal,
.inner-hero .reveal {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1140px) {
  .split-section,
  .feature-band,
  .site-footer__grid,
  .location-layout,
  .site-footer__top,
  .contact-shell,
  .contact-flow,
  .contact-message-layout,
  .room-detail-intro {
    grid-template-columns: 1fr;
  }

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

  .site-footer__cta {
    justify-content: flex-start;
  }

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

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

  .contact-shell__aside {
    position: static;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 1180px) {
  .site-header {
    --header-top-gap: 6px;
  }

  .site-header__main {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 10px;
    border-radius: 24px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 20;
    min-height: auto;
    max-height: calc(100svh - 92px);
    overflow: auto;
    overscroll-behavior: contain;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 10px;
    background: color-mix(in srgb, var(--surface-solid) 97%, #ffffff 3%);
    border: 0;
    border-radius: 28px;
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 56px rgba(18, 28, 24, 0.14);
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    opacity: 0;
    pointer-events: none;
    transition:
      transform var(--transition),
      opacity var(--transition);
  }

  .nav-open .site-nav {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__links,
  .site-nav__actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .site-nav__links {
    display: grid;
    justify-content: stretch;
    width: 100%;
    gap: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .site-nav__links a {
    justify-content: flex-start;
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border: 0;
    border-radius: 20px;
    background: color-mix(in srgb, var(--surface-alt) 90%, #ffffff 10%);
    box-shadow: none;
    font-size: 1.02rem;
    -webkit-tap-highlight-color: transparent;
  }

  :root[data-theme="dark"] .site-nav__links a {
    background: rgba(255, 255, 255, 0.055);
    box-shadow: none;
  }

  .nav-menu {
    width: 100%;
  }

  .nav-menu::before {
    display: none;
  }

  .nav-menu summary {
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border: 0;
    border-radius: 20px;
    background: color-mix(in srgb, var(--surface-alt) 90%, #ffffff 10%);
    box-shadow: none;
    font-size: 1.02rem;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-menu[open] summary {
    margin-bottom: 4px;
  }

  :root[data-theme="dark"] .nav-menu summary {
    background: rgba(255, 255, 255, 0.055);
    box-shadow: none;
  }

  .nav-menu__list {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 8px;
    padding: 0;
    gap: 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-menu__title {
    display: none;
  }

  .nav-menu__list a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 14px;
    border: 0;
    border-radius: 16px;
    background: color-mix(in srgb, var(--surface-alt) 84%, #ffffff 16%);
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
  }

  :root[data-theme="dark"] .nav-menu__list a {
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
  }

  .nav-menu__index {
    width: 32px;
    height: 32px;
  }

  .nav-menu__text {
    display: block;
    opacity: 1;
    color: var(--heading);
    font-size: 0.98rem;
  }

  .site-nav__utility {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    background: none;
  }

  .lang-menu {
    flex: 1;
  }

  .lang-menu summary {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
    border: 0;
  }

  .lang-menu__list {
    position: static;
    right: auto;
    top: auto;
    width: 100%;
    margin-top: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav__cta {
    width: 100%;
    min-height: 56px;
    border-radius: 20px;
    -webkit-tap-highlight-color: transparent;
  }

  .site-nav__actions {
    gap: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav__meta {
    display: grid;
    gap: 8px;
    margin-top: 0;
    padding: 4px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--text-soft);
    font-size: 0.92rem;
  }

  .site-nav__meta a {
    min-height: 52px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    border: 0;
    background: color-mix(in srgb, var(--surface-alt) 88%, #ffffff 12%);
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
  }

  :root[data-theme="dark"] .site-nav {
    background: rgba(18, 28, 24, 0.98);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
  }

  :root[data-theme="dark"] .site-nav__meta a,
  :root[data-theme="dark"] .lang-menu__list,
  :root[data-theme="dark"] .nav-menu__list {
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
  }

  .site-nav__links a:focus-visible,
  .nav-menu summary:focus-visible,
  .lang-menu summary:focus-visible,
  .theme-toggle:focus-visible,
  .nav-toggle:focus-visible,
  .nav-menu__list a:focus-visible,
  .lang-menu__list a:focus-visible {
    box-shadow: none;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 78px 0;
  }

  .hero__content {
    padding-top: 158px;
    grid-template-columns: 1fr;
  }

  .amenity-grid,
  .amenity-grid--restaurant,
  .discover-grid,
  .story-grid,
  .contact-layout,
  .map-grid,
  .pricing-tables,
  .restaurant-menu-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .cta-banner__inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .room-detail-aside {
    max-width: 720px;
  }

  .lightbox__stage {
    padding: 16px 54px 18px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 24px, 100%);
  }

  .site-header {
    --header-top-gap: 4px;
  }

  .site-header__main {
    gap: 10px;
    padding: 8px;
    border-radius: 22px;
  }

  .site-nav {
    top: calc(100% + 3px);
    max-height: calc(100svh - 86px);
    padding: 10px;
    gap: 10px;
    border-radius: 24px;
  }

  .section {
    padding: 58px 0;
  }

  .hero__content,
  .inner-hero {
    padding-top: 132px;
  }

  .hero__content {
    gap: 26px;
    padding-bottom: 22px;
  }

  .split-section,
  .feature-band,
  .room-detail-intro,
  .contact-message-layout,
  .contact-shell,
  .contact-flow {
    gap: 18px;
  }

  .hero__badges {
    gap: 8px;
    margin-bottom: 14px;
  }

  .hero__badges span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .hero__copy h1 {
    max-width: 8.4ch;
    font-size: clamp(2.15rem, 10.2vw, 3.2rem);
  }

  .hero__stats,
  .form-grid,
  .room-grid,
  .gallery-grid,
  .gallery-grid--rich,
  .contact-card-grid,
  .itinerary-grid,
  .fact-strip__grid,
  .access-note-grid,
  .pricing-note-list,
  .location-panel__meta {
    grid-template-columns: 1fr;
  }

  .form-card,
  .room-card__body,
  .discover-card__body,
  .amenity-card,
  .faq-card,
  .itinerary-card,
  .location-panel,
  .contact-shell__main,
  .contact-shell__aside,
  .contact-support-card {
    padding: 20px;
  }

  .button {
    width: 100%;
  }

  .hero__actions,
  .feature-band__actions,
  .room-detail-intro__actions,
  .cta-banner__actions,
  .form-card__footer,
  .location-panel__actions,
  .contact-anchor-list,
  .contact-shell__links,
  .contact-support-card__actions {
    width: 100%;
  }

  .contact-anchor-list,
  .contact-shell__links,
  .contact-support-card__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-anchor-list a,
  .contact-shell__links a,
  .contact-support-card__actions .button {
    width: 100%;
    justify-content: center;
  }

  .brand__copy span:last-child {
    display: none;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand__monogram {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .brand__copy strong {
    max-width: 11.2ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(0.92rem, 3.7vw, 1.02rem);
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 18px;
  }

  .site-nav__links a,
  .nav-menu summary {
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.95rem;
    border-radius: 17px;
  }

  .nav-menu__list a {
    min-height: 44px;
    padding: 0 14px;
    border-radius: 15px;
  }

  .nav-menu__index {
    width: 30px;
    height: 30px;
    font-size: 0.74rem;
  }

  .lang-menu summary,
  .site-nav__cta {
    min-height: 48px;
  }

  .site-nav__meta a {
    min-height: 48px;
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .contact-card-grid {
    gap: 14px;
  }

  .feature-band__media img,
  .room-detail-aside img,
  .map-card iframe {
    min-height: 340px;
  }

  .image-stack {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .image-stack img:first-child,
  .image-stack img:last-child {
    aspect-ratio: 1.18 / 1;
  }

  .map-card__overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
  }

  .map-card__actions {
    grid-template-columns: 1fr;
  }

  .pricing-module__header,
  .pricing-toolbar {
    justify-items: start;
  }

  .discover-card img,
  .gallery-card img {
    object-position: center;
  }

  .discover-card img {
    aspect-ratio: 1.38 / 1;
  }

  .discover-card__body,
  .story-card {
    padding: 18px;
  }

  .discover-card__body h3 {
    max-width: none;
    font-size: clamp(1.35rem, 5vw, 1.85rem);
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }

  .media-filter,
  .currency-switch,
  .lang-switch,
  .site-nav__utility {
    width: 100%;
    flex-wrap: wrap;
  }

  .site-footer__bottom {
    align-items: flex-start;
  }

  .lang-switch--footer a {
    min-height: 40px;
  }

  .lightbox {
    width: calc(100vw - 16px);
    padding: 0;
  }

  .lightbox__top {
    gap: 12px;
  }

  .lightbox__stage {
    min-height: auto;
    padding: 0 0 58px;
  }

  .lightbox__nav {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .lightbox__nav--prev {
    left: 14px;
  }

  .lightbox__nav--next {
    right: 14px;
  }

  .lightbox img {
    max-height: 66vh;
    border-radius: 16px;
  }

  .lightbox__hint {
    padding: 0 6px 2px;
    font-size: 0.76rem;
  }

  .pricing-module__header > div:first-child,
  .pricing-toolbar,
  .rate-pill {
    width: 100%;
  }

  .rate-pill {
    justify-content: center;
  }

  .comparison-table {
    min-width: 0;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tr {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .comparison-table td {
    padding: 0;
    border: 0;
    display: grid;
    gap: 6px;
  }

  .comparison-table td + td {
    margin-top: 14px;
  }

  .comparison-table td::before {
    content: attr(data-label);
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
}

@media (max-width: 540px) {
  .site-header__main {
    padding: 8px;
  }

  .site-nav {
    left: 0;
    right: 0;
    top: calc(100% + 2px);
    padding: 8px;
    border-radius: 22px;
  }

  .brand__monogram {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand__copy strong {
    max-width: 9.8ch;
    font-size: 0.9rem;
  }

  .brand__copy span:last-child {
    display: none;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    padding: 12px;
    margin-left: auto;
  }

  .site-nav__utility {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-menu__list a,
  .site-nav__meta a,
  .lang-menu__list a {
    border-radius: 16px;
  }

  .theme-toggle {
    width: 58px;
  }

  .nav-menu__text {
    font-size: 0.94rem;
  }

  .discover-card img {
    aspect-ratio: 1.16 / 1;
  }

  .site-nav__links,
  .site-nav__actions,
  .nav-menu__list {
    gap: 10px;
  }

  .site-header {
    --header-top-gap: 2px;
  }

  .hero__copy h1 {
    max-width: 8.1ch;
    font-size: clamp(1.88rem, 10vw, 2.42rem);
  }

  .hero__copy p:not(.section-heading__eyebrow),
  .inner-hero__content p:not(.section-heading__eyebrow) {
    font-size: 0.88rem;
    max-width: 28ch;
  }

  .section {
    padding: 52px 0;
  }

  .discover-card__body,
  .story-card,
  .contact-card,
  .itinerary-card {
    padding: 16px;
  }

  .discover-card__facts {
    gap: 6px;
  }

  .discover-card__facts li {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .feature-band,
  .room-detail-aside__body,
  .contact-shell__main,
  .contact-shell__aside {
    padding: 16px;
  }

  .inner-hero__content h1 {
    max-width: 8.4ch;
    font-size: clamp(1.85rem, 10vw, 2.4rem);
  }
}

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