:root {
  --bg: #0b0b0b;
  --muted: rgba(255,255,255,.78);
  --accent: #ff3b30;
  --accent-2: #7b3fe4;
  --white: #fff;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Segoe UI, Roboto, Helvetica, Arial, Inter, sans-serif;
  color: var(--white);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Transparent minimalist navbar */
.nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  gap: 16px;
  z-index: 60;
  background: transparent;
  transition: background-color .24s ease, box-shadow .24s ease, backdrop-filter .24s ease, border-color .24s ease;
}
.nav.is-scrolled {
  background: rgba(11, 11, 11, .75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand { display: flex; align-items: center; justify-content: flex-start; text-decoration: none; }
.brand img { display: block; height: 64px; width: auto; object-fit: contain; }
.nav-links { margin-left: auto; }
nav ul { display: flex; gap: 18px; align-items: center; margin: 0; padding: 0; list-style: none; }
nav a { color: var(--white); text-decoration: none; font-weight: 600; opacity: .88; font-size: 15px; transition: opacity .2s ease, color .2s ease; }
nav a:hover { opacity: 1; color: var(--white); }
.book {
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  border: none;
  box-shadow: 0 6px 18px rgba(255,59,48,0.12);
  transition: transform .16s ease, box-shadow .16s ease;
  cursor: pointer;
}
.book:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,59,48,0.25); }

main { position: relative; z-index: 20; }
main::before { content: ""; display: block; height: 100vh; }

/* Hero */
.hero {
  height: 100vh;
  min-height: 560px;
  display: grid;
  place-items: center;
  align-items: flex-start;
  justify-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #050505;
  overflow: hidden;
  z-index: 10;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.48));
  z-index: 22;
  pointer-events: none;
}
.hero .content {
  position: relative;
  z-index: 30;
  max-width: 1100px;
  padding: 280px 48px 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
h1 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Segoe UI, Roboto, Inter, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 9vw, 96px);
  margin: 0;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}
.blur-text { display: flex; flex-wrap: wrap; gap: 0.24em; align-items: flex-end; }
.blur-segment {
  display: inline-block;
  will-change: transform, filter, opacity;
  opacity: 0;
  transform: translateY(-18px) scale(0.985);
  filter: blur(10px);
}
.blur-segment.is-visible { animation: blurSegmentIn 1.6s cubic-bezier(.16,1,.3,1) forwards; }
p.lead { margin: 0; color: var(--muted); max-width: 62ch; font-size: 18px; line-height: 1.6; }
.ctas { margin-top: 12px; display: flex; gap: 12px; align-items: center; }
.cta-primary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.12);
  padding: 12px 20px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.cta-primary:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hero img.bg-sr { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Gallery Section */
.gallery-section {
  position: relative;
  z-index: 20;
  background: var(--bg);
  padding: 120px 28px;
  min-height: auto;
}
.gallery-container { max-width: 1200px; margin: 0 auto; width: 100%; }
.gallery-header { text-align: center; margin-bottom: 56px; }
.gallery-header h2 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Segoe UI, Roboto, Inter, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 16px 0;
  color: var(--white);
  letter-spacing: -0.01em;
}
.gallery-header p {
  color: var(--muted);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 190px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  min-height: 0;
}
/* Balanced 16-image collage: large lead moments, clean rows, no awkward gaps. */
.gallery-item:nth-child(1),
.gallery-item:nth-child(10) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4),
.gallery-item:nth-child(7),
.gallery-item:nth-child(12),
.gallery-item:nth-child(15) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6),
.gallery-item:nth-child(8),
.gallery-item:nth-child(9),
.gallery-item:nth-child(11),
.gallery-item:nth-child(13),
.gallery-item:nth-child(14),
.gallery-item:nth-child(16) { grid-column: span 1; grid-row: span 1; }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  border-radius: 14px;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

/* Lightbox & Modals */
.overlay {
  position: fixed;
  inset: 0;
  display: flex;
  opacity: 0;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 100;
  transition: opacity .3s ease;
}
.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: calc(100% - 96px);
  max-height: calc(100% - 96px);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.95);
  transition: transform .3s ease;
}
.overlay.is-open .lightbox-content { transform: scale(1); }

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.modal-close, .lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: background .2s ease, transform .2s ease;
}
.modal-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.16); transform: scale(1.05); }
.modal-close { top: 18px; right: 18px; z-index: 101; }
.lightbox-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

