/* =========================================================
   HOSTAL LUCERO HUMAHUACA
   CSS COMPLETO
   ========================================================= */

/* ================= VARIABLES ================= */

:root {
  --color-bg: #fff7ea;
  --color-bg-soft: #f8ead7;
  --color-card: #fffaf2;
  --color-card-dark: #2f1b13;

  --color-primary: #d66f2f;
  --color-primary-dark: #9d3f1f;
  --color-primary-soft: #f3b16c;

  --color-secondary: #0f7f73;
  --color-secondary-soft: #d9f0e7;

  --color-brown: #5a2f20;
  --color-brown-dark: #321a13;
  --color-brown-soft: #87503a;

  --color-cream: #fff3df;
  --color-white: #ffffff;
  --color-black: #17120f;
  --color-muted: #76665d;

  --color-whatsapp: #1ec765;
  --color-whatsapp-dark: #0ea84f;

  --shadow-soft: 0 18px 45px rgba(65, 35, 20, 0.12);
  --shadow-card: 0 22px 60px rgba(49, 26, 18, 0.16);
  --shadow-strong: 0 28px 80px rgba(35, 18, 12, 0.28);

  --radius-small: 14px;
  --radius-medium: 24px;
  --radius-large: 36px;
  --radius-pill: 999px;

  --container: 1180px;

  --font-title: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --header-height: 92px;
}


/* ================= RESET ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--color-bg);
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(214, 111, 47, 0.12), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(15, 127, 115, 0.10), transparent 34rem),
    var(--color-bg);
  color: var(--color-brown-dark);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

strong {
  font-weight: 800;
  color: var(--color-brown);
}

::selection {
  background: var(--color-primary);
  color: var(--color-white);
}


/* ================= BASE ================= */

.section-container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

section {
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 54px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: rgba(214, 111, 47, 0.12);
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-header h2 {
  margin-top: 22px;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.96;
  color: var(--color-brown);
  letter-spacing: -0.04em;
}

.section-header p {
  margin: 24px auto 0;
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--color-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.98rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--color-whatsapp), var(--color-whatsapp-dark));
  color: var(--color-white);
  box-shadow: 0 18px 34px rgba(30, 199, 101, 0.28);
}

.btn-whatsapp:hover {
  box-shadow: 0 22px 42px rgba(30, 199, 101, 0.36);
}

.btn-room {
  width: 100%;
  background: var(--color-brown-dark);
  color: var(--color-white);
  margin-top: 22px;
}

.btn-room:hover {
  background: var(--color-primary-dark);
}


/* ================= HEADER ================= */

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: none;
}

