/* LOCKED v1.1.0 — Design + responsive layout frozen. Breakpoints: 480·720·860·900·960·1024·1025+. Do not change without owner approval. See PROJECT-LOCK.md */
:root {
  --emerald: #0f3d32;
  --emerald-dark: #082a22;
  --emerald-light: #1a5c4a;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dark: #a8872e;
  --cream: #faf8f4;
  --sand: #f0ebe3;
  --white: #ffffff;
  --text: #1c2420;
  --muted: #5c6b64;
  --border: rgba(15, 61, 50, 0.1);
  --shadow: 0 8px 32px rgba(15, 61, 50, 0.1);
  --shadow-lg: 0 20px 60px rgba(15, 61, 50, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 80px;
  --font-brand: 'Playfair Display', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

body.is-loaded .page-loader { opacity: 0; pointer-events: none; }

img { max-width: 100%; display: block; }

a { color: var(--emerald-light); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--gold-dark); }

.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--emerald-dark);
  display: grid;
  place-items: center;
  transition: opacity 0.6s var(--ease);
}

.loader-gem {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  animation: gemPulse 1.2s ease-in-out infinite;
}

@keyframes gemPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.15) rotate(10deg); opacity: 0.7; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

main { padding-top: 0; }

.site-header.is-scrolled {
  background: rgba(8, 42, 34, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
  flex-wrap: nowrap;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  flex-wrap: nowrap;
  margin-left: auto;
}

/* LOCKED v1.1.1 — Language switch: navbar right side · pill DE|EN · gold active. Do not move or restyle. See PROJECT-LOCK.md */
.lang-switch {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  margin-left: auto;
  order: 99;
  background: rgba(255, 255, 255, 0.06);
}

.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  padding: 0.38rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.lang-switch__btn:hover {
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
}

.lang-switch__btn.is-active {
  background: var(--gold);
  color: var(--emerald-dark);
}

.lang-switch__btn.is-active:hover {
  background: var(--gold-light);
  color: var(--emerald-dark);
}
/* END LOCKED — language switch */

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  text-decoration: none;
}

.brand:hover { text-decoration: none; color: var(--white); }

.brand-logo {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 3px rgba(201, 168, 76, 0.28),
    0 2px 12px rgba(255, 255, 255, 0.18);
  filter: brightness(1.14) contrast(1.06);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  display: block;
  font-weight: normal;
  line-height: 1.15;
}

.brand-text small {
  font-size: 0.72rem;
  opacity: 0.8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
  font-family: var(--font-body);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-booking-com {
  background: #003580;
  color: var(--white) !important;
}

.btn-booking-com:hover {
  background: #00224f;
  color: var(--white) !important;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--emerald-dark) !important;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--emerald-dark) !important;
}

.btn-emerald {
  background: var(--emerald);
  color: var(--white) !important;
}

.btn-emerald:hover {
  background: var(--emerald-light);
  color: var(--white) !important;
}

.btn-outline-light {
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white) !important;
}

.btn-outline {
  background: transparent;
  color: var(--emerald) !important;
  border: 1.5px solid var(--emerald);
}

.btn-outline:hover {
  background: var(--emerald);
  color: var(--white) !important;
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
  transition-duration: 0.1s;
}

.btn-booking-com:active {
  background: #001433;
  color: var(--white) !important;
}

.btn-gold:active {
  background: var(--gold-dark);
  color: var(--emerald-dark) !important;
}

.btn-emerald:active {
  background: var(--emerald-dark);
  color: var(--white) !important;
}

.btn-outline-light:active {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--white);
  color: var(--white) !important;
}

.btn-outline:active {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
  color: var(--white) !important;
}

.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: 68vh;
  min-height: 68dvh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 42, 34, 0.88) 0%, rgba(8, 42, 34, 0.62) 42%, rgba(8, 42, 34, 0.35) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0 2rem;
  max-width: 720px;
  margin-inline: auto;
}

.hero-copy {
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.45);
}

.hero-eyebrow::before {
  display: none;
}

.hero-title {
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-title-main {
  font-size: clamp(2.6rem, 7vw, 4.25rem);
  line-height: 1.05;
  color: var(--white);
}

.site-name {
  display: inline;
  line-height: 1.1;
}

.site-name-brand {
  font-family: var(--font-brand);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.site-name-suffix {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hero-title-main .site-name {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2em;
}

.hero-title-main .site-name-brand {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.hero-title-main .site-name-suffix {
  font-size: 0.74em;
  color: var(--gold-light);
  letter-spacing: 0.06em;
}

.brand-text .site-name-brand {
  font-size: 1.38rem;
  letter-spacing: 0.04em;
}

.brand-text .site-name-suffix {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
}

.footer-brand .site-name-brand,
.booking-aside-body .site-name-brand {
  font-weight: 600;
}

.footer-brand .site-name-suffix,
.booking-aside-body .site-name-suffix {
  color: var(--gold-light);
}

.booking-aside-body .site-name-suffix {
  font-size: 0.82em;
}

.contact-info .site-name-brand {
  font-weight: 600;
}

.contact-info .site-name-suffix {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-title-accent {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.2vw, 1.85rem);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1.25;
}

.hero-lead {
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 54ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.hero-lead strong {
  color: var(--gold-light);
  font-weight: 600;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  animation: fadeUp 0.8s var(--ease) 0.45s both;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.65rem;
  animation: fadeUp 0.8s var(--ease) 0.45s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.hero-btn:hover {
  text-decoration: none;
}

.hero-btn--primary {
  background: var(--gold);
  color: var(--emerald-dark) !important;
  border: 2px solid var(--gold);
}

.hero-btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--emerald-dark) !important;
}

.hero-btn--primary:active {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--emerald-dark) !important;
}

.hero-btn--secondary {
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  padding: calc(0.78rem - 1.5px) calc(1.35rem - 1.5px);
}

.hero-btn--secondary:hover {
  border-color: rgba(232, 213, 163, 0.75);
  color: var(--gold-light) !important;
  background: rgba(255, 255, 255, 0.06);
}

.hero-btn--secondary:active {
  border-color: var(--gold);
  color: var(--gold-light) !important;
  background: rgba(255, 255, 255, 0.1);
}

/* Booking bar */
.booking-bar {
  padding: 2rem 0 1.5rem;
  margin-top: 0;
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, rgba(240, 235, 227, 0.55) 0%, transparent 100%);
}

.booking-bar-card {
  background: var(--white);
  border-radius: calc(var(--radius) + 2px);
  box-shadow:
    0 24px 48px rgba(8, 42, 34, 0.12),
    0 8px 20px rgba(8, 42, 34, 0.05),
    0 0 0 1px rgba(15, 61, 50, 0.07);
  overflow: hidden;
  border: none;
}

.booking-bar-card::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-dark), var(--gold), var(--gold-light), var(--gold), var(--emerald-dark));
}