/* Contact Modal specific */
.modal-content-box {
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 48px;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  transform: scale(0.95) translateY(20px);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.overlay.is-open .modal-content-box { transform: scale(1) translateY(0); }
.modal-content-box h3 { margin-top: 0; font-size: 24px; margin-bottom: 8px; }
.modal-content-box p { color: var(--muted); margin-bottom: 24px; line-height: 1.5; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; margin-bottom: 8px; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  transition: border-color .2s ease, background .2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.06);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #111; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.btn-submit:hover { background: #e03228; transform: translateY(-2px); }

/* About Section */
.about-section {
  position: relative;
  z-index: 22;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.05), transparent 36%),
    radial-gradient(circle at 82% 24%, rgba(255,59,48,0.13), transparent 28%),
    #070707;
  padding: 110px 28px 130px;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.about-section::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: rgba(255,255,255,.18); border-radius: 999px; margin-top: -24px;
}
.about-container { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr); gap: 56px; align-items: center; }
.about-content { min-width: 0; }
.about-kicker { display: inline-flex; margin-bottom: 16px; color: rgba(255,255,255,0.72); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.about-content h2 { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Segoe UI, Roboto, Inter, system-ui, sans-serif; font-weight: 800; font-size: clamp(38px, 5vw, 64px); line-height: 0.98; margin: 0 0 24px 0; color: var(--white); letter-spacing: -0.01em; max-width: 720px; }
.about-content p { margin: 0 0 32px; max-width: 68ch; color: rgba(255,255,255,0.76); font-size: 18px; line-height: 1.85; }
.about-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; max-width: 760px; width: 100%; }
.about-meta div { background: rgba(255,255,255,0.055); padding: 22px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.about-meta div:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); transform: translateY(-3px); }
.about-meta strong { display: block; margin-bottom: 8px; font-size: 1.05rem; color: var(--white); }
.about-meta span { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.6; }
.about-visual { position: relative; min-height: 520px; }
.about-visual img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 8px; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 28px 80px rgba(0,0,0,0.42); }
.about-image-main { position: absolute; inset: 0 0 auto auto; width: 86%; height: 390px; }
.about-image-accent { position: absolute; left: 0; bottom: 0; width: 56%; height: 230px; }
.about-facts { position: absolute; right: 22px; bottom: 28px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; overflow: hidden; width: min(340px, calc(100% - 44px)); border-radius: 8px; border: 1px solid rgba(255,255,255,0.14); background: rgba(0,0,0,0.72); box-shadow: 0 18px 50px rgba(0,0,0,0.32); }
.about-facts div { padding: 18px; background: rgba(255,255,255,0.06); }
.about-facts strong { display: block; margin-bottom: 4px; color: var(--white); font-size: 1.35rem; line-height: 1; }
.about-facts span { color: rgba(255,255,255,0.72); font-size: 0.86rem; line-height: 1.35; }

/* Amenities Section */
.amenities-section { position: relative; z-index: 22; background: #0b0b0b; padding: 100px 28px; color: var(--white); border-top: 1px solid rgba(255,255,255,0.08); }
.amenities-section h2 { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Segoe UI, Roboto, Inter, system-ui, sans-serif; font-weight: 800; font-size: clamp(32px, 5vw, 56px); margin: 0 0 24px 0; color: var(--white); letter-spacing: -0.01em; text-align: center; }
.amenities-intro { max-width: 780px; margin: 0 auto 40px; text-align: center; color: var(--muted); line-height: 1.8; font-size: 18px; }
.amenities-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.amenities-card {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 190px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
  transition: transform .3s cubic-bezier(.16,1,.3,1), background .3s ease, border-color .3s ease;
}
.amenities-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); }
.amenities-icon {
  width: 28px;
  height: 28px;
  color: var(--white);
  margin-bottom: 4px;
  opacity: 0.85;
}
.amenities-card h3 { margin: 0; font-size: 1.2rem; font-weight: 700; color: var(--white); }
.amenities-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 1rem; }

