:root {
  --accent: #8d6722;
  --accent-dark: #6e5019;
  --accent-soft: rgba(141, 103, 34, 0.12);
  --bg: #f7f4ef;
  --bg-elevated: #ffffff;
  --text: #1c1915;
  --text-muted: #6b645a;
  --border: rgba(28, 25, 21, 0.08);
  --shadow: 0 10px 30px rgba(28, 25, 21, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 60px;
  --tabbar-h: calc(64px + env(safe-area-inset-bottom));
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-quote: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  touch-action: manipulation;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(141, 103, 34, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(141, 103, 34, 0.08), transparent 50%),
    var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--tabbar-h);
  touch-action: manipulation;
  overscroll-behavior-x: none;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  font-size: 16px;
  touch-action: manipulation;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 40px 0;
}

.section-title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.section-lead {
  margin: 0 0 24px;
  color: var(--text-muted);
  max-width: 52ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

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

.btn-accent:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border-color: rgba(141, 103, 34, 0.35);
  color: var(--accent);
}

.btn-sm {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  background: rgba(247, 244, 239, 0.82);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.header-nav {
  display: none;
  gap: 22px;
  font-weight: 500;
  color: var(--text-muted);
}

.header-nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: none;
  font-weight: 600;
  font-size: 0.92rem;
}

/* Hero */
.hero {
  position: relative;
  height: min(78vh, 720px);
  min-height: 420px;
  overflow: hidden;
  background: #2a241c;
  touch-action: pan-y;
  user-select: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(20, 16, 10, 0.35) 0%, rgba(20, 16, 10, 0.15) 40%, rgba(20, 16, 10, 0.55) 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0 0 36px;
  color: #fff;
  pointer-events: none;
}

.hero-content .container {
  pointer-events: auto;
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 0.95;
}

.hero-sub {
  margin: 10px 0 18px;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
  width: 22px;
  border-radius: 999px;
}

/* Intro */
.intro-block {
  padding: 36px 0 12px;
}

.intro-card {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
  padding: 8px 4px 4px;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.intro-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--accent);
}

.intro-ornament::before,
.intro-ornament::after {
  content: "";
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.intro-ornament::after {
  background: linear-gradient(90deg, var(--accent), transparent);
}

.intro-ornament-mark {
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
  opacity: 0.85;
}

.intro-quote {
  margin: 0;
  font-family: var(--font-quote);
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: #3d372f;
}

.intro-brand {
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--accent);
  white-space: nowrap;
}

.intro-seo {
  margin: 18px auto 0;
  max-width: 46rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-muted);
  font-style: normal;
}

@media (min-width: 768px) {
  .intro-block {
    padding: 56px 0 28px;
  }

  .intro-card {
    max-width: 52rem;
    padding: 12px 24px;
  }

  .intro-ornament {
    margin-bottom: 26px;
    gap: 18px;
  }

  .intro-ornament::before,
  .intro-ornament::after {
    width: 88px;
  }

  .intro-quote {
    font-size: clamp(1.65rem, 2.1vw, 2.05rem);
    line-height: 1.48;
    letter-spacing: 0.015em;
  }
}

/* Rooms */
.rooms-list {
  display: grid;
  gap: 18px;
}

.room-card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.room-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #e8e2d8;
}

.room-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-card-promo {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  padding: 5px 8px;
  background: #8d6722;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.room-card-body {
  padding: 12px 14px 14px;
}

