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

:root {
  --cream:  #fdf6ee;
  --sand:   #f5e6d3;
  --blush:  #e8c9a8;
  --amber:  #d4956a;
  --terra:  #b06840;
  --deep:   #2c1f14;
  --text:   #4a3728;
  --muted:  #8a6f5e;
  --pad:    clamp(1.5rem, 5vw, 5rem);
}

html { scroll-behavior: smooth; }

h1, h2 { font-family: 'Noto Serif Display', serif; }

body {
  font-family: 'Geologica', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── NAV ───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 72px;
  background: rgba(253, 246, 238, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 149, 106, 0.15);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(44, 31, 20, 0.08); }

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Hamburger */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,10,5,0.35);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }
@media (max-width: 1060px) {
  .nav-backdrop { display: block; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1002;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--terra);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-family: 'Geologica', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terra); }

.nav-cta {
  background: var(--terra);
  color: var(--cream) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--amber) !important; }

/* ─── LANGUAGE SWITCHER ─────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.6rem;
  border-left: 1px solid rgba(212,149,106,0.25);
  padding-left: 1.2rem;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  font-family: 'Geologica', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.lang-btn img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.lang-btn:hover { color: var(--terra); border-color: var(--blush); }
.lang-btn.active {
  color: var(--terra);
  border-color: var(--amber);
  background: rgba(212,149,106,0.08);
}

/* ─── KEN BURNS KEYFRAMES ───────────────────────── */
@keyframes kb-left {
  from { transform: scale(1.1)  translate(2%, 1%); }
  to   { transform: scale(1.25) translate(-1.5%, -0.8%); }
}
@keyframes kb-right {
  from { transform: scale(1.25) translate(-2%, -1%); }
  to   { transform: scale(1.1)  translate(1.5%, 0.8%); }
}
@keyframes kb-up {
  from { transform: scale(1.1)  translate(0.8%, 2%); }
  to   { transform: scale(1.25) translate(-0.5%, -1.5%); }
}
@keyframes kb-down {
  from { transform: scale(1.25) translate(-1%, -1.5%); }
  to   { transform: scale(1.1)  translate(0.8%, 1.5%); }
}
@keyframes kb-center {
  from { transform: scale(1.1)  translate(-1.5%, 0.8%); }
  to   { transform: scale(1.25) translate(1.2%, -0.8%); }
}

/* ─── HERO CAROUSEL ─────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 480px;
  overflow: hidden;
  margin-top: 72px;
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;                                           /* contain Ken Burns scale bleed */
  transform: translateX(100%);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}
.slide.active {
  transform: translateX(0);
  z-index: 2;                                                /* incoming slides over the top */
}
.slide.exit {
  transform: translateX(0);                                  /* stays in place, covered */
  z-index: 1;
  transition: none;                                          /* drop behind instantly, no animation */
}

.slide-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.1);   /* match animation "from" so no pop when animation starts */
  transform-origin: center center;
}

/* Ken Burns — infinite alternate never freezes; continues on exit so motion is uninterrupted */
.slide:nth-child(1).active .slide-bg,
.slide:nth-child(1).exit   .slide-bg { animation: kb-left   14s ease-in-out infinite alternate; }
.slide:nth-child(2).active .slide-bg,
.slide:nth-child(2).exit   .slide-bg { animation: kb-right  14s ease-in-out infinite alternate; }
.slide:nth-child(3).active .slide-bg,
.slide:nth-child(3).exit   .slide-bg { animation: kb-up     14s ease-in-out infinite alternate; }
.slide:nth-child(4).active .slide-bg,
.slide:nth-child(4).exit   .slide-bg { animation: kb-down   14s ease-in-out infinite alternate; }
.slide:nth-child(5).active .slide-bg,
.slide:nth-child(5).exit   .slide-bg { animation: kb-center 14s ease-in-out infinite alternate; }

.slide:nth-child(1) .slide-bg { background: url('../img/sl/1.jpg') center/cover no-repeat; }
.slide:nth-child(2) .slide-bg { background: url('../img/sl/2.jpg') center/cover no-repeat; }
.slide:nth-child(3) .slide-bg { background: url('../img/sl/3.jpg') center/cover no-repeat; }
.slide:nth-child(4) .slide-bg { background: url('../img/sl/4.jpg') center/cover no-repeat; }
.slide:nth-child(5) .slide-bg { background: url('../img/sl/5.jpg') center/cover no-repeat; }

