:root {
  --accent: #8c6a2f;
  --accent2: #6b5024;
  --text: #1c1c1c;
  --text2: #555;
  --border: #e5e5e5;
  --bg: #ffffff;
  --bg2: #f7f5f2;
}

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

/* Фикс для браузерного переводчика — font теги не ломают регистр */
.nav-links a font { text-transform: inherit; color: inherit; }

/* Скрываем Bnovo sticky-бар который инжектируется в body */
body > div[id*="bn_widget"],
body > div[id*="bnovo"],
body > div[class*="bnovo"],
body > div[class*="bn-widget"],
body > div[style*="position: fixed"],
body > div[style*="position:fixed"] { display: none !important; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-weight: 400;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #f0ede8; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  display: flex; align-items: center; justify-content: center;
  height: 68px; overflow: hidden;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
}
#mainNav.scrolled {
  background: #fff;
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9);
  text-decoration: none; transition: color 0.4s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }
#mainNav.scrolled .nav-links a { color: var(--text); }
#mainNav.scrolled .nav-links a:hover { color: var(--accent); }

.nav-phone {
  position: absolute; right: 5%;
  font-size: 14px; font-weight: 700; color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,0.15); padding: 8px 16px; border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.4s;
  white-space: nowrap;
}
.nav-phone:hover { background: rgba(255,255,255,0.25); }
#mainNav.scrolled .nav-phone {
  color: var(--text); background: var(--bg2);
  border-color: var(--border);
}
#mainNav.scrolled .nav-phone:hover { color: var(--accent); border-color: var(--accent); }

.burger {
  display: none;
  position: absolute; right: 5%;
  flex-direction: column; gap: 5px; cursor: pointer;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: #fff; transition: background 0.4s;
}
#mainNav.scrolled .burger span { background: var(--text); }

/* ══════════════════════════════════
   MOBILE NAV PILL (только мобильные)
══════════════════════════════════ */
.mobile-nav-links {
  display: none;
  position: fixed; top: 12px; left: 16px; right: 16px; z-index: 200;
  height: 48px; border-radius: 100px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  justify-content: center; overflow: hidden;
}
.mobile-nav-links a {
  flex: 1; text-align: center; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.9); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.3px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.mobile-nav-links a:last-child { border-right: none; }

/* ══════════════════════════════════
   MOBILE MENU (overlay)
══════════════════════════════════ */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: #fff; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 22px; font-weight: 500; color: var(--text);
  text-decoration: none; letter-spacing: 1px;
}
.mobile-menu a:hover { color: var(--accent); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative; height: 70vh; min-height: 480px; max-height: 780px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden; margin-top: 0;
}

/* Slider */
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0.55) 100%);
}