.booking-bar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.15rem 1.6rem 1rem;
  background: linear-gradient(180deg, rgba(15, 61, 50, 0.035) 0%, transparent 100%);
  border-bottom: 1px solid rgba(15, 61, 50, 0.08);
}

.booking-bar-intro {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.booking-bar-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.booking-bar-heading {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  color: var(--emerald-dark);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.booking-bar-trust {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.booking-bar-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 53, 128, 0.08);
  border: 1px solid rgba(0, 53, 128, 0.14);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #003580;
}

.booking-bar-note {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.booking-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(250, 248, 244, 0.65) 0%, var(--white) 100%);
}

.booking-field {
  position: relative;
  padding: 1.1rem 1.4rem;
  border-right: 1px solid rgba(15, 61, 50, 0.08);
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.booking-field:focus-within,
.booking-field:has(.custom-select.is-open) {
  background: rgba(201, 168, 76, 0.1);
  box-shadow: inset 3px 0 0 var(--gold);
}

.booking-field label,
.booking-field-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.booking-field input,
.booking-field .custom-select-trigger {
  width: 100%;
  padding: 0;
  padding-right: 1.6rem;
  border: none;
  border-radius: 0;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--emerald-dark);
  background: transparent;
  transition: color 0.25s;
  min-height: 1.5rem;
}

.booking-field--date::after {
  content: '';
  position: absolute;
  right: 1.35rem;
  bottom: 1.25rem;
  width: 17px;
  height: 17px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 24 24' fill='none' stroke='%23a8872e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.7;
  pointer-events: none;
}

.booking-field select.custom-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.booking-field input[type="date"] {
  color-scheme: light;
  cursor: pointer;
}

.booking-field--date input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 2.5rem;
  height: 100%;
  cursor: pointer;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field .custom-select-trigger:focus {
  outline: none;
  box-shadow: none;
}

/* Custom select dropdown */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  min-height: 1.5rem;
}

.custom-select-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select-chevron {
  flex-shrink: 0;
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230f3d32' d='M1.4.6 6 5.2 10.6.6 12 2l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.2s var(--ease);
}

.custom-select.is-open .custom-select-chevron {
  transform: rotate(180deg);
}

.custom-select-trigger:active {
  color: var(--emerald-dark);
}

.custom-select.is-open .custom-select-trigger {
  color: var(--emerald-dark);
}

.form-group .custom-select-trigger:active {
  border-color: var(--gold);
  background: var(--white);
}

.form-group .custom-select.is-open .custom-select-trigger {
  border-color: var(--gold);
  background: var(--white);
  color: var(--emerald-dark);
}

.custom-select-menu {
  position: fixed;
  z-index: 3000;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: var(--white);
  border: 1px solid rgba(15, 61, 50, 0.12);
  border-radius: var(--radius-sm);
  box-shadow:
    0 20px 48px rgba(8, 42, 34, 0.16),
    0 0 0 1px rgba(15, 61, 50, 0.05);
  max-height: min(280px, 50vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}

.custom-select-menu.is-open {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.72rem 0.9rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}

.custom-select-option:hover,
.custom-select-option.is-focused {
  background: rgba(201, 168, 76, 0.14);
  color: var(--emerald-dark);
}

.custom-select-option.is-selected {
  background: rgba(15, 61, 50, 0.07);
  color: var(--emerald-dark);
  font-weight: 600;
}

.custom-select-option.is-selected::after {
  content: '✓';
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.85rem;
}

.custom-select-menu::-webkit-scrollbar {
  width: 6px;
}

.custom-select-menu::-webkit-scrollbar-thumb {
  background: rgba(15, 61, 50, 0.22);
  border-radius: 999px;
}

.form-group .custom-select-trigger {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  min-height: auto;
  font-weight: 500;
}

.form-group .custom-select.is-open .custom-select-trigger,
.form-group .custom-select-trigger:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
  outline: none;
}

.form-group select.custom-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.booking-field-action {
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  background: rgba(15, 61, 50, 0.04);
  border-left: 1px solid rgba(201, 168, 76, 0.22);
}

.booking-submit {
  width: 100%;
  min-width: 11.5rem;
  min-height: 3.05rem;
  padding: 0.82rem 1.25rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 53, 128, 0.26);
}

