/* ============================================================
   MAYA HOSTEL — MODERN REDESIGN
   Black · Warm White · Earth Amber
   DM Serif Display + DM Sans
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

:root {
  --black:        #0a0a0a;
  --black-2:      #111111;
  --black-3:      #1c1c1c;
  --white:        #F7F3EE;
  --white-2:      #EDE8DF;
  --earth:        #B8905A;
  --earth-dark:   #8A6438;
  --earth-glow:   rgba(184,144,90,0.18);
  --muted:        #888888;
  --border-dark:  rgba(255,255,255,0.07);
  --border-light: rgba(0,0,0,0.09);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ── GRAIN OVERLAY ─────────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ── KEYFRAMES ─────────────────────────────────────────── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0) translateY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1) translateY(0); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1) translateY(100%); opacity: 0; }
}

/* ── SCROLL ANIMATIONS ─────────────────────────────────── */
.animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate.in-view       { opacity: 1; transform: translateY(0); }
.animate-delay-1       { transition-delay: 0.1s; }
.animate-delay-2       { transition-delay: 0.22s; }
.animate-delay-3       { transition-delay: 0.34s; }

/* ── MOBILE NAV OVERLAY ────────────────────────────────── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9997;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.25s ease;
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.08); }

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-nav-links li a {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.25s ease;
  display: block;
  padding: 8px 0;
  text-align: center;
}
.mobile-nav-links li a:hover { color: var(--earth); }

.mobile-nav-book {
  margin-top: 12px;
  padding: 16px 40px;
}

/* ── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  width: 100%;
  top: 0; left: 0;
  z-index: 1000;
  padding: 24px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, padding 0.35s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 7%;
  border-bottom-color: var(--border-dark);
}

.logo img {
  height: 62px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(247,243,238,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--earth);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover               { color: var(--white); }
.nav-links a:hover::after        { width: 100%; }
.nav-links a:focus-visible       { outline: 2px solid var(--earth); outline-offset: 4px; border-radius: 2px; }

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-btn {
  background: var(--earth);
  color: var(--black);
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.05em;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(184,144,90,0.3), 0 8px 24px rgba(184,144,90,0.15);
}
.nav-btn:hover  { transform: translateY(-2px) scale(1.03); box-shadow: 0 4px 16px rgba(184,144,90,0.4), 0 12px 32px rgba(184,144,90,0.2); }
.nav-btn:active { transform: scale(0.96); }
.nav-btn:focus-visible { outline: 2px solid var(--earth); outline-offset: 3px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.25s ease;
}
.hamburger:hover { background: rgba(255,255,255,0.07); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── SHARED BUTTONS ────────────────────────────────────── */
.btn-primary, .btn-outline {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              background 0.25s ease;
}

.btn-primary {
  background: var(--earth);
  color: var(--black);
  box-shadow: 0 2px 8px rgba(184,144,90,0.35), 0 8px 24px rgba(184,144,90,0.18);
}
.btn-primary:hover  { transform: translateY(-3px) scale(1.02); box-shadow: 0 6px 20px rgba(184,144,90,0.45), 0 16px 40px rgba(184,144,90,0.22); }
.btn-primary:active { transform: scale(0.97); }
.btn-primary:focus-visible { outline: 2px solid var(--earth); outline-offset: 3px; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.38);
}
.btn-outline:hover  { transform: translateY(-3px); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.7); }
.btn-outline:active { transform: scale(0.97); }
.btn-outline:focus-visible { outline: 2px solid white; outline-offset: 3px; }

/* ── SECTION TYPOGRAPHY ────────────────────────────────── */
.section-tag {
  display: inline-block;
  color: var(--earth);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-header h2 em { font-style: italic; }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  background: url('assets/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(0,0,0,0.68) 0%,
    rgba(0,0,0,0.38) 55%,
    rgba(0,0,0,0.62) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding: 20px;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--earth);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid rgba(184,144,90,0.45);
  padding: 7px 20px;
  border-radius: 50px;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}

.hero h1 em {
  font-style: italic;
  color: #D4AA72;
}

.hero > .hero-content > p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(247,243,238,0.72);
  margin-bottom: 46px;
  font-weight: 300;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.52s both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.66s both;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: var(--earth);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ── TICKER BAR ────────────────────────────────────────── */
.ticker-bar {
  background: var(--black-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 20px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 40px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.5);
}

