/* ============================================
   Дизайн-токены
   ============================================ */
:root {
  --bg: #fafafa;
  --bg-card: #ffffff;
  --bg-dark: #1a1410;
  --bg-dark-2: #14111c;

  --ink: #3f3852;
  --ink-soft: #6e6883;
  --ink-mute: #564f6b;

  --accent: #974757;
  --accent-soft: #e29f8b;
  --accent-deep: #5a2a36;
  /* Затемнённый бордовый для текста на светлом фоне (WCAG AA контраст ≥ 4.5:1).
     --accent оставляем только для крупных заголовков, кнопок и фоновых заливок. */
  --accent-text: #7a3946;

  --moscow-bg: #1a1410;
  --moscow-accent: #b8884a;
  --moscow-text: #f5e8d3;

  --spb-bg: #1c2538;
  --spb-accent: #c4d2e8;
  --spb-text: #f0f4fa;

  --line: rgba(63, 56, 82, 0.12);
  --line-strong: rgba(63, 56, 82, 0.2);
  --line-light: rgba(255, 255, 255, 0.12);

  --shadow-sm: 0 4px 14px rgba(63, 56, 82, 0.08);
  --shadow-md: 0 12px 40px rgba(63, 56, 82, 0.12);
  --shadow-lg: 0 20px 60px rgba(63, 56, 82, 0.22);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --sans: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --header-h: 76px;
}

/* ============================================
   Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
::-webkit-scrollbar { width: 10px; height: 10px; background: transparent; }
::-webkit-scrollbar-track { background: transparent; border: none; box-shadow: none; }
::-webkit-scrollbar-track-piece { background: transparent; }
::-webkit-scrollbar-corner { background: transparent; }
::-webkit-scrollbar-button,
::-webkit-scrollbar-button:single-button,
::-webkit-scrollbar-button:start,
::-webkit-scrollbar-button:end,
::-webkit-scrollbar-button:vertical:start:decrement,
::-webkit-scrollbar-button:vertical:end:increment,
::-webkit-scrollbar-button:horizontal:start:decrement,
::-webkit-scrollbar-button:horizontal:end:increment {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-deep); background-clip: padding-box; border: 2px solid transparent; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { padding: 0; margin: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.05;
  color: var(--ink);
}

/* ============================================
   Утилиты
   ============================================ */
.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-text);
  padding: 6px 14px;
  background: rgba(151, 71, 87, 0.1);
  border-radius: var(--radius-pill);
}
.kicker-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(10px);
}
.kicker-light .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent-soft);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 1px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition: background 200ms, transform 150ms, box-shadow 200ms;
}
.btn-primary:focus, .btn-primary:focus-visible { outline: none; }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(151, 71, 87, 0.3); }
.btn-primary svg { width: 16px; height: 16px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  transition: all 200ms;
}
.btn-secondary:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.section { padding: 96px 24px; max-width: var(--container); margin: 0 auto; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; margin-right: auto; text-align: left; }
.section-title {
  font-size: clamp(34px, 4.6vw, 52px);
  margin: 14px 0 14px;
}
.section-title em { font-style: italic; color: var(--accent); font-weight: 500; }
.section-lead {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 600px;
}
.section-head.left .section-lead { margin-left: 0; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }
.section-head:not(.left) .section-lead { margin-left: auto; margin-right: auto; }

.light-on-dark .section-title { color: #fff; }
.light-on-dark .section-lead { color: rgba(255,255,255,0.7); }

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 16px;
  left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 22px;
  box-shadow: var(--shadow-sm);
  pointer-events: auto;
  max-width: 100%;
}
.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
}
.nav-desktop {
  display: flex;
  gap: 4px;
}
.nav-desktop a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mute);
  border-radius: var(--radius-pill);
  transition: background 180ms, color 180ms;
}
.nav-desktop a:hover {
  background: rgba(151, 71, 87, 0.1);
  color: var(--accent);
}
.nav-desktop a.nav-lk {
  color: var(--accent);
  border: 1px solid var(--accent);
  margin-left: 6px;
}
.nav-desktop a.nav-lk:hover {
  background: var(--accent);
  color: #fff;
}
.btn-book-header {
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: background 180ms, transform 150ms;
}
.btn-book-header:hover { background: var(--accent-deep); transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 40px; height: 40px;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms, opacity 200ms;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
}
.nav-mobile.is-open {
  position: fixed;
  top: calc(var(--header-h) + 16px);
  left: 16px; right: 16px;
  z-index: 49;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-md);
}
.nav-mobile a {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--ink);
}
.nav-mobile a:hover { background: rgba(151, 71, 87, 0.08); }

@media (max-width: 880px) {
  .nav-desktop, .header .btn-book-header { display: none; }
  .burger { display: flex; }
}
@media (max-width: 420px) {
  .header-inner { padding: 6px 6px 6px 16px; gap: 12px; }
  .brand { font-size: 13px; }
}
@media (max-width: 360px) {
  .brand { font-size: 12px; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  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; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 18, 28, 0.78) 0%,
    rgba(20, 18, 28, 0.55) 35%,
    rgba(20, 18, 28, 0.25) 70%,
    rgba(20, 18, 28, 0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 32px 64px;
}
.hero-text { max-width: 640px; }
.hero-text .kicker { margin-bottom: 24px; }

.hero-title {
  font-size: clamp(38px, 5.6vw, 72px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.4);
  margin: 0 0 28px;
}
.hero-title span {
  display: block;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .hero-title span { white-space: normal; }
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero-lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* Booking card в hero */
.booking-card {
  position: relative;
  width: 460px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
/* Календарь flatpickr внутри booking-card — открывается СЛЕВА от карточки, на уровне поля заезда */
.booking-card .flatpickr-calendar.open {
  right: calc(100% + 16px) !important;
  left: auto !important;
  margin: 0 !important;
}
@media (max-width: 880px) {
  .booking-card .flatpickr-calendar.open {
    right: auto !important;
    left: 0 !important;
    top: 100% !important;
    margin-top: 12px !important;
  }
}
.booking-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}
.booking-sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.booking-row {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.booking-row.two { grid-template-columns: 1fr 1fr; }
.booking-row label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.date-field {
  position: relative;
  display: flex;
  align-items: center;
}
.date-field svg {
  position: absolute;
  left: 12px;
  width: 16px; height: 16px;
  color: var(--accent);
  pointer-events: none;
}
.date-field input {
  width: 100%;
  padding: 11px 12px 11px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  cursor: pointer;
  transition: border-color 150ms;
}
.date-field input:focus { border-color: var(--accent); }
.guests {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 4px;
}
.guests button {
  width: 32px; height: 32px;
  border: 0;
  border-radius: 8px;
  background: rgba(63, 56, 82, 0.06);
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms;
}
.guests button:hover { background: rgba(151, 71, 87, 0.12); color: var(--accent); }
.guests button:disabled { opacity: 0.4; cursor: not-allowed; }
.guests-val {
  flex: 1;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.booking-submit { width: 100%; margin-top: 8px; padding: 14px; }
.booking-hint {
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 10px;
}
.booking-hint b { color: var(--accent); font-weight: 700; }

@media (max-width: 1024px) {
  .booking-card { width: 400px; padding: 22px; }
}
@media (max-width: 880px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 100px 20px 60px;
  }
  .booking-card { width: 100%; }
}

/* iOS не зумит инпуты с font-size >= 16px */
@media (max-width: 768px) {
  .date-field input,
  .guests-val,
  .sp-cell input,
  .sp-g-val,
  .bd-fields input,
  .bd-fields textarea,
  .bd-field input,
  .bd-field textarea,
  .sort-select,
  .sp-search input { font-size: 16px !important; }
}

/* Hero - больше отступа сверху на узких */
@media (max-width: 480px) {
  .hero-content { padding-top: 120px !important; }
  .booking-presets { gap: 4px; }
  .bp-chip { padding: 10px 12px; font-size: 11.5px; flex: 1 1 auto; text-align: center; min-width: 0; min-height: 40px; }
  /* Заезд / Выезд - в одну колонку */
  .booking-card .booking-row.two { grid-template-columns: 1fr; }
}

/* ============================================
   Rooms (Города)
   ============================================ */
.rooms-section { padding: 96px 24px 72px; }
.premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
@media (max-width: 880px) {
  .premium-grid { grid-template-columns: 1fr; }
}

.card-premium {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 350ms;
  box-shadow: 0 14px 50px rgba(63, 56, 82, 0.12);
}
.card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(63, 56, 82, 0.22);
}
.card-premium .cp-bg {
  position: absolute; inset: 0; z-index: 0;
}
.card-premium .cp-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: contrast(0.95) saturate(1.05);
}
.card-premium:hover .cp-bg img { transform: scale(1.05); }

/* Moscow */
.card-premium.moscow .cp-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(184, 136, 74, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(26, 20, 16, 0.42) 0%, rgba(26, 20, 16, 0.88) 100%);
}
/* SPB */
.card-premium.spb .cp-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 100%, rgba(196, 210, 232, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(28, 37, 56, 0.4) 0%, rgba(28, 37, 56, 0.88) 100%);
}