.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,31,20,0.55) 0%, transparent 55%);
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 0 6rem 5rem;
  color: var(--cream);
  max-width: 680px;
  bottom:20px;
}
.slide-tag {
  font-family: 'Geologica', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1rem;
}
.slide-content h1 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: normal;
  line-height: 1.12;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.slide-content p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.88;
  max-width: 480px;
}

/* Carousel controls */
.carousel-dots {
  position: absolute;
  bottom: 2.4rem;
  right: 6rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.dot {
  width: 28px;
  height: 2px;
  background: rgba(253,246,238,0.35);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none;
}
.dot.active { background: var(--cream); width: 48px; }

.carousel-arrows {
  position: absolute;
  bottom: 2rem;
  left: 6rem;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}
.arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(253,246,238,0.4);
  background: transparent;
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.arrow:hover { background: rgba(253,246,238,0.15); border-color: var(--cream); }

.slide-counter {
  position: absolute;
  top: 2rem;
  right: 6rem;
  z-index: 10;
  font-family: 'Geologica', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: rgba(253,246,238,0.65);
}

/* ─── INTRO ─────────────────────────────────────── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 7rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.intro-label {
  font-family: 'Geologica', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.4rem;
}
.intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: normal;
  line-height: 1.2;
  color: var(--deep);
  max-width: 400px;
}
.intro-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 2rem;
}
.intro-right p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.6rem;
}
.intro-stats {
  display: flex;
  gap: 3rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.stat strong {
  display: block;
  font-size: 2.2rem;
  color: var(--terra);
  font-weight: normal;
  line-height: 1;
}
.stat span {
  font-family: 'Geologica', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── REVIEWS ───────────────────────────────────── */
.reviews-section {
  padding: 3rem var(--pad) 4rem;
  max-width: 900px;
  margin: 0 auto;
}
.reviews-track-wrap {
  overflow: hidden;
  border-radius: 1.5rem;
}
.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-card {
  min-width: 100%;
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.review-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}
.review-star {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent);
}
.review-star.half {
  position: relative;
  color: var(--blush);
}
.review-star.half::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: var(--accent);
}
.review-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
  font-style: italic;
  max-width: 680px;
}
.review-source {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.6rem;
}
.reviews-arrow {
  background: var(--card);
  border: 1px solid var(--blush);
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1rem;
  color: var(--accent);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews-arrow:hover { background: var(--accent); color: #fff; }

@media (max-width: 600px) {
  .review-card { padding: 1.6rem 1.4rem; }
  .review-text { font-size: 0.9rem; }
}

/* ─── DIVIDER ───────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blush), transparent);
  max-width: 1400px;
  margin: 0 auto;
}

/* ─── ROOMS ─────────────────────────────────────── */
.section {
  padding: 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
}
.section-header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: normal;
  color: var(--deep);
}
.section-header a {
  font-family: 'Geologica', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid var(--blush);
  padding-bottom: 2px;
  transition: color 0.2s;
  white-space: nowrap;
}
.section-header a:hover { color: var(--terra); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
}

.room-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 1rem;
}

.room-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.room-card:hover .room-bg { transform: scale(1.04); }

/* room card backgrounds are set dynamically by JS via the API */

.room-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,31,20,0.6) 0%, transparent 60%);
}

.room-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  z-index: 2;
  color: var(--cream);
}

.room-number {
  position: absolute;
  bottom: 1.2rem;
  left: 1.4rem;
  z-index: 2;
  font-family: 'Noto Serif Display', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  opacity: 0.9;
}


/* ─── AMENITIES ─────────────────────────────────── */
.amenities-bg { background: var(--sand); }
.amenities-inner {
  padding: 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.amenity {
  padding: 2rem;
  background: var(--cream);
  border: 1px solid rgba(212, 149, 106, 0.15);
  transition: box-shadow 0.3s, transform 0.3s;
  border-radius: 1rem;
}
.amenity:hover {
  box-shadow: 0 8px 32px rgba(176, 104, 64, 0.12);
  transform: translateY(-3px);
}
.amenity-icon {
  width: 42px; height: 42px;
  margin-bottom: 1.2rem;
}
.amenity-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--terra);
}
.amenity h3 {
  font-size: 1rem;
  font-weight: normal;
  color: var(--deep);
  margin-bottom: 0.6rem;
}
.amenity p {
  font-family: 'Geologica', sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ─── LOCATION ──────────────────────────────────── */
.location-header {
  max-width: 1400px;
  margin: 6rem auto 2rem;
  padding: 0 6rem;
  scroll-margin-top: 140px;
}
.location-header .intro-label { margin-bottom: 0.6rem; }
.location-header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: normal;
  color: var(--deep);
  line-height: 1.2;
}