.header-container {
  width: min(var(--container), calc(100% - 36px));
  height: var(--header-height);
  margin: 0 auto;
  padding: 0 22px 0 28px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 247, 234, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(65, 35, 20, 0.13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
  transition:
    height 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.site-header.scrolled .header-container {
  height: 76px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 14px 38px rgba(49, 26, 18, 0.18);
}

.header-logo {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-logo-img {
  height: 66px;
  width: auto;
  object-fit: contain;
  transition: height 0.25s ease;
}

.site-header.scrolled .header-logo-img {
  height: 56px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-nav a {
  padding: 13px 16px;
  border-radius: var(--radius-pill);
  color: var(--color-brown);
  font-weight: 800;
  font-size: 0.94rem;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.header-nav a:hover {
  background: rgba(214, 111, 47, 0.14);
  color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(214, 111, 47, 0.14);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--color-brown);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  width: min(var(--container), calc(100% - 36px));
  margin: 12px auto 0;
  padding: 14px;
  border-radius: 28px;
  display: none;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 250, 242, 0.96);
  box-shadow: var(--shadow-card);
  pointer-events: auto;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 800;
  color: var(--color-brown);
  background: rgba(214, 111, 47, 0.07);
}


/* ================= HERO FULL WIDTH ÉPICO ================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 180px 24px 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: #1c130f;
}

.hero-bg,
.hero-bg img,
.hero-overlay,
.hero-grid,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
  filter: brightness(0.72) saturate(1.05) contrast(1.08);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 10, 8, 0.30) 0%, rgba(20, 10, 8, 0.42) 35%, rgba(20, 10, 8, 0.72) 100%),
    linear-gradient(90deg, rgba(25, 12, 8, 0.42) 0%, rgba(25, 12, 8, 0.14) 20%, rgba(25, 12, 8, 0.14) 80%, rgba(25, 12, 8, 0.42) 100%),
    radial-gradient(circle at center, rgba(255, 173, 102, 0.10), transparent 34%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at center,
      rgba(0, 0, 0, 0) 34%,
      rgba(0, 0, 0, 0.18) 62%,
      rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(to right,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.05) 18%,
      rgba(0, 0, 0, 0) 35%,
      rgba(0, 0, 0, 0) 65%,
      rgba(0, 0, 0, 0.05) 82%,
      rgba(0, 0, 0, 0.28) 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 280px;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.12) 22%,
      rgba(0, 0, 0, 0.34) 52%,
      rgba(0, 0, 0, 0.68) 100%);
}

.hero-glow {
  z-index: 2;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.85;
}

.hero-glow-1 {
  background:
    radial-gradient(circle at 18% 30%, rgba(196, 92, 41, 0.28), transparent 22%),
    radial-gradient(circle at 85% 25%, rgba(255, 181, 120, 0.13), transparent 20%);
}

.hero-glow-2 {
  background:
    radial-gradient(circle at 50% 100%, rgba(110, 40, 25, 0.28), transparent 30%),
    radial-gradient(circle at 50% 15%, rgba(255, 210, 180, 0.07), transparent 20%);
}

.hero-grid {
  z-index: 2;
  opacity: 0.055;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(980px, 100%);
  text-align: center;
  color: #fff8f2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 244, 235, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #fff7ef;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-content h1 {
  margin: 26px 0 20px;
  font-family: "Libre Baskerville", var(--font-title);
  font-size: clamp(4.2rem, 9vw, 8.2rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: #fffaf5;
  text-shadow:
    0 10px 30px rgba(0, 0, 0, 0.28),
    0 18px 60px rgba(0, 0, 0, 0.30);
  text-wrap: balance;
}

.hero-content p {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  font-size: clamp(1.06rem, 1.8vw, 1.22rem);
  line-height: 1.85;
  color: rgba(255, 244, 235, 0.92);
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2cda67 0%, #18b64c 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 20px 40px rgba(24, 182, 76, 0.32),
    0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 48px rgba(24, 182, 76, 0.38),
    0 12px 26px rgba(0, 0, 0, 0.20);
}


/* ================= REVIEWS ================= */

.reviews-section {
  padding: 110px 0;
  overflow: hidden;
}

.reviews-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 24px;
}

.reviews-marquee::before,
.reviews-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.reviews-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg), transparent);
}

.reviews-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-bg), transparent);
}

.reviews-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  animation: reviewsMove 70s linear infinite;
}

.reviews-marquee:hover .reviews-marquee-track {
  animation-play-state: paused;
}