.ticker-dot {
  color: var(--earth);
  font-size: 0.45rem;
}

/* ── STATS BAR ─────────────────────────────────────────── */
.stats-bar {
  background: var(--black-3);
  border-bottom: 1px solid var(--border-dark);
  padding: 64px 8%;
}

.stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 20px 40px;
}

.stat-top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--earth);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-dark);
  flex-shrink: 0;
}

/* ── EXPERIENCE SECTION ────────────────────────────────── */
.experience-section {
  padding: 130px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--black);
}

.experience-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

.experience-image .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(0,0,0,0.45) 100%);
}

.experience-content {
  display: flex;
  flex-direction: column;
}

.experience-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.experience-content h2 em { font-style: italic; }

.experience-content > p {
  color: rgba(247,243,238,0.6);
  font-size: 1.03rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 48px;
}

.experience-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border-dark);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-dark);
}

.feature-item:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid var(--border-dark);
}

.feature-item:nth-child(even) { padding-left: 28px; }

.feature-num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--earth);
  min-width: 32px;
}

.feature-text {
  font-size: 0.92rem;
  font-weight: 500;
}

/* ── ROOMS SECTION ─────────────────────────────────────── */
.rooms-section {
  padding: 130px 8%;
  background: var(--white);
  color: var(--black);
}

.rooms-section .section-tag  { color: var(--earth-dark); }
.rooms-section .section-header h2 { color: var(--black); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.room-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04),
              0 8px 32px rgba(0,0,0,0.06);
}

.room-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08),
              0 24px 64px rgba(0,0,0,0.13),
              0 48px 96px rgba(0,0,0,0.07);
}

.room-card:focus-within { outline: 2px solid var(--earth); outline-offset: 2px; }

.room-image {
  position: relative;
  overflow: hidden;
}

.room-image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.22) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.room-card:hover .room-image img     { transform: scale(1.07); }
.room-card:hover .room-image-overlay { opacity: 1; }

.room-content {
  padding: 32px;
}

.room-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 10px;
}

.room-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 22px;
}

.room-amenities {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}

.room-amenities li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.01em;
}

.room-amenities li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--earth);
  border-radius: 50%;
  flex-shrink: 0;
}

.room-book-btn {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.room-book-btn:hover { background: var(--earth); transform: translateY(-2px); }

/* ── AMENITIES SECTION ─────────────────────────────────── */
.amenities-section {
  padding: 130px 8%;
  background: var(--black-2);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  overflow: hidden;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.3s ease;
  cursor: default;
}

.amenity-item:hover { background: var(--earth-glow); }
.amenity-item:nth-child(4n) { border-right: none; }
.amenity-item:nth-last-child(-n+4) { border-bottom: none; }

.amenity-icon {
  width: 44px;
  height: 44px;
  color: var(--earth);
}

.amenity-icon svg {
  width: 100%;
  height: 100%;
}

.amenity-item span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(247,243,238,0.8);
}

/* ── ACTIVITIES SECTION ────────────────────────────────── */
.activities-section {
  padding: 130px 8%;
  background: var(--black);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.activity-card {
  position: relative;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.activity-card:hover  { transform: translateY(-10px) scale(1.01); }
.activity-card:active { transform: scale(0.98); }
.activity-card:focus-visible { outline: 2px solid var(--earth); outline-offset: 3px; }

.activity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.8) 100%);
  transition: background 0.4s ease;
}

.activity-card:hover .activity-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.88) 100%);
}

.activity-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.activity-num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--earth);
  letter-spacing: 0.06em;
}

.activity-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--white);
}

.activity1 { background: url('assets/activity1.jpg') center/cover; }
.activity2 { background: url('assets/activity2.jpg') center/cover; }
.activity3 { background: url('assets/activity3.jpg') center/cover; }
.activity4 { background: url('assets/activity4.jpg') center/cover; }

/* ── SOCIAL SECTION ────────────────────────────────────── */
.social-section {
  position: relative;
  height: 88vh;
  min-height: 560px;
  background: url('assets/social.jpg') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}

.social-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 40px 20px;
}

.social-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 22px;
}

.social-content p {
  color: rgba(247,243,238,0.65);
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 300;
}

/* ── GALLERY SECTION ───────────────────────────────────── */
.gallery-section {
  padding: 130px 8%;
  background: var(--white-2);
  color: var(--black);
}