.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-radius: 2rem;
  overflow: hidden;
  margin: 0 6rem 6rem;
}

.location-map {
  position: relative;
  overflow: hidden;
}
.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}


.location-info {
  padding: 4rem 3.5rem;
  background: var(--deep);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info p {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.7;
  margin-bottom: 2rem;
  max-width: 420px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}
.loc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Geologica', sans-serif;
  font-size: 0.82rem;
  opacity: 0.75;
}
.loc-icon {
  width: 32px; height: 32px;
  background: rgba(212,149,106,0.15);
  border: 1px solid rgba(212,149,106,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  border-radius: 50%;
  color: rgba(212,149,106,0.9);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
}
a.loc-icon:hover {
  background: rgba(212,149,106,0.3);
  border-color: rgba(212,149,106,0.6);
}
.loc-icon svg {
  width: 14px;
  height: 14px;
}

/* ─── CONTACT ───────────────────────────────────── */
.contact-section {
  padding: 7rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.contact-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-logo-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
}

.contact-left h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: normal;
  color: var(--deep);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.contact-left p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-item-icon {
  width: 38px; height: 38px;
  background: var(--sand);
  border: 1px solid var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  border-radius: 50%;
}
.contact-item-icon svg {
  width: 17px;
  height: 17px;
}
.contact-item-text strong {
  display: block;
  font-size: 0.72rem;
  font-family: 'Geologica', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.2rem;
}
.contact-item-text span { font-size: 0.9rem; color: var(--text); }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.contact-btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Geologica', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--terra);
  background: var(--terra);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.contact-btn:hover { background: var(--amber); border-color: var(--amber); }
.contact-btn--outline {
  background: transparent;
  color: var(--terra);
}
.contact-btn--outline:hover { background: var(--terra); color: var(--cream); }
.contact-btn--dark {
  background: var(--deep);
  border-color: var(--deep);
  color: var(--cream);
}
.contact-btn--dark:hover { background: var(--terra); border-color: var(--terra); }

/* ─── FOOTER ────────────────────────────────────── */
footer { background: var(--deep); color: var(--cream); }

.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 6rem 3.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 1.2rem;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  opacity: 0.55;
  max-width: 260px;
  margin-bottom: 2rem;
}