@keyframes reviewsMove {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.review-card {
  width: 330px;
  min-height: 235px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid rgba(214, 111, 47, 0.14);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.review-stars {
  color: #f3b130;
  letter-spacing: 0.08em;
  font-size: 1.08rem;
  margin-bottom: 18px;
}

.review-card h3 {
  font-size: 1.08rem;
  color: var(--color-brown-dark);
  margin-bottom: 12px;
}

.review-card p {
  font-size: 0.96rem;
  line-height: 1.72;
  color: var(--color-muted);
}


/* ================= ABOUT ================= */

.about-section {
  padding: 90px 0 105px;
  background: var(--color-bg);
}

.about-card {
  position: relative;
  width: min(820px, calc(100% - 40px));
  height: auto;
  min-height: unset;
  margin: 0 auto;
  padding: 54px 54px 58px;
  border-radius: 42px;
  text-align: center;
  overflow: hidden;
  display: block;
  background:
    radial-gradient(circle at 24% 12%, rgba(15, 127, 115, 0.08), transparent 170px),
    radial-gradient(circle at 88% 100%, rgba(214, 111, 47, 0.12), transparent 230px),
    linear-gradient(135deg, #fffaf2 0%, #fff0dc 100%);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 26px 70px rgba(65, 35, 20, 0.14),
    0 8px 24px rgba(65, 35, 20, 0.06);
}

.about-card::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  top: 38px;
  left: 120px;
  background: rgba(15, 127, 115, 0.075);
  pointer-events: none;
}

.about-card::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  right: -90px;
  bottom: -95px;
  background: rgba(214, 111, 47, 0.11);
  pointer-events: none;
}

.about-card > * {
  position: relative;
  z-index: 2;
}

.about-card-decoration {
  display: none;
}

.about-card .section-eyebrow {
  margin: 0 auto 28px;
}

.about-logo {
  width: 150px;
  margin: 0 auto 30px;
}

.about-card h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(3.1rem, 5vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: var(--color-brown);
}

.about-card p {
  width: min(650px, 100%);
  margin: 22px auto 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--color-muted);
}


/* ================= ROOMS ================= */

.rooms-section {
  padding: 115px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 247, 234, 0)),
    var(--color-bg-soft);
}

.rooms-group {
  margin-top: 64px;
}

.rooms-group:first-of-type {
  margin-top: 0;
}

.rooms-group-header {
  margin-bottom: 28px;
}

.rooms-group-header span {
  display: inline-flex;
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  background: rgba(15, 127, 115, 0.12);
  color: var(--color-secondary);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rooms-group-header h3 {
  margin-top: 15px;
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
  color: var(--color-brown);
  letter-spacing: -0.035em;
}

.rooms-group-header p {
  max-width: 760px;
  margin-top: 14px;
  line-height: 1.75;
  color: var(--color-muted);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.room-card {
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 250, 242, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.room-image {
  position: relative;
  width: 100%;
  height: 330px;
  overflow: hidden;
  background: var(--color-brown-dark);
  display: block;
  text-align: left;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.045);
}

.room-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(35, 18, 12, 0.38), transparent 52%);
  pointer-events: none;
}

.room-image span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 242, 0.92);
  color: var(--color-brown-dark);
  font-weight: 900;
  font-size: 0.85rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
}

.room-gallery-btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 242, 0.92);
  color: var(--color-brown-dark);
  font-weight: 900;
  font-size: 0.85rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
}

.room-content {
  padding: 28px;
}

.room-tag {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 8px 13px;
  border-radius: var(--radius-pill);
  background: rgba(214, 111, 47, 0.12);
  color: var(--color-primary-dark);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-content h3 {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.03;
  color: var(--color-brown);
  letter-spacing: -0.035em;
}

.room-content p {
  margin-top: 15px;
  line-height: 1.7;
  color: var(--color-muted);
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.room-features li,
.shared-features li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border-radius: var(--radius-pill);
  background: rgba(90, 47, 32, 0.07);
  color: var(--color-brown);
  font-size: 0.88rem;
  font-weight: 800;
}

.room-features i,
.shared-features i {
  color: var(--color-primary);
}


/* ================= SHARED SPACES ================= */

.shared-spaces {
  width: min(var(--container), calc(100% - 40px));
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
  padding: 30px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(50, 26, 19, 0.98), rgba(90, 47, 32, 0.95));
  color: var(--color-white);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.shared-spaces-content {
  padding: 22px;
  align-self: center;
}

.shared-spaces-content .section-eyebrow {
  background: rgba(255, 247, 234, 0.14);
  color: var(--color-cream);
}

.shared-spaces-content h3 {
  margin-top: 22px;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.3vw, 3.65rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.shared-spaces-content p {
  margin-top: 20px;
  color: rgba(255, 247, 234, 0.82);
  line-height: 1.75;
}

.shared-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.shared-features li {
  background: rgba(255, 247, 234, 0.12);
  color: var(--color-cream);
}

.shared-spaces-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  height: 380px;
  background: var(--color-brown-dark);
}

.shared-spaces-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.shared-spaces-gallery:hover img {
  transform: scale(1.045);
}

.shared-spaces-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(25, 12, 8, 0.48), transparent 55%);
  pointer-events: none;
}