.booking-submit:hover {
  box-shadow: 0 10px 24px rgba(0, 53, 128, 0.35);
}

.booking-submit:active {
  background: #001433;
  transform: translateY(1px);
  box-shadow: 0 4px 12px rgba(0, 53, 128, 0.25);
}

/* Sections */
.section {
  padding: 2.75rem 0;
}

.section-compact {
  padding-bottom: 2rem;
}

.section-stats {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.section-welcome {
  padding-top: 0.75rem;
  padding-bottom: 2rem;
  background: var(--sand);
}

.welcome-block {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.35rem;
  align-items: stretch;
}

.welcome-visual {
  position: relative;
  margin: 0;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(8, 42, 34, 0.14);
  border: 1px solid rgba(15, 61, 50, 0.08);
  min-height: 100%;
  max-width: 100%;
  min-width: 0;
}

.welcome-visual img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.welcome-visual__badge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(8, 42, 34, 0.92));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.welcome-panel {
  background: var(--white);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(15, 61, 50, 0.1);
  box-shadow: 0 16px 48px rgba(8, 42, 34, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.welcome-panel::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-dark), var(--gold), var(--gold-light), var(--gold), var(--emerald-dark));
}

.welcome-panel__head {
  text-align: left;
  padding: 1.45rem 1.5rem 1.15rem;
  border-bottom: 1px solid rgba(15, 61, 50, 0.08);
  background: linear-gradient(180deg, rgba(15, 61, 50, 0.035) 0%, transparent 100%);
}

.welcome-panel__head .section-eyebrow {
  margin-bottom: 0.45rem;
}

.welcome-panel__head h2 {
  font-family: var(--font-brand);
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  font-weight: 600;
  color: var(--emerald-dark);
  margin: 0 0 0.5rem;
  line-height: 1.12;
}

.welcome-panel__head p {
  margin: 0;
  max-width: none;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.6;
}

.welcome-grid {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.welcome-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid rgba(15, 61, 50, 0.08);
  transition: background 0.25s var(--ease);
}

.welcome-item:last-child {
  border-bottom: none;
}

.welcome-item:hover {
  background: rgba(201, 168, 76, 0.08);
}

.welcome-item__num {
  flex-shrink: 0;
  font-family: var(--font-brand);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  min-width: 2rem;
  padding-top: 0.15rem;
}

.welcome-item__body {
  flex: 1;
  min-width: 0;
}

.welcome-item__tag {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}

.welcome-item h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--emerald-dark);
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.welcome-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.section-rooms-list {
  padding-bottom: 1.5rem;
}

.section-rooms-list .room-card:last-child {
  margin-bottom: 0;
}

.section-rules {
  padding: 1.25rem 0 2.75rem;
  background: var(--sand);
}

.rules-panel {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(15, 61, 50, 0.1);
  box-shadow: 0 16px 48px rgba(8, 42, 34, 0.07);
  overflow: hidden;
}

.rules-panel::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-dark), var(--emerald), var(--emerald-dark));
}

.rules-panel__head {
  text-align: center;
  padding: 1.85rem 1.75rem 1.5rem;
  border-bottom: 1px solid rgba(15, 61, 50, 0.08);
}

.rules-panel__head .section-eyebrow {
  margin-bottom: 0.55rem;
}

.rules-panel__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.25rem);
  font-weight: 600;
  color: var(--emerald-dark);
  margin: 0 0 0.5rem;
  line-height: 1.12;
}

.rules-panel__head p {
  margin: 0 auto;
  max-width: 48ch;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.6;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.5rem 1.65rem 1.65rem;
  background: linear-gradient(180deg, rgba(250, 248, 244, 0.5) 0%, var(--white) 100%);
}

.rules-item {
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border: 1px solid rgba(15, 61, 50, 0.09);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 18px rgba(8, 42, 34, 0.04);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.rules-item:hover {
  border-left-color: var(--emerald);
  box-shadow: 0 10px 26px rgba(8, 42, 34, 0.08);
}

.rules-item:active {
  background: rgba(15, 61, 50, 0.03);
  border-left-color: var(--emerald-dark);
}

.rules-item__tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.45rem;
}

.rules-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--emerald-dark);
  margin: 0 0 0.45rem;
  line-height: 1.25;
}

.rules-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.section-alt { background: var(--white); }
.section-sand { background: var(--sand); }

.section-head {
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--emerald-dark);
  margin: 0 0 0.75rem;
}

.section-head--tight .section-eyebrow {
  margin-bottom: 0.35rem;
}

.section-head--tight h2 {
  margin-bottom: 0.15rem;
  line-height: 1.1;
}

.section-head--tight p {
  margin-top: 0;
  line-height: 1.35;
}

.section-head p {
  margin: 0 auto;
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.02rem;
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: transform 0.4s var(--ease);
}

.stats-strip.is-counting .stat-number {
  transform: scale(1.02);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.room-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, min(400px, 100%)));
  gap: 1.15rem;
  justify-content: center;
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
}

.room-preview-grid .card {
  height: 100%;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 220px;
  overflow: hidden;
}

.card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s var(--ease);
}

.card:hover .card-img img { transform: scale(1.06); }

.card-body { padding: 1.15rem; }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--emerald-dark);
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card-price {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 0.9rem;
}

/* Amenities */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1120px;
  margin-inline: auto;
}

.amenity-item {
  background: var(--white);
  border: 1px solid rgba(15, 61, 50, 0.09);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.05rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 4.5rem;
  box-shadow: 0 6px 18px rgba(8, 42, 34, 0.04);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.amenity-item:hover {
  border-left-color: var(--emerald);
  box-shadow: 0 10px 26px rgba(8, 42, 34, 0.08);
  transform: translateY(-2px);
}

.amenity-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(15, 61, 50, 0.08));
  color: var(--emerald);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.amenity-icon-svg {
  width: 22px;
  height: 22px;
  display: block;
}

