/* ============================================================
   RIAD VERUS — Single Hotel Page Styles
   ============================================================ */

/* ---------- VARIABLES ---------- */
:root {
  --terracotta:   #C4602B;
  --terra-dark:   #8B3A10;
  --terra-light:  #E8885A;
  --gold:         #C9A84C;
  --gold-light:   #E8C96E;
  --gold-dark:    #8C6E2A;
  --green:        #1B3D2F;
  --green-mid:    #2D6348;
  --green-light:  #3A7A5C;
  --beige:        #FDF6ED;
  --beige-mid:    #F5E6CC;
  --beige-dark:   #E8D4B0;
  --text:         #2C1810;
  --text-mid:     #5C3D2E;
  --text-light:   #8B6E5A;
  --white:        #FFFFFF;
  --shadow:       0 8px 40px rgba(27,61,47,0.15);
  --shadow-sm:    0 3px 14px rgba(27,61,47,0.10);
  --r:            14px;
  --t:            0.3s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--beige); color: var(--text); overflow-x: hidden; line-height: 1.7; }
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.18; }
h2 em { font-style: italic; color: var(--terracotta); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 3px; }

/* ---------- UTILITY ---------- */
.gold { color: var(--gold); }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); color: var(--green); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background var(--t), box-shadow var(--t);
}
.navbar.solid {
  background: rgba(15, 42, 30, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 36px;
  display: flex;
  align-items: center;
  gap: 36px;
  transition: padding var(--t);
}
.navbar.solid .nav-container { padding-top: 13px; padding-bottom: 13px; }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.logo-gem {
  color: var(--gold);
  font-size: 0.9rem;
  transition: transform var(--t);
}
.nav-logo:hover .logo-gem { transform: rotate(45deg); }

.nav-links {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--t);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.btn-nav-book {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--terracotta), var(--terra-dark));
  color: var(--white);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: transform var(--t), box-shadow var(--t);
  box-shadow: 0 4px 16px rgba(196,96,43,0.4);
  white-space: nowrap;
}
.btn-nav-book:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,96,43,0.5); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--white);
  transition: color var(--t);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t);
}
.mobile-close:hover { background: var(--terracotta); }
.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.mobile-backdrop.visible { opacity: 1; pointer-events: all; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: slow-zoom 18s ease-in-out infinite alternate;
}
@keyframes slow-zoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.14); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(27,61,47,0.55) 0%,
      rgba(15,30,20,0.35) 45%,
      rgba(15,30,20,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 760px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  color: var(--white);
  letter-spacing: 6px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  margin-bottom: 16px;
  line-height: 1.05;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 36px;
}
.hero-stars i { color: var(--gold); font-size: 1rem; }

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  animation: bounce 2.2s ease-in-out infinite;
  transition: border-color var(--t);
}
.hero-scroll-hint:hover { border-color: var(--gold); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ---------- BUTTONS ---------- */
.btn-booking {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #0057B8, #003D82);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: transform var(--t), box-shadow var(--t), filter var(--t);
  box-shadow: 0 5px 20px rgba(0,87,184,0.4);
  white-space: nowrap;
}
.btn-booking:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,87,184,0.5); filter: brightness(1.1); }

.btn-trip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #F57C00, #E65100);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: transform var(--t), box-shadow var(--t), filter var(--t);
  box-shadow: 0 5px 20px rgba(230,81,0,0.4);
  white-space: nowrap;
}
.btn-trip:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(230,81,0,0.5); filter: brightness(1.1); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
  white-space: nowrap;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--gold); }

/* ---------- HIGHLIGHTS STRIP ---------- */
.highlights-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--green);
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--t);
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(255,255,255,0.04); }

.highlight-icon {
  width: 50px; height: 50px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.highlight-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 5px;
}
.highlight-text p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ---------- ABOUT ---------- */
.about-section {
  padding: 100px 36px;
  background: var(--beige);
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text h2 { font-size: clamp(2rem, 3.5vw, 2.7rem); color: var(--green); margin-bottom: 20px; }
.about-text p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.9; font-size: 0.97rem; }

.about-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding: 20px;
  background: var(--beige-mid);
  border-radius: var(--r);
  border-left: 4px solid var(--gold);
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.meta-item i { color: var(--terracotta); width: 18px; text-align: center; }
.meta-item a { color: var(--green-mid); font-weight: 700; }
.meta-item a:hover { color: var(--terracotta); }

