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

:root {
  --bg:        #0D0D0D;
  --surface:   #1A1A1A;
  --accent:    #F2C11A;
  --accent2:   #C9A84C;
  --headline:  #F5F0E8;
  --body:      #B0A898;
  --muted:     #4A4540;
  --divider:   #2A2520;
  --font-d:    'Noto Serif', Georgia, serif;
  --font-b:    'Manrope', Inter, sans-serif;
  --nav-glass:        rgba(13,13,13,0.92);
  --nav-drawer-glass: rgba(13,13,13,0.98);
  --caption-grad:     linear-gradient(to top, rgba(13,13,13,0.88) 0%, transparent 100%);
}

@media (prefers-color-scheme: light) {
  :root {
    --bg:        #FAF7F2;
    --surface:   #EEE8DF;
    --accent:    #C9900A;
    --accent2:   #9A700D;
    --headline:  #18120A;
    --body:      #3D3025;
    --muted:     #7A6B5C;
    --divider:   #D5CAB8;
    --nav-glass:        rgba(250,247,242,0.93);
    --nav-drawer-glass: rgba(250,247,242,0.99);
    --caption-grad:     linear-gradient(to top, rgba(250,247,242,0.88) 0%, transparent 100%);
  }
  .eyebrow, .hero-place { color: #C9A84C; }
  .hero h1, .hero-ratings a, .hero-scroll { color: #F5F0E8; }
  .hero-ratings { color: rgba(245,240,232,0.7); }
  .btn-ghost { color: #F5F0E8; }
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--body); font-family: var(--font-b); font-size: 16px; line-height: 1.6; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--nav-glass); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
  display: flex; align-items: center;
  padding: 0 32px; height: 68px; gap: 24px;
}
.nav-logo {
  font-family: var(--font-b); font-weight: 700; font-size: 15px;
  letter-spacing: 0.14em; color: var(--headline); text-decoration: none;
  text-transform: uppercase; white-space: nowrap; margin-right: auto;
}
.nav-logo span { color: var(--accent); }

/* Language selector */
.nav-lang { position: relative; }
.nav-lang-toggle {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-b); font-weight: 500; font-size: 13px;
  color: var(--body); padding: 6px 10px; display: flex; align-items: center; gap: 5px;
  transition: color 150ms;
}
.nav-lang-toggle::after { content: '▾'; font-size: 10px; color: var(--muted); }
.nav-lang-toggle:hover { color: var(--headline); }
.nav-lang-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--surface); border: 1px solid var(--divider);
  border-radius: 8px; min-width: 140px; overflow: hidden;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 300;
}
.nav-lang.open .nav-lang-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-lang-item {
  display: block; padding: 10px 16px;
  font-family: var(--font-b); font-size: 13px; color: var(--body);
  text-decoration: none; transition: background 120ms, color 120ms;
}
.nav-lang-item:hover, .nav-lang-item.active { background: var(--divider); color: var(--headline); }
#google_translate_element {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden; visibility: hidden;
}
/* Hide ALL Google Translate injected UI */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-te-gadget,
body > .skiptranslate { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
html body { top: 0 !important; position: static !important; }

/* Booking dropdown */
.nav-booking { position: relative; }
.nav-booking-toggle {
  background: none; border: 1px solid var(--divider); cursor: pointer;
  font-family: var(--font-b); font-weight: 600; font-size: 13px;
  color: var(--body); padding: 7px 14px; border-radius: 999px;
  display: flex; align-items: center; gap: 5px; transition: border-color 150ms, color 150ms;
}
.nav-booking-toggle::after { content: '▾'; font-size: 10px; }
.nav-booking-toggle:hover { border-color: var(--accent); color: var(--headline); }
.nav-booking-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--surface); border: 1px solid var(--divider);
  border-radius: 8px; min-width: 160px; overflow: hidden;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 300;
}
.nav-booking.open .nav-booking-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-booking-menu a {
  display: block; padding: 12px 18px;
  font-family: var(--font-b); font-size: 14px; color: var(--body);
  text-decoration: none; transition: background 120ms, color 120ms;
}
.nav-booking-menu a:hover { background: var(--divider); color: var(--headline); }

