/* === RESET & ROOT === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #2d6a4f;
  --green-dk:   #1b4332;
  --green-lt:   #52b788;
  --sage:       #95d5b2;
  --blue:       #1565a8;
  --blue-dk:    #0d3b6e;
  --blue-lt:    #56aee0;
  --blue-water: #48cae4;
  --stone:      #78716c;
  --stone-lt:   #a8a29e;
  --stone-xl:   #d6d0c8;
  --cream:      #faf8f5;
  --sand:       #f0ebe3;
  --text:       #1c1917;
  --muted:      #6b6560;
  --white:      #ffffff;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: 'Geologica', sans-serif; font-weight: 700; }

img { max-width: 100%; height: auto; display: block; }

/* ─── NAV ─────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem;
  height: 68px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(45,106,79,0.10);
  transition: border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  border-bottom-color: rgba(45,106,79,0.20);
  box-shadow: 0 2px 16px rgba(27,67,50,0.08);
}

.nav-logo { display: flex; align-items: center; text-decoration: none; gap: 0.55rem; }
.nav-logo-img { height: 38px; width: auto; }
.nav-logo-text {
  font-family: 'Geologica', sans-serif;
  font-size: 1.05rem; line-height: 1.2;
  color: var(--green-dk); font-weight: 600;
  letter-spacing: 0.01em;
}
.nav-logo-text span { display: block; font-size: 0.62rem; font-family: 'Geologica', sans-serif;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); font-weight: 400; }

.nav-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(10,20,15,0.55); z-index: 998;
  opacity: 0; transition: opacity 0.35s; pointer-events: none;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }
@media (max-width: 1020px) { .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(--green);
  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: 2rem; list-style: none; align-items: center;
}
.nav-links a {
  text-decoration: none; font-family: 'Geologica', sans-serif;
  font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(28,25,23,0.55); transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

.nav-cta {
  background: var(--green) !important; color: #fff !important;
  padding: 0.5rem 1.4rem; border-radius: 999px;
  border: none !important; letter-spacing: 0.10em;
  transition: background 0.2s !important; font-size: 0.72rem !important;
}
.nav-cta:hover { background: var(--green-dk) !important; }

.lang-switcher {
  display: flex; align-items: center; gap: 0.25rem;
  margin-left: 0.4rem; padding-left: 1.1rem;
  border-left: 1px solid rgba(45,106,79,0.18);
}
.lang-btn {
  display: flex; align-items: center; gap: 0.3rem;
  background: none; border: 1px solid transparent;
  padding: 0.26rem 0.6rem; cursor: pointer;
  font-family: 'Geologica', sans-serif; font-size: 0.68rem;
  letter-spacing: 0.1em; color: rgba(28,25,23,0.45);
  transition: color 0.2s, border-color 0.2s; border-radius: 4px;
}
.lang-btn img { width: 16px; height: 16px; border-radius: 50%; object-fit: cover; }
.lang-btn:hover { color: var(--green); border-color: rgba(45,106,79,0.3); }
.lang-btn.active { color: var(--green); border-color: rgba(45,106,79,0.4); }

/* ─── HERO CAROUSEL ──────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 540px;
  overflow: hidden; margin-top: 68px;
}

.slides {
  display: flex; height: 100%;
  transition: transform 0.95s cubic-bezier(0.77,0,0.175,1);
}
.slides.no-transition { transition: none !important; }

.slide { min-width: 100%; height: 100%; position: relative; }

.slide-bg {
  position: absolute; inset: 0;
  background: var(--green-dk) center/cover no-repeat;
}
.slide-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(27,67,50,0.50) 0%, transparent 40%),
    linear-gradient(to top, rgba(10,30,20,0.82) 0%, transparent 55%);
}

.slide-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 4rem 5rem 5rem;
  color: #fff; z-index: 2;
}
.slide-tag {
  display: inline-block;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage); background: rgba(255,255,255,0.08);
  border: 1px solid rgba(149,213,178,0.35); border-radius: 2px;
  padding: 0.3rem 0.8rem; margin-bottom: 1.1rem;
  backdrop-filter: blur(4px);
}
.slide-content h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 600;
  line-height: 1.15; color: #fff; margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.slide-content p {
  font-size: clamp(0.88rem, 1.5vw, 1.05rem); max-width: 560px;
  color: rgba(255,255,255,0.80); line-height: 1.7;
}


.carousel-arrows {
  position: absolute; top: 50%; right: 2rem;
  transform: translateY(-50%); display: flex; flex-direction: column; gap: 0.5rem;
  z-index: 5;
}
.arrow {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; backdrop-filter: blur(4px);
}
.arrow:hover { background: rgba(255,255,255,0.25); }

.carousel-dots {
  position: absolute; bottom: 2rem; right: 5rem;
  display: flex; gap: 0.5rem; z-index: 5; align-items: center;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer;
  transition: background 0.2s, width 0.3s; padding: 0;
}
.dot.active { background: var(--sage); width: 22px; border-radius: 3px; }

/* ─── STATS STRIP ─────────────────────────────────────── */
.stats-strip {
  display: flex; align-items: stretch; justify-content: center;
  background: var(--green-dk); color: #fff;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.4rem 3rem; gap: 0.2rem; flex: 1; max-width: 220px;
}
.stat-item strong {
  font-family: 'Geologica', sans-serif;
  font-size: 1.7rem; color: var(--sage); line-height: 1;
}
.stat-item span { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.stat-sep { width: 1px; background: rgba(255,255,255,0.12); margin: 1rem 0; }

/* ─── SECTION UTILITIES ──────────────────────────────── */
.section-pad { padding: 5rem 5%; }
.section-label {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.65rem; display: block;
}
.section-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem); color: var(--text);
  line-height: 1.2; margin-bottom: 1.5rem;
}
.section-h2--light { color: #fff; }

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

/* ─── INTRO SECTION (2) ──────────────────────────────── */
.intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding: 5.5rem 7%;
}
.intro-img-wrap {
  aspect-ratio: 4/3; overflow: hidden; border-radius: 4px;
  box-shadow: 0 8px 32px rgba(27,67,50,0.15);
}
.intro-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  display: flex; align-items: center; justify-content: center;
}
.intro-placeholder span { color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.intro-text p { color: var(--muted); line-height: 1.8; font-size: 1.02rem; margin-bottom: 1.1rem; }
.intro-text p:last-child { margin-bottom: 0; }
.intro-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.6rem; padding: 0.7rem 1.6rem; border-radius: 999px;
  background: var(--green); color: #fff; text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s;
}
.intro-cta:hover { background: var(--green-dk); }

