/* =============================================
   ГОСТЕВОЙ ДОМ «ТРИ ЗАЙЦА» — Mobile First
   Современная адаптивная архитектура 2025-2026
   Используются: clamp(), min(), flex, grid, relative units
   ============================================= */

:root {
  --c-bg: #faf7f2;
  --c-surface: #fff;
  --c-primary: #5D4037;
  --c-accent: #FF7A18;
  --c-accent-hover: #E06A0E;
  --c-dark: #2B2823;
  --c-muted: rgba(30,30,30,0.5);
  --c-border: rgba(30,30,30,0.06);
  --c-overlay: rgba(0,0,0,0.45);

  --gap-sm: clamp(8px, 1.5vw, 16px);
  --gap-md: clamp(16px, 3vw, 32px);
  --gap-lg: clamp(24px, 5vw, 48px);
  --gap-xl: clamp(32px, 6vw, 64px);

  --pad-inline: clamp(16px, 4vw, 40px);
  --pad-block: clamp(24px, 5vw, 60px);

  --fz-xs: clamp(11px, 1.2vw, 13px);
  --fz-sm: clamp(13px, 1.4vw, 15px);
  --fz-md: clamp(15px, 1.6vw, 17px);
  --fz-lg: clamp(18px, 2vw, 22px);
  --fz-xl: clamp(24px, 3.5vw, 40px);
  --fz-2xl: clamp(28px, 5vw, 52px);
  --fz-3xl: clamp(32px, 6vw, 68px);

  --lh-tight: 1.1;
  --lh-normal: 1.5;
  --lh-loose: 1.7;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-sm: 0 4px 16px rgba(0,0,0,0.04);
  --shadow: 0 10px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.1);

  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: clamp(60px, 8vh, 80px);

  --btn-min: 48px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--fz-md);
  line-height: var(--lh-loose);
  color: var(--c-dark);
  background: var(--c-bg);
  min-width: 320px;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* =============================================
   UTILITY
   ============================================= */
.container {
  width: 100%;
  padding-inline: var(--pad-inline);
  margin-inline: auto;
  max-width: 1200px;
}

.section {
  padding-block: var(--pad-block);
}

/* Переопределения отступов для главной страницы */
.about {
  padding-bottom: var(--gap-sm);
}

.about .section-heading {
  margin-bottom: 0;
}

.block1-section {
  padding: 0;
  margin: 0;
  text-align: center;
}

.rooms-section {
  padding-top: var(--gap-md);
}

/* =============================================
   ROOMS PAGE — тёмная тема
   ============================================= */
.rooms-page-body {
  background-color: #1A1A1A;
  color: #fff;
}
.rooms-page-body .header {
  background: rgba(26,26,26,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.rooms-page-body .logo,
.rooms-page-body .nav a,
.rooms-page-body .header-phone-num,
.rooms-page-body .section-heading h2 {
  color: #fff;
}
.rooms-page-body .section-heading p {
  color: rgba(255,255,255,0.6);
}
.rooms-page-body .room-card-header h3,
.rooms-page-body .room-tag,
.rooms-page-body .room-type {
  color: #1A1A1A;
}

/* =============================================
   HEADER (Mobile First)
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(247,242,234,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(12px, 2vh, 20px) var(--pad-inline);
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 12px);
  font-weight: 800;
  font-size: clamp(18px, 3vw, 30px);
  color: var(--c-dark);
  line-height: var(--lh-tight);
}

.logo-icon {
  width: clamp(32px, 5vw, 42px);
  height: clamp(32px, 5vw, 42px);
  background: var(--c-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(14px, 2.5vw, 20px);
  flex-shrink: 0;
}

.logo-sub {
  display: block;
  font-size: var(--fz-xs);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-muted);
  margin-top: -2px;
}

/* ——— Desktop nav ——— */
.nav {
  display: none;
  gap: clamp(12px, 2vw, 32px);
}

.nav a {
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--c-primary);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  transition: width var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--c-accent);
}
.nav a:hover::after,
.nav a.active::after { width: 100%; }

.header-right {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 20px);
}

.header-phone {
  display: none;
  text-align: right;
}
.header-phone-num {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 700;
  color: var(--c-dark);
  white-space: nowrap;
}
.header-phone-hint {
  font-size: var(--fz-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-muted);
}

/* =============================================
   BURGER MENU — Mobile First
   ============================================= */
.burger-btn {
  width: var(--btn-min);
  height: var(--btn-min);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--c-dark);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  position: relative;
  z-index: 1002;
  background: rgba(255,255,255,0.3);
}

.burger-btn.active {
  background: var(--c-accent);
  color: #fff;
}

/* Оверлей */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--c-overlay);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Само меню */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 380px);
  height: 100dvh;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: clamp(80px, 15vh, 100px) var(--pad-inline) var(--pad-inline);
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,0.08);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: clamp(12px, 2vh, 20px);
  right: var(--pad-inline);
  width: var(--btn-min);
  height: var(--btn-min);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--c-dark);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-menu-close:hover {
  background: rgba(0,0,0,0.04);
}

.mobile-menu a {
  display: block;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 700;
  color: var(--c-dark);
  padding: clamp(12px, 2vh, 16px) 0;
  border-bottom: 1px solid var(--c-border);
  transition: color var(--transition);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--c-accent); }

.mobile-menu-contact {
  margin-top: auto;
  padding-top: var(--gap-lg);
  border-top: 1px solid var(--c-border);
}

.mobile-menu-phone {
  font-size: var(--fz-lg);
  font-weight: 700;
  color: var(--c-dark);
}

.mobile-menu-hint {
  font-size: var(--fz-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-muted);
  margin-bottom: var(--gap-sm);
}

/* =============================================
   HERO — изображение (баннер)
   ============================================= */
.hero-banner {
  width: 100%;
  height: auto;
  margin-top: var(--header-h);
  position: relative;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* =============================================
   HERO — контент под изображением
   ============================================= */
.hero-content-section {
  padding-block: var(--gap-xl);
  background: var(--c-bg);
  text-align: center;
}

.hero-content-wrap {
  max-width: 700px;
  margin-inline: auto;
}

.hero-title-dark {
  font-size: var(--fz-3xl);
  font-weight: 800;
  line-height: var(--lh-tight);
  color: var(--c-dark);
  margin-bottom: clamp(8px, 1.5vh, 16px);
}

.hero-title-dark .orange {
  color: var(--c-accent);
}

.hero-desc-dark {
  font-size: var(--fz-lg);
  color: var(--c-muted);
  margin-bottom: var(--gap-lg);
  max-width: 500px;
  margin-inline: auto;
}

.hero-subheading {
  font-size: var(--fz-xl);
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: var(--gap-md);
}

.hero-features-dark {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-sm);
  margin-bottom: var(--gap-lg);
  max-width: 500px;
  margin-inline: auto;
}

.hero-feature-dark {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 10px);
  font-size: var(--fz-md);
  color: var(--c-dark);
  justify-content: center;
}