.about-gallery {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 14px;
}
.about-img-main, .about-img-side {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.about-img-main img, .about-img-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-main { height: 420px; }
.about-img-side { height: 420px; }
.about-img-main:hover img,
.about-img-side:hover img { transform: scale(1.05); }

.about-badge {
  position: absolute;
  bottom: 16px; left: -12px;
  background: var(--terracotta);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: var(--shadow);
}
.about-badge i { display: block; font-size: 1.1rem; margin-bottom: 4px; }

/* ---------- GALLERY ---------- */
.gallery-section {
  padding: 100px 36px;
  background: var(--beige-mid);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 2L58 30L30 58L2 30Z' fill='none' stroke='rgba(201%2C168%2C76%2C0.12)' stroke-width='1'/%3E%3C/svg%3E");
}

.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-item {
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,61,47,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
}
.gallery-overlay i {
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity var(--t), transform var(--t);
}
.gallery-item:hover .gallery-overlay { background: rgba(27,61,47,0.45); }
.gallery-item:hover .gallery-overlay i { opacity: 1; transform: scale(1); }

/* ---------- AMENITIES ---------- */
.amenities-section {
  padding: 100px 36px;
  background: var(--beige);
}

.amenities-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  border: 1.5px solid var(--beige-mid);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.amenity-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.amenity-card i {
  font-size: 1.6rem;
  color: var(--terracotta);
  margin-bottom: 12px;
  display: block;
}
.amenity-card span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.3px;
}

/* ---------- BOOK SECTION ---------- */
.book-section {
  position: relative;
  padding: 110px 36px;
  background:
    linear-gradient(rgba(15,30,20,0.78), rgba(15,30,20,0.82)),
    url('4.png') center/cover no-repeat fixed;
  text-align: center;
  overflow: hidden;
}
.book-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(201,168,76,0.03) 0px,
    rgba(201,168,76,0.03) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
}
.book-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.book-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 14px;
}
.book-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.8;
}
.book-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.book-buttons .btn-booking,
.book-buttons .btn-trip {
  font-size: 1.05rem;
  padding: 18px 36px;
}

/* ---------- LOCATION ---------- */
.location-section {
  padding: 100px 36px;
  background: var(--green);
}
.location-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.location-text .section-eyebrow { color: var(--gold-light); }
.location-text h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); color: var(--white); margin-bottom: 28px; }
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.location-detail i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.location-detail a { color: rgba(255,255,255,0.75); transition: color var(--t); }
.location-detail a:hover { color: var(--gold); }

.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 13px 26px;
  background: var(--gold);
  color: var(--green);
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: transform var(--t), box-shadow var(--t);
  box-shadow: 0 5px 20px rgba(201,168,76,0.35);
}
.btn-maps:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.5); }

.location-map a {
  display: block;
  border-radius: var(--r);
  overflow: hidden;
  border: 3px solid rgba(201,168,76,0.3);
  box-shadow: var(--shadow);
  transition: border-color var(--t), transform var(--t);
}
.location-map a:hover { border-color: var(--gold); transform: translateY(-4px); }

.map-placeholder {
  background: rgba(255,255,255,0.06);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-align: center;
  padding: 24px;
  min-height: 280px;
  transition: background var(--t);
}
.location-map a:hover .map-placeholder { background: rgba(255,255,255,0.10); }
.map-placeholder i { font-size: 3rem; color: var(--gold); }
.map-placeholder p { font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.5; }
.map-placeholder span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ---------- FOOTER ---------- */
.footer {
  background: #0B1E14;
  text-align: center;
  position: relative;
}
.footer::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--green-light), var(--terracotta));
  background-size: 200%;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0%; }
  100% { background-position: 200%; }
}
.footer-inner { max-width: 760px; margin: 0 auto; padding: 56px 24px 32px; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  font-style: italic;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--gold); }
.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.social-row a:hover { background: var(--gold); color: var(--green); border-color: var(--gold); }
.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

/* ---------- BACK TO TOP ---------- */
.back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(196,96,43,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t), transform var(--t), background var(--t);
  pointer-events: none;
}
.back-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-top:hover { background: var(--terra-dark); }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5,15,10,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t);
}
.lightbox-close { top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; font-size: 1.1rem; }
.lightbox-prev  { left: 20px;  top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; font-size: 1.1rem; }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; font-size: 1.1rem; }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--terracotta); }

/* ---------- SCROLL ANIMATION ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.15s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-inner    { grid-template-columns: 1fr; gap: 40px; }
  .location-inner { grid-template-columns: 1fr; gap: 40px; }
  .highlights-strip { grid-template-columns: 1fr; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .gallery-grid   { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  .about-img-main, .about-img-side { height: 300px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav-book { display: none; }
  .hamburger { display: flex; }
  .hero-cta   { flex-direction: column; align-items: center; }
  .book-buttons { flex-direction: column; align-items: center; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid   { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .about-section, .gallery-section, .amenities-section,
  .book-section, .location-section { padding: 70px 22px; }
}

@media (max-width: 480px) {
  .nav-container { padding: 14px 20px; }
  .hero-title { font-size: 2.8rem; letter-spacing: 3px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid   { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item:first-child { grid-column: span 1; }
  .about-gallery  { grid-template-columns: 1fr; }
  .about-img-side { display: none; }
  .lightbox-prev  { left: 8px; }
  .lightbox-next  { right: 8px; }
}