/* Desktop nav links */
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: var(--font-b); font-weight: 500; font-size: 14px;
  color: var(--body); text-decoration: none; transition: color 150ms;
}
.nav-links a:hover { color: var(--headline); }
.nav-cta {
  border: 1px solid var(--accent) !important; color: var(--accent) !important;
  padding: 8px 20px; border-radius: 999px;
  transition: background 150ms, color 150ms !important;
}
.nav-cta:hover { background: var(--accent) !important; color: var(--bg) !important; }

/* Burger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--headline); border-radius: 2px;
  transition: transform 220ms ease, opacity 220ms ease;
}
body.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 199;
  background: var(--nav-drawer-glass); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
  padding: 8px 24px 28px; flex-direction: column;
}
body.nav-open .nav-drawer { display: flex; }
.nav-drawer a {
  font-family: var(--font-b); font-weight: 500; font-size: 16px;
  color: var(--body); text-decoration: none; padding: 16px 0;
  border-bottom: 1px solid var(--divider); transition: color 150ms; display: block;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--headline); }
.nav-drawer-cta { color: var(--accent) !important; font-weight: 700 !important; }
.nav-drawer-lang {
  padding: 16px 0 4px; border-bottom: 1px solid var(--divider);
}
.nav-drawer-lang-label {
  font-family: var(--font-b); font-weight: 300; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 10px; display: block;
}
.nav-drawer-lang-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.nav-drawer-lang-btn {
  background: none; border: 1px solid var(--divider); border-radius: 999px;
  font-family: var(--font-b); font-weight: 500; font-size: 13px;
  color: var(--body); padding: 6px 14px; cursor: pointer;
  transition: border-color 150ms, color 150ms, background 150ms;
}
.nav-drawer-lang-btn:hover { border-color: var(--accent); color: var(--headline); }
.nav-drawer-lang-btn.active { background: var(--accent); border-color: var(--accent); color: var(--bg); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.4) 0%, rgba(13,13,13,0.72) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 0 24px;
}
.hero-eyebrow {
  font-family: var(--font-b); font-weight: 300; font-size: 11px;
  letter-spacing: 0.28em; color: var(--accent2); text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-place {
  font-family: var(--font-b); font-weight: 400; font-size: 14px;
  letter-spacing: 0.12em; color: rgba(245,240,232,0.65);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-d); font-weight: 800; font-size: clamp(40px, 6vw, 76px);
  color: var(--headline); line-height: 1.08; margin-bottom: 36px;
}
.hero-ratings {
  display: flex; align-items: center; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; justify-content: center;
}
.hero-ratings a {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-b); font-weight: 500; font-size: 13px;
  color: rgba(245,240,232,0.85); text-decoration: none; transition: color 150ms;
}
.hero-ratings a:hover { color: var(--accent); }
.hero-ratings .stars { color: var(--accent); font-size: 12px; letter-spacing: 1px; }
.hero-ratings .sep { color: rgba(245,240,232,0.3); }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--bg);
  font-family: var(--font-b); font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  padding: 0 32px; height: 54px; border-radius: 4px;
  transition: background 150ms, transform 150ms;
}
.btn-primary:hover { background: var(--accent2); }
.btn-primary:active { transform: scale(0.97); }
.hero-scroll {
  margin-top: 48px; font-family: var(--font-b); font-weight: 300;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 32px;
  background: rgba(245,240,232,0.25); margin: 10px auto 0;
}

/* ── SHARED SECTION STYLES ── */
.section { padding: 100px 40px; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-tag {
  font-family: var(--font-b); font-weight: 300; font-size: 11px;
  letter-spacing: 0.3em; color: var(--accent2); text-transform: uppercase; margin-bottom: 16px;
}
.section-rule { width: 48px; height: 2px; background: var(--accent); margin-bottom: 24px; }
.section-h2 {
  font-family: var(--font-d); font-weight: 700;
  font-size: clamp(28px, 4vw, 46px); color: var(--headline);
  line-height: 1.15; margin-bottom: 16px;
}
.section-h2 em { font-style: italic; color: var(--accent); }
.section-sub {
  font-size: 16px; color: var(--body); max-width: 560px;
  margin-bottom: 56px; line-height: 1.75;
}

/* ── THE SPACE ── */
.space-section { background: var(--surface); border-top: 1px solid var(--divider); }
.space-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.space-text .section-sub { margin-bottom: 0; }
.space-features { display: flex; flex-direction: column; gap: 0; }
.space-feature {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--divider);
}
.space-feature:first-child { padding-top: 0; }
.space-feature:last-child { border-bottom: none; }
.space-feature-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; margin-top: 2px;
}
.space-feature-text h3 {
  font-family: var(--font-b); font-weight: 600; font-size: 15px;
  color: var(--headline); margin-bottom: 4px;
}
.space-feature-text p {
  font-size: 14px; color: var(--body); line-height: 1.6;
}