.card-premium .cp-ornament {
  position: absolute;
  top: 24px; right: 24px;
  z-index: 2;
  opacity: 0.85;
  pointer-events: none;
}
.card-premium.moscow .cp-ornament { color: var(--moscow-accent); }
.card-premium.spb .cp-ornament { color: var(--spb-accent); }

.card-premium .cp-ghost {
  position: absolute;
  bottom: -40px; left: -8px;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(140px, 22vw, 280px);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  line-height: 0.85;
  letter-spacing: -0.04em;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}
.card-premium.moscow .cp-ghost { color: rgba(184, 136, 74, 0.15); }
.card-premium.spb .cp-ghost { color: rgba(196, 210, 232, 0.18); }

.card-premium .cp-content {
  position: relative;
  z-index: 3;
  padding: 36px;
  margin-top: auto;
  color: #fff;
}
.card-premium .cp-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}
.card-premium.moscow .cp-badge {
  background: rgba(184, 136, 74, 0.2);
  color: var(--moscow-accent);
  border: 1px solid rgba(184, 136, 74, 0.4);
}
.card-premium.spb .cp-badge {
  background: rgba(196, 210, 232, 0.18);
  color: var(--spb-accent);
  border: 1px solid rgba(196, 210, 232, 0.35);
}
.card-premium .cp-name {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 64px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  line-height: 0.95;
  margin: 0 0 12px;
  color: #fff;
}
.card-premium.moscow .cp-name { color: var(--moscow-text); }
.card-premium.spb .cp-name { color: var(--spb-text); }
.card-premium .cp-tagline {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 22px;
  max-width: 380px;
  line-height: 1.45;
}
.card-premium .cp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.card-premium .cp-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-premium .cp-meta svg {
  width: 14px; height: 14px; opacity: 0.7;
}
.card-premium .cp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.card-premium .cp-price {
  display: flex; flex-direction: column; gap: 2px;
}
.card-premium .cp-price-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.01em;
  color: #fff;
}
.card-premium .cp-price-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.card-premium .cp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--sans);
  border: 0;
  transition: transform 200ms;
}
/* (старые акценты Москвы/Питера убраны — кнопки теперь в едином бордовом стиле) */
.card-premium .cp-cta:hover { transform: translateX(4px); }
.card-premium .cp-cta svg { width: 14px; height: 14px; }
.card-premium .cp-price-num { white-space: nowrap; }

@media (max-width: 600px) {
  .card-premium .cp-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .card-premium .cp-price {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
  }
  .card-premium .cp-price-num { font-size: 26px; }
  .card-premium .cp-price-sub { white-space: normal; }
  .card-premium .cp-cta {
    justify-content: center;
    width: 100%;
  }
  .card-premium .cp-cta:hover { transform: none; }
}

/* Standard cards */
.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) {
  .standard-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .standard-grid { grid-template-columns: 1fr; }
}

.card-std {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(63, 56, 82, 0.08);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.card-std:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(63, 56, 82, 0.16);
}
.card-std .cs-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card-std .cs-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card-std:hover .cs-photo img { transform: scale(1.06); }
.card-std .cs-tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.card-std .cs-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-std .cs-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.1;
}
.card-std .cs-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0 0 14px;
}
.card-std .cs-stats {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.card-std .cs-stats span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-std .cs-stats svg { width: 13px; height: 13px; opacity: 0.6; }
.card-std .cs-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.card-std .cs-price-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}
.card-std .cs-price-sub {
  font-size: 11px;
  color: var(--ink-soft);
}
.card-std .cs-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 9px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  border: 0;
  transition: background 200ms;
}
.card-std .cs-cta:hover { background: var(--accent); }


