/* ============================================================
   Lodge Maitencillo — El bosque que mira al mar
   Paleta: Arena Abanico / Espuma / Piedra Granito / Verde Noche
           Verde Pino / Verde Ciprés / Miel de Pino
   Tipografía: Fraunces (display) · Nunito Sans (cuerpo)
   ============================================================ */

:root {
  --bg: #F4F1E7;
  --surface: #FDFCF8;
  --border: #DAD5C6;
  --text: #1F2E23;
  --text-soft: #46564a;
  --bg-dark: #1F2E23;
  --primary: #2E5339;
  --primary-dark: #24422d;
  --accent-nature: #5C7355;
  --accent-warm: #9C5B2E;
  --accent-warm-dark: #7f4a24;
  --on-dark: #F4F1E7;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", -apple-system, "Segoe UI", sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 2px 10px rgba(31, 46, 35, 0.07), 0 12px 32px rgba(31, 46, 35, 0.09);
  --maxw: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

p { margin: 0 0 1em; }

a { color: var(--accent-warm); }
a:hover { color: var(--accent-warm-dark); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { padding: 88px 0; }

.kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-nature);
  margin-bottom: 14px;
}

.section-title { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--text); }
.section-intro { max-width: 640px; color: var(--text-soft); font-size: 1.06rem; }

/* ---------- Botones ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; box-shadow: 0 6px 20px rgba(46, 83, 57, 0.35); }
.btn-warm { background: var(--accent-warm); color: #fff; }
.btn-warm:hover { background: var(--accent-warm-dark); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.75); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }

/* ---------- Navegación ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 14px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.nav .container { display: flex; align-items: center; gap: 28px; }
.nav.scrolled {
  background: rgba(253, 252, 248, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
  padding: 10px 0;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand svg { width: 46px; height: 35px; }
.brand svg path { stroke: #fff; transition: stroke 0.25s ease; }
.nav.scrolled .brand svg path { stroke: var(--primary); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-lodge {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s ease;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  color: #fff;
  transition: color 0.25s ease;
}
.nav.scrolled .brand-lodge { color: var(--accent-nature); }
.nav.scrolled .brand-name { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.nav-links a:not(.btn) {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease;
}
.nav-links a:not(.btn):hover { color: #fff; }
.nav.scrolled .nav-links a:not(.btn) { color: var(--text-soft); }
.nav.scrolled .nav-links a:not(.btn):hover { color: var(--primary); }
.nav-links .btn { padding: 10px 22px; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 80;
  margin-left: auto;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.6px;
  border-radius: 2px;
  background: #fff;
  margin: 5px 0;
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.2s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }
body.nav-open { overflow: hidden; }
.nav.scrolled .nav-toggle span { background: var(--primary); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(31, 46, 35, 0.42) 0%, rgba(31, 46, 35, 0.12) 34%, rgba(31, 46, 35, 0.16) 58%, rgba(31, 46, 35, 0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 140px 0 72px;
}
.hero-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 600;
  color: #fff;
  max-width: 13ch;
  margin-bottom: 20px;
}
.hero-sub {
  max-width: 560px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(31, 46, 35, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-size: 0.88rem;
  font-weight: 700;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  font-weight: 800;
  font-size: 0.92rem;
}
.rating-badge .star { color: var(--accent-warm); }

/* ---------- Franja de destacados ---------- */
.highlights { padding: 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 34px 0;
}
.highlight { display: flex; align-items: center; gap: 14px; }
.highlight-icon {
  flex: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(92, 115, 85, 0.14);
  color: var(--primary);
}
.highlight-icon svg { width: 24px; height: 24px; }
.highlight strong { display: block; font-size: 0.98rem; line-height: 1.25; }
.highlight span { font-size: 0.85rem; color: var(--text-soft); }

/* ---------- La cabaña ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.about-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-photos img:first-child { grid-column: 1 / -1; }
.feature-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.feature-list svg { flex: none; width: 22px; height: 22px; color: var(--accent-nature); margin-top: 3px; }
.feature-list strong { color: var(--text); }

/* ---------- Franja bosque ---------- */
.forest-band {
  position: relative;
  padding: 130px 0;
  color: #fff;
  background: var(--bg-dark);
  overflow: hidden;
}
.forest-band img.band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0.55;
}
.forest-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(31, 46, 35, 0.82) 0%, rgba(31, 46, 35, 0.35) 65%, rgba(31, 46, 35, 0.15) 100%);
}
.forest-band .container { position: relative; z-index: 2; }
.forest-band .kicker { color: #cdd8c5; }
.forest-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); max-width: 17ch; }
.forest-band p { max-width: 540px; font-size: 1.1rem; color: rgba(255, 255, 255, 0.92); }

/* ---------- Galería ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.05); }
.gallery-item:focus-visible { outline: 3px solid var(--accent-warm); outline-offset: 2px; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 46, 35, 0.45), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .cap {
  position: absolute;
  left: 14px;
  bottom: 10px;
  z-index: 2;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.gallery-item:hover .cap { opacity: 1; transform: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20, 29, 22, 0.94);
  padding: 28px;
}
.lightbox.open { display: flex; }
.lightbox figure { margin: 0; max-width: min(1100px, 92vw); text-align: center; }
.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}
.lightbox figcaption { color: rgba(255, 255, 255, 0.85); margin-top: 14px; font-size: 0.95rem; }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(244, 241, 231, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(244, 241, 231, 0.28); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-count {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ---------- Dormitorios ---------- */
.alt-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.room-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.room-card img { height: 190px; width: 100%; object-fit: cover; }
.room-card .room-body { padding: 18px 20px 22px; }
.room-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.room-card p { font-size: 0.92rem; color: var(--text-soft); margin: 0; }
.rooms-note {
  margin-top: 26px;
  font-size: 0.95rem;
  color: var(--text-soft);
  background: rgba(92, 115, 85, 0.10);
  border-left: 4px solid var(--accent-nature);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 20px;
}