/* ─── REVIEWS SECTION (3) ────────────────────────────── */
.reviews-section {
  background: var(--sand); padding: 5rem 5%;
  position: relative; overflow: hidden;
}
.reviews-section .section-header { text-align: center; margin-bottom: 3rem; }
.reviews-track-wrap { overflow: hidden; }
.reviews-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}
.review-card {
  min-width: 100%; padding: 2.5rem;
  background: var(--white); border-radius: 6px;
  box-shadow: 0 2px 20px rgba(27,67,50,0.08);
  display: flex; flex-direction: column; gap: 1rem;
}
.review-stars { display: flex; gap: 3px; }
.review-star { font-size: 1.2rem; color: var(--green-lt); }
.review-star.half { opacity: 0.6; }
.review-author {
  display: flex; align-items: center; gap: 0.7rem;
  margin-top: auto;
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sage); display: flex; align-items: center; justify-content: center;
  font-family: 'Geologica', sans-serif; font-size: 1rem; color: var(--green-dk);
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.review-origin { font-size: 0.75rem; color: var(--stone-lt); }
.review-text { font-size: 0.97rem; line-height: 1.75; color: var(--muted); font-style: italic; }
.review-source { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
.reviews-nav {
  display: flex; justify-content: center; gap: 0.75rem; margin-top: 2rem;
}
.reviews-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--green); background: none; color: var(--green);
  font-size: 1.1rem; cursor: pointer; transition: background 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.reviews-arrow:hover { background: var(--green); color: #fff; }

/* ─── ROOMS GRID (4) ─────────────────────────────────── */
.rooms-section {
  background: var(--green-dk); padding: 5rem 5%;
}
.rooms-section .section-label { color: var(--sage); }
.rooms-section .section-h2 { color: #fff; }
.rooms-section .section-header { margin-bottom: 2.5rem; }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 6px;
}
.room-card {
  position: relative; overflow: hidden;
  cursor: pointer; border-radius: 3px;
  background: rgba(255,255,255,0.06);
}
/* Row 1 — wide left */
.room-card:nth-child(1) { grid-column: span 2; }
.room-card:nth-child(2) { grid-column: span 1; }
.room-card:nth-child(3) { grid-column: span 1; }
/* Row 2 — wide centre */
.room-card:nth-child(4) { grid-column: span 1; }
.room-card:nth-child(5) { grid-column: span 2; }
.room-card:nth-child(6) { grid-column: span 1; }
/* Row 3 — wide right */
.room-card:nth-child(7) { grid-column: span 1; }
.room-card:nth-child(8) { grid-column: span 1; }
.room-card:nth-child(9) { grid-column: span 2; }

.room-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease; display: block;
}
.room-card:hover img { transform: scale(1.04); }