/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 24px 32px;
  margin-top: 48px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.footer-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  max-width: 380px;
}
.footer-phone {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--accent-soft);
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 8px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 180ms;
  /* Touch target: WCAG 2.5.5 - минимум 44×44px для кликабельных элементов на мобильном */
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 0;
}
.footer-col a:hover { color: #fff; }
.footer-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}
.footer-copy {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* Inline-ошибка под формой бронирования (вместо blocking alert) */
.bd-form-error {
  background: #fff0f0;
  color: #b03030;
  border: 1px solid #f0c8c8;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  margin: 12px 24px;
}
.bd-form-error[hidden] { display: none; }

/* ============================================
   FAB - плавающая кнопка-телефон
   ============================================ */
.fab {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(151, 71, 87, 0.4);
  transition: transform 200ms, background 200ms, box-shadow 200ms;
}
.fab:hover {
  transform: scale(1.06);
  background: var(--accent-deep);
  box-shadow: 0 12px 32px rgba(151, 71, 87, 0.5);
}
.fab svg { width: 24px; height: 24px; }
.fab.is-open { transform: rotate(8deg) scale(1.04); }

.fab-wrap {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.fab-wrap .fab {
  position: static;
  border: none;
  cursor: pointer;
}
.fab-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
  animation: fab-menu-in 220ms ease-out;
}
.fab-menu[hidden] { display: none; }
.fab-soc {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 180ms, box-shadow 180ms;
}
.fab-soc:hover { transform: scale(1.08); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25); }
.fab-soc[hidden] { display: none; }
.fab-soc svg { width: 24px; height: 24px; }
.fab-soc-vk  { background: #0077FF; }
.fab-soc-tg  { background: #229ED9; }
.fab-soc-max { background: #6E45E2; }
@keyframes fab-menu-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================
   Flatpickr — премиум-календарь под палитру
   ============================================ */
.flatpickr-calendar {
  font-family: var(--sans) !important;
  background: #fff !important;
  border: none !important;
  border-radius: 20px !important;
  box-shadow: 0 24px 60px -12px rgba(28, 20, 24, 0.18), 0 4px 12px rgba(28, 20, 24, 0.06) !important;
  padding: 8px !important;
  width: auto !important;
  min-width: 0 !important;
  margin-top: 8px;
}
.flatpickr-calendar.multiMonth {
  width: 576px !important;
  max-width: 576px !important;
}
.flatpickr-calendar:not(.multiMonth) {
  width: 296px !important;
}
.flatpickr-calendar.hasTime .flatpickr-time { border-top-color: var(--line) !important; }
.flatpickr-calendar::before, .flatpickr-calendar::after { display: none !important; }

/* Two months side by side — нормальный gap */
.flatpickr-calendar.multiMonth .flatpickr-days { width: auto !important; }
.flatpickr-months .flatpickr-month { background: transparent !important; }

/* Header */
.flatpickr-months {
  position: relative !important;
  padding: 10px 0 10px !important;
  display: flex !important;
  align-items: center;
  justify-content: stretch;
  width: 100% !important;
}
.flatpickr-months .flatpickr-month {
  position: relative !important;
  display: block !important;
  overflow: visible !important;
  height: 36px !important;
  flex: 1 1 0 !important;
  width: 0 !important;
  padding: 0 !important;
}
.flatpickr-current-month {
  font-size: 17px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  padding: 0 !important;
  height: auto !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.flatpickr-current-month .cur-month {
  font-weight: 600 !important;
  margin: 0 !important;
  text-transform: capitalize;
  cursor: default !important;
  pointer-events: none !important;
  text-decoration: none !important;
}
.flatpickr-current-month .cur-month:hover {
  background: transparent !important;
  text-decoration: none !important;
}
.flatpickr-current-month .numInputWrapper {
  width: auto !important;
}
.flatpickr-current-month input.cur-year {
  font-weight: 500 !important;
  color: var(--ink-soft) !important;
  font-size: 17px !important;
  padding: 0 !important;
  pointer-events: none !important;
  -webkit-user-select: none;
  user-select: none;
  caret-color: transparent;
}
.flatpickr-current-month .numInputWrapper span { display: none !important; }
.flatpickr-current-month .numInputWrapper { pointer-events: none !important; }

/* Prev / Next arrows — absolute по краям, чтобы не мешать центровке месяцев */
.flatpickr-prev-month, .flatpickr-next-month {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  fill: var(--ink-soft) !important;
  padding: 0 !important;
  height: 36px !important;
  width: 36px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 150ms, color 150ms;
  z-index: 2;
}
.flatpickr-prev-month { left: 6px !important; }
.flatpickr-next-month { right: 6px !important; }
.flatpickr-prev-month:hover, .flatpickr-next-month:hover {
  background: rgba(151, 71, 87, 0.08) !important;
  fill: var(--accent) !important;
}
.flatpickr-prev-month svg, .flatpickr-next-month svg { width: 14px !important; height: 14px !important; }

/* Weekdays */
.flatpickr-weekdays { padding: 0 6px; margin-top: 4px; }
.flatpickr-weekday {
  color: var(--ink-soft) !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  text-transform: lowercase !important;
  letter-spacing: 0.02em;
  padding-bottom: 6px !important;
}

/* Days grid */
.flatpickr-days {
  padding: 4px 0 8px !important;
  overflow: visible !important;
  width: 100% !important;
}
.dayContainer {
  padding: 0 !important;
  width: 280px !important;
  min-width: 280px !important;
  max-width: 280px !important;
  overflow: visible !important;
}
.flatpickr-day {
  max-width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  border-radius: 50% !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
  border: none !important;
  margin: 2px 0 !important;
  transition: background 150ms, color 150ms;
}
.flatpickr-day:hover {
  background: transparent !important;
  color: var(--ink) !important;
  cursor: pointer;
}

/* Today — тонкая обводка */
.flatpickr-day.today {
  background: transparent !important;
  color: var(--accent) !important;
  font-weight: 600 !important;
  position: relative;
}
.flatpickr-day.today::after {
  content: '';
  position: absolute;
  inset: 2px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
}
.flatpickr-day.today:hover { background: rgba(151, 71, 87, 0.08) !important; }

/* Selected single — заполненный круг */
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

/* Range: start / end — прозрачная ячейка, кружок и полоса через псевдо */
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: transparent !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  position: relative;
  isolation: isolate;
}

/* ::before — тёмный круг поверх */
.flatpickr-day.startRange::before,
.flatpickr-day.endRange::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: 50%;
  z-index: -1;
}

/* ::after — светлая pill-полоса в сторону inRange (под кружком) */
.flatpickr-day.startRange:not(.endRange)::after,
.flatpickr-day.endRange:not(.startRange)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(151, 71, 87, 0.10);
  z-index: -2;
}
.flatpickr-day.startRange:not(.endRange)::after { border-radius: 50% 0 0 50%; }
.flatpickr-day.endRange:not(.startRange)::after { border-radius: 0 50% 50% 0; }

/* Range: дни между — светлая прямоугольная полоса */
.flatpickr-day.inRange,
.flatpickr-day.inRange:hover {
  background: rgba(151, 71, 87, 0.10) !important;
  color: var(--ink) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Перебить дефолтный голубой box-shadow flatpickr между подряд идущими start+end */
.flatpickr-day.startRange + .flatpickr-day.endRange,
.flatpickr-day.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: none !important;
}
.flatpickr-day:focus, .flatpickr-day:focus-visible {
  outline: none !important;
}

.flatpickr-day.selected.today::after,
.flatpickr-day.startRange.today::after,
.flatpickr-day.endRange.today::after { display: none; }

/* Бейдж количества суток над endRange — позиционируется через JS в calendarContainer */
.flatpickr-calendar .nights-badge {
  position: absolute;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 9px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
  letter-spacing: 0.01em;
  z-index: 5;
}

/* Disabled / out-of-range */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: #d4cfd1 !important;
  background: transparent !important;
  cursor: not-allowed;
}
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: #c9c4c6 !important;
}

/* ============================================
   Модальное окно результатов
   ============================================ */
.results-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}
.results-modal.is-open { pointer-events: auto; }
.results-modal[hidden] { display: none; }

.rm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 28, 0.65);
}

.rm-panel {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, 20px);
  opacity: 0;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 240ms;
  contain: layout paint;
}
.results-modal.is-open .rm-panel { transform: translate(-50%, 0); opacity: 1; }

.rm-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  transition: background 150ms, color 150ms, transform 150ms;
}
.rm-close:hover {
  background: var(--accent);
  color: #fff;
  transform: rotate(90deg);
}
.rm-close svg { width: 18px; height: 18px; }

.rm-content {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 56px 36px 60px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
  contain: layout paint style;
  transform: translateZ(0);
  will-change: scroll-position;
}
.rm-content::-webkit-scrollbar {
  width: 8px;
}
.rm-content::-webkit-scrollbar-track {
  background: transparent;
  margin: 12px 0;
}
.rm-content::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
  transition: background 150ms;
}
.rm-content::-webkit-scrollbar-thumb:hover {
  background: var(--accent-deep);
}