/* ---------- Comodidades ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.amenity-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}
.amenity-group h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  margin-bottom: 14px;
  color: var(--primary);
}
.amenity-group h3 svg { width: 22px; height: 22px; color: var(--accent-nature); flex: none; }
.amenity-group ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.amenity-group li {
  position: relative;
  padding-left: 20px;
  font-size: 0.94rem;
  color: var(--text-soft);
}
.amenity-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-nature);
}
.notes-card {
  margin-top: 28px;
  background: rgba(156, 91, 46, 0.08);
  border: 1px solid rgba(156, 91, 46, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.notes-card h3 { font-size: 1.05rem; color: var(--accent-warm-dark); margin-bottom: 10px; }
.notes-card ul { margin: 0; padding-left: 20px; color: var(--text-soft); font-size: 0.94rem; display: grid; gap: 6px; }

/* ---------- Ubicación ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Reseñas ---------- */
.reviews-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 44px;
}
.score-box { display: flex; align-items: center; gap: 20px; }
.score-num { font-family: var(--font-display); font-size: 4rem; font-weight: 600; line-height: 1; }
.score-stars { color: var(--accent-warm); font-size: 1.15rem; letter-spacing: 2px; }
.score-sub { color: var(--text-soft); font-size: 0.95rem; }
.score-bars { flex: 1; min-width: 260px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px; }
.bar-row { display: grid; grid-template-columns: 110px 1fr 34px; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-soft); }
.bar { height: 5px; border-radius: 3px; background: var(--border); overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--primary); border-radius: 3px; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
}
.review-card .stars { color: var(--accent-warm); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-card blockquote { margin: 0 0 16px; font-size: 1.02rem; color: var(--text); }
.review-card footer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--font-display);
  flex: none;
}
.review-card cite { font-style: normal; font-weight: 800; font-size: 0.95rem; display: block; }
.review-card small { color: var(--text-soft); font-size: 0.82rem; }
.reviews-cta { text-align: center; margin-top: 36px; }

/* ---------- Anfitrión ---------- */
.host-card {
  display: flex;
  align-items: center;
  gap: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 46px;
  box-shadow: var(--shadow);
}
.host-avatar {
  flex: none;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--on-dark);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
}
.host-card h3 { font-size: 1.6rem; margin-bottom: 4px; }
.host-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(156, 91, 46, 0.12);
  color: var(--accent-warm-dark);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.host-stats { display: flex; flex-wrap: wrap; gap: 8px 28px; color: var(--text-soft); font-size: 0.94rem; padding: 0; margin: 10px 0 0; list-style: none; }
.host-stats strong { color: var(--text); }

/* ---------- CTA final ---------- */
.cta-band {
  position: relative;
  padding: 130px 0;
  text-align: center;
  color: #fff;
  background: var(--bg-dark);
  overflow: hidden;
}
.cta-band img.band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(31, 46, 35, 0.55); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); max-width: 20ch; margin: 0 auto 14px; }
.cta-band p { max-width: 520px; margin: 0 auto 30px; color: rgba(255, 255, 255, 0.92); font-size: 1.08rem; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark); color: rgba(244, 241, 231, 0.82); padding: 64px 0 36px; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 36px; margin-bottom: 44px; }
.footer .brand svg path { stroke: var(--on-dark); }
.footer .brand-lodge { color: rgba(244, 241, 231, 0.65); }
.footer .brand-name { color: var(--on-dark); }
.footer-tag { margin-top: 14px; font-size: 0.95rem; max-width: 30ch; color: rgba(244, 241, 231, 0.7); }
.footer h4 { font-family: var(--font-body); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244, 241, 231, 0.55); margin: 0 0 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a { color: rgba(244, 241, 231, 0.85); text-decoration: none; font-size: 0.96rem; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(244, 241, 231, 0.16);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(244, 241, 231, 0.55);
}

/* ---------- Botón flotante de WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  font-size: 0.98rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(31, 46, 35, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(31, 46, 35, 0.4); color: #fff; }
.wa-float svg { width: 26px; height: 26px; flex: none; }
@media (max-width: 720px) {
  .wa-float { right: 16px; bottom: 16px; padding: 14px; }
  .wa-float .wa-label { display: none; }
}

/* ---------- Preguntas frecuentes ---------- */
.faq-list { max-width: 820px; margin-top: 36px; display: grid; gap: 14px; }
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent-nature);
  transition: transform 0.2s ease;
  flex: none;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 22px 20px; color: var(--text-soft); }

/* ---------- Animación de aparición ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .gallery-item img { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 170px; }
  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    gap: 30px;
    margin: 0;
    padding: 84px 24px 44px;
    overflow-y: auto;
    background: var(--bg-dark);
    text-align: center;
  }
  .nav-links.open { display: flex; }
  .nav-links li:first-child { margin-top: auto; }
  .nav-links li:last-child { margin-bottom: auto; }
  .nav-links a:not(.btn), .nav.scrolled .nav-links a:not(.btn) { color: var(--on-dark); font-size: 1.25rem; }
  body.nav-open .nav-toggle span { background: #fff; }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .highlights-grid { grid-template-columns: 1fr; gap: 16px; padding: 26px 0; }
  .hero-content { padding: 120px 0 56px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .score-bars { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .host-card { flex-direction: column; text-align: center; padding: 32px 24px; }
  .host-stats { justify-content: center; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .about-photos { grid-template-rows: 200px 160px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}