.room-card--placeholder {
  cursor: default;
  background: linear-gradient(135deg, rgba(82,183,136,0.15) 0%, rgba(21,101,168,0.12) 100%);
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed rgba(149,213,178,0.25);
}
.room-card--placeholder span {
  font-size: 0.65rem; color: rgba(149,213,178,0.4);
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* lightbox open hint for rooms */
.rooms-hint {
  text-align: center; margin-top: 1.4rem;
  font-size: 0.72rem; color: rgba(149,213,178,0.5);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ─── SPRINGS SECTION (5) ────────────────────────────── */
.springs-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4.5rem; align-items: center;
  padding: 5.5rem 7%;
}
.springs-text p { color: var(--muted); line-height: 1.8; font-size: 1.02rem; margin-bottom: 1.1rem; }
.springs-img-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; gap: 6px;
}
.springs-img-item {
  overflow: hidden; border-radius: 3px; cursor: pointer;
  position: relative;
}
.springs-img-item:first-child {
  grid-column: span 2; aspect-ratio: 16/7;
}
.springs-img-item:not(:first-child) { aspect-ratio: 4/3; }
.springs-img-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s; display: block;
}
.springs-img-item:hover img { transform: scale(1.04); }
.springs-img-more {
  position: absolute; inset: 0;
  background: rgba(27,67,50,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.springs-img-item:hover .springs-img-more { opacity: 1; }
.springs-img-more span {
  color: #fff; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
}

/* ─── GENERAL SLIDER (6) ─────────────────────────────── */
.slider-section {
  background: var(--cream); padding-top: 4rem;
}
.slider-section .section-header { padding: 0 5%; margin-bottom: 2rem; }
.slider-wrap {
  position: relative; overflow: hidden;
}
.slider-track {
  display: flex; gap: 6px;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.slider-item {
  min-width: 300px; height: 220px; flex-shrink: 0;
  border-radius: 3px; overflow: hidden; cursor: pointer;
}
.slider-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.slider-item:hover img { transform: scale(1.04); }
.slider-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  pointer-events: none; padding: 0 1rem;
}
.slider-arrow {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.85); border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); cursor: pointer;
  pointer-events: all; display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1rem; transition: background 0.2s;
}
.slider-arrow:hover { background: var(--white); }

/* ─── AMENITIES (6, below slider) ────────────────────── */
.amenities-strip {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0.5rem; padding: 3.5rem 5%;
  background: var(--cream);
}
.amenity-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  flex: 1; min-width: 130px; max-width: 180px;
  padding: 1.8rem 1rem; border-radius: 6px;
  background: var(--white);
  box-shadow: 0 1px 10px rgba(27,67,50,0.07);
  text-align: center; transition: transform 0.2s, box-shadow 0.2s;
}
.amenity-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(27,67,50,0.12); }
.amenity-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--sage); display: flex; align-items: center; justify-content: center;
}
.amenity-icon svg, .amenity-icon i { color: var(--green-dk); width: 22px; height: 22px; }
.amenity-label {
  font-size: 0.82rem; font-weight: 600; color: var(--text); line-height: 1.3;
}
.amenity-desc { font-size: 0.72rem; color: var(--stone-lt); line-height: 1.4; }