/* Testimonials Section */
.testimonials-section {
  position: relative;
  z-index: 22;
  background: #070707;
  padding: 100px 28px 120px;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.testimonials-container { max-width: 1160px; margin: 0 auto; }
.testimonials-section h2 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Segoe UI, Roboto, Inter, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  margin: 0 0 24px 0;
  color: var(--white);
  letter-spacing: -0.01em;
  text-align: center;
}
.testimonials-intro {
  max-width: 620px;
  margin: 0 auto 44px;
  text-align: center;
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.testimonial-card {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
}
.testimonial-card figcaption {
  margin: 0;
}
.review-box {
  display: grid;
  gap: 8px;
  padding: 18px;
  min-height: 148px;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.2);
  text-align: left;
}
.review-name {
  color: var(--white);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.3;
}
.review-rating {
  display: inline-flex;
  color: #f4c542;
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
}
.review-comment {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.testimonial-feature {
  max-width: 860px;
  margin: 56px auto 0;
}
.testimonial-feature h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}
.testimonial-feature video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
}
.testimonial-feature figcaption {
  width: 100%;
}

/* Contact Section */
.contact-section {
  position: relative;
  z-index: 22;
  background: #070707;
  padding: 100px 28px 120px;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.contact-section::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: rgba(255,255,255,.18); border-radius: 999px; margin-top: -24px; }
.contact-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: minmax(320px, 1.1fr) minmax(320px, 0.9fr); gap: 48px; align-items: center; justify-items: stretch; }
.contact-content { display: flex; flex-direction: column; justify-content: center; }
.contact-map { align-self: center; width: 100%; min-width: 0; }
.contact-map iframe { width: 100%; height: 420px; border: 0; border-radius: 22px; display: block; box-shadow: 0 22px 48px rgba(0,0,0,0.22); filter: invert(90%) hue-rotate(180deg) contrast(1.1); /* Dark mode map trick */ transition: filter .3s ease; }
.contact-map iframe:hover { filter: invert(90%) hue-rotate(180deg) contrast(1.1) brightness(1.1); }
.contact-content h2 { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Segoe UI, Roboto, Inter, system-ui, sans-serif; font-weight: 800; font-size: clamp(32px, 5vw, 56px); margin: 0 0 24px 0; color: var(--white); letter-spacing: -0.01em; }
.contact-content p { margin: 0 0 28px 0; color: var(--muted); font-size: 18px; line-height: 1.8; max-width: 60ch; }
.contact-details { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.contact-item { background: rgba(255,255,255,0.03); padding: 20px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.06); transition: background .2s ease, transform .2s ease; }
.contact-item:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.contact-icon { width: 24px; height: 24px; color: var(--white); margin-bottom: 12px; opacity: 0.85; }
.contact-item h3 { margin: 0 0 8px 0; font-size: 1.1rem; font-weight: 700; color: var(--white); }
.contact-item a { color: var(--muted); text-decoration: none; font-size: 0.95rem; transition: color .2s ease; }
.contact-item a:hover { color: var(--white); }
.contact-cta { margin-top: 32px; }

