:root {
  --bg: #0a0a0a;
  --ink: #f5f1e8;
  --muted: rgba(245, 241, 232, .72);
  --line: rgba(245, 241, 232, .14);
  --glass: rgba(245, 241, 232, .08);
  --accent: #d4b896;
  --accent2: #f5f1e8;
  --accent-gold: #c9a86a;
  --shadow: 0 18px 60px rgba(0, 0, 0, .65);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

main {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px 420px at var(--mx, 50%) var(--my, 30%),
      rgba(212, 184, 150, .12),
      rgba(212, 184, 150, .08) 25%,
      transparent 60%);
  mix-blend-mode: screen;
  opacity: .85;
  transition: opacity .25s ease;
  z-index: 1;
}

/* Topbar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 32px;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .85), rgba(0, 0, 0, .75));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 241, 232, .08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.topbar__nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.topbar__link {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.topbar__link:hover {
  color: var(--accent2);
  border-color: rgba(212, 184, 150, .4);
  background: rgba(212, 184, 150, .08);
}

.topbar__actions {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  align-items: center;
}

.topbar__actions .btn {
  font-weight: 500;
  padding: 11px 20px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switch {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.lang-switch:hover {
  color: var(--text);
}

.lang-switch.active {
  color: var(--accent);
  font-weight: 600;
}

.lang-divider {
  color: var(--text-muted);
  font-size: 13px;
  opacity: 0.5;
}

/* Buttons */
.btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .18s ease, background .25s ease, border-color .25s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .18);
}

.btn:active {
  transform: translateY(0px);
}

.btn--primary {
  border: 1px solid rgba(212, 184, 150, .65);
  background:
    radial-gradient(120% 220% at 20% 0%, rgba(245, 241, 232, .28), transparent 55%),
    linear-gradient(135deg, rgba(212, 184, 150, .45), rgba(212, 184, 150, .22));
  color: #f3f3f3;
}

.btn--ghost {
  background: rgba(212, 184, 150, .18);
  border-color: rgba(212, 184, 150, .55);
  color: #ffffff;
}

/* Specific hover states for brown buttons */
.btn--primary:hover {
  background:
    radial-gradient(120% 220% at 20% 0%, rgba(245, 241, 232, .34), transparent 55%),
    linear-gradient(135deg, rgba(212, 184, 150, .55), rgba(212, 184, 150, .30));
  border-color: rgba(212, 184, 150, .8);
}

.btn--ghost:hover {
  background: rgba(212, 184, 150, .24);
  border-color: rgba(212, 184, 150, .7);
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 80px 22px 46px;
  isolation: isolate;
  z-index: 10;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-image: url("bg2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0) scale(1.4);
  will-change: transform;
  filter: sepia(0.25) saturate(1.15) hue-rotate(-10deg) contrast(1.04);
  z-index: -3;
}

.hero__vignette {
  position: absolute;
  top: -5%;
  left: -10%;
  width: 120%;
  height: 110%;
  background:
    linear-gradient(rgba(212, 184, 150, .18), rgba(212, 184, 150, .18)),
    radial-gradient(circle at 20% 20%, rgba(212, 184, 150, .08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(212, 184, 150, .05), transparent 40%),
    rgba(0, 0, 0, .40);
  z-index: -2;
}

.hero__noise {
  position: absolute;
  top: -5%;
  left: -10%;
  width: 120%;
  height: 110%;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(245, 241, 232, .06), transparent 35%),
    radial-gradient(circle at 80% 60%, rgba(212, 184, 150, .08), transparent 45%),
    repeating-linear-gradient(0deg, rgba(245, 241, 232, .02), rgba(245, 241, 232, .02) 1px, transparent 1px, transparent 3px);
  opacity: .25;
  z-index: -1;
  mix-blend-mode: overlay;
}

.hero__content {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero__logo-large {
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero__logo-large img {
  height: 350px;
  width: auto;
  filter:
    brightness(0) invert(1) drop-shadow(0 12px 40px rgba(0, 0, 0, .65)) drop-shadow(0 0 50px rgba(212, 184, 150, .4));
  opacity: 0.95;
  transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
  animation: pulseLogo 2.2s ease-in-out infinite;
  will-change: transform;
}

.hero__logo-large img:hover {
  transform: scale(1.05);
  opacity: 1;
  filter:
    brightness(0) invert(1) drop-shadow(0 15px 50px rgba(0, 0, 0, .75)) drop-shadow(0 0 70px rgba(212, 184, 150, .55));
  animation-play-state: paused; /* Keep hover smooth */
}

@keyframes pulseLogo {
  0% { transform: scale(1); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__logo-large img {
    animation: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__kicker {
  display: inline-block;
  padding: 6px 14px;
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ffe9c7; /* brighter warm for readability */
  background: rgba(212, 184, 150, .12);
  border: 1px solid rgba(212, 184, 150, .35);
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 600;
  line-height: 1.6;
  text-shadow: 0 0 32px rgba(255, 233, 199, .6), 0 0 12px rgba(255, 233, 199, .35);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 10px 30px rgba(0,0,0,.25);
}

.hero__title {
  margin: 10px 0 10px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: .01em;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.05;
  text-shadow: 0 14px 60px rgba(0, 0, 0, .55);
}

.hero__subtitle {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  margin: 0 auto;
  text-align: center;
}

.hero__cta {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Booking card */
.booking {
  margin-top: 12px;
}

.booking__card {
  border: 1.5px solid rgba(212, 184, 150, .2);
  background: rgba(10, 10, 14, .6);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(212, 184, 150, .1) inset;
  overflow: visible;
  position: relative;
  z-index: 2000000;
  /* Ensure above following sections */
}

/* Make sure the whole booking section stacks above subsequent content */
.booking {
  position: relative;
  z-index: 2000000;
}

.booking__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 184, 150, .15);
}

.booking__title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--accent);
}

.booking__hint {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent2);
  letter-spacing: .10em;
  text-transform: uppercase;
  opacity: 0.8;
}

.booking__error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 10px;
  color: #fca5a5;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
  animation: slideDown 0.3s ease;
}

.booking__error svg {
  flex-shrink: 0;
  color: #fca5a5;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking__form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.booking__form .btn {
  height: 50px;
  white-space: nowrap;
}

.booking__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: visible;
}