/* ── GALLERY ── */
.gallery-section { border-top: 1px solid var(--divider); }
.gallery-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; gap: 24px; flex-wrap: wrap;
}
.gallery-header-left .section-sub { margin-bottom: 0; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--divider); color: var(--body);
  font-family: var(--font-b); font-weight: 500; font-size: 13px;
  text-decoration: none; padding: 0 22px; height: 44px; border-radius: 4px;
  background: none; cursor: pointer; white-space: nowrap;
  transition: border-color 150ms, color 150ms;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 6px; cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 400ms ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.tall img { aspect-ratio: 3/4; }
.gallery-item:not(.tall) img { aspect-ratio: 4/3; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 14px 12px;
  background: var(--caption-grad);
  font-family: var(--font-b); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--headline);
  opacity: 0; transform: translateY(5px);
  transition: opacity 250ms ease, transform 250ms ease; pointer-events: none;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-footer {
  display: flex; justify-content: center; margin-top: 28px;
}

/* ── AMENITIES ── */
.amenities-section { background: var(--surface); border-top: 1px solid var(--divider); }
.amenities-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.amenity-card {
  background: var(--bg); border: 1px solid var(--divider); border-radius: 10px;
  overflow: hidden; transition: border-color 200ms;
}
.amenity-card:hover { border-color: var(--accent2); }
.amenity-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.amenity-body { padding: 20px; }
.amenity-body h3 {
  font-family: var(--font-b); font-weight: 600; font-size: 15px;
  color: var(--headline); margin-bottom: 6px;
}
.amenity-body p { font-size: 13px; color: var(--body); line-height: 1.6; }

/* ── REVIEWS ── */
.reviews-section { border-top: 1px solid var(--divider); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review-card {
  background: var(--surface); border: 1px solid var(--divider);
  border-radius: 10px; padding: 28px 28px 24px;
}
.review-stars { color: var(--accent); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.review-quote {
  font-family: var(--font-d); font-style: italic;
  font-size: 16px; color: var(--headline); line-height: 1.65;
  margin-bottom: 20px;
}
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--muted); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-b); font-weight: 700; font-size: 14px; color: var(--headline);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-b); font-weight: 600; font-size: 14px;
  color: var(--headline); display: block;
}
.review-from {
  font-size: 12px; color: var(--body);
}
.review-platform {
  margin-left: auto; font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase;
}
.reviews-footer { text-align: center; margin-top: 40px; }
.reviews-footer p { font-size: 14px; color: var(--body); }
.reviews-footer a { color: var(--accent); text-decoration: none; }
.reviews-footer a:hover { text-decoration: underline; }