.gallery-section .section-tag        { color: var(--earth-dark); }
.gallery-section .section-header h2  { color: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:nth-child(1) img { height: 440px; }
.gallery-item:nth-child(2) img { height: 290px; }
.gallery-item:nth-child(3) img { height: 350px; }
.gallery-item:nth-child(4) img { height: 440px; }

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:focus-visible { outline: 2px solid var(--earth); outline-offset: 3px; border-radius: 14px; }

/* ── INSTAGRAM SECTION ─────────────────────────────────── */
.instagram-section {
  padding: 130px 8%;
  background: var(--black);
}

.ig-subtext {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  margin-top: 8px;
  display: block;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-bottom: 52px;
  border-radius: 16px;
  overflow: hidden;
}

.ig-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.ig-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ig-item:hover img     { transform: scale(1.08); }
.ig-item:hover .ig-hover { opacity: 1; }

.ig-cta {
  text-align: center;
}

.ig-follow-btn {
  display: inline-flex;
  align-items: center;
}

/* ── REVIEWS SECTION ───────────────────────────────────── */
.reviews-section {
  padding: 130px 8%;
  background: var(--black-2);
}

/* Rating Summary */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 560px;
  margin: 0 auto 64px;
  padding: 40px;
  background: var(--black-3);
  border-radius: 20px;
  border: 1px solid var(--border-dark);
}

.rating-big {
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.rating-right {
  flex: 1;
}

.rating-stars-big {
  color: var(--earth);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.rating-count {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--muted);
}

.rbar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.rbar-fill {
  height: 100%;
  background: var(--earth);
  border-radius: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: var(--black-3);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border-dark);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.3s ease;
}

.review-card:hover { transform: translateY(-10px); border-color: rgba(184,144,90,0.35); }

.review-stars {
  color: var(--earth);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  line-height: 0.75;
  color: var(--earth);
  margin-bottom: 18px;
  opacity: 0.55;
}

.review-card p {
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(247,243,238,0.78);
  margin-bottom: 28px;
  font-weight: 300;
  font-style: italic;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--earth);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.review-source {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
}

/* ── PLATFORM RATINGS ──────────────────────────────────── */
.platforms-section {
  padding: 80px 8%;
  background: var(--black-3);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  text-align: center;
}

.platforms-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
}

.platforms-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.platform-item {
  flex: 1;
  min-width: 160px;
  padding: 20px 36px;
  transition: transform 0.3s ease;
  cursor: default;
}

a.platform-item { cursor: pointer; }
a.platform-item:hover { transform: translateY(-4px); }