@media (max-width: 700px) {
  .rm-panel {
    top: 0; bottom: 0; left: 0;
    width: 100%;
    border-radius: 0;
    transform: translate(0, 20px);
  }
  .results-modal.is-open .rm-panel { transform: translate(0, 0); }
  .rm-content { padding: 60px 16px 40px; }
  .rm-close { top: 12px; right: 12px; }
}

.results-head {
  text-align: center;
  margin-bottom: 32px;
}
.results-title {
  font-size: clamp(36px, 4.6vw, 56px);
  margin: 0 0 12px;
}
.results-sub {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* === Поисковая pill (стиль референса Островок) === */
.search-pill {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 6px;
  box-shadow: none;
  margin: 0 auto 28px;
  max-width: 980px;
  position: relative;
  transition: box-shadow 250ms, border-color 250ms;
}
.search-pill--pulse {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 6px rgba(151, 71, 87, 0.15) !important;
  animation: searchPillPulse 1.6s ease-out;
}
@keyframes searchPillPulse {
  0% { box-shadow: 0 0 0 0 rgba(151, 71, 87, 0.4); }
  60% { box-shadow: 0 0 0 14px rgba(151, 71, 87, 0); }
  100% { box-shadow: 0 0 0 6px rgba(151, 71, 87, 0.15); }
}
.sp-cell {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 150ms;
  min-width: 0;
}
.sp-cell:hover { background: rgba(63, 56, 82, 0.04); }
.sp-cell--guests { flex: 1.2 1 0; cursor: default; }
.sp-cell--guests:hover { background: transparent; }
.sp-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.sp-cell input {
  width: 100%;
  border: 0;
  background: transparent;
  outline: none;
  padding: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}
.sp-cell input::placeholder { color: var(--ink-soft); font-weight: 400; }
.sp-divider {
  width: 1px;
  margin: 12px 0;
  background: var(--line);
  flex-shrink: 0;
}
.sp-guests {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-g-btn {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms, border-color 150ms, color 150ms;
}
.sp-g-btn:hover:not(:disabled) {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.sp-g-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.sp-g-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.sp-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0 18px;
  height: 38px;
  min-height: 0;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  align-self: center;
  margin: 0 4px 0 0;
}
.sp-search svg { width: 14px; height: 14px; }

@media (max-width: 720px) {
  .search-pill {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 12px;
    gap: 8px;
  }
  .sp-divider { display: none; }
  .sp-cell { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 10px 14px; }
  .sp-search { width: 100%; height: 48px; }
}


/* === Фильтры === */
.filters-bar {
  margin-bottom: 32px;
}
.filters-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  align-items: flex-end;
  padding: 18px 22px;
  background: #fafafa;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.filter-group { min-width: 0; }
.filter-group .chip-group { flex-wrap: nowrap; }
.filter-group .chip { white-space: nowrap; }
.filter-group--right { padding-left: 24px; }
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-group--right { margin-left: auto; }
.filter-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip {
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  color: var(--ink);
  cursor: pointer;
  transition: all 150ms;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.sort-select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23564f6b' stroke-width='1.6' stroke-linecap='round'/></svg>") no-repeat right 14px center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 9px 36px 9px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 150ms;
  outline: none;
}
.sort-select:hover { border-color: var(--accent); }
.sort-select:focus { border-color: var(--accent); }

/* === Секции результатов === */
.results-section {
  margin-bottom: 56px;
}
.results-section-head {
  margin-bottom: 22px;
}
.results-section-title {
  font-size: clamp(24px, 2.8vw, 32px);
  margin: 8px 0 0;
}

.vip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.standard-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 880px) {
  .standard-grid-2 { grid-template-columns: 1fr; }
  .filters-row { flex-wrap: wrap; gap: 14px 18px; }
  .filter-group--right { margin-left: 0; width: 100%; }
}
@media (max-width: 600px) {
  .filters-row {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 16px;
  }
  .filter-group { width: 100%; padding-left: 0 !important; }
  .filter-group .chip-group {
    flex-wrap: wrap !important;
    gap: 6px;
  }
  .filter-group .chip {
    flex: 0 0 auto;
    padding: 7px 12px;
    font-size: 12.5px;
  }
  .sort-select { width: 100%; }
}

.empty-state {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 15px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
}

/* ============================================
   Галерея фото в карточке номера
   ============================================ */
.room-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: #1a1410;
  border-radius: inherit;
}
.rg-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.rg-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}
.rg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.rg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: opacity 200ms, background 150ms, transform 150ms;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.room-gallery:hover .rg-arrow { opacity: 1; }
.rg-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.rg-arrow svg { width: 16px; height: 16px; }
.rg-arrow--prev { left: 12px; }
.rg-arrow--next { right: 12px; }

.rg-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.rg-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  padding: 0;
  cursor: pointer;
  transition: background 150ms, width 200ms;
}
.rg-dot.is-active { background: #fff; width: 22px; border-radius: 4px; }

.rg-counter {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ============================================
   Карточка VIP — горизонтальный layout, full-width
   ============================================ */
.card-premium {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(28, 20, 24, 0.10), 0 2px 6px rgba(28, 20, 24, 0.04);
  border: 1px solid var(--line);
  min-height: 480px;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 280ms;
}
.card-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(28, 20, 24, 0.14), 0 4px 12px rgba(28, 20, 24, 0.06);
}
.cp-gallery { position: relative; min-height: 100%; }
.cp-info {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.cp-info .cp-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(151, 71, 87, 0.10);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0;
}
.card-premium .cp-name,
.card-premium.moscow .cp-name,
.card-premium.spb .cp-name {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--ink) !important;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.02em;
  position: static;
  padding: 0;
}
.card-premium .cp-tagline {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
  position: static;
  padding: 0;
}
.card-premium .cp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: static;
  background: none;
}
.card-premium .cp-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 500;
  background: none;
  padding: 0;
  border: 0;
}
.card-premium .cp-meta svg { width: 16px; height: 16px; color: var(--accent); }
.card-premium .cp-description {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
}
.card-premium .cp-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}
.card-premium .cp-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.card-premium .cp-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  background: none;
  position: static;
}
.card-premium .cp-price { display: flex; flex-direction: column; gap: 2px; }
.card-premium .cp-price-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.card-premium .cp-price-sub { font-size: 12px; color: var(--ink-soft); }
.card-premium .cp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms, transform 150ms;
}
.card-premium .cp-cta:hover { background: var(--accent-deep); transform: translateY(-1px); }
.card-premium .cp-cta svg { width: 16px; height: 16px; }

@media (max-width: 880px) {
  .card-premium { grid-template-columns: 1fr; min-height: 0; }
  .cp-gallery { aspect-ratio: 4 / 3; }
  .card-premium .cp-info { padding: 22px; }
  .card-premium .cp-features { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Карточка Стандарт — вертикальный layout
   ============================================ */
.card-std {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(28, 20, 24, 0.08);
  border: 1px solid var(--line);
  transition: transform 280ms, box-shadow 280ms;
}
.card-std:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(28, 20, 24, 0.12);
}
.cs-gallery {
  position: relative;
  aspect-ratio: 16 / 11;
  width: 100%;
}
.cs-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.cs-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.card-std .cs-head .cs-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
  background: none;
  padding: 0;
  display: block;
  position: static;
  border-radius: 0;
  box-shadow: none;
}
.card-std .cs-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.card-std .cs-head .cs-price { text-align: right; flex-shrink: 0; }
.card-std .cs-head .cs-price-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 2px;
}
.card-std .cs-head .cs-price-sub { font-size: 12px; color: var(--ink-soft); }