.hero-feature-icon-dark {
  width: clamp(32px, 4vw, 40px);
  height: clamp(32px, 4vw, 40px);
  background: rgba(255,122,24,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fz-md);
  flex-shrink: 0;
}

.hero-btns-dark {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
  justify-content: center;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(12px, 2vh, 16px) clamp(20px, 4vw, 32px);
  min-height: var(--btn-min);
  border-radius: var(--radius-sm);
  font-size: var(--fz-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all var(--transition);
  border: 1.5px solid var(--c-primary);
  background: transparent;
  color: var(--c-primary);
  white-space: nowrap;
}

.btn-outline-dark:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(12px, 2vh, 16px) clamp(20px, 4vw, 32px);
  min-height: var(--btn-min);
  border-radius: var(--radius-sm);
  font-size: var(--fz-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255,122,24,0.25);
}

.btn-primary:hover {
  background: var(--c-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,122,24,0.35);
}

.btn-outline {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
  transform: translateY(-2px);
}

/* =============================================
   FEATURES BANNER
   ============================================= */
.features-banner {
  background: var(--c-bg);
  padding-block: var(--pad-block);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-md);
}

.feature-card {
  background: var(--c-surface);
  padding: clamp(16px, 3vw, 28px) clamp(12px, 2.5vw, 20px);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card-icon {
  width: clamp(44px, 7vw, 56px);
  height: clamp(44px, 7vw, 56px);
  margin: 0 auto var(--gap-sm);
  background: rgba(255,122,24,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 3.5vw, 26px);
  color: var(--c-accent);
  transition: all var(--transition);
}

.feature-card:hover .feature-card-icon {
  background: var(--c-accent);
  color: #fff;
}

.feature-card h3 {
  font-size: var(--fz-md);
  font-weight: 700;
  margin-bottom: clamp(4px, 0.8vw, 8px);
  color: var(--c-dark);
}

.feature-card p {
  font-size: var(--fz-sm);
  color: var(--c-muted);
  line-height: var(--lh-normal);
}

/* =============================================
   SECTION HEADING
   ============================================= */
.section-heading {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.section-heading h2 {
  font-size: var(--fz-2xl);
  font-weight: 800;
  color: var(--c-dark);
  line-height: var(--lh-tight);
  margin-bottom: clamp(8px, 1vw, 12px);
}

.section-heading p {
  font-size: var(--fz-md);
  color: var(--c-muted);
  max-width: 500px;
  margin-inline: auto;
}

/* =============================================
   ROOMS CAROUSEL
   ============================================= */
.rooms-section {
  padding-block: var(--pad-block);
  overflow: clip;
}

.rooms-wrapper {
  position: relative;
}

.rooms-track {
  display: flex;
  gap: var(--gap-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: clamp(8px, 1.5vw, 12px) var(--pad-inline) var(--gap-md);
  margin-inline: calc(-1 * var(--pad-inline));
}

.rooms-track::-webkit-scrollbar { display: none; }

.room-card {
  flex: 0 0 min(90vw, 420px);
  scroll-snap-align: center;
  background: #F4EFE6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.room-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #EFE8DC;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

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

.room-card-body {
  padding: clamp(20px, 3.5vw, 32px);
}

.room-card-header {
  margin-bottom: clamp(4px, 0.5vw, 8px);
}

.room-card-header h3 {
  font-size: var(--fz-xl);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 2px;
}

.room-type {
  display: block;
  font-size: var(--fz-sm);
  color: var(--c-primary);
  font-weight: 600;
  margin-top: 2px;
}

.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: var(--gap-md);
}

.room-tag {
  font-size: var(--fz-xs);
  color: var(--c-dark);
  font-weight: 500;
  white-space: nowrap;
}

.room-card-action {
  color: var(--c-accent);
  font-weight: 700;
  font-size: var(--fz-md);
  display: flex;
  align-items: center;
  gap: 4px;
}

.room-card:hover .room-card-action .arrow {
  transform: translateX(4px);
}

.arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.rooms-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(36px, 5vw, 44px);
  height: clamp(36px, 5vw, 44px);
  border-radius: 50%;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  font-size: clamp(20px, 3vw, 24px);
  cursor: pointer;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--c-dark);
  transition: all var(--transition);
}

.rooms-arrow:hover {
  background: var(--c-accent);
  color: #fff;
}

.rooms-arrow-left {
  left: clamp(4px, 1vw, 16px);
}
.rooms-arrow-right {
  right: clamp(4px, 1vw, 16px);
}

.rooms-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.rooms-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.rooms-dot.active {
  background: var(--c-accent);
  width: 24px;
  border-radius: 4px;
}

/* =============================================
   AMENITIES
   ============================================= */
.amenities-section {
  background: var(--c-bg);
  padding-block: var(--pad-block);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap-md);
}

.amenity-item {
  background: var(--c-surface);
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.amenity-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.amenity-icon {
  font-size: clamp(32px, 5vw, 44px);
  margin-bottom: var(--gap-md);
  display: block;
}

.amenity-item span {
  font-size: var(--fz-md);
  color: var(--c-muted);
  font-weight: 600;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--c-accent) 0%, #FF9440 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(32px, 6vw, 60px) clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

.cta-banner h2 {
  font-size: var(--fz-2xl);
  color: #fff;
  line-height: var(--lh-tight);
  margin-bottom: var(--gap-sm);
}

.cta-banner p {
  font-size: var(--fz-md);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--gap-md);
}

.cta-banner .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(12px, 2vh, 16px) clamp(20px, 4vw, 32px);
  background: #fff;
  color: var(--c-accent);
  font-size: var(--fz-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  min-height: var(--btn-min);
}

.cta-banner .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.cta-banner img {
  max-height: clamp(180px, 30vw, 260px);
  width: auto;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.1));
}

/* =============================================
   SERVICES PAGE — фон между header и footer
   ============================================= */
.services-body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background-color: var(--c-bg);
}

.services-body .header {
  position: fixed;
}

.services-body .top-block {
  width: 100%;
  margin-top: var(--header-h);
  min-height: auto;
  flex: none;
  aspect-ratio: 16 / 9;
  background-size: 100% auto !important;
  background-position: top center !important;
  background-repeat: no-repeat !important;
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews-section {
  padding-block: var(--pad-block);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-md);
}

.review-card {
  background: var(--c-surface);
  padding: clamp(20px, 3vw, 32px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: #FFB800;
  font-size: var(--fz-sm);
  letter-spacing: 2px;
  margin-bottom: var(--gap-sm);
}

.review-text,
.review-card p {
  font-size: var(--fz-md);
  color: #1c1511 !important;
  font-style: italic;
  line-height: var(--lh-loose);
  margin-bottom: var(--gap-sm);
}

.review-author,
.review-card-footer {
  font-size: var(--fz-sm);
  font-weight: 600;
  color: #1c1511 !important;
}

.review-author small {
  font-weight: 400;
  color: var(--c-muted);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--c-dark);
  color: #fff;
  padding: var(--pad-block) var(--pad-inline);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
  max-width: 1200px;
  margin-inline: auto;
}