.platform-score {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.platform-name {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.platform-stars {
  color: var(--earth);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.platform-divider {
  width: 1px;
  height: 60px;
  background: var(--border-dark);
  flex-shrink: 0;
}

/* ── LOCATION SECTION ──────────────────────────────────── */
.location-section {
  padding: 130px 8%;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.location-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.location-content h2 em { font-style: italic; }

.location-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.location-icon {
  width: 40px;
  height: 40px;
  color: var(--earth);
  flex-shrink: 0;
  margin-top: 2px;
}
.location-icon svg { width: 100%; height: 100%; }

.location-detail-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 4px;
}

.location-detail-item p {
  font-size: 0.92rem;
  color: rgba(247,243,238,0.65);
  line-height: 1.7;
}

.location-map {
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  border: 1px solid var(--border-dark);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(20%) invert(5%);
}

/* ── FAQ SECTION ───────────────────────────────────────── */
.faq-section {
  padding: 130px 8%;
  background: var(--black-2);
}

.faq-section .section-header h2 { color: var(--white); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border-bottom: 1px solid var(--border-dark);
}
.faq-item:first-child { border-top: 1px solid var(--border-dark); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  padding: 26px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.25s ease;
}
.faq-question:hover { color: var(--earth); }

.faq-icon {
  font-size: 1.4rem;
  color: var(--earth);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding-bottom: 26px;
  color: rgba(247,243,238,0.6);
  font-size: 0.96rem;
  line-height: 1.85;
  font-weight: 300;
}

/* ── FINAL CTA ─────────────────────────────────────────── */
.final-cta {
  position: relative;
  height: 76vh;
  min-height: 480px;
  background: url('assets/gallery4.jpg') center 60%/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.cta-content .section-tag { margin-bottom: 22px; }

.cta-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 42px;
}

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  background: #060606;
  padding: 0;
  border-top: 1px solid var(--border-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 8% 60px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 22px;
}

.footer-brand-col img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.8;
}

.footer-brand-col p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.footer-social-btn:hover { color: var(--earth); border-color: var(--earth); background: var(--earth-glow); }

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.25s ease;
}
.footer-col ul li a:hover { color: var(--earth); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
}

.footer-copy {
  color: rgba(255,255,255,0.18);
  font-size: 0.78rem;
}

.footer-tagline {
  color: rgba(255,255,255,0.12);
  font-size: 0.78rem;
  font-style: italic;
}

/* ── FLOATING BUTTONS ──────────────────────────────────── */
.whatsapp-float,
.instagram-float {
  position: fixed;
  width: 58px;
  height: 58px;
  right: 26px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}

.whatsapp-float {
  bottom: 26px;
  background: #25D366;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35), 0 12px 28px rgba(0,0,0,0.2);
}

.instagram-float {
  bottom: 100px;
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  box-shadow: 0 4px 14px rgba(221,42,123,0.35), 0 12px 28px rgba(0,0,0,0.2);
}

.whatsapp-float:hover  { transform: scale(1.13) translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 16px 40px rgba(0,0,0,0.3); }
.instagram-float:hover { transform: scale(1.13) translateY(-2px); box-shadow: 0 8px 24px rgba(221,42,123,0.45), 0 16px 40px rgba(0,0,0,0.3); }
.whatsapp-float:active,
.instagram-float:active { transform: scale(0.94); }
.whatsapp-float:focus-visible,
.instagram-float:focus-visible { outline: 2px solid white; outline-offset: 3px; }

.whatsapp-float img,
.instagram-float img {
  width: 29px;
  height: 29px;
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .amenity-item:nth-child(4n)    { border-right: 1px solid var(--border-dark); }
  .amenity-item:nth-child(3n)    { border-right: none; }
  .amenity-item:nth-last-child(-n+4) { border-bottom: 1px solid var(--border-dark); }
  .amenity-item:nth-last-child(-n+3) { border-bottom: none; }
}

@media (max-width: 1100px) {
  .experience-section {
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 90px 6%;
  }
  .experience-image img { height: 480px; }

  .location-section {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .location-map { height: 380px; }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .activities-section,
  .rooms-section,
  .gallery-section,
  .reviews-section,
  .amenities-section,
  .instagram-section,
  .faq-section,
  .location-section { padding: 90px 6%; }

  .experience-section  { padding: 90px 6%; }
  .final-cta           { height: 70vh; }
  .social-section      { background-attachment: scroll; }

  .activities-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gallery-item:nth-child(1) img,
  .gallery-item:nth-child(4) img { height: 300px; }
  .gallery-item:nth-child(2) img,
  .gallery-item:nth-child(3) img { height: 220px; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-item:nth-child(3n)    { border-right: 1px solid var(--border-dark); }
  .amenity-item:nth-child(2n)    { border-right: none; }
  .amenity-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--border-dark); }
  .amenity-item:nth-last-child(-n+2) { border-bottom: none; }

  .platforms-inner { gap: 0; }
  .platform-item { min-width: 120px; padding: 16px 20px; }

  .stat-divider { display: none; }
  .stats-inner  { gap: 0; }
  .stat-item    { min-width: 140px; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-btn    { display: none; }
  .hamburger  { display: flex; }
  .logo img   { height: 50px; }

  .hero h1           { font-size: clamp(2.6rem, 10vw, 4rem); }
  .social-content h2 { font-size: 2.8rem; }

  .activity-card { height: 360px; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 60px 6%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 20px 6%;
    text-align: center;
  }

  .rating-summary {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .reviews-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }

  .platforms-section { padding: 60px 6%; }
}

@media (max-width: 540px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .activities-grid,
  .rooms-grid,
  .reviews-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }

  .gallery-item:nth-child(1) img,
  .gallery-item:nth-child(2) img,
  .gallery-item:nth-child(3) img,
  .gallery-item:nth-child(4) img { height: 260px; }

  .experience-features { grid-template-columns: 1fr; }

  .feature-item:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
  .feature-item:nth-child(even) { padding-left: 0; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  .ig-grid { grid-template-columns: repeat(2, 1fr); }

  .platforms-inner { flex-wrap: wrap; }
  .platform-divider { display: none; }
  .platform-item { min-width: 140px; border: 1px solid var(--border-dark); border-radius: 12px; margin: 4px; }
}