/* Slider dots */
.hero-dots {
  display: none;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active { background: #fff; transform: scale(1.3); }

/* Bnovo horizontal bar */
.bnovo-bar {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.hero-center {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 6%;
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.hero-eyebrow {
  color: rgba(255,255,255,0.8);
  font-size: 13px; letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0; animation: fadeUp 0.9s 0.3s ease forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 400; color: #fff;
  line-height: 1; letter-spacing: -1px;
  text-transform: uppercase;
  opacity: 0; animation: fadeUp 1s 0.5s ease forwards;
}
.hero-title em { font-style: normal; color: #fff; }


/* Features row at bottom of hero */
.hero-features {
  position: relative; z-index: 2;
  display: flex; justify-content: center; gap: 48px;
  padding: 20px 6% 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-feat {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.85); font-size: 12px; letter-spacing: 0.3px;
  text-align: center;
}
.hero-feat svg {
  width: 24px; height: 24px;
  stroke: rgba(255,255,255,0.85); fill: none; stroke-width: 1.5;
}

/* ── Booking bar ── */
.booking-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 6%;
  display: flex; justify-content: center;
}
.booking-form {
  display: flex; align-items: center;
  gap: 0; width: 100%; max-width: 820px;
  border: 1px solid var(--border); border-radius: 4px;
  overflow: visible; background: #fff;
}
.bf-field {
  flex: 1; padding: 10px 20px;
  display: flex; flex-direction: column; gap: 4px;
  cursor: pointer;
}
.bf-field label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--text2); pointer-events: none;
}
.bf-field input[type="date"] {
  border: none; outline: none; background: transparent;
  font-size: 14px; font-weight: 500; color: var(--text);
  font-family: inherit; cursor: pointer; width: 100%;
}
.bf-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.4; cursor: pointer;
}
.bf-sep {
  width: 1px; height: 36px; background: var(--border); flex-shrink: 0;
}
.bf-guests { flex: 0 0 auto; min-width: 140px; }
.bf-counter {
  display: flex; align-items: center; gap: 12px;
}
.bf-counter button {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--border); background: transparent;
  font-size: 16px; line-height: 1; cursor: pointer; color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.bf-counter button:hover { border-color: var(--accent); color: var(--accent); }
.bf-counter span { font-size: 14px; font-weight: 500; min-width: 16px; text-align: center; }
.bf-btn {
  background: var(--accent); color: #fff;
  border: none; padding: 0 32px;
  height: 100%; min-height: 60px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  border-radius: 0 3px 3px 0;
  transition: background 0.2s;
}
.bf-btn:hover { background: #7a5a28; }

.bn-desktop { display: block; }

/* ══════════════════════════════════
   FEATURES BAR
══════════════════════════════════ */
.features-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0;
}
.feature-item {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 36px;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-item svg {
  width: 22px; height: 22px;
  stroke: var(--accent); fill: none; stroke-width: 1.5;
  flex-shrink: 0;
}
.feature-item strong { font-size: 13px; font-weight: 600; color: var(--text); }
.feature-item span { font-size: 12px; color: var(--text2); display: block; }

/* ══════════════════════════════════
   SECTIONS COMMON
══════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 400; line-height: 1.1; color: var(--text);
}
.section-title em { font-style: italic; color: var(--accent); }
.section-divider {
  width: 48px; height: 2px; background: var(--accent);
  margin: 20px 0 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about {
  padding: 100px 6%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
  max-width: 1300px; margin: 0 auto;
}
.about-img {
  position: relative; border-radius: 4px; overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: #fff; padding: 12px 20px;
  font-size: 13px; font-weight: 600; color: var(--text);
  border-radius: 2px;
}
.about-text .section-title { margin-bottom: 24px; }
.about-text p {
  font-size: 15px; line-height: 1.8; color: var(--text2);
  margin-bottom: 16px;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: 28px;
}
.about-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text);
}
.about-feat::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

/* ══════════════════════════════════
   AMENITIES
══════════════════════════════════ */
.amenities {
  background: var(--bg2);
  padding: 80px 6%;
}
.amenities-inner { max-width: 1300px; margin: 0 auto; }
.amenities-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  margin-top: 48px;
}

.amenity-card {
  background: #fff;
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
}
.amenity-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
  z-index: 2;
}
.amenity-card:hover::before { height: 100%; }