.footer-desc {
  margin-top: var(--gap-sm);
  font-size: var(--fz-sm);
  color: rgba(255,255,255,0.6);
  max-width: 300px;
}

.footer-text {
  color: rgba(255,255,255,0.6);
  font-size: var(--fz-sm);
}

.footer-white {
  color: #fff;
}

.footer-sub {
  color: rgba(255,255,255,0.5) !important;
}

.footer h4 {
  font-size: var(--fz-md);
  font-weight: 700;
  margin-bottom: var(--gap-sm);
}

.footer a {
  font-size: var(--fz-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer a:hover {
  color: var(--c-accent);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--gap-lg);
  margin-top: var(--gap-lg);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: var(--fz-xs);
  color: rgba(255,255,255,0.3);
}

/* =============================================
   GALLERY ITEMS
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--gap-sm);
}

.gallery-item {
  background: #EFE8DC;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  font-size: var(--fz-sm);
  overflow: hidden;
}

.gallery-item--tall { aspect-ratio: 3 / 4; }
.gallery-item--square { aspect-ratio: 4 / 3; }
.gallery-item--wide { aspect-ratio: 16 / 9; grid-column: span 2; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  list-style: none;
}

.contact-label {
  font-size: var(--fz-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-muted);
  display: block;
  margin-bottom: 4px;
}

.contact-value {
  font-size: var(--fz-lg);
  font-weight: 700;
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  margin-top: var(--gap-lg);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-input,
.form-textarea {
  padding: clamp(12px, 2vh, 16px);
  border: none;
  border-radius: var(--radius-sm);
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
  font-size: var(--fz-md);
  width: 100%;
  max-width: 400px;
  font-family: inherit;
}

.form-textarea {
  resize: vertical;
}

/* Утилиты для контейнера карты */
.w-full { width: 100%; }
.max-w-\[1200px\] { max-width: 1200px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 16px; padding-right: 16px; }
@media (min-width: 768px) {
  .md\:px-8 { padding-left: 32px; padding-right: 32px; }
  .md\:mt-16 { margin-top: 64px; }
}
.mt-12 { margin-top: 48px; }

/* Высота карты — адаптив */
.h-\[260px\] { height: 260px; }
@media (min-width: 640px) {
  .sm\:h-\[380px\] { height: 380px; }
}
@media (min-width: 1024px) {
  .lg\:h-\[480px\] { height: 480px; }
}

/* Скруглённые углы */
.rounded-3xl { border-radius: 24px; }
.overflow-hidden { overflow: hidden; }

/* Границы с прозрачностью */
.border { border-width: 1px; border-style: solid; }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/5 { border-color: rgba(255,255,255,0.05); }

/* Позиционирование */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.pointer-events-none { pointer-events: none; }
.z-10 { z-index: 10; }

/* Ховер для карты */
.hover\:border-cyan-400\/30:hover { border-color: rgba(34,211,238,0.3); }

/* Тени */
.shadow-\[0_25px_60px_rgba\(0\2c 0\2c 0\2c 0\.6\)\] {
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

/* Анимация */
.transition-all { transition-property: all; }
.duration-500 { transition-duration: 500ms; }

/* =============================================
   КАРТА — 3D-окно, изометрический маркер, селектор навигаторов
   ============================================= */

/* Эффект глубокого 3D-окна */
.map-window-wrapper {
    perspective: 1200px;
}

.map-window-frame {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.25);
    background: #1c1511;
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -10px 40px rgba(0, 0, 0, 0.8);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Реалистичный стеклянный блик при наведении */
.map-window-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 80%);
    transform: translateX(-100%);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 15;
}

@media (min-width: 1024px) {
    .map-window-frame:hover {
        transform: rotateX(2deg) rotateY(-1deg) scale(1.005);
        border-color: rgba(212, 175, 55, 0.55);
        box-shadow: 
            0 40px 90px rgba(212, 175, 55, 0.12),
            0 30px 80px rgba(0, 0, 0, 0.85);
    }
    .map-window-frame:hover::after {
        transform: translateX(100%);
    }
}

/* Hide slider arrows on touch devices, keep on desktop hover */
@media (max-width: 1023px) {
    .slider-arrow {
        display: none !important;
    }
}

/* ==========================================================================
   SKELETON SHIMMER LOADER
   ========================================================================== */
.skeleton-card {
    background: #1c1511;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 24px;
    height: 420px;
    position: relative;
    overflow: hidden;
    flex: 0 0 min(90vw, 420px);
}
.skeleton-card::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transform: translateX(-100%);
    animation: shimmer 1.6s infinite;
}
@keyframes shimmer {
    100% { transform: translateX(100%); }
}

/* Оптимизация, сверхчеткость и устранение "мыла" у изображения */
.map-window-image {
    width: 100%;
    height: auto !important;
    display: block;
    filter: contrast(1.1) brightness(0.95) saturate(1.05);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 1024px) { 
    .map-window-frame:hover .map-window-image {
        filter: contrast(1.14) brightness(0.98) saturate(1.08);
    }
}

/* Кнопка-оверлей (на весь экран карты) */
.map-overlay-button {
    position: absolute;
    inset: 0;
    z-index: 16;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    height: 100%;
    padding: 0;
}

/* 3D Позиционирование значка зайца и плашки ровно над новым зданием */
.isometric-marker-container {
    position: absolute;
    top: 45.98%;
    left: 27.06%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    z-index: 12;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Интерактивная HTML-плашка адреса прямо на плоскости земли */
.map-html-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1c1511;
    border: 2px solid #D4AF37;
    padding: 6px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6), 0 0 15px rgba(212, 175, 55, 0.2);
    z-index: 11;
    white-space: nowrap;
    pointer-events: none;
}

.map-html-badge-text {
    font-size: 13px;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 0.03em;
    font-family: Arial, sans-serif;
}

/* Концентрические волны "поплавка" */
.ripple-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid #D4AF37;
    border-radius: 50%;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(65deg) scale(0.1);
    transform-origin: center center;
    animation: isometric-ripple 3.5s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
}
.ring-1 { animation-delay: 0s; }
.ring-2 { animation-delay: 1.1s; }
.ring-3 { animation-delay: 2.2s; }

@keyframes isometric-ripple {
    0% {
        transform: translate(-50%, -50%) rotateX(65deg) scale(0.1);
        opacity: 0.95;
        border-color: #D4AF37;
    }
    50% {
        border-color: #27ae60;
    }
    100% {
        transform: translate(-50%, -50%) rotateX(65deg) scale(1.5);
        border-color: rgba(39, 174, 96, 0);
        opacity: 0;
    }
}

/* Сплющенная тень от парящего зайчика */
.marker-ground-shadow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotateX(15deg);
    bottom: 10px;
    width: 40px;
    height: 16px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    filter: blur(3px);
    animation: bunny-shadow 2.2s infinite ease-in-out;
}