.amenity-item__label {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--emerald-dark);
  line-height: 1.35;
}

/* Amenities — booking page */
.amenities-section {
  padding: 2rem 0 2.5rem;
  background: var(--sand);
}

.booking-page-section + .amenities-section {
  padding-top: 1.5rem;
}

.amenities-block {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 2rem;
  align-items: stretch;
}

.amenities-block__visual {
  position: relative;
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 20px 50px rgba(8, 42, 34, 0.12);
}

.amenities-block__visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.amenities-block__visual figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.35rem 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(8, 42, 34, 0.92));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.amenities-block__content {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
}

.amenities-block__head .section-eyebrow {
  margin-bottom: 0.55rem;
}

.amenities-block__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 600;
  color: var(--emerald-dark);
  margin: 0 0 0.5rem;
  line-height: 1.12;
}

.amenities-block__head p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 54ch;
}

.amenities-block__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  flex: 1;
}

.amenity-tile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.25rem;
  padding: 1rem 1.15rem 1rem 1.35rem;
  background: var(--white);
  border: 1px solid rgba(15, 61, 50, 0.09);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 18px rgba(8, 42, 34, 0.04);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.amenity-tile:hover {
  border-left-color: var(--emerald);
  box-shadow: 0 10px 26px rgba(8, 42, 34, 0.08);
}

.amenity-tile:active {
  background: rgba(15, 61, 50, 0.04);
  border-left-color: var(--emerald-dark);
  box-shadow: inset 0 2px 6px rgba(8, 42, 34, 0.06);
}

.amenity-tile__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(15, 61, 50, 0.08));
  color: var(--emerald);
  display: grid;
  place-items: center;
}

.amenity-tile__icon .amenity-icon-svg {
  width: 20px;
  height: 20px;
}

.amenity-tile__label {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--emerald-dark);
  line-height: 1.35;
}

/* Restaurant block */
.restaurant-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.restaurant-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  min-width: 0;
}

.restaurant-visual img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 280px;
  object-fit: cover;
  display: block;
}

.restaurant-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--emerald);
  color: var(--white);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.restaurant-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--emerald-dark);
  margin: 0 0 1rem;
}

.restaurant-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.restaurant-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--muted);
}

.restaurant-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.65rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s var(--ease);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 61, 50, 0);
  transition: background 0.3s;
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { background: rgba(15, 61, 50, 0.25); }

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  max-height: 420px;
  aspect-ratio: auto;
}

/* Reviews */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}

.review-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}

.review-card blockquote {
  margin: 0 0 1rem;
  padding-top: 1.5rem;
  font-style: italic;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.review-author {
  font-weight: 600;
  color: var(--emerald-dark);
}

.review-country {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Room cards */
.room-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--white);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(8, 42, 34, 0.08);
  border: 1px solid rgba(15, 61, 50, 0.08);
  margin-bottom: 2rem;
  transition: box-shadow 0.4s var(--ease);
}

.room-card--reverse .room-gallery { order: 2; }
.room-card--reverse .room-details { order: 1; }

.room-card:hover { box-shadow: 0 18px 48px rgba(8, 42, 34, 0.12); }

.room-gallery {
  position: relative;
  min-height: 360px;
  height: 100%;
  background: var(--emerald-dark);
}

.room-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.room-gallery img[hidden] {
  display: none;
}

.room-gallery-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.room-gallery-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.room-gallery-dots button.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

.room-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
}

.room-details__body {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  height: 100%;
}

.room-details h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: var(--emerald-dark);
  margin: 0 0 0.65rem;
  line-height: 1.15;
}

.room-description {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-size: 0.84rem;
  color: var(--emerald-dark);
}

.room-meta span {
  background: var(--sand);
  border: 1px solid rgba(15, 61, 50, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 500;
}

.room-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.room-features li {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.room-features li::before {
  content: '✓';
  color: var(--emerald);
  font-weight: 700;
  margin-right: 0.4rem;
}

.room-foot {
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(15, 61, 50, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.room-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--emerald-dark);
  line-height: 1.2;
}

.room-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.room-actions .btn {
  padding: 0.78rem 1.45rem;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

/* Booking page */
.booking-page-section {
  padding: 2rem 0 1.5rem;
}

.page-hero + .section {
  padding-top: 2.25rem;
}

.page-hero--compact + .booking-page-section {
  padding-top: 1.5rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  gap: 2rem;
  align-items: stretch;
}

.booking-aside {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: linear-gradient(165deg, #061f19 0%, var(--emerald-dark) 35%, var(--emerald) 100%);
  color: var(--white);
  box-shadow:
    0 32px 70px rgba(8, 42, 34, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.28);
}

.booking-aside::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold), var(--gold-light), var(--gold-dark));
  z-index: 3;
}

.booking-aside-photo {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.booking-aside-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 42, 34, 0.15) 0%, rgba(8, 42, 34, 0.92) 100%);
}

.booking-aside-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.booking-aside-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: rgba(8, 42, 34, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}

.booking-aside-body {
  padding: 1.65rem 1.65rem 1.85rem;
  margin-top: -3rem;
  position: relative;
  z-index: 1;
}

.booking-aside-logo {
  display: block;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  margin-bottom: 0.9rem;
}

.booking-aside h2 {
  font-size: 1.85rem;
  font-weight: normal;
  margin: 0 0 0.25rem;
  line-height: 1.1;
}