/* ─── LOCATIONS SECTION (7) ─────────────────────────── */
.locations-section {
  padding: 5.5rem 7%;
}
.locations-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.locations-list { display: flex; flex-direction: column; gap: 0.75rem; }
.location-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; border-radius: 6px;
  border: 1px solid var(--stone-xl);
  text-decoration: none; color: var(--text);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.location-item:hover {
  border-color: var(--green-lt); background: rgba(45,106,79,0.04);
  transform: translateX(4px);
}
.location-icon {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--cream); border: 1px solid var(--stone-xl);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); transition: background 0.2s, border-color 0.2s;
}
.location-item:hover .location-icon { background: var(--sage); border-color: var(--sage); color: var(--green-dk); }
.location-icon svg, .location-icon i { width: 17px; height: 17px; }
.location-body { flex: 1; }
.location-name { font-weight: 600; font-size: 0.92rem; color: var(--text); }
.location-name-gr { font-size: 0.76rem; color: var(--stone-lt); margin-top: 1px; }
.location-dir {
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); display: flex; align-items: center; gap: 0.3rem;
}
.location-dir svg, .location-dir i { width: 12px; height: 12px; }

.locations-map {
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(27,67,50,0.12);
  aspect-ratio: 4/3;
}
.locations-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─── CONTACT SECTION (8) ────────────────────────────── */
.contact-section {
  background: var(--green-dk); padding: 5.5rem 7%;
  text-align: center;
}
.contact-inner { max-width: 680px; margin: 0 auto; }
.contact-logo-wrap { margin-bottom: 2rem; }
.contact-logo-img { height: 64px; width: auto; margin: 0 auto; display: block; }
.contact-logo-text {
  font-family: 'Geologica', sans-serif; font-size: 1.4rem;
  color: #fff; display: inline-block;
}
.contact-logo-text span { display: block; font-family: 'Geologica', sans-serif; font-size: 0.65rem; color: var(--sage); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400; margin-top: 2px; }
.contact-inner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.8rem; }
.contact-inner p { color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 520px; margin: 0 auto 2.5rem; }