@keyframes bunny-shadow {
    0%, 100% {
        transform: translateX(-50%) scale(1) rotateX(15deg);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-50%) scale(0.75) rotateX(15deg);
        opacity: 0.2;
    }
}

/* Сам 3D-зайчик, парящий над надписью как поплавок */
.floating-bunny-pin {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 52px;
    width: 100px;
    height: 110px;
    animation: bunny-bobbing 2.2s infinite ease-in-out;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.65));
}

@media (max-width: 768px) {
    .floating-bunny-pin { 
        bottom: 48px;
        width: 85px; 
        height: 85px; 
    }
    .ripple-ring { width: 90px; height: 90px; }
    
    .map-html-badge {
        padding: 4px 12px;
        bottom: -10px;
    }
    .map-html-badge-text {
        font-size: 11px;
    }
}

.bunny-pin-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes bunny-bobbing {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -18px); }
}

/* Полностью скрываем старый бейдж */
.map-address-badge {
    display: none !important;
}

/* Стили всплывающего селектора навигаторов */
.nav-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 12, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1010;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.nav-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.nav-modal-container {
    background: #1c1511;
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    padding: 28px;
    transform: translateY(15px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-modal-overlay.open .nav-modal-container {
    transform: translateY(0) scale(1);
}

.nav-modal-close-x {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: color 0.2s;
    padding: 4px;
}

.nav-modal-close-x:hover { color: #D4AF37; }

.nav-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
}

.nav-modal-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}

/* Карточки навигаторов */
.nav-options-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.nav-option-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-option-icon { font-size: 24px; }

.nav-option-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.nav-option-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.nav-option-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}

.nav-option-arrow {
    color: rgba(255,255,255,0.3);
    font-size: 16px;
    transition: transform 0.3s;
}

/* Эффекты при наведении */
.nav-option-card:hover {
    transform: translateX(4px);
    background: rgba(212, 175, 55, 0.05);
}

.nav-option-card:hover .nav-option-arrow {
    transform: translateX(4px);
    color: #D4AF37;
}

.hover-yandex:hover { border-color: rgba(230, 76, 60, 0.3); }
.hover-google:hover { border-color: rgba(46, 204, 113, 0.3); }
.hover-apple:hover { border-color: rgba(255, 255, 255, 0.3); }

.nav-modal-btn-close {
    display: block;
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    font-size: 14px;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-modal-btn-close:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Лоадер в тёплых тонах */
.map-placeholder {
    background: #1e1915;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.loader-spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-top-color: #D4AF37;
    animation: spin 0.8s linear infinite;
    margin-bottom: 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.map-loader-text {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: #D4AF37;
    text-transform: uppercase;
    font-weight: 600;
}

/* Модальное окно (Попап) "Как добраться" */
.route-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 12, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.route-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.route-modal-container {
    background: #1c1511;
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: 100%;
    max-width: 680px;
    max-height: 85vh;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow-y: auto;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 32px 24px;
}
@media (min-width: 768px) {
    .route-modal-container { padding: 40px; }
}
.route-modal-overlay.open .route-modal-container {
    transform: translateY(0) scale(1);
}
.route-modal-close-x {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    padding: 8px;
}
.route-modal-close-x:hover {
    color: #D4AF37;
    transform: scale(1.1);
}
.route-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}
@media (min-width: 768px) {
    .route-modal-title { font-size: 28px; }
}
.route-modal-subtitle {
    font-size: 14px;
    color: #D4AF37;
    margin-bottom: 28px;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.route-modal-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.route-modal-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.route-step-icon {
    font-size: 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.route-step-text h5 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px 0;
}
.route-step-text p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}
.route-modal-btn-close {
    display: block;
    width: 100%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    font-weight: 700;
    font-size: 15px;
    padding: 16px;
    border-radius: 14px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}
.route-modal-btn-close:hover {
    background: #D4AF37;
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Убираем старые стили */
.map-marker, .marker-badge, .marker-badge-text, .marker-dot, .marker-dot-inner, .marker-stem {
    display: none !important;
}
.route-instructions-container, .route-instructions-container.open {
    display: none !important;
}

/* Плавное появление reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Ховер для карты — золотой */
.hover\:border-\[\#D4AF37\]\/30:hover { border-color: rgba(212,175,55,0.3); }

/* Удаляем старый cyan ховер (больше не используется картой) */
.hover\:border-cyan-400\/30:hover { display: none; }

/* =============================================
   ROOMS PAGE GRID — адаптивная, без наложений
   ============================================= */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  row-gap: 56px !important;
  column-gap: 24px !important;
  align-items: start !important;
  max-width: 1600px;
  margin-inline: auto;
  width: 100%;
}

.rooms-grid .room-card {
  height: auto !important;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

/* =============================================
   SECTION TOP PADDING (для страниц с фиксированным header)
   ============================================= */
.section--offset {
  padding-top: clamp(80px, 12vh, 100px);
}

/* =============================================
   Tablet (480px — 768px)
   ============================================= */
@media (min-width: 480px) and (max-width: 768px) {
  .room-card {
    flex: 0 0 min(85vw, 520px);
  }
}

/* =============================================
   RESPONSIVE — Desktop (min-width: 769px)
   ============================================= */
@media (min-width: 769px) {
  .nav { display: flex; }
  .header-phone { display: block; }
  .burger-btn,
  .mobile-menu,
  .mobile-overlay { display: none; }

  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }

  .rooms-section .container,
  .amenities-section .container {
    max-width: 1600px;
    padding-inline: 40px;
  }

  .rooms-arrow { display: flex; }

  .rooms-track {
    gap: 32px;
    padding-inline: clamp(60px, 10vw, 120px);
    scroll-snap-type: none;
  }

  .rooms-track .room-card {
    flex: 0 0 580px;
  }

  .room-card-body {
    padding: 32px;
  }

  .amenity-item span {
    font-size: var(--fz-lg);
  }

  .cta-banner {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   Tablet (769–1024px)
   ============================================= */
@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   Desktop XL (min-width: 1025px)
   ============================================= */
@media (min-width: 1025px) {
  .rooms-section .container,
  .amenities-section .container {
    max-width: 100%;
    padding-inline: 4vw;
  }

  .rooms-page-body main.section .container {
    max-width: 100% !important;
    width: 100%;
    padding-inline: 4vw;
  }

  .rooms-page-body .rooms-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 24px;
    align-items: start;
    padding-bottom: 100px;
    max-width: 100%;
    width: 100%;
    padding-inline: 0;
    margin-inline: 0;
  }

  .rooms-page-body .rooms-grid .room-card {
    flex: none;
    width: 100%;
    min-width: 0;
  }

  .rooms-page-body .rooms-grid .room-card:nth-child(1) { grid-column: 1 / 3; }
  .rooms-page-body .rooms-grid .room-card:nth-child(2) { grid-column: 3 / 5; }
  .rooms-page-body .rooms-grid .room-card:nth-child(3) { grid-column: 5 / 7; }
  .rooms-page-body .rooms-grid .room-card:nth-child(4) { grid-column: 7 / 9; }

  .rooms-page-body .rooms-grid .room-card:nth-child(5) { grid-column: 2 / 4; }
  .rooms-page-body .rooms-grid .room-card:nth-child(6) { grid-column: 4 / 6; }
  .rooms-page-body .rooms-grid .room-card:nth-child(7) { grid-column: 6 / 8; }

  .rooms-page-body .rooms-grid .room-card:nth-child(n+5) {
    margin-top: 0; /* Убираем наложение — второй ряд начинается чистым */
    position: static;
    z-index: auto;
    box-shadow: var(--shadow);
  }

  .rooms-page-body .rooms-grid .room-card {
    margin-bottom: 10px;
  }

  .rooms-page-body .room-tag {
    font-size: clamp(10px, 0.8vw, 12px);
    padding: 0;
  }

  .rooms-track .room-card {
    flex: 0 0 min(30vw, 800px);
  }

  .rooms-arrow-left {
    left: -2vw;
  }

  .rooms-arrow-right {
    right: -2vw;
  }

  .amenities-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--gap-lg);
  }
}

/* ==========================================================================
   PREMIUM UNIFIED DARK THEME & LIQUID-GLASS AMENITIES (NO-CONFLICT EDITION)
   ========================================================================== */

/* 🍫 ПРИНУДИТЕЛЬНЫЙ ПРЕМИАЛЬНЫЙ ТЕМНО-КОРИЧНЕВЫЙ ФОН ДЛЯ ВСЕХ БРАУЗЕРОВ И УСТРОЙСТВ */
html, body {
    background-color: #120e0b !important; /* Глубокий благородный темный тон */
    color: #ffffff !important;
}

/* Все светлые секции на главной принудительно переводим в теплую кофейно-шоколадную гамму */
.hero-content-section, 
.about, 
.rooms-section, 
.cta-banner, 
.reviews-section, 
.footer {
    background-color: #1c1511 !important; /* Уютный шоколадно-коричневый */
    color: #ffffff !important;
}

/* Настраиваем цвета текстов, чтобы они идеально контрастировали */
.hero-title-dark, 
.section-heading h2, 
.cta-banner h2, 
.footer h4,
.room-card h3 {
    color: #ffffff !important;
}

.hero-desc-dark, 
.section-heading p, 
.footer p, 
.footer li, 
.footer-bottom,
.room-type,
.room-tag {
    color: rgba(255, 255, 255, 0.7) !important;
}

.orange, .section-subtitle, .gold-sparkle {
    color: #D4AF37 !important; /* Королевское золото */
}

/* Контейнеры секции удобств */
.amenities-premium-section {
    padding: 80px 0;
    width: 100%;
    background: transparent;
}

/* 🔓 Восстановление горизонтальных свайпов номеров на мобильных */
#roomsTrack {
    touch-action: auto !important; /* Убираем жесткий блок pan-y, чтобы горизонтальные свайпы на телефонах снова ожили! */
    -webkit-overflow-scrolling: touch !important;
}