/* ── LOCATION ── */
.location-section { background: var(--surface); border-top: 1px solid var(--divider); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.location-text .section-sub { margin-bottom: 32px; }
.location-address {
  font-family: var(--font-b); font-weight: 500; font-size: 13px;
  letter-spacing: 0.1em; color: var(--accent2); text-transform: uppercase;
  margin-bottom: 28px;
}
.location-distances { list-style: none; margin-bottom: 32px; }
.location-distances li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid var(--divider);
  font-size: 15px; color: var(--body);
}
.location-distances li:last-child { border-bottom: none; }
.location-distances .dist-time {
  font-family: var(--font-b); font-weight: 600; font-size: 13px;
  color: var(--accent); letter-spacing: 0.05em;
}
.btn-map {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--divider); color: var(--body); background: none;
  font-family: var(--font-b); font-weight: 500; font-size: 14px;
  text-decoration: none; padding: 12px 22px; border-radius: 4px;
  transition: border-color 150ms, color 150ms;
}
.btn-map:hover { border-color: var(--accent); color: var(--accent); }
.location-map {
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--divider); aspect-ratio: 4/3;
}
.location-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── BOOK ── */
.book-section { border-top: 1px solid var(--divider); }
.book-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.book-inner .section-tag, .book-inner .section-rule { margin-left: auto; margin-right: auto; }
.book-inner .section-rule { display: none; }
.book-inner .section-sub { max-width: 100%; margin-bottom: 48px; margin-left: auto; margin-right: auto; }
.book-channels { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.book-channel {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface); border: 1px solid var(--divider);
  border-radius: 10px; padding: 22px 28px; text-decoration: none;
  transition: border-color 150ms; text-align: left;
}
.book-channel:hover { border-color: var(--accent); }
.book-channel-left { display: flex; align-items: center; gap: 16px; }
.book-channel-icon { font-size: 24px; }
.book-channel-name {
  font-family: var(--font-b); font-weight: 700; font-size: 16px;
  color: var(--headline); display: block; margin-bottom: 3px;
}
.book-channel-rating {
  font-size: 13px; color: var(--body);
}
.book-channel-rating .stars { color: var(--accent); }
.book-channel-action {
  font-family: var(--font-b); font-weight: 500; font-size: 13px;
  color: var(--accent); white-space: nowrap;
}
.book-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: #25D366; color: #fff; border-radius: 10px; padding: 18px 28px;
  text-decoration: none; font-family: var(--font-b); font-weight: 700; font-size: 15px;
  transition: opacity 150ms; width: 100%;
}
.book-whatsapp:hover { opacity: 0.9; }
.book-whatsapp-icon { font-size: 22px; }
.book-note {
  font-size: 13px; color: var(--muted); margin-top: 20px; text-align: center;
}

/* ── FOOTER ── */
footer {
  background: var(--surface); border-top: 1px solid var(--divider);
  padding: 56px 40px 40px;
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: start;
}
.footer-brand .footer-logo {
  font-family: var(--font-b); font-weight: 700; font-size: 14px;
  letter-spacing: 0.18em; color: var(--headline); text-transform: uppercase;
  display: block; margin-bottom: 8px;
}
.footer-brand address {
  font-style: normal; font-size: 13px; color: var(--body); line-height: 1.7; margin-bottom: 16px;
}
.footer-contact { font-size: 13px; color: var(--body); margin-bottom: 4px; }
.footer-contact a { color: var(--body); text-decoration: none; transition: color 150ms; }
.footer-contact a:hover { color: var(--accent); }
.footer-platform-links { display: flex; gap: 20px; margin-top: 20px; }
.footer-platform-links a {
  font-size: 13px; color: var(--muted); text-decoration: none; transition: color 150ms;
}
.footer-platform-links a:hover { color: var(--body); }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; }
.footer-top-link {
  font-family: var(--font-b); font-weight: 500; font-size: 13px;
  color: var(--muted); text-decoration: none; letter-spacing: 0.05em;
  transition: color 150ms;
}
.footer-top-link:hover { color: var(--body); }
.footer-legal { display: flex; gap: 20px; align-items: center; }
.footer-legal a {
  font-size: 12px; color: var(--muted); text-decoration: none; transition: color 150ms;
}
.footer-legal a:hover { color: var(--body); }
.footer-copy {
  font-size: 12px; color: var(--muted); margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--divider); grid-column: 1 / -1; text-align: center;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw; max-height: 88vh; object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 28px; cursor: pointer; transition: color 150ms; line-height: 1;
}
.lightbox-close:hover { color: #fff; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85); font-size: 26px; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-b); font-size: 13px; color: rgba(255,255,255,0.5);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { padding: 0 16px; gap: 8px; position: relative; }
  .nav-links { display: none; }
  .nav-booking { display: none; }
  .nav-logo {
    position: absolute; left: 50%; transform: translateX(-50%);
    margin-right: 0;
  }
  .nav-lang { display: flex; margin-left: auto; }
  .nav-lang-toggle { font-size: 12px; padding: 5px 8px; }
  .nav-lang-menu { left: auto; right: 0; }
  .nav-burger { display: flex; }
  .section { padding: 64px 24px; }
  .space-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall img { aspect-ratio: 4/3; }
  .amenities-grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-right { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  footer { padding: 40px 24px 32px; }
  .hero h1 { font-size: clamp(38px, 10vw, 56px); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .book-channel { flex-direction: column; align-items: flex-start; gap: 12px; }
}