.card-std .cs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.card-std .cs-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--ink-mute);
  font-weight: 500;
}
.card-std .cs-meta svg { width: 14px; height: 14px; color: var(--accent); }

.card-std .cs-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-mute);
  margin: 0;
}

.cs-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
}
.cs-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.card-std .cs-cta {
  margin-top: auto;
  width: 100%;
  font-size: 14px;
  padding: 12px;
  justify-content: center;
}

/* ============================================
   Иконки удобств + pill-бейджи преимуществ
   ============================================ */
.room-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(151, 71, 87, 0.05);
  min-width: 0;
}
.rf-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.rf-icon svg { width: 18px; height: 18px; }
.rf-label {
  font-size: 12px;
  color: var(--ink-mute);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

.room-benefit {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-deep);
  background: rgba(151, 71, 87, 0.08);
  border: 1px solid rgba(151, 71, 87, 0.15);
  padding: 5px 10px;
  border-radius: 999px;
}

/* ============================================
   Городские акценты VIP — Москва и СПБ
   ============================================ */

/* Тонкая полоса-акцент сверху карточки */
.card-premium { position: relative; }
.cp-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 3;
  pointer-events: none;
}
.card-premium.moscow .cp-accent-line {
  background: linear-gradient(90deg, var(--moscow-accent) 0%, #d9b377 50%, var(--moscow-accent) 100%);
}
.card-premium.spb .cp-accent-line {
  background: linear-gradient(90deg, #7c98b8 0%, var(--spb-accent) 50%, #7c98b8 100%);
}

/* Лёгкая тонировка info-блока */
.card-premium.moscow .cp-info {
  background: linear-gradient(180deg, rgba(184, 136, 74, 0.04) 0%, rgba(184, 136, 74, 0.01) 100%);
}
.card-premium.spb .cp-info {
  background: linear-gradient(180deg, rgba(124, 152, 184, 0.05) 0%, rgba(124, 152, 184, 0.01) 100%);
}
.cp-info { position: relative; overflow: hidden; }

/* Старый схематичный SVG-силуэт убран — заменён фото-силуэтом ниже */
.cp-ghost-shape { display: none; }

/* Фото-силуэт города как фоновый акцент info-блока */
.card-premium.moscow .cp-info::after,
.card-premium.spb .cp-info::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 65%;
  z-index: 0;
  pointer-events: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  /* Маска: сверху прозрачно → к низу контур виден; снизу плавно затухает в фон */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 35%, #000 80%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 35%, #000 80%, transparent 100%);
}
.card-premium.moscow .cp-info::after {
  background-image: url('assets/img/skyline-moscow.jpg');
  /* grayscale + бордовая тонировка через sepia/hue-rotate */
  filter: grayscale(100%) sepia(70%) hue-rotate(310deg) saturate(140%) brightness(0.85);
  opacity: 0.16;
}
.card-premium.spb .cp-info::after {
  background-image: url('assets/img/skyline-spb.jpg');
  /* grayscale + холодная индиго-тонировка */
  filter: grayscale(100%) sepia(45%) hue-rotate(180deg) saturate(150%) brightness(0.85);
  opacity: 0.14;
}

/* Содержимое info — над ghost */
.cp-info > *:not(.cp-ghost-shape) { position: relative; z-index: 1; }

/* Бейдж в цвете города */
.card-premium.moscow .cp-badge {
  background: rgba(184, 136, 74, 0.14);
  color: #8a6432;
}
.card-premium.spb .cp-badge {
  background: rgba(124, 152, 184, 0.16);
  color: #3a5a82;
}

/* ============================================
   Drawer формы бронирования
   ============================================ */
.booking-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
}
.booking-drawer.is-open { pointer-events: auto; }
.booking-drawer[hidden] { display: none; }

.bd-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 28, 0.45);
  opacity: 0;
  transition: opacity 240ms;
}
.booking-drawer.is-open .bd-backdrop { opacity: 1; }

.bd-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(560px, 100%);
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -24px 0 60px rgba(28, 20, 24, 0.28);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  contain: layout paint;
}
.booking-drawer.is-open .bd-panel { transform: translateX(0); }

.bd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.bd-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  color: var(--ink-mute);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 150ms, color 150ms;
}
.bd-back:hover { background: rgba(151, 71, 87, 0.06); color: var(--accent); }
.bd-back svg { width: 16px; height: 16px; }
.bd-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 150ms, color 150ms;
}
.bd-close:hover { background: rgba(151, 71, 87, 0.08); color: var(--accent); }
.bd-close svg { width: 16px; height: 16px; }

.bd-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 24px 28px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.bd-body::-webkit-scrollbar { width: 8px; }
.bd-body::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 8px; }

.bd-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

/* Карточка номера */
.bd-room {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: #fafafa;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.bd-room-photo {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.bd-room-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bd-room-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.bd-room-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.bd-room-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.bd-room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 4px;
}
.bd-room-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bd-room-meta svg { width: 14px; height: 14px; color: var(--accent); }

/* Блоки */
.bd-block {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.bd-block:last-of-type { border-bottom: 0; padding-bottom: 0; }
.bd-block-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.bd-block-head h3 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}
.bd-edit {
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 999px;
  transition: background 150ms;
}
.bd-edit:hover { background: rgba(151, 71, 87, 0.08); }

/* Даты блок */
.bd-dates {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  background: #fafafa;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.bd-date-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.bd-cell-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.bd-cell-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.bd-cell-sub { font-size: 11px; color: var(--ink-soft); }
.bd-arrow { color: var(--ink-soft); font-size: 18px; padding: 0 4px; }

/* Цена */
.bd-price-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bd-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--ink-mute);
}
.bd-price-row b { color: var(--ink); font-weight: 600; }
.bd-price-row.bd-discount b { color: var(--accent); }
.bd-price-row.bd-total {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 16px;
}
.bd-price-row.bd-total span { font-weight: 600; color: var(--ink); }
.bd-price-row.bd-total b {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}
.bd-price-row[hidden], .bd-promo-input[hidden] { display: none !important; }

/* Поля формы */
.bd-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bd-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bd-field-full { grid-column: 1 / -1; }
.bd-field > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.bd-field input, .bd-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
}
.bd-field input:focus, .bd-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(151, 71, 87, 0.1);
}
.bd-field input.is-invalid, .bd-field textarea.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}
.bd-field textarea { resize: vertical; min-height: 76px; }
.bd-block .bd-field + .bd-field { margin-top: 14px; }