/* Адаптивное переключение (Mobile/Desktop) */
.mobile-amenities-container {
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 35px auto 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.desktop-amenities-grid {
    display: none; /* Скрыто на мобильных */
}

@media (min-width: 768px) {
    .mobile-amenities-container {
        display: none;
    }
    .desktop-amenities-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 колонки на планшетах */
        gap: 22px;
        margin-top: 50px;
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .desktop-amenities-grid {
        grid-template-columns: repeat(6, 1fr); /* Ровно 6 крупных колонок во всю ширину экрана на ПК! */
    }
}

/* Стили главного мобильного аккордеона */
.amenities-accordion-card {
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* 📱 СТЕКЛО IPHONE 16 PRO MAX: Ультра-премиальное Satin Glass размытие (.ios-glass) */
.liquid-glass-gold {
    background: rgba(255, 255, 255, 0.06) !important; 
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
}

.accordion-trigger-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color: #ffffff !important;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.trigger-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-arrow {
    font-size: 12px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Список горизонтальных полос в мобильной версии на фоне iPhone-стекла */
.mobile-amenities-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: rgba(18, 14, 11, 0.35); /* Полупрозрачная подложка, чтобы Satin Glass за ней красиво размывал фон */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.amenity-row-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 16px;
    color: #ffffff !important;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
    text-align: left;
}

.amenity-row-strip:active {
    transform: scale(0.97);
    filter: brightness(1.15);
}

/* Уникальные тёплые градиенты для каждой полосы */
.stripe-kitchen {
    background: linear-gradient(135deg, rgba(64, 48, 39, 0.9) 0%, rgba(46, 34, 27, 0.9) 100%);
    border-left: 4px solid #e67e22;
}
.stripe-tea-coffee {
    background: linear-gradient(135deg, rgba(74, 56, 43, 0.9) 0%, rgba(54, 40, 31, 0.9) 100%);
    border-left: 4px solid #D4AF37;
}
.stripe-fridge {
    background: linear-gradient(135deg, rgba(46, 52, 64, 0.9) 0%, rgba(34, 39, 48, 0.9) 100%);
    border-left: 4px solid #3498db;
}
.stripe-tv {
    background: linear-gradient(135deg, rgba(61, 44, 48, 0.9) 0%, rgba(44, 31, 34, 0.9) 100%);
    border-left: 4px solid #9b59b6;
}
.stripe-wifi {
    background: linear-gradient(135deg, rgba(41, 56, 69, 0.9) 0%, rgba(31, 42, 51, 0.9) 100%);
    border-left: 4px solid #1abc9c;
}
.stripe-parking {
    background: linear-gradient(135deg, rgba(31, 46, 34, 0.95) 0%, rgba(22, 33, 24, 0.95) 100%);
    border-left: 4px solid #27ae60;
}

.strip-icon {
    font-size: 24px;
    margin-right: 14px;
    display: inline-block;
}

.strip-title {
    flex-grow: 1;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.strip-arrow {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.35);
    transition: transform 0.3s ease;
}

.amenity-row-strip:hover .strip-arrow {
    transform: translateX(4px);
    color: #D4AF37;
}

/* 💻 Стили десктопных кнопок-карточек (Премиальные, крупные, во всю сетку сайта) */
.amenity-card-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 36px 20px !important; /* Глубокие премиальные отступы */
    min-height: 185px !important; /* Роскошная десктопная высота */
    background: rgba(54, 41, 34, 0.65); 
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 28px !important; /* Идеальное скругление */
    color: #ffffff !important;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    width: 100% !important; /* Всегда растягивается на 100% ширины ячейки */
    box-sizing: border-box;
    outline: none;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
}