.booking-aside-tag {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.booking-aside-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
  font-size: 0.88rem;
  line-height: 1.6;
}

.booking-aside-facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.93;
}

.booking-fact-icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.95;
}

.booking-aside-facts li:last-child { border-bottom: none; }

.booking-aside-facts a {
  color: var(--gold-light);
  font-weight: 600;
}

.booking-aside-facts a:hover { color: var(--white); }

.booking-aside-rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.booking-rate {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.32);
  border-radius: var(--radius-sm);
  padding: 0.9rem 0.85rem;
  text-align: center;
}

.booking-rate-icon {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  line-height: 1;
}

.booking-rate-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.35rem;
}

.booking-rate-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.1;
}

.booking-rate-meta {
  display: block;
  font-size: 0.75rem;
  opacity: 0.78;
  margin-top: 0.25rem;
}

.booking-main-card {
  background: var(--white);
  border-radius: calc(var(--radius) + 6px);
  padding: 2.35rem 2.5rem 2.1rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow:
    0 28px 70px rgba(8, 42, 34, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.booking-note {
  margin-top: auto;
  font-size: 0.88rem;
  color: var(--muted);
  padding-top: 1.35rem;
  line-height: 1.65;
}

.booking-page-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.65rem;
}

.booking-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 3rem);
  color: var(--emerald-dark);
  margin: 0 0 0.65rem;
  line-height: 1.08;
  font-weight: 600;
}

.booking-main-lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 1.35vw, 1rem);
  max-width: none;
  line-height: 1.5;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .booking-main-lead {
    white-space: normal;
    max-width: 52ch;
  }
}

.booking-main-header {
  margin-bottom: 1.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(15, 61, 50, 0.08);
}

.booking-flow {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
}

.booking-flow::before {
  content: '';
  position: absolute;
  top: 1.95rem;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.55), transparent);
  pointer-events: none;
}

.booking-flow li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  padding: 0 0.5rem;
}

.booking-flow-num {
  display: none;
}

.booking-flow-icon {
  display: inline-flex;
  width: 3.85rem;
  height: 3.85rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  line-height: 1;
  background: var(--white);
  border: 2px solid rgba(201, 168, 76, 0.5);
  box-shadow: 0 6px 20px rgba(15, 61, 50, 0.1);
  position: relative;
  z-index: 1;
}

.booking-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.booking-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 1rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.booking-cta__icon {
  font-size: 1.15rem;
  line-height: 1;
}

.booking-flow-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.booking-flow strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--emerald-dark);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.booking-flow span {
  font-size: 0.98rem;
  font-weight: 600;
  color: #2a3832;
  line-height: 1.5;
}

.booking-panel--luxury {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  border-radius: calc(var(--radius) + 2px);
  box-shadow:
    0 14px 36px rgba(8, 42, 34, 0.08),
    0 0 0 1px rgba(15, 61, 50, 0.07);
  overflow: hidden;
}

.booking-panel--luxury::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
}

.booking-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.35rem 0.85rem;
  border-bottom: 1px solid rgba(15, 61, 50, 0.07);
}

.booking-panel-head span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--emerald-dark);
}

.booking-panel-head small {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.booking-panel--luxury .booking-panel-fields {
  background: var(--white);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-panel-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 0;
  align-items: stretch;
}

.booking-panel--luxury .booking-field {
  padding: 1.35rem 1.5rem;
  border-right-color: rgba(15, 61, 50, 0.06);
  min-width: 0;
}

.booking-panel--luxury .booking-field input,
.booking-panel--luxury .booking-field .custom-select-trigger {
  font-size: 1.02rem;
}

.booking-panel--luxury .custom-select-value {
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.booking-panel--luxury .booking-field-action {
  grid-column: 1 / -1;
  background: var(--cream);
  border-top: 1px solid rgba(15, 61, 50, 0.08);
  border-right: none;
  padding: 1.15rem 1.5rem 1.35rem;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

.booking-panel--luxury .booking-field-label {
  display: none;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.booking-panel--luxury .booking-submit {
  width: auto;
  min-width: min(100%, 18rem);
  min-height: 3.15rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 22px rgba(0, 53, 128, 0.28);
}

.booking-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(15, 61, 50, 0.08);
}

.booking-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  border: 1px solid rgba(15, 61, 50, 0.1);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.booking-trust-item:hover {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 6px 18px rgba(8, 42, 34, 0.06);
}

.booking-trust-item:active {
  background: rgba(15, 61, 50, 0.06);
  border-color: var(--emerald);
  transform: scale(0.99);
}

.booking-trust-icon {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: rgba(15, 61, 50, 0.08);
  color: var(--emerald);
  font-size: 0.95rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
}

.booking-trust-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--emerald-dark);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.booking-main-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.booking-main-actions .btn {
  padding: 0.9rem 1.65rem;
  font-size: 0.95rem;
}

.booking-main-actions .btn-gold {
  padding-inline: 1.75rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1.5rem;
  align-items: stretch;
}

.contact-layout > * {
  min-width: 0;
}

.contact-layout .reveal {
  opacity: 1;
  transform: none;
}

.contact-info {
  align-self: start;
  background: linear-gradient(160deg, var(--emerald-dark), var(--emerald));
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15), transparent 70%);
  border-radius: 50%;
}

.contact-info h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 0.75rem;
  position: relative;
}

.contact-info > p { opacity: 0.9; position: relative; }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  position: relative;
}