/* Промокод */
.bd-promo { margin-top: 12px; }
.bd-promo-toggle {
  background: none;
  border: 0;
  color: var(--accent);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
}
.bd-promo-toggle:hover { color: var(--accent-deep); }
.bd-promo-input {
  margin-top: 8px;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.bd-promo-input:focus { border-color: var(--accent); }

/* Согласие */
.bd-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-mute);
  margin: 18px 0 16px;
  line-height: 1.45;
  cursor: pointer;
}
.bd-consent input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.bd-consent a { color: var(--accent); text-decoration: underline; }
.bd-consent.is-invalid { color: #c0392b; }

/* CTA */
.bd-cta { margin-top: 18px; }
.bd-submit {
  width: 100%;
  height: 52px;
  font-size: 15px;
}
.bd-submit b { font-family: var(--serif); font-weight: 600; font-size: 16px; }
.bd-cta-hint {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
}

/* Sticky footer для мобайла */
.bd-sticky {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 20px rgba(28, 20, 24, 0.06);
  flex-shrink: 0;
}
.bd-sticky-price { display: flex; flex-direction: column; }
.bd-sticky-price span { font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.bd-sticky-price b { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); }
.bd-sticky-submit { flex: 1; height: 46px; font-size: 14px; }

@media (max-width: 720px) {
  .bd-panel { width: 100%; }
  .bd-fields { grid-template-columns: 1fr; }
  .bd-dates { grid-template-columns: 1fr 1fr; }
  .bd-arrow { display: none; }
  .bd-sticky { display: flex; }
  .bd-cta { display: none; }
}

/* ============================================
   Quick-presets дат в hero booking-card
   ============================================ */
.booking-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 16px;
}
.bp-chip {
  padding: 6px 12px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mute);
  background: rgba(151, 71, 87, 0.06);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
}
.bp-chip:hover {
  background: rgba(151, 71, 87, 0.14);
  color: var(--accent);
}

/* Подсказка "N ночей · X ₽" */
.booking-hint b { color: var(--ink); font-weight: 600; }


/* ============================================
   Sticky-bar в bottom drawer'а на десктопе
   ============================================ */
@media (min-width: 721px) {
  .bd-sticky {
    display: flex !important;
    position: sticky;
    bottom: 0;
    z-index: 5;
    transition: opacity 200ms, transform 200ms;
  }
  .bd-cta { padding-bottom: 8px; }
  /* Когда основная кнопка "Перейти к оплате" видна — скрываем sticky-bar */
  .booking-drawer.cta-visible .bd-sticky {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
  }
}

/* ============================================
   Бейдж экономии в карточке номера
   ============================================ */
.cp-price-saving {
  margin-top: 4px;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--accent-deep);
  padding: 3px 8px;
  border-radius: 999px;
}

/* ============================================
   Кастомные tooltips для иконок удобств
   ============================================ */
.room-feature {
  position: relative;
}
.room-feature::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 9px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 150ms, transform 150ms;
  z-index: 10;
}
.room-feature:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   Concept-section на главной (замена rooms)
   ============================================ */
.concept-section {
  max-width: none;
  background: #fafafa;
  padding: 96px 24px 72px;
  margin: 0;
}
.concept-section .concept-head,
.concept-section .cities-grid,
.concept-section .concept-cta {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.concept-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.concept-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 16px auto 0;
  max-width: 680px;
}

/* Цифры-факты под лидом */
.concept-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto 64px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
}
.cp-point { text-align: center; }
.cp-point-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.cp-point-text {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.4;
}

/* Bento-grid плиток городов */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 56px;
}
.city-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: #1a1410;
  aspect-ratio: 1 / 1;
  isolation: isolate;
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 320ms;
}
.city-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(28, 20, 24, 0.25);
}
.city-tile--vip {
  grid-column: span 2;
  aspect-ratio: 16 / 11;
}
.city-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}
.city-tile:hover img { transform: scale(1.06); }
.ct-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.78) 100%);
  z-index: 1;
}
.ct-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}
.ct-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.city-tile--vip.moscow .ct-badge { background: rgba(184, 136, 74, 0.85); color: #1a1410; }
.city-tile--vip.spb .ct-badge { background: rgba(196, 210, 232, 0.85); color: #1c2538; }
.ct-name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: #fff;
}
.ct-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.city-tile--vip .ct-tagline { font-size: 14px; }

@media (max-width: 880px) {
  .concept-points { grid-template-columns: repeat(2, 1fr); padding: 22px; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .city-tile--vip { grid-column: span 2; aspect-ratio: 16 / 10; }
}
@media (max-width: 520px) {
  .cities-grid { grid-template-columns: 1fr; }
  .city-tile--vip, .city-tile { grid-column: span 1; aspect-ratio: 4 / 3; }
}

.concept-cta {
  display: flex;
  justify-content: center;
}
.concept-cta .btn-primary {
  font-size: 15px;
  padding: 16px 28px;
}
.concept-cta .btn-primary svg { width: 18px; height: 18px; }

/* ============================================
   Amenities-section
   ============================================ */
.amenities-section {
  background: #f3eee6;
  padding: 96px 24px 112px;
}
.amenities-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.amenities-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.amenities-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 16px auto 0;
  max-width: 620px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
}

.amenity-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(28, 20, 24, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 320ms,
              border-color 320ms;
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(28, 20, 24, 0.08);
  border-color: rgba(151, 71, 87, 0.18);
}

/* Большая карточка - заезд 24/7 */
.amenity-card--hero {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(155deg, #1f1620 0%, #2c1d28 60%, #3a2231 100%);
  border-color: transparent;
  color: #fff;
  padding: 40px 36px 36px;
  overflow: hidden;
}
.amenity-card--hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(151, 71, 87, 0.55) 0%, rgba(151, 71, 87, 0) 70%);
  z-index: 0;
  pointer-events: none;
}
.amenity-card--hero > * { position: relative; z-index: 1; }
.amenity-card--hero:hover {
  box-shadow: 0 24px 60px rgba(28, 20, 24, 0.28);
  border-color: transparent;
}

.ah-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 24px;
}
.ah-icon svg { width: 28px; height: 28px; }

.ah-badge {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-soft);
  z-index: 2;
}

.ah-title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 16px;
}
.ah-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 22px;
  max-width: 380px;
}
.ah-points {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ah-points li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}
.ah-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 8px;
  border-left: 1.5px solid var(--accent-soft);
  border-bottom: 1.5px solid var(--accent-soft);
  transform: rotate(-45deg);
}

/* Малые карточки */
.am-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(151, 71, 87, 0.08), rgba(226, 159, 139, 0.12));
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 18px;
  transition: background 320ms;
}
.amenity-card:hover .am-icon {
  background: linear-gradient(135deg, rgba(151, 71, 87, 0.14), rgba(226, 159, 139, 0.2));
}
.am-icon svg { width: 24px; height: 24px; }

.am-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.am-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
}
.am-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(151, 71, 87, 0.08);
  color: var(--accent);
  padding: 4px 9px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.am-tag--safety {
  background: rgba(72, 110, 90, 0.1);
  color: #3d6b53;
}

@media (max-width: 980px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-card--hero { grid-column: span 2; grid-row: span 1; }
  .ah-badge { top: 28px; right: 28px; font-size: 20px; }
}
@media (max-width: 560px) {
  .amenities-section { padding: 72px 18px 80px; }
  .amenities-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }
  .amenity-card { padding: 22px 20px; min-height: 0; }
  .amenity-card--hero { grid-column: span 1; padding: 28px 22px; }
  .ah-badge { position: static; margin-bottom: 8px; display: inline-block; }
  .ah-title { font-size: 22px; }
}