.amenity-card-icon {
    font-size: 48px !important; /* Крупная премиальная иконка */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.amenity-card-title {
    font-size: 16px !important; /* Крупный заголовок */
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
    font-family: inherit;
}

/* Эффекты наведения на ПК */
@media (min-width: 1024px) {
    .amenity-card-btn:hover {
        transform: translateY(-8px) scale(1.04);
        border-color: #D4AF37;
        box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2), 0 12px 30px rgba(0, 0, 0, 0.5);
        background: rgba(74, 57, 47, 0.9);
    }
    .amenity-card-btn:hover .amenity-card-icon {
        transform: scale(1.22) rotate(4deg);
    }
    .amenity-card-btn:hover .amenity-card-title {
        color: #D4AF37;
    }
}

/* Карточка Парковки на ПК */
.parking-btn {
    border-color: rgba(39, 174, 96, 0.25);
}
@media (min-width: 1024px) {
    .parking-btn:hover {
        border-color: #27ae60;
        box-shadow: 0 20px 40px rgba(39, 174, 96, 0.2), 0 12px 30px rgba(0, 0, 0, 0.5);
    }
}

/* CSS Grid плавная анимация раскрытия аккордеона */
.grid-drawer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.grid-drawer-wrapper.open {
    grid-template-rows: 1fr;
}

.grid-drawer-inner {
    overflow: hidden;
}

/* 💎 СТИЛИ МОДАЛЬНОГО ОКНА ДЕТАЛЕЙ УДОБСТВА (ПРОСТОРНОЕ, ВЕЛИКОЛЕПНОЕ) */
.amenity-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 9, 8, 0.9) !important; /* Глубокое погружение, контрастный фон */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.amenity-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.amenity-modal-container {
    background: #1c1511;
    border: 1px solid rgba(212, 175, 55, 0.25);
    width: 100%;
    max-width: 780px !important; /* Увеличенная роскошная ширина */
    max-height: 85vh;
    border-radius: 32px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 44px !important; /* Много воздуха внутри */
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-sizing: border-box;
}

.amenity-modal-overlay.open .amenity-modal-container {
    transform: translateY(0) scale(1);
}

.amenity-modal-close-x {
    position: absolute;
    top: 24px;
    right: 28px;
    background: transparent;
    border: none;
    font-size: 26px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    padding: 8px;
    z-index: 10;
}

.amenity-modal-close-x:hover {
    color: #D4AF37;
    transform: scale(1.15);
}

.amenity-modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 20px;
}

.modal-header-icon { font-size: 48px; }

.modal-header-title {
    font-family: inherit;
    font-size: 30px; /* Большой сочный шрифт */
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}

.amenity-modal-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.amenity-modal-image-wrapper {
    width: 100%;
    height: 340px !important; /* Majestic высота фото-заглушки */
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: #110d0a;
    position: relative;
}

@media (max-width: 576px) {
    .amenity-modal-container {
        padding: 24px !important;
        gap: 18px;
    }
    .amenity-modal-image-wrapper {
        height: 170px !important;
    }
    .modal-header-title {
        font-size: 21px;
    }
    .amenity-modal-description {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
}

.amenity-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #1c1511 0%, #110d0a 100%);
}

.placeholder-camera {
    font-size: 36px;
    margin-bottom: 10px;
    opacity: 0.7;
    animation: placeholder-pulse 2.2s infinite ease-in-out;
}

.placeholder-text {
    font-size: 15px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 6px;
}

.placeholder-subtext {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

@keyframes placeholder-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.06); opacity: 0.8; }
}

.amenity-modal-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenity-modal-description {
    font-size: 18px !important; /* Воздушная, великолепная читаемость */
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.95);
    font-family: inherit;
    font-weight: 300; /* Тонкий изящный вид */
}

.amenity-modal-btn-close {
    display: block;
    width: 100%;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #D4AF37;
    font-weight: 700;
    font-size: 16px;
    padding: 18px;
    border-radius: 16px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    font-family: inherit;
}

.amenity-modal-btn-close:hover {
    background: #D4AF37;
    color: #000;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.45);
}

/* ==========================================================================
   ULTRA-PREMIUM DESIGN POLISH & AMENITIES RE-STYLING
   ========================================================================== */

/* 1. КРАСИВОЕ ОФОРМЛЕНИЕ И КОНТРАСТ БЛОКА ПРЕИМУЩЕСТВ */
.hero-subheading {
    color: #D4AF37 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    margin-bottom: 24px !important;
}

.hero-features-dark {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    margin-bottom: 35px !important;
    width: 100%;
}