.footer-social { display: flex; gap: 0.6rem; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(232,201,168,0.2);
  background: transparent;
  color: rgba(232,201,168,0.6);
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  border-radius: 50%;
}
.social-btn { text-decoration: none; }
.social-btn:hover { border-color: var(--amber); color: var(--amber); }
.social-icon-svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: 'Geologica', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.4rem;
  font-weight: normal;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a {
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.55;
  color: var(--cream);
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(232,201,168,0.1);
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.8rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-family: 'Geologica', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  opacity: 0.65;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-bottom p img {
  height: 1.1rem;
  width: auto;
  position: relative;
  top: 2px;
  transition: transform 0.4s ease;
}
.footer-bottom p a:hover img {
  transform: scale(1.08);
}

/* ─── LIGHTBOX ──────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 6, 0.92);
  backdrop-filter: blur(6px);
}
.lightbox-stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  flex: 1;
  padding: 5rem 5rem 1rem;
}
.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  transition: opacity 0.25s ease;
}
.lightbox-hint {
  display: none;
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(20,12,6,0.6);
  color: rgba(253,246,238,0.85);
  font-family: 'Geologica', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lightbox-hint.visible { opacity: 1; }

@media (max-width: 768px) {
  .lightbox-hint { display: block; }
}

.lightbox-close {
  position: absolute;
  top: 1.4rem; right: 1.8rem;
  z-index: 10;
  background: rgba(253,246,238,0.1);
  border: 1px solid rgba(253,246,238,0.2);
  color: var(--cream);
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(253,246,238,0.2); }

.lightbox-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(253,246,238,0.08);
  border: 1px solid rgba(253,246,238,0.18);
  color: var(--cream);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-arrow:hover { background: rgba(253,246,238,0.18); }
.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }

.lightbox-footer {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 0.8rem 5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.lightbox-counter {
  font-family: 'Geologica', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: rgba(253,246,238,0.5);
}
.lightbox-thumbs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}
.lightbox-thumb {
  width: 52px; height: 38px;
  object-fit: cover;
  border-radius: 0.35rem;
  cursor: pointer;
  opacity: 0.45;
  border: 1px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.lightbox-thumb:hover { opacity: 0.75; }
.lightbox-thumb.active { opacity: 1; border-color: var(--amber); }

@media (max-width: 768px) {
  .lightbox {
    justify-content: stretch;
  }
  .lightbox-stage {
    padding: 0;
    flex: 1;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    touch-action: none;
    cursor: grab;
  }
  .lightbox-stage:active { cursor: grabbing; }
  .lightbox-img {
    height: 100%;
    width: auto;
    max-width: none;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    user-select: none;
    -webkit-user-drag: none;
    will-change: transform;
  }
  .lightbox-footer {
    display: none;
  }
  .lightbox-arrow {
    width: 40px; height: 40px;
    font-size: 1rem;
    background: rgba(20,12,6,0.55);
    border-color: transparent;
  }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close {
    top: 0.8rem;
    right: 0.8rem;
    width: 38px; height: 38px;
  }
}


/* ─── SCROLL REVEAL ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════ */

/* ── Tablet landscape / small desktop (≤1200px) ── */
@media (max-width: 1200px) {
  nav { padding: 0 2.5rem; }
  .intro, .section { padding: 5rem 3rem; }
  .amenities-inner { padding: 5rem 3rem; }
  .contact-section { padding: 5rem 3rem; gap: 4rem; }
  .footer-main { padding: 4rem 3rem 2.5rem; gap: 3rem; }
  .footer-bottom { padding: 1.5rem 3rem; }
  .slide-content { padding: 0 3rem 4rem; }
  .carousel-dots { right: 3rem; }
  .carousel-arrows { left: 3rem; }
  .slide-counter { right: 3rem; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .location-section { margin: 0 3rem; }
}

/* ── Nav hamburger (≤1060px) ── */
@media (max-width: 1060px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    background: rgba(253,246,238,0.97);
    backdrop-filter: blur(16px);
    padding: 6rem 2.5rem 3rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1001;
    overflow-y: auto;
  }
  .lang-switcher { border-left: none; padding-left: 0; margin-left: 0; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
  .nav-cta { padding: 0.7rem 1.6rem; margin: 2.2rem 0; display: block; }
}

/* ── Tablet portrait (≤900px) ── */
@media (max-width: 900px) {
  /* Hero */
  .slide-content { padding: 0 2rem 4rem; max-width: 100%; }
  .carousel-dots { right: 2rem; bottom: 1.5rem; }
  .carousel-arrows { left: 2rem; bottom: 1.5rem; }
  .slide-counter { right: 2rem; top: 1.5rem; }

  /* Intro */
  .intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 2rem;
  }
  .intro-right { padding-top: 0; }

  /* Rooms */
  .section { padding: 4rem 2rem; }
  .rooms-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  /* Amenities */
  .amenities-inner { padding: 4rem 2rem; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Location */
  .location-section { grid-template-columns: 1fr; margin: 0 2rem; border-radius: 1.5rem; }
  .location-map { min-height: 280px; }
  .location-info { padding: 3rem 2rem; }

  /* Contact */
  .contact-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
    text-align: center;
  }
  .contact-logo { justify-content: center; }
  .contact-info-items { align-items: center; }
  .contact-actions { justify-content: center; }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 3.5rem 2rem 2rem;
    gap: 2.5rem;
  }
  .footer-bottom { padding: 1.5rem 2rem; flex-direction: column; align-items: flex-start; }
}

/* ── Mobile (≤600px) ── */
@media (max-width: 600px) {
  nav { padding: 0 1.2rem; }
  .nav-links { width: 100vw; left: 0; }

  .hero { min-height: 480px; }
  .slide-content h1 { font-size: 2rem; }
  .slide-content p { font-size: 0.88rem; }

  .intro { padding: 3rem 1.2rem; }
  .intro-stats { gap: 1.5rem; }

  .section { padding: 3rem 1.2rem; }
  .rooms-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }

  .amenities-inner { padding: 3rem 1.2rem; }
  .amenities-grid { grid-template-columns: 1fr; }

  .location-section { margin: 0 1.2rem; border-radius: 1.2rem; }
  .location-info { padding: 2.5rem 1.2rem; }

  .contact-section { padding: 3rem 1.2rem; }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 3rem 1.2rem 1.5rem;
    gap: 2rem;
  }
  .footer-bottom { padding: 1.2rem; }

}