.shared-spaces-gallery span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 242, 0.93);
  color: var(--color-brown-dark);
  font-weight: 900;
}


/* ================= DESTINATIONS ================= */

.destination-section {
  padding: 120px 0;
}

.destination-header h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.destination-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 38px;
  box-shadow: var(--shadow-card);
  background: var(--color-brown-dark);
}

.destination-card:nth-child(1),
.destination-card:nth-child(2),
.destination-card:nth-child(7) {
  grid-column: span 2;
}

.destination-card img,
.destination-overlay {
  position: absolute;
  inset: 0;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover img {
  transform: scale(1.055);
}

.destination-overlay {
  background:
    linear-gradient(0deg, rgba(28, 13, 8, 0.82), rgba(28, 13, 8, 0.08) 65%),
    linear-gradient(90deg, rgba(28, 13, 8, 0.34), transparent);
  z-index: 1;
}

.destination-content {
  position: absolute;
  left: clamp(24px, 5vw, 50px);
  right: clamp(24px, 5vw, 50px);
  bottom: clamp(26px, 5vw, 50px);
  z-index: 2;
  color: var(--color-white);
}

.destination-content span {
  display: inline-flex;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  background: rgba(214, 111, 47, 0.92);
  color: var(--color-white);
  font-weight: 900;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.destination-content h3 {
  font-family: var(--font-title);
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.32);
}

.destination-content p {
  max-width: 720px;
  margin-top: 18px;
  font-size: 1.04rem;
  line-height: 1.7;
  color: rgba(255, 247, 234, 0.88);
}


/* ================= GALLERY ================= */

.gallery-section {
  padding: 115px 0;
  background:
    radial-gradient(circle at top left, rgba(214, 111, 47, 0.10), transparent 30rem),
    var(--color-bg-soft);
  overflow: hidden;
}

.place-gallery-grid {
  width: min(1060px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 18px;
  grid-template-areas:
    "big big small1 small2"
    "big big tall small3"
    "small4 wide tall small5"
    "wide2 wide2 small6 small7";
}

.place-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 20%, rgba(214, 111, 47, 0.28), transparent 42%),
    linear-gradient(135deg, #321a13 0%, #24100b 100%);
  box-shadow:
    0 18px 42px rgba(65, 35, 20, 0.16),
    inset 0 0 0 1px rgba(255, 243, 223, 0.06);
  cursor: pointer;
}

.place-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  font-size: 0;
  color: transparent;
  text-indent: -9999px;
}

.place-gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 38%),
    radial-gradient(circle at 80% 100%, rgba(214, 111, 47, 0.18), transparent 42%);
  pointer-events: none;
}

.place-gallery-item::after {
  display: none;
}

.place-gallery-item:nth-child(1) { grid-area: big; }
.place-gallery-item:nth-child(2) { grid-area: small1; }
.place-gallery-item:nth-child(3) { grid-area: small2; }
.place-gallery-item:nth-child(4) { grid-area: tall; }
.place-gallery-item:nth-child(5) { grid-area: small3; }
.place-gallery-item:nth-child(6) { grid-area: small4; }
.place-gallery-item:nth-child(7) { grid-area: wide; }
.place-gallery-item:nth-child(8) { grid-area: small5; }
.place-gallery-item:nth-child(9) { grid-area: wide2; }
.place-gallery-item:nth-child(10) { grid-area: small6; }
.place-gallery-item:nth-child(11) { grid-area: small7; }