.booking__field span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}

.booking__field input,
.booking__field select {
  height: 50px;
  border-radius: 12px;
  border: 1.5px solid rgba(212, 184, 150, .25);
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(10px);
  color: #d4b896; /* основной цвет текста в полях */
  padding: 0 16px;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Стиль select с золотой стрелкой - как в календаре */
.booking__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23d4b896' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

/* Стиль выпадающего списка options - как всплывающий календарь */
.booking__field select option {
  background: rgba(15, 15, 18, .92);
  color: #f5f1e8;
  padding: 10px 16px;
  font-size: 15px;
  border-radius: 0;
}

.booking__field select option:hover {
  background: rgba(212, 184, 150, .12);
  color: #f5f1e8;
}

.booking__field select option:checked,
.booking__field select option:focus {
  background: #d4b896;
  color: #121316;
  font-weight: 500;
}

/* Flatpickr преобразует input[type=date] в .flatpickr-input (type=text). Красим и его. */
.booking__field .flatpickr-input,
.flatpickr-input {
  color: #d4b896 !important;
  caret-color: #d4b896;
}

/* Усиленная специфичность для всех состояний Flatpickr */
.booking__field input.flatpickr-input,
.booking__field input[type="text"].flatpickr-input,
.booking__field input.flatpickr-input[readonly],
input.flatpickr-input.form-control,
.flatpickr-input.active {
  color: #d4b896 !important;
  -webkit-text-fill-color: #d4b896 !important;
}

.booking__field input::placeholder,
.booking__field .flatpickr-input::placeholder,
.booking__field select option {
  color: rgba(212, 184, 150, .65);
}

.booking__field input:hover {
  border-color: rgba(212, 184, 150, .4);
  background: rgba(0, 0, 0, .4);
}

.booking__field input:focus,
.booking__field select:focus {
  border-color: var(--accent);
  background: rgba(0, 0, 0, .45);
  box-shadow: 0 0 0 4px rgba(212, 184, 150, .15), 0 8px 20px rgba(0, 0, 0, .3);
  transform: translateY(-1px);
}

.booking__field input[type="date"] {
  color-scheme: dark;
  position: relative;
  color: #d4b896;
}

.booking__field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' stroke='%23d4b896' stroke-width='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18' stroke='%23d4b896' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  width: 18px;
  height: 18px;
  opacity: 0.85;
  transition: opacity 0.25s ease;
  filter: none;
}

.booking__field input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* WebKit: оформление текста внутри всплывающего календаря */
.booking__field input[type="date"]::-webkit-datetime-edit {
  padding: 0;
}

.booking__field input[type="date"]::-webkit-datetime-edit-text {
  color: rgba(212, 184, 150, .55);
  padding: 0 2px;
}