/* Footer */
.site-footer { position: relative; z-index: 30; background: #070707; padding: 32px 28px 36px; color: var(--muted); border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--white); }
.footer-logo img { height: 36px; width: auto; display: block; }
.footer-copy { font-size: 0.95rem; color: rgba(255,255,255,0.72); transition: color .2s ease; }
.site-footer a.footer-logo:hover .footer-copy { color: var(--white); }

/* Animations */
@keyframes blurSegmentIn {
  0% { opacity: 0; transform: translateY(-18px) scale(0.985); filter: blur(10px); }
  60% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1.2s cubic-bezier(.16,1,.3,1), transform 1.2s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .blur-segment { opacity: 1; transform: none; filter: none; }
  .blur-segment.is-visible { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Mobile Nav */
.burger {
  display: none; align-items: center; justify-content: center; width: 44px; height: 44px; background: transparent; border: none; cursor: pointer; padding: 6px; border-radius: 8px; z-index: 80;
}
.burger svg { display: block; width: 22px; height: 22px; }
.burger .line { stroke: var(--white); stroke-width: 2.2; stroke-linecap: round; transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .3s ease; transform-box: fill-box; transform-origin: center; }

@media (max-width: 720px) {
  .nav { padding: 12px 16px; justify-content: flex-start; }
  .hero .content { padding: 122px 20px 28px 20px; gap: 14px; max-width: 100%; }
  .hero h1 { font-size: clamp(34px, 11vw, 54px); line-height: .95; }
  .hero .lead { font-size: 16px; line-height: 1.55; max-width: 34ch; }
  .ctas { flex-direction: column; align-items: center; width: 100%; max-width: 360px; margin: 8px auto 0; gap: 12px; }
  .cta-primary { min-width: 220px; width: 100%; text-align: center; padding: 14px 20px; }
  .gallery-section { padding: 60px 16px; }
  .gallery-header { margin-bottom: 32px; }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: 132px;
    gap: 10px;
    width: 100%;
  }
  .gallery-item,
  .gallery-item:nth-child(n) {
    width: auto;
    min-width: 0;
    aspect-ratio: auto;
    grid-column: span 1;
    grid-row: span 1;
    border-radius: 12px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(9) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(13),
  .gallery-item:nth-child(16) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(12) { grid-column: span 1; grid-row: span 2; }
  .gallery-item::after { border-radius: 12px; }
  .lightbox-content { max-width: calc(100% - 24px); max-height: calc(100% - 24px); padding: 0; }
  .lightbox-image { max-height: calc(100vh - 140px); width: auto; }
  .modal-close, .lightbox-nav { width: 38px; height: 38px; font-size: 20px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .modal-close { top: 12px; right: 12px; }
  .about-section { padding: 70px 16px; }
  .about-container { max-width: 100%; grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .about-kicker { font-size: 0.72rem; line-height: 1.4; margin-bottom: 12px; }
  .about-content h2 { font-size: clamp(34px, 10vw, 46px); margin-bottom: 16px; }
  .about-content p { font-size: 16px; max-width: 100%; line-height: 1.75; }
  .about-meta { grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
  .about-meta div { padding: 18px; }
  .about-visual {
    display: block;
    min-height: 0;
    margin-top: 2px;
  }
  .about-image-main {
    position: relative;
    inset: auto;
    width: 100%;
    height: 260px;
  }
  .about-image-accent { display: none; }
  .about-facts {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
  }
  .about-facts div { padding: 14px; }
  .amenities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .amenities-card { min-height: 0; padding: 18px 14px; border-radius: 12px; gap: 8px; }
  .amenities-icon { width: 22px; height: 22px; margin-bottom: 2px; }
  .amenities-card h3 { font-size: 0.98rem; }
  .amenities-card p { font-size: 0.86rem; line-height: 1.55; }
  .testimonials-section { padding: 60px 16px; }
  .testimonials-section h2 { font-size: clamp(28px, 6vw, 40px); margin-bottom: 16px; }
  .testimonials-intro { font-size: 16px; margin-bottom: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 28px; max-width: 360px; margin: 0 auto; }
  .testimonial-feature { margin-top: 40px; }
  .contact-section { padding: 60px 16px; }
  .contact-container { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .contact-content { order: 2; }
  .contact-map { order: 1; }
  .contact-content h2 { font-size: clamp(28px, 6vw, 40px); margin-bottom: 16px; }
  .contact-content p { font-size: 16px; max-width: 100%; }
  .contact-details { grid-template-columns: 1fr; gap: 16px; max-width: 400px; margin: 0 auto; }
  .contact-item { text-align: left; padding: 16px; }
  .contact-map iframe { height: 360px; }
  
  .nav-links { margin-left: auto; }
  nav ul { 
    display: flex; 
    flex-direction: column; 
    position: fixed; 
    inset: 0; 
    background: #000;
    padding: 100px 24px 24px; 
    gap: 24px; 
    z-index: 70;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity .4s cubic-bezier(.16,1,.3,1), transform .4s cubic-bezier(.16,1,.3,1);
  }
  nav ul a { font-size: 24px; font-weight: 700; }
  .book { padding: 14px 32px; width: 100%; text-align: center; font-size: 18px; margin-top: 16px; }
  .burger { display: flex; margin-left: 12px; }
  
  .nav-open .nav {
    background: #000;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
  }
  .nav-open nav ul { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-open,
  .nav-open body { overflow: hidden; } /* prevent scrolling only while the mobile menu is open */
  .nav-open .burger .line1 { transform: translateY(6px) rotate(45deg); }
  .nav-open .burger .line2 { opacity: 0; }
  .nav-open .burger .line3 { transform: translateY(-6px) rotate(-45deg); }
}