/* ============================================
   Reviews-section
   ============================================ */
.reviews-section {
  background: #fafafa;
  padding: 96px 24px 112px;
}
.reviews-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.reviews-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  padding: 14px 22px 14px 18px;
  background: #fff;
  border: 1px solid rgba(28, 20, 24, 0.06);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(28, 20, 24, 0.04);
}
.rs-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rs-rating-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.rs-stars {
  display: inline-flex;
  gap: 2px;
  color: #f5b400;
}
.rs-stars svg { width: 16px; height: 16px; }
.rs-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  border-left: 1px solid rgba(28, 20, 24, 0.08);
  padding-left: 22px;
}
.rs-source {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.rs-source .rs-ya { width: 16px; height: 16px; flex-shrink: 0; }
.rs-count {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

/* Сетка отзывов */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.review-card {
  background: #fff;
  border: 1px solid rgba(28, 20, 24, 0.06);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 320ms,
              border-color 320ms;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(28, 20, 24, 0.08);
  border-color: rgba(151, 71, 87, 0.16);
}

.rc-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.rc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.rc-author {
  min-width: 0;
}
.rc-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rc-date {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 3px;
}
.rc-stars {
  display: inline-flex;
  gap: 1px;
  color: #f5b400;
  flex-shrink: 0;
}
.rc-stars svg { width: 13px; height: 13px; }

.rc-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(28, 20, 24, 0.06);
}
.rc-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.rc-source svg { width: 14px; height: 14px; flex-shrink: 0; }

/* CTA */
.reviews-cta {
  display: flex;
  justify-content: center;
}
.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(28, 20, 24, 0.12);
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 240ms, box-shadow 240ms, transform 240ms, background 240ms;
}
.reviews-link:hover {
  border-color: rgba(151, 71, 87, 0.4);
  box-shadow: 0 10px 28px rgba(28, 20, 24, 0.08);
  transform: translateY(-1px);
  background: #fff;
}
.reviews-link svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 980px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .reviews-section { padding: 72px 18px 80px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .review-card { padding: 22px 20px 18px; }
  .reviews-summary {
    flex-direction: column;
    gap: 12px;
    padding: 16px 22px;
    border-radius: var(--radius-lg);
  }
  .rs-meta {
    border-left: none;
    border-top: 1px solid rgba(28, 20, 24, 0.08);
    padding-left: 0;
    padding-top: 12px;
    text-align: center;
    align-items: center;
  }
  .rc-text { -webkit-line-clamp: unset; }
}

/* ============================================
   FAQ-section
   ============================================ */
.faq-section {
  background: #f3eee6;
  padding: 96px 24px 112px;
}
.faq-inner {
  max-width: 980px;
  margin: 0 auto;
}

.faq-head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.faq-title {
  text-align: center;
  margin-top: 14px;
}
.faq-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 16px auto 0;
  max-width: 560px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(28, 20, 24, 0.08);
}
.faq-item:first-child { border-top: 1px solid rgba(28, 20, 24, 0.08); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 4px 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.005em;
  user-select: none;
  transition: color 240ms;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--accent); }
.faq-q:hover .faq-icon { border-color: var(--accent); color: var(--accent); }

.faq-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(28, 20, 24, 0.16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1),
              background 240ms, color 240ms, border-color 240ms;
}
.faq-icon svg { width: 16px; height: 16px; }

.faq-item[open] .faq-icon {
  transform: rotate(135deg);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.faq-item[open] .faq-q { color: var(--accent); }

.faq-a {
  padding: 0 56px 26px 4px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-mute);
  animation: faqFadeIn 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .faq-section { padding: 72px 18px 80px; }
  .faq-head { margin-bottom: 40px; }
  .faq-q { padding: 18px 0; gap: 16px; }
  .faq-icon { width: 32px; height: 32px; }
  .faq-a { padding: 0 40px 22px 0; font-size: 15px; }
}

/* ============================================
   Contacts-section
   ============================================ */
.contacts-section {
  background: #fafafa;
  padding: 96px 24px 112px;
}
.contacts-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.contacts-head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.contacts-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 16px auto 0;
  max-width: 580px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* Левая колонка - контакты */
.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(28, 20, 24, 0.08);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 240ms, box-shadow 240ms, transform 240ms;
}
.contact-item:hover {
  border-color: rgba(151, 71, 87, 0.35);
  box-shadow: 0 12px 28px rgba(28, 20, 24, 0.06);
  transform: translateY(-1px);
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(151, 71, 87, 0.1), rgba(226, 159, 139, 0.14));
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 22px; height: 22px; }

.ci-body { min-width: 0; }
.ci-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.ci-value {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.ci-sub {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(155deg, #1f1620 0%, #2c1d28 100%);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13.5px;
  line-height: 1.5;
  margin-top: 4px;
}
.contact-note svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent-soft);
  margin-top: 1px;
}
.contact-note b {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 2px;
}

/* Правая колонка - карта */
.contacts-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(28, 20, 24, 0.08);
  background: #f0eee8;
  min-height: 520px;
  box-shadow: 0 16px 40px rgba(28, 20, 24, 0.06);
}
.contacts-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-open {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(28, 20, 24, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(28, 20, 24, 0.1);
  transition: transform 240ms, box-shadow 240ms;
}
.map-open:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(28, 20, 24, 0.16);
}
.map-open svg { width: 16px; height: 16px; flex-shrink: 0; }

@media (max-width: 880px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contacts-map { min-height: 380px; }
}
@media (max-width: 600px) {
  .contacts-section { padding: 72px 18px 80px; }
  .contact-item { padding: 16px; gap: 12px; }
  .ci-icon { width: 40px; height: 40px; }
  .ci-icon svg { width: 20px; height: 20px; }
  .ci-value { font-size: 16px; }
  .contacts-map { min-height: 320px; }
  .map-open { bottom: 12px; right: 12px; padding: 8px 14px; font-size: 12px; }
}

/* ============================================
   CTA-banner (между Reviews и FAQ)
   ============================================ */
.cta-banner {
  position: relative;
  padding: 96px 24px;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55) saturate(0.85);
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(151, 71, 87, 0.45) 0%, transparent 60%),
    linear-gradient(135deg, rgba(20, 14, 18, 0.7) 0%, rgba(36, 22, 30, 0.55) 100%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.cta-banner-content .kicker-light {
  margin-bottom: 22px;
}
.cta-banner-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 20px;
}
.cta-banner-title em {
  font-style: italic;
  color: var(--accent-soft);
  font-weight: 500;
}
.cta-banner-lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 36px;
  max-width: 580px;
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-banner-btn {
  font-size: 15px;
  padding: 17px 30px;
}
.cta-banner-btn svg { width: 18px; height: 18px; margin-left: 4px; }

.cta-banner-alt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background 240ms, border-color 240ms, transform 240ms;
}
.cta-banner-alt:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}
.cta-banner-alt svg { width: 18px; height: 18px; color: #25d366; flex-shrink: 0; }

.cta-banner-trust {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cbt-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}
.cbt-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-soft);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cta-banner { padding: 72px 18px; }
  .cta-banner-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-banner-btn, .cta-banner-alt { justify-content: center; width: 100%; }
  .cta-banner-trust { flex-direction: column; align-items: flex-start; padding: 20px; background: rgba(0,0,0,0.18); border-radius: var(--radius-md); border-top: none; }
  .cbt-item { font-size: 13.5px; }
}