.contact-list li {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-list a { color: var(--gold-light); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.15rem; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--emerald-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--cream);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-alert {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-weight: 500;
}

.form-alert.is-success {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}

.form-alert.is-error {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}

/* Page hero */
.page-hero {
  background: linear-gradient(160deg, var(--emerald-dark) 0%, var(--emerald) 60%, var(--emerald-light) 100%);
  color: var(--white);
  padding: calc(var(--header-h) + 1.75rem) 0 1.75rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin: 0 0 0.75rem;
}

.page-hero p {
  margin: 0;
  opacity: 0.9;
  max-width: 58ch;
  font-size: 1.05rem;
}

.page-hero a { color: var(--gold-light); }

.page-hero--rooms {
  padding: calc(var(--header-h) + 0.65rem) 0 1.65rem;
}

.page-hero--rooms::after {
  display: none;
}

.page-hero--rooms + .section-rooms-list {
  padding-top: 1.75rem;
}

.page-hero--contact {
  padding: calc(var(--header-h) + 0.65rem) 0 1.65rem;
}

.page-hero--contact::after {
  display: none;
}

.page-hero--rooms .container,
.page-hero--contact .container {
  position: relative;
  z-index: 2;
}

.page-hero--rooms h1,
.page-hero--contact h1 {
  margin-bottom: 0;
  line-height: 1.08;
}

.page-hero--rooms p,
.page-hero--contact p {
  margin-top: 0;
  line-height: 1.35;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(0.82rem, 1.35vw, 0.98rem);
  position: relative;
  z-index: 1;
  color: var(--white);
  opacity: 0.92;
}

.page-hero--contact + .section {
  padding: 1.5rem 0 1.75rem;
}

.page-hero--contact + .section + .section-compact {
  padding-top: 2rem;
}

.page-hero--compact {
  padding: calc(var(--header-h) + 1.15rem) 0 2.25rem;
}

.page-hero--compact::after {
  height: 44px;
}

.page-hero--compact h1 {
  font-size: clamp(1.9rem, 4vw, 2.45rem);
  margin-bottom: 0.25rem;
  line-height: 1.12;
}

.page-hero--compact p {
  font-size: clamp(0.78rem, 1.5vw, 0.9rem);
  line-height: 1.45;
  opacity: 0.88;
  max-width: none;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.page-hero--compact .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .page-hero--compact p,
  .page-hero--rooms p,
  .page-hero--contact p {
    white-space: normal;
    max-width: 52ch;
  }
}

/* Map block */
.map-block {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.map-block__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-height: 380px;
  height: 100%;
  align-self: stretch;
  background: var(--emerald-dark);
  min-width: 0;
  max-width: 100%;
  isolation: isolate;
}

.hotel-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: grayscale(12%) contrast(1.05);
  transition: filter 0.4s var(--ease);
  border-radius: var(--radius);
  overflow: hidden;
}

.hotel-map .leaflet-container {
  width: 100% !important;
  height: 100% !important;
  border-radius: var(--radius);
}

.hotel-map .leaflet-control-attribution {
  display: none;
}

.hotel-map-marker {
  background: transparent;
  border: none;
}

.hotel-map-marker span {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background: var(--emerald);
  border: 3px solid var(--gold);
  transform: rotate(-45deg);
  box-shadow: 0 4px 14px rgba(8, 42, 34, 0.35);
}

.hotel-map-marker span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--gold-light);
}

.map-block__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(12%) contrast(1.05);
  transition: filter 0.4s var(--ease);
}

.map-block__frame:hover iframe {
  filter: grayscale(0%) contrast(1);
}

.map-block__frame:hover .hotel-map {
  filter: grayscale(0%) contrast(1);
}

.map-block__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(8, 42, 34, 0.88);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  pointer-events: none;
}

.map-block__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

.map-block__sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
  max-width: 100%;
}

.map-info-card {
  background: linear-gradient(160deg, var(--emerald-dark), var(--emerald));
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 168, 76, 0.2);
  flex: 1;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.map-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  color: var(--white);
}

.map-info-card__address {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.map-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.map-info-actions .btn {
  font-size: 0.85rem;
  padding: 0.65rem 1.1rem;
}

.map-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
  min-width: 0;
}

.map-detail-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.map-detail-item > div {
  min-width: 0;
  flex: 1;
}

.map-detail-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.map-detail-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(15, 61, 50, 0.08));
  color: var(--emerald);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.map-detail-item strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--emerald);
  margin-bottom: 0.15rem;
  overflow-wrap: anywhere;
}

.map-detail-item span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Legacy map-card fallback */
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-card iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--emerald-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0 env(safe-area-inset-bottom, 0);
  margin-top: 0;
  position: relative;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23082a22' d='M0 30 Q360 60 720 30 T1440 30 V60 H0Z'/%3E%3C/svg%3E") center/cover no-repeat;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 1.75rem;
  padding-bottom: 1.75rem;
  padding-top: 0.5rem;
}

.footer-logo {
  border-radius: 50%;
  margin-bottom: 0.85rem;
  border: 2px solid var(--gold);
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
}

.footer-sub {
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.75rem !important;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.5rem; font-size: 0.92rem; }
.footer-links a { color: rgba(255, 255, 255, 0.85); }
.footer-links a:hover { color: var(--gold-light); }

.footer-booking-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--gold-light) !important;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.footer-bottom a { color: var(--gold-light); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(8, 42, 34, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.lightbox.is-open { display: flex; }

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 90vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--emerald-dark);
  transition: transform 0.25s;
}

.lightbox-close:hover { transform: rotate(90deg); }