@media (max-width: 576px) {
    .hero-features-dark {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

.hero-feature-dark {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    padding: 16px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.hero-feature-dark:hover {
    background: rgba(212, 175, 55, 0.06) !important;
    border-color: rgba(212, 175, 55, 0.25) !important;
    transform: translateY(-2px);
}

.hero-feature-icon-dark {
    font-size: 26px !important; /* Увеличенные значки */
    display: inline-block !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) !important;
}

/* 2. ВИДИМОСТЬ КНОПКИ "ПОСМОТРЕТЬ НОМЕРА" НА ТЕМНОМ ФОНЕ */
.btn-outline-dark {
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    background: transparent !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-outline-dark:hover {
    border-color: #D4AF37 !important;
    color: #120e0b !important;
    background: #D4AF37 !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.45) !important;
}

/* 3. ИНДИВИДУАЛЬНЫЕ НЕОНОВЫЕ ФОНЫ ПОПАПОВ УДОБСТВ С МЯГКИМ СВЕЧЕНИЕМ */
/* Кухня (оранжевый) */
.amenity-modal-container.modal-theme-kitchen {
    background: linear-gradient(135deg, #1f140f 0%, #120e0b 100%) !important;
    border-color: rgba(230, 126, 34, 0.35) !important;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(230, 126, 34, 0.12) !important;
}
.amenity-modal-container.modal-theme-kitchen .amenity-modal-btn-close {
    color: #e67e22 !important;
    border-color: rgba(230, 126, 34, 0.35) !important;
    background: rgba(230, 126, 34, 0.08) !important;
}
.amenity-modal-container.modal-theme-kitchen .amenity-modal-btn-close:hover {
    background: #e67e22 !important;
    color: #000 !important;
}
.amenity-modal-container.modal-theme-kitchen .amenity-modal-close-x:hover { color: #e67e22 !important; }

/* Чай и кофе (золотой) */
.amenity-modal-container.modal-theme-tea-coffee {
    background: linear-gradient(135deg, #221d11 0%, #120e0b 100%) !important;
    border-color: rgba(212, 175, 55, 0.35) !important;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.12) !important;
}

/* Холодильник (синий) */
.amenity-modal-container.modal-theme-fridge {
    background: linear-gradient(135deg, #101924 0%, #120e0b 100%) !important;
    border-color: rgba(52, 152, 219, 0.35) !important;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(52, 152, 219, 0.12) !important;
}
.amenity-modal-container.modal-theme-fridge .amenity-modal-btn-close {
    color: #3498db !important;
    border-color: rgba(52, 152, 219, 0.35) !important;
    background: rgba(52, 152, 219, 0.08) !important;
}
.amenity-modal-container.modal-theme-fridge .amenity-modal-btn-close:hover {
    background: #3498db !important;
    color: #000 !important;
}
.amenity-modal-container.modal-theme-fridge .amenity-modal-close-x:hover { color: #3498db !important; }

/* ТВ (фиолетовый) */
.amenity-modal-container.modal-theme-tv {
    background: linear-gradient(135deg, #1a1024 0%, #120e0b 100%) !important;
    border-color: rgba(155, 89, 182, 0.35) !important;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(155, 89, 182, 0.12) !important;
}
.amenity-modal-container.modal-theme-tv .amenity-modal-btn-close {
    color: #9b59b6 !important;
    border-color: rgba(155, 89, 182, 0.35) !important;
    background: rgba(155, 89, 182, 0.08) !important;
}
.amenity-modal-container.modal-theme-tv .amenity-modal-btn-close:hover {
    background: #9b59b6 !important;
    color: #000 !important;
}
.amenity-modal-container.modal-theme-tv .amenity-modal-close-x:hover { color: #9b59b6 !important; }

/* Wi-Fi (бирюзовый) */
.amenity-modal-container.modal-theme-wifi {
    background: linear-gradient(135deg, #0e201b 0%, #120e0b 100%) !important;
    border-color: rgba(26, 188, 156, 0.35) !important;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(26, 188, 156, 0.12) !important;
}
.amenity-modal-container.modal-theme-wifi .amenity-modal-btn-close {
    color: #1abc9c !important;
    border-color: rgba(26, 188, 156, 0.35) !important;
    background: rgba(26, 188, 156, 0.08) !important;
}
.amenity-modal-container.modal-theme-wifi .amenity-modal-btn-close:hover {
    background: #1abc9c !important;
    color: #000 !important;
}
.amenity-modal-container.modal-theme-wifi .amenity-modal-close-x:hover { color: #1abc9c !important; }

/* Парковка (изумрудный) */
.amenity-modal-container.modal-theme-parking {
    background: linear-gradient(135deg, #0e2012 0%, #120e0b 100%) !important;
    border-color: rgba(39, 174, 96, 0.35) !important;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(39, 174, 96, 0.12) !important;
}
.amenity-modal-container.modal-theme-parking .amenity-modal-btn-close {
    color: #27ae60 !important;
    border-color: rgba(39, 174, 96, 0.35) !important;
    background: rgba(39, 174, 96, 0.08) !important;
}
.amenity-modal-container.modal-theme-parking .amenity-modal-btn-close:hover {
    background: #27ae60 !important;
    color: #000 !important;
}
.amenity-modal-container.modal-theme-parking .amenity-modal-close-x:hover { color: #27ae60 !important; }

/* 4. ВЫТЯНУТЫЕ ГОРИЗОНТАЛЬНЫЕ ПРЯМОУГОЛЬНИКИ ДЛЯ КАРТОЧЕК НА ПК (Сетка 3х2) */
@media (min-width: 1024px) {
    .desktop-amenities-grid {
        grid-template-columns: repeat(3, 1fr) !important; /* Перестраиваем в сетку 3х2 */
        gap: 24px !important;
    }

    .amenity-card-btn {
        flex-direction: row !important; /* Выстраиваем контент горизонтально */
        justify-content: flex-start !important;
        gap: 20px !important;
        padding: 24px 30px !important; /* Просторные боковые отступы */
        min-height: 105px !important; /* Уменьшаем высоту для эффекта прямоугольника */
        text-align: left !important;
    }

    .amenity-card-icon {
        font-size: 38px !important; /* Сбалансированный размер иконки слева */
        flex-shrink: 0;
    }

    .amenity-card-title {
        font-size: 17px !important; /* Крупный выразительный текст */
    }
}

/* 5. ПРИГЛУШЕННЫЙ ТЕПЛЫЙ МОЛОЧНЫЙ ФОН ДЛЯ МОБИЛЬНОГО БУРГЕР-МЕНЮ */
.mobile-menu {
    background-color: #f5f0eb !important; /* Нежный молочно-кремовый тон */
    color: #1c1511 !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15) !important;
}

/* Текст ссылок бургер-меню на светлом фоне */
.mobile-menu a {
    color: #1c1511 !important; /* Глубокий кофейный контрастный цвет */
    font-weight: 600 !important;
    border-bottom: 1px solid rgba(28, 21, 17, 0.08) !important; /* Деликатные разделители */
    transition: all 0.3s ease !important;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #D4AF37 !important; /* Избирательный благородный золотой */
}

/* Кнопка закрытия бургер-меню */
.mobile-menu-close {
    color: #1c1511 !important;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.mobile-menu-close:hover {
    opacity: 1;
    color: #D4AF37 !important;
}

/* Контактная информация в меню */
.mobile-menu-phone {
    color: #1c1511 !important;
    font-weight: 700 !important;
}

.mobile-menu-hint {
    color: rgba(28, 21, 17, 0.5) !important;
}

/* ==========================================================================
   PREMIUM DESIGN & SYNC MASTER EDIT (NO-CONFLICT VERSION)
   ========================================================================== */

/* 🍫 ПРИНУДИТЕЛЬНЫЙ ПРЕМИАЛЬНЫЙ ТЕМНО-КОРИЧНЕВЫЙ ФОН ДЛЯ ВСЕХ БРАУЗЕРОВ И УСТРОЙСТВ */
html, body {
    background-color: #120e0b !important;
    background-image: none !important;
    color: #ffffff !important;
}

/* Все секции на главной принудительно переводятся в шоколадную гамму */
.hero-content-section, 
.about, 
.rooms-section, 
.cta-banner, 
.reviews-section, 
.footer {
    background-color: #1c1511 !important;
    color: #ffffff !important;
}

.hero-title-dark, 
.section-heading h2, 
.cta-banner h2, 
.footer h4,
.room-card h3 {
    color: #ffffff !important;
}

/* 🔒 Освобождение горизонтальных свайпов номеров */
#roomsTrack {
    touch-action: auto !important;
    -webkit-overflow-scrolling: touch !important;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

/* Премиальная карточка номера */
.room-card {
    background: #2a211c !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    border-radius: 24px !important;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}
.room-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37 !important;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
}

/* 💻 ВЫТЯНУТЫЕ ГОРИЗОНТАЛЬНЫЕ ПРЯМОУГОЛЬНИКИ ДЛЯ КАРТОЧЕК НА ПК (Сетка 3х2) */
@media (min-width: 1024px) {
    .desktop-amenities-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px !important;
    }

    .amenity-card-btn {
        flex-direction: row !important;
        justify-content: flex-start !important;
        gap: 20px !important;
        padding: 24px 30px !important;
        min-height: 105px !important;
        text-align: left !important;
        background: rgba(42, 33, 28, 0.8) !important;
        border-radius: 20px !important;
    }

    .amenity-card-icon {
        font-size: 38px !important;
        flex-shrink: 0;
    }

    .amenity-card-title {
        font-size: 17px !important;
    }
}

/* 💬 АВАТАРЫ ОТЗЫВОВ С ЗОЛОТОЙ КАЕМКОЙ */
.review-card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.review-card-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D4AF37;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.review-card-avatar-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #D4AF37;
    color: #120e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

/* 🏠 СТИЛИ РОСКОШНОГО МОДАЛЬНОГО ОКНА НОМЕРА */
.room-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 9, 8, 0.92);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.room-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.room-modal-container {
    background: #1c1511;
    border: 2px solid #D4AF37;
    width: 100%;
    max-width: 780px;
    max-height: 90vh;
    border-radius: 32px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(212, 175, 55, 0.15);
    position: relative;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.room-modal-overlay.open .room-modal-container {
    transform: translateY(0) scale(1);
}

.room-modal-close-x {
    position: absolute;
    top: 24px;
    right: 28px;
    background: transparent;
    border: none;
    font-size: 26px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.2s;
    padding: 8px;
    z-index: 10;
}
.room-modal-close-x:hover { color: #D4AF37; }

.modal-room-title {
    font-family: inherit;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.room-modal-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.room-meta-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.room-meta-price {
    font-size: 20px;
    font-weight: 700;
    color: #D4AF37;
}

.room-modal-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.room-modal-features-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #D4AF37;
    font-weight: 700;
    margin-top: 10px;
}

.room-modal-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.room-feature-tag {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
}

.room-modal-btn-book {
    display: block;
    width: 100%;
    background: #D4AF37;
    color: #120e0b;
    font-weight: 700;
    font-size: 16px;
    padding: 18px;
    border-radius: 16px;
    cursor: pointer;
    text-align: center;
    border: none;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
    transition: all 0.3s ease;
}
.room-modal-btn-book:hover {
    background: #fff;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

@media (max-width: 576px) {
    .room-modal-container {
        padding: 24px;
        gap: 16px;
    }
    .modal-room-title { font-size: 24px; }
}

/* ==========================================================================
   ROBUST INTERACTIVE ROOM SLIDER & FULLSCREEN LIGHTBOX
   ========================================================================== */

.room-modal-image-wrapper {
    position: relative;
    width: 100%;
    height: 340px !important;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: #110d0a;
}

.room-slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-slider-slide {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    user-select: none;
    -webkit-user-drag: none;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(28, 21, 17, 0.8) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #D4AF37 !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    outline: none;
}

.room-modal-image-wrapper:hover .slider-arrow.visible {
    opacity: 1;
    pointer-events: auto;
}

.slider-arrow:hover {
    background: #D4AF37 !important;
    color: #120e0b !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.slider-arrow.arrow-left { left: 16px; }
.slider-arrow.arrow-right { right: 16px; }

.slider-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(18, 14, 11, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 5;
    pointer-events: none;
}

.slider-zoom-hint {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(18, 14, 11, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: rgba(255, 255, 255, 0.85);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: all 0.3s ease;
}

.room-modal-image-wrapper:hover .slider-zoom-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* 💎 ПОЛНОЭКРАННЫЙ LIGHTBOX */
.room-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 7, 0.94);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-lightbox-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-container {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 30px 70px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-lightbox-overlay.open .lightbox-container {
    transform: scale(1);
}

.lightbox-container img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close-x {
    position: absolute;
    top: 24px;
    right: 28px;
    background: rgba(28, 21, 17, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    outline: none;
}
.lightbox-close-x:hover {
    background: #D4AF37;
    color: #120e0b;
    transform: scale(1.1);
}

@media (max-width: 576px) {
    .room-modal-image-wrapper {
        height: 200px !important;
    }
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    .slider-arrow.arrow-left { left: 8px; }
    .slider-arrow.arrow-right { right: 8px; }
    .lightbox-close-x {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Сетка карточек внутри модалки номера */
.room-modal-desc-container {
    width: 100%;
    margin-top: 15px;
}

.room-modal-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
}

@media (min-width: 576px) {
    .room-modal-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Базовые стили карточки удобств */
.room-detail-info-card {
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.room-detail-info-card:hover {
    transform: translateY(-2px);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 8px;
}

.info-card-icon {
    font-size: 22px;
}

.info-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.info-card-text {
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 300 !important;
    margin: 0;
}

/* Тематическое оформление карточек */
.room-detail-info-card.theme-gold-border {
    background: rgba(43, 33, 27, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.05);
}
.room-detail-info-card.theme-gold-border .info-card-title {
    color: #D4AF37;
}

.room-detail-info-card.theme-coffee-bg {
    background: rgba(84, 61, 51, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.room-detail-info-card.theme-dark-bg {
    background: rgba(20, 15, 12, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.room-detail-info-card.theme-green-border {
    background: rgba(31, 41, 34, 0.35);
    border: 1px solid rgba(39, 174, 96, 0.25);
    box-shadow: inset 0 0 15px rgba(39, 174, 96, 0.05);
}
.room-detail-info-card.theme-green-border .info-card-title {
    color: #27ae60;
}

/* ==========================================================================
   DESKTOP UPSCALE: Room Modal (≥1024px) - INCREASED BY +30% FOR LUXURY SCALE
   ========================================================================== */
@media (min-width: 1024px) {
    .room-modal-container {
        max-width: 1350px !important;
        padding: 60px 80px !important;
        gap: 40px !important;
    }

    .room-modal-image-wrapper {
        height: 620px !important;
        border-radius: 36px !important;
    }

    .modal-room-title {
        font-size: 48px !important;
        letter-spacing: -0.01em;
    }

    .room-meta-badge {
        padding: 10px 24px !important;
        font-size: 20px !important;
        border-radius: 18px !important;
    }

    .room-meta-price {
        font-size: 32px !important;
    }

    .room-modal-cards-grid {
        gap: 24px !important;
    }

    .room-detail-info-card {
        padding: 36px !important;
        border-radius: 24px !important;
        gap: 16px !important;
    }

    .info-card-header {
        padding-bottom: 16px !important;
        gap: 18px !important;
    }

    .info-card-icon {
        font-size: 36px !important;
    }

    .info-card-title {
        font-size: 22px !important;
    }

    .info-card-text {
        font-size: 18px !important;
        line-height: 1.8 !important;
    }

    .room-modal-btn-book {
        padding: 24px !important;
        font-size: 22px !important;
        border-radius: 20px !important;
    }
}

/* ===== Блокируем навязчивые всплывающие авто-виджеты и помощники TravelLine ("Узнать цену") ===== */
/* ВАЖНО: блокируем только всплывающие/плавающие элементы, НЕ трогая iframe форм бронирования */
.tl-assistant,
.tl-widget-button,
.tl-smart-widget,
#tl-assistant-container,
div[id^="tl-assistant-"],
div[class^="tl-assistant-"],
div[id*="tl-widget"],
div[class*="tl-widget"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