.contact-info-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.4rem 3rem; margin-bottom: 2.5rem;
  text-align: left;
}
.contact-item {
  display: flex; align-items: center; gap: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(149,213,178,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
}
.contact-item-icon svg, .contact-item-icon i { width: 17px; height: 17px; }
.contact-item-text { display: flex; flex-direction: column; gap: 1px; }
.contact-item-text strong { color: #fff; font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; font-family: 'Geologica', sans-serif; font-weight: 600; }
.contact-item-text span, .contact-item-text a { color: rgba(255,255,255,0.65); font-size: 0.88rem; text-decoration: none; }
.contact-item-text a:hover { color: var(--sage); }

.contact-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; }
.contact-btn {
  padding: 0.7rem 1.7rem; border-radius: 999px;
  font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  border: 1.5px solid;
}
.contact-btn--solid { background: var(--white); border-color: var(--white); color: var(--green-dk); }
.contact-btn--solid:hover { background: var(--sage); border-color: var(--sage); }
.contact-btn--outline { background: transparent; border-color: rgba(255,255,255,0.35); color: #fff; }
.contact-btn--outline:hover { border-color: var(--sage); color: var(--sage); }
.contact-btn--blue { background: var(--blue); border-color: var(--blue); color: #fff; }
.contact-btn--blue:hover { background: var(--blue-dk); border-color: var(--blue-dk); }

/* ─── FOOTER (9) ─────────────────────────────────────── */
footer { background: #111; color: rgba(255,255,255,0.65); }
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding: 4.5rem 7% 3rem;
}
.footer-logo-img { height: 36px; width: auto; margin-bottom: 1rem; }
.footer-logo-text {
  font-family: 'Geologica', sans-serif; font-size: 1.1rem;
  color: #fff; margin-bottom: 0.5rem; display: block;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 300px; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-btn svg { width: 15px; height: 15px; }
.social-btn:hover { border-color: var(--sage); color: var(--sage); }
.footer-col h4 {
  font-family: 'Geologica', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--sage); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.4rem 7%;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
}

/* ─── LIGHTBOX ────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,20,15,0.95);
}
.lightbox-close, .lightbox-arrow {
  position: absolute; background: rgba(255,255,255,0.1); border: none;
  color: #fff; cursor: pointer; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 9002;
}
.lightbox-close {
  top: 1.2rem; right: 1.2rem; width: 42px; height: 42px; font-size: 1rem;
}
.lightbox-arrow { top: 50%; transform: translateY(-50%); width: 46px; height: 46px; font-size: 1.3rem; }
.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }
.lightbox-close:hover, .lightbox-arrow:hover { background: rgba(255,255,255,0.2); }
.lightbox-stage {
  position: relative; z-index: 9001;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 75vh; overflow: hidden;
}
.lightbox-img {
  max-width: 90vw; max-height: 75vh;
  object-fit: contain; display: block;
  transition: opacity 0.2s;
}
.lightbox-footer {
  position: relative; z-index: 9001;
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  margin-top: 1rem; padding: 0 1rem;
}
.lightbox-counter { font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; }
.lightbox-thumbs {
  display: flex; gap: 5px; overflow-x: auto; max-width: 90vw;
  padding-bottom: 4px;
}
.lightbox-thumbs::-webkit-scrollbar { height: 3px; }
.lightbox-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }
.lightbox-thumb {
  width: 56px; height: 40px; object-fit: cover;
  opacity: 0.45; cursor: pointer; border-radius: 2px; flex-shrink: 0;
  transition: opacity 0.2s; border: 1.5px solid transparent;
}
.lightbox-thumb.active { opacity: 1; border-color: var(--sage); }
.lightbox-hint {
  position: absolute; bottom: 5rem; z-index: 9002;
  background: rgba(0,0,0,0.6); color: rgba(255,255,255,0.7);
  font-size: 0.72rem; padding: 0.5rem 1rem; border-radius: 4px;
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.lightbox-hint.visible { opacity: 1; }

/* ─── FACEBOOK CHAT BUTTON ───────────────────────────── */
.fb-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 8000;
  width: 54px; height: 54px; border-radius: 50%;
  background: #1877f2; color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 16px rgba(24,119,242,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fb-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(24,119,242,0.55); }
.fb-float svg { width: 26px; height: 26px; fill: #fff; }

/* ─── MOBILE NAV ─────────────────────────────────────── */
@media (max-width: 1020px) {
  #navbar { padding: 0 1.5rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch;
    position: fixed; top: 0; left: 0; right: 0;
    width: 100%;
    height: 100vh; height: 100dvh;
    background: var(--white); z-index: 1001; padding: 5rem 0 2rem;
    gap: 0; box-shadow: none;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--stone-xl); width: 100%; }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block; width: 100%;
    padding: 1rem 2rem; color: var(--text) !important;
    font-size: 0.9rem !important; letter-spacing: 0.08em !important;
  }
  .nav-cta {
    display: block; margin: 0.5rem 2rem;
    text-align: center; padding: 0.75rem 1rem !important;
    border-radius: 6px !important; width: calc(100% - 4rem) !important;
  }
  .lang-switcher {
    border-left: none; padding: 1rem 2rem 0; margin: 0;
    border-top: 1px solid var(--stone-xl);
    flex-direction: row; gap: 0.5rem;
  }
}

/* ─── RESPONSIVE: TABLET ─────────────────────────────── */
@media (max-width: 900px) {
  .slide-content { padding: 2.5rem 3rem 4rem; }
  .intro { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 5%; }
  .intro-img-wrap { order: -1; aspect-ratio: 16/9; }
  .springs-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 5%; }
  .locations-inner { grid-template-columns: 1fr; gap: 3rem; }
  .locations-map { aspect-ratio: 16/9; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .rooms-grid { grid-auto-rows: 190px; }
}

/* ─── RESPONSIVE: MOBILE ─────────────────────────────── */
@media (max-width: 600px) {
  .hero { height: 92vh; min-height: 480px; }
  .slide-content { padding: 2rem 1.5rem 3rem; }
  .stats-strip { flex-wrap: wrap; }
  .stat-item { padding: 1.2rem 1.5rem; min-width: 45%; }
  .stat-sep { display: none; }
  .section-pad { padding: 3.5rem 5%; }
  .rooms-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 5px; }
  .room-card { grid-column: span 1 !important; aspect-ratio: 16/9; }
  .springs-img-grid { grid-template-columns: 1fr; }
  .springs-img-item:first-child { grid-column: span 1; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .contact-info-row { grid-template-columns: 1fr; gap: 1rem; }
  .carousel-arrows { display: none; }
  .carousel-dots { left: 50%; transform: translateX(-50%); right: auto; }
  .slider-item { min-width: 230px; height: 170px; }
  .amenities-strip { gap: 0.4rem; }
  .amenity-card { min-width: 100px; padding: 1.2rem 0.6rem; }
  .amenity-label { font-size: 0.75rem; }
  .amenity-desc { display: none; }
  .locations-section { padding: 4rem 5%; }
  .contact-section { padding: 4rem 5%; }
  .footer-bottom { flex-direction: column; gap: 0.3rem; }
}