.booking__field input[type="date"]::-webkit-datetime-edit-month-field,
.booking__field input[type="date"]::-webkit-datetime-edit-day-field,
.booking__field input[type="date"]::-webkit-datetime-edit-year-field {
  color: #d4b896;
  padding: 2px 4px;
  border-radius: 4px;
}

.booking__field input[type="date"]::-webkit-datetime-edit-month-field:focus,
.booking__field input[type="date"]::-webkit-datetime-edit-day-field:focus,
.booking__field input[type="date"]::-webkit-datetime-edit-year-field:focus {
  background: rgba(212, 184, 150, .18);
  color: var(--accent);
  outline: none;
}

/* Date input styling */
.field input[type="date"] {
  position: relative;
  padding-right: 40px;
  color-scheme: dark;
}

.field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' stroke='%23d4b896' stroke-width='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18' stroke='%23d4b896' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  width: 18px;
  height: 18px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  filter: none;
}

.field input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Chrome/Edge date input calendar popup styling */
.field input[type="date"]::-webkit-datetime-edit {
  padding: 0;
}

.field input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

.field input[type="date"]::-webkit-datetime-edit-text {
  color: rgba(212, 184, 150, .5);
  padding: 0 2px;
}

.field input[type="date"]::-webkit-datetime-edit-month-field,
.field input[type="date"]::-webkit-datetime-edit-day-field,
.field input[type="date"]::-webkit-datetime-edit-year-field {
  color: var(--ink);
  padding: 2px;
  border-radius: 4px;
}

.field input[type="date"]::-webkit-datetime-edit-month-field:focus,
.field input[type="date"]::-webkit-datetime-edit-day-field:focus,
.field input[type="date"]::-webkit-datetime-edit-year-field:focus {
  background: rgba(212, 184, 150, .2);
  color: var(--accent);
  outline: none;
}

/* Calendar popup - browser native styling enhancement */
.field input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 16px;
}

/* Webkit calendar popup styling */
input[type="date"]::-webkit-calendar-picker-indicator {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' stroke='%23d4b896' stroke-width='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18' stroke='%23d4b896' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Calendar dropdown panel */
input[type="date"]::-webkit-calendar-picker-indicator:focus,
input[type="date"]::-webkit-calendar-picker-indicator:active {
  background-color: rgba(212, 184, 150, .15);
  border-radius: 4px;
}

/* Style the calendar popup itself (limited browser support) */
::-webkit-datetime-edit {
  color: var(--ink);
}

::-webkit-datetime-edit-fields-wrapper {
  background: transparent;
}

::-webkit-datetime-edit-text {
  color: rgba(212, 184, 150, .5);
}

::-webkit-datetime-edit-month-field {
  color: var(--ink);
}

::-webkit-datetime-edit-day-field {
  color: var(--ink);
}

::-webkit-datetime-edit-year-field {
  color: var(--ink);
}

::-webkit-datetime-edit-month-field:focus,
::-webkit-datetime-edit-day-field:focus,
::-webkit-datetime-edit-year-field:focus {
  background: rgba(212, 184, 150, .2);
  color: var(--accent);
  outline: none;
  border-radius: 4px;
}

/* Inner calendar styling (very limited support) */
::-webkit-calendar-picker-indicator {
  filter: none;
}

/* Try to style calendar popup background */
input[type="date"]:focus::-webkit-datetime-edit {
  background: transparent;
}

/* Select dropdown arrow */
.field select {
  appearance: none;
  background: rgba(0, 0, 0, .35) url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23d4b896' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
  padding-right: 40px;
}

.field select:hover {
  border-color: rgba(212, 184, 150, .4);
  background: rgba(0, 0, 0, .4) url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23d4b896' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
}

.field select:focus {
  border-color: var(--accent);
  background: rgba(0, 0, 0, .45) url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23d4b896' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
  box-shadow: 0 0 0 4px rgba(212, 184, 150, .15), 0 8px 20px rgba(0, 0, 0, .3);
  transform: translateY(-1px);
}

/* Select options styling */
.field select option {
  background: #1a1a1a;
  color: var(--ink);
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  border-bottom: 1px solid rgba(212, 184, 150, .1);
}

.field select option:hover,
.field select option:focus,
.field select option:checked {
  background: rgba(212, 184, 150, .2);
  color: var(--accent);
  font-weight: 500;
}

.field select option:last-child {
  border-bottom: none;
}

/* Webkit scrollbar for select */
.field select::-webkit-scrollbar {
  width: 8px;
}

.field select::-webkit-scrollbar-track {
  background: #0a0a0e;
  border-radius: 4px;
}

.field select::-webkit-scrollbar-thumb {
  background: rgba(212, 184, 150, .3);
  border-radius: 4px;
}

.field select::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 184, 150, .5);
}