.place-gallery-item:hover img {
  transform: scale(1.055);
}

.place-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 52px rgba(65, 35, 20, 0.20),
    inset 0 0 0 1px rgba(255, 243, 223, 0.08);
}

.gallery-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.95);
  color: var(--color-brown-dark);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.place-gallery-item:hover img {
  transform: scale(1.055);
  opacity: 0.88;
}


/* ================= FAQ ================= */

.faq-section {
  padding: 115px 0;
  background:
    radial-gradient(circle at top left, rgba(15, 127, 115, 0.10), transparent 30rem),
    radial-gradient(circle at bottom right, rgba(214, 111, 47, 0.10), transparent 32rem),
    var(--color-bg);
}

.faq-header h2 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid rgba(214, 111, 47, 0.14);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  min-height: 86px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  text-align: left;
  color: var(--color-brown-dark);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 900;
}

.faq-question i {
  flex: 0 0 auto;
  font-size: 1.35rem;
  color: var(--color-brown);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-answer p {
  padding: 0 30px 28px;
  line-height: 1.75;
  color: var(--color-muted);
  font-size: 1rem;
}

/* ================= FINAL CTA ================= */

.final-cta-section {
  padding: 115px 0;
  background:
    radial-gradient(circle at top left, rgba(214, 111, 47, 0.22), transparent 30rem),
    linear-gradient(135deg, #311911, #1d100b);
  overflow: hidden;
}

.final-cta-card {
  position: relative;
  width: min(860px, 100%);
  min-height: 620px;
  margin: 0 auto;
  padding: clamp(38px, 7vw, 74px);
  border-radius: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(214, 111, 47, 0.34), rgba(15, 127, 115, 0.14)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 247, 234, 0.18);
  box-shadow: var(--shadow-strong);
}

.final-cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.45;
}

.final-cta-card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  top: -230px;
  left: -120px;
  background: rgba(214, 111, 47, 0.26);
  filter: blur(6px);
}

.final-cta-card::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  right: -170px;
  bottom: -170px;
  background: rgba(15, 127, 115, 0.22);
  filter: blur(6px);
}

.final-cta-card > *:not(.final-cta-bg-pattern) {
  position: relative;
  z-index: 2;
}

.final-cta-logo {
  width: 170px;
  height: 170px;
  object-fit: contain;
  padding: 20px;
  border-radius: 34px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  margin-bottom: 34px;
}

.final-cta-card h2 {
  max-width: 720px;
  font-family: var(--font-title);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.final-cta-card p {
  max-width: 620px;
  margin: 28px auto 34px;
  line-height: 1.8;
  color: rgba(255, 247, 234, 0.84);
  font-size: 1.08rem;
}

.btn-final {
  min-width: min(440px, 100%);
}


/* ================= LOCATION ================= */

.location-section {
  padding: 115px 0;
  background: var(--color-bg);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

.map-card {
  min-height: 520px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--color-card);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 250, 242, 0.96);
  border: 1px solid rgba(214, 111, 47, 0.14);
  box-shadow: 0 14px 34px rgba(65, 35, 20, 0.08);
}

.contact-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(214, 111, 47, 0.13);
  color: var(--color-primary-dark);
  font-size: 1.25rem;
}

.contact-card h3 {
  font-size: 1rem;
  color: var(--color-brown-dark);
  margin-bottom: 7px;
}

.contact-card p {
  line-height: 1.55;
  color: var(--color-muted);
}

.contact-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--color-secondary);
  font-weight: 900;
}


/* ================= FOOTER ================= */