/* Desktop — restaurant image matches text column height */
@media (min-width: 1025px) {
  .hero-content.container {
    margin-left: clamp(1.25rem, 4vw, 5rem);
    margin-right: auto;
  }

  .restaurant-block {
    align-items: stretch;
  }

  .restaurant-visual {
    display: flex;
    min-height: 100%;
  }

  .restaurant-visual img {
    flex: 1;
    width: 100%;
    height: 100%;
    max-height: none;
    min-height: 280px;
    aspect-ratio: auto;
    object-fit: cover;
  }
}

@media (min-width: 1025px) {
  .map-block__frame {
    height: 100%;
    min-height: 380px;
  }
}

/* Responsive — REQUIRED: 1025px+ desktop unchanged · 1024 tablet · 900 mobile nav · 720 phone · 480 small phone */
@media (max-width: 1024px) {
  .grid-3, .stats-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amenity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
  }
  .gallery-item,
  .gallery-item:first-child {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 16 / 10; max-height: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .restaurant-block { grid-template-columns: 1fr; }
  .restaurant-visual img { max-height: none; aspect-ratio: 16 / 10; }
  .room-card { grid-template-columns: 1fr; }
  .room-card--reverse .room-gallery,
  .room-card--reverse .room-details { order: unset; }
  .room-gallery { min-height: 280px; aspect-ratio: 16 / 10; }
  .booking-bar-inner { grid-template-columns: 1fr 1fr; }
  .booking-panel-fields { grid-template-columns: 1fr 1fr; }
  .booking-panel--luxury .booking-panel-fields { grid-template-columns: 1fr 1fr; }
  .booking-panel--luxury .booking-field-action {
    grid-column: 1 / -1;
    justify-content: stretch;
  }
  .booking-panel--luxury .booking-submit { width: 100%; min-width: 0; white-space: normal; }
  .booking-panel--luxury .custom-select-value {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .booking-trust { grid-template-columns: 1fr; }
  .booking-field {
    border-right: none;
    border-bottom: 1px solid rgba(15, 61, 50, 0.08);
  }
  .booking-field:nth-child(odd) { border-right: 1px solid rgba(15, 61, 50, 0.08); }
  .booking-field-action {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
  }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-aside { position: static; }
  .booking-main-card { padding: 1.85rem 1.75rem; }
  .booking-flow { grid-template-columns: 1fr; gap: 1rem; }
  .booking-flow::before { display: none; }
  .booking-flow li {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
  }
  .amenities-block { grid-template-columns: 1fr; }
  .amenities-block__visual img { min-height: 240px; }
  .amenities-block__grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; padding: 1.25rem 1.25rem 1.35rem; }
  .rules-panel__head { padding: 1.5rem 1.25rem 1.25rem; }
  .welcome-block { grid-template-columns: 1fr; }
  .welcome-visual img { min-height: 260px; }
  .welcome-panel__head { padding: 1.35rem 1.25rem 1.15rem; }
  .welcome-item { padding: 1.1rem 1.25rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .map-block { grid-template-columns: 1fr; }
  .map-block__frame {
    height: min(400px, 52vw);
    min-height: 280px;
  }
  .map-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .room-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
  }
  .hero-content {
    margin-inline: auto;
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(8, 42, 34, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0));
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
    z-index: 200;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
  }

  .site-nav .btn-booking-com {
    width: 100%;
    justify-content: center;
    margin-top: 0.35rem;
  }

  .header-end {
    gap: 0.5rem;
    flex-wrap: nowrap;
  }

  /* LOCKED — mobile: lang-switch right of header-end, before hamburger */
  .lang-switch {
    order: 1;
    margin-left: 0;
  }

  .nav-toggle {
    order: 2;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand-text {
    min-width: 0;
  }

  .container {
    width: min(1200px, 100%);
    max-width: 100%;
    padding-inline: max(1.25rem, env(safe-area-inset-left, 0)) max(1.25rem, env(safe-area-inset-right, 0));
    margin-inline: auto;
    box-sizing: border-box;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1200px, 100%);
    max-width: 100%;
    padding-inline: max(1.35rem, env(safe-area-inset-left, 0)) max(1.35rem, env(safe-area-inset-right, 0));
    margin-inline: auto;
    box-sizing: border-box;
  }

  .grid-2, .grid-3, .stats-strip, .footer-grid, .form-row, .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    width: 100%;
    max-width: 100%;
    justify-items: stretch;
    margin-inline: auto;
  }

  .gallery-item,
  .gallery-item:first-child {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    max-height: none;
    display: block;
  }

  .room-preview-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .room-preview-grid .card {
    width: 100%;
    max-width: 100%;
  }

  .card-img {
    max-height: none;
  }

  .booking-bar-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 1rem 1.15rem 0.85rem;
  }

  .booking-bar-trust {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .booking-bar-inner { grid-template-columns: 1fr; }

  .booking-panel-fields { grid-template-columns: 1fr; }
  .booking-panel--luxury .booking-panel-fields { grid-template-columns: 1fr; }

  .booking-field,
  .booking-field:nth-child(odd) {
    border-right: none;
    border-bottom: 1px solid rgba(15, 61, 50, 0.08);
  }

  .booking-field-action {
    border-bottom: none;
    padding: 1rem 1.15rem 1.15rem;
  }

  .booking-submit {
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .booking-panel--luxury .custom-select-value {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .booking-panel--luxury .booking-field-action {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-main-card { padding: 1.5rem 1.25rem; }

  .booking-aside-rates { grid-template-columns: 1fr; }

  .booking-trust {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .booking-trust-item {
    justify-content: flex-start;
    text-align: left;
    padding: 0.85rem 1rem;
  }

  .booking-cta {
    grid-template-columns: 1fr;
  }

  .booking-cta__btn {
    width: 100%;
    justify-content: center;
  }

  .booking-main-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 19.5rem;
    gap: 0.65rem;
  }

  .booking-main-actions .btn {
    width: 100%;
    max-width: 19.5rem;
    min-height: 2.85rem;
    padding: 0.82rem 1.15rem;
    font-size: 0.84rem;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .booking-aside-body { padding: 1.25rem; }

  .hero { min-height: 62vh; min-height: 62dvh; }

  .hero-content {
    padding: 1.15rem 0 1.65rem;
    margin-inline: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 19.5rem;
    gap: 0.65rem;
    margin-top: 1.35rem;
  }

  .hero-btn {
    width: 100%;
    max-width: 19.5rem;
    min-height: 2.85rem;
    padding: 0.82rem 1.15rem;
    font-size: 0.84rem;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .hero-title-main {
    font-size: clamp(2.1rem, 9vw, 2.75rem);
  }

  .hero-meta span {
    font-size: 0.82rem;
    padding: 0.45rem 0.85rem;
  }

  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .room-features { grid-template-columns: 1fr; }

  .room-details__body {
    padding: 1.25rem 1.25rem 1.35rem;
  }

  .room-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .room-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 19.5rem;
    gap: 0.65rem;
  }

  .room-actions .btn {
    width: 100%;
    max-width: 19.5rem;
    min-height: 2.85rem;
    padding: 0.82rem 1.15rem;
    font-size: 0.84rem;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .map-detail-grid { grid-template-columns: 1fr; }

  .map-block__frame {
    height: min(380px, 62vw);
    min-height: 240px;
  }

  .map-info-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .map-info-actions .btn {
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .contact-form-wrap {
    padding: 1.35rem 1.15rem;
  }

  .contact-list a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom p,
  .footer-bottom span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .page-hero {
    padding: calc(var(--header-h) + 1.25rem) 0 1.5rem;
  }

  .page-hero--compact {
    padding-bottom: 2rem;
  }

  .page-hero + .section {
    padding-top: 2.25rem;
  }

  .page-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .restaurant-content h2 {
    font-size: clamp(1.65rem, 6vw, 2.2rem);
  }

  .section-head h2 {
    font-size: clamp(1.65rem, 5.5vw, 2.2rem);
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .section { padding: 2rem 0; }
}

@media (max-width: 480px) {
  .container {
    padding-inline: max(1.15rem, env(safe-area-inset-left, 0)) max(1.15rem, env(safe-area-inset-right, 0));
  }

  :root {
    --header-h: 72px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-text small {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .stats-strip {
    gap: 0.75rem;
  }

  .stat-item {
    padding: 1rem 0.85rem;
  }

  .booking-bar-heading {
    font-size: 1.25rem;
  }

  .welcome-item {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }

  .welcome-item__num {
    font-size: 1.25rem;
  }

  .map-info-actions {
    flex-direction: column;
  }

  .map-info-actions .btn {
    flex: 1 1 auto;
    width: 100%;
  }

  .card-body {
    padding: 1rem;
  }

  .review-card {
    padding: 1.15rem;
  }

  .review-card::before {
    font-size: 3rem;
  }
}

@media (hover: none) {
  .card:hover {
    transform: none;
  }

  .card:hover .card-img img,
  .gallery-item:hover img {
    transform: none;
  }

  .map-detail-item:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
}

/* Cross-device stability — overflow prevention only; desktop design unchanged */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  body {
    overflow-x: hidden;
  }
}

.reveal {
  max-width: 100%;
}

main,
section,
article,
.container,
.grid-2,
.grid-3,
.room-preview-grid,
.card,
.card-img,
.gallery-grid,
.gallery-item,
.booking-layout,
.booking-bar-card,
.room-card,
.room-gallery,
.contact-layout,
.map-block,
.map-block__frame,
.map-block__sidebar,
.map-info-card,
.map-detail-grid,
.map-detail-item,
.restaurant-block,
.restaurant-visual,
.welcome-block,
.welcome-visual,
.hero-content,
.hero-actions,
.room-foot,
.room-actions,
.booking-main-actions,
.page-hero .container {
  min-width: 0;
  max-width: 100%;
}

iframe,
video,
embed {
  max-width: 100%;
}

a[href^="tel:"],
a[href^="mailto:"],
.contact-list li,
.footer-bottom p {
  overflow-wrap: anywhere;
}

/* Android / mobile — final overrides (loads after cache refresh via ?v=) */
@media screen and (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .container.hero-content,
  .site-header .container {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: max(1.35rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.35rem, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .room-actions,
  .booking-main-actions {
    width: 100%;
    max-width: 19.5rem;
    align-items: flex-start;
  }

  .hero-btn,
  .room-actions .btn,
  .booking-main-actions .btn {
    width: 100%;
    max-width: 19.5rem;
    box-sizing: border-box;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    justify-items: stretch;
  }

  .gallery-item,
  .gallery-item:first-child {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    max-height: none;
    border-radius: var(--radius-sm);
    overflow: hidden;
  }

  .gallery-item img,
  .card-img img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .room-preview-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .room-preview-grid .card,
  .card,
  .card-img {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .map-block,
  .map-block__sidebar,
  .map-detail-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .map-block__frame {
    border-radius: var(--radius);
    overflow: hidden;
  }

  .map-detail-grid {
    grid-template-columns: 1fr;
  }

  .map-detail-item {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .map-info-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .map-info-actions .btn {
    width: 100%;
    max-width: 100%;
  }
}