/* Hostaway Widget Calendar Styling */
#hostaway-booking-widget,
#hostaway-booking-widget *,
#hostaway-calendar-widget,
#hostaway-calendar-widget * {
  color: #1a1a1a !important;
}

/* Calendar popup text */
#hostaway-booking-widget [class*="calendar"],
#hostaway-booking-widget [class*="Calendar"],
#hostaway-booking-widget [class*="date"],
#hostaway-booking-widget [class*="Date"],
#hostaway-booking-widget [class*="day"],
#hostaway-booking-widget [class*="Day"],
#hostaway-booking-widget [class*="month"],
#hostaway-booking-widget [class*="Month"],
#hostaway-booking-widget [class*="year"],
#hostaway-booking-widget [class*="Year"] {
  color: #1a1a1a !important;
}

/* All text in Hostaway widget */
#hostaway-booking-widget div,
#hostaway-booking-widget span,
#hostaway-booking-widget p,
#hostaway-booking-widget td,
#hostaway-booking-widget th,
#hostaway-booking-widget button,
#hostaway-booking-widget input,
#hostaway-booking-widget label {
  color: #1a1a1a !important;
}

/* Ensure calendar days are dark */
#hostaway-booking-widget table td,
#hostaway-booking-widget table th,
#hostaway-booking-widget [role="gridcell"],
#hostaway-booking-widget [class*="CalendarDay"] {
  color: #0a0a0a !important;
  font-weight: 500 !important;
}

/* Selected/hover states should be visible */
#hostaway-booking-widget [class*="selected"],
#hostaway-booking-widget [class*="Selected"] {
  color: #ffffff !important;
  background-color: #d4b896 !important;
}

/* Disabled dates */
#hostaway-booking-widget [class*="disabled"],
#hostaway-booking-widget [class*="Disabled"] {
  color: #999999 !important;
  opacity: 0.5 !important;
}

/* Month/year headers */
#hostaway-booking-widget [class*="header"],
#hostaway-booking-widget [class*="Header"] {
  color: #0a0a0a !important;
  font-weight: 600 !important;
}

/* Input fields */
#hostaway-booking-widget input[type="text"],
#hostaway-booking-widget input[type="date"] {
  color: #1a1a1a !important;
  background: #ffffff !important;
}

/* Custom Date Picker */
.custom-date {
  position: relative;
  height: 50px;
  border-radius: 12px;
  border: 1.5px solid rgba(212, 184, 150, .25);
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(10px);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.custom-date:hover {
  border-color: rgba(212, 184, 150, .4);
  background: rgba(0, 0, 0, .4);
}

.custom-date.open {
  border-color: var(--accent);
  background: rgba(0, 0, 0, .45);
  box-shadow: 0 0 0 4px rgba(212, 184, 150, .15), 0 8px 20px rgba(0, 0, 0, .3);
  z-index: 999999;
}

.custom-date__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 400;
  position: relative;
}

.custom-date__trigger::after {
  content: '';
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' stroke='%23d4b896' stroke-width='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18' stroke='%23d4b896' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-left: 12px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.custom-date:hover .custom-date__trigger::after {
  opacity: 1;
}

/* Calendar Popup */
.custom-calendar {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(10, 10, 14, .98);
  backdrop-filter: blur(25px);
  border: 1.5px solid rgba(212, 184, 150, .3);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2147483647;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .8), 0 0 0 1px rgba(212, 184, 150, .2) inset;
}

.custom-date.open .custom-calendar,
.custom-calendar.show {
  max-height: 400px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 184, 150, .15);
}

.calendar-header__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.calendar-header__nav {
  display: flex;
  gap: 8px;
}

.calendar-nav-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(212, 184, 150, .1);
  border-radius: 6px;
  color: var(--accent);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.calendar-nav-btn:hover {
  background: rgba(212, 184, 150, .2);
  transform: scale(1.05);
}

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

.calendar-day-name {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: rgba(212, 184, 150, .6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--ink);
  background: transparent;
  border: none;
  position: relative;
  font-weight: 400;
}

.calendar-day:hover:not(.disabled):not(.selected) {
  background: rgba(212, 184, 150, .25);
  color: var(--accent);
  transform: scale(1.1);
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(212, 184, 150, .2);
}

.calendar-day.disabled {
  color: rgba(255, 255, 255, .2);
  cursor: not-allowed;
}