.site-footer {
  padding: 76px 0 28px;
  background: #1f110c;
  color: var(--color-cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 48px;
}

.footer-logo {
  width: 130px;
  height: auto;
  margin-bottom: 22px;
}

.footer-brand h2 {
  font-family: var(--font-title);
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.footer-brand p {
  max-width: 380px;
  margin-top: 16px;
  line-height: 1.75;
  color: rgba(255, 243, 223, 0.72);
}

.footer-column h3 {
  font-size: 0.92rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--color-primary-soft);
}

.footer-column a,
.footer-column p {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 243, 223, 0.72);
  line-height: 1.65;
  transition: color 0.25s ease;
}

.footer-column a:hover {
  color: var(--color-white);
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 243, 223, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 243, 223, 0.62);
  font-size: 0.9rem;
}

.footer-bottom strong {
  color: var(--color-primary-soft);
}


/* ================= FLOATING WHATSAPP ================= */

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--color-whatsapp), var(--color-whatsapp-dark));
  color: var(--color-white);
  font-size: 2.15rem;
  box-shadow:
    0 18px 38px rgba(30, 199, 101, 0.36),
    0 0 0 10px rgba(30, 199, 101, 0.10);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 22px 48px rgba(30, 199, 101, 0.44),
    0 0 0 13px rgba(30, 199, 101, 0.12);
}