/* Amenity slider */
.amenity-slider {
  position: relative; overflow: hidden;
  height: 240px; background: var(--bg2);
}
.amenity-slides {
  display: flex; height: 100%;
  transition: transform 0.4s ease;
}
.amenity-slides img {
  min-width: 100%; height: 100%; object-fit: cover; flex-shrink: 0;
}
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.35); color: #fff; border: none;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 14px; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.amenity-slider:hover .slider-btn { opacity: 1; }
.slider-prev { left: 10px; }
.slider-next { right: 10px; }
.slider-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 2;
}
.slider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.2s;
}
.slider-dot.active { background: #fff; }

.amenity-info { padding: 28px 28px 32px; }
.amenity-info h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.amenity-info p { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ══════════════════════════════════
   ROOMS
══════════════════════════════════ */
.rooms { padding: 100px 6%; }
.rooms-inner { max-width: 1300px; margin: 0 auto; }
.section-header { margin-bottom: 56px; }

.rooms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.room-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.room-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

/* slider */
.room-slider { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.room-slides { display: flex; height: 100%; transition: transform 0.4s ease; }
.room-slides img { min-width: 100%; height: 100%; object-fit: cover; }
.room-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.85); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: 14px; color: var(--text);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.room-slider:hover .room-slider-btn { opacity: 1; }
.room-slider-prev { left: 10px; }
.room-slider-next { right: 10px; }
.room-slider-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px;
}
.room-slider-dots .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer; transition: 0.2s;
}
.room-slider-dots .dot.active { background: #fff; }
.room-capacity {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.55); color: #fff;
  font-size: 12px; padding: 4px 10px; border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
}
.room-capacity svg { width: 12px; height: 12px; fill: #fff; stroke: none; }

.room-info { padding: 24px; }
.room-num { font-size: 11px; color: var(--accent); letter-spacing: 2px; font-weight: 500; margin-bottom: 6px; }
.room-name { font-size: 16px; font-weight: 600; margin-bottom: 12px; line-height: 1.3; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.room-amenity {
  font-size: 11px; padding: 4px 10px;
  border: 1px solid var(--border); border-radius: 20px;
  color: var(--text2);
}
.room-footer { padding-top: 16px; border-top: 1px solid var(--border); }
.room-actions { width: 100%; }
.btn-book {
  display: block; width: 100%; text-align: center;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  padding: 11px 18px; border-radius: 3px;
  background: var(--accent); color: #fff;
  text-decoration: none; transition: background 0.2s;
}
.btn-book:hover { background: var(--accent2); }

/* ══════════════════════════════════
   GALLERY
══════════════════════════════════ */
.gallery { padding: 100px 6%; background: var(--bg2); }
.gallery-inner { max-width: 1300px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 48px;
}
.gallery-item { overflow: hidden; border-radius: 3px; cursor: pointer; position: relative; aspect-ratio: 4/3; }
.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/7; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.25); }
.gallery-zoom {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; color: var(--text);
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 3px; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 36px; color: #fff; cursor: pointer; line-height: 1;
}

/* ══════════════════════════════════
   CONTACTS
══════════════════════════════════ */
.contacts { padding: 100px 6%; }
.contacts-inner { max-width: 1300px; margin: 0 auto; }
.contacts-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-top: 56px; align-items: start;
}
.contact-block { margin-bottom: 32px; }
.contact-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.contact-value {
  display: block; font-size: 18px; font-weight: 500;
  color: var(--text); text-decoration: none; margin-bottom: 4px;
  transition: color 0.2s;
}
.contact-value:hover { color: var(--accent); }
.contact-divider { height: 1px; background: var(--border); margin: 24px 0; }

.wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 12px 24px; border-radius: 3px;
  text-decoration: none; transition: background 0.2s;
  margin-top: 8px;
}
.wa-btn:hover { background: #1ead54; }
.wa-btn svg { width: 20px; height: 20px; }

.map-wrap {
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

.extra-info { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.info-row { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text2); }
.info-row svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 1px; }

/* ══════════════════════════════════
   REQUISITES
══════════════════════════════════ */
.requisites {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 28px 6%; font-size: 12px; color: var(--text2);
}
.requisites-inner { max-width: 1300px; margin: 0 auto; }
.requisites p { margin-bottom: 6px; line-height: 1.7; }
.requisites a { color: var(--text2); text-decoration: underline; }
.req-docs { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }
.req-docs a { text-decoration: underline; color: var(--text2); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: var(--text);
  padding: 32px 6%;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 500;
  color: #fff; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

/* ══════════════════════════════════
   MOBILE BOOKING BTN
══════════════════════════════════ */
.mobile-book-btn {
  display: none;
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 90;
  background: var(--accent); color: #fff;
  font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
  padding: 14px 32px; border-radius: 3px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* ══════════════════════════════════
   SCROLL HINT
══════════════════════════════════ */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollAnim 1.5s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  #mainNav { display: none; }
  .mobile-nav-links { display: flex; }
  .booking-bar { display: none; }
  .features-bar { flex-wrap: wrap; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); width: 50%; }
  .about { grid-template-columns: 1fr; gap: 40px; padding: 60px 5%; }
  .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-item:nth-child(1) { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .scroll-hint { display: none; }
  .hero-bottom { justify-content: center; }
  .bn-desktop { display: none; }
  .mobile-book-btn { display: block; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 600px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .feature-item { width: 100%; }
  .hero-top { padding: 40px 5% 0; }
  .hero-bottom { padding: 0 5% 32px; }
}