.calendar-day.other-month {
  color: rgba(255, 255, 255, .3);
}

.calendar-day.other-month:hover:not(.disabled) {
  background: rgba(212, 184, 150, .15);
  color: rgba(212, 184, 150, .6);
  transform: scale(1.05);
}

.calendar-day.today {
  border: 1px solid rgba(212, 184, 150, .4);
}

.calendar-day.selected {
  background: var(--accent);
  color: #0a0a0e;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(212, 184, 150, .4);
}

.calendar-day.selected:hover {
  background: var(--accent);
  color: #0a0a0e;
  transform: scale(1.05);
}

.calendar-day.in-range {
  background: rgba(212, 184, 150, .15);
}

/* Custom Select Dropdown */
.custom-select {
  position: relative;
  height: 50px;
  border-radius: 12px;
  border: 1.5px solid rgba(212, 184, 150, .25);
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(10px);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.custom-select:hover {
  border-color: rgba(212, 184, 150, .4);
  background: rgba(0, 0, 0, .4);
}

.custom-select.open {
  border-color: var(--accent);
  background: rgba(0, 0, 0, .45);
  box-shadow: 0 0 0 4px rgba(212, 184, 150, .15), 0 8px 20px rgba(0, 0, 0, .3);
  z-index: 1000;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 400;
  position: relative;
}

.custom-select__trigger::after {
  content: '';
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23d4b896' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.custom-select.open .custom-select__trigger::after {
  transform: rotate(180deg);
}

.custom-select__options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(10, 10, 14, .95);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(212, 184, 150, .3);
  border-radius: 12px;
  padding: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .6), 0 0 0 1px rgba(212, 184, 150, .15) inset;
}

.custom-select.open .custom-select__options {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  overflow-y: auto;
}

/* Custom scrollbar for options */
.custom-select__options::-webkit-scrollbar {
  width: 6px;
}

.custom-select__options::-webkit-scrollbar-track {
  background: transparent;
}

.custom-select__options::-webkit-scrollbar-thumb {
  background: rgba(212, 184, 150, .3);
  border-radius: 3px;
}

.custom-select__options::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 184, 150, .5);
}

.custom-option {
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-option:hover {
  background: rgba(212, 184, 150, .15);
  color: var(--accent);
  transform: translateX(4px);
}

.custom-option.active {
  background: rgba(212, 184, 150, .2);
  color: var(--accent);
  font-weight: 500;
}

.custom-option.active::before {
  content: '✓';
  font-size: 14px;
  font-weight: bold;
  color: var(--accent);
}

.booking__submit {
  height: 50px;
  width: 100%;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.booking__meta {
  grid-column: 1 / -1;
  color: var(--accent2);
  font-size: 13px;
  min-height: 20px;
  padding: 12px 16px;
  background: rgba(212, 184, 150, .08);
  border-radius: 8px;
  border: 1px solid rgba(212, 184, 150, .15);
  text-align: center;
  font-weight: 400;
  line-height: 1.5;
}

/* Hero bottom */
.hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 22px;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  color: rgba(255, 255, 255, .70);
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  z-index: 1;
  /* Below booking card & dropdowns */
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .20);
  backdrop-filter: blur(10px);
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(212, 184, 150, .18);
}

.hero__scroll {
  opacity: .8;
}

/* Sections */
.section {
  padding: 86px 22px;
  position: relative;
  z-index: 3;
}

.section--alt {
  background: linear-gradient(to bottom, rgba(255, 255, 255, .02), transparent 35%);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 48px;
}

.section__head-content {
  flex: 1;
}

.section__head h2 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 38px;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.65;
}

/* Services Section */
.services-section {
  background: linear-gradient(to bottom, 
    rgba(255, 255, 255, .02), 
    transparent 50%
  );
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 60px 22px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.service-card {
  padding: 20px 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .05);
  border-color: rgba(212, 184, 150, .3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 10px;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}

.service-card:hover .service-icon {
  filter: grayscale(0);
}

.service-title {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 8px 0;
  letter-spacing: 0.01em;
}

.service-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Room Filters */
.room-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
}

.filter-btn {
  padding: 10px 24px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(212, 184, 150, .3);
  color: rgba(255, 255, 255, .9);
}

.filter-btn.active {
  background: linear-gradient(135deg, rgba(212, 184, 150, .25), rgba(212, 184, 150, .15));
  border-color: rgba(212, 184, 150, .5);
  color: var(--accent);
  font-weight: 600;
}