.room-card-title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.room-card-subtitle {
  margin: -2px 0 6px;
  color: var(--accent, #8d6722);
  font-size: 0.95rem;
  font-weight: 600;
}

.room-card-meta {
  margin: 0 0 4px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.room-card-price {
  margin: 0 0 14px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.room-card-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.room-card-actions {
  display: grid;
  gap: 8px;
}

/* Entertainments */
.entertainments-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.entertainment-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}

.entertainment-text h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.entertainment-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.entertainment-price {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.05rem;
  text-align: right;
  white-space: nowrap;
}

.entertainment-price.is-free {
  color: #2f6b3a;
}

.entertainment-price.is-mute {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
}

@media (min-width: 768px) {
  .entertainments-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .entertainment-item {
    padding: 22px 20px;
  }

  .entertainment-text h3 {
    font-size: 1.4rem;
  }
}

/* Map + gallery */
.map-gallery {
  display: grid;
  gap: 18px;
}

.map-frame {
  border: 0;
  width: 100%;
  height: 280px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #ddd;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.gallery-grid a {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.04);
}

.gallery-grid a:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

/* Reviews — Yandex style */
.yandex-reviews {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.yandex-reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 1px solid #eee;
}

.yandex-reviews-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yandex-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.yandex-reviews-label {
  margin: 0;
  font-size: 0.85rem;
  color: #999;
  font-weight: 500;
}

.yandex-reviews-place {
  margin: 2px 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
}

.yandex-reviews-score {
  display: flex;
  align-items: center;
  gap: 10px;
}

.yandex-score-value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
}

.yandex-score-meta {
  display: grid;
  gap: 2px;
}

.yandex-score-count {
  font-size: 0.85rem;
  color: #999;
}

.yandex-stars {
  color: #fc0;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.reviews-list {
  display: grid;
  gap: 10px;
}

.review-card {
  background: #f9f9f9;
  border: 0;
  border-radius: 14px;
  padding: 14px;
  box-shadow: none;
}

.review-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.review-avatar.tone-1 { background: #fc3f1d; }
.review-avatar.tone-2 { background: #07f; }
.review-avatar.tone-3 { background: #07a84c; }
.review-avatar.tone-4 { background: #9b59b6; }
.review-avatar.tone-5 { background: #e67e22; }

.review-head-text {
  flex: 1;
  min-width: 0;
}

.review-name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.review-name {
  margin: 0;
  font-weight: 700;
  color: #000;
  font-size: 0.98rem;
}

.review-date {
  color: #999;
  font-size: 0.8rem;
  white-space: nowrap;
}

.review-meta {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.stars {
  display: inline-flex;
  gap: 1px;
  color: #fc0;
  letter-spacing: 1px;
}

.review-text {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .yandex-reviews {
    padding: 22px;
  }
}

.reviews-all-btn {
  margin-top: 14px;
}

.reviews-sheet {
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}

.reviews-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.reviews-sheet-head .sheet-title {
  margin: 0;
}

.reviews-sheet-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f0ebe3;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.reviews-sheet-list {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: grid;
  gap: 10px;
  padding-bottom: 8px;
  margin-top: 4px;
  max-height: calc(92vh - 140px);
}

/* Detail pages */
.page-hero {
  padding: 24px 0 8px;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
}

.page-hero-sub {
  margin: -8px 0 16px;
  color: var(--accent, #8d6722);
  font-size: 1.05rem;
  font-weight: 600;
}

.room-offer {
  display: grid;
  gap: 12px;
  margin: 16px 0 20px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.room-offer-guests,
.room-offer-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.room-offer-label {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.room-offer-value {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.room-offer-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.room-offer-new {
  color: var(--accent);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.room-offer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #c62828;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.room-offer-note {
  margin: 0;
  padding-top: 4px;
  border-top: 1px dashed var(--border);
  color: #c62828;
  font-weight: 700;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .room-offer {
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
    padding: 18px 20px;
  }

  .room-offer-note {
    grid-column: 1 / -1;
  }
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.detail-gallery a {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  content-visibility: auto;
  contain-intrinsic-size: 240px;
}

.detail-gallery a:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

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

.detail-video {
  width: 100%;
  border-radius: var(--radius);
  margin: 16px 0 24px;
  background: #000;
  max-height: 420px;
}

.detail-text {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.detail-text p {
  margin: 0 0 14px;
}

.detail-messengers {
  display: grid;
  gap: 10px;
  margin: 20px 0 8px;
}

@media (min-width: 768px) {
  .detail-messengers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.alcohol-note {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(141, 103, 34, 0.1);
  border-left: 3px solid var(--accent);
  font-weight: 600;
  color: var(--accent-dark);
}

.inline-book {
  margin: 28px 0;
  padding: 20px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.inline-book h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

/* Footer */
.site-footer {
  padding: 36px 0 28px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  gap: 20px;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-text {
  margin: 0 0 6px;
  color: var(--text-muted);
}

.footer-messengers {
  display: grid;
  gap: 10px;
}

.footer-copy {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Tab bar iOS-like */
.tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: var(--tabbar-h);
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--border);
}

.tabbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.tabbar-item.is-active,
.tabbar-item:active {
  color: var(--accent);
}

.tabbar-icon {
  display: grid;
  place-items: center;
}

/* Bottom sheet */
.sheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(20, 16, 10, 0.45);
}

.sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: #fff;
  border-radius: 22px 22px 0 0;
  padding: 10px 20px calc(24px + env(safe-area-inset-bottom));
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: 90vh;
  overflow: auto;
}

.sheet.is-open {
  transform: translateY(0);
}

.sheet-handle {
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: #d7d0c5;
  margin: 4px auto 14px;
}

.sheet-title {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.sheet-room {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.field input {
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 0 14px;
  background: #faf8f5;
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
}

.field input:focus {
  outline: 2px solid rgba(141, 103, 34, 0.35);
  border-color: var(--accent);
}

.booking-success {
  text-align: center;
  padding: 12px 0 4px;
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 700;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 7, 5, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden],
.sheet[hidden],
.sheet-overlay[hidden] {
  display: none !important;
}

.lightbox img {
  max-width: min(100vw - 24px, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
}

.lightbox-close {
  top: calc(12px + env(safe-area-inset-top));
  right: 14px;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

.lightbox-counter {
  position: absolute;
  bottom: calc(16px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

body.sheet-open,
body.lightbox-open {
  overflow: hidden;
}

/* Desktop */
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .tabbar {
    display: none;
  }

  .header-nav,
  .header-phone {
    display: flex;
  }

  .rooms-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .room-card-body {
    padding: 16px 16px 18px;
  }

  .room-card-promo {
    top: 10px;
    right: 10px;
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  .map-gallery {
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
  }

  .map-frame {
    height: 100%;
    min-height: 360px;
  }

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

  .gallery-grid a:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
    height: 100%;
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
  }

  .sheet {
    left: 50%;
    right: auto;
    bottom: auto;
    top: 50%;
    width: min(440px, calc(100% - 32px));
    border-radius: 22px;
    transform: translate(-50%, -40%) scale(0.96);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .sheet.is-open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  .sheet-handle {
    display: none;
  }
}

@media (min-width: 1024px) {
  .reviews-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