/* ================= LIGHTBOX ================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
}

.lightbox.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 8, 5, 0.84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  height: min(760px, 86vh);
  display: grid;
  place-items: center;
}

.lightbox-figure {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 14px;
  place-items: center;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: calc(86vh - 70px);
  object-fit: contain;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.lightbox-figure figcaption {
  color: var(--color-cream);
  text-align: center;
  font-weight: 700;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-brown-dark);
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.lightbox-close {
  top: -8px;
  right: -8px;
  width: 54px;
  height: 54px;
  font-size: 1.25rem;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  font-size: 1.15rem;
}

.lightbox-prev {
  left: -10px;
}

.lightbox-next {
  right: -10px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  :root {
    --header-height: 82px;
  }

  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .rooms-grid,
  .shared-spaces,
  .location-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .destination-grid {
    grid-template-columns: 1fr;
  }

  .destination-card,
  .destination-card:nth-child(1),
  .destination-card:nth-child(2),
  .destination-card:nth-child(7) {
    grid-column: span 1;
  }

  .place-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .place-gallery-item:nth-child(1),
  .place-gallery-item:nth-child(4),
  .place-gallery-item:nth-child(7) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


@media (max-width: 720px) {
  .section-container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    top: 12px;
  }

  .header-container {
    width: calc(100% - 24px);
    height: 76px;
    padding: 0 12px 0 18px;
  }

  .site-header.scrolled .header-container {
    height: 68px;
  }

  .header-logo-img {
    height: 54px;
  }

  .site-header.scrolled .header-logo-img {
    height: 48px;
  }

  .menu-toggle {
    width: 54px;
    height: 54px;
  }

  .mobile-menu {
    width: calc(100% - 24px);
  }

  .hero-section {
    min-height: 100svh;
    padding: 150px 18px 80px;
  }

  .hero-bg img {
    object-position: center center;
    transform: scale(1.08);
    filter: brightness(0.70) saturate(1.04) contrast(1.08);
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(37, 18, 10, 0.76), rgba(37, 18, 10, 0.28)),
      linear-gradient(90deg, rgba(37, 18, 10, 0.56), rgba(37, 18, 10, 0.36));
  }

  .hero-section::before {
    background:
      radial-gradient(circle at center,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0.18) 58%,
        rgba(0, 0, 0, 0.42) 100%);
  }

  .hero-section::after {
    height: 230px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 14vw, 5rem);
    line-height: 0.95;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .hero-btn {
    width: 100%;
    max-width: 320px;
    padding: 16px 24px;
  }

  .reviews-section,
  .about-section,
  .rooms-section,
  .destination-section,
  .gallery-section,
  .final-cta-section,
  .location-section {
    padding: 82px 0;
  }

  .section-header {
    margin-bottom: 38px;
  }

  .section-header h2 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .section-header p {
    font-size: 0.98rem;
  }

  .reviews-marquee::before,
  .reviews-marquee::after {
    width: 54px;
  }

  .review-card {
    width: 285px;
    padding: 24px;
  }

  .about-section {
    padding: 76px 0 86px;
  }

  .about-card {
    width: calc(100% - 28px);
    height: auto;
    min-height: unset;
    padding: 38px 22px 44px;
    border-radius: 34px;
    display: block;
  }

  .about-card .section-eyebrow {
    margin-bottom: 24px;
  }

  .about-logo {
    width: 135px;
    margin: 0 auto 26px;
  }

  .about-card h2 {
    font-size: clamp(2.7rem, 11vw, 3.8rem);
  }

  .about-card p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .room-image {
    height: 260px;
  }

  .room-image-gallery {
    height: 260px;
    grid-template-columns: 1fr 0.45fr;
    padding: 7px;
    gap: 7px;
  }

  .room-image-main {
    border-radius: 20px 0 0 20px;
  }

  .room-image-thumbs {
    gap: 7px;
  }

  .room-image-thumbs img:first-child {
    border-radius: 0 18px 0 0;
  }

  .room-image-thumbs img:last-child {
    border-radius: 0 0 18px 0;
  }

  .room-image-gallery span {
    right: 14px;
    bottom: 14px;
    padding: 9px 13px;
    font-size: 0.78rem;
  }

  .room-content {
    padding: 22px;
  }

  .rooms-grid {
    gap: 22px;
  }

  .shared-spaces {
    padding: 18px;
    border-radius: 32px;
    gap: 18px;
  }

  .shared-spaces-content {
    padding: 12px;
  }

  .shared-spaces-gallery {
    min-height: 300px;
  }

  .destination-card {
    min-height: 460px;
    border-radius: 32px;
  }

  .destination-content {
    left: 24px;
    right: 24px;
    bottom: 28px;
  }

  .destination-content h3 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .destination-content p {
    font-size: 0.96rem;
  }

  .place-gallery-grid {
    width: 100%;
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 14px;
    grid-template-areas: none;
  }

  .place-gallery-item,
  .place-gallery-item:nth-child(1),
  .place-gallery-item:nth-child(2),
  .place-gallery-item:nth-child(3),
  .place-gallery-item:nth-child(4),
  .place-gallery-item:nth-child(5),
  .place-gallery-item:nth-child(6),
  .place-gallery-item:nth-child(7),
  .place-gallery-item:nth-child(8),
  .place-gallery-item:nth-child(9),
  .place-gallery-item:nth-child(10),
  .place-gallery-item:nth-child(11) {
    grid-area: auto;
  }

  .final-cta-card {
    min-height: 560px;
    border-radius: 34px;
  }

  .final-cta-logo {
    width: 140px;
    height: 140px;
  }

  .final-cta-card h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .map-card,
  .map-card iframe {
    min-height: 380px;
  }

  .contact-card {
    padding: 20px;
  }

  .floating-whatsapp {
    width: 66px;
    height: 66px;
    right: 18px;
    bottom: 18px;
    font-size: 1.95rem;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox-content {
    height: 82vh;
  }

  .lightbox-close {
    top: 0;
    right: 0;
  }

  .lightbox-prev {
    left: 4px;
  }

  .lightbox-next {
    right: 4px;
  }

  .lightbox-arrow {
    width: 48px;
    height: 48px;
  }
}


@media (max-width: 440px) {
  .btn {
    width: 100%;
    padding: 0 20px;
  }

  .hero-content {
    text-align: center;
  }

  .section-eyebrow {
    padding: 10px 16px;
    font-size: 0.7rem;
  }

  .review-card {
    width: 268px;
  }

  .room-features li,
  .shared-features li {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-brand h2 {
    font-size: 1.9rem;
  }

  
}