/* Rooms grid */
.rooms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* Room Category Headers */
.room-category-header {
  grid-column: 1 / -1;
  margin-top: 40px;
  margin-bottom: 24px;
}

.room-category-header:first-child {
  margin-top: 0;
}

.category-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 16px 0;
  letter-spacing: 0.02em;
}

.category-divider {
  height: 1px;
  background: linear-gradient(to right, 
    rgba(212, 184, 150, .4), 
    rgba(212, 184, 150, .1) 50%, 
    transparent
  );
}

.room-card {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
  transform: translateZ(0);
}

.room-card__top {
  height: 280px;
  position: relative;
  overflow: hidden;
}

/* Image Slider */
.room-card__slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.room-card__slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.room-card__slide.active {
  opacity: 1;
  pointer-events: auto;
}

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

/* Slider overlay gradient */
.room-card__slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, .6));
  pointer-events: none;
  z-index: 1;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
}

.room-card:hover .slider-btn {
  opacity: 1;
}

.slider-btn:hover {
  background: rgba(212, 184, 150, .9);
  border-color: rgba(212, 184, 150, 1);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn--prev {
  left: 12px;
}

.slider-btn--next {
  right: 12px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, .3);
}

.slider-dots .dot:hover {
  background: rgba(255, 255, 255, .7);
  transform: scale(1.2);
}

.slider-dots .dot.active {
  background: #d4b896;
  border-color: #d4b896;
  width: 24px;
  border-radius: 4px;
}

.room-card__badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 184, 150, .3);
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.room-card__body {
  padding: 16px;
}