/* ============================================
   Footer-CTA (поверх футера)
   ============================================ */
.footer-cta {
  background: linear-gradient(155deg, #1f1620 0%, #2c1d28 60%, #3a2231 100%);
  color: #fff;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto 56px;
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(151, 71, 87, 0.42) 0%, transparent 65%);
  pointer-events: none;
}
.footer-cta > * { position: relative; z-index: 1; }

.footer-cta-text {
  min-width: 0;
}
.footer-cta-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 8px;
}
.footer-cta-title em {
  font-style: italic;
  color: var(--accent-soft);
  font-weight: 500;
}
.footer-cta-sub {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.footer-cta-btn {
  font-size: 15px;
  padding: 15px 26px;
  white-space: nowrap;
}
.footer-cta-btn svg { width: 18px; height: 18px; margin-left: 4px; }

.footer-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 240ms;
}
.footer-cta-call:hover { color: var(--accent-soft); }
.footer-cta-call svg { width: 18px; height: 18px; color: var(--accent-soft); flex-shrink: 0; }

@media (max-width: 760px) {
  .footer-cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 20px;
    margin: 0 14px 36px;
    border-radius: var(--radius-md);
    gap: 22px;
    max-width: calc(100% - 28px);
  }
  .footer-cta-title { font-size: 22px; line-height: 1.25; }
  .footer-cta-sub { font-size: 13.5px; }
  .footer-cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }
  .footer-cta-btn { justify-content: center; width: 100%; padding: 14px 18px; font-size: 14.5px; }
  .footer-cta-call { justify-content: center; padding: 10px; font-size: 14px; }
}
@media (max-width: 380px) {
  .footer-cta { padding: 24px 16px; margin: 0 10px 32px; max-width: calc(100% - 20px); }
  .footer-cta-title { font-size: 19px; }
  .footer-cta-sub { font-size: 13px; }
  .footer-cta::before { width: 220px; height: 220px; top: -60px; right: -60px; }
}

/* ============================================
   Мобильный поиск - полноэкранный sheet
   ============================================ */
.m-search {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.m-search[hidden] { display: none; }

.m-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #fff;
}
.m-screen[hidden] { display: none; }

/* Шапка */
.m-screen-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px 16px;
  border-bottom: 1px solid rgba(28, 20, 24, 0.08);
  flex-shrink: 0;
}
.m-back {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 200ms;
}
.m-back:active { background: rgba(28, 20, 24, 0.08); }
.m-back svg { width: 22px; height: 22px; }

.m-screen-title-wrap { min-width: 0; flex: 1; }
.m-screen-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.m-screen-sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 3px;
}

/* Тело */
.m-screen-body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Поле "Заезд / Отъезд" - кнопка */
.m-field {
  border: 1px solid rgba(28, 20, 24, 0.12);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: stretch;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 200ms;
}
.m-field:active { border-color: var(--accent); }

.m-field--dates {
  display: flex;
  align-items: stretch;
}
.m-field-cell {
  flex: 1;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.m-field-divider {
  width: 1px;
  background: rgba(28, 20, 24, 0.1);
  margin: 12px 0;
}
.m-field-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.m-field-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-field-value:not([data-has-value]) {
  font-weight: 500;
  color: var(--ink-soft);
}

/* Поле "Гости" */
.m-field--guests {
  flex-direction: column;
  align-items: stretch;
  padding: 14px 18px;
  cursor: default;
}
.m-field--guests:active { border-color: rgba(28, 20, 24, 0.12); }
.m-guests-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}
.m-guests-val {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.m-guests-controls {
  display: flex;
  gap: 8px;
}
.m-g-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(28, 20, 24, 0.16);
  border-radius: 50%;
  background: #fff;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 150ms, border-color 150ms;
}
.m-g-btn:active { background: rgba(151, 71, 87, 0.08); border-color: var(--accent); }
.m-g-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* Футер с кнопками */
.m-screen-foot {
  flex-shrink: 0;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(28, 20, 24, 0.08);
  background: #fff;
  display: flex;
  gap: 10px;
}
.m-foot-reset {
  flex: 1;
  border: 1px solid rgba(28, 20, 24, 0.16);
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
}
.m-foot-reset:active { background: rgba(28, 20, 24, 0.04); }
.m-foot-cta {
  flex: 1.6;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px !important;
  font-size: 16px !important;
}
.m-foot-cta--full { flex: 1; }
.m-foot-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

/* === Экран календаря === */
.m-cal-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 16px 0;
  flex-shrink: 0;
}
.m-cal-field {
  background: rgba(28, 20, 24, 0.04);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 2px solid transparent;
  transition: border-color 200ms, background 200ms;
}
.m-cal-field.is-active {
  border-color: var(--accent);
  background: rgba(151, 71, 87, 0.06);
}
.m-cal-field-label {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.m-cal-field-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.m-cal-field-value:empty::before,
.m-cal-field-value[data-empty]::before {
  content: '—';
  color: var(--ink-soft);
}

.m-cal-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 16px 16px;
}
.m-cal-mount {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* === Кастомный мобильный календарь === */
.m-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  padding: 8px 16px 6px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(28, 20, 24, 0.06);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 5;
}
.m-cal-weekdays span {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: lowercase;
  line-height: 24px;
}
.m-cal-mount {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 16px;
}
.mc-month {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mc-month-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  padding: 0 4px;
  text-transform: capitalize;
}
.mc-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px 0;
}
.mc-day {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.mc-day-empty { visibility: hidden; pointer-events: none; }
.mc-day-disabled {
  color: rgba(28, 20, 24, 0.22);
  cursor: not-allowed;
  pointer-events: none;
}
.mc-day-today { font-weight: 700; color: var(--accent); }

/* Подсветка диапазона */
.mc-day-inrange::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -1px;
  right: -1px;
  height: 78%;
  background: rgba(151, 71, 87, 0.12);
  transform: translateY(-50%);
  z-index: 0;
}
.mc-day-start::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  right: -1px;
  height: 78%;
  background: rgba(151, 71, 87, 0.12);
  transform: translateY(-50%);
  z-index: 0;
}
.mc-day-end::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -1px;
  right: 50%;
  height: 78%;
  background: rgba(151, 71, 87, 0.12);
  transform: translateY(-50%);
  z-index: 0;
}
.mc-day-start.mc-day-end::before { display: none; }

.mc-day-circle {
  position: relative;
  z-index: 1;
  width: 84%;
  height: 84%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mc-day-start .mc-day-circle,
.mc-day-end .mc-day-circle,
.mc-day-selected .mc-day-circle {
  background: var(--accent);
  color: #fff;
}

/* Старые стили для flatpickr внутри m-cal-mount - больше не нужны (оставляем заглушку для случая если что-то осталось) */
.m-cal-mount > input { display: none !important; }


/* Доступ только на мобайле */
@media (min-width: 769px) {
  .m-search { display: none !important; }
}

/* Блокировка скролла body когда открыт m-search */
body.m-search-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}