.room-card__name {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.room-card__desc {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* Room Specs */
.room-card__specs {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.spec-icon {
  font-size: 16px;
  opacity: 0.9;
}

.spec-text {
  font-weight: 400;
}

/* Room Amenities */
.room-card__amenities {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.amenity-tag {
  padding: 6px 12px;
  background: rgba(212, 184, 150, .12);
  border: 1px solid rgba(212, 184, 150, .25);
  border-radius: 999px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.amenity-tag:hover {
  background: rgba(212, 184, 150, .2);
  border-color: rgba(212, 184, 150, .4);
  transform: translateY(-1px);
}

.room-card__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding-top: 0;
  border-top: none;
}

.room-card__btn {
  padding: 12px 24px;
  font-size: 14px;
  width: 100%;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-block;
}

/* Experience block */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}

.lead {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.facts {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fact {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  border-radius: 18px;
  padding: 14px;
}

.fact__k {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--accent);
}

.fact__v {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.glass {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(10, 10, 14, .52);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.glass__title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  margin-bottom: 10px;
}

.glass__list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 40px 22px 20px;
  position: relative;
  z-index: 4;
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__brand img {
  height: 150px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
  image-rendering: auto;
}

.footer__brand img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.footer__note {
  color: var(--muted);
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 10px;
}

.footer__p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.footer__link {
  color: var(--accent2);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}

.footer__contact-form {
  max-width: 600px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 184, 150, 0.2);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-input:focus,
.contact-textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 184, 150, 0.4);
  box-shadow: 0 0 0 3px rgba(212, 184, 150, 0.1);
}

.contact-textarea {
  resize: vertical;
  min-height: 80px;
}

.contact-submit {
  width: 100%;
  margin-top: 8px;
  font-weight: 600;
}

.contact-status {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

.contact-status.success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.contact-status.error {
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #fca5a5;
}

.footer__copy {
  max-width: 1120px;
  margin: 18px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__credit {
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: none;
  color: rgba(255, 255, 255, .4);
}

.footer__credit-link {
  color: var(--accent2);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer__credit-link:hover {
  color: var(--accent);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 80;
}

.modal.is-open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .66);
  backdrop-filter: blur(6px);
}

.modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100% - 24px));
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(10, 10, 14, .72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.modal__title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
}

.icon-btn {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  color: var(--ink);
  height: 38px;
  width: 38px;
  border-radius: 12px;
  cursor: pointer;
}

.modal__body {
  padding: 16px;
}

.modal__summary {
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  color: rgba(255, 255, 255, .78);
  line-height: 1.6;
  margin-bottom: 14px;
}

.guest-form {
  display: grid;
  gap: 12px;
}

.tiny {
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 980px) {
  .booking__card {
    padding: 20px;
  }

  .booking__title {
    font-size: 22px;
  }

  .booking__form {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  
  .booking__form .btn {
    grid-column: 1 / -1;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section__head {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin-bottom: 40px;
  }

  .room-filters {
    justify-content: flex-start;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
  }

  .footer__cols {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .hero__logo-large img {
    height: 320px;
  }

  /* Hostaway Widget Tablet Adjustments */
  #hostaway-booking-widget input,
  #hostaway-booking-widget select,
  #hostaway-booking-widget .hostaway-input {
    height: 46px !important;
    font-size: 14px !important;
  }

  #hostaway-booking-widget button,
  #hostaway-booking-widget .hostaway-button {
    height: 46px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 640px) {
  .topbar {
    grid-template-columns: auto;
    justify-content: center;
    height: 65px;
    padding: 0 16px;
  }

  .topbar__nav {
    display: none;
  }

  .topbar__actions {
    justify-content: center;
  }

  .topbar__actions .btn {
    padding: 9px 14px;
    font-size: 12px;
  }

  .hero {
    min-height: 80vh;
    padding: 80px 16px 40px;
  }

  .booking {
    margin-top: 12px;
  }

  .hero__logo-large img {
    height: 240px;
  }

  .hero__title {
    font-size: clamp(24px, 7vw, 42px);
  }

  .hero__cta {
    justify-content: center;
  }

  .booking__card {
    padding: 16px;
    margin-top: 16px;
  }

  .booking__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 14px;
  }

  .booking__title {
    font-size: 18px;
  }

  .booking__hint {
    font-size: 10px;
  }

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

  .booking__submit {
    margin-top: 4px;
  }

  /* Hostaway Widget Mobile Adjustments */
  #hostaway-booking-widget {
    min-height: 60px;
  }

  #hostaway-booking-widget input,
  #hostaway-booking-widget select,
  #hostaway-booking-widget .hostaway-input {
    height: 44px !important;
    font-size: 14px !important;
    padding: 0 12px !important;
    border-radius: 10px !important;
  }

  #hostaway-booking-widget button,
  #hostaway-booking-widget .hostaway-button {
    height: 44px !important;
    font-size: 13px !important;
    padding: 0 16px !important;
    min-height: 44px !important;
  }

  /* Make widget grid responsive */
  #hostaway-booking-widget > div,
  #hostaway-booking-widget .widget-container,
  #hostaway-booking-widget form {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  /* Calendar popup adjustments for mobile */
  .daterangepicker,
  body>.daterangepicker {
    max-width: calc(100vw - 20px) !important;
    left: 10px !important;
    right: 10px !important;
    font-size: 13px !important;
  }

  .daterangepicker .calendar-table {
    font-size: 12px !important;
  }

  .daterangepicker td,
  .daterangepicker th {
    min-width: 32px !important;
    height: 32px !important;
    font-size: 12px !important;
  }

  /* Hero bottom adjustments */
  .hero__bottom {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding: 0 16px;
  }

  .hero__badge {
    padding: 8px 10px;
    font-size: 10px;
  }

  .badge__text {
    font-size: 10px;
  }

  .badge__dot {
    width: 6px;
    height: 6px;
  }

  .hero__scroll {
    font-size: 11px;
  }

  /* Room Card Slider Mobile */
  .room-card__top {
    height: 240px;
  }

  .slider-btn {
    opacity: 1;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .slider-btn--prev {
    left: 8px;
  }

  .slider-btn--next {
    right: 8px;
  }

  .slider-dots {
    bottom: 12px;
  }

  .slider-dots .dot {
    width: 6px;
    height: 6px;
  }

  .slider-dots .dot.active {
    width: 18px;
  }

  .room-card__specs {
    gap: 12px;
  }

  .spec-item {
    font-size: 12px;
  }

  .spec-icon {
    font-size: 14px;
  }

  .amenity-tag {
    font-size: 11px;
    padding: 5px 10px;
  }

  .room-card__btn {
    padding: 11px 20px;
    font-size: 13px;
  }

  /* Footer Mobile */
  .footer__inner {
    flex-direction: column-reverse;
    gap: 32px;
    align-items: center;
  }

  .footer__brand {
    align-items: center;
    order: 2;
    text-align: center;
  }

  .footer__brand img {
    height: 100px;
  }

  .footer__cols {
    grid-template-columns: 1fr;
    gap: 32px;
    order: 1;
    width: 100%;
  }

  .footer__cols > div {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__h {
    text-align: center;
  }

  .footer__p {
    text-align: center;
  }

  .footer__contact-form {
    max-width: 100%;
    width: 100%;
  }

  .contact-form {
    width: 100%;
  }

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

  .footer__copy {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .room-category-header {
    margin-top: 32px;
    margin-bottom: 20px;
  }

  .category-title {
    font-size: 24px;
  }

  .services-section {
    padding: 48px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .service-card {
    padding: 18px 16px;
  }

  .service-icon {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .service-title {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .service-desc {
    font-size: 12px;
  }

  .section__head {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 32px;
  }

  .room-filters {
    gap: 8px;
    justify-content: flex-start;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* Motion respect */
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }

  .cursor-glow {
    display: none;
  }
}

/* Hostaway Widget Styles */
#hostaway-booking-widget input,
#hostaway-booking-widget select,
#hostaway-booking-widget .hostaway-input {
  background-color: rgba(20, 20, 24, 0.9) !important;
  border: 1.5px solid rgba(212, 184, 150, 0.3) !important;
  color: #f5f1e8 !important;
  border-radius: 12px !important;
  font-family: 'Inter', sans-serif !important;
  height: 50px !important;
  padding: 0 16px !important;
  font-size: 15px !important;
  box-shadow: none !important;
}

/* Dropdown Options (Standard Select) - Force White Theme */
#hostaway-booking-widget select option {
  background-color: #ffffff !important;
  color: #333333 !important;
  padding: 10px !important;
}

/* Custom Guest Dropdowns (if any) */
#hostaway-booking-widget .dropdown-menu,
#hostaway-booking-widget .guest-picker,
#hostaway-booking-widget .popover {
  background-color: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #cccccc !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
  border-radius: 8px !important;
}

#hostaway-booking-widget .dropdown-item,
#hostaway-booking-widget .guest-option {
  color: #333333 !important;
}

#hostaway-booking-widget .dropdown-item:hover,
#hostaway-booking-widget .guest-option:hover {
  background-color: #f0f0f0 !important;
}

#hostaway-booking-widget input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* 3. Search Button - Force Gold Theme */
#hostaway-booking-widget button,
#hostaway-booking-widget .hostaway-button {
  background: #d4b896 !important;
  border: 1px solid #d4b896 !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(212, 184, 150, 0.3) !important;
}

/* 4. Calendar Popup - Force White Theme (High Contrast) */
/* Target every possible container of the calendar */
.daterangepicker,
body>.daterangepicker,
#hostaway-booking-widget .daterangepicker {
  background-color: #ffffff !important;
  border: 1px solid #cccccc !important;
  z-index: 2147483647 !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
  border-radius: 8px !important;
  padding: 0 !important;
  margin-top: 10px !important;
  font-family: 'Inter', sans-serif !important;
}

/* Force ALL text inside the calendar to be black by default */
.daterangepicker *,
body>.daterangepicker *,
#hostaway-booking-widget .daterangepicker * {
  color: #000000 !important;
}

/* Calendar Table */
.daterangepicker .calendar-table,
body>.daterangepicker .calendar-table {
  background-color: #ffffff !important;
  border: none !important;
}

/* Calendar Header & Cells */
.daterangepicker th,
.daterangepicker td,
body>.daterangepicker th,
body>.daterangepicker td {
  background-color: #ffffff !important;
  border-radius: 0 !important;
}

/* Restore White text ONLY for Active/Selected items */
.daterangepicker td.active,
.daterangepicker td.active:hover,
body>.daterangepicker td.active,
body>.daterangepicker td.active:hover,
.daterangepicker td.active *,
body>.daterangepicker td.active * {
  background-color: #d4b896 !important;
  color: #ffffff !important;
}

/* Hover on Available Dates */
.daterangepicker td.available:hover,
body>.daterangepicker td.available:hover {
  background-color: #f0f0f0 !important;
}

/* Off/Disabled Dates */
.daterangepicker td.off,
.daterangepicker td.disabled,
body>.daterangepicker td.off,
body>.daterangepicker td.disabled,
.daterangepicker td.off *,
body>.daterangepicker td.disabled * {
  background-color: #f9f9f9 !important;
  color: #cccccc !important;
}

/* Buttons inside Calendar */
.daterangepicker .drp-buttons,
body>.daterangepicker .drp-buttons {
  background-color: #ffffff !important;
  border-top: 1px solid #eeeeee !important;
}

.daterangepicker .drp-buttons .btn,
body>.daterangepicker .drp-buttons .btn {
  background-color: #d4b896 !important;
  color: #ffffff !important;
  font-weight: bold !important;
  border: none !important;
}

/* Ensure input text is visible and matches dark theme */
#hostaway-booking-widget input {
  background: rgba(20, 20, 24, .85) !important;
  border: 1.5px solid rgba(212, 184, 150, .3) !important;
  color: #f5f1e8 !important;
  border-radius: 12px !important;
